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