libc-symbols.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  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. #ifdef __UCLIBC_HAVE_ASM_CFI_DIRECTIVES__
  114. # define HAVE_ASM_CFI_DIRECTIVES
  115. #else
  116. # undef HAVE_ASM_CFI_DIRECTIVES
  117. #endif
  118. #if defined HAVE_ASM_WEAK_DIRECTIVE || defined HAVE_ASM_WEAKEXT_DIRECTIVE
  119. # define HAVE_WEAK_SYMBOLS
  120. #endif
  121. #undef C_SYMBOL_NAME
  122. #ifndef C_SYMBOL_NAME
  123. # ifndef __UCLIBC_UNDERSCORES__
  124. # define C_SYMBOL_NAME(name) name
  125. # else
  126. # define C_SYMBOL_NAME(name) _##name
  127. # endif
  128. #endif
  129. #ifdef __UCLIBC_ASM_LINE_SEP__
  130. # define ASM_LINE_SEP __UCLIBC_ASM_LINE_SEP__
  131. #else
  132. # define ASM_LINE_SEP ;
  133. #endif
  134. #ifdef HAVE_ASM_GLOBAL_DOT_NAME
  135. # ifndef C_SYMBOL_DOT_NAME
  136. # if defined __GNUC__ && defined __GNUC_MINOR__ \
  137. && (__GNUC__ << 16) + __GNUC_MINOR__ >= (3 << 16) + 1
  138. # define C_SYMBOL_DOT_NAME(name) .name
  139. # else
  140. # define C_SYMBOL_DOT_NAME(name) .##name
  141. # endif
  142. # endif
  143. #endif
  144. #ifndef __ASSEMBLER__
  145. /* GCC understands weak symbols and aliases; use its interface where
  146. possible, instead of embedded assembly language. */
  147. /* Define ALIASNAME as a strong alias for NAME. */
  148. # define strong_alias(name, aliasname) _strong_alias(name, aliasname)
  149. # define _strong_alias(name, aliasname) \
  150. extern __typeof (name) aliasname __attribute__ ((alias (#name)));
  151. /* This comes between the return type and function name in
  152. a function definition to make that definition weak. */
  153. # define weak_function __attribute__ ((weak))
  154. # define weak_const_function __attribute__ ((weak, __const__))
  155. # ifdef HAVE_WEAK_SYMBOLS
  156. /* Define ALIASNAME as a weak alias for NAME.
  157. If weak aliases are not available, this defines a strong alias. */
  158. # define weak_alias(name, aliasname) _weak_alias (name, aliasname)
  159. # define _weak_alias(name, aliasname) \
  160. extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));
  161. /* Declare SYMBOL as weak undefined symbol (resolved to 0 if not defined). */
  162. # define weak_extern(symbol) _weak_extern (weak symbol)
  163. # define _weak_extern(expr) _Pragma (#expr)
  164. # else
  165. # define weak_alias(name, aliasname) strong_alias(name, aliasname)
  166. # define weak_extern(symbol) /* Nothing. */
  167. # endif
  168. #else /* __ASSEMBLER__ */
  169. # ifdef HAVE_ASM_SET_DIRECTIVE
  170. # ifdef HAVE_ASM_GLOBAL_DOT_NAME
  171. # define strong_alias(original, alias) \
  172. ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  173. .set C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original) ASM_LINE_SEP \
  174. ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME(alias) ASM_LINE_SEP \
  175. .set C_SYMBOL_DOT_NAME(alias),C_SYMBOL_DOT_NAME(original)
  176. # define strong_data_alias(original, alias) \
  177. ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  178. .set C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)
  179. # else
  180. # define strong_alias(original, alias) \
  181. ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  182. .set C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)
  183. # define strong_data_alias(original, alias) strong_alias(original, alias)
  184. # endif
  185. # else
  186. # ifdef HAVE_ASM_GLOBAL_DOT_NAME
  187. # define strong_alias(original, alias) \
  188. ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  189. C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original) ASM_LINE_SEP \
  190. ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME(alias) ASM_LINE_SEP \
  191. C_SYMBOL_DOT_NAME(alias) = C_SYMBOL_DOT_NAME(original)
  192. # define strong_data_alias(original, alias) \
  193. ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  194. C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)
  195. # else
  196. # define strong_alias(original, alias) \
  197. ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  198. C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)
  199. # define strong_data_alias(original, alias) strong_alias(original, alias)
  200. # endif
  201. # endif
  202. # ifdef HAVE_WEAK_SYMBOLS
  203. # ifdef HAVE_ASM_WEAKEXT_DIRECTIVE
  204. # ifdef HAVE_ASM_GLOBAL_DOT_NAME
  205. # define weak_alias(original, alias) \
  206. .weakext C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original) ASM_LINE_SEP \
  207. .weakext C_SYMBOL_DOT_NAME(alias),C_SYMBOL_DOT_NAME(original)
  208. # else
  209. # define weak_alias(original, alias) \
  210. .weakext C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)
  211. # endif
  212. # define weak_extern(symbol) \
  213. .weakext C_SYMBOL_NAME(symbol)
  214. # else /* ! HAVE_ASM_WEAKEXT_DIRECTIVE */
  215. # ifdef HAVE_ASM_SET_DIRECTIVE
  216. # ifdef HAVE_ASM_GLOBAL_DOT_NAME
  217. # define weak_alias(original, alias) \
  218. .weak C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  219. .set C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original) ASM_LINE_SEP \
  220. .weak C_SYMBOL_DOT_NAME(alias) ASM_LINE_SEP \
  221. .set C_SYMBOL_DOT_NAME(alias),C_SYMBOL_DOT_NAME(original)
  222. # else
  223. # define weak_alias(original, alias) \
  224. .weak C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  225. .set C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)
  226. # endif
  227. # else /* ! HAVE_ASM_SET_DIRECTIVE */
  228. # ifdef HAVE_ASM_GLOBAL_DOT_NAME
  229. # define weak_alias(original, alias) \
  230. .weak C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  231. C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original) ASM_LINE_SEP \
  232. .weak C_SYMBOL_DOT_NAME(alias) ASM_LINE_SEP \
  233. C_SYMBOL_DOT_NAME(alias) = C_SYMBOL_DOT_NAME(original)
  234. # else
  235. # define weak_alias(original, alias) \
  236. .weak C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  237. C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)
  238. # endif
  239. # endif
  240. # define weak_extern(symbol) \
  241. .weak C_SYMBOL_NAME(symbol)
  242. # endif /* ! HAVE_ASM_WEAKEXT_DIRECTIVE */
  243. # else /* ! HAVE_WEAK_SYMBOLS */
  244. # define weak_alias(original, alias) strong_alias(original, alias)
  245. # define weak_extern(symbol) /* Nothing */
  246. # endif /* ! HAVE_WEAK_SYMBOLS */
  247. #endif /* __ASSEMBLER__ */
  248. /* On some platforms we can make internal function calls (i.e., calls of
  249. functions not exported) a bit faster by using a different calling
  250. convention. */
  251. #ifndef internal_function
  252. # define internal_function /* empty */
  253. #endif
  254. /* We want the .gnu.warning.SYMBOL section to be unallocated. */
  255. #define __make_section_unallocated(section_string) \
  256. __asm__ (".section " section_string "\n\t.previous");
  257. /* Tacking on "\n#APP\n\t#" to the section name makes gcc put it's bogus
  258. section attributes on what looks like a comment to the assembler. */
  259. #ifdef __sparc__ /* HAVE_SECTION_QUOTES */
  260. # define __sec_comment "\"\n#APP\n\t#\""
  261. #else
  262. # define __sec_comment "\n#APP\n\t#"
  263. #endif
  264. /* When a reference to SYMBOL is encountered, the linker will emit a
  265. warning message MSG. */
  266. #define link_warning(symbol, msg) \
  267. __make_section_unallocated (".gnu.warning." #symbol) \
  268. static const char __evoke_link_warning_##symbol[] \
  269. __attribute__ ((used, section (".gnu.warning." #symbol __sec_comment))) \
  270. = msg;
  271. /* Handling on non-exported internal names. We have to do this only
  272. for shared code. */
  273. #ifdef SHARED
  274. # define INTUSE(name) name##_internal
  275. # define INTDEF(name) strong_alias (name, name##_internal)
  276. # define INTVARDEF(name) _INTVARDEF (name, name##_internal)
  277. # if defined HAVE_VISIBILITY_ATTRIBUTE
  278. # define _INTVARDEF(name, aliasname) \
  279. extern __typeof (name) aliasname __attribute__ ((alias (#name), \
  280. visibility ("hidden")));
  281. # else
  282. # define _INTVARDEF(name, aliasname) \
  283. extern __typeof (name) aliasname __attribute__ ((alias (#name)));
  284. # endif
  285. # define INTDEF2(name, newname) strong_alias (name, newname##_internal)
  286. # define INTVARDEF2(name, newname) _INTVARDEF (name, newname##_internal)
  287. #else
  288. # define INTUSE(name) name
  289. # define INTDEF(name)
  290. # define INTVARDEF(name)
  291. # define INTDEF2(name, newname)
  292. # define INTVARDEF2(name, newname)
  293. #endif
  294. /* The following macros are used for PLT bypassing within libc.so
  295. (and if needed other libraries similarly).
  296. If calls to foo within libc.so should always go to foo defined in libc.so,
  297. then in include/foo.h you add:
  298. int foo(int __bar);
  299. libc_hidden_proto(foo)
  300. line and after the foo function definition:
  301. int foo(int __bar) {
  302. return __bar;
  303. }
  304. libc_hidden_def(foo)
  305. or
  306. int foo(int __bar) {
  307. return __bar;
  308. }
  309. libc_hidden_weak(foo)
  310. Similarly for global data: if references to foo within libc.so
  311. should always go to foo defined in libc.so, then in include/foo.h:
  312. extern int foo;
  313. libc_hidden_proto(foo)
  314. and after foo's definition:
  315. int foo = INITIAL_FOO_VALUE;
  316. libc_hidden_data_def(foo)
  317. or
  318. int foo = INITIAL_FOO_VALUE;
  319. libc_hidden_data_weak(foo)
  320. If foo is normally just an alias (strong or weak) to some other function,
  321. you should use the normal strong_alias first, then add libc_hidden_def
  322. or libc_hidden_weak:
  323. int baz(int __bar) {
  324. return __bar;
  325. }
  326. strong_alias(baz, foo)
  327. libc_hidden_weak(foo)
  328. If the function should be internal to multiple objects, say ld.so and
  329. libc.so, the best way is to use:
  330. #if !defined NOT_IN_libc || defined IS_IN_rtld
  331. hidden_proto(foo)
  332. #endif
  333. in include/foo.h and the normal macros at all function definitions
  334. depending on what DSO they belong to.
  335. If versioned_symbol macro is used to define foo,
  336. libc_hidden_ver macro should be used, as in:
  337. int __real_foo(int __bar) {
  338. return __bar;
  339. }
  340. versioned_symbol(libc, __real_foo, foo, GLIBC_2_1);
  341. libc_hidden_ver(__real_foo, foo)
  342. */
  343. /* uClibc specific (the above comment was copied from glibc):
  344. *
  345. * when ppc64 will be supported, we need changes to support
  346. * strong_data_alias (used by asm hidden_data_def)
  347. *
  348. * no versioning support, hidden[_data]_ver are noop
  349. *
  350. * hidden_def() in asm is _hidden_strong_alias (not strong_alias)
  351. *
  352. * libc_hidden_proto(foo) should be added after declaration
  353. * in the header, or after extern foo... in all source files
  354. * (this is discouraged).
  355. * libc_hidden_def does not hide __GI_foo itself, although the name
  356. * suggests it (hiding is done exclusively by libc_hidden_proto).
  357. FIXME! - ?
  358. * The reasoning to have it after the header w/ foo's prototype is
  359. * to get first the __REDIRECT from original header and then create
  360. * the __GI_foo alias
  361. * Hunt for references which still go through PLT (example for x86):
  362. * build shared lib, then disassemble it and search for <xxx@plt>:
  363. * $ objdump -drx libuClibc-*.so >disasm.txt
  364. * $ grep -F '@plt>:' disasm.txt
  365. *
  366. * In uclibc, malloc/free and related functions should be called
  367. * through PLT (making it possible to use alternative malloc),
  368. * and possibly some __pthread_xxx functions can be called through PLT
  369. * (why?). The rest should not use PLT.
  370. */
  371. #if (defined __GNUC__ && defined __GNUC_MINOR__ \
  372. && (( __GNUC__ >= 3 && __GNUC_MINOR__ >= 3) || __GNUC__ >= 4) \
  373. ) || defined __ICC
  374. # define attribute_hidden __attribute__ ((visibility ("hidden")))
  375. # define __hidden_proto_hiddenattr(attrs...) __attribute__ ((visibility ("hidden"), ##attrs))
  376. #else
  377. # define attribute_hidden
  378. # define __hidden_proto_hiddenattr(attrs...)
  379. #endif
  380. #if /*!defined STATIC &&*/ !defined __BCC__
  381. # ifndef __ASSEMBLER__
  382. # define hidden_proto(name, attrs...) __hidden_proto(name, __GI_##name, ##attrs)
  383. # define __hidden_proto(name, internal, attrs...) \
  384. extern __typeof (name) name __asm__ (__hidden_asmname (#internal)) \
  385. __hidden_proto_hiddenattr (attrs);
  386. # define __hidden_asmname(name) __hidden_asmname1 (__USER_LABEL_PREFIX__, name)
  387. # define __hidden_asmname1(prefix, name) __hidden_asmname2(prefix, name)
  388. # define __hidden_asmname2(prefix, name) #prefix name
  389. # define __hidden_ver1(local, internal, name) \
  390. extern __typeof (name) __EI_##name __asm__(__hidden_asmname (#internal)); \
  391. extern __typeof (name) __EI_##name __attribute__((alias (__hidden_asmname1 (,#local))))
  392. # define hidden_ver(local, name) __hidden_ver1(local, __GI_##name, name);
  393. # define hidden_data_ver(local, name) hidden_ver(local, name)
  394. # define hidden_def(name) __hidden_ver1(__GI_##name, name, name);
  395. # define hidden_data_def(name) hidden_def(name)
  396. # define hidden_weak(name) \
  397. __hidden_ver1(__GI_##name, name, name) __attribute__((weak));
  398. # define hidden_data_weak(name) hidden_weak(name)
  399. # else /* __ASSEMBLER__ */
  400. # ifdef HAVE_ASM_SET_DIRECTIVE
  401. # ifdef HAVE_ASM_GLOBAL_DOT_NAME
  402. # define _hidden_strong_alias(original, alias) \
  403. ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  404. .hidden C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  405. .set C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original) ASM_LINE_SEP \
  406. ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME(alias) ASM_LINE_SEP \
  407. .hidden C_SYMBOL_DOT_NAME(alias) ASM_LINE_SEP \
  408. .set C_SYMBOL_DOT_NAME(alias),C_SYMBOL_DOT_NAME(original)
  409. # else
  410. # define _hidden_strong_alias(original, alias) \
  411. ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  412. .hidden C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  413. .set C_SYMBOL_NAME(alias),C_SYMBOL_NAME(original)
  414. # endif
  415. # else /* dont have .set directive */
  416. # ifdef HAVE_ASM_GLOBAL_DOT_NAME
  417. # define _hidden_strong_alias(original, alias) \
  418. ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  419. .hidden C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  420. C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original) ASM_LINE_SEP \
  421. ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME(alias) ASM_LINE_SEP \
  422. .hidden C_SYMBOL_DOT_NAME(alias) ASM_LINE_SEP \
  423. C_SYMBOL_DOT_NAME(alias) = C_SYMBOL_DOT_NAME(original)
  424. # else
  425. # define _hidden_strong_alias(original, alias) \
  426. ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  427. .hidden C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  428. C_SYMBOL_NAME(alias) = C_SYMBOL_NAME(original)
  429. # endif
  430. # endif
  431. # ifdef HAVE_ASM_GLOBAL_DOT_NAME
  432. # define _hidden_weak_alias(original, alias) \
  433. .hidden C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  434. .hidden C_SYMBOL_DOT_NAME(alias) ASM_LINE_SEP \
  435. weak_alias(original, alias)
  436. # else
  437. # define _hidden_weak_alias(original, alias) \
  438. .hidden C_SYMBOL_NAME(alias) ASM_LINE_SEP \
  439. weak_alias(original, alias)
  440. # endif
  441. /* For assembly, we need to do the opposite of what we do in C:
  442. in assembly gcc __REDIRECT stuff is not in place, so functions
  443. are defined by its normal name and we need to create the
  444. __GI_* alias to it, in C __REDIRECT causes the function definition
  445. to use __GI_* name and we need to add alias to the real name.
  446. There is no reason to use hidden_weak over hidden_def in assembly,
  447. but we provide it for consistency with the C usage.
  448. hidden_proto doesn't make sense for assembly but the equivalent
  449. is to call via the HIDDEN_JUMPTARGET macro instead of JUMPTARGET. */
  450. # define hidden_def(name) _hidden_strong_alias (name, __GI_##name)
  451. # define hidden_weak(name) _hidden_weak_alias (name, __GI_##name)
  452. # define hidden_ver(local, name) strong_alias (local, __GI_##name)
  453. # define hidden_data_def(name) _hidden_strong_alias (name, __GI_##name)
  454. # define hidden_data_weak(name) _hidden_weak_alias (name, __GI_##name)
  455. # define hidden_data_ver(local, name) strong_data_alias (local, __GI_##name)
  456. # ifdef HAVE_ASM_GLOBAL_DOT_NAME
  457. # define HIDDEN_JUMPTARGET(name) .__GI_##name
  458. # else
  459. # define HIDDEN_JUMPTARGET(name) __GI_##name
  460. # endif
  461. # endif /* __ASSEMBLER__ */
  462. #else /* not SHARED */
  463. # ifndef __ASSEMBLER__
  464. # define hidden_proto(name, attrs...)
  465. # else
  466. # define HIDDEN_JUMPTARGET(name) name
  467. # endif /* not __ASSEMBLER__ */
  468. # define hidden_weak(name)
  469. # define hidden_def(name)
  470. # define hidden_ver(local, name)
  471. # define hidden_data_weak(name)
  472. # define hidden_data_def(name)
  473. # define hidden_data_ver(local, name)
  474. #endif /* SHARED / not SHARED */
  475. /* uClibc does not support versioning yet. */
  476. #define versioned_symbol(lib, local, symbol, version) /* weak_alias(local, symbol) */
  477. #undef hidden_ver
  478. #define hidden_ver(local, name) /* strong_alias(local, __GI_##name) */
  479. #undef hidden_data_ver
  480. #define hidden_data_ver(local, name) /* strong_alias(local,__GI_##name) */
  481. #if !defined NOT_IN_libc
  482. # define libc_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  483. # define libc_hidden_def(name) hidden_def (name)
  484. # define libc_hidden_weak(name) hidden_weak (name)
  485. # define libc_hidden_ver(local, name) hidden_ver (local, name)
  486. # define libc_hidden_data_def(name) hidden_data_def (name)
  487. # define libc_hidden_data_weak(name) hidden_data_weak (name)
  488. # define libc_hidden_data_ver(local, name) hidden_data_ver (local, name)
  489. #else
  490. # define libc_hidden_proto(name, attrs...)
  491. # define libc_hidden_def(name)
  492. # define libc_hidden_weak(name)
  493. # define libc_hidden_ver(local, name)
  494. # define libc_hidden_data_def(name)
  495. # define libc_hidden_data_weak(name)
  496. # define libc_hidden_data_ver(local, name)
  497. #endif
  498. #if defined NOT_IN_libc && defined IS_IN_rtld
  499. # define rtld_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  500. # define rtld_hidden_def(name) hidden_def (name)
  501. # define rtld_hidden_weak(name) hidden_weak (name)
  502. # define rtld_hidden_ver(local, name) hidden_ver (local, name)
  503. # define rtld_hidden_data_def(name) hidden_data_def (name)
  504. # define rtld_hidden_data_weak(name) hidden_data_weak (name)
  505. # define rtld_hidden_data_ver(local, name) hidden_data_ver (local, name)
  506. #else
  507. # define rtld_hidden_proto(name, attrs...)
  508. # define rtld_hidden_def(name)
  509. # define rtld_hidden_weak(name)
  510. # define rtld_hidden_ver(local, name)
  511. # define rtld_hidden_data_def(name)
  512. # define rtld_hidden_data_weak(name)
  513. # define rtld_hidden_data_ver(local, name)
  514. #endif
  515. #if defined NOT_IN_libc && defined IS_IN_libm
  516. # define libm_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  517. # define libm_hidden_def(name) hidden_def (name)
  518. # define libm_hidden_weak(name) hidden_weak (name)
  519. # define libm_hidden_ver(local, name) hidden_ver (local, name)
  520. # define libm_hidden_data_def(name) hidden_data_def (name)
  521. # define libm_hidden_data_weak(name) hidden_data_weak (name)
  522. # define libm_hidden_data_ver(local, name) hidden_data_ver (local, name)
  523. #else
  524. # define libm_hidden_proto(name, attrs...)
  525. # define libm_hidden_def(name)
  526. # define libm_hidden_weak(name)
  527. # define libm_hidden_ver(local, name)
  528. # define libm_hidden_data_def(name)
  529. # define libm_hidden_data_weak(name)
  530. # define libm_hidden_data_ver(local, name)
  531. #endif
  532. #if defined NOT_IN_libc && defined IS_IN_libresolv
  533. # define libresolv_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  534. # define libresolv_hidden_def(name) hidden_def (name)
  535. # define libresolv_hidden_weak(name) hidden_weak (name)
  536. # define libresolv_hidden_ver(local, name) hidden_ver (local, name)
  537. # define libresolv_hidden_data_def(name) hidden_data_def (name)
  538. # define libresolv_hidden_data_weak(name) hidden_data_weak (name)
  539. # define libresolv_hidden_data_ver(local, name) hidden_data_ver (local, name)
  540. #else
  541. # define libresolv_hidden_proto(name, attrs...)
  542. # define libresolv_hidden_def(name)
  543. # define libresolv_hidden_weak(name)
  544. # define libresolv_hidden_ver(local, name)
  545. # define libresolv_hidden_data_def(name)
  546. # define libresolv_hidden_data_weak(name)
  547. # define libresolv_hidden_data_ver(local, name)
  548. #endif
  549. #if defined NOT_IN_libc && defined IS_IN_librt
  550. # define librt_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  551. # define librt_hidden_def(name) hidden_def (name)
  552. # define librt_hidden_weak(name) hidden_weak (name)
  553. # define librt_hidden_ver(local, name) hidden_ver (local, name)
  554. # define librt_hidden_data_def(name) hidden_data_def (name)
  555. # define librt_hidden_data_weak(name) hidden_data_weak (name)
  556. # define librt_hidden_data_ver(local, name) hidden_data_ver (local, name)
  557. #else
  558. # define librt_hidden_proto(name, attrs...)
  559. # define librt_hidden_def(name)
  560. # define librt_hidden_weak(name)
  561. # define librt_hidden_ver(local, name)
  562. # define librt_hidden_data_def(name)
  563. # define librt_hidden_data_weak(name)
  564. # define librt_hidden_data_ver(local, name)
  565. #endif
  566. #if defined NOT_IN_libc && defined IS_IN_libdl
  567. # define libdl_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  568. # define libdl_hidden_def(name) hidden_def (name)
  569. # define libdl_hidden_weak(name) hidden_weak (name)
  570. # define libdl_hidden_ver(local, name) hidden_ver (local, name)
  571. # define libdl_hidden_data_def(name) hidden_data_def (name)
  572. # define libdl_hidden_data_weak(name) hidden_data_weak (name)
  573. # define libdl_hidden_data_ver(local, name) hidden_data_ver (local, name)
  574. #else
  575. # define libdl_hidden_proto(name, attrs...)
  576. # define libdl_hidden_def(name)
  577. # define libdl_hidden_weak(name)
  578. # define libdl_hidden_ver(local, name)
  579. # define libdl_hidden_data_def(name)
  580. # define libdl_hidden_data_weak(name)
  581. # define libdl_hidden_data_ver(local, name)
  582. #endif
  583. #if defined NOT_IN_libc && defined IS_IN_libintl
  584. # define libintl_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  585. # define libintl_hidden_def(name) hidden_def (name)
  586. # define libintl_hidden_weak(name) hidden_weak (name)
  587. # define libintl_hidden_ver(local, name) hidden_ver (local, name)
  588. # define libintl_hidden_data_def(name) hidden_data_def (name)
  589. # define libintl_hidden_data_weak(name) hidden_data_weak (name)
  590. # define libintl_hidden_data_ver(local, name) hidden_data_ver(local, name)
  591. #else
  592. # define libintl_hidden_proto(name, attrs...)
  593. # define libintl_hidden_def(name)
  594. # define libintl_hidden_weak(name)
  595. # define libintl_hidden_ver(local, name)
  596. # define libintl_hidden_data_def(name)
  597. # define libintl_hidden_data_weak(name)
  598. # define libintl_hidden_data_ver(local, name)
  599. #endif
  600. #if defined NOT_IN_libc && defined IS_IN_libnsl
  601. # define libnsl_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  602. # define libnsl_hidden_def(name) hidden_def (name)
  603. # define libnsl_hidden_weak(name) hidden_weak (name)
  604. # define libnsl_hidden_ver(local, name) hidden_ver (local, name)
  605. # define libnsl_hidden_data_def(name) hidden_data_def (name)
  606. # define libnsl_hidden_data_weak(name) hidden_data_weak (name)
  607. # define libnsl_hidden_data_ver(local, name) hidden_data_ver (local, name)
  608. #else
  609. # define libnsl_hidden_proto(name, attrs...)
  610. # define libnsl_hidden_def(name)
  611. # define libnsl_hidden_weak(name)
  612. # define libnsl_hidden_ver(local, name)
  613. # define libnsl_hidden_data_def(name)
  614. # define libnsl_hidden_data_weak(name)
  615. # define libnsl_hidden_data_ver(local, name)
  616. #endif
  617. #if defined NOT_IN_libc && defined IS_IN_libutil
  618. # define libutil_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  619. # define libutil_hidden_def(name) hidden_def (name)
  620. # define libutil_hidden_weak(name) hidden_weak (name)
  621. # define libutil_hidden_ver(local, name) hidden_ver (local, name)
  622. # define libutil_hidden_data_def(name) hidden_data_def (name)
  623. # define libutil_hidden_data_weak(name) hidden_data_weak (name)
  624. # define libutil_hidden_data_ver(local, name) hidden_data_ver (local, name)
  625. #else
  626. # define libutil_hidden_proto(name, attrs...)
  627. # define libutil_hidden_def(name)
  628. # define libutil_hidden_weak(name)
  629. # define libutil_hidden_ver(local, name)
  630. # define libutil_hidden_data_def(name)
  631. # define libutil_hidden_data_weak(name)
  632. # define libutil_hidden_data_ver(local, name)
  633. #endif
  634. #if defined NOT_IN_libc && defined IS_IN_libcrypt
  635. # define libcrypt_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  636. # define libcrypt_hidden_def(name) hidden_def (name)
  637. # define libcrypt_hidden_weak(name) hidden_weak (name)
  638. # define libcrypt_hidden_ver(local, name) hidden_ver (local, name)
  639. # define libcrypt_hidden_data_def(name) hidden_data_def (name)
  640. # define libcrypt_hidden_data_weak(name) hidden_data_weak (name)
  641. # define libcrypt_hidden_data_ver(local, name) hidden_data_ver (local, name)
  642. #else
  643. # define libcrypt_hidden_proto(name, attrs...)
  644. # define libcrypt_hidden_def(name)
  645. # define libcrypt_hidden_weak(name)
  646. # define libcrypt_hidden_ver(local, name)
  647. # define libcrypt_hidden_data_def(name)
  648. # define libcrypt_hidden_data_weak(name)
  649. # define libcrypt_hidden_data_ver(local, name)
  650. #endif
  651. #if defined NOT_IN_libc && defined IS_IN_libpthread
  652. # define libpthread_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
  653. # define libpthread_hidden_def(name) hidden_def (name)
  654. # define libpthread_hidden_weak(name) hidden_weak (name)
  655. # define libpthread_hidden_ver(local, name) hidden_ver (local, name)
  656. # define libpthread_hidden_data_def(name) hidden_data_def (name)
  657. # define libpthread_hidden_data_weak(name) hidden_data_weak (name)
  658. # define libpthread_hidden_data_ver(local, name) hidden_data_ver (local, name)
  659. #else
  660. # define libpthread_hidden_proto(name, attrs...)
  661. # define libpthread_hidden_def(name)
  662. # define libpthread_hidden_weak(name)
  663. # define libpthread_hidden_ver(local, name)
  664. # define libpthread_hidden_data_def(name)
  665. # define libpthread_hidden_data_weak(name)
  666. # define libpthread_hidden_data_ver(local, name)
  667. #endif
  668. #endif /* libc-symbols.h */