X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fassembly%2Fx86-64%2Fassem-rtns.lisp;h=28b0c1ce2584b6fa7a177ccb30a1da496c3ee2d6;hb=007bcd5aac2f3a1e714563bd39f7a2db2d0bf7c2;hp=5b51eef2b7caf9e93b043b93ee5542c5f83ce30f;hpb=878638b5b594ec6c3e8b2310f7d31435c5935ef2;p=sbcl.git diff --git a/src/assembly/x86-64/assem-rtns.lisp b/src/assembly/x86-64/assem-rtns.lisp index 5b51eef..28b0c1c 100644 --- a/src/assembly/x86-64/assem-rtns.lisp +++ b/src/assembly/x86-64/assem-rtns.lisp @@ -39,8 +39,13 @@ (inst cmp ecx (fixnumize 3)) (inst jmp :e THREE-VALUES) - (inst mov ebx rbp-tn) - ;; Save the count, because the loop is going to destroy it. + ;; As per the calling convention EBX is expected to point at the SP + ;; before the stack frame. + (inst lea ebx (make-ea :qword :base rbp-tn + :disp (* sp->fp-offset n-word-bytes))) + + ;; Save the count, the return address and restore the frame pointer, + ;; because the loop is going to destroy them. (inst mov edx ecx) (inst mov eax (make-ea :qword :base rbp-tn :disp (frame-byte-offset return-pc-save-offset))) @@ -78,13 +83,12 @@ ;; Handle the register arg cases. ZERO-VALUES - (inst mov ebx rbp-tn) + (inst lea ebx (make-ea :qword :base rbp-tn + :disp (* sp->fp-offset n-word-bytes))) (inst mov edx nil-value) (inst mov edi edx) (inst mov esi edx) - (inst lea rsp-tn - (make-ea :qword :base ebx - :disp (frame-byte-offset ocfp-save-offset))) + (inst mov rsp-tn rbp-tn) (inst stc) (inst pop rbp-tn) (inst ret) @@ -93,33 +97,29 @@ ;; check for this case when size > speed. ONE-VALUE (loadw edx esi -1) - (inst lea rsp-tn - (make-ea :qword :base rbp-tn - :disp (frame-byte-offset ocfp-save-offset))) + (inst mov rsp-tn rbp-tn) (inst clc) (inst pop rbp-tn) (inst ret) TWO-VALUES - (inst mov ebx rbp-tn) + (inst lea ebx (make-ea :qword :base rbp-tn + :disp (* sp->fp-offset n-word-bytes))) (loadw edx esi -1) (loadw edi esi -2) (inst mov esi nil-value) - (inst lea rsp-tn - (make-ea :qword :base ebx - :disp (frame-byte-offset ocfp-save-offset))) + (inst mov rsp-tn rbp-tn) (inst stc) (inst pop rbp-tn) (inst ret) THREE-VALUES - (inst mov ebx rbp-tn) + (inst lea ebx (make-ea :qword :base rbp-tn + :disp (* sp->fp-offset n-word-bytes))) (loadw edx esi -1) (loadw edi esi -2) (loadw esi esi -3) - (inst lea rsp-tn - (make-ea :qword :base ebx - :disp (frame-byte-offset ocfp-save-offset))) + (inst mov rsp-tn rbp-tn) (inst stc) (inst pop rbp-tn) (inst ret)) @@ -207,7 +207,7 @@ ;; Clear most of the stack. (inst lea rsp-tn - (make-ea :qword :base rbp-tn :disp (* -3 n-word-bytes))) + (make-ea :qword :base rbp-tn :disp (* (- sp->fp-offset 3) n-word-bytes))) ;; Push the return-pc so it looks like we just called. (pushw rbp-tn (frame-word-offset return-pc-save-offset))