gas/testsuite/
[deliverable/binutils-gdb.git] / gas / testsuite / gas / i386 / i386.exp
1 #
2 # i386 tests
3 #
4 proc 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
17 proc gas_64_check { } {
18 global NM
19 global NMFLAGS
20 global srcdir
21
22 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
23 return [regexp "targets:.*x86-64" $nm_help]
24 }
25
26 proc gas_32_check { } {
27 global NM
28 global NMFLAGS
29 global srcdir
30
31 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
32 return [regexp "targets:.*i386" $nm_help]
33 }
34
35 if [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"
40
41 run_list_test "float" "-al"
42 run_list_test "general" "-al --listing-lhs-width=2"
43 run_list_test "inval" "-al"
44 run_list_test "segment" "-al"
45 run_list_test "inval-seg" "-al"
46 run_list_test "modrm" "-al --listing-lhs-width=2"
47 run_dump_test "naked"
48 run_dump_test "opcode"
49 run_dump_test "opcode-intel"
50 run_dump_test "opcode-suffix"
51 run_dump_test "intel"
52 run_dump_test "intel16"
53 run_list_test "intelbad" ""
54 run_dump_test "intelok"
55 run_dump_test "prefix"
56 run_dump_test "amd"
57 run_dump_test "katmai"
58 run_dump_test "jump"
59 run_dump_test "ssemmx2"
60 run_dump_test "sse2"
61 run_dump_test "sub"
62 run_dump_test "prescott"
63 run_dump_test "sib"
64 run_dump_test "vmx"
65 run_dump_test "suffix"
66 run_dump_test "immed32"
67 run_dump_test "equ"
68 run_dump_test "divide"
69 run_dump_test "padlock"
70 run_dump_test "crx"
71 run_list_test "cr-err" ""
72 run_dump_test "svme"
73 run_dump_test "amdfam10"
74 run_dump_test "merom"
75 run_dump_test "rep"
76 run_dump_test "rep-suffix"
77 run_dump_test "fp"
78 run_dump_test "nops"
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"
86 run_dump_test "nops-3"
87 run_dump_test "addr16"
88 run_dump_test "addr32"
89 run_dump_test "sse4_1"
90 run_dump_test "sse4_2"
91
92 # These tests require support for 8 and 16 bit relocs,
93 # so we only run them for ELF and COFF targets.
94 if {[is_elf_format] || [istarget "*-*-coff*"]} then {
95 run_dump_test "reloc"
96 run_dump_test "jump16"
97 run_list_test "white" "-al --listing-lhs-width=3"
98
99 # These tests should in theory work for PE targets as well,
100 # but the relocs we currently produce are slightly different
101 # from those produced for ELF/COFF based toolchains.
102 # So for now we ignore PE targets.
103 run_dump_test "pcrel"
104 run_dump_test "absrel"
105 }
106
107 # ELF specific tests
108 if [is_elf_format] then {
109 # PIC is only supported on ELF targets.
110 run_dump_test "intelpic"
111
112 run_dump_test "relax"
113 run_dump_test "gotpc"
114 run_dump_test "tlsd"
115 run_dump_test "tlspic"
116 run_dump_test "tlsnopic"
117 run_dump_test "bss"
118 run_dump_test "reloc32"
119 run_list_test "reloc32" "--defsym _bad_=1"
120 run_dump_test "mixed-mode-reloc32"
121 }
122
123 # This is a PE specific test.
124 if { [istarget "*-*-cygwin*"] || [istarget "*-*-pe"]
125 || [istarget "*-*-mingw*"]
126 } then {
127 run_dump_test "secrel"
128 }
129
130 set ASFLAGS "$old_ASFLAGS"
131 }
132
133 if [expr ([istarget "i*86-*-*"] || [istarget "x86_64-*-*"]) && [gas_64_check]] then {
134
135 global ASFLAGS
136 set old_ASFLAGS "$ASFLAGS"
137 set ASFLAGS "$ASFLAGS --64"
138
139 run_dump_test "x86_64"
140 run_dump_test "x86-64-addr32"
141 run_dump_test "x86-64-addr32-intel"
142 run_dump_test "x86-64-opcode"
143 run_dump_test "x86-64-pcrel"
144 run_dump_test "x86-64-rip"
145 run_dump_test "x86-64-rip-intel"
146 run_dump_test "x86-64-stack"
147 run_dump_test "x86-64-stack-intel"
148 run_dump_test "x86-64-stack-suffix"
149 run_list_test "x86-64-inval" "-al"
150 run_list_test "x86-64-segment" "-al"
151 run_list_test "x86-64-inval-seg" "-al"
152 run_dump_test "x86-64-branch"
153 run_dump_test "svme64"
154 run_dump_test "x86-64-amdfam10"
155 run_dump_test "x86-64-vmx"
156 run_dump_test "immed64"
157 run_dump_test "x86-64-prescott"
158 run_dump_test "x86-64-crx"
159 run_dump_test "x86-64-crx-suffix"
160 run_dump_test "x86-64-drx"
161 run_dump_test "x86-64-drx-suffix"
162 run_dump_test "x86-64-merom"
163 run_dump_test "x86-64-rep"
164 run_dump_test "x86-64-rep-suffix"
165 run_dump_test "x86-64-cbw"
166 run_dump_test "x86-64-cbw-intel"
167 run_dump_test "x86-64-io"
168 run_dump_test "x86-64-io-intel"
169 run_dump_test "x86-64-io-suffix"
170 run_dump_test "x86-64-gidt"
171 run_dump_test "x86-64-nops"
172 if ![istarget "x86_64-*-mingw*"] then {
173 run_dump_test "x86-64-nops-1"
174 }
175 run_dump_test "x86-64-nops-1-k8"
176 run_dump_test "x86-64-nops-1-nocona"
177 run_dump_test "x86-64-nops-1-merom"
178 run_dump_test "x86-64-sse4_1"
179 run_dump_test "x86-64-sse4_2"
180
181 if { ![istarget "*-*-aix*"]
182 && ![istarget "*-*-beos*"]
183 && ![istarget "*-*-*bsd*"]
184 && ![istarget "*-*-chaos*"]
185 && ![istarget "*-*-kaos*"]
186 && ![istarget "*-*-lynx*"]
187 && ![istarget "*-*-moss*"]
188 && ![istarget "*-*-nto-qnx*"]
189 && ![istarget "*-*-rtems*"]
190 && ![istarget "*-*-sco*"]
191 && ![istarget "*-*-solaris*"]
192 && ![istarget "*-*-sysv*"] } then {
193 run_dump_test "rex"
194 }
195
196 # For ELF targets verify that @unwind works.
197 if { ([istarget "*-*-elf*"] || [istarget "*-*-linux*"]
198 || [istarget "*-*-solaris2.*"])
199 && ![istarget *-*-linux*aout*]
200 && ![istarget *-*-linux*oldld*] } then {
201 run_dump_test "x86-64-unwind"
202 }
203
204 # ELF specific tests
205 if [is_elf_format] then {
206 run_dump_test "reloc64"
207 run_list_test "reloc64" "--defsym _bad_=1"
208 run_dump_test "mixed-mode-reloc64"
209 }
210
211 set ASFLAGS "$old_ASFLAGS"
212 }
This page took 0.036191 seconds and 4 git commands to generate.