1.0.32.12: Fix slot-value on specialized parameters in SVUC methods
[sbcl.git] / src / assembly / x86 / assem-rtns.lisp
index 36152cd..cce719e 100644 (file)
 #+sb-assembling ;; We don't want a vop for this one.
 (define-assembly-routine
     (return-multiple (:return-style :none))
-    (;; These four are really arguments.
-     (:temp eax unsigned-reg eax-offset)
-     (:temp ebx unsigned-reg ebx-offset)
+    (;; These are really arguments.
      (:temp ecx unsigned-reg ecx-offset)
      (:temp esi unsigned-reg esi-offset)
 
      ;; These we need as temporaries.
+     (:temp eax unsigned-reg eax-offset)
+     (:temp ebx unsigned-reg ebx-offset)
      (:temp edx unsigned-reg edx-offset)
      (:temp edi unsigned-reg edi-offset))
 
   (inst cmp ecx (fixnumize 3))
   (inst jmp :e THREE-VALUES)
 
-  ;; Save the count, because the loop is going to destroy it.
-  (inst mov edx ecx)
+  ;; As per the calling convention EBX is expected to point at the SP
+  ;; before the stack frame.
+  (inst lea ebx (make-ea :dword :base ebp-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 :dword :base ebp-tn
+                         :disp (frame-byte-offset return-pc-save-offset)))
+  (inst mov ebp-tn (make-ea :dword :base ebp-tn
+                            :disp (frame-byte-offset ocfp-save-offset)))
   ;; Blit the values down the stack. Note: there might be overlap, so
   ;; we have to be careful not to clobber values before we've read
-  ;; them. Because the stack builds down, we are coping to a larger
+  ;; them. Because the stack builds down, we are copying to a larger
   ;; 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 2)                      ; fixnum to raw word count
+  (inst shr ecx (1- n-lowtag-bits))
   (inst std)                            ; count down
-  (inst sub esi 4)                      ; ?
+  (inst sub esi n-word-bytes)
   (inst lea edi (make-ea :dword :base ebx :disp (- n-word-bytes)))
   (inst rep)
   (inst movs :dword)
 
   ;; And back we go.
   (inst stc)
-  (inst jmp eax)
+  (inst push eax)
+  (inst ret)
 
   ;; Handle the register arg cases.
   ZERO-VALUES
-  (move esp-tn ebx)
+  (inst lea ebx (make-ea :dword :base ebp-tn
+                         :disp (* sp->fp-offset n-word-bytes)))
   (inst mov edx nil-value)
   (inst mov edi edx)
   (inst mov esi edx)
+  (inst mov esp-tn ebp-tn)
   (inst stc)
-  (inst jmp eax)
+  (inst pop ebp-tn)
+  (inst ret)
 
-  ONE-VALUE ; Note: we can get this, because the return-multiple vop
-            ; doesn't check for this case when size > speed.
+  ;; Note: we can get this, because the return-multiple vop doesn't
+  ;; check for this case when size > speed.
+  ONE-VALUE
   (loadw edx esi -1)
-  (inst mov esp-tn ebx)
+  (inst mov esp-tn ebp-tn)
   (inst clc)
-  (inst jmp eax)
+  (inst pop ebp-tn)
+  (inst ret)
 
   TWO-VALUES
+  (inst lea ebx (make-ea :dword :base ebp-tn
+                         :disp (* sp->fp-offset n-word-bytes)))
   (loadw edx esi -1)
   (loadw edi esi -2)
   (inst mov esi nil-value)
-  (inst lea esp-tn (make-ea :dword :base ebx :disp (* -2 n-word-bytes)))
+  (inst mov esp-tn ebp-tn)
   (inst stc)
-  (inst jmp eax)
+  (inst pop ebp-tn)
+  (inst ret)
 
   THREE-VALUES
+  (inst lea ebx (make-ea :dword :base ebp-tn
+                         :disp (* sp->fp-offset n-word-bytes)))
   (loadw edx esi -1)
   (loadw edi esi -2)
   (loadw esi esi -3)
-  (inst lea esp-tn (make-ea :dword :base ebx :disp (* -3 n-word-bytes)))
+  (inst mov esp-tn ebp-tn)
   (inst stc)
-  (inst jmp eax))
+  (inst pop ebp-tn)
+  (inst ret))
 \f
 ;;;; TAIL-CALL-VARIABLE
 
   ;; 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 2)                      ; fixnum to raw words
+  (inst shr ecx (1- n-lowtag-bits))
   (inst std)                            ; count down
   (inst lea edi (make-ea :dword :base ebp-tn :disp (frame-byte-offset 0)))
   (inst sub esi (fixnumize 1))
 
   ;; Clear most of the stack.
   (inst lea esp-tn
-        (make-ea :dword :base ebp-tn :disp (* -3 n-word-bytes)))
+        (make-ea :dword :base ebp-tn :disp (* (- sp->fp-offset 3) n-word-bytes)))
 
   ;; Push the return-pc so it looks like we just called.
   (pushw ebp-tn (frame-word-offset return-pc-save-offset))