1 ;;;; function call for the x86 VM
3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
14 ;;;; interfaces to IR2 conversion
16 ;;; Return a wired TN describing the N'th full call argument passing
18 (!def-vm-support-routine standard-arg-location (n)
19 (declare (type unsigned-byte n))
20 (if (< n register-arg-count)
21 (make-wired-tn *backend-t-primitive-type* descriptor-reg-sc-number
22 (nth n *register-arg-offsets*))
23 (make-wired-tn *backend-t-primitive-type* control-stack-sc-number n)))
25 ;;; Make a passing location TN for a local call return PC.
27 ;;; Always wire the return PC location to the stack in its standard
29 (!def-vm-support-routine make-return-pc-passing-location (standard)
30 (declare (ignore standard))
31 (make-wired-tn (primitive-type-or-lose 'system-area-pointer)
32 sap-stack-sc-number return-pc-save-offset))
34 ;;; This is similar to MAKE-RETURN-PC-PASSING-LOCATION, but makes a
35 ;;; location to pass OLD-FP in.
37 ;;; This is wired in both the standard and the local-call conventions,
38 ;;; because we want to be able to assume it's always there. Besides,
39 ;;; the x86 doesn't have enough registers to really make it profitable
40 ;;; to pass it in a register.
41 (!def-vm-support-routine make-old-fp-passing-location (standard)
42 (declare (ignore standard))
43 (make-wired-tn *fixnum-primitive-type* control-stack-sc-number
46 ;;; Make the TNs used to hold OLD-FP and RETURN-PC within the current
47 ;;; function. We treat these specially so that the debugger can find
48 ;;; them at a known location.
50 ;;; Without using a save-tn - which does not make much sense if it is
51 ;;; wired to the stack?
52 (!def-vm-support-routine make-old-fp-save-location (physenv)
53 (physenv-debug-live-tn (make-wired-tn *fixnum-primitive-type*
54 control-stack-sc-number
57 (!def-vm-support-routine make-return-pc-save-location (physenv)
58 (physenv-debug-live-tn
59 (make-wired-tn (primitive-type-or-lose 'system-area-pointer)
60 sap-stack-sc-number return-pc-save-offset)
63 ;;; Make a TN for the standard argument count passing location. We only
64 ;;; need to make the standard location, since a count is never passed when we
65 ;;; are using non-standard conventions.
66 (!def-vm-support-routine make-arg-count-location ()
67 (make-wired-tn *fixnum-primitive-type* any-reg-sc-number ecx-offset))
69 ;;; Make a TN to hold the number-stack frame pointer. This is allocated
70 ;;; once per component, and is component-live.
71 (!def-vm-support-routine make-nfp-tn ()
72 (make-restricted-tn *fixnum-primitive-type* ignore-me-sc-number))
74 (!def-vm-support-routine make-stack-pointer-tn ()
75 (make-normal-tn *fixnum-primitive-type*))
77 (!def-vm-support-routine make-number-stack-pointer-tn ()
78 (make-restricted-tn *fixnum-primitive-type* ignore-me-sc-number))
80 ;;; Return a list of TNs that can be used to represent an unknown-values
81 ;;; continuation within a function.
82 (!def-vm-support-routine make-unknown-values-locations ()
83 (list (make-stack-pointer-tn)
84 (make-normal-tn *fixnum-primitive-type*)))
86 ;;; This function is called by the ENTRY-ANALYZE phase, allowing
87 ;;; VM-dependent initialization of the IR2-COMPONENT structure. We
88 ;;; push placeholder entries in the CONSTANTS to leave room for
89 ;;; additional noise in the code object header.
90 (!def-vm-support-routine select-component-format (component)
91 (declare (type component component))
92 ;; The 1+ here is because for the x86 the first constant is a
93 ;; pointer to a list of fixups, or NIL if the code object has none.
94 ;; (If I understand correctly, the fixups are needed at GC copy
95 ;; time because the X86 code isn't relocatable.)
97 ;; KLUDGE: It'd be cleaner to have the fixups entry be a named
98 ;; element of the CODE (aka component) primitive object. However,
99 ;; it's currently a large, tricky, error-prone chore to change
100 ;; the layout of any primitive object, so for the foreseeable future
101 ;; we'll just live with this ugliness. -- WHN 2002-01-02
102 (dotimes (i (1+ code-constants-offset))
103 (vector-push-extend nil
104 (ir2-component-constants (component-info component))))
109 ;;; This is used for setting up the Old-FP in local call.
110 (define-vop (current-fp)
111 (:results (val :scs (any-reg control-stack)))
115 ;;; We don't have a separate NFP, so we don't need to do anything here.
116 (define-vop (compute-old-nfp)
122 (define-vop (xep-allocate-frame)
123 (:info start-lab copy-more-arg-follows)
126 (align n-lowtag-bits)
127 (trace-table-entry trace-table-fun-prologue)
128 (emit-label start-lab)
129 ;; Skip space for the function header.
130 (inst simple-fun-header-word)
131 (dotimes (i (1- simple-fun-code-offset))
134 ;; The start of the actual code.
135 ;; Save the return-pc.
136 (popw ebp-tn (- (1+ return-pc-save-offset)))
138 ;; If copy-more-arg follows it will allocate the correct stack
139 ;; size. The stack is not allocated first here as this may expose
140 ;; args on the stack if they take up more space than the frame!
141 (unless copy-more-arg-follows
142 ;; The args fit within the frame so just allocate the frame.
144 (make-ea :dword :base ebp-tn
145 :disp (- (* n-word-bytes
146 (max 3 (sb-allocated-size 'stack)))))))
148 (trace-table-entry trace-table-normal)))
150 ;;; This is emitted directly before either a known-call-local, call-local,
151 ;;; or a multiple-call-local. All it does is allocate stack space for the
152 ;;; callee (who has the same size stack as us).
153 (define-vop (allocate-frame)
154 (:results (res :scs (any-reg control-stack))
160 (inst sub esp-tn (* n-word-bytes (sb-allocated-size 'stack)))))
162 ;;; Allocate a partial frame for passing stack arguments in a full
163 ;;; call. NARGS is the number of arguments passed. We allocate at
164 ;;; least 3 slots, because the XEP noise is going to want to use them
165 ;;; before it can extend the stack.
166 (define-vop (allocate-full-call-frame)
168 (:results (res :scs (any-reg control-stack)))
171 (inst sub esp-tn (* (max nargs 3) n-word-bytes))))
173 ;;; Emit code needed at the return-point from an unknown-values call
174 ;;; for a fixed number of values. Values is the head of the TN-REF
175 ;;; list for the locations that the values are to be received into.
176 ;;; Nvals is the number of values that are to be received (should
177 ;;; equal the length of Values).
179 ;;; MOVE-TEMP is a DESCRIPTOR-REG TN used as a temporary.
181 ;;; This code exploits the fact that in the unknown-values convention,
182 ;;; a single value return returns at the return PC + 2, whereas a
183 ;;; return of other than one value returns directly at the return PC.
185 ;;; If 0 or 1 values are expected, then we just emit an instruction to
186 ;;; reset the SP (which will only be executed when other than 1 value
189 ;;; In the general case we have to do three things:
190 ;;; -- Default unsupplied register values. This need only be done
191 ;;; when a single value is returned, since register values are
192 ;;; defaulted by the called in the non-single case.
193 ;;; -- Default unsupplied stack values. This needs to be done whenever
194 ;;; there are stack values.
195 ;;; -- Reset SP. This must be done whenever other than 1 value is
196 ;;; returned, regardless of the number of values desired.
197 (defun default-unknown-values (vop values nvals)
198 (declare (type (or tn-ref null) values)
199 (type unsigned-byte nvals))
202 (note-this-location vop :single-value-return)
203 (let ((single-value (gen-label)))
205 ((member :cmov *backend-subfeatures*)
206 (inst cmov :c esp-tn ebx-tn))
208 (inst jmp :nc single-value)
209 (inst mov esp-tn ebx-tn)
210 (emit-label single-value)))))
211 ((<= nvals register-arg-count)
212 (let ((regs-defaulted (gen-label)))
213 (note-this-location vop :unknown-return)
214 (inst jmp :c regs-defaulted)
215 ;; Default the unsuppled registers.
216 (let* ((2nd-tn-ref (tn-ref-across values))
217 (2nd-tn (tn-ref-tn 2nd-tn-ref)))
218 (inst mov 2nd-tn nil-value)
221 for tn-ref = (tn-ref-across 2nd-tn-ref)
222 then (tn-ref-across tn-ref)
223 for count from 2 below register-arg-count
224 do (inst mov (tn-ref-tn tn-ref) 2nd-tn))))
225 (inst mov ebx-tn esp-tn)
226 (emit-label regs-defaulted)
227 (inst mov esp-tn ebx-tn)))
229 ;; The number of bytes depends on the relative jump instructions.
230 ;; Best case is 31+(n-3)*14, worst case is 35+(n-3)*18. For
231 ;; NVALS=6 that is 73/89 bytes, and for NVALS=7 that is 87/107
232 ;; bytes which is likely better than using the blt below.
233 (let ((regs-defaulted (gen-label))
234 (defaulting-done (gen-label))
235 (default-stack-slots (gen-label)))
236 (note-this-location vop :unknown-return)
237 ;; Branch off to the MV case.
238 (inst jmp :c regs-defaulted)
239 ;; Do the single value case.
240 ;; Default the register args
241 (inst mov eax-tn nil-value)
243 (val (tn-ref-across values) (tn-ref-across val)))
244 ((= i (min nvals register-arg-count)))
245 (inst mov (tn-ref-tn val) eax-tn))
247 ;; Fake other registers so it looks like we returned with all the
248 ;; registers filled in.
251 (inst jmp default-stack-slots)
253 (emit-label regs-defaulted)
255 (inst mov eax-tn nil-value)
256 (storew edx-tn ebx-tn -1)
257 (collect ((defaults))
258 (do ((i register-arg-count (1+ i))
259 (val (do ((i 0 (1+ i))
260 (val values (tn-ref-across val)))
261 ((= i register-arg-count) val))
262 (tn-ref-across val)))
264 (let ((default-lab (gen-label))
265 (tn (tn-ref-tn val)))
266 (defaults (cons default-lab tn))
268 (inst cmp ecx-tn (fixnumize i))
269 (inst jmp :be default-lab)
270 (loadw edx-tn ebx-tn (- (1+ i)))
271 (inst mov tn edx-tn)))
273 (emit-label defaulting-done)
274 (loadw edx-tn ebx-tn -1)
277 (let ((defaults (defaults)))
279 (assemble (*elsewhere*)
280 (trace-table-entry trace-table-fun-prologue)
281 (emit-label default-stack-slots)
282 (dolist (default defaults)
283 (emit-label (car default))
284 (inst mov (cdr default) eax-tn))
285 (inst jmp defaulting-done)
286 (trace-table-entry trace-table-normal)))))))
288 ;; 91 bytes for this branch.
289 (let ((regs-defaulted (gen-label))
290 (restore-edi (gen-label))
291 (no-stack-args (gen-label))
292 (default-stack-vals (gen-label))
293 (count-okay (gen-label)))
294 (note-this-location vop :unknown-return)
295 ;; Branch off to the MV case.
296 (inst jmp :c regs-defaulted)
298 ;; Default the register args, and set up the stack as if we
299 ;; entered the MV return point.
300 (inst mov ebx-tn esp-tn)
302 (inst mov edi-tn nil-value)
304 (inst mov esi-tn edi-tn)
305 ;; Compute a pointer to where to put the [defaulted] stack values.
306 (emit-label no-stack-args)
308 (make-ea :dword :base ebp-tn
309 :disp (* (- (1+ register-arg-count)) n-word-bytes)))
310 ;; Load EAX with NIL so we can quickly store it, and set up
311 ;; stuff for the loop.
312 (inst mov eax-tn nil-value)
314 (inst mov ecx-tn (- nvals register-arg-count))
315 ;; solaris requires DF being zero.
317 ;; Jump into the default loop.
318 (inst jmp default-stack-vals)
320 ;; The regs are defaulted. We need to copy any stack arguments,
321 ;; and then default the remaining stack arguments.
322 (emit-label regs-defaulted)
324 (storew edi-tn ebx-tn (- (1+ 1)))
325 ;; Compute the number of stack arguments, and if it's zero or
326 ;; less, don't copy any stack arguments.
327 (inst sub ecx-tn (fixnumize register-arg-count))
328 (inst jmp :le no-stack-args)
330 ;; Throw away any unwanted args.
331 (inst cmp ecx-tn (fixnumize (- nvals register-arg-count)))
332 (inst jmp :be count-okay)
333 (inst mov ecx-tn (fixnumize (- nvals register-arg-count)))
334 (emit-label count-okay)
335 ;; Save the number of stack values.
336 (inst mov eax-tn ecx-tn)
337 ;; Compute a pointer to where the stack args go.
339 (make-ea :dword :base ebp-tn
340 :disp (* (- (1+ register-arg-count)) n-word-bytes)))
341 ;; Save ESI, and compute a pointer to where the args come from.
342 (storew esi-tn ebx-tn (- (1+ 2)))
344 (make-ea :dword :base ebx-tn
345 :disp (* (- (1+ register-arg-count)) n-word-bytes)))
347 (inst shr ecx-tn word-shift) ; make word count
351 ;; solaris requires DF being zero.
354 (loadw esi-tn ebx-tn (- (1+ 2)))
355 ;; Now we have to default the remaining args. Find out how many.
356 (inst sub eax-tn (fixnumize (- nvals register-arg-count)))
358 ;; If none, then just blow out of here.
359 (inst jmp :le restore-edi)
360 (inst mov ecx-tn eax-tn)
361 (inst shr ecx-tn word-shift) ; word count
362 ;; Load EAX with NIL for fast storing.
363 (inst mov eax-tn nil-value)
365 (emit-label default-stack-vals)
368 ;; solaris requires DF being zero.
370 ;; Restore EDI, and reset the stack.
371 (emit-label restore-edi)
372 (loadw edi-tn ebx-tn (- (1+ 1)))
373 (inst mov esp-tn ebx-tn))))
376 ;;;; unknown values receiving
378 ;;; Emit code needed at the return point for an unknown-values call
379 ;;; for an arbitrary number of values.
381 ;;; We do the single and non-single cases with no shared code: there
382 ;;; doesn't seem to be any potential overlap, and receiving a single
383 ;;; value is more important efficiency-wise.
385 ;;; When there is a single value, we just push it on the stack,
386 ;;; returning the old SP and 1.
388 ;;; When there is a variable number of values, we move all of the
389 ;;; argument registers onto the stack, and return ARGS and NARGS.
391 ;;; ARGS and NARGS are TNs wired to the named locations. We must
392 ;;; explicitly allocate these TNs, since their lifetimes overlap with
393 ;;; the results start and count. (Also, it's nice to be able to target
395 (defun receive-unknown-values (args nargs start count)
396 (declare (type tn args nargs start count))
397 (let ((variable-values (gen-label))
399 (inst jmp :c variable-values)
401 (cond ((location= start (first *register-arg-tns*))
402 (inst push (first *register-arg-tns*))
403 (inst lea start (make-ea :dword :base esp-tn :disp 4)))
404 (t (inst mov start esp-tn)
405 (inst push (first *register-arg-tns*))))
406 (inst mov count (fixnumize 1))
409 (emit-label variable-values)
410 ;; dtc: this writes the registers onto the stack even if they are
411 ;; not needed, only the number specified in ecx are used and have
412 ;; stack allocated to them. No harm is done.
414 for arg in *register-arg-tns*
416 do (storew arg args i))
423 ;;; VOP that can be inherited by unknown values receivers. The main thing this
424 ;;; handles is allocation of the result temporaries.
425 (define-vop (unknown-values-receiver)
426 (:temporary (:sc descriptor-reg :offset ebx-offset
427 :from :eval :to (:result 0))
429 (:temporary (:sc any-reg :offset ecx-offset
430 :from :eval :to (:result 1))
432 (:results (start :scs (any-reg control-stack))
433 (count :scs (any-reg control-stack))))
435 ;;;; local call with unknown values convention return
437 ;;; Non-TR local call for a fixed number of values passed according to
438 ;;; the unknown values convention.
440 ;;; FP is the frame pointer in install before doing the call.
442 ;;; NFP would be the number-stack frame pointer if we had a separate
445 ;;; Args are the argument passing locations, which are specified only
446 ;;; to terminate their lifetimes in the caller.
448 ;;; VALUES are the return value locations (wired to the standard
449 ;;; passing locations). NVALS is the number of values received.
451 ;;; Save is the save info, which we can ignore since saving has been
454 ;;; TARGET is a continuation pointing to the start of the called
456 (define-vop (call-local)
460 (:results (values :more t))
462 (:move-args :local-call)
463 (:info arg-locs callee target nvals)
465 (:ignore nfp arg-locs args #+nil callee)
467 (trace-table-entry trace-table-call-site)
470 (let ((ret-tn (callee-return-pc-tn callee)))
472 (format t "*call-local ~S; tn-kind ~S; tn-save-tn ~S; its tn-kind ~S~%"
473 ret-tn (sb!c::tn-kind ret-tn) (sb!c::tn-save-tn ret-tn)
474 (sb!c::tn-kind (sb!c::tn-save-tn ret-tn)))
476 ;; Is the return-pc on the stack or in a register?
479 #+nil (format t "*call-local: ret-tn on stack; offset=~S~%"
481 (storew (make-fixup nil :code-object return)
482 ebp-tn (- (1+ (tn-offset ret-tn)))))
484 (inst lea ret-tn (make-fixup nil :code-object return)))))
486 (note-this-location vop :call-site)
489 (default-unknown-values vop values nvals)
490 (trace-table-entry trace-table-normal)))
492 ;;; Non-TR local call for a variable number of return values passed according
493 ;;; to the unknown values convention. The results are the start of the values
494 ;;; glob and the number of values received.
495 (define-vop (multiple-call-local unknown-values-receiver)
500 (:move-args :local-call)
501 (:info save callee target)
502 (:ignore args save nfp #+nil callee)
505 (trace-table-entry trace-table-call-site)
508 (let ((ret-tn (callee-return-pc-tn callee)))
510 (format t "*multiple-call-local ~S; tn-kind ~S; tn-save-tn ~S; its tn-kind ~S~%"
511 ret-tn (sb!c::tn-kind ret-tn) (sb!c::tn-save-tn ret-tn)
512 (sb!c::tn-kind (sb!c::tn-save-tn ret-tn)))
514 ;; Is the return-pc on the stack or in a register?
517 #+nil (format t "*multiple-call-local: ret-tn on stack; offset=~S~%"
520 (storew (make-fixup nil :code-object return)
521 ebp-tn (- (1+ (tn-offset ret-tn)))))
524 (inst lea ret-tn (make-fixup nil :code-object return)))))
526 (note-this-location vop :call-site)
529 (note-this-location vop :unknown-return)
530 (receive-unknown-values values-start nvals start count)
531 (trace-table-entry trace-table-normal)))
533 ;;;; local call with known values return
535 ;;; Non-TR local call with known return locations. Known-value return
536 ;;; works just like argument passing in local call.
538 ;;; Note: we can't use normal load-tn allocation for the fixed args,
539 ;;; since all registers may be tied up by the more operand. Instead,
540 ;;; we use MAYBE-LOAD-STACK-TN.
541 (define-vop (known-call-local)
545 (:results (res :more t))
546 (:move-args :local-call)
548 (:info save callee target)
549 (:ignore args res save nfp #+nil callee)
552 (trace-table-entry trace-table-call-site)
555 (let ((ret-tn (callee-return-pc-tn callee)))
558 (format t "*known-call-local ~S; tn-kind ~S; tn-save-tn ~S; its tn-kind ~S~%"
559 ret-tn (sb!c::tn-kind ret-tn) (sb!c::tn-save-tn ret-tn)
560 (sb!c::tn-kind (sb!c::tn-save-tn ret-tn)))
562 ;; Is the return-pc on the stack or in a register?
565 #+nil (format t "*known-call-local: ret-tn on stack; offset=~S~%"
568 (storew (make-fixup nil :code-object return)
569 ebp-tn (- (1+ (tn-offset ret-tn)))))
572 (inst lea ret-tn (make-fixup nil :code-object return)))))
574 (note-this-location vop :call-site)
577 (note-this-location vop :known-return)
578 (trace-table-entry trace-table-normal)))
580 ;;; Return from known values call. We receive the return locations as
581 ;;; arguments to terminate their lifetimes in the returning function. We
582 ;;; restore FP and CSP and jump to the Return-PC.
584 ;;; We can assume we know exactly where old-fp and return-pc are because
585 ;;; make-old-fp-save-location and make-return-pc-save-location always
586 ;;; return the same place.
588 (define-vop (known-return)
590 (return-pc :scs (any-reg immediate-stack) :target rpc)
592 (:move-args :known-return)
594 (:temporary (:sc unsigned-reg :from (:argument 1)) rpc)
595 (:ignore val-locs vals)
598 (trace-table-entry trace-table-fun-epilogue)
599 ;; Save the return-pc in a register 'cause the frame-pointer is
600 ;; going away. Note this not in the usual stack location so we
603 ;; Restore the stack.
605 ;; Restore the old fp. We know OLD-FP is going to be in its stack
606 ;; save slot, which is a different frame that than this one,
607 ;; so we don't have to worry about having just cleared
608 ;; most of the stack.
611 (trace-table-entry trace-table-normal)))
613 ;;; From Douglas Crosher
614 ;;; Return from known values call. We receive the return locations as
615 ;;; arguments to terminate their lifetimes in the returning function. We
616 ;;; restore FP and CSP and jump to the Return-PC.
618 ;;; The old-fp may be either in a register or on the stack in its
619 ;;; standard save locations - slot 0.
621 ;;; The return-pc may be in a register or on the stack in any slot.
622 (define-vop (known-return)
626 (:move-args :known-return)
628 (:ignore val-locs vals)
631 (trace-table-entry trace-table-fun-epilogue)
633 #+nil (format t "*known-return: old-fp ~S, tn-kind ~S; ~S ~S~%"
634 old-fp (sb!c::tn-kind old-fp) (sb!c::tn-save-tn old-fp)
635 (sb!c::tn-kind (sb!c::tn-save-tn old-fp)))
637 #+nil (format t "*known-return: return-pc ~S, tn-kind ~S; ~S ~S~%"
638 return-pc (sb!c::tn-kind return-pc)
639 (sb!c::tn-save-tn return-pc)
640 (sb!c::tn-kind (sb!c::tn-save-tn return-pc)))
642 ;; return-pc may be either in a register or on the stack.
648 #+nil (format t "*known-return: old-fp ~S on stack; offset=~S~%"
649 old-fp (tn-offset old-fp))
651 (cond ((zerop (tn-offset old-fp))
652 ;; Zot all of the stack except for the old-fp.
653 (inst lea esp-tn (make-ea :dword :base ebp-tn
654 :disp (- (* (1+ ocfp-save-offset)
656 ;; Restore the old fp from its save location on the stack,
657 ;; and zot the stack.
661 (cerror "Continue anyway"
662 "VOP return-local doesn't work if old-fp (in slot ~
663 ~S) is not in slot 0"
664 (tn-offset old-fp)))))
666 ((any-reg descriptor-reg)
667 ;; Zot all the stack.
669 ;; Restore the old-fp.
670 (move ebp-tn old-fp)))
672 ;; Return; return-pc is in a register.
673 (inst jmp return-pc))
677 #+nil (format t "*known-return: return-pc ~S on stack; offset=~S~%"
678 return-pc (tn-offset return-pc))
680 ;; Zot all of the stack except for the old-fp and return-pc.
682 (make-ea :dword :base ebp-tn
683 :disp (- (* (1+ (tn-offset return-pc)) n-word-bytes))))
684 ;; Restore the old fp. old-fp may be either on the stack in its
685 ;; save location or in a register, in either case this restores it.
687 ;; The return pops the return address (4 bytes), then we need
688 ;; to pop all the slots before the return-pc which includes the
689 ;; 4 bytes for the old-fp.
690 (inst ret (* (tn-offset return-pc) n-word-bytes))))
692 (trace-table-entry trace-table-normal)))
696 ;;; There is something of a cross-product effect with full calls.
697 ;;; Different versions are used depending on whether we know the
698 ;;; number of arguments or the name of the called function, and
699 ;;; whether we want fixed values, unknown values, or a tail call.
701 ;;; In full call, the arguments are passed creating a partial frame on
702 ;;; the stack top and storing stack arguments into that frame. On
703 ;;; entry to the callee, this partial frame is pointed to by FP.
705 ;;; This macro helps in the definition of full call VOPs by avoiding
706 ;;; code replication in defining the cross-product VOPs.
708 ;;; NAME is the name of the VOP to define.
710 ;;; NAMED is true if the first argument is an fdefinition object whose
711 ;;; definition is to be called.
713 ;;; RETURN is either :FIXED, :UNKNOWN or :TAIL:
714 ;;; -- If :FIXED, then the call is for a fixed number of values, returned in
715 ;;; the standard passing locations (passed as result operands).
716 ;;; -- If :UNKNOWN, then the result values are pushed on the stack, and the
717 ;;; result values are specified by the Start and Count as in the
718 ;;; unknown-values continuation representation.
719 ;;; -- If :TAIL, then do a tail-recursive call. No values are returned.
720 ;;; The Old-Fp and Return-PC are passed as the second and third arguments.
722 ;;; In non-tail calls, the pointer to the stack arguments is passed as
723 ;;; the last fixed argument. If Variable is false, then the passing
724 ;;; locations are passed as a more arg. Variable is true if there are
725 ;;; a variable number of arguments passed on the stack. Variable
726 ;;; cannot be specified with :TAIL return. TR variable argument call
727 ;;; is implemented separately.
729 ;;; In tail call with fixed arguments, the passing locations are
730 ;;; passed as a more arg, but there is no new-FP, since the arguments
731 ;;; have been set up in the current frame.
732 (macrolet ((define-full-call (name named return variable)
733 (aver (not (and variable (eq return :tail))))
735 ,@(when (eq return :unknown)
736 '(unknown-values-receiver)))
738 ,@(unless (eq return :tail)
739 '((new-fp :scs (any-reg) :to (:argument 1))))
741 (fun :scs (descriptor-reg control-stack)
742 :target eax :to (:argument 0))
744 ,@(when (eq return :tail)
748 ,@(unless variable '((args :more t :scs (descriptor-reg)))))
750 ,@(when (eq return :fixed)
751 '((:results (values :more t))))
753 (:save-p ,(if (eq return :tail) :compute-only t))
755 ,@(unless (or (eq return :tail) variable)
756 '((:move-args :full-call)))
760 ,@(unless (or variable (eq return :tail)) '(arg-locs))
761 ,@(unless variable '(nargs))
762 ,@(when (eq return :fixed) '(nvals))
766 ,@(unless (or variable (eq return :tail)) '(arg-locs))
767 ,@(unless variable '(args)))
769 ;; We pass either the fdefn object (for named call) or
770 ;; the actual function object (for unnamed call) in
771 ;; EAX. With named call, closure-tramp will replace it
772 ;; with the real function and invoke the real function
773 ;; for closures. Non-closures do not need this value,
774 ;; so don't care what shows up in it.
782 ;; We pass the number of arguments in ECX.
783 (:temporary (:sc unsigned-reg :offset ecx-offset :to :eval) ecx)
785 ;; With variable call, we have to load the
786 ;; register-args out of the (new) stack frame before
787 ;; doing the call. Therefore, we have to tell the
788 ;; lifetime stuff that we need to use them.
790 (mapcar (lambda (name offset)
791 `(:temporary (:sc descriptor-reg
796 *register-arg-names* *register-arg-offsets*))
798 ,@(when (eq return :tail)
799 '((:temporary (:sc unsigned-reg
804 (:generator ,(+ (if named 5 0)
806 (if (eq return :tail) 0 10)
808 (if (eq return :unknown) 25 0))
809 (trace-table-entry trace-table-call-site)
811 ;; This has to be done before the frame pointer is
812 ;; changed! EAX stores the 'lexical environment' needed
818 ;; For variable call, compute the number of
819 ;; arguments and move some of the arguments to
822 ;; Compute the number of arguments.
823 (noise '(inst mov ecx new-fp))
824 (noise '(inst sub ecx esp-tn))
825 ;; Move the necessary args to registers,
826 ;; this moves them all even if they are
829 for name in *register-arg-names*
830 for index downfrom -1
831 do (noise `(loadw ,name new-fp ,index)))
835 (inst mov ecx (fixnumize nargs)))))
836 ,@(cond ((eq return :tail)
837 '(;; Python has figured out what frame we should
838 ;; return to so might as well use that clue.
839 ;; This seems really important to the
840 ;; implementation of things like
841 ;; (without-interrupts ...)
843 ;; dtc; Could be doing a tail call from a
844 ;; known-local-call etc in which the old-fp
845 ;; or ret-pc are in regs or in non-standard
846 ;; places. If the passing location were
847 ;; wired to the stack in standard locations
848 ;; then these moves will be un-necessary;
849 ;; this is probably best for the x86.
852 (unless (= ocfp-save-offset
854 ;; FIXME: FORMAT T for stale
855 ;; diagnostic output (several of
856 ;; them around here), ick
857 (format t "** tail-call old-fp not S0~%")
858 (move old-fp-tmp old-fp)
861 (- (1+ ocfp-save-offset)))))
862 ((any-reg descriptor-reg)
863 (format t "** tail-call old-fp in reg not S0~%")
866 (- (1+ ocfp-save-offset)))))
868 ;; For tail call, we have to push the
869 ;; return-pc so that it looks like we CALLed
870 ;; despite the fact that we are going to JMP.
871 (inst push return-pc)
874 ;; For non-tail call, we have to save our
875 ;; frame pointer and install the new frame
876 ;; pointer. We can't load stack tns after this
878 `(;; Python doesn't seem to allocate a frame
879 ;; here which doesn't leave room for the
882 ;; The variable args are on the stack and
883 ;; become the frame, but there may be <3
884 ;; args and 3 stack slots are assumed
885 ;; allocate on the call. So need to ensure
886 ;; there are at least 3 slots. This hack
889 '(inst sub esp-tn (fixnumize 3)))
892 (storew ebp-tn new-fp (- (1+ ocfp-save-offset)))
894 (move ebp-tn new-fp) ; NB - now on new stack frame.
897 (when step-instrumenting
898 (emit-single-step-test)
900 (inst break single-step-around-trap))
903 (note-this-location vop :call-site)
905 (inst ,(if (eq return :tail) 'jmp 'call)
906 (make-ea :dword :base eax
908 '(- (* fdefn-raw-addr-slot
910 other-pointer-lowtag)
911 '(- (* closure-fun-slot n-word-bytes)
912 fun-pointer-lowtag))))
915 '((default-unknown-values vop values nvals)))
917 '((note-this-location vop :unknown-return)
918 (receive-unknown-values values-start nvals start count)))
920 (trace-table-entry trace-table-normal)))))
922 (define-full-call call nil :fixed nil)
923 (define-full-call call-named t :fixed nil)
924 (define-full-call multiple-call nil :unknown nil)
925 (define-full-call multiple-call-named t :unknown nil)
926 (define-full-call tail-call nil :tail nil)
927 (define-full-call tail-call-named t :tail nil)
929 (define-full-call call-variable nil :fixed t)
930 (define-full-call multiple-call-variable nil :unknown t))
932 ;;; This is defined separately, since it needs special code that BLT's
933 ;;; the arguments down. All the real work is done in the assembly
934 ;;; routine. We just set things up so that it can find what it needs.
935 (define-vop (tail-call-variable)
936 (:args (args :scs (any-reg control-stack) :target esi)
937 (function :scs (descriptor-reg control-stack) :target eax)
940 (:temporary (:sc unsigned-reg :offset esi-offset :from (:argument 0)) esi)
941 (:temporary (:sc unsigned-reg :offset eax-offset :from (:argument 1)) eax)
942 ; (:ignore ret-addr old-fp)
944 ;; Move these into the passing locations if they are not already there.
948 ;; The following assumes that the return-pc and old-fp are on the
949 ;; stack in their standard save locations - Check this.
950 (unless (and (sc-is old-fp control-stack)
951 (= (tn-offset old-fp) ocfp-save-offset))
952 (error "tail-call-variable: ocfp not on stack in standard save location?"))
953 (unless (and (sc-is ret-addr sap-stack)
954 (= (tn-offset ret-addr) return-pc-save-offset))
955 (error "tail-call-variable: ret-addr not on stack in standard save location?"))
958 ;; And jump to the assembly routine.
959 (inst jmp (make-fixup 'tail-call-variable :assembly-routine))))
961 ;;;; unknown values return
963 ;;; Return a single-value using the Unknown-Values convention. Specifically,
964 ;;; we jump to clear the stack and jump to return-pc+2.
966 ;;; We require old-fp to be in a register, because we want to reset ESP before
967 ;;; restoring EBP. If old-fp were still on the stack, it could get clobbered
970 ;;; pfw--get wired-tn conflicts sometimes if register sc specd for args
971 ;;; having problems targeting args to regs -- using temps instead.
973 ;;; First off, modifying the return-pc defeats the branch-prediction
974 ;;; optimizations on modern CPUs quite handily. Second, we can do all
975 ;;; this without needing a temp register. Fixed the latter, at least.
976 ;;; -- AB 2006/Feb/04
977 (define-vop (return-single)
983 (trace-table-entry trace-table-fun-epilogue)
984 ;; Code structure lifted from known-return.
987 ;; return PC in register for some reason (local call?)
988 ;; we jmp to the return pc after fixing the stack and frame.
991 ;; ofp on stack must be in slot 0 (the traditional storage place).
992 ;; Drop the stack above it and pop it off.
993 (cond ((zerop (tn-offset old-fp))
994 (inst lea esp-tn (make-ea :dword :base ebp-tn
995 :disp (- (* (1+ ocfp-save-offset)
999 ;; Should this ever happen, we do the same as above, but
1000 ;; using (tn-offset old-fp) instead of ocfp-save-offset
1001 ;; (which is 0 anyway, see src/compiler/x86/vm.lisp) and
1002 ;; then lea esp again against itself with a displacement
1003 ;; of (* (tn-offset old-fp) n-word-bytes) to clear the
1004 ;; rest of the stack.
1005 (cerror "Continue anyway"
1006 "VOP return-single doesn't work if old-fp (in slot ~S) is not in slot 0" (tn-offset old-fp)))))
1007 ((any-reg descriptor-reg)
1008 ;; ofp in reg, drop the stack and load the real fp.
1009 (move esp-tn ebp-tn)
1010 (move ebp-tn old-fp)))
1012 ;; Set single-value-return flag
1015 (inst jmp return-pc))
1018 ;; Note that this will only work right if, when old-fp is on
1019 ;; the stack, it has a lower tn-offset than return-pc. One of
1020 ;; the comments in known-return indicate that this is the case
1021 ;; (in that it will be in its save location), but we may wish
1022 ;; to assert that (in either the weaker or stronger forms).
1023 ;; Should this ever not be the case, we should load old-fp
1024 ;; into a temp reg while we fix the stack.
1025 ;; Drop stack above return-pc
1026 (inst lea esp-tn (make-ea :dword :base ebp-tn
1027 :disp (- (* (1+ (tn-offset return-pc))
1029 ;; Set single-value return flag
1031 ;; Restore the old frame pointer
1032 (move ebp-tn old-fp)
1033 ;; And return, dropping the rest of the stack as we go.
1034 (inst ret (* (tn-offset return-pc) n-word-bytes))))))
1036 ;;; Do unknown-values return of a fixed (other than 1) number of
1037 ;;; values. The VALUES are required to be set up in the standard
1038 ;;; passing locations. NVALS is the number of values returned.
1040 ;;; Basically, we just load ECX with the number of values returned and
1041 ;;; EBX with a pointer to the values, set ESP to point to the end of
1042 ;;; the values, and jump directly to return-pc.
1043 (define-vop (return)
1045 (return-pc :to (:eval 1))
1050 ;; In the case of other than one value, we need these registers to
1051 ;; tell the caller where they are and how many there are.
1052 (:temporary (:sc unsigned-reg :offset ebx-offset) ebx)
1053 (:temporary (:sc unsigned-reg :offset ecx-offset) ecx)
1055 ;; We need to stretch the lifetime of return-pc past the argument
1056 ;; registers so that we can default the argument registers without
1057 ;; trashing return-pc.
1058 (:temporary (:sc unsigned-reg :offset (first *register-arg-offsets*)
1060 (:temporary (:sc unsigned-reg :offset (second *register-arg-offsets*)
1062 (:temporary (:sc unsigned-reg :offset (third *register-arg-offsets*)
1066 (trace-table-entry trace-table-fun-epilogue)
1067 ;; Establish the values pointer and values count.
1070 (inst xor ecx ecx) ; smaller
1071 (inst mov ecx (fixnumize nvals)))
1072 ;; Restore the frame pointer.
1073 (move ebp-tn old-fp)
1074 ;; Clear as much of the stack as possible, but not past the return
1076 (inst lea esp-tn (make-ea :dword :base ebx
1077 :disp (- (* (max nvals 2) n-word-bytes))))
1078 ;; Pre-default any argument register that need it.
1079 (when (< nvals register-arg-count)
1080 (let* ((arg-tns (nthcdr nvals (list a0 a1 a2)))
1081 (first (first arg-tns)))
1082 (inst mov first nil-value)
1083 (dolist (tn (cdr arg-tns))
1084 (inst mov tn first))))
1085 ;; Set multi-value return flag.
1087 ;; And away we go. Except that return-pc is still on the
1088 ;; stack and we've changed the stack pointer. So we have to
1089 ;; tell it to index off of EBX instead of EBP.
1090 (cond ((zerop nvals)
1091 ;; Return popping the return address and the OCFP.
1092 (inst ret n-word-bytes))
1094 ;; Return popping the return, leaving 1 slot. Can this
1095 ;; happen, or is a single value return handled elsewhere?
1098 (inst jmp (make-ea :dword :base ebx
1099 :disp (- (* (1+ (tn-offset return-pc))
1102 (trace-table-entry trace-table-normal)))
1104 ;;; Do unknown-values return of an arbitrary number of values (passed
1105 ;;; on the stack.) We check for the common case of a single return
1106 ;;; value, and do that inline using the normal single value return
1107 ;;; convention. Otherwise, we branch off to code that calls an
1108 ;;; assembly-routine.
1110 ;;; The assembly routine takes the following args:
1111 ;;; EAX -- the return-pc to finally jump to.
1112 ;;; EBX -- pointer to where to put the values.
1113 ;;; ECX -- number of values to find there.
1114 ;;; ESI -- pointer to where to find the values.
1115 (define-vop (return-multiple)
1116 (:args (old-fp :to (:eval 1) :target old-fp-temp)
1117 (return-pc :target eax)
1118 (vals :scs (any-reg) :target esi)
1119 (nvals :scs (any-reg) :target ecx))
1121 (:temporary (:sc unsigned-reg :offset eax-offset :from (:argument 1)) eax)
1122 (:temporary (:sc unsigned-reg :offset esi-offset :from (:argument 2)) esi)
1123 (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 3)) ecx)
1124 (:temporary (:sc unsigned-reg :offset ebx-offset :from (:eval 0)) ebx)
1125 (:temporary (:sc descriptor-reg :offset (first *register-arg-offsets*)
1126 :from (:eval 0)) a0)
1127 (:temporary (:sc unsigned-reg :from (:eval 1)) old-fp-temp)
1131 (trace-table-entry trace-table-fun-epilogue)
1132 ;; Load the return-pc.
1133 (move eax return-pc)
1134 (unless (policy node (> space speed))
1135 ;; Check for the single case.
1136 (let ((not-single (gen-label)))
1137 (inst cmp nvals (fixnumize 1))
1138 (inst jmp :ne not-single)
1140 ;; Return with one value.
1142 ;; Clear the stack. We load old-fp into a register before clearing
1144 (move old-fp-temp old-fp)
1145 (move esp-tn ebp-tn)
1146 (move ebp-tn old-fp-temp)
1147 ;; Set the single-value return flag.
1152 ;; Nope, not the single case. Jump to the assembly routine.
1153 (emit-label not-single)))
1157 (move ebp-tn old-fp)
1158 (inst jmp (make-fixup 'return-multiple :assembly-routine))
1159 (trace-table-entry trace-table-normal)))
1163 ;;; We don't need to do anything special for regular functions.
1164 (define-vop (setup-environment)
1168 ;; Don't bother doing anything.
1171 ;;; Get the lexical environment from its passing location.
1172 (define-vop (setup-closure-environment)
1173 (:results (closure :scs (descriptor-reg)))
1178 (move closure eax-tn)))
1180 ;;; Copy a &MORE arg from the argument area to the end of the current
1181 ;;; frame. FIXED is the number of non-&MORE arguments.
1183 ;;; The tricky part is doing this without trashing any of the calling
1184 ;;; convention registers that are still needed. This vop is emitted
1185 ;;; directly after the xep-allocate frame. That means the registers
1186 ;;; are in use as follows:
1188 ;;; EAX -- The lexenv.
1189 ;;; EBX -- Available.
1190 ;;; ECX -- The total number of arguments.
1191 ;;; EDX -- The first arg.
1192 ;;; EDI -- The second arg.
1193 ;;; ESI -- The third arg.
1195 ;;; So basically, we have one register available for our use: EBX.
1197 ;;; What we can do is push the other regs onto the stack, and then
1198 ;;; restore their values by looking directly below where we put the
1200 (define-vop (copy-more-arg)
1203 ;; Avoid the copy if there are no more args.
1204 (cond ((zerop fixed)
1205 (inst jecxz just-alloc-frame))
1207 (inst cmp ecx-tn (fixnumize fixed))
1208 (inst jmp :be just-alloc-frame)))
1210 ;; Allocate the space on the stack.
1211 ;; stack = ebp - (max 3 frame-size) - (nargs - fixed)
1213 (make-ea :dword :base ebp-tn
1214 :disp (- (fixnumize fixed)
1216 (max 3 (sb-allocated-size 'stack))))))
1217 (inst sub ebx-tn ecx-tn) ; Got the new stack in ebx
1218 (inst mov esp-tn ebx-tn)
1220 ;; Now: nargs>=1 && nargs>fixed
1222 ;; Save the original count of args.
1223 (inst mov ebx-tn ecx-tn)
1225 (cond ((< fixed register-arg-count)
1226 ;; We must stop when we run out of stack args, not when we
1227 ;; run out of more args.
1228 ;; Number to copy = nargs-3
1229 (inst sub ecx-tn (fixnumize register-arg-count))
1230 ;; Everything of interest in registers.
1231 (inst jmp :be do-regs))
1233 ;; Number to copy = nargs-fixed
1234 (inst sub ecx-tn (fixnumize fixed))))
1236 ;; Save edi and esi register args.
1239 ;; Okay, we have pushed the register args. We can trash them
1242 ;; Initialize dst to be end of stack; skiping the values pushed
1244 (inst lea edi-tn (make-ea :dword :base esp-tn :disp 8))
1246 ;; Initialize src to be end of args.
1247 (inst mov esi-tn ebp-tn)
1248 (inst sub esi-tn ebx-tn)
1250 (inst shr ecx-tn word-shift) ; make word count
1251 ;; And copy the args.
1252 (inst cld) ; auto-inc ESI and EDI.
1256 ;; So now we need to restore EDI and ESI.
1263 (inst mov ecx-tn ebx-tn)
1265 ;; Here: nargs>=1 && nargs>fixed
1266 (when (< fixed register-arg-count)
1267 ;; Now we have to deposit any more args that showed up in
1271 ;; Store it relative to ebp
1272 (inst mov (make-ea :dword :base ebp-tn
1275 (max 3 (sb-allocated-size 'stack))))))
1276 (nth i *register-arg-tns*))
1279 (when (>= i register-arg-count)
1282 ;; Don't deposit any more than there are.
1284 (inst test ecx-tn ecx-tn)
1285 (inst cmp ecx-tn (fixnumize i)))
1286 (inst jmp :eq done)))
1292 (make-ea :dword :base ebp-tn
1293 :disp (- (* n-word-bytes
1294 (max 3 (sb-allocated-size 'stack))))))
1298 (define-vop (more-kw-arg)
1299 (:translate sb!c::%more-kw-arg)
1300 (:policy :fast-safe)
1301 (:args (object :scs (descriptor-reg) :to (:result 1))
1302 (index :scs (any-reg immediate) :to (:result 1) :target keyword))
1303 (:arg-types * tagged-num)
1304 (:results (value :scs (descriptor-reg any-reg))
1305 (keyword :scs (descriptor-reg any-reg)))
1310 (inst mov value (make-ea :dword :base object :disp (tn-value index)))
1311 (inst mov keyword (make-ea :dword :base object
1312 :disp (+ (tn-value index) n-word-bytes))))
1314 (inst mov value (make-ea :dword :base object :index index))
1315 (inst mov keyword (make-ea :dword :base object :index index
1316 :disp n-word-bytes))))))
1318 ;;; Turn more arg (context, count) into a list.
1319 (defoptimizer (%listify-rest-args stack-allocate-result) ((&rest args))
1322 (define-vop (listify-rest-args)
1323 (:translate %listify-rest-args)
1325 (:args (context :scs (descriptor-reg) :target src)
1326 (count :scs (any-reg) :target ecx))
1327 (:arg-types * tagged-num)
1328 (:temporary (:sc unsigned-reg :offset esi-offset :from (:argument 0)) src)
1329 (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx)
1330 (:temporary (:sc unsigned-reg :offset eax-offset) eax)
1331 (:temporary (:sc unsigned-reg) dst)
1332 (:results (result :scs (descriptor-reg)))
1335 (let ((enter (gen-label))
1338 (stack-allocate-p (node-stack-allocate-p node)))
1341 ;; Check to see whether there are no args, and just return NIL if so.
1342 (inst mov result nil-value)
1344 (inst lea dst (make-ea :dword :index ecx :scale 2))
1345 (maybe-pseudo-atomic stack-allocate-p
1346 (allocation dst dst node stack-allocate-p)
1347 (inst lea dst (make-ea :byte :base dst :disp list-pointer-lowtag))
1348 ;; Convert the count into a raw value, so that we can use the
1349 ;; LOOP instruction.
1351 ;; Set decrement mode (successive args at lower addresses)
1353 ;; Set up the result.
1355 ;; Jump into the middle of the loop, 'cause that's were we want
1359 ;; Compute a pointer to the next cons.
1360 (inst add dst (* cons-size n-word-bytes))
1361 ;; Store a pointer to this cons in the CDR of the previous cons.
1362 (storew dst dst -1 list-pointer-lowtag)
1364 ;; Grab one value and stash it in the car of this cons.
1366 (storew eax dst 0 list-pointer-lowtag)
1367 ;; Go back for more.
1369 ;; NIL out the last cons.
1370 (storew nil-value dst 1 list-pointer-lowtag))
1372 ;; solaris requires DF being zero.
1373 #!+sunos (inst cld))))
1375 ;;; Return the location and size of the &MORE arg glob created by
1376 ;;; COPY-MORE-ARG. SUPPLIED is the total number of arguments supplied
1377 ;;; (originally passed in ECX). FIXED is the number of non-rest
1380 ;;; We must duplicate some of the work done by COPY-MORE-ARG, since at
1381 ;;; that time the environment is in a pretty brain-damaged state,
1382 ;;; preventing this info from being returned as values. What we do is
1383 ;;; compute supplied - fixed, and return a pointer that many words
1384 ;;; below the current stack top.
1385 (define-vop (more-arg-context)
1386 (:policy :fast-safe)
1387 (:translate sb!c::%more-arg-context)
1388 (:args (supplied :scs (any-reg) :target count))
1389 (:arg-types positive-fixnum (:constant fixnum))
1391 (:results (context :scs (descriptor-reg))
1392 (count :scs (any-reg)))
1393 (:result-types t tagged-num)
1394 (:note "more-arg-context")
1396 (move count supplied)
1397 ;; SP at this point points at the last arg pushed.
1398 ;; Point to the first more-arg, not above it.
1399 (inst lea context (make-ea :dword :base esp-tn
1400 :index count :scale 1
1401 :disp (- (+ (fixnumize fixed) 4))))
1402 (unless (zerop fixed)
1403 (inst sub count (fixnumize fixed)))))
1405 ;;; Signal wrong argument count error if NARGS isn't equal to COUNT.
1406 (define-vop (verify-arg-count)
1407 (:policy :fast-safe)
1408 (:translate sb!c::%verify-arg-count)
1409 (:args (nargs :scs (any-reg)))
1410 (:arg-types positive-fixnum (:constant t))
1413 (:save-p :compute-only)
1416 (generate-error-code vop invalid-arg-count-error nargs)))
1418 (inst test nargs nargs) ; smaller instruction
1419 (inst cmp nargs (fixnumize count)))
1420 (inst jmp :ne err-lab))))
1422 ;;; Various other error signallers.
1423 (macrolet ((def (name error translate &rest args)
1424 `(define-vop (,name)
1426 `((:policy :fast-safe)
1427 (:translate ,translate)))
1428 (:args ,@(mapcar (lambda (arg)
1429 `(,arg :scs (any-reg descriptor-reg)))
1432 (:save-p :compute-only)
1434 (error-call vop ,error ,@args)))))
1435 (def arg-count-error invalid-arg-count-error
1436 sb!c::%arg-count-error nargs)
1437 (def type-check-error object-not-type-error sb!c::%type-check-error
1439 (def layout-invalid-error layout-invalid-error sb!c::%layout-invalid-error
1441 (def odd-key-args-error odd-key-args-error
1442 sb!c::%odd-key-args-error)
1443 (def unknown-key-arg-error unknown-key-arg-error
1444 sb!c::%unknown-key-arg-error key)
1445 (def nil-fun-returned-error nil-fun-returned-error nil fun))
1449 (defun emit-single-step-test ()
1450 ;; We use different ways of representing whether stepping is on on
1451 ;; +SB-THREAD / -SB-THREAD: on +SB-THREAD, we use a slot in the
1452 ;; thread structure. On -SB-THREAD we use the value of a static
1453 ;; symbol. Things are done this way, since reading a thread-local
1454 ;; slot from a symbol would require an extra register on +SB-THREAD,
1455 ;; and reading a slot from a thread structure would require an extra
1456 ;; register on -SB-THREAD.
1459 (inst fs-segment-prefix)
1460 (inst cmp (make-ea :dword
1461 :disp (* thread-stepping-slot n-word-bytes))
1464 (inst cmp (make-ea :dword
1465 :disp (+ nil-value (static-symbol-offset
1466 'sb!impl::*stepping*)
1467 (* symbol-value-slot n-word-bytes)
1468 (- other-pointer-lowtag)))
1471 (define-vop (step-instrument-before-vop)
1472 (:policy :fast-safe)
1475 (emit-single-step-test)
1477 (inst break single-step-before-trap)
1479 (note-this-location vop :step-before-vop)))