1 ;;;; temporary printing utilities and similar noise
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.
16 (:args
(object :scs
(descriptor-reg any-reg
) :target nl0
))
17 (:results
(result :scs
(descriptor-reg)))
19 (:temporary
(:sc any-reg
:offset nl0-offset
:from
(:argument
0)) nl0
)
20 (:temporary
(:sc any-reg
:offset cfunc-offset
) cfunc
)
21 (:temporary
(:sc control-stack
:offset nfp-save-offset
) nfp-save
)
24 (let ((cur-nfp (current-nfp-tn vop
)))
26 (store-stack-tn nfp-save cur-nfp
))
28 (inst li cfunc
(make-fixup "debug_print" :foreign
))
29 (inst jal
(make-fixup "call_into_c" :foreign
))
33 (load-stack-tn cur-nfp nfp-save
))