1 /* Test STT_GNU_IFUNC symbols:
3 1. Direct function call.
10 /* Can't use __attribute__((visibility("protected"))) until the GCC bug:
12 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65248
15 asm (".protected global");
35 void * foo_ifunc (void) __asm__ ("foo");
36 __asm__(".type foo, %gnu_indirect_function");
41 return ifunc_sel (one
, minus_one
, zero
);
44 void * foo_hidden_ifunc (void) __asm__ ("foo_hidden");
45 __asm__(".type foo_hidden, %gnu_indirect_function");
48 foo_hidden_ifunc (void)
50 return ifunc_sel (minus_one
, one
, zero
);
53 void * foo_protected_ifunc (void) __asm__ ("foo_protected");
54 __asm__(".type foo_protected, %gnu_indirect_function");
57 foo_protected_ifunc (void)
59 return ifunc_sel (one
, zero
, minus_one
);
62 /* Test hidden indirect function. */
63 __asm__(".hidden foo_hidden");
65 /* Test protected indirect function. */
66 __asm__(".protected foo_protected");
68 extern int foo (void);
69 extern int foo_hidden (void);
70 extern int foo_protected (void);
72 extern int ret_foo_hidden
;
73 extern int ret_foo_protected
;
76 typedef int (*foo_p
) (void);
86 get_foo_hidden_p (void)
88 ret_foo_hidden
= foo_hidden ();
93 get_foo_protected_p (void)
95 ret_foo_protected
= foo_protected ();