gas/
[deliverable/binutils-gdb.git] / gas / testsuite / gas / i386 / i386.exp
CommitLineData
252b5132
RH
1#
2# i386 tests
3#
4proc run_list_test { name opts } {
5 global srcdir subdir
6 set testname "i386 $name"
7 set file $srcdir/$subdir/$name
8 gas_run ${name}.s $opts ">&dump.out"
9 if { [regexp_diff "dump.out" "${file}.l"] } then {
10 fail $testname
11 verbose "output is [file_contents "dump.out"]" 2
12 return
13 }
14 pass $testname
15}
16
b96d3a20
JH
17proc gas_64_check { } {
18 global NM
19 global NMFLAGS
20 global srcdir
252b5132 21
b96d3a20 22 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
c0b22597 23 return [regexp "targets:.*x86-64" $nm_help]
b96d3a20 24}
6e0b89ee 25
b96d3a20
JH
26proc gas_32_check { } {
27 global NM
28 global NMFLAGS
29 global srcdir
30
31 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
c0b22597 32 return [regexp "targets:.*i386" $nm_help]
b96d3a20
JH
33}
34
b96d3a20
JH
35if [expr ([istarget "i*86-*-*"] || [istarget "x86_64-*-*"]) && [gas_32_check]] then {
36
37 global ASFLAGS
38 set old_ASFLAGS "$ASFLAGS"
39 set ASFLAGS "$ASFLAGS --32"
252b5132
RH
40
41 run_list_test "float" "-al"
42 run_list_test "general" "-al --listing-lhs-width=2"
43 run_list_test "inval" "-al"
4cc91dba
L
44 run_list_test "segment" "-al"
45 run_list_test "inval-seg" "-al"
252b5132 46 run_list_test "modrm" "-al --listing-lhs-width=2"
3f9ed93b 47 run_dump_test "naked"
252b5132 48 run_dump_test "opcode"
8a82f7e3
JB
49 run_dump_test "opcode-intel"
50 run_dump_test "opcode-suffix"
cc5ca5ce 51 run_dump_test "intel"
be66c492 52 run_dump_test "intel16"
9306ca4a
JB
53 run_list_test "intelbad" ""
54 run_dump_test "intelok"
252b5132
RH
55 run_dump_test "prefix"
56 run_dump_test "amd"
c608c12e 57 run_dump_test "katmai"
a3d1c52b 58 run_dump_test "jump"
de9d65b5
JH
59 run_dump_test "ssemmx2"
60 run_dump_test "sse2"
4dd8d67b 61 run_dump_test "sub"
ca164297 62 run_dump_test "prescott"
2033b4b9 63 run_dump_test "sib"
90700ea2 64 run_dump_test "vmx"
22cbf2e7 65 run_dump_test "suffix"
9cd96992 66 run_dump_test "immed32"
4d1bb795 67 run_dump_test "equ"
5157cd8a 68 run_dump_test "divide"
26f07657 69 run_dump_test "padlock"
c4a530c5
JB
70 run_dump_test "crx"
71 run_list_test "cr-err" ""
30123838 72 run_dump_test "svme"
050dfa73 73 run_dump_test "amdfam10"
331d2d0d 74 run_dump_test "merom"
35c52694
L
75 run_dump_test "rep"
76 run_dump_test "rep-suffix"
5645cf1e 77 run_dump_test "fp"
15965411 78 run_dump_test "nops"
ccc9c027
L
79 run_dump_test "nops-1"
80 run_dump_test "nops-1-i386"
81 run_dump_test "nops-1-i686"
82 run_dump_test "nops-1-merom"
83 run_dump_test "nops-2"
84 run_dump_test "nops-2-i386"
85 run_dump_test "nops-2-merom"
c0f91ba6 86 run_dump_test "nops-3"
539e75ad
L
87 run_dump_test "addr16"
88 run_dump_test "addr32"
42903f7f 89 run_dump_test "sse4_1"
252b5132 90
a3d1c52b
AM
91 # These tests require support for 8 and 16 bit relocs,
92 # so we only run them for ELF and COFF targets.
62e88f3c 93 if {[is_elf_format] || [istarget "*-*-coff*"]} then {
252b5132 94 run_dump_test "reloc"
a3d1c52b 95 run_dump_test "jump16"
252b5132 96 run_list_test "white" "-al --listing-lhs-width=3"
3d983505
NC
97
98 # These tests should in theory work for PE targets as well,
99 # but the relocs we currently produce are slightly different
100 # from those produced for ELF/COFF based toolchains.
101 # So for now we ignore PE targets.
102 run_dump_test "pcrel"
103 run_dump_test "absrel"
252b5132 104 }
00687228 105
62e88f3c
NC
106 # ELF specific tests
107 if [is_elf_format] then {
108 # PIC is only supported on ELF targets.
109 run_dump_test "intelpic"
110
00687228 111 run_dump_test "relax"
2bbd9c25 112 run_dump_test "gotpc"
13ae64f3
JJ
113 run_dump_test "tlsd"
114 run_dump_test "tlspic"
115 run_dump_test "tlsnopic"
8a75718c 116 run_dump_test "bss"
3956db08
JB
117 run_dump_test "reloc32"
118 run_list_test "reloc32" "--defsym _bad_=1"
4fa24527 119 run_dump_test "mixed-mode-reloc32"
00687228
L
120 }
121
6482c264
NC
122 # This is a PE specific test.
123 if { [istarget "*-*-cygwin*"] || [istarget "*-*-pe"]
124 || [istarget "*-*-mingw*"]
125 } then {
126 run_dump_test "secrel"
127 }
128
b96d3a20
JH
129 set ASFLAGS "$old_ASFLAGS"
130}
6e0b89ee 131
fc847f15 132if [expr ([istarget "i*86-*-*"] || [istarget "x86_64-*-*"]) && [gas_64_check]] then {
b96d3a20
JH
133
134 global ASFLAGS
135 set old_ASFLAGS "$ASFLAGS"
136 set ASFLAGS "$ASFLAGS --64"
137
138 run_dump_test "x86_64"
20f0a1fc 139 run_dump_test "x86-64-addr32"
831b02f6 140 run_dump_test "x86-64-opcode"
ae8887b5 141 run_dump_test "x86-64-pcrel"
20f0a1fc 142 run_dump_test "x86-64-rip"
1a114b12
JB
143 run_dump_test "x86-64-stack"
144 run_dump_test "x86-64-stack-intel"
145 run_dump_test "x86-64-stack-suffix"
831b02f6 146 run_list_test "x86-64-inval" "-al"
4cc91dba
L
147 run_list_test "x86-64-segment" "-al"
148 run_list_test "x86-64-inval-seg" "-al"
003519a7 149 run_dump_test "x86-64-branch"
30123838 150 run_dump_test "svme64"
050dfa73 151 run_dump_test "x86-64-amdfam10"
90700ea2 152 run_dump_test "x86-64-vmx"
9cd96992 153 run_dump_test "immed64"
cb712a9e 154 run_dump_test "x86-64-prescott"
6dd5059a
L
155 run_dump_test "x86-64-crx"
156 run_dump_test "x86-64-crx-suffix"
a1cfb73e
L
157 run_dump_test "x86-64-drx"
158 run_dump_test "x86-64-drx-suffix"
331d2d0d 159 run_dump_test "x86-64-merom"
35c52694
L
160 run_dump_test "x86-64-rep"
161 run_dump_test "x86-64-rep-suffix"
a35ca55a
JB
162 run_dump_test "x86-64-cbw"
163 run_dump_test "x86-64-cbw-intel"
52fd6d94
JB
164 run_dump_test "x86-64-io"
165 run_dump_test "x86-64-io-intel"
166 run_dump_test "x86-64-io-suffix"
cb6d3433 167 run_dump_test "x86-64-gidt"
15965411 168 run_dump_test "x86-64-nops"
42037fe5 169 if ![istarget "x86_64-*-mingw*"] then {
b8da4ba6 170 run_dump_test "x86-64-nops-1"
99ad8390 171 }
ccc9c027
L
172 run_dump_test "x86-64-nops-1-k8"
173 run_dump_test "x86-64-nops-1-nocona"
174 run_dump_test "x86-64-nops-1-merom"
42903f7f 175 run_dump_test "x86-64-sse4_1"
b96d3a20 176
b1905489
JB
177 if { ![istarget "*-*-aix*"]
178 && ![istarget "*-*-beos*"]
179 && ![istarget "*-*-*bsd*"]
180 && ![istarget "*-*-chaos*"]
181 && ![istarget "*-*-kaos*"]
182 && ![istarget "*-*-lynx*"]
183 && ![istarget "*-*-moss*"]
184 && ![istarget "*-*-nto-qnx*"]
185 && ![istarget "*-*-rtems*"]
186 && ![istarget "*-*-sco*"]
187 && ![istarget "*-*-solaris*"]
188 && ![istarget "*-*-sysv*"] } then {
189 run_dump_test "rex"
190 }
191
d2b2c203
DJ
192 # For ELF targets verify that @unwind works.
193 if { ([istarget "*-*-elf*"] || [istarget "*-*-linux*"]
194 || [istarget "*-*-solaris2.*"])
195 && ![istarget *-*-linux*aout*]
196 && ![istarget *-*-linux*oldld*] } then {
197 run_dump_test "x86-64-unwind"
198 }
199
3956db08
JB
200 # ELF specific tests
201 if [is_elf_format] then {
202 run_dump_test "reloc64"
203 run_list_test "reloc64" "--defsym _bad_=1"
4fa24527 204 run_dump_test "mixed-mode-reloc64"
3956db08
JB
205 }
206
b96d3a20 207 set ASFLAGS "$old_ASFLAGS"
252b5132 208}
This page took 0.344199 seconds and 4 git commands to generate.