X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fassembly%2Fx86-64%2Fassem-rtns.lisp;h=125c15f04f11b5820a429ea7e9d539574109efca;hb=7acdf15e27993655c9249f79d36fe2117843dbdf;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..125c15f 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))) @@ -52,7 +57,7 @@ ;; address. Therefore, we need to iterate from larger addresses to ;; smaller addresses. pfw-this says copy ecx words from esi to edi ;; counting down. - (inst shr ecx (1- n-lowtag-bits)) + (inst shr ecx n-fixnum-tag-bits) (inst std) ; count down (inst sub esi n-word-bytes) (inst lea edi (make-ea :qword :base ebx :disp (- n-word-bytes))) @@ -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)) @@ -151,9 +151,11 @@ ;; Calculate NARGS (as a fixnum) (move ecx esi) (inst sub ecx rsp-tn) + #!-#.(cl:if (cl:= sb!vm:word-shift sb!vm:n-fixnum-tag-bits) '(and) '(or)) + (inst shr ecx (- word-shift n-fixnum-tag-bits)) ;; Check for all the args fitting the registers. - (inst cmp ecx (fixnumize 3)) + (inst cmp ecx (fixnumize register-arg-count)) (inst jmp :le REGISTER-ARGS) ;; Save the OLD-FP and RETURN-PC because the blit is going to trash @@ -166,10 +168,10 @@ ;; Do the blit. Because we are coping from smaller addresses to ;; larger addresses, we have to start at the largest pair and work ;; our way down. - (inst shr ecx (1- n-lowtag-bits)) + (inst shr ecx n-fixnum-tag-bits) (inst std) ; count down (inst lea edi (make-ea :qword :base rbp-tn :disp (frame-byte-offset 0))) - (inst sub esi (fixnumize 1)) + (inst sub esi n-word-bytes) (inst rep) (inst movs :qword) (inst cld) @@ -207,7 +209,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)) @@ -218,7 +220,7 @@ fun-pointer-lowtag)))) (define-assembly-routine (throw - (:return-style :none)) + (:return-style :raw)) ((:arg target (descriptor-reg any-reg) rdx-offset) (:arg start any-reg rbx-offset) (:arg count any-reg rcx-offset) @@ -230,8 +232,18 @@ LOOP - (let ((error (generate-error-code nil 'unseen-throw-tag-error target))) - (inst or catch catch) ; check for NULL pointer + (let ((error (gen-label))) + (assemble (*elsewhere*) + (emit-label error) + + ;; Fake up a stack frame so that backtraces come out right. + (inst push rbp-tn) + (inst mov rbp-tn rsp-tn) + + (emit-error-break nil error-trap + (error-number-or-lose 'unseen-throw-tag-error) + (list target))) + (inst test catch catch) ; check for NULL pointer (inst jmp :z error)) (inst cmp target (make-ea-for-object-slot catch catch-block-tag-slot 0)) @@ -258,7 +270,7 @@ (declare (ignore start count)) (let ((error (generate-error-code nil 'invalid-unwind-error))) - (inst or block block) ; check for NULL pointer + (inst test block block) ; check for NULL pointer (inst jmp :z error)) (load-tl-symbol-value uwp *current-unwind-protect-block*)