1
1
mirror of https://github.com/foxsen/archbase.git synced 2026-04-24 02:21:44 +08:00

initial import to public repository

This commit is contained in:
Zhang Fuxin
2021-10-27 19:14:51 +08:00
commit c632bed67e
362 changed files with 53748 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
参数序号,传递方式,低位 高位
0,$fa0,扩展为double1
1,$a0,扩展为double2
2,$a1, 第1和2字节为3和4其余为填充
3,$a2,long double低64位5
4,$a3,long double高64位5
5,$a4,扩展为double6
6,$a5,扩展到64位7
7,$a6,8
8,$a7,扩展为double9
9,内存$sp + 0,10
1 参数序号 传递方式 低位 高位
2 0 $fa0 (扩展为double)1
3 1 $a0 (扩展为double)2
4 2 $a1 第1和2字节为3和4,其余为填充
5 3 $a2 (long double低64位)5
6 4 $a3 (long double高64位)5
7 5 $a4 (扩展为double)6
8 6 $a5 (扩展到64位)7
9 7 $a6 8
10 8 $a7 (扩展为double)9
11 9 内存$sp + 0 10