diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2013-11-21 04:53:05 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2013-11-21 04:53:05 -0800 |
commit | 97122a4cffdf7d9adfdef451498e92d4e46b5783 (patch) | |
tree | 3574e5d0f7caa59c8bb4a6a156773c9ea37612e0 /ld | |
parent | 265a5258b3b5c137990547e2e4770f33657103f5 (diff) | |
download | fsf-binutils-gdb-users/hjl/mpx/master.zip fsf-binutils-gdb-users/hjl/mpx/master.tar.gz fsf-binutils-gdb-users/hjl/mpx/master.tar.bz2 |
Add bnd-branch-1 testusers/hjl/mpx/master
* ld-x86-64/mpx.exp: Run bnd-branch-1.
* ld-x86-64/bnd-branch-1.d: New file.
* ld-x86-64/bnd-branch-1.s: Likewise.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-x86-64/bnd-branch-1.d | 19 | ||||
-rw-r--r-- | ld/testsuite/ld-x86-64/bnd-branch-1.s | 9 | ||||
-rw-r--r-- | ld/testsuite/ld-x86-64/mpx.exp | 2 |
4 files changed, 36 insertions, 0 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 0190030..2200866 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2013-11-21 H.J. Lu <hongjiu.lu@intel.com> + + * ld-x86-64/mpx.exp: Run bnd-branch-1. + * ld-x86-64/bnd-branch-1.d: New file. + * ld-x86-64/bnd-branch-1.s: Likewise. + 2013-11-20 H.J. Lu <hongjiu.lu@intel.com> * ld-x86-64/mpx.exp (build_tests): Add libmpx2a.a, libmpx2b.a diff --git a/ld/testsuite/ld-x86-64/bnd-branch-1.d b/ld/testsuite/ld-x86-64/bnd-branch-1.d new file mode 100644 index 0000000..8368f37 --- /dev/null +++ b/ld/testsuite/ld-x86-64/bnd-branch-1.d @@ -0,0 +1,19 @@ +#as: --64 +#ld: -shared -melf_x86_64 +#objdump: -dw + +.*: +file format .* + + +#... +Disassembly of section .text: + +#... +[a-f0-9]+ <_start>: +[ ]*[a-f0-9]+: f2 e9 [a-f0-9]+ ff ff ff bnd jmpq [a-f0-9]+ <foo1@plt> +[ ]*[a-f0-9]+: e8 [a-f0-9]+ ff ff ff callq [a-f0-9]+ <foo2@plt> +[ ]*[a-f0-9]+: e9 [a-f0-9]+ ff ff ff jmpq [a-f0-9]+ <foo3@plt> +[ ]*[a-f0-9]+: e8 [a-f0-9]+ ff ff ff callq [a-f0-9]+ <foo4@plt> +[ ]*[a-f0-9]+: f2 e8 [a-f0-9]+ ff ff ff bnd callq [a-f0-9]+ <foo3@plt> +[ ]*[a-f0-9]+: e9 [a-f0-9]+ ff ff ff jmpq [a-f0-9]+ <foo4@plt> +#pass diff --git a/ld/testsuite/ld-x86-64/bnd-branch-1.s b/ld/testsuite/ld-x86-64/bnd-branch-1.s new file mode 100644 index 0000000..bf62981 --- /dev/null +++ b/ld/testsuite/ld-x86-64/bnd-branch-1.s @@ -0,0 +1,9 @@ + .text + .globl _start +_start: +bnd jmp foo1@plt + call foo2@plt + jmp foo3@plt + call foo4@plt +bnd call foo3@plt + jmp foo4@plt diff --git a/ld/testsuite/ld-x86-64/mpx.exp b/ld/testsuite/ld-x86-64/mpx.exp index 192c774..df6bc6f 100644 --- a/ld/testsuite/ld-x86-64/mpx.exp +++ b/ld/testsuite/ld-x86-64/mpx.exp @@ -76,3 +76,5 @@ set run_tests { } run_ld_link_exec_tests [] $run_tests + +run_dump_test "bnd-branch-1" |