71e2ee961a1146c5bde5cb3b7a09c1040074ba68
[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 "intel"
50 run_dump_test "intel16"
51 run_list_test "intelbad" ""
52 run_dump_test "intelok"
53 run_dump_test "prefix"
54 run_dump_test "amd"
55 run_dump_test "katmai"
56 run_dump_test "jump"
57 run_dump_test "ssemmx2"
58 run_dump_test "sse2"
59 run_dump_test "sub"
60 run_dump_test "prescott"
61 run_dump_test "sib"
62 run_dump_test "vmx"
63 run_dump_test "suffix"
64 run_dump_test "immed32"
65 run_dump_test "equ"
66 run_dump_test "divide"
67 run_dump_test "padlock"
68 run_dump_test "crx"
69 run_list_test "cr-err" ""
70 run_dump_test "svme"
71 run_dump_test "merom"
72 run_dump_test "rep"
73 run_dump_test "rep-suffix"
74 run_dump_test "fp"
75 run_dump_test "nops"
76 run_dump_test "nops-1"
77 run_dump_test "nops-1-i386"
78 run_dump_test "nops-1-i686"
79 run_dump_test "nops-1-merom"
80 run_dump_test "nops-2"
81 run_dump_test "nops-2-i386"
82 run_dump_test "nops-2-merom"
83
84 # These tests require support for 8 and 16 bit relocs,
85 # so we only run them for ELF and COFF targets.
86 if {[is_elf_format] || [istarget "*-*-coff*"]} then {
87 run_dump_test "reloc"
88 run_dump_test "jump16"
89 run_list_test "white" "-al --listing-lhs-width=3"
90
91 # These tests should in theory work for PE targets as well,
92 # but the relocs we currently produce are slightly different
93 # from those produced for ELF/COFF based toolchains.
94 # So for now we ignore PE targets.
95 run_dump_test "pcrel"
96 run_dump_test "absrel"
97 }
98
99 # ELF specific tests
100 if [is_elf_format] then {
101 # PIC is only supported on ELF targets.
102 run_dump_test "intelpic"
103
104 run_dump_test "relax"
105 run_dump_test "gotpc"
106 run_dump_test "tlsd"
107 run_dump_test "tlspic"
108 run_dump_test "tlsnopic"
109 run_dump_test "bss"
110 run_dump_test "reloc32"
111 run_list_test "reloc32" "--defsym _bad_=1"
112 run_dump_test "mixed-mode-reloc32"
113 }
114
115 # This is a PE specific test.
116 if { [istarget "*-*-cygwin*"] || [istarget "*-*-pe"]
117 || [istarget "*-*-mingw*"]
118 } then {
119 run_dump_test "secrel"
120 }
121
122 set ASFLAGS "$old_ASFLAGS"
123 }
124
125 if [expr ([istarget "i*86-*-*"] || [istarget "x86_64-*-*"]) && [gas_64_check]] then {
126
127 global ASFLAGS
128 set old_ASFLAGS "$ASFLAGS"
129 set ASFLAGS "$ASFLAGS --64"
130
131 run_dump_test "x86_64"
132 run_dump_test "x86-64-addr32"
133 run_dump_test "x86-64-opcode"
134 run_dump_test "x86-64-pcrel"
135 run_dump_test "x86-64-rip"
136 run_dump_test "x86-64-stack"
137 run_dump_test "x86-64-stack-intel"
138 run_dump_test "x86-64-stack-suffix"
139 run_list_test "x86-64-inval" "-al"
140 run_list_test "x86-64-segment" "-al"
141 run_list_test "x86-64-inval-seg" "-al"
142 run_dump_test "x86-64-branch"
143 run_dump_test "svme64"
144 run_dump_test "x86-64-vmx"
145 run_dump_test "immed64"
146 run_dump_test "x86-64-prescott"
147 run_dump_test "x86-64-crx"
148 run_dump_test "x86-64-crx-suffix"
149 run_dump_test "x86-64-drx"
150 run_dump_test "x86-64-drx-suffix"
151 run_dump_test "x86-64-merom"
152 run_dump_test "x86-64-rep"
153 run_dump_test "x86-64-rep-suffix"
154 run_dump_test "x86-64-gidt"
155 run_dump_test "x86-64-nops"
156 run_dump_test "x86-64-nops-1"
157 run_dump_test "x86-64-nops-1-k8"
158 run_dump_test "x86-64-nops-1-nocona"
159 run_dump_test "x86-64-nops-1-merom"
160
161 if { ![istarget "*-*-aix*"]
162 && ![istarget "*-*-beos*"]
163 && ![istarget "*-*-*bsd*"]
164 && ![istarget "*-*-chaos*"]
165 && ![istarget "*-*-kaos*"]
166 && ![istarget "*-*-lynx*"]
167 && ![istarget "*-*-moss*"]
168 && ![istarget "*-*-nto-qnx*"]
169 && ![istarget "*-*-rtems*"]
170 && ![istarget "*-*-sco*"]
171 && ![istarget "*-*-solaris*"]
172 && ![istarget "*-*-sysv*"] } then {
173 run_dump_test "rex"
174 }
175
176 # For ELF targets verify that @unwind works.
177 if { ([istarget "*-*-elf*"] || [istarget "*-*-linux*"]
178 || [istarget "*-*-solaris2.*"])
179 && ![istarget *-*-linux*aout*]
180 && ![istarget *-*-linux*oldld*] } then {
181 run_dump_test "x86-64-unwind"
182 }
183
184 # ELF specific tests
185 if [is_elf_format] then {
186 run_dump_test "reloc64"
187 run_list_test "reloc64" "--defsym _bad_=1"
188 run_dump_test "mixed-mode-reloc64"
189 }
190
191 set ASFLAGS "$old_ASFLAGS"
192 }
This page took 0.033175 seconds and 4 git commands to generate.