2009-06-03 23:21:40 +00:00
|
|
|
/* Test 3 STT_GNU_IFUNC symbols. */
|
|
|
|
|
2009-10-30 07:48:54 +00:00
|
|
|
#include "ifunc-sel.h"
|
|
|
|
|
2015-03-06 12:55:56 +00:00
|
|
|
int global = -1;
|
|
|
|
/* Can't use __attribute__((visibility("protected"))) until the GCC bug:
|
|
|
|
|
|
|
|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65248
|
|
|
|
|
|
|
|
is fixed. */
|
|
|
|
asm (".protected global");
|
2009-06-03 23:21:40 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
one (void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
minus_one (void)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-06-05 20:44:03 +00:00
|
|
|
zero (void)
|
2009-06-03 23:21:40 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void * foo1_ifunc (void) __asm__ ("foo1");
|
|
|
|
__asm__(".type foo1, %gnu_indirect_function");
|
|
|
|
|
2013-06-05 20:44:03 +00:00
|
|
|
void *
|
2016-12-26 09:08:41 +00:00
|
|
|
inhibit_stack_protector
|
2009-06-03 23:21:40 +00:00
|
|
|
foo1_ifunc (void)
|
|
|
|
{
|
2009-10-30 07:48:54 +00:00
|
|
|
return ifunc_sel (one, minus_one, zero);
|
2009-06-03 23:21:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void * foo2_ifunc (void) __asm__ ("foo2");
|
|
|
|
__asm__(".type foo2, %gnu_indirect_function");
|
|
|
|
|
2013-06-05 20:44:03 +00:00
|
|
|
void *
|
2016-12-26 09:08:41 +00:00
|
|
|
inhibit_stack_protector
|
2009-06-03 23:21:40 +00:00
|
|
|
foo2_ifunc (void)
|
|
|
|
{
|
2009-10-30 07:48:54 +00:00
|
|
|
return ifunc_sel (minus_one, one, zero);
|
2009-06-03 23:21:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void * foo3_ifunc (void) __asm__ ("foo3");
|
|
|
|
__asm__(".type foo3, %gnu_indirect_function");
|
|
|
|
|
2013-06-05 20:44:03 +00:00
|
|
|
void *
|
2016-12-26 09:08:41 +00:00
|
|
|
inhibit_stack_protector
|
2009-06-03 23:21:40 +00:00
|
|
|
foo3_ifunc (void)
|
|
|
|
{
|
2009-10-30 07:48:54 +00:00
|
|
|
return ifunc_sel (one, zero, minus_one);
|
2009-06-03 23:21:40 +00:00
|
|
|
}
|