* configure.srv (m68k*-*-uclinux*): New target.
[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"
cc5ca5ce 49 run_dump_test "intel"
be66c492 50 run_dump_test "intel16"
9306ca4a
JB
51 run_list_test "intelbad" ""
52 run_dump_test "intelok"
252b5132
RH
53 run_dump_test "prefix"
54 run_dump_test "amd"
c608c12e 55 run_dump_test "katmai"
a3d1c52b 56 run_dump_test "jump"
de9d65b5
JH
57 run_dump_test "ssemmx2"
58 run_dump_test "sse2"
4dd8d67b 59 run_dump_test "sub"
ca164297 60 run_dump_test "prescott"
2033b4b9 61 run_dump_test "sib"
90700ea2 62 run_dump_test "vmx"
22cbf2e7 63 run_dump_test "suffix"
9cd96992 64 run_dump_test "immed32"
4d1bb795 65 run_dump_test "equ"
5157cd8a 66 run_dump_test "divide"
26f07657 67 run_dump_test "padlock"
c4a530c5
JB
68 run_dump_test "crx"
69 run_list_test "cr-err" ""
30123838 70 run_dump_test "svme"
331d2d0d 71 run_dump_test "merom"
35c52694
L
72 run_dump_test "rep"
73 run_dump_test "rep-suffix"
5645cf1e 74 run_dump_test "fp"
252b5132 75
a3d1c52b
AM
76 # These tests require support for 8 and 16 bit relocs,
77 # so we only run them for ELF and COFF targets.
62e88f3c 78 if {[is_elf_format] || [istarget "*-*-coff*"]} then {
252b5132 79 run_dump_test "reloc"
a3d1c52b 80 run_dump_test "jump16"
252b5132 81 run_list_test "white" "-al --listing-lhs-width=3"
3d983505
NC
82
83 # These tests should in theory work for PE targets as well,
84 # but the relocs we currently produce are slightly different
85 # from those produced for ELF/COFF based toolchains.
86 # So for now we ignore PE targets.
87 run_dump_test "pcrel"
88 run_dump_test "absrel"
252b5132 89 }
00687228 90
62e88f3c
NC
91 # ELF specific tests
92 if [is_elf_format] then {
93 # PIC is only supported on ELF targets.
94 run_dump_test "intelpic"
95
00687228 96 run_dump_test "relax"
2bbd9c25 97 run_dump_test "gotpc"
13ae64f3
JJ
98 run_dump_test "tlsd"
99 run_dump_test "tlspic"
100 run_dump_test "tlsnopic"
8a75718c 101 run_dump_test "bss"
3956db08
JB
102 run_dump_test "reloc32"
103 run_list_test "reloc32" "--defsym _bad_=1"
4fa24527 104 run_dump_test "mixed-mode-reloc32"
00687228
L
105 }
106
6482c264
NC
107 # This is a PE specific test.
108 if { [istarget "*-*-cygwin*"] || [istarget "*-*-pe"]
109 || [istarget "*-*-mingw*"]
110 } then {
111 run_dump_test "secrel"
112 }
113
b96d3a20
JH
114 set ASFLAGS "$old_ASFLAGS"
115}
6e0b89ee 116
fc847f15 117if [expr ([istarget "i*86-*-*"] || [istarget "x86_64-*-*"]) && [gas_64_check]] then {
b96d3a20
JH
118
119 global ASFLAGS
120 set old_ASFLAGS "$ASFLAGS"
121 set ASFLAGS "$ASFLAGS --64"
122
123 run_dump_test "x86_64"
20f0a1fc 124 run_dump_test "x86-64-addr32"
831b02f6 125 run_dump_test "x86-64-opcode"
ae8887b5 126 run_dump_test "x86-64-pcrel"
20f0a1fc 127 run_dump_test "x86-64-rip"
1a114b12
JB
128 run_dump_test "x86-64-stack"
129 run_dump_test "x86-64-stack-intel"
130 run_dump_test "x86-64-stack-suffix"
831b02f6 131 run_list_test "x86-64-inval" "-al"
4cc91dba
L
132 run_list_test "x86-64-segment" "-al"
133 run_list_test "x86-64-inval-seg" "-al"
003519a7 134 run_dump_test "x86-64-branch"
30123838 135 run_dump_test "svme64"
90700ea2 136 run_dump_test "x86-64-vmx"
9cd96992 137 run_dump_test "immed64"
cb712a9e 138 run_dump_test "x86-64-prescott"
6dd5059a
L
139 run_dump_test "x86-64-crx"
140 run_dump_test "x86-64-crx-suffix"
a1cfb73e
L
141 run_dump_test "x86-64-drx"
142 run_dump_test "x86-64-drx-suffix"
331d2d0d 143 run_dump_test "x86-64-merom"
35c52694
L
144 run_dump_test "x86-64-rep"
145 run_dump_test "x86-64-rep-suffix"
b96d3a20 146
b1905489
JB
147 if { ![istarget "*-*-aix*"]
148 && ![istarget "*-*-beos*"]
149 && ![istarget "*-*-*bsd*"]
150 && ![istarget "*-*-chaos*"]
151 && ![istarget "*-*-kaos*"]
152 && ![istarget "*-*-lynx*"]
153 && ![istarget "*-*-moss*"]
154 && ![istarget "*-*-nto-qnx*"]
155 && ![istarget "*-*-rtems*"]
156 && ![istarget "*-*-sco*"]
157 && ![istarget "*-*-solaris*"]
158 && ![istarget "*-*-sysv*"] } then {
159 run_dump_test "rex"
160 }
161
d2b2c203
DJ
162 # For ELF targets verify that @unwind works.
163 if { ([istarget "*-*-elf*"] || [istarget "*-*-linux*"]
164 || [istarget "*-*-solaris2.*"])
165 && ![istarget *-*-linux*aout*]
166 && ![istarget *-*-linux*oldld*] } then {
167 run_dump_test "x86-64-unwind"
168 }
169
3956db08
JB
170 # ELF specific tests
171 if [is_elf_format] then {
172 run_dump_test "reloc64"
173 run_list_test "reloc64" "--defsym _bad_=1"
4fa24527 174 run_dump_test "mixed-mode-reloc64"
3956db08
JB
175 }
176
b96d3a20 177 set ASFLAGS "$old_ASFLAGS"
252b5132 178}
This page took 0.396263 seconds and 4 git commands to generate.