libc-symbols.h 27 KB

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