1 ;;;; Generate stubs for C-linkage library functions which we need to refer to
4 ;;;; (But note this is only the Linux version, as per the FIXME
5 ;;;; note in the BSD version in undefineds.h.)
7 ;;;; These stubs exist for the benefit of Lisp code that needs to refer
8 ;;;; to foreign symbols when dlsym() is not available (i.e. when dumping
9 ;;;; cold-sbcl.core, when we may be running in a host that's not SBCL,
10 ;;;; or on platforms that don't have it at all). If the runtime is
11 ;;;; dynamically linked, library functions won't be linked into it, so
12 ;;;; the map file won't show them. So, we need a bunch of stubs that
15 ;;;; This software is part of the SBCL system. See the README file for
16 ;;;; more information.
18 ;;;; This software is derived from the CMU CL system, which was
19 ;;;; written at Carnegie Mellon University and released into the
20 ;;;; public domain. The software is in the public domain and is
21 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
22 ;;;; files for more information.
25 (defun ldso-stubify (fct str
)
26 (format str
"LDSO_STUBIFY(~A)~%" fct
))
28 ;;; This is an attempt to follow DB's hint of sbcl-devel
29 ;;; 2001-09-18. -- CSR
31 ;;; And an attempt to work around the Sun toolchain... --ns
33 (defun ldso-stubify (fct str
)
35 .globl ldso_stub__~A ; \\
36 FUNCDEF(ldso_stub__~A) ; \\
38 sethi %hi(~A),%g1 ; \\
39 jmpl %g1+%lo(~A),%g0 ; \\
40 nop /* delay slot*/ ; \\
42 .size ldso_stub__~A,.L~Ae1-ldso_stub__~A ;~%"
43 (make-list 9 :initial-element fct
)))
45 (defvar *preludes
* '("
46 /* This is an automatically generated file, please do not hand-edit it.
47 * See the program tools-for-build/ldso-stubs.lisp. */
49 #ifndef LANGUAGE_ASSEMBLY
50 #define LANGUAGE_ASSEMBLY
55 #ifdef LISP_FEATURE_SPARC
56 #include \"sparc-funcdef.h\"
60 #!+(and (or x86 x86-64
) (not darwin
)) "
61 #define LDSO_STUBIFY(fct) \\
63 .globl ldso_stub__ ## fct ; \\
64 .type ldso_stub__ ## fct,@function ; \\
65 ldso_stub__ ## fct: ; \\
68 .size ldso_stub__ ## fct,.L ## fct ## e1-ldso_stub__ ## fct ;"
70 ;;; osf1 has ancient cpp that doesn't do ##
72 #define LDSO_STUBIFY(fct) \\
73 .globl ldso_stub__/**/fct ; \\
74 ldso_stub__/**/fct: ; \\
78 ;;; but there's no reason we need to put up with that on modern (Linux) OSes
79 #!+(and linux alpha
) "
80 #define LDSO_STUBIFY(fct) \\
81 .globl ldso_stub__ ## fct ; \\
82 .type ldso_stub__ ## fct,@function ; \\
83 ldso_stub__ ## fct: ; \\
86 .size ldso_stub__ ## fct,.L ## fct ## e1-ldso_stub__ ## fct ;"
88 #!+(and (not darwin
) ppc
) "
89 #define LDSO_STUBIFY(fct) \\
90 .globl ldso_stub__ ## fct ; \\
91 .type ldso_stub__ ## fct,@function ; \\
92 ldso_stub__ ## fct: ; \\
95 .size ldso_stub__ ## fct,.L ## fct ## e1-ldso_stub__ ## fct ;"
98 #define LDSO_STUBIFY(fct) @\\
100 .globl _ldso_stub___ ## fct @\\
101 _ldso_stub___ ## fct: @\\
102 b ldso_stub__ ## fct ## stub @\\
103 .symbol_stub ldso_stub__ ## fct ## stub: @\\
104 .indirect_symbol _ ## fct @\\
105 lis r11,ha16(ldso_stub__ ## fct ## $lazy_ptr) @\\
106 lwz r12,lo16(ldso_stub__ ## fct ## $lazy_ptr)(r11) @\\
108 addi r11,r11,lo16(ldso_stub__ ## fct ## $lazy_ptr) @\\
110 .lazy_symbol_pointer @\\
111 ldso_stub__ ## fct ## $lazy_ptr: @\\
112 .indirect_symbol _ ## fct @\\
113 .long dyld_stub_binding_helper"
115 ;;; darwin x86 assembler is weird and follows the ppc assembler syntax
116 #!+(and darwin x86
) "
117 #define LDSO_STUBIFY(fct) \\
120 .globl _ldso_stub___ ## fct ; \\
121 _ldso_stub___ ## fct: ; \\
122 jmp L ## fct ## $stub ; \\
123 .section __IMPORT,__jump_table,symbol_stubs,self_modifying_code+pure_instructions,5 ; \\
124 L ## fct ## $stub: ; \\
125 .indirect_symbol _ ## fct ; \\
131 .subsections_via_symbols ; "
134 #!+(and darwin x86-64
) "
135 #define LDSO_STUBIFY(fct) \\
137 .globl _ldso_stub___ ## fct ; \\
138 _ldso_stub___ ## fct: ; \\
142 ;;; KLUDGE: set up the vital fifth argument, passed on the
143 ;;; stack. Do this unconditionally, even if the stub is for a
144 ;;; function with few arguments: it can't hurt. We only do this for
145 ;;; the fifth argument, as the first four are passed in registers
146 ;;; and we apparently don't ever need to pass six arguments to a
147 ;;; libc function. -- CSR, 2003-10-29
148 ;;; Expanded to 8 arguments regardless. -- ths, 2005-03-24
150 #define LDSO_STUBIFY(fct) \\
151 .globl ldso_stub__ ## fct ; \\
152 .type ldso_stub__ ## fct,@function ; \\
153 .ent ldso_stub__ ## fct ; \\
154 ldso_stub__ ## fct: ; \\
174 .end ldso_stub__ ## fct ; \\
175 .size ldso_stub__ ## fct,.-ldso_stub__ ## fct ;"))
177 (defvar *stubs
* (append
279 ;; These aren't needed on the X86 because they're microcoded into the
280 ;; FPU, so the Lisp VOPs can implement them directly without having to
283 ;; Note: There might be some other functions in this category as well.
284 ;; E.g. I notice tanh() and acos() in the list above.. -- WHN 2001-06-07
296 '("ieee_get_fp_control"
297 "ieee_set_fp_control")
298 ;; FIXME: After 1.0 this should be made
299 ;; #!-linkage-table, as we only need these stubs if
300 ;; we don't have linkage-table. Done this way now to
301 ;; cut down on the number of ports affected.
302 #!-
(or win32 darwin freebsd netbsd openbsd
)
313 #!+os-provides-dladdr
315 #!-sunos
;; !defined(SVR4)
318 (with-open-file (f "src/runtime/ldso-stubs.S" :direction
:output
:if-exists
:supersede
)
319 (assert (= (length *preludes
*) 2))
320 (dolist (pre *preludes
*)
322 (dolist (stub *stubs
*)
323 (check-type stub string
)
324 (ldso-stubify stub f
)))