diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2016-06-08 04:55:10 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2016-06-08 05:57:18 -0700 |
commit | d9aee8d5f77e0b1b923e0fb1ad5d8050eb0240b8 (patch) | |
tree | ed2a294a04b513d367e04723c5747ae62e7f7d6a /ld/testsuite/ld-x86-64/no-plt-func1.c | |
parent | 33c2b983b4854cf4dbbeefa45506a1812a60328e (diff) | |
download | gdb-d9aee8d5f77e0b1b923e0fb1ad5d8050eb0240b8.zip gdb-d9aee8d5f77e0b1b923e0fb1ad5d8050eb0240b8.tar.gz gdb-d9aee8d5f77e0b1b923e0fb1ad5d8050eb0240b8.tar.bz2 |
X86-64: Test external function reference without PLT
To call an external function, the direct branch to the PLT entry can be
replaced by an indirect branch via the GOT slot, which is similar to the
first instruction in the PLT slot. Instead using the PLT slot as function
address, the function address is retrieved from the GOT slot. If linker
determines the function is defined locally, it converts indirect branch
via the GOT slot to direct branch with a nop prefix and converts load via
the GOT slot to load immediate or lea,
* testsuite/ld-x86-64/libno-plt-1b.dd: Likewise.
* testsuite/ld-x86-64/libno-plt-1b.rd: Likewise.
* testsuite/ld-x86-64/no-plt-1a.dd: Likewise.
* testsuite/ld-x86-64/no-plt-1a.rd: Likewise.
* testsuite/ld-x86-64/no-plt-1b.dd: Likewise.
* testsuite/ld-x86-64/no-plt-1b.rd: Likewise.
* testsuite/ld-x86-64/no-plt-1c.dd: Likewise.
* testsuite/ld-x86-64/no-plt-1c.rd: Likewise.
* testsuite/ld-x86-64/no-plt-1d.dd: Likewise.
* testsuite/ld-x86-64/no-plt-1d.rd: Likewise.
* testsuite/ld-x86-64/no-plt-1e.dd: Likewise.
* testsuite/ld-x86-64/no-plt-1e.rd: Likewise.
* testsuite/ld-x86-64/no-plt-1f.dd: Likewise.
* testsuite/ld-x86-64/no-plt-1f.rd: Likewise.
* testsuite/ld-x86-64/no-plt-1g.dd: Likewise.
* testsuite/ld-x86-64/no-plt-1g.rd: Likewise.
* testsuite/ld-x86-64/no-plt-check1.S: Likewise.
* testsuite/ld-x86-64/no-plt.exp: Likewise.
* testsuite/ld-x86-64/no-plt-extern1.S: Likewise.
* testsuite/ld-x86-64/no-plt-func1.c: Likewise.
* testsuite/ld-x86-64/no-plt-main1.c: Likewise.
Diffstat (limited to 'ld/testsuite/ld-x86-64/no-plt-func1.c')
-rw-r--r-- | ld/testsuite/ld-x86-64/no-plt-func1.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ld/testsuite/ld-x86-64/no-plt-func1.c b/ld/testsuite/ld-x86-64/no-plt-func1.c new file mode 100644 index 0000000..ec4040c --- /dev/null +++ b/ld/testsuite/ld-x86-64/no-plt-func1.c @@ -0,0 +1,5 @@ +int +func (void) +{ + return 0x12345678; +} |