X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fx86%2Fnlx.lisp;h=c15ba615cae40eae56e4f9734557ea53b9be06c6;hb=4fc9d21ae1d8a6a2f8ff70f589d5da103203de13;hp=e7eea3a72d26ea21146745fd9dbcb185a9f90475;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/compiler/x86/nlx.lisp b/src/compiler/x86/nlx.lisp index e7eea3a..c15ba61 100644 --- a/src/compiler/x86/nlx.lisp +++ b/src/compiler/x86/nlx.lisp @@ -12,13 +12,13 @@ (in-package "SB!VM") ;;; Make an environment-live stack TN for saving the SP for NLX entry. -(def-vm-support-routine make-nlx-sp-tn (env) +(!def-vm-support-routine make-nlx-sp-tn (env) (environment-live-tn (make-representation-tn *fixnum-primitive-type* any-reg-sc-number) env)) ;;; Make a TN for the argument count passing location for a non-local entry. -(def-vm-support-routine make-nlx-entry-argument-start-location () +(!def-vm-support-routine make-nlx-entry-argument-start-location () (make-wired-tn *fixnum-primitive-type* any-reg-sc-number ebx-offset)) (defun catch-block-ea (tn) @@ -41,7 +41,7 @@ ;;; Return a list of TNs that can be used to snapshot the dynamic state for ;;; use with the Save/Restore-Dynamic-Environment VOPs. -(def-vm-support-routine make-dynamic-state-tns () +(!def-vm-support-routine make-dynamic-state-tns () (make-n-tns 3 *backend-t-primitive-type*)) (define-vop (save-dynamic-state)