Add support for Andes NDS32:
[deliverable/binutils-gdb.git] / gas / testsuite / gas / mips / mips.exp
CommitLineData
e407c74b 1# Copyright 2012, 2013
5bf135a7
NC
2# Free Software Foundation, Inc.
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
17
252b5132
RH
18#
19# Some generic MIPS tests
20#
d9e138e2 21
5915a74a
CD
22# When adding a new test to this file, try to do the following things:
23#
24# * If testing assembly and disassembly of code, don't forget to test
25# the actual bit encodings of the instructions (using the
26# --show-raw-insn flag to objdump).
27#
28# * Try to run the test for as many architectures as appropriate,
29# using the "run_dump_test_arches" or "run_list_test_arches" functions,
30# along with the output from a call to "mips_arch_list_matching."
31#
32# * Be sure to compare the test output before and after your testsuite
33# changes, to verify that existing and new tests were run as expected.
34# Look for expect ERROR messages in the testsuite .log file to make sure
35# the new expect code did not contain errors.
36
37# To add support for a new CPU to this file, add an appropriate entry
38# to the sequence of "mips_arch_create" function calls below, and test
39# the result. The new CPU should automatically be used when running
40# various tests. If the new CPU is the default CPU for any tool
41# targets, make sure the call to "mips_arch_create" reflects that fact.
42
43
5915a74a
CD
44# The functions below create and manipulate an "architecture data
45# array" which contains entries for each MIPS architecture (or CPU)
46# known to these tests. The array contains the following information
47# for each architecture, indexed by the name of the architecture
48# described by the entry:
49#
50# displayname: The name of the entry to be used for pretty-printing.
51#
52# gprsize: The size in bits of General Purpose Registers provided by
53# the architecture (must be 32 or 64).
54#
55# props: A list of text strings which are associated with the
56# architecture. These include the architecture name as well as
57# information about what instructions the CPU supports. When matching
58# based on properties, an additional property is added to the normal
59# property list, "gpr<gprsize>" so that tests can match CPUs which
60# have GPRs of a specific size. The following properties are most
61# useful when matching properties for generic (i.e., not CPU-specific)
62# tests:
63#
64# mips1, mips2, mips3, mips4, mips5, mips32, mips64
65# The architecture includes the instructions defined
66# by that MIPS ISA.
67#
8d367dd5
MR
68# fpisa3, fpisa4, fpisa5
69# The architecture includes the floating-point
70# instructions defined by that MIPS ISA.
71#
af22f5b2
CD
72# gpr_ilocks
73# The architecture interlocks GPRs accesses. (That is,
74# there are no load delay slots.)
75#
5915a74a
CD
76# mips3d The architecture includes the MIPS-3D ASE.
77#
78# ror The architecture includes hardware rotate instructions.
79#
80# gpr32, gpr64
81# The architecture provides 32- or 64-bit General Purpose
82# Registers.
83#
e407c74b
NC
84# singlefloat
85# The CPU is 64 bit, but only supports 32 bit FPU.
86#
0aa27725
RS
87# nollsc
88# The CPU doesn't support ll, sc, lld and scd instructions.
89#
5915a74a
CD
90# as_flags: The assembler flags used when assembling tests for this
91# architecture.
92#
93# objdump_flags: The objdump flags used when disassembling tests for
94# this architecture.
95#
96# Most entries in the architecture array will have values in all of
97# the fields above. One entry, "default" represents the default CPU
98# based on the target of the assembler being built. If always has
99# empty "as_flags" and "objdump_flags."
100
4d8728e1
CD
101# mips_arch_init
102#
103# This function initializes the architecture data array ("mips_arches")
104# to be empty.
105proc mips_arch_init {} {
106 global mips_arches
74cb52a6 107
95d4c932 108 # Catch because the variable won't be set the first time through.
74cb52a6 109 catch {unset mips_arches}
4d8728e1
CD
110}
111
5915a74a
CD
112# mips_arch_create ARCH GPRSIZE EXTENDS PROPS AS_FLAGS OBJDUMP_FLAGS \
113# (optional:) DEFAULT_FOR_TARGETS
114#
115# This function creates a new entry in the architecture data array,
116# for the architecture or CPU named ARCH, and fills in the entry
117# according to the rest of the arguments.
118#
119# The new entry's property list is initialized to contain ARCH, any
120# properties specified by PROPS, and the properties associated with
121# the entry specified by EXTENDS. (The new architecture is considered
122# to extend the capabilities provided by that architecture.)
123#
124# If DEFAULT_FOR_TARGETS is specified, it is a list of targets for which
125# this architecture is the default architecture. If "istarget" returns
126# true for any of the targets in the list, a "default" entry will be
127# added to the architecture array which indicates that ARCH is the default
128# architecture.
129proc mips_arch_create {arch gprsize extends props as_flags objdump_flags
130 {default_for_targets {}}} {
131 global mips_arches
132
133 if { [info exists mips_arches($arch)] } {
134 error "mips_arch_create: arch \"$arch\" already exists"
135 }
136 if { $gprsize != 32 && $gprsize != 64 } {
137 error "mips_arch_create: invalid GPR size $gprsize"
138 }
139
140 set archdata(displayname) $arch
141 set archdata(gprsize) $gprsize
142 set archdata(as_flags) $as_flags
143 set archdata(objdump_flags) $objdump_flags
144 set archdata(props) $arch
145 eval lappend archdata(props) $props
146 if { [string length $extends] != 0 } {
147 eval lappend archdata(props) [mips_arch_properties $extends 0]
148 }
149
150 set mips_arches($arch) [array get archdata]
151
152 # Set as default if appropriate.
153 foreach target $default_for_targets {
154 if { [istarget $target] } {
155 if { [info exists mips_arches(default)] } {
156 error "mips_arch_create: default arch already exists"
157 }
158
159 set archdata(displayname) "default = $arch"
160 set archdata(as_flags) ""
161 set archdata(objdump_flags) ""
162
163 set mips_arches(default) [array get archdata]
164 break
165 }
166 }
167}
168
30cfc97a
MR
169# mips_arch_destroy ARCH
170#
171# The opposite of the above. This function removes an entry from
172# the architecture data array, for the architecture or CPU named ARCH.
173
174proc mips_arch_destroy {arch} {
175 global mips_arches
176
177 if { [info exists mips_arches($arch)] } {
178 unset mips_arches($arch)
179 }
180}
181
5915a74a
CD
182# mips_arch_list_all
183#
184# This function returns the list of all names of entries in the
185# architecture data array (including the default entry, if a default
186# is known).
187proc mips_arch_list_all {} {
188 global mips_arches
189 return [lsort -dictionary [array names mips_arches]]
190}
191
192# mips_arch_data ARCH
193#
194# This function returns the information associated with ARCH
195# in the architecture data array, in "array get" form.
196proc mips_arch_data {arch} {
197 global mips_arches
198
199 if { ! [info exists mips_arches($arch)] } {
200 error "mips_arch_data: unknown arch \"$arch\""
201 }
202 return $mips_arches($arch)
203}
204
205# mips_arch_displayname ARCH
206#
207# This function returns the printable name associated with ARCH in
208# the architecture data array.
209proc mips_arch_displayname {arch} {
210 array set archdata [mips_arch_data $arch]
211 return $archdata(displayname)
212}
213
214# mips_arch_properties ARCH (optional:) INCLUDE_GPRSIZE
215#
216# This function returns the property list associated with ARCH in the
475a10d0
MR
217# architecture data array, including the "canonical" target name as the
218# first element.
219#
220# If INCLUDE_GPRSIZE is non-zero, an additional "gpr32" or "gpr64"
221# property will be returned as part of the list based on the
222# architecture's GPR size.
5915a74a
CD
223proc mips_arch_properties {arch {include_gprsize 1}} {
224 array set archdata [mips_arch_data $arch]
225 set props $archdata(props)
226 if { $include_gprsize } {
227 lappend props gpr$archdata(gprsize)
228 }
229 return $props
230}
231
232# mips_arch_as_flags ARCH
233#
234# This function returns the assembler flags associated with ARCH in
235# the architecture data array.
236proc mips_arch_as_flags {arch} {
237 array set archdata [mips_arch_data $arch]
238 return $archdata(as_flags)
239}
240
241# mips_arch_objdump_flags ARCH
242#
243# This function returns the objdump disassembly flags associated with
244# ARCH in the architecture data array.
245proc mips_arch_objdump_flags {arch} {
246 array set archdata [mips_arch_data $arch]
247 return $archdata(objdump_flags)
248}
249
250# mips_arch_matches ARCH PROPMATCHLIST
251#
252# This function returns non-zero if ARCH matches the set of properties
253# described by PROPMATCHLIST. Each entry in PROPMATCHLIST can either
254# be the name of a property which must be matched, or "!" followed by
255# the name of a property which must not be matched. ARCH matches
256# PROPMATCHLIST if and only if all of the conditions specified by
257# PROPMATCHLIST are satisfied.
258proc mips_arch_matches {arch propmatchlist} {
259 foreach pm $propmatchlist {
260 if { [string match {!*} $pm] } {
261 # fail if present.
262 set inverted 1
263 set p [string range $pm 1 end]
264 } {
265 # fail if not present.
266 set inverted 0
267 set p $pm
268 }
269
270 set loc [lsearch -exact [mips_arch_properties $arch] $p]
271
272 # required-absent and found, or required-present and not found: fail.
273 if { ($inverted && $loc != -1) || (! $inverted && $loc == -1) } {
274 return 0
275 }
276 }
277 return 1
278}
279
280# mips_arch_list_matching ARGS
281#
282# This function returns a list of all architectures which match
283# the conditions described by its arguments. Its arguments are
284# taken as a list and used as the PROPMATCHLIST in a call to
285# "mips_arch_matches" for each known architecture.
286proc mips_arch_list_matching {args} {
287 set l ""
288 foreach arch [mips_arch_list_all] {
289 # For now, don't match default arch until we know what its
290 # properties actually are.
291 if { [string compare $arch default] == 0
292 && [string length [mips_arch_properties default]] == 0} {
c0b22597 293 continue
5915a74a
CD
294 }
295 if { [mips_arch_matches $arch $args] } {
296 lappend l $arch
297 }
298 }
299 return $l
300}
301
302
303# The functions below facilitate running various types of tests.
304
725fc8ed 305# run_dump_test_arch NAME OPTS ARCH
5915a74a 306#
725fc8ed
RS
307# Invoke "run_dump_test" for test NAME with additional assembler options OPTS.
308# Add the assembler and disassembler flags that are associated with
309# architecture ARCH.
8b7955ca 310#
16e5e222
RS
311# You can override the expected output for particular architectures.
312# The possible test names are, in order of preference:
8b7955ca 313#
16e5e222
RS
314# 1. CARCH@NAME.d
315# 2. NAME.d
8b7955ca
MR
316#
317# where CARCH is the "canonical" name of architecture ARCH as recorded
16e5e222 318# in its associated property list.
725fc8ed 319proc run_dump_test_arch { name opts arch } {
193fa632
MR
320 global subdir srcdir
321
475a10d0 322 set proparch [lindex [mips_arch_properties $arch 0] 0]
16e5e222 323 set prefixes [list ${proparch}@ ]
dd6a37e7 324 if { [ string match "octeon*" $proparch ] && $proparch != "octeon" } {
16e5e222 325 lappend prefixes octeon@
dd6a37e7 326 }
dd6a37e7 327 foreach prefix ${prefixes} {
8b7955ca
MR
328 set archname ${prefix}${name}
329 if { [file exists "$srcdir/$subdir/${archname}.d"] } {
330 set name $archname
331 break
332 }
193fa632 333 }
5915a74a
CD
334
335 if [catch {run_dump_test $name \
725fc8ed
RS
336 "{name {([concat $opts [mips_arch_displayname $arch]])}}
337 {objdump {[mips_arch_objdump_flags $arch]}}
338 {as {[concat $opts [mips_arch_as_flags $arch]]}}"} rv] {
5915a74a
CD
339 perror "$rv"
340 untested "$subdir/$name ($arch)"
341 }
342}
343
725fc8ed 344# run_dump_test_arches NAME [OPTS] ARCH_LIST
5915a74a
CD
345#
346# Invoke "run_dump_test_arch" for test NAME, for each architecture
725fc8ed
RS
347# listed in ARCH_LIST. OPTS, if specified, is a list of additional
348# assembler options that should be used for all architectures.
349proc run_dump_test_arches { name args } {
725fc8ed
RS
350 set opts ""
351 if { [llength $args] > 1 } {
352 set opts [lindex $args 0]
353 set args [lrange $args 1 end]
354 }
355 set arch_list [lindex $args 0]
5915a74a 356 foreach arch $arch_list {
725fc8ed 357 run_dump_test_arch $name $opts $arch
5915a74a
CD
358 }
359}
360
5915a74a
CD
361# run_list_test_arch NAME OPTS ARCH
362#
725fc8ed
RS
363# Invoke "run_list_test" for test NAME with additional assembler options OPTS.
364# Add the assembler flags that are associated with architecture ARCH.
5915a74a
CD
365proc run_list_test_arch { name opts arch } {
366 global subdir
367
725fc8ed
RS
368 set testname "MIPS $name ([concat $opts [mips_arch_displayname $arch]])"
369 if [catch {run_list_test \
370 $name \
371 [concat $opts [mips_arch_as_flags $arch]] \
372 $testname} rv] {
5915a74a
CD
373 perror "$rv"
374 untested "$testname"
375 }
376}
377
725fc8ed 378# run_list_test_arches NAME [OPTS] ARCH_LIST
5915a74a 379#
725fc8ed
RS
380# Invoke "run_list_test_arch" for test NAME, for each architecture listed
381# in ARCH_LIST. OPTS, if specified, is a list of additional assembler
382# options that should be used for all architectures.
383proc run_list_test_arches { name args } {
384 set opts ""
385 if { [llength $args] > 1 } {
386 set opts [lindex $args 0]
387 set args [lrange $args 1 end]
388 }
389 set arch_list [lindex $args 0]
5915a74a
CD
390 foreach arch $arch_list {
391 run_list_test_arch "$name" "$opts" "$arch"
392 }
393}
394
395
396# Create the architecture data array by providing data for all
397# known architectures.
398#
399# Note that several targets pick default CPU based on ABI. We
400# can't easily handle that; do NOT list those targets as defaulting
401# to any architecture.
4d8728e1 402mips_arch_init
5915a74a
CD
403mips_arch_create mips1 32 {} {} \
404 { -march=mips1 -mtune=mips1 } { -mmips:3000 }
af22f5b2 405mips_arch_create mips2 32 mips1 { gpr_ilocks } \
5915a74a 406 { -march=mips2 -mtune=mips2 } { -mmips:6000 }
8d367dd5 407mips_arch_create mips3 64 mips2 { fpisa3 } \
5915a74a 408 { -march=mips3 -mtune=mips3 } { -mmips:4000 }
8d367dd5 409mips_arch_create mips4 64 mips3 { fpisa4 } \
5915a74a 410 { -march=mips4 -mtune=mips4 } { -mmips:8000 }
8d367dd5 411mips_arch_create mips5 64 mips4 { fpisa5 } \
5915a74a
CD
412 { -march=mips5 -mtune=mips5 } { -mmips:mips5 }
413mips_arch_create mips32 32 mips2 {} \
414 { -march=mips32 -mtune=mips32 } { -mmips:isa32 } \
415 { mipsisa32-*-* mipsisa32el-*-* }
8d367dd5 416mips_arch_create mips32r2 32 mips32 { fpisa3 fpisa4 fpisa5 ror } \
af7ee8bf
CD
417 { -march=mips32r2 -mtune=mips32r2 } \
418 { -mmips:isa32r2 } \
419 { mipsisa32r2-*-* mipsisa32r2el-*-* }
5915a74a
CD
420mips_arch_create mips64 64 mips5 { mips32 } \
421 { -march=mips64 -mtune=mips64 } { -mmips:isa64 } \
422 { mipsisa64-*-* mipsisa64el-*-* }
5f74bc13
CD
423mips_arch_create mips64r2 64 mips64 { mips32r2 ror } \
424 { -march=mips64r2 -mtune=mips64r2 } \
425 { -mmips:isa64r2 } \
426 { mipsisa64r2-*-* mipsisa64r2el-*-* }
30cfc97a
MR
427mips_arch_create mips16 32 {} {} \
428 { -march=mips1 -mips16 } { -mmips:16 }
df58fc94
RS
429mips_arch_create micromips 64 mips64r2 {} \
430 { -march=mips64 -mmicromips } {}
5915a74a
CD
431mips_arch_create r3000 32 mips1 {} \
432 { -march=r3000 -mtune=r3000 } { -mmips:3000 }
af22f5b2 433mips_arch_create r3900 32 mips1 { gpr_ilocks } \
5915a74a
CD
434 { -march=r3900 -mtune=r3900 } { -mmips:3900 } \
435 { mipstx39-*-* mipstx39el-*-* }
436mips_arch_create r4000 64 mips3 {} \
437 { -march=r4000 -mtune=r4000 } { -mmips:4000 }
438mips_arch_create vr5400 64 mips4 { ror } \
439 { -march=vr5400 -mtune=vr5400 } { -mmips:5400 }
440mips_arch_create sb1 64 mips64 { mips3d } \
441 { -march=sb1 -mtune=sb1 } { -mmips:sb1 } \
442 { mipsisa64sb1-*-* mipsisa64sb1el-*-* }
61d4e56d
AN
443mips_arch_create octeon 64 mips64r2 {} \
444 { -march=octeon -mtune=octeon } { -mmips:octeon } \
445 { mips64octeon*-*-* }
dd6a37e7
AP
446mips_arch_create octeonp 64 octeon {} \
447 { -march=octeon+ -mtune=octeon+ } { -mmips:octeon+ } \
448 { }
432233b3
AP
449mips_arch_create octeon2 64 octeonp {} \
450 { -march=octeon2 -mtune=octeon2 } { -mmips:octeon2 } \
451 { }
52b6b6b9
JM
452mips_arch_create xlr 64 mips64 {} \
453 { -march=xlr -mtune=xlr } { -mmips:xlr }
0aa27725 454mips_arch_create r5900 64 mips3 { gpr_ilocks singlefloat nollsc } \
e407c74b
NC
455 { -march=r5900 -mtune=r5900 } { -mmips:5900 } \
456 { mipsr5900el-*-* mips64r5900el-*-* }
5915a74a 457
5915a74a 458#
0a44bf69
RS
459# And now begin the actual tests! VxWorks uses RELA rather than REL
460# relocations, so most of the generic dump tests will not work there.
5915a74a 461#
0a44bf69
RS
462if { [istarget mips*-*-vxworks*] } {
463 run_dump_test "vxworks1"
464 run_dump_test "vxworks1-xgot"
a284cff1
TS
465 run_dump_test "vxworks1-el"
466 run_dump_test "vxworks1-xgot-el"
0a44bf69 467} elseif { [istarget mips*-*-*] } {
16e5e222 468 set addr32 [expr [istarget mipstx39*-*-*] || [istarget mips-*-linux*] || [istarget mipsel-*-linux*]]
d4a43794
RS
469 set has_newabi [expr [istarget *-*-irix6*] || [istarget mips*-*-linux*] \
470 || [istarget mips*-sde-elf*] || [istarget mips*-mti-elf*]]
252b5132 471
16e5e222
RS
472 if { [istarget "mips*-*-*linux*"]
473 || [istarget "mips*-sde-elf*"]
d4a43794 474 || [istarget "mips*-mti-elf*"]
16e5e222 475 || [istarget "mips*-*-*bsd*"] } then {
ff8715d0
L
476 set tmips "t"
477 } else {
478 set tmips ""
479 }
0c4ec151 480 if [istarget mips*el-*-*] {
5ef0935e 481 set el "el"
0c4ec151
RS
482 } {
483 set el ""
484 }
e1b47bd5
RS
485
486 run_dump_test_arches "dot-1" [mips_arch_list_matching mips1]
5915a74a
CD
487 run_dump_test_arches "abs" [mips_arch_list_matching mips1]
488 run_dump_test_arches "add" [mips_arch_list_matching mips1]
489 run_dump_test_arches "and" [mips_arch_list_matching mips1]
a242dc0d
AN
490 run_dump_test_arches "mips1-fp" [mips_arch_list_matching mips1]
491 run_list_test_arches "mips1-fp" "-32 -msoft-float" \
492 [mips_arch_list_matching mips1]
252b5132
RH
493 run_dump_test "break20"
494 run_dump_test "trap20"
51124b6c 495
8404fc53
MR
496 run_dump_test_arches "beq" [mips_arch_list_matching mips1]
497 run_dump_test_arches "bge" [mips_arch_list_matching mips1]
498 run_dump_test_arches "bgeu" [mips_arch_list_matching mips1]
499 run_dump_test_arches "blt" [mips_arch_list_matching mips1]
500 run_dump_test_arches "bltu" [mips_arch_list_matching mips1]
501 run_dump_test_arches "branch-likely" [mips_arch_list_matching mips2]
5915a74a 502 run_dump_test_arches "branch-misc-1" [mips_arch_list_matching mips1]
bad36eac
DJ
503 run_dump_test_arches "branch-misc-2" [mips_arch_list_matching mips1]
504 run_dump_test_arches "branch-misc-2pic" [mips_arch_list_matching mips1]
505 run_dump_test_arches "branch-misc-2-64" [mips_arch_list_matching mips3]
506 run_dump_test_arches "branch-misc-2pic-64" [mips_arch_list_matching mips3]
dc36a61f 507 run_dump_test "branch-misc-3"
f7870c8d 508 run_dump_test "branch-swap"
464ab0e5 509
16e5e222
RS
510 # Sweep a range of branch offsets so that it hits a position where
511 # it is at the beginning of a frag and then swapped with a 16-bit
512 # instruction from the preceding frag. The offset will be somewhere
513 # close below 4096 as this is the default obstack size limit that
514 # we use and some space will have been already consumed. The exact
515 # amount depends on the host's programming model.
516 for { set count 960 } { $count <= 1024 } { incr count } {
517 run_list_test "branch-swap-2" "--defsym count=$count" \
518 "MIPS branch swapping ($count)"
464ab0e5
MR
519 }
520
23fce1e3 521 run_dump_test "div"
51124b6c 522
b892b944 523 if { !$addr32 } {
16e5e222 524 run_dump_test_arches "dli" [mips_arch_list_matching mips3]
7388e440 525 }
16e5e222 526 run_dump_test_arches "jal" [mips_arch_list_matching mips1]
df58fc94
RS
527 run_dump_test_arches "jal-mask-11" [mips_arch_list_matching mips1]
528 run_dump_test_arches "jal-mask-12" [mips_arch_list_matching mips1]
529 run_dump_test_arches "jal-mask-21" [mips_arch_list_matching micromips]
530 run_dump_test_arches "jal-mask-22" [mips_arch_list_matching micromips]
ff239038
CM
531 run_dump_test "eret-1"
532 run_dump_test "eret-2"
533 run_dump_test "eret-3"
a8d14a88
CM
534 run_dump_test_arches "fix-rm7000-1" \
535 [mips_arch_list_matching mips3 !singlefloat]
536 run_dump_test_arches "fix-rm7000-2" \
537 [mips_arch_list_matching mips3 !singlefloat]
df58fc94 538 run_dump_test_arches "24k-branch-delay-1" \
fbdd3712 539 [mips_arch_list_matching mips1]
17b09558 540 run_dump_test_arches "24k-triple-stores-1" \
fbdd3712 541 [mips_arch_list_matching fpisa5 !octeon]
df58fc94 542 run_dump_test_arches "24k-triple-stores-2" \
fbdd3712 543 [mips_arch_list_matching mips2]
0aa27725
RS
544 run_dump_test_arches "24k-triple-stores-2-llsc" \
545 [mips_arch_list_matching mips2 !nollsc]
df58fc94 546 run_dump_test_arches "24k-triple-stores-3" \
fbdd3712 547 [mips_arch_list_matching mips2]
df58fc94 548 run_dump_test_arches "24k-triple-stores-4" \
e407c74b 549 [mips_arch_list_matching mips2 !singlefloat]
df58fc94 550 run_dump_test_arches "24k-triple-stores-5" \
fbdd3712 551 [mips_arch_list_matching mips1]
df58fc94 552 run_dump_test_arches "24k-triple-stores-6" \
e407c74b 553 [mips_arch_list_matching mips2 !singlefloat]
df58fc94 554 run_dump_test_arches "24k-triple-stores-7" \
e407c74b 555 [mips_arch_list_matching mips2 !singlefloat]
df58fc94 556 run_dump_test_arches "24k-triple-stores-8" \
fbdd3712 557 [mips_arch_list_matching mips1]
df58fc94 558 run_dump_test_arches "24k-triple-stores-9" \
fbdd3712 559 [mips_arch_list_matching mips1]
df58fc94 560 run_dump_test_arches "24k-triple-stores-10" \
fbdd3712 561 [mips_arch_list_matching mips1]
16e5e222 562 run_dump_test_arches "24k-triple-stores-11" \
fbdd3712 563 [mips_arch_list_matching mips1]
6a32d874 564
16e5e222
RS
565 run_dump_test_arches "jal-svr4pic" [mips_arch_list_matching mips1]
566 run_dump_test_arches "jal-svr4pic-noreorder" \
4d2ad3b0 567 [mips_arch_list_matching mips1]
16e5e222 568 run_dump_test "jal-xgot"
21b99e26 569 run_list_test_arches "jal-range" "-32" [mips_arch_list_matching mips1]
3302cdec 570 if $has_newabi { run_dump_test "jal-newabi" }
16e5e222
RS
571 run_dump_test "la"
572 run_dump_test "la-svr4pic"
573 run_dump_test "la-xgot"
574 run_dump_test "lca-svr4pic"
575 run_dump_test "lca-xgot"
576 # XXX FIXME: Has mips2 and later insns with mips1 disassemblies.
577 # (Should split and then use appropriate arch lists.)
578 run_dump_test_arches "lb" [mips_arch_list_matching mips1 !mips2]
579 run_dump_test_arches "lb-svr4pic" \
30cfc97a 580 [mips_arch_list_matching mips1 !gpr_ilocks]
16e5e222
RS
581 run_dump_test_arches "lb-svr4pic-ilocks" [mips_arch_list_matching gpr_ilocks]
582 # Both versions specify the cpu, so we can run both regardless of
583 # the interlocking in the configured default cpu.
584 run_dump_test "lb-xgot"
585 run_dump_test "lb-xgot-ilocks"
586 run_dump_test_arches "ld" [mips_arch_list_matching mips1]
587 run_dump_test_arches "ld-forward" [mips_arch_list_matching mips1]
588 run_dump_test_arches "sd" [mips_arch_list_matching mips1]
589 run_dump_test_arches "sd-forward" [mips_arch_list_matching mips1]
590 run_dump_test_arches "l_d" [mips_arch_list_matching mips1 !singlefloat]
591 run_dump_test_arches "l_d-single" [mips_arch_list_matching mips1 singlefloat]
592 run_dump_test_arches "l_d-forward" [mips_arch_list_matching mips1 !singlefloat]
593 run_dump_test_arches "s_d" [mips_arch_list_matching mips1 !singlefloat]
594 run_dump_test_arches "s_d-single" [mips_arch_list_matching mips1 singlefloat]
595 run_dump_test_arches "s_d-forward" [mips_arch_list_matching mips1 !singlefloat]
596 run_dump_test_arches "ldc1" [mips_arch_list_matching mips2 !singlefloat]
597 run_dump_test_arches "ldc1-forward" [mips_arch_list_matching mips2 !singlefloat]
598 run_dump_test_arches "sdc1" [mips_arch_list_matching mips2 !singlefloat]
599 run_dump_test_arches "sdc1-forward" [mips_arch_list_matching mips2 !singlefloat]
600 if $has_newabi {
601 run_dump_test_arches "ld-n32" [mips_arch_list_matching mips3]
602 run_dump_test_arches "ld-forward-n32" \
17f828b3 603 [mips_arch_list_matching mips3]
16e5e222
RS
604 run_dump_test_arches "sd-n32" [mips_arch_list_matching mips3]
605 run_dump_test_arches "sd-forward-n32" \
17f828b3 606 [mips_arch_list_matching mips3]
16e5e222
RS
607 run_dump_test_arches "l_d-n32" [mips_arch_list_matching mips3 !singlefloat]
608 run_dump_test_arches "l_d-forward-n32" \
e407c74b 609 [mips_arch_list_matching mips3 !singlefloat]
16e5e222
RS
610 run_dump_test_arches "s_d-n32" [mips_arch_list_matching mips3 !singlefloat]
611 run_dump_test_arches "s_d-forward-n32" \
e407c74b 612 [mips_arch_list_matching mips3 !singlefloat]
16e5e222
RS
613 run_dump_test_arches "ldc1-n32" [mips_arch_list_matching mips3 !singlefloat]
614 run_dump_test_arches "ldc1-forward-n32" \
e407c74b 615 [mips_arch_list_matching mips3 !singlefloat]
16e5e222
RS
616 run_dump_test_arches "sdc1-n32" [mips_arch_list_matching mips3 !singlefloat]
617 run_dump_test_arches "sdc1-forward-n32" \
e407c74b 618 [mips_arch_list_matching mips3 !singlefloat]
16e5e222
RS
619 run_dump_test_arches "ld-n64" [mips_arch_list_matching mips3]
620 run_dump_test_arches "ld-forward-n64" \
484cf558 621 [mips_arch_list_matching mips3]
16e5e222
RS
622 run_dump_test_arches "sd-n64" [mips_arch_list_matching mips3]
623 run_dump_test_arches "sd-forward-n64" \
17f828b3 624 [mips_arch_list_matching mips3]
16e5e222
RS
625 run_dump_test_arches "l_d-n64" [mips_arch_list_matching mips3 !singlefloat]
626 run_dump_test_arches "l_d-forward-n64" \
e407c74b 627 [mips_arch_list_matching mips3 !singlefloat]
16e5e222
RS
628 run_dump_test_arches "s_d-n64" [mips_arch_list_matching mips3 !singlefloat]
629 run_dump_test_arches "s_d-forward-n64" \
e407c74b 630 [mips_arch_list_matching mips3 !singlefloat]
16e5e222
RS
631 run_dump_test_arches "ldc1-n64" [mips_arch_list_matching mips3 !singlefloat]
632 run_dump_test_arches "ldc1-forward-n64" \
e407c74b 633 [mips_arch_list_matching mips3 !singlefloat]
16e5e222
RS
634 run_dump_test_arches "sdc1-n64" [mips_arch_list_matching mips3 !singlefloat]
635 run_dump_test_arches "sdc1-forward-n64" \
e407c74b 636 [mips_arch_list_matching mips3 !singlefloat]
252b5132 637 }
f19ccbda
MR
638 run_dump_test_arches "ld-zero" [mips_arch_list_matching mips1]
639 run_dump_test_arches "ld-zero-2" [mips_arch_list_matching mips2 !nollsc]
640 run_dump_test_arches "ld-zero-3" [mips_arch_list_matching mips3 !nollsc]
641 run_dump_test_arches "ld-zero-u" [mips_arch_list_matching micromips]
642 run_dump_test_arches "ld-zero-q" [mips_arch_list_matching r5900]
16e5e222
RS
643 run_dump_test "ld-svr4pic"
644 run_dump_test "ld-xgot"
5915a74a 645 run_dump_test_arches "li" [mips_arch_list_matching mips1]
16e5e222
RS
646 run_dump_test "lifloat"
647 run_dump_test "lif-svr4pic"
648 run_dump_test "lif-xgot"
5915a74a 649 run_dump_test_arches "mips4" [mips_arch_list_matching mips4]
725fc8ed
RS
650 run_dump_test_arches "mips4-fp" "-32" \
651 [mips_arch_list_matching fpisa4]
652 run_dump_test_arches "mips4-fp" "-mabi=o64" \
653 [mips_arch_list_matching fpisa4 gpr64]
f6829a45 654 run_list_test_arches "mips4-fp" "-32 -msoft-float" \
8d367dd5 655 [mips_arch_list_matching fpisa4]
ad500c2e
MR
656 run_dump_test_arches "mips4-branch-likely" \
657 [mips_arch_list_matching mips4]
658 run_list_test_arches "mips4-branch-likely" "-32 -msoft-float" \
659 [mips_arch_list_matching mips4]
725fc8ed
RS
660 run_dump_test_arches "mips5-fp" "-32" \
661 [mips_arch_list_matching fpisa5]
662 run_dump_test_arches "mips5-fp" "-mabi=o64" \
663 [mips_arch_list_matching fpisa5 gpr64]
23fce1e3 664 run_dump_test "mul"
5915a74a 665
30cfc97a 666 run_dump_test_arches "rol" [mips_arch_list_matching mips1 !ror]
5915a74a
CD
667 run_dump_test_arches "rol-hw" [mips_arch_list_matching ror]
668
669 run_dump_test_arches "rol64" [mips_arch_list_matching gpr64 !ror]
670 run_dump_test_arches "rol64-hw" [mips_arch_list_matching gpr64 ror]
671
16e5e222 672 run_dump_test "sb"
252b5132 673 run_dump_test "trunc"
16e5e222 674 run_dump_test "ulh"
af22f5b2
CD
675 run_dump_test_arches "ulh2-eb" [mips_arch_list_matching mips1]
676 run_dump_test_arches "ulh2-el" [mips_arch_list_matching mips1]
16e5e222
RS
677 run_dump_test "ulh-svr4pic"
678 run_dump_test "ulh-xgot"
679 run_dump_test "ulw"
680 run_dump_test "uld"
681 run_dump_test "ush"
682 run_dump_test "usw"
683 run_dump_test "usd"
684 run_dump_test_arches "ulw2-eb" [mips_arch_list_matching mips1 !gpr_ilocks]
af22f5b2 685 run_dump_test_arches "ulw2-eb-ilocks" [mips_arch_list_matching gpr_ilocks]
16e5e222 686 run_dump_test_arches "ulw2-el" [mips_arch_list_matching mips1 !gpr_ilocks]
af22f5b2
CD
687 run_dump_test_arches "ulw2-el-ilocks" [mips_arch_list_matching gpr_ilocks]
688
689 run_dump_test_arches "uld2-eb" [mips_arch_list_matching mips3]
690 run_dump_test_arches "uld2-el" [mips_arch_list_matching mips3]
691
16e5e222
RS
692 run_dump_test "mips16"
693 run_dump_test "mips16-64"
0acfaea6 694 run_dump_test "mips16-macro"
16e5e222
RS
695 # Check MIPS16e extensions
696 run_dump_test_arches "mips16e" [mips_arch_list_matching mips32 !micromips]
697 # Check jalx handling
698 run_dump_test "mips16-jalx"
699 run_dump_test "mips-jalx"
700 run_dump_test "mips-jalx-2"
701 # Check MIPS16 HI16/LO16 relocations
702 run_dump_test "mips16-hilo"
703 if $has_newabi {
704 run_dump_test "mips16-hilo-n32"
3396de36 705 }
16e5e222 706 run_dump_test "mips16-hilo-match"
252b5132
RH
707 run_dump_test "delay"
708 run_dump_test "nodelay"
709 run_dump_test "mips4010"
710 run_dump_test "mips4650"
711 run_dump_test "mips4100"
60b63b72
RS
712 run_dump_test "vr4111"
713 run_dump_test "vr4120"
532c738a 714 run_dump_test "vr4120-2"
11db99f8 715 run_dump_test "vr4130"
60b63b72 716 run_dump_test "vr5400"
5c324c16 717 run_list_test "vr5400-ill" "-march=vr5400"
60b63b72 718 run_dump_test "vr5500"
5a7ea749 719 run_dump_test "rm7000"
99c14723 720 run_dump_test "perfcount"
252b5132
RH
721 run_dump_test "lineno"
722 run_dump_test "sync"
5915a74a 723
16e5e222 724 run_dump_test_arches "virt" [mips_arch_list_matching mips32r2]
cdd49898 725 run_dump_test_arches "virt64" [mips_arch_list_matching mips64r2]
b015e599 726
5915a74a 727 run_dump_test_arches "mips32" [mips_arch_list_matching mips32]
df58fc94 728 run_dump_test_arches "mips32-imm" [mips_arch_list_matching mips32]
5915a74a 729
1787fe5b 730 run_dump_test_arches "mips32-sf32" [mips_arch_list_matching mips32]
f6829a45
AN
731 run_list_test_arches "mips32-sf32" "-32 -msoft-float" \
732 [mips_arch_list_matching mips32]
a6d8f55b
AN
733 run_dump_test_arches "mips32-cp2" [mips_arch_list_matching mips32 \
734 !octeon]
1787fe5b 735
af7ee8bf 736 run_dump_test_arches "mips32r2" [mips_arch_list_matching mips32r2]
a6d8f55b
AN
737 run_dump_test_arches "mips32r2-cp2" [mips_arch_list_matching mips32r2 \
738 !octeon]
f6829a45
AN
739 run_dump_test_arches "mips32r2-fp32" \
740 [mips_arch_list_matching mips32r2]
741 run_list_test_arches "mips32r2-fp32" "-32 -msoft-float" \
742 [mips_arch_list_matching mips32r2]
5f74bc13 743 run_list_test_arches "mips32r2-ill" "-32" \
f6829a45 744 [mips_arch_list_matching mips32r2 gpr32]
5f74bc13 745 run_list_test_arches "mips32r2-ill-fp64" "-mabi=o64" \
f6829a45
AN
746 [mips_arch_list_matching mips32r2 gpr64]
747 run_list_test_arches "mips32r2-ill-nofp" "-32 -msoft-float" \
748 [mips_arch_list_matching mips32r2]
af7ee8bf 749
5915a74a 750 run_dump_test_arches "mips64" [mips_arch_list_matching mips64]
a6d8f55b
AN
751 run_dump_test_arches "mips64-cp2" [mips_arch_list_matching mips64 \
752 !octeon]
5915a74a 753
5f74bc13 754 run_dump_test_arches "mips64r2" [mips_arch_list_matching mips64r2]
725fc8ed 755 run_list_test_arches "mips64r2-ill" [mips_arch_list_matching mips64r2]
5f74bc13 756
fef14a42
TS
757 run_dump_test "set-arch"
758
b892b944
TS
759 if { !$addr32 } {
760 run_dump_test "mips64-mips3d"
761 run_dump_test_arches "mips64-mips3d-incl" [mips_arch_list_matching mips3d]
5915a74a 762
b892b944
TS
763 run_dump_test "mips64-mdmx"
764 run_dump_test "sb1-ext-mdmx"
765 run_dump_test "sb1-ext-ps"
52b6b6b9 766 run_dump_test "xlr-ext"
b892b944 767 }
252b5132 768
66b3e8da
MR
769 run_dump_test_arches "relax" [mips_arch_list_matching mips2]
770 run_dump_test_arches "relax-at" [mips_arch_list_matching mips2]
895921c9
MR
771 run_dump_test "relax-swap1-mips1"
772 run_dump_test "relax-swap1-mips2"
773 run_dump_test "relax-swap2"
9301f9c3 774 run_dump_test_arches "relax-swap3" [mips_arch_list_all]
3bf0dbfb
MR
775 run_list_test_arches "relax-bc1any" "-mips3d -relax-branch" \
776 [mips_arch_list_matching mips64 \
777 !micromips]
d455268f 778 run_list_test_arches "relax-bposge" "-mdsp -relax-branch" \
df58fc94
RS
779 [mips_arch_list_matching mips64r2 \
780 !micromips]
594e740f 781
7f3c4072
CM
782 run_dump_test_arches "eva" [mips_arch_list_matching mips32r2 !octeon]
783
21b99e26
AO
784 run_list_test "illegal" "-32"
785 run_list_test "baddata1" "-32"
e7c604dd 786 run_list_test "jalr" ""
d9e138e2 787
dc462216
RS
788 run_dump_test "mips-gp32-fp32"
789 run_dump_test "mips-gp32-fp64"
790 run_dump_test "mips-gp64-fp32"
791 run_dump_test "mips-gp64-fp64"
dc462216 792
16e5e222
RS
793 # Make sure that -mcpu=FOO and -mFOO are equivalent. Assemble a file
794 # containing 4650-specific instructions with -m4650 and -mcpu=4650,
795 # and verify that they're the same. Specifically, we're checking
796 # that the EF_MIPS_MACH field is set, and that the 4650 'mul'
797 # instruction does get used. In previous versions of GAS,
798 # only -mcpu=4650 would set the EF_MIPS_MACH field; -m4650 wouldn't.
799 run_dump_test "elf_e_flags1"
800 run_dump_test "elf_e_flags2"
801 run_dump_test "elf_e_flags3"
802 run_dump_test "elf_e_flags4"
803
804 # Check EF_MIPS_ARCH markings for each supported architecture.
805 run_dump_test "elf_arch_mips1"
806 run_dump_test "elf_arch_mips2"
807 run_dump_test "elf_arch_mips3"
808 run_dump_test "elf_arch_mips4"
809 run_dump_test "elf_arch_mips5"
810 run_dump_test "elf_arch_mips32"
811 run_dump_test "elf_arch_mips32r2"
812 run_dump_test "elf_arch_mips64"
813 run_dump_test "elf_arch_mips64r2"
814
815 # Verify that ASE markings are handled properly.
816 run_dump_test "elf_ase_mips16"
817 run_dump_test "elf_ase_mips16-2"
818
819 run_dump_test "elf_ase_micromips"
820 run_dump_test "elf_ase_micromips-2"
821
822 run_dump_test "mips-gp32-fp32-pic"
823 run_dump_test "mips-gp32-fp64-pic"
824 run_dump_test "mips-gp64-fp32-pic"
825 run_dump_test "mips-gp64-fp64-pic"
826
827 run_dump_test "mips-abi32"
828 run_dump_test "mips-abi32-pic"
829 run_dump_test "mips-abi32-pic2"
830
831 run_dump_test "elf${el}-rel"
832 run_dump_test_arches "elf${el}-rel2" [mips_arch_list_matching gpr64 !singlefloat]
833 run_dump_test "e32${el}-rel2"
834 run_dump_test "elf${el}-rel3"
835 run_dump_test_arches "elf-rel4" [mips_arch_list_matching gpr64]
836 run_dump_test "e32-rel4"
837 run_dump_test "elf-rel5"
838 run_dump_test "elf-rel6"
839 if $has_newabi {
840 run_dump_test "elf-rel6-n32"
841 run_dump_test "elf-rel6-n64"
842 }
843 run_dump_test "elf-rel7"
844 run_dump_test "elf-rel8"
845 run_dump_test "elf-rel8-mips16"
846 run_dump_test "elf-rel9"
847 run_dump_test "elf-rel9-mips16"
848 if $has_newabi {
849 run_dump_test "elf-rel10"
850 run_dump_test "elf-rel11"
851 }
852 run_dump_test "elf-rel12"
853 run_dump_test "elf-rel13"
854 run_dump_test "elf-rel13-mips16"
855 run_dump_test "elf-rel14"
70a31400 856
16e5e222
RS
857 if $has_newabi {
858 run_dump_test "elf-rel15"
859 run_dump_test "elf-rel16"
05760fd2 860
16e5e222
RS
861 run_dump_test "elf-rel-got-n32"
862 run_dump_test "elf-rel-xgot-n32"
863 run_dump_test "elf-rel-got-n64"
864 run_dump_test "elf-rel-xgot-n64"
865 }
866 run_dump_test "elf-rel17"
867 if $has_newabi {
868 run_dump_test "elf-rel18"
869 }
870 run_dump_test "elf-rel19"
871 run_dump_test "elf-rel20"
872 if $has_newabi {
873 run_dump_test "elf-rel21"
874 run_dump_test "elf-rel22"
875 run_dump_test "elf-rel23"
876 run_dump_test "elf-rel23a"
877 run_dump_test "elf-rel23b"
878 run_dump_test "elf-rel24"
879 }
e8ede7c7 880
16e5e222
RS
881 run_dump_test "elf-rel25"
882 run_dump_test "elf-rel25a"
883 run_dump_test "elf-rel26"
30cfc97a 884
16e5e222 885 run_dump_test_arches "elf-rel27" [mips_arch_list_all]
e391c024 886
16e5e222
RS
887 if $has_newabi {
888 run_dump_test "elf-rel28-n32"
889 run_dump_test "elf-rel28-n64"
890 run_dump_test_arches "elf-rel29" [mips_arch_list_matching mips3]
891 }
892 run_list_test_arches "elf-rel30" "-32" [mips_arch_list_all]
08ddc280 893
16e5e222
RS
894 run_dump_test "${tmips}mips${el}16-e"
895 run_dump_test "${tmips}mips${el}16-f"
ce70d90a 896
16e5e222
RS
897 run_dump_test "elf-consthilo"
898 run_dump_test "expr1"
e3a82c8e 899
16e5e222
RS
900 run_list_test "tls-ill" "-32"
901 run_dump_test "tls-o32"
902 run_dump_test "tls-relw"
903 run_dump_test "jalr2"
904 run_dump_test_arches "jalr3" [mips_arch_list_matching mips1 \
905 !micromips]
906 if $has_newabi {
907 run_dump_test_arches "jalr3-n32" \
908 [mips_arch_list_matching mips3 \
909 !micromips]
910 run_dump_test_arches "jalr3-n64" \
911 [mips_arch_list_matching mips3 \
912 !micromips]
07147777 913 }
640c0ccd 914
16e5e222
RS
915 run_dump_test_arches "aent" [mips_arch_list_matching mips1]
916
917 run_dump_test_arches "branch-misc-4" [mips_arch_list_matching mips1]
918 run_dump_test_arches "branch-misc-4-64" [mips_arch_list_matching mips3]
919
920 run_dump_test_arches "loc-swap" [mips_arch_list_all]
921 run_dump_test_arches "loc-swap-dis" [mips_arch_list_all]
922 run_dump_test_arches "loc-swap-2" [mips_arch_list_all]
923 run_dump_test_arches "loc-swap-3" [mips_arch_list_all]
924
ba92f887
MR
925 run_dump_test "nan-legacy-1"
926 run_dump_test "nan-legacy-2"
927 run_dump_test "nan-legacy-3"
928 run_dump_test "nan-legacy-4"
929 run_dump_test "nan-legacy-5"
930
931 run_dump_test "nan-2008-1"
932 run_dump_test "nan-2008-2"
933 run_dump_test "nan-2008-3"
934 run_dump_test "nan-2008-4"
935
936 run_list_test "nan-error-1"
937 run_list_test "nan-error-2" "-mnan=foo"
938
5e0116d5 939 if $has_newabi {
a4cb6c4d
AO
940 run_dump_test "n32-consec"
941 }
942
640c0ccd
CD
943 # tests of objdump's ability to disassemble using different
944 # register names.
945 run_dump_test "gpr-names-numeric"
946 run_dump_test "gpr-names-32"
947 run_dump_test "gpr-names-n32"
948 run_dump_test "gpr-names-64"
949
950 run_dump_test "fpr-names-numeric"
951 run_dump_test "fpr-names-32"
952 run_dump_test "fpr-names-n32"
953 run_dump_test "fpr-names-64"
954
955 run_dump_test "cp0-names-numeric"
f409fd1e
MR
956 run_dump_test "cp0-names-r3000"
957 run_dump_test "cp0-names-r4000" \
958 { { {name} {(r4000)} } { {objdump} {-M cp0-names=r4000} } }
959 run_dump_test "cp0-names-r4000" \
960 { { {name} {(r4400)} } { {objdump} {-M cp0-names=r4400} } }
640c0ccd 961 run_dump_test "cp0-names-mips32"
af7ee8bf 962 run_dump_test "cp0-names-mips32r2"
640c0ccd 963 run_dump_test "cp0-names-mips64"
5f74bc13 964 run_dump_test "cp0-names-mips64r2"
640c0ccd 965 run_dump_test "cp0-names-sb1"
af7ee8bf 966
bbcc0807
CD
967 run_dump_test "cp0sel-names-numeric"
968 run_dump_test "cp0sel-names-mips32"
969 run_dump_test "cp0sel-names-mips32r2"
970 run_dump_test "cp0sel-names-mips64"
5f74bc13 971 run_dump_test "cp0sel-names-mips64r2"
bbcc0807
CD
972 run_dump_test "cp0sel-names-sb1"
973
af7ee8bf
CD
974 run_dump_test "hwr-names-numeric"
975 run_dump_test "hwr-names-mips32r2"
5f74bc13 976 run_dump_test "hwr-names-mips64r2"
ecd13cd3
TS
977
978 run_dump_test "ldstla-32"
2051e8c4 979 run_dump_test "ldstla-32-mips3"
ecd13cd3 980 run_dump_test "ldstla-32-shared"
2051e8c4
MR
981 run_dump_test "ldstla-32-mips3-shared"
982 run_list_test "ldstla-32-1" "-mabi=32" \
983 "MIPS ld-st-la bad constants (ABI o32)"
984 run_list_test "ldstla-32-mips3-1" "-mabi=32" \
985 "MIPS ld-st-la bad constants (ABI o32, mips3)"
986 run_list_test "ldstla-32-1" "-KPIC -mabi=32" \
987 "MIPS ld-st-la bad constants (ABI o32, shared)"
988 run_list_test "ldstla-32-mips3-1" "-KPIC -mabi=32" \
989 "MIPS ld-st-la bad constants (ABI o32, mips3, shared)"
aed1a261 990 run_dump_test "ldstla-eabi64"
ecd13cd3 991 if $has_newabi {
ecd13cd3
TS
992 run_dump_test "ldstla-n64"
993 run_dump_test "ldstla-n64-shared"
aed1a261 994 run_dump_test "ldstla-n64-sym32"
ecd13cd3 995 }
5fc68419
RS
996
997 run_dump_test "macro-warn-1"
998 run_dump_test "macro-warn-2"
999 run_dump_test "macro-warn-3"
1000 run_dump_test "macro-warn-4"
1001 if $has_newabi {
1002 run_dump_test "macro-warn-1-n32"
1003 run_dump_test "macro-warn-2-n32"
1004 }
8fc2e39e
TS
1005
1006 run_dump_test "noat-1"
1007 run_list_test "noat-2" ""
1008 run_list_test "noat-3" ""
1009 run_list_test "noat-4" ""
1010 run_list_test "noat-5" ""
1011 run_list_test "noat-6" ""
1012 run_list_test "noat-7" ""
58e2ea4d 1013
741fe287
MR
1014 run_dump_test "at-1"
1015 run_list_test "at-2" "-32 -mips1" "MIPS at-2"
1016
350cc38d
MS
1017 run_dump_test "loongson-2e"
1018 run_dump_test "loongson-2f"
c67a084a
NC
1019 run_dump_test "loongson-2f-2"
1020 run_dump_test "loongson-2f-3"
61d4e56d 1021
a471ec3a 1022 run_dump_test "loongson-3a"
98675402
RS
1023 run_dump_test "loongson-3a-2"
1024 run_dump_test "loongson-3a-3"
a471ec3a 1025
bb35fb24 1026 run_dump_test_arches "octeon" [mips_arch_list_matching octeon]
dd6a37e7 1027 run_dump_test_arches "octeon-saa-saad" [mips_arch_list_matching octeonp]
725fc8ed 1028 run_list_test_arches "octeon-ill" [mips_arch_list_matching octeon]
d954098f 1029 run_dump_test_arches "octeon-pref" [mips_arch_list_matching octeon]
432233b3 1030 run_dump_test_arches "octeon2" [mips_arch_list_matching octeon2]
350cc38d 1031
0797561a 1032 run_dump_test "smartmips"
03f66e8a
MR
1033 run_dump_test_arches "mips32-dsp" [mips_arch_list_matching mips32r2 \
1034 !octeon]
1035 run_dump_test_arches "mips32-dspr2" [mips_arch_list_matching mips32r2 \
1036 !octeon]
0797561a
AN
1037 run_dump_test "mips64-dsp"
1038 run_dump_test "mips32-mt"
305e06d3 1039
16e5e222
RS
1040 run_dump_test "mips16-dwarf2"
1041 if $has_newabi {
1042 run_dump_test "mips16-dwarf2-n32"
0499d65b 1043 }
16e5e222
RS
1044 run_dump_test "mips16-stabs"
1045
1046 run_dump_test "mips16e-jrc"
1047 run_dump_test "mips16e-save"
1a00e612 1048 run_list_test "mips16e-save-err" "-march=mips32 -32"
16e5e222
RS
1049 run_dump_test "mips16e-64"
1050 run_list_test "mips16e-64" "-march=mips32 -32"
1051 run_dump_test "mips16-intermix"
1052
0a44bf69
RS
1053 run_dump_test "vxworks1"
1054 run_dump_test "vxworks1-xgot"
a284cff1
TS
1055 run_dump_test "vxworks1-el"
1056 run_dump_test "vxworks1-xgot-el"
ef75f014
TS
1057
1058 run_dump_test "noreorder"
49954fb4 1059 run_dump_test "align"
742a56fe
RS
1060 run_dump_test "align2"
1061 run_dump_test "align2-el"
462427c4 1062 run_dump_test "align3"
c8ab98e0 1063 run_dump_test "odd-float"
a3f278e2 1064 run_dump_test "ehword"
f6829a45
AN
1065
1066 run_list_test_arches "mips-macro-ill-sfp" "-32 -msingle-float" \
1067 [mips_arch_list_matching mips2]
1068 run_list_test_arches "mips-macro-ill-nofp" "-32 -msoft-float" \
1069 [mips_arch_list_matching mips2]
1070
1071 run_list_test_arches "mips-hard-float-flag" \
1072 "-32 -msoft-float -mhard-float" \
16e5e222 1073 [mips_arch_list_matching mips1 !singlefloat]
f6829a45
AN
1074 run_list_test_arches "mips-double-float-flag" \
1075 "-32 -msingle-float -mdouble-float" \
16e5e222 1076 [mips_arch_list_matching mips1 !singlefloat]
30c09090
RS
1077
1078 run_dump_test "mips16-vis-1"
861fb55a 1079 run_dump_test "call-nonpic-1"
5fb8dac1 1080 run_dump_test "mips32-sync"
f6690563
MR
1081 run_dump_test_arches "mips32r2-sync" \
1082 [mips_arch_list_matching mips32r2]
8d367dd5 1083 run_dump_test_arches "alnv_ps-swap" [mips_arch_list_matching fpisa5]
df58fc94
RS
1084 run_dump_test_arches "cache" [lsort -dictionary -unique [concat \
1085 [mips_arch_list_matching mips3] \
1086 [mips_arch_list_matching mips32] ] ]
1087 run_dump_test_arches "daddi" [mips_arch_list_matching mips3]
1088 run_dump_test_arches "pref" [lsort -dictionary -unique [concat \
1089 [mips_arch_list_matching mips4] \
1090 [mips_arch_list_matching mips32] ] ]
5fb8dac1 1091
a79558d9 1092 if $has_newabi { run_dump_test "cfi-n64-1" }
f77ef3e2
RS
1093
1094 run_dump_test "pr12915"
4c260379
RS
1095 run_dump_test "reginfo-1a"
1096 run_dump_test "reginfo-1b"
df58fc94 1097
16e5e222
RS
1098 run_dump_test "micromips"
1099 run_dump_test "micromips-trap"
833794fc
MR
1100 run_dump_test "micromips-insn32"
1101 run_dump_test "micromips-noinsn32"
1102 run_list_test "micromips" "-mips32r2 -32 -mfp64 -minsn32" \
1103 "microMIPS for MIPS32r2 (instructions invalid in insn32 mode)"
16e5e222
RS
1104 run_list_test "micromips-size-0" \
1105 "-32 -march=mips64 -mmicromips" "microMIPS instruction size 0"
1106 run_dump_test "micromips-size-1"
1107 run_dump_test "micromips-branch-relax"
1108 run_dump_test "micromips-branch-relax-pic"
1109 run_dump_test "micromips-branch-delay"
1110 run_dump_test "micromips-warn-branch-delay"
1111 run_dump_test "micromips-warn-branch-delay-1"
1112 run_dump_test "micromips-b16"
a92713e6 1113 run_list_test "micromips-ill"
dec0624d
MR
1114
1115 run_dump_test_arches "mcu" [mips_arch_list_matching mips32r2 \
1116 !octeon]
1976c292
RS
1117 run_dump_test_arches "hilo-diff-eb" [mips_arch_list_all]
1118 run_dump_test_arches "hilo-diff-el" [mips_arch_list_all]
1119 if $has_newabi {
1120 run_dump_test_arches "hilo-diff-eb-n32" [mips_arch_list_matching mips3]
1121 run_dump_test_arches "hilo-diff-el-n32" [mips_arch_list_matching mips3]
1122 run_dump_test_arches "hilo-diff-eb-n64" [mips_arch_list_matching mips3]
1123 run_dump_test_arches "hilo-diff-el-n64" [mips_arch_list_matching mips3]
1124 }
5821951c
MR
1125 run_dump_test_arches "lui" [mips_arch_list_matching mips1]
1126 run_list_test_arches "lui-1" "-32" [mips_arch_list_matching mips1]
1127 run_list_test_arches "lui-2" "-32" [mips_arch_list_matching mips1]
e407c74b
NC
1128
1129 run_dump_test "r5900"
1130 run_dump_test "r5900-full"
16e5e222 1131 run_list_test "r5900-nollsc" "-mabi=o64 -march=r5900"
c77c0862 1132 run_dump_test "r5900-vu0"
14daeee3
RS
1133 run_dump_test "r5900-full-vu0"
1134 run_dump_test "r5900-all-vu0"
1135 run_list_test "r5900-error-vu0" "-march=r5900"
a5163986
CF
1136
1137 run_list_test_arches "ext-ill" [mips_arch_list_matching mips64r2]
c6278170
RS
1138
1139 run_list_test "ase-errors-1" "-mabi=32 -march=mips1" "ASE errors (1)"
1140 run_list_test "ase-errors-2" "-mabi=o64 -march=mips3" "ASE errors (2)"
1141 run_list_test "ase-errors-3" "-mabi=32 -march=mips1" "ASE errors (3)"
1142 run_list_test "ase-errors-4" "-mabi=o64 -march=mips3" "ASE errors (4)"
f2ae14a1
RS
1143
1144 run_dump_test_arches "la-reloc" [mips_arch_list_matching mips1]
1145 if { $has_newabi } {
1146 run_dump_test_arches "dla-reloc" [mips_arch_list_matching mips3]
1147 }
1148
1149 # Start with MIPS II to avoid load delay nops.
1150 run_dump_test_arches "ld-reloc" [mips_arch_list_matching mips2]
1151 run_dump_test_arches "ulw-reloc" [mips_arch_list_matching mips2]
1152 run_dump_test_arches "ulh-reloc" [mips_arch_list_matching mips2]
1153
1154 run_dump_test "l_d-reloc"
6f72df77 1155 run_list_test "bltzal"
ec0c61e3
CF
1156
1157 run_dump_test_arches "msa" [mips_arch_list_matching mips32r2]
1158 run_dump_test_arches "msa64" [mips_arch_list_matching mips64r2]
1159 run_dump_test_arches "msa-relax" [mips_arch_list_matching mips32r2]
cbfebe3c 1160 run_dump_test_arches "msa-branch" [mips_arch_list_matching mips32r2]
252b5132 1161}
This page took 0.666524 seconds and 4 git commands to generate.