Always load function pointer into a stack variable
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 20 Nov 2014 19:29:45 +0000 (11:29 -0800)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 20 Nov 2014 19:29:45 +0000 (11:29 -0800)
This patch makes sure that compiler won't optimize out loading function
into a stack variable.

* ld-ifunc/ifunc-main.c (get_bar): New function.
(main): Use it.

ld/testsuite/ChangeLog
ld/testsuite/ld-ifunc/ifunc-main.c

index 555d6bf..63f145e 100644 (file)
@@ -1,5 +1,10 @@
 2014-11-20  H.J. Lu  <hongjiu.lu@intel.com>
 
+       * ld-ifunc/ifunc-main.c (get_bar): New function.
+       (main): Use it.
+
+2014-11-20  H.J. Lu  <hongjiu.lu@intel.com>
+
        * ld-ifunc/ifunc.exp: Run ifunc-main.
        * ld-ifunc/ifunc-lib.c: New file.
        * ld-ifunc/ifunc-main.c: Likewise.
index a320cfb..61e9934 100644 (file)
@@ -3,12 +3,21 @@
 extern int foo(void);
 extern int bar(void);
 
-int (*foo_ptr)(void) = foo;
+typedef int (*func_p) (void);
+
+func_p foo_ptr = foo;
+
+func_p
+__attribute__((noinline))
+get_bar (void)
+{
+  return bar;
+}
 
 int
 main (void)
 {
-  int (*bar_ptr)(void) = bar;
+  func_p bar_ptr = get_bar ();
   if (bar_ptr != bar)
     __builtin_abort ();
   if (bar_ptr() != -1)