about summary refs log tree commit diff
path: root/REORG.TODO/sysdeps/x86_64/dl-runtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/sysdeps/x86_64/dl-runtime.c')
-rw-r--r--REORG.TODO/sysdeps/x86_64/dl-runtime.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/REORG.TODO/sysdeps/x86_64/dl-runtime.c b/REORG.TODO/sysdeps/x86_64/dl-runtime.c
new file mode 100644
index 0000000000..b625d1e882
--- /dev/null
+++ b/REORG.TODO/sysdeps/x86_64/dl-runtime.c
@@ -0,0 +1,9 @@
+/* The ABI calls for the PLT stubs to pass the index of the relocation
+   and not its offset.  In _dl_profile_fixup and _dl_call_pltexit we
+   also use the index.  Therefore it is wasteful to compute the offset
+   in the trampoline just to reverse the operation immediately
+   afterwards.  */
+#define reloc_offset reloc_arg * sizeof (PLTREL)
+#define reloc_index  reloc_arg
+
+#include <elf/dl-runtime.c>