blob: 9b6b2b1f3ed4dc69dc83baf683a3590a7ca7b27c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
/* Copyright 2009-2024 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
This file is part of the gdb testsuite.
Test displaced stepping over VEX-encoded RIP-relative AVX
instructions. */
.text
.global main
main:
nop
/***********************************************/
/* Test a VEX2-encoded RIP-relative instruction. */
.global test_rip_vex2
test_rip_vex2:
vmovsd ro_var(%rip),%xmm0
.global test_rip_vex2
test_rip_vex2_end:
nop
/* Test a VEX3-encoded RIP-relative instruction. */
.global test_rip_vex3
test_rip_vex3:
vextractf128 $0x0,%ymm0,var128(%rip)
.global test_rip_vex3
test_rip_vex3_end:
nop
/* skip over test data */
jmp done
/* RIP-relative ro-data for VEX2 test above. */
ro_var:
.8byte 0x1122334455667788
.8byte 0x8877665544332211
/***********************************************/
/* All done. */
done:
mov $0,%rdi
call exit
hlt
/* RIP-relative data for VEX3 test above. */
.data
var128:
.8byte 0xaa55aa55aa55aa55
.8byte 0x55aa55aa55aa55aa
.section .note.GNU-stack,"",@progbits
|