void test(long *a,long *b,long *c,long *d,long *e,long *f,long *g,long *h){
*a = 1;
*b = 1;
*c = 1;
*d = 1;
*e = 1;
*f = 1;
*g = 1;
*h = 1;
}
匯編為
test:
movq $1, (%rdi)
movq $1, (%rsi)
movq $1, (%rdx)
movq $1, (%rcx)
movq $1, (%r8)
movq $1, (%r9)
movq 8(%rsp), %rax
movq $1, (%rax)
movq 16(%rsp), %rax
movq $1, (%rax)
ret
說明%rdi凡桥,%rsi户辞,%rdx,%rcx卧抗,%r8藤滥,%r9 用作存儲函數(shù)的參數(shù) 當參數(shù)多于6個時 movq 8(%rsp), %rax 參數(shù)會存在棧的位置,將棧內參數(shù)移到rax中 再進行運算
long mult2(long,long);
void multstore(long x,long y,long *dest){
long t = mult2(x,y);
*dest = t;
}
匯編為:
multstore:
pushq %rbx#將rbx的值入棧
movq %rdx, %rbx#將rdx賦予rbx
call mult2#調用mult2
movq %rax, (%rbx)#將rax的值賦予rbx的內存值
popq %rbx#出棧rbx
ret
最常用的條件碼寄存器(最近的操作)(leaq不設置條件碼)
CF:進位標志
ZF:零標志(最近的操作結果為0)
SF:符號標志(最近的操作結果為負數(shù))
OF:溢出標志
cmp 同sub 但是只設置條件碼社裆,不更新目的寄存器
test 同and 只設置條件碼
set:根據(jù)條件碼不同 設置字節(jié)為0/1
如sete %al(等價于setz %al) 若ZF為0設置為0 為1設置為1 即將%al設置為ZF
條件跳轉
條件傳送指令