OSDN Git Service

Merge commit 'origin/master' into nptl
[uclinux-h8/uClibc.git] / include / libc-symbols.h
1 /* Support macros for making weak and strong aliases for symbols,
2    and for using symbol sets and linker warnings with GNU ld.
3    Copyright (C) 1995-1998,2000-2003,2004,2005,2006
4         Free Software Foundation, Inc.
5    This file is part of the GNU C Library.
6
7    The GNU C Library is free software; you can redistribute it and/or
8    modify it under the terms of the GNU Lesser General Public
9    License as published by the Free Software Foundation; either
10    version 2.1 of the License, or (at your option) any later version.
11
12    The GNU C Library is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    Lesser General Public License for more details.
16
17    You should have received a copy of the GNU Lesser General Public
18    License along with the GNU C Library; if not, write to the Free
19    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20    02111-1307 USA.  */
21
22 #ifndef _LIBC_SYMBOLS_H
23 #define _LIBC_SYMBOLS_H 1
24
25 /* This is defined for the compilation of all C library code.  features.h
26    tests this to avoid inclusion of stubs.h while compiling the library,
27    before stubs.h has been generated.  Some library code that is shared
28    with other packages also tests this symbol to see if it is being
29    compiled as part of the C library.  We must define this before including
30    config.h, because it makes some definitions conditional on whether libc
31    itself is being compiled, or just some generator program.  */
32 #define _LIBC   1
33
34
35 /* This file's macros are included implicitly in the compilation of every
36    file in the C library by -imacros.
37
38    We include uClibc_arch_features.h which is defined by arch devs.
39    It should define for us the following symbols:
40
41    * HAVE_ASM_SET_DIRECTIVE if we have `.set B, A' instead of `A = B'.
42    * ASM_GLOBAL_DIRECTIVE with `.globl' or `.global'.
43    * ASM_TYPE_DIRECTIVE_PREFIX with `@' or `#' or whatever for .type,
44      or leave it undefined if there is no .type directive.
45    * HAVE_ELF if using ELF, which supports weak symbols using `.weak'.
46    * HAVE_ASM_WEAK_DIRECTIVE if we have weak symbols using `.weak'.
47    * HAVE_ASM_WEAKEXT_DIRECTIVE if we have weak symbols using `.weakext'.
48
49    */
50
51 #include <bits/uClibc_arch_features.h>
52
53 /* Enable declarations of GNU extensions, since we are compiling them.  */
54 #define _GNU_SOURCE     1
55
56 /* Prepare for the case that `__builtin_expect' is not available.  */
57 #if defined __GNUC__ && __GNUC__ == 2 && __GNUC_MINOR__ < 96
58 # define __builtin_expect(x, expected_value) (x)
59 #endif
60 #ifndef likely
61 # define likely(x)      __builtin_expect((!!(x)),1)
62 #endif
63 #ifndef unlikely
64 # define unlikely(x)    __builtin_expect((!!(x)),0)
65 #endif
66 #if defined __GNUC__ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))
67 # ifndef __cold
68 #  define __cold __attribute__ ((__cold__))
69 # endif
70 # ifndef __hot
71 #  define __hot __attribute__ ((__hot__))
72 # endif
73 #else
74 # ifndef __cold
75 #  define __cold
76 # endif
77 # ifndef __hot
78 #  define __hot
79 # endif
80 #endif
81 #ifndef __LINUX_COMPILER_H
82 # define __LINUX_COMPILER_H
83 #endif
84 #ifndef __cast__
85 # define __cast__(_to)
86 #endif
87
88 #if defined __GNUC__ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
89 # define attribute_optimize(x) __attribute__ ((optimize(x)))
90 #else
91 # define attribute_optimize(x)
92 #endif
93
94 #define attribute_unused __attribute__ ((unused))
95
96 #if defined __GNUC__ || defined __ICC
97 # define attribute_noreturn __attribute__ ((__noreturn__))
98 #else
99 # define attribute_noreturn
100 #endif
101
102 #define libc_freeres_ptr(decl) \
103       __make_section_unallocated ("__libc_freeres_ptrs, \"aw\", %nobits") \
104   decl __attribute__ ((section ("__libc_freeres_ptrs" __sec_comment)))
105 #define __libc_freeres_fn_section \
106       __attribute__ ((section ("__libc_freeres_fn")))
107
108 #ifndef NOT_IN_libc
109 # define IS_IN_libc 1
110 #endif
111
112 /* Indirect stringification.  Doing two levels allows
113  * the parameter to be a macro itself.
114  */
115 #define __stringify_1(x)    #x
116 #define __stringify(x)      __stringify_1(x)
117
118 #ifdef __UCLIBC_HAVE_ASM_SET_DIRECTIVE__
119 # define HAVE_ASM_SET_DIRECTIVE
120 #else
121 # undef HAVE_ASM_SET_DIRECTIVE
122 #endif
123
124 #ifdef __UCLIBC_ASM_GLOBAL_DIRECTIVE__
125 # define ASM_GLOBAL_DIRECTIVE __UCLIBC_ASM_GLOBAL_DIRECTIVE__
126 #else
127 # define ASM_GLOBAL_DIRECTIVE .global
128 #endif
129
130 #ifdef __UCLIBC_HAVE_ASM_WEAK_DIRECTIVE__
131 # define HAVE_ASM_WEAK_DIRECTIVE
132 #else
133 # undef HAVE_ASM_WEAK_DIRECTIVE
134 #endif
135
136 #ifdef __UCLIBC_HAVE_ASM_WEAKEXT_DIRECTIVE__
137 # define HAVE_ASM_WEAKEXT_DIRECTIVE
138 #else
139 # undef HAVE_ASM_WEAKEXT_DIRECTIVE
140 #endif
141
142 #ifdef __UCLIBC_HAVE_ASM_GLOBAL_DOT_NAME__
143 # define HAVE_ASM_GLOBAL_DOT_NAME
144 #else
145 # undef HAVE_ASM_GLOBAL_DOT_NAME
146 #endif
147
148 #ifdef __UCLIBC_HAVE_ASM_CFI_DIRECTIVES__
149 # define HAVE_ASM_CFI_DIRECTIVES
150 #else
151 # undef HAVE_ASM_CFI_DIRECTIVES
152 #endif
153
154 #if defined HAVE_ASM_WEAK_DIRECTIVE || defined HAVE_ASM_WEAKEXT_DIRECTIVE
155 # define HAVE_WEAK_SYMBOLS
156 #endif
157
158 #undef C_SYMBOL_NAME
159 #ifndef C_SYMBOL_NAME
160 # ifndef __UCLIBC_UNDERSCORES__
161 #  define C_SYMBOL_NAME(name) name
162 # else
163 #  define C_SYMBOL_NAME(name) _##name
164 # endif
165 #endif
166
167 #ifdef __UCLIBC_ASM_LINE_SEP__
168 # define ASM_LINE_SEP __UCLIBC_ASM_LINE_SEP__
169 #else
170 # define ASM_LINE_SEP ;
171 #endif
172
173 #ifdef HAVE_ASM_GLOBAL_DOT_NAME
174 # ifndef C_SYMBOL_DOT_NAME
175 #  if defined __GNUC__ && defined __GNUC_MINOR__ \
176       && (__GNUC__ << 16) + __GNUC_MINOR__ >= (3 << 16) + 1
177 #   define C_SYMBOL_DOT_NAME(name) .name
178 #  else
179 #   define C_SYMBOL_DOT_NAME(name) .##name
180 #  endif
181 # endif
182 #endif
183
184 #ifndef __ASSEMBLER__
185 /* GCC understands weak symbols and aliases; use its interface where
186    possible, instead of embedded assembly language.  */
187
188 /* Define ALIASNAME as a strong alias for NAME.  */
189 # define strong_alias(name, aliasname) _strong_alias(name, aliasname)
190 # define _strong_alias(name, aliasname) \
191   extern __typeof (name) aliasname __attribute__ ((alias (#name)));
192 /* Same, but does not check for type match. Use sparingly.
193    Example: strong_alias(stat,stat64) may fail, this one works: */
194 # define strong_alias_untyped(name, aliasname) \
195   _strong_alias_untyped(name, aliasname)
196 # define _strong_alias_untyped(name, aliasname) \
197   extern __typeof (aliasname) aliasname __attribute__ ((alias (#name)));
198
199 /* This comes between the return type and function name in
200    a function definition to make that definition weak.  */
201 # define weak_function __attribute__ ((weak))
202 # define weak_const_function __attribute__ ((weak, __const__))
203
204 # ifdef HAVE_WEAK_SYMBOLS
205
206 /* Define ALIASNAME as a weak alias for NAME.
207    If weak aliases are not available, this defines a strong alias.  */
208 #  define weak_alias(name, aliasname) _weak_alias (name, aliasname)
209 #  define _weak_alias(name, aliasname) \
210   extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));
211
212 /* Declare SYMBOL as weak undefined symbol (resolved to 0 if not defined).  */
213 #  define weak_extern(symbol) _weak_extern (weak symbol)
214 #  define _weak_extern(expr) _Pragma (#expr)
215
216 # else
217
218 #  define weak_alias(name, aliasname) strong_alias(name, aliasname)
219 #  define weak_extern(symbol) /* Nothing. */
220
221 # endif
222
223 #else /* __ASSEMBLER__ */
224
225 # ifdef HAVE_ASM_SET_DIRECTIVE
226 #  ifdef HAVE_ASM_GLOBAL_DOT_NAME
227 #   define strong_alias(original, alias) \
228         ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias)               ASM_LINE_SEP \
229         .set    C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)    ASM_LINE_SEP \
230         ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME(alias)           ASM_LINE_SEP \
231         .set    C_SYMBOL_DOT_NAME(alias),C_SYMBOL_DOT_NAME(original)
232 #   define strong_data_alias(original, alias) \
233         ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias)               ASM_LINE_SEP \
234         .set    C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)
235 #  else
236 #   define strong_alias(original, alias) \
237         ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias)               ASM_LINE_SEP \
238         .set    C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)
239 #   define strong_data_alias(original, alias) strong_alias(original, alias)
240 #  endif
241 # else
242 #  ifdef HAVE_ASM_GLOBAL_DOT_NAME
243 #   define strong_alias(original, alias) \
244         ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias)               ASM_LINE_SEP \
245         C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)          ASM_LINE_SEP \
246         ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME(alias)           ASM_LINE_SEP \
247         C_SYMBOL_DOT_NAME(alias) = C_SYMBOL_DOT_NAME(original)
248 #   define strong_data_alias(original, alias) \
249         ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias)               ASM_LINE_SEP \
250         C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)
251 #  else
252 #   define strong_alias(original, alias) \
253         ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias)               ASM_LINE_SEP \
254         C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)
255 #   define strong_data_alias(original, alias) strong_alias(original, alias)
256 #  endif
257 # endif
258
259 # ifdef HAVE_WEAK_SYMBOLS
260 #  ifdef HAVE_ASM_WEAKEXT_DIRECTIVE
261 #   ifdef HAVE_ASM_GLOBAL_DOT_NAME
262 #    define weak_alias(original, alias) \
263         .weakext C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)   ASM_LINE_SEP \
264         .weakext C_SYMBOL_DOT_NAME(alias),C_SYMBOL_DOT_NAME(original)
265 #   else
266 #    define weak_alias(original, alias) \
267         .weakext C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)
268 #   endif
269 #   define weak_extern(symbol) \
270         .weakext C_SYMBOL_NAME(symbol)
271
272 #  else /* ! HAVE_ASM_WEAKEXT_DIRECTIVE */
273
274 #   ifdef HAVE_ASM_SET_DIRECTIVE
275 #    ifdef HAVE_ASM_GLOBAL_DOT_NAME
276 #     define weak_alias(original, alias) \
277         .weak   C_SYMBOL_NAME(alias)                            ASM_LINE_SEP \
278         .set    C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)    ASM_LINE_SEP \
279         .weak   C_SYMBOL_DOT_NAME(alias)                        ASM_LINE_SEP \
280         .set    C_SYMBOL_DOT_NAME(alias),C_SYMBOL_DOT_NAME(original)
281 #    else
282 #     define weak_alias(original, alias) \
283         .weak   C_SYMBOL_NAME(alias)                            ASM_LINE_SEP \
284         .set    C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)
285 #    endif
286 #   else /* ! HAVE_ASM_SET_DIRECTIVE */
287 #    ifdef HAVE_ASM_GLOBAL_DOT_NAME
288 #     define weak_alias(original, alias) \
289         .weak   C_SYMBOL_NAME(alias)                            ASM_LINE_SEP \
290         C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)          ASM_LINE_SEP \
291         .weak   C_SYMBOL_DOT_NAME(alias)                        ASM_LINE_SEP \
292         C_SYMBOL_DOT_NAME(alias) = C_SYMBOL_DOT_NAME(original)
293 #    else
294 #     define weak_alias(original, alias) \
295         .weak   C_SYMBOL_NAME(alias)                            ASM_LINE_SEP \
296         C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)
297 #    endif
298 #   endif
299 #   define weak_extern(symbol) \
300         .weak   C_SYMBOL_NAME(symbol)
301
302 #  endif /* ! HAVE_ASM_WEAKEXT_DIRECTIVE */
303
304 # else /* ! HAVE_WEAK_SYMBOLS */
305
306 #  define weak_alias(original, alias) strong_alias(original, alias)
307 #  define weak_extern(symbol) /* Nothing */
308 # endif /* ! HAVE_WEAK_SYMBOLS */
309
310 #endif /* __ASSEMBLER__ */
311
312
313 /* On some platforms we can make internal function calls (i.e., calls of
314    functions not exported) a bit faster by using a different calling
315    convention.  */
316 #ifndef internal_function
317 # define internal_function      /* empty */
318 #endif
319
320
321 /* We want the .gnu.warning.SYMBOL section to be unallocated.  */
322 #define __make_section_unallocated(section_string)      \
323   __asm__ (".section " section_string "\n\t.previous");
324
325
326 /* Tacking on "\n#APP\n\t#" to the section name makes gcc put it's bogus
327    section attributes on what looks like a comment to the assembler.  */
328 #ifdef __sparc__ /* HAVE_SECTION_QUOTES */
329 # define __sec_comment "\"\n#APP\n\t#\""
330 #else
331 # define __sec_comment "\n#APP\n\t#"
332 #endif
333
334
335 /* When a reference to SYMBOL is encountered, the linker will emit a
336    warning message MSG.  */
337 #define link_warning(symbol, msg) \
338   __make_section_unallocated (".gnu.warning." #symbol) \
339   static const char __evoke_link_warning_##symbol[]     \
340     __attribute__ ((used, section (".gnu.warning." #symbol __sec_comment))) \
341     = msg;
342
343 /* Handling on non-exported internal names.  We have to do this only
344    for shared code.  */
345 #ifdef SHARED
346 # define INTUSE(name) name##_internal
347 # define INTDEF(name) strong_alias (name, name##_internal)
348 # define INTVARDEF(name) _INTVARDEF (name, name##_internal)
349 # if defined HAVE_VISIBILITY_ATTRIBUTE
350 #  define _INTVARDEF(name, aliasname) \
351   extern __typeof (name) aliasname __attribute__ ((alias (#name), \
352                                                    visibility ("hidden")));
353 # else
354 #  define _INTVARDEF(name, aliasname) \
355   extern __typeof (name) aliasname __attribute__ ((alias (#name)));
356 # endif
357 # define INTDEF2(name, newname) strong_alias (name, newname##_internal)
358 # define INTVARDEF2(name, newname) _INTVARDEF (name, newname##_internal)
359 #else
360 # define INTUSE(name) name
361 # define INTDEF(name)
362 # define INTVARDEF(name)
363 # define INTDEF2(name, newname)
364 # define INTVARDEF2(name, newname)
365 #endif
366
367
368 /* The following macros are used for PLT bypassing within libc.so
369    (and if needed other libraries similarly).
370
371    If calls to foo within libc.so should always go to foo defined in libc.so,
372    then in include/foo.h you add:
373
374    int foo(int __bar);
375    libc_hidden_proto(foo)
376
377    line and after the foo function definition:
378
379    int foo(int __bar) {
380      return __bar;
381    }
382    libc_hidden_def(foo)
383
384    or
385
386    int foo(int __bar) {
387      return __bar;
388    }
389    libc_hidden_weak(foo)
390
391    Similarly for global data: if references to foo within libc.so
392    should always go to foo defined in libc.so, then in include/foo.h:
393
394    extern int foo;
395    libc_hidden_proto(foo)
396
397    and after foo's definition:
398
399    int foo = INITIAL_FOO_VALUE;
400    libc_hidden_data_def(foo)
401
402    or
403
404    int foo = INITIAL_FOO_VALUE;
405    libc_hidden_data_weak(foo)
406
407    If foo is normally just an alias (strong or weak) to some other function,
408    you should use the normal strong_alias first, then add libc_hidden_def
409    or libc_hidden_weak:
410
411    int baz(int __bar) {
412      return __bar;
413    }
414    strong_alias(baz, foo)
415    libc_hidden_weak(foo)
416
417    If the function should be internal to multiple objects, say ld.so and
418    libc.so, the best way is to use:
419
420    #if !defined NOT_IN_libc || defined IS_IN_rtld
421    hidden_proto(foo)
422    #endif
423
424    in include/foo.h and the normal macros at all function definitions
425    depending on what DSO they belong to.
426
427    If versioned_symbol macro is used to define foo,
428    libc_hidden_ver macro should be used, as in:
429
430    int __real_foo(int __bar) {
431      return __bar;
432    }
433    versioned_symbol(libc, __real_foo, foo, GLIBC_2_1);
434    libc_hidden_ver(__real_foo, foo)
435  */
436
437 /* uClibc specific (the above comment was copied from glibc):
438  *
439  * when ppc64 will be supported, we need changes to support
440  * strong_data_alias (used by asm hidden_data_def)
441  *
442  * no versioning support, hidden[_data]_ver are noop
443  *
444  * hidden_def() in asm is _hidden_strong_alias (not strong_alias)
445  *
446  * libc_hidden_proto(foo) should be added after declaration
447  * in the header, or after extern foo... in all source files
448  * (this is discouraged).
449  * libc_hidden_def does not hide __GI_foo itself, although the name
450  * suggests it (hiding is done exclusively by libc_hidden_proto).
451
452 FIXME! - ?
453  * The reasoning to have it after the header w/ foo's prototype is
454  * to get first the __REDIRECT from original header and then create
455  * the __GI_foo alias
456
457  * Hunt for references which still go through PLT (example for x86):
458  * build shared lib, then disassemble it and search for <xxx@plt>:
459  * $ objdump -drx libuClibc-*.so >disasm.txt
460  * $ grep -F '@plt>:' disasm.txt
461  *
462  * In uclibc, malloc/free and related functions should be called
463  * through PLT (making it possible to use alternative malloc),
464  * and possibly some __pthread_xxx functions can be called through PLT
465  * (why?). The rest should not use PLT.
466  */
467
468 #if (defined __GNUC__ && defined __GNUC_MINOR__ \
469         && (( __GNUC__ >= 3 && __GNUC_MINOR__ >= 3) || __GNUC__ >= 4) \
470     ) || defined __ICC
471 # define attribute_hidden __attribute__ ((visibility ("hidden")))
472 # define __hidden_proto_hiddenattr(attrs...) __attribute__ ((visibility ("hidden"), ##attrs))
473 #else
474 # define attribute_hidden
475 # define __hidden_proto_hiddenattr(attrs...)
476 #endif
477
478 #if /*!defined STATIC &&*/ !defined __BCC__
479
480 # ifndef __ASSEMBLER__
481 #  define hidden_proto(name, attrs...) __hidden_proto(name, __GI_##name, ##attrs)
482 #  define __hidden_proto(name, internal, attrs...) \
483         extern __typeof (name) name __asm__ (__hidden_asmname (#internal)) \
484         __hidden_proto_hiddenattr (attrs);
485 #  define __hidden_asmname(name) __hidden_asmname1 (__USER_LABEL_PREFIX__, name)
486 #  define __hidden_asmname1(prefix, name) __hidden_asmname2(prefix, name)
487 #  define __hidden_asmname2(prefix, name) #prefix name
488 #  define __hidden_ver1(local, internal, name) \
489         extern __typeof (name) __EI_##name __asm__(__hidden_asmname (#internal)); \
490         extern __typeof (name) __EI_##name __attribute__((alias (__hidden_asmname1 (,#local))))
491 #  define hidden_ver(local, name)       __hidden_ver1(local, __GI_##name, name);
492 #  define hidden_data_ver(local, name)  hidden_ver(local, name)
493 #  define hidden_def(name)              __hidden_ver1(__GI_##name, name, name);
494 #  define hidden_data_def(name)         hidden_def(name)
495 #  define hidden_weak(name) \
496         __hidden_ver1(__GI_##name, name, name) __attribute__((weak));
497 #  define hidden_data_weak(name)        hidden_weak(name)
498
499 # else /* __ASSEMBLER__ */
500
501 #  ifdef HAVE_ASM_SET_DIRECTIVE
502 #   ifdef HAVE_ASM_GLOBAL_DOT_NAME
503 #    define _hidden_strong_alias(original, alias) \
504         ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias)               ASM_LINE_SEP \
505         .hidden C_SYMBOL_NAME(alias)                            ASM_LINE_SEP \
506         .set    C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)    ASM_LINE_SEP \
507         ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME(alias)           ASM_LINE_SEP \
508         .hidden C_SYMBOL_DOT_NAME(alias)                        ASM_LINE_SEP \
509         .set    C_SYMBOL_DOT_NAME(alias),C_SYMBOL_DOT_NAME(original)
510 #   else
511 #    define _hidden_strong_alias(original, alias) \
512         ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias)               ASM_LINE_SEP \
513         .hidden C_SYMBOL_NAME(alias)                            ASM_LINE_SEP \
514         .set    C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)
515 #   endif
516 #  else /* dont have .set directive */
517 #   ifdef HAVE_ASM_GLOBAL_DOT_NAME
518 #    define _hidden_strong_alias(original, alias) \
519         ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias)               ASM_LINE_SEP \
520         .hidden C_SYMBOL_NAME(alias)                            ASM_LINE_SEP \
521         C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)          ASM_LINE_SEP \
522         ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME(alias)           ASM_LINE_SEP \
523         .hidden C_SYMBOL_DOT_NAME(alias)                        ASM_LINE_SEP \
524         C_SYMBOL_DOT_NAME(alias) = C_SYMBOL_DOT_NAME(original)
525 #   else
526 #    define _hidden_strong_alias(original, alias) \
527         ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias)               ASM_LINE_SEP \
528         .hidden C_SYMBOL_NAME(alias)                            ASM_LINE_SEP \
529         C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)
530 #   endif
531 #  endif
532
533 #  ifdef HAVE_ASM_GLOBAL_DOT_NAME
534 #   define _hidden_weak_alias(original, alias) \
535         .hidden C_SYMBOL_NAME(alias)                            ASM_LINE_SEP \
536         .hidden C_SYMBOL_DOT_NAME(alias)                        ASM_LINE_SEP \
537         weak_alias(original, alias)
538 #  else
539 #   define _hidden_weak_alias(original, alias) \
540         .hidden C_SYMBOL_NAME(alias)                            ASM_LINE_SEP \
541         weak_alias(original, alias)
542 #  endif
543
544 /* For assembly, we need to do the opposite of what we do in C:
545    in assembly gcc __REDIRECT stuff is not in place, so functions
546    are defined by its normal name and we need to create the
547    __GI_* alias to it, in C __REDIRECT causes the function definition
548    to use __GI_* name and we need to add alias to the real name.
549    There is no reason to use hidden_weak over hidden_def in assembly,
550    but we provide it for consistency with the C usage.
551    hidden_proto doesn't make sense for assembly but the equivalent
552    is to call via the HIDDEN_JUMPTARGET macro instead of JUMPTARGET.  */
553 #  define hidden_def(name)      _hidden_strong_alias (name, __GI_##name)
554 #  define hidden_weak(name)     _hidden_weak_alias (name, __GI_##name)
555 #  define hidden_ver(local, name) strong_alias (local, __GI_##name)
556 #  define hidden_data_def(name) _hidden_strong_alias (name, __GI_##name)
557 #  define hidden_data_weak(name)        _hidden_weak_alias (name, __GI_##name)
558 #  define hidden_data_ver(local, name) strong_data_alias (local, __GI_##name)
559 #  ifdef HAVE_ASM_GLOBAL_DOT_NAME
560 #   define HIDDEN_JUMPTARGET(name) .__GI_##name
561 #  else
562 #   define HIDDEN_JUMPTARGET(name) __GI_##name
563 #  endif
564 # endif /* __ASSEMBLER__ */
565
566 #else /* not SHARED */
567
568 # ifndef __ASSEMBLER__
569 #  define hidden_proto(name, attrs...)
570 # else
571 #  define HIDDEN_JUMPTARGET(name) name
572 # endif /* not __ASSEMBLER__ */
573 # define hidden_weak(name)
574 # define hidden_def(name)
575 # define hidden_ver(local, name)
576 # define hidden_data_weak(name)
577 # define hidden_data_def(name)
578 # define hidden_data_ver(local, name)
579
580 #endif /* SHARED / not SHARED */
581
582
583 /* uClibc does not support versioning yet. */
584 #define versioned_symbol(lib, local, symbol, version) /* weak_alias(local, symbol) */
585 #undef hidden_ver
586 #define hidden_ver(local, name) /* strong_alias(local, __GI_##name) */
587 #undef hidden_data_ver
588 #define hidden_data_ver(local, name) /* strong_alias(local,__GI_##name) */
589
590 #if !defined NOT_IN_libc
591 # define libc_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
592 # define libc_hidden_def(name) hidden_def (name)
593 # define libc_hidden_weak(name) hidden_weak (name)
594 # define libc_hidden_ver(local, name) hidden_ver (local, name)
595 # define libc_hidden_data_def(name) hidden_data_def (name)
596 # define libc_hidden_data_weak(name) hidden_data_weak (name)
597 # define libc_hidden_data_ver(local, name) hidden_data_ver (local, name)
598 #else
599 # define libc_hidden_proto(name, attrs...)
600 # define libc_hidden_def(name)
601 # define libc_hidden_weak(name)
602 # define libc_hidden_ver(local, name)
603 # define libc_hidden_data_def(name)
604 # define libc_hidden_data_weak(name)
605 # define libc_hidden_data_ver(local, name)
606 #endif
607
608 #if defined NOT_IN_libc && defined IS_IN_rtld
609 # define rtld_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
610 # define rtld_hidden_def(name) hidden_def (name)
611 # define rtld_hidden_weak(name) hidden_weak (name)
612 # define rtld_hidden_ver(local, name) hidden_ver (local, name)
613 # define rtld_hidden_data_def(name) hidden_data_def (name)
614 # define rtld_hidden_data_weak(name) hidden_data_weak (name)
615 # define rtld_hidden_data_ver(local, name) hidden_data_ver (local, name)
616 #else
617 # define rtld_hidden_proto(name, attrs...)
618 # define rtld_hidden_def(name)
619 # define rtld_hidden_weak(name)
620 # define rtld_hidden_ver(local, name)
621 # define rtld_hidden_data_def(name)
622 # define rtld_hidden_data_weak(name)
623 # define rtld_hidden_data_ver(local, name)
624 #endif
625
626 #if defined NOT_IN_libc && defined IS_IN_libm
627 # define libm_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
628 # define libm_hidden_def(name) hidden_def (name)
629 # define libm_hidden_weak(name) hidden_weak (name)
630 # define libm_hidden_ver(local, name) hidden_ver (local, name)
631 # define libm_hidden_data_def(name) hidden_data_def (name)
632 # define libm_hidden_data_weak(name) hidden_data_weak (name)
633 # define libm_hidden_data_ver(local, name) hidden_data_ver (local, name)
634 #else
635 # define libm_hidden_proto(name, attrs...)
636 # define libm_hidden_def(name)
637 # define libm_hidden_weak(name)
638 # define libm_hidden_ver(local, name)
639 # define libm_hidden_data_def(name)
640 # define libm_hidden_data_weak(name)
641 # define libm_hidden_data_ver(local, name)
642 #endif
643
644 #if defined NOT_IN_libc && defined IS_IN_libresolv
645 # define libresolv_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
646 # define libresolv_hidden_def(name) hidden_def (name)
647 # define libresolv_hidden_weak(name) hidden_weak (name)
648 # define libresolv_hidden_ver(local, name) hidden_ver (local, name)
649 # define libresolv_hidden_data_def(name) hidden_data_def (name)
650 # define libresolv_hidden_data_weak(name) hidden_data_weak (name)
651 # define libresolv_hidden_data_ver(local, name) hidden_data_ver (local, name)
652 #else
653 # define libresolv_hidden_proto(name, attrs...)
654 # define libresolv_hidden_def(name)
655 # define libresolv_hidden_weak(name)
656 # define libresolv_hidden_ver(local, name)
657 # define libresolv_hidden_data_def(name)
658 # define libresolv_hidden_data_weak(name)
659 # define libresolv_hidden_data_ver(local, name)
660 #endif
661
662 #if defined NOT_IN_libc && defined IS_IN_librt
663 # define librt_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
664 # define librt_hidden_def(name) hidden_def (name)
665 # define librt_hidden_weak(name) hidden_weak (name)
666 # define librt_hidden_ver(local, name) hidden_ver (local, name)
667 # define librt_hidden_data_def(name) hidden_data_def (name)
668 # define librt_hidden_data_weak(name) hidden_data_weak (name)
669 # define librt_hidden_data_ver(local, name) hidden_data_ver (local, name)
670 #else
671 # define librt_hidden_proto(name, attrs...)
672 # define librt_hidden_def(name)
673 # define librt_hidden_weak(name)
674 # define librt_hidden_ver(local, name)
675 # define librt_hidden_data_def(name)
676 # define librt_hidden_data_weak(name)
677 # define librt_hidden_data_ver(local, name)
678 #endif
679
680 #if defined NOT_IN_libc && defined IS_IN_libdl
681 # define libdl_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
682 # define libdl_hidden_def(name) hidden_def (name)
683 # define libdl_hidden_weak(name) hidden_weak (name)
684 # define libdl_hidden_ver(local, name) hidden_ver (local, name)
685 # define libdl_hidden_data_def(name) hidden_data_def (name)
686 # define libdl_hidden_data_weak(name) hidden_data_weak (name)
687 # define libdl_hidden_data_ver(local, name) hidden_data_ver (local, name)
688 #else
689 # define libdl_hidden_proto(name, attrs...)
690 # define libdl_hidden_def(name)
691 # define libdl_hidden_weak(name)
692 # define libdl_hidden_ver(local, name)
693 # define libdl_hidden_data_def(name)
694 # define libdl_hidden_data_weak(name)
695 # define libdl_hidden_data_ver(local, name)
696 #endif
697
698 #if defined NOT_IN_libc && defined IS_IN_libintl
699 # define libintl_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
700 # define libintl_hidden_def(name) hidden_def (name)
701 # define libintl_hidden_weak(name) hidden_weak (name)
702 # define libintl_hidden_ver(local, name) hidden_ver (local, name)
703 # define libintl_hidden_data_def(name) hidden_data_def (name)
704 # define libintl_hidden_data_weak(name) hidden_data_weak (name)
705 # define libintl_hidden_data_ver(local, name) hidden_data_ver(local, name)
706 #else
707 # define libintl_hidden_proto(name, attrs...)
708 # define libintl_hidden_def(name)
709 # define libintl_hidden_weak(name)
710 # define libintl_hidden_ver(local, name)
711 # define libintl_hidden_data_def(name)
712 # define libintl_hidden_data_weak(name)
713 # define libintl_hidden_data_ver(local, name)
714 #endif
715
716 #if defined NOT_IN_libc && defined IS_IN_libnsl
717 # define libnsl_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
718 # define libnsl_hidden_def(name) hidden_def (name)
719 # define libnsl_hidden_weak(name) hidden_weak (name)
720 # define libnsl_hidden_ver(local, name) hidden_ver (local, name)
721 # define libnsl_hidden_data_def(name) hidden_data_def (name)
722 # define libnsl_hidden_data_weak(name) hidden_data_weak (name)
723 # define libnsl_hidden_data_ver(local, name) hidden_data_ver (local, name)
724 #else
725 # define libnsl_hidden_proto(name, attrs...)
726 # define libnsl_hidden_def(name)
727 # define libnsl_hidden_weak(name)
728 # define libnsl_hidden_ver(local, name)
729 # define libnsl_hidden_data_def(name)
730 # define libnsl_hidden_data_weak(name)
731 # define libnsl_hidden_data_ver(local, name)
732 #endif
733
734 #if defined NOT_IN_libc && defined IS_IN_libutil
735 # define libutil_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
736 # define libutil_hidden_def(name) hidden_def (name)
737 # define libutil_hidden_weak(name) hidden_weak (name)
738 # define libutil_hidden_ver(local, name) hidden_ver (local, name)
739 # define libutil_hidden_data_def(name) hidden_data_def (name)
740 # define libutil_hidden_data_weak(name) hidden_data_weak (name)
741 # define libutil_hidden_data_ver(local, name) hidden_data_ver (local, name)
742 #else
743 # define libutil_hidden_proto(name, attrs...)
744 # define libutil_hidden_def(name)
745 # define libutil_hidden_weak(name)
746 # define libutil_hidden_ver(local, name)
747 # define libutil_hidden_data_def(name)
748 # define libutil_hidden_data_weak(name)
749 # define libutil_hidden_data_ver(local, name)
750 #endif
751
752 #if defined NOT_IN_libc && defined IS_IN_libcrypt
753 # define libcrypt_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
754 # define libcrypt_hidden_def(name) hidden_def (name)
755 # define libcrypt_hidden_weak(name) hidden_weak (name)
756 # define libcrypt_hidden_ver(local, name) hidden_ver (local, name)
757 # define libcrypt_hidden_data_def(name) hidden_data_def (name)
758 # define libcrypt_hidden_data_weak(name) hidden_data_weak (name)
759 # define libcrypt_hidden_data_ver(local, name) hidden_data_ver (local, name)
760 #else
761 # define libcrypt_hidden_proto(name, attrs...)
762 # define libcrypt_hidden_def(name)
763 # define libcrypt_hidden_weak(name)
764 # define libcrypt_hidden_ver(local, name)
765 # define libcrypt_hidden_data_def(name)
766 # define libcrypt_hidden_data_weak(name)
767 # define libcrypt_hidden_data_ver(local, name)
768 #endif
769
770 #if defined NOT_IN_libc && defined IS_IN_libpthread
771 # define libpthread_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
772 # define libpthread_hidden_def(name) hidden_def (name)
773 # define libpthread_hidden_weak(name) hidden_weak (name)
774 # define libpthread_hidden_ver(local, name) hidden_ver (local, name)
775 # define libpthread_hidden_data_def(name) hidden_data_def (name)
776 # define libpthread_hidden_data_weak(name) hidden_data_weak (name)
777 # define libpthread_hidden_data_ver(local, name) hidden_data_ver (local, name)
778 #else
779 # define libpthread_hidden_proto(name, attrs...)
780 # define libpthread_hidden_def(name)
781 # define libpthread_hidden_weak(name)
782 # define libpthread_hidden_ver(local, name)
783 # define libpthread_hidden_data_def(name)
784 # define libpthread_hidden_data_weak(name)
785 # define libpthread_hidden_data_ver(local, name)
786 #endif
787
788 #endif /* libc-symbols.h */