X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fx86%2Fnlx.lisp;h=c15ba615cae40eae56e4f9734557ea53b9be06c6;hb=68c539ab90bb39f342229e68bf9286f63824597a;hp=3ce63feb8da30d507d2b5174446df1aaf20eb369;hpb=adf0d51d2bde8b723276bacf94641df9aa5ae561;p=sbcl.git diff --git a/src/compiler/x86/nlx.lisp b/src/compiler/x86/nlx.lisp index 3ce63fe..c15ba61 100644 --- a/src/compiler/x86/nlx.lisp +++ b/src/compiler/x86/nlx.lisp @@ -11,17 +11,14 @@ (in-package "SB!VM") -(file-comment - "$Header$") - ;;; 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) @@ -44,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)