OSDN Git Service

gcc/testsuite/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / mips / mips.exp
1 # Copyright (C) 1997, 2007, 2008, 2009 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with GCC; see the file COPYING3.  If not see
15 # <http://www.gnu.org/licenses/>.
16
17 # A MIPS version of the GCC dg.exp driver.
18 #
19 # There are many MIPS features that we want to test, and many of those
20 # features are specific to certain architectures, certain ABIs and so on.
21 # There are therefore many cases in which we want to test something that
22 # is incompatible with the user's chosen test options.
23 #
24 # In most dg testsuites, the options added by dg-options have a lower
25 # priority than the options chosen by the user.  For example, if a test
26 # specifies:
27 #
28 #    { dg-options "-mips1" }
29 #
30 # and the user passes the following option to runtest:
31 #
32 #    --target_board unix/-mips3
33 #
34 # the test would be compiled as MIPS III rather than MIPS I.  If the
35 # test really wouldn't work with -mips3, normal practice would be to
36 # have something like:
37 #
38 #    { dg-do compile { target can_force_mips1 } }
39 #
40 # so that the test is skipped when an option like -mips3 is passed.
41 #
42 # Sticking to the same approach here would cause us to skip many tests,
43 # even though the toolchain can generate the required code.  For example,
44 # there are 6 MIPS ABIs, plus variants.  Some configurations support
45 # more than one ABI, so it is natural to use something like:
46 #
47 #    --target_board unix{-mabi=n32,-mabi=32,-mabi=64}
48 #
49 # when testing them.  But these -mabi=* options would normally prevent any
50 # EABI and o64 tests from running.
51 #
52 # This testsuite therefore defines a local version of dg-options that
53 # overrides any user options that are incompatible with the test options.
54 # It tries to keep the other user options intact.
55 #
56 #
57 # Most of the tests in this testsuite are scan-assembler tests, but
58 # sometimes we need a link test instead.  In these cases, we must not
59 # try to link code with options that are incompatible with the current
60 # multilib, because xgcc is passed -L and -B options that are specific
61 # to that multilib.
62 #
63 # Normal GCC practice would be to skip incompatible link tests as
64 # unsupported, but in this particular case, it seems better to downgrade
65 # them to an assemble test instead.  At least that way we get some
66 # test-for-ICE and code-sanity coverage.
67 #
68 # The same problem applies to run tests.  If a test requires runtime
69 # support for a particular feature, and if the current target does not
70 # provide that support, normal practice would be to skip the test.
71 # But in this case it seems better to downgrade it to a link test instead.
72 # (We might then have to downgrade it to an assembler test according to
73 # the constraints just mentioned.)
74 #
75 # The local dg-options therefore checks whether the new options are
76 # link-compatiable with the user's options.  If not, it automatically
77 # downgrades link tests to assemble tests.  It does the same for run
78 # tests, but in addition, it downgrades run tests to link tests if the
79 # target does not provide runtime support for a required feature or ASE.
80 #
81 #
82 # Another problem is that many of the options we want to test require
83 # certain other features.  For example, -mips3d requires both 64-bit
84 # FPRs and a MIPS32 or MIPS64 target; -mfix-r10000 requires branch-
85 # likely instructions; and so on.  We could handle this by specifying
86 # a set of options that are guaranteed to give us what we want, such as:
87 #
88 #   dg-options "-mips3d -mpaired-single -mhard-float -mgp64 -mfp64 -mabi=n32 -march=mips64 -mips64"
89 #
90 # With the new dg-options semantics, this would override any troublesome
91 # user options like -mips3, -march=vr4100, -mfp32, -mgp32, -msoft-float,
92 # -mno-paired-single and so on.  But there are three major problems with
93 # this:
94 #
95 #   - It is easy to forget options.
96 #
97 #   - If a new option is added, all tests that are incompatible with that
98 #     option must be updated.
99 #
100 #   - We want to be able to test MIPS-3D with things like -march=mips32,
101 #     -march=mips64r2, -march=sb1, and so on.
102 #
103 # The local version of dg-options therefore works out the requirements
104 # of each test option.  As with the test options themselves, the local
105 # dg-options overrides any user options that incompatible with these
106 # requirements, but it keeps the other user options the same.
107 #
108 # For example, if the user passes -mips3, a MIPS-3D test will choose
109 # a different architecture like -mips64 instead.  But if the user
110 # passes -march=sb1, MIPS-3D tests will be run with that option.
111 #
112 #
113 # Sometimes it is useful to say "I want an environment that is compatible
114 # with option X, but I don't want to pass option X itself".  The main example
115 # of this is -mips16: we want to be able to test __attribute__((mips16))
116 # without requiring the test itself to be compiled as -mips16.  The local
117 # version of dg-options lets you do this by putting X in parentheses.
118 # For example:
119 #
120 #   { dg-options "(-mips16)" }
121 #
122 # selects a MIPS16-compatible target without passing -mips16 itself.
123 #
124 # It is also useful to say "any architecture within this ISA range is fine".
125 # This can be done using special pseudo-options of the form:
126 #
127 #   PROP=VALUE PROP<=VALUE PROP>=VALUE
128 #
129 # where PROP can be:
130 #
131 #   isa:
132 #       the value of the __mips macro.
133 #
134 #   isa_rev:
135 #       the value of the __mips_isa_rev macro, or 0 if it isn't defined.
136 #
137 # For example, "isa_rev>=1" selects a MIPS32 or MIPS64 processor,
138 # "isa=4" selects a MIPS IV processor, and so on.
139 #
140 # There are also the following special pseudo-options:
141 #
142 #   isa=loongson
143 #       select a Loongson processor
144 #
145 #   addressing=absolute
146 #       force absolute addresses to be used
147 #
148 #   forbid_cpu=REGEXP
149 #       forbid processors that match the given regexp; choose a
150 #       generic ISA instead.
151 #
152 #
153 # In summary:
154 #
155 #   (1) Try to avoid { target ... } requirements wherever possible.
156 #       Specify the requirements as dg-options instead.
157 #
158 #   (2) Don't worry about the consequences of (1) for link and run tests.
159 #       If the test uses { dg-do link } or { dg-do run }, and its
160 #       dg-options are incompatible with the current target, the
161 #       testsuite will downgrade them where necessary.
162 #
163 #   (3) Try to use the bare minimum of options and leave dg-options
164 #       to work out the dependencies.  For example, if you want
165 #       a MIPS-3D test, you should generally just specify -mips3d.
166 #       Don't specify an architecture option like -mips64 unless
167 #       the test really doesn't work with -mips32r2, -mips64r2,
168 #       -march=sb1, etc.
169 #
170 #   (4) If you want something compatible with a particular option,
171 #       but don't want to pass the option itself, wrap that option
172 #       in parentheses.  In particular, pass '(-mips16)' if you
173 #       want to use "mips16" attributes.
174 #
175 #   (5) When testing a feature of a generic ISA (as opposed to a
176 #       processor-specific extension), try to use the "isa" and
177 #       "isa_rev" pseudo-options instead of specific architecture
178 #       options.  For example, if the feature is present on revision 2
179 #       processors and above, try to use "isa_rev>=2" instead of
180 #       "-mips32r2" or "-mips64r2".
181 #
182 #   (6) If you need to disable processor-specific extensions use
183 #       forbid_cpu=REGEXP instead of forcing a generic ISA.
184 #
185 #
186 # Terminology
187 #
188 #   Option group or just group:
189 #      See comment before mips_option_groups.
190 #
191 #   Test options:
192 #      The options specified in dg-options.
193 #
194 #   Explicit options:
195 #      The options that were either passed to runtest as "multilib" options
196 #      (e.g. -mips4 in --target_board=mips-sim-idt/-mips4) or specified as
197 #      test options.  Note that options in parenthesis (i.e. (-mips16)) are
198 #      not explicit and can be omitted depending on the base options.
199 #
200 #   Base options:
201 #      Options that are on by default without being specified in dg-options,
202 #      e.g. -march=mips64r2 for mipsisa64r2-elf or because they've been
203 #      passed to runtest as "multilib" options.
204 #
205 #   Option array:
206 #      Many functions in this file work with option arrays.  These are
207 #      two-dimensional Tcl arrays where the first dimension can have three
208 #      values: option, explicit_p or test_option_p.  The second dimension is
209 #      the name of the option group.  "option" contains the name of the
210 #      option that is in effect from this group.  If no option is active it
211 #      contains the empty string.  The flags "explicit_p" and "test_option_p"
212 #      are set for explicit and test options.
213
214 # Exit immediately if this isn't a MIPS target.
215 if ![istarget mips*-*-*] {
216     return
217 }
218
219 # Load support procs.
220 load_lib gcc-dg.exp
221
222 # A list of GROUP REGEXP pairs.  Each GROUP represents a logical group of
223 # options from which only one option should be chosen.  REGEXP matches all
224 # the options in that group; it is implicitly wrapped in "^(...)$".
225 set mips_option_groups {
226     abi "-mabi=.*"
227     addressing "addressing=.*"
228     arch "-mips([1-5]|32.*|64.*)|-march=.*|isa(|_rev)(=|<=|>=).*"
229     dump_pattern "-dp"
230     endianness "-E(L|B)|-me(l|b)"
231     float "-m(hard|soft)-float"
232     forbid_cpu "forbid_cpu=.*"
233     fp "-mfp(32|64)"
234     gp "-mgp(32|64)"
235     long "-mlong(32|64)"
236     mips16 "-mips16|-mno-mips16|-mflip-mips16"
237     mips3d "-mips3d|-mno-mips3d"
238     optimization "-O(|[0-3s])"
239     pic "-f(no-|)(pic|PIC)"
240     profiling "-pg"
241     small-data "-G[0-9]+"
242     warnings "-w"
243 }
244
245 # Add -mfoo/-mno-foo options to mips_option_groups.
246 foreach option {
247     abicalls
248     branch-likely
249     dsp
250     dspr2
251     explicit-relocs
252     extern-sdata
253     fix-r4000
254     fix-r10000
255     fix-vr4130
256     gpopt
257     local-sdata
258     long-calls
259     paired-single
260     plt
261     shared
262     smartmips
263     sym32
264     synci
265     relax-pic-calls
266     mcount-ra-address
267 } {
268     lappend mips_option_groups $option "-m(no-|)$option"
269 }
270
271 # Add -mfoo= options to mips_option_groups.
272 foreach option {
273     branch-cost
274     code-readable
275     r10k-cache-barrier
276     tune
277 } {
278     lappend mips_option_groups $option "-m$option=.*"
279 }
280
281 # Add -ffoo/-fno-foo options to mips_option_groups.
282 foreach option {
283     delayed-branch
284     fast-math
285     finite-math-only
286     fixed-hi
287     fixed-lo
288     lax-vector-conversions
289     split-wide-types
290     tree-vectorize
291 } {
292     lappend mips_option_groups $option "-f(no-|)$option"
293 }
294
295 # A list of option groups that have an impact on the ABI.
296 set mips_abi_groups {
297     abi
298     abicalls
299     arch
300     endianness
301     float
302     fp
303     gp
304     gpopt
305     long
306     pic
307     small-data
308 }
309
310 # mips_option_tests(OPTION) is some assembly code that will run to completion
311 # on a target that supports OPTION.
312 set mips_option_tests(-mips16) {
313     move $2,$31
314     bal 1f
315     .set mips16
316     jr $31
317     .set nomips16
318     .align 2
319 1:
320     ori $3,$31,1
321     jalr $3
322     move $31,$2
323 }
324 set mips_option_tests(-mpaired-single) {
325     .set mips64
326     lui $2,0x3f80
327     mtc1 $2,$f0
328     cvt.ps.s $f2,$f0,$f0
329 }
330 set mips_option_tests(-mips3d) {
331     .set mips64
332     .set mips3d
333     lui $2,0x3f80
334     mtc1 $2,$f0
335     cvt.ps.s $f2,$f0,$f0
336     mulr.ps $f2,$f2,$f2
337     rsqrt1.s $f2,$f0
338     mul.s $f4,$f2,$f0
339     rsqrt2.s $f4,$f4,$f2
340     madd.s $f4,$f2,$f2,$f4
341 }
342 set mips_option_tests(-mdsp) {
343     .set mips64r2
344     .set dsp
345     addsc $2,$2,$2
346 }
347 set mips_option_tests(-mdspr2) {
348     .set mips64r2
349     .set dspr2
350     prepend $2,$3,11
351 }
352
353 # Canonicalize command-line option OPTION.
354 proc mips_canonicalize_option { option } {
355     regsub {^-mips([1-5]|32*|64*)$} $option {-march=mips\1} option
356
357     regsub {^-mel$} $option {-EL} option
358     regsub {^-meb$} $option {-EB} option
359
360     regsub {^-O$} $option {-O1} option
361
362     # MIPS doesn't use -fpic and -fPIC to distinguish between code models.
363     regsub {^-f(no-|)PIC} $option {-f\1pic} option
364
365     return $option
366 }
367
368 # Return true if OPTION1 and OPTION2 represent the same command-line option.
369 proc mips_same_option_p { option1 option2 } {
370     return [string equal \
371                 [mips_canonicalize_option $option1] \
372                 [mips_canonicalize_option $option2]]
373 }
374
375 # Preprocess CODE using target_compile options OPTIONS.  Return the
376 # compiler output.
377 proc mips_preprocess { options code } {
378     global tool
379
380     set src dummy[pid].c
381     set f [open $src "w"]
382     puts $f $code
383     close $f
384     set output [${tool}_target_compile $src "" preprocess $options]
385     file delete $src
386
387     return $output
388 }
389
390 # Set the target board's command-line options to NEW_OPTIONS, storing the
391 # old values in UPVAR.
392 proc mips_push_test_options { upvar new_options } {
393     upvar $upvar var
394     global board_info
395
396     array unset var
397     set var(name) board_info([target_info name],multilib_flags)
398     if { [info exists $var(name)] } {
399         set var(old_options) [set $var(name)]
400         set $var(name) [join $new_options " "]
401     }
402 }
403
404 # Undo the effects of [mips_push_test_options UPVAR ...]
405 proc mips_pop_test_options { upvar } {
406     upvar $upvar var
407     global board_info
408
409     if { [info exists var(old_options)] } {
410         set $var(name) $var(old_options)
411     }
412 }
413
414 # Return property PROP for architecture option ARCH (which belongs to
415 # the "arch" group in mips_option_groups).  See the comment at the
416 # top of the file for the valid property names.
417 #
418 # Cache the results in mips_arch_info (which can be reused between test
419 # variants).
420 proc mips_arch_info { arch prop } {
421     global mips_arch_info
422     global board_info
423
424     set arch [mips_canonicalize_option $arch]
425     if { ![info exists mips_arch_info($arch,$prop)] } {
426         mips_push_test_options saved_options {}
427         set output [mips_preprocess [list "additional_flags=$arch -mabi=32"] {
428             int isa = __mips;
429             #ifdef __mips_isa_rev
430             int isa_rev = __mips_isa_rev;
431             #else
432             int isa_rev = 0;
433             #endif
434         }]
435         foreach lhs { isa isa_rev } {
436             regsub ".*$lhs = (\[^;\]*).*" $output {\1} rhs
437             verbose -log "Architecture $arch has $lhs $rhs"
438             set mips_arch_info($arch,$lhs) $rhs
439         }
440         mips_pop_test_options saved_options
441     }
442     return $mips_arch_info($arch,$prop)
443 }
444
445 # Return the option group associated with OPTION, or "" if none.
446 proc mips_option_maybe_group { option } {
447     global mips_option_groups
448
449     foreach { group regexp } $mips_option_groups {
450         if { [regexp -- "^($regexp)\$" $option] } {
451             return $group
452         }
453     }
454     return ""
455 }
456
457 # Return the option group associated with OPTION.  Raise an error if
458 # there is none.
459 proc mips_option_group { option } {
460     set group [mips_option_maybe_group $option]
461     if { [string equal $group ""] } {
462         error "Unrecognised option: $option"
463     }
464     return $group
465 }
466
467 # Return the option for option group GROUP, or "" if no option in that
468 # group has been chosen.  UPSTATUS describes the option status.
469 proc mips_option { upstatus group } {
470     upvar $upstatus status
471
472     return $status(option,$group)
473 }
474
475 # If the base options for this test run include an option in group GROUP,
476 # return that option, otherwise return "".
477 proc mips_original_option { group } {
478     global mips_base_options
479
480     return [mips_option mips_base_options $group]
481 }
482
483 # Return true if the test described by UPSTATUS requires a specific
484 # option in group GROUP.  UPSTATUS describes the option status.
485 proc mips_test_option_p { upstatus group } {
486     upvar $upstatus status
487
488     return $status(test_option_p,$group)
489 }
490
491 # If the test described by UPSTATUS requires a particular option in group
492 # GROUP, return that option, otherwise return "".
493 proc mips_test_option { upstatus group } {
494     upvar $upstatus status
495
496     if { [mips_test_option_p status $group] } {
497         return [mips_option status $group]
498     } else {
499         return ""
500     }
501 }
502
503 # Return true if the options described by UPSTATUS include OPTION.
504 proc mips_have_option_p { upstatus option } {
505     upvar $upstatus status
506
507     return [mips_same_option_p \
508                 [mips_option status [mips_option_group $option]] \
509                 $option]
510 }
511
512 # Return true if the options described by UPSTATUS require MIPS16 support.
513 proc mips_using_mips16_p { upstatus } {
514     upvar $upstatus status
515
516     return [expr { [mips_have_option_p status "-mips16"]
517                    || [mips_have_option_p status "-mflip-mips16"] }]
518 }
519
520 # Return true if the test described by UPSTATUS requires option OPTION.
521 proc mips_have_test_option_p { upstatus option } {
522     upvar $upstatus status
523
524     set group [mips_option_group $option]
525     return [mips_same_option_p [mips_test_option status $group] $option]
526 }
527
528 # If the test described by UPSTATUS does not specify an option in
529 # OPTION's group, act as though it had specified OPTION.
530 #
531 # The first optional argument indicates whether the option should be
532 # treated as though it were wrapped in parentheses; see the comment at
533 # the top of the file for details about this convention.  The default is 0.
534 proc mips_make_test_option { upstatus option args } {
535     upvar $upstatus status
536
537     set group [mips_option_group $option]
538     if { ![mips_test_option_p status $group] } {
539         set status(option,$group) $option
540         set status(test_option_p,$group) 1
541         if { [llength $args] == 0 || ![lindex $args 0] } {
542             set status(explicit_p,$group) 1
543         }
544     }
545 }
546
547 # If the test described by UPSTATUS requires option FROM, assume that
548 # it implicitly requires option TO.
549 proc mips_option_dependency { upstatus from to } {
550     upvar $upstatus status
551
552     if { [mips_have_test_option_p status $from] } {
553         mips_make_test_option status $to
554     }
555 }
556
557 # Return true if the given arch-group option specifies a 32-bit ISA.
558 proc mips_32bit_arch_p { option } {
559     set isa [mips_arch_info $option isa]
560     return [expr { $isa < 3 || $isa == 32 }]
561 }
562
563 # Return true if the given arch-group option specifies a 64-bit ISA.
564 proc mips_64bit_arch_p { option } {
565     return [expr { ![mips_32bit_arch_p $option] }]
566 }
567
568 # Return true if the given abi-group option implicitly requires -mgp32.
569 proc mips_32bit_abi_p { option } {
570     switch -glob -- $option {
571         -mabi=32 {
572             return 1
573         }
574     }
575     return 0
576 }
577
578 # Return true if the given abi-group option implicitly requires -mgp64.
579 proc mips_64bit_abi_p { option } {
580     switch -glob -- $option {
581         -mabi=o64 -
582         -mabi=n32 -
583         -mabi=64 {
584             return 1
585         }
586     }
587     return 0
588 }
589
590 # Check whether the current target supports all the options that the
591 # current test requires.  Return "" if so, otherwise return one of
592 # the incompatible options.  UPSTATUS describes the option status.
593 proc mips_first_unsupported_option { upstatus } {
594     global mips_option_tests
595     upvar $upstatus status
596
597     foreach { option code } [array get mips_option_tests] {
598         if { [mips_have_test_option_p status $option] } {
599             regsub -all "\n" $code "\\n\\\n" asm
600             # Use check_runtime from target-supports.exp, which caches
601             # the result for us.
602             if { ![check_runtime mips_option_$option [subst {
603                 __attribute__((nomips16)) int
604                 main (void)
605                 {
606                     asm (".set push\
607                     $asm\
608                     .set pop");
609                     return 0;
610                 }
611             }]] } {
612                 return $option
613             }
614         }
615     }
616     return ""
617 }
618
619 # Initialize this testsuite for a new test variant.
620 proc mips-dg-init {} {
621     # Invariant information.
622     global mips_option_groups
623
624     # Internally-generated information about this run.
625     global mips_base_options
626     global mips_extra_options
627
628     # Override dg-options with our mips-dg-options routine.
629     rename dg-options mips-old-dg-options
630     rename mips-dg-options dg-options
631
632     # Start with a fresh option status.
633     array unset mips_base_options
634     foreach { group regexp } $mips_option_groups {
635         set mips_base_options(option,$group) ""
636         set mips_base_options(explicit_p,$group) 0
637         set mips_base_options(test_option_p,$group) 0
638     }
639
640     # Use preprocessor macros to work out as many implicit options as we can.
641     set output [mips_preprocess "" {
642         const char *options[] = {
643             #if !defined _MIPS_SIM
644             "-mabi=eabi",
645             #elif _MIPS_SIM==_ABIO32
646             "-mabi=32",
647             #elif _MIPS_SIM==_ABIO64
648             "-mabi=o64",
649             #elif _MIPS_SIM==_ABIN32
650             "-mabi=n32",
651             #else
652             "-mabi=64",
653             #endif
654
655             "-march=" _MIPS_ARCH,
656
657             #ifdef _MIPSEB
658             "-EB",
659             #else
660             "-EL",
661             #endif
662
663             #ifdef __mips_hard_float
664             "-mhard-float",
665             #else
666             "-msoft-float",
667             #endif
668
669             #if __mips_fpr == 64
670             "-mfp64",
671             #else
672             "-mfp32",
673             #endif
674
675             #ifdef __mips64
676             "-mgp64",
677             #else
678             "-mgp32",
679             #endif
680
681             #if _MIPS_SZLONG == 64
682             "-mlong64",
683             #else
684             "-mlong32",
685             #endif
686
687             #ifdef __mips16
688             "-mips16",
689             #else
690             "-mno-mips16",
691             #endif
692
693             #ifdef __mips3d
694             "-mips3d",
695             #else
696             "-mno-mips3d",
697             #endif
698
699             #ifdef __mips_paired_single_float
700             "-mpaired-single",
701             #else
702             "-mno-paired-single",
703             #endif
704
705             #if __mips_abicalls
706             "-mabicalls",
707             #else
708             "-mno-abicalls",
709             #endif
710
711             #if __mips_dsp_rev >= 2
712             "-mdspr2",
713             #else
714             "-mno-dspr2",
715             #endif
716
717             #if __mips_dsp_rev >= 1
718             "-mdsp",
719             #else
720             "-mno-dsp",
721             #endif
722
723             #ifndef __PIC__
724             "addressing=absolute",
725             #endif
726
727             #ifdef __mips_smartmips
728             "-msmartmips",
729             #else
730             "-mno-smartmips",
731             #endif
732
733             0
734         };
735     }]
736     foreach line [split $output "\r\n"] {
737         # Poor man's string concatenation.
738         regsub -all {" "} $line "" line
739         if { [regexp {"(.*)",} $line dummy option] } {
740             set group [mips_option_group $option]
741             set mips_base_options(option,$group) $option
742         }
743     }
744
745     # Process the target's multilib options, saving any unrecognized
746     # ones in mips_extra_options.
747     set mips_extra_options {}
748     foreach option [split [board_info target multilib_flags]] {
749         set group [mips_option_maybe_group $option]
750         if { ![string equal $group ""] } {
751             set mips_base_options(option,$group) $option
752             set mips_base_options(explicit_p,$group) 1
753         } else {
754             lappend mips_extra_options $option
755         }
756     }
757 }
758
759 # Finish a test run started by mips-dg-init.
760 proc mips-dg-finish {} {
761     rename dg-options mips-dg-options
762     rename mips-old-dg-options dg-options
763 }
764
765 # Override dg-options so that we can do some MIPS-specific processing.
766 # All options used in this testsuite must appear in mips_option_groups.
767 #
768 # Test options override multilib options.  Certain test options can
769 # also imply other test options, which also override multilib options.
770 # These dependencies are ordered as follows:
771 #
772 #          START                        END
773 #            |                           |
774 #         -mips16/-mflip-mips16       -mno-mips16
775 #            |                           |
776 #         -mips3d                     -mno-mips3d
777 #            |                           |
778 #         -mpaired-single             -mno-paired-single
779 #            |                           |
780 #         -mfp64                      -mfp32
781 #            |                           |
782 #         -mhard-float                -msoft-float
783 #            |                           |
784 #         -mno-sym32                  -msym32
785 #            |                           |
786 #         -mrelax-pic-calls           -mno-relax-pic-calls
787 #            |                           |
788 #         -fpic                       -fno-pic
789 #            |                           |
790 #         -mshared                    -mno-shared
791 #            |                           |
792 #         -mno-plt                    -mplt
793 #            |                           |
794 #         addressing=unknown          addressing=absolute
795 #            |                           |
796 #         -mabicalls                  -mno-abicalls
797 #            |                           |
798 #         -G0                         <other value>
799 #            |                           |
800 #         <other value>               -mr10k-cache-barrier=none
801 #            |                           |
802 #         -mfix-r10000                -mno-fix-r10000
803 #            |                           |
804 #         -mbranch-likely             -mno-branch-likely
805 #            |                           |
806 #         -msmartmips                 -mno-smartmips
807 #            |                           |
808 #         -mno-gpopt                  -mgpopt
809 #            |                           |
810 #         -mexplicit-relocs           -mno-explicit-relocs
811 #            |                           |
812 #            +-- gp, abi & arch ---------+
813 #
814 # For these purposes, the "gp", "abi" & "arch" option groups are treated
815 # as a single node.
816 proc mips-dg-options { args } {
817     # dg.exp variables.
818     upvar dg-extra-tool-flags extra_tool_flags
819     upvar dg-do-what do_what
820
821     # Invariant information.
822     global mips_option_groups
823     global mips_abi_groups
824
825     # Information about this run.
826     global mips_base_options
827
828     # Start out with the default option state.
829     array set options [array get mips_base_options]
830
831     # Record the options that this test explicitly needs.
832     foreach option [lindex $args 1] {
833         set all_but_p [regexp {^\((.*)\)$} $option dummy option]
834         set group [mips_option_group $option]
835         if { [mips_test_option_p options $group] } {
836             set old [mips_option options $group]
837             error "Inconsistent $group option: $old vs. $option"
838         } else {
839             mips_make_test_option options $option $all_but_p
840         }
841     }
842
843     # Handle dependencies between options on the left of the
844     # dependency diagram.
845     mips_option_dependency options "-mips3d" "-mpaired-single"
846     mips_option_dependency options "-mpaired-single" "-mfp64"
847     mips_option_dependency options "-mfp64" "-mhard-float"
848     mips_option_dependency options "-mrelax-pic-calls" "-mno-plt"
849     mips_option_dependency options "-mrelax-pic-calls" "-mabicalls"
850     mips_option_dependency options "-mrelax-pic-calls" "-mexplicit-relocs"
851     mips_option_dependency options "-fpic" "-mshared"
852     mips_option_dependency options "-mshared" "-mno-plt"
853     mips_option_dependency options "-mno-plt" "addressing=unknown"
854     mips_option_dependency options "-mabicalls" "-G0"
855     mips_option_dependency options "-mno-gpopt" "-mexplicit-relocs"
856
857     # Work out information about the current ABI.
858     set abi_test_option_p [mips_test_option_p options abi]
859     set abi [mips_option options abi]
860     set eabi_p [mips_same_option_p $abi "-mabi=eabi"]
861
862     # If the test forces a particular ABI, set the register size
863     # accordingly.
864     if { $abi_test_option_p } {
865         if { [mips_32bit_abi_p $abi] } {
866             mips_make_test_option options "-mgp32"
867         } elseif { [mips_64bit_abi_p $abi] } {
868             mips_make_test_option options "-mgp64"
869         }
870     }
871
872     # See whether forbid_cpu forces us to choose a new architecture.
873     set arch [mips_option mips_base_options arch]
874     set force_generic_isa_p [expr {
875         [regexp "forbid_cpu=(.*)" [mips_option options forbid_cpu] dummy spec]
876         && [regexp -- "^-march=$spec\$" $arch]
877     }]
878
879     # Interpret the special "isa" and "isa_rev" options.  If we have
880     # a choice of a 32-bit or a 64-bit architecture, prefer to keep
881     # the -mgp setting the same.
882     set spec [mips_option options arch]
883     if { [regexp {^[^-]} $spec] } {
884         if { [string equal $spec "isa=loongson"] } {
885             if { ![regexp {^-march=loongson} $arch] } {
886                 set arch "-march=loongson2f"
887             }
888         } else {
889             if { ![regexp {^(isa(?:|_rev))(=|<=|>=)([0-9]*)$} \
890                        $spec dummy prop relation value nocpus] } {
891                 error "Unrecognized isa specification: $spec"
892             }
893             set current [mips_arch_info $arch $prop]
894             if { $force_generic_isa_p
895                  || ($current < $value && ![string equal $relation "<="])
896                  || ($current > $value && ![string equal $relation ">="])
897                  || ([mips_have_test_option_p options "-mgp64"]
898                      && [mips_32bit_arch_p $arch]) } {
899                 # The current setting is out of range; it cannot
900                 # possibly be used.  Find a replacement that can.
901                 if { [string equal $prop "isa"] } {
902                     set arch "-mips$value"
903                 } elseif { $value == 0 } {
904                     set arch "-mips4"
905                 } else {
906                     if { [mips_have_option_p options "-mgp32"] } {
907                         set arch "-mips32"
908                     } else {
909                         set arch "-mips64"
910                     }
911                     if { $value > 1 } {
912                         append arch "r$value"
913                     }
914                 }
915             }
916         }
917         set options(option,arch) $arch
918     }
919
920     # Work out information about the current architecture.
921     set arch_test_option_p [mips_test_option_p options arch]
922     set arch [mips_option options arch]
923     set isa [mips_arch_info $arch isa]
924     set isa_rev [mips_arch_info $arch isa_rev]
925
926     # If the test forces a 32-bit architecture, force -mgp32.
927     # Force the current -mgp setting otherwise; if we don't,
928     # some configurations would make a 64-bit architecture
929     # imply -mgp64.
930     if { $arch_test_option_p } {
931         if { [mips_32bit_arch_p $arch] } {
932             mips_make_test_option options "-mgp32"
933         } else {
934             mips_make_test_option options [mips_option options gp]
935         }
936     }
937
938     # We've now fixed the GP register size.  Make it easily available.
939     set gp_size [expr { [mips_have_option_p options "-mgp32"] ? 32 : 64 }]
940
941     # Handle dependencies between the pre-arch options and the arch option.
942     # This should mirror the arch and post-arch code below.
943     if { !$arch_test_option_p } {
944         # We need a revision 2 or better ISA for:
945         #
946         #   - the combination of -mgp32 -mfp64
947         #   - the DSP ASE
948         if { $isa_rev < 2
949              && (($gp_size == 32 && [mips_have_test_option_p options "-mfp64"])
950                  || [mips_have_test_option_p options "-mdsp"]
951                  || [mips_have_test_option_p options "-mdspr2"]) } {
952             if { $gp_size == 32 } {
953                 mips_make_test_option options "-mips32r2"
954             } else {
955                 mips_make_test_option options "-mips64r2"
956             }
957         # We need a MIPS32 or MIPS64 ISA for:
958         #
959         #   - paired-single instructions(*)
960         #
961         # (*) Note that we don't support MIPS V at the moment.
962         } elseif { $isa_rev < 1
963                    && [mips_have_test_option_p options "-mpaired-single"] } {
964             if { $gp_size == 32 } {
965                 mips_make_test_option options "-mips32"
966             } else {
967                 mips_make_test_option options "-mips64"
968             }
969         # We need MIPS III or higher for:
970         #
971         #   - the "cache" instruction
972         } elseif { $isa < 3
973                    && ([mips_have_test_option_p options \
974                             "-mr10k-cache-barrier=load-store"]
975                        || [mips_have_test_option_p options \
976                                "-mr10k-cache-barrier=store"]) } {
977             mips_make_test_option options "-mips3"
978         # We need MIPS II or higher for:
979         #
980         #   - branch-likely instructions(*)
981         #
982         # (*) needed by both -mbranch-likely and -mfix-r10000
983         } elseif { $isa < 2
984                    && ([mips_have_test_option_p options "-mbranch-likely"]
985                        || [mips_have_test_option_p options "-mfix-r10000"]) } {
986             mips_make_test_option options "-mips2"
987         # Check whether we need to switch from a 32-bit processor to the
988         # "nearest" 64-bit processor.
989         } elseif { $gp_size == 64 && [mips_32bit_arch_p $arch] } {
990             if { $isa_rev == 0 } {
991                 mips_make_test_option options "-mips3"
992             } elseif { $isa_rev == 1 } {
993                 mips_make_test_option options "-mips64"
994             } else {
995                 mips_make_test_option options "-mips64r$isa_rev"
996             }
997         # Otherwise, if the current choice of architecture is unacceptable,
998         # choose the equivalent generic architecture.
999         } elseif { $force_generic_isa_p } {
1000             set arch "-mips[mips_arch_info $arch isa]"
1001             if { $isa_rev > 1 } {
1002                 append arch "r$isa_rev"
1003             }
1004             mips_make_test_option options $arch
1005         }
1006         unset arch
1007         unset isa
1008         unset isa_rev
1009     }
1010
1011     # Set an appropriate ABI, handling dependencies between the pre-abi
1012     # options and the abi options.  This should mirror the abi and post-abi
1013     # code below.
1014     if { !$abi_test_option_p } {
1015         if { ($eabi_p
1016               && ([mips_have_option_p options "-mabicalls"]
1017                   || ($gp_size == 32
1018                       && [mips_have_option_p options "-mfp64"]))) } {
1019             # EABI doesn't support -mabicalls.
1020             # EABI doesn't support the combination -mgp32 -mfp64.
1021             set force_abi 1
1022         } elseif { [mips_using_mips16_p options]
1023                    && ![mips_same_option_p $abi "-mabi=32"]
1024                    && ![mips_same_option_p $abi "-mabi=o64"]
1025                    && (![mips_have_option_p options "addressing=absolute"]
1026                        || [mips_have_option_p options "-mhard-float"]) } {
1027             # -mips16 -mhard-float requires o32 or o64.
1028             # -mips16 PIC requires o32 or o64.
1029             set force_abi 1
1030         } else {
1031             set force_abi 0
1032         }
1033         if { $gp_size == 32 } {
1034             if { $force_abi || [mips_64bit_abi_p $abi] } {
1035                 mips_make_test_option options "-mabi=32"
1036             }
1037         } else {
1038             if { $force_abi || [mips_32bit_abi_p $abi] } {
1039                 # All configurations should have an assembler that
1040                 # supports o64, since it requires the same BFD target
1041                 # vector as o32.  In contrast, many assembler
1042                 # configurations do not have n32 or n64 support.
1043                 mips_make_test_option options "-mabi=o64"
1044             }
1045         }
1046         unset abi
1047         unset eabi_p
1048     }
1049
1050     # Handle dependencies between the abi options and the post-abi options.
1051     # This should mirror the abi and pre-abi code above.
1052     if { $abi_test_option_p } {
1053         if { $eabi_p } {
1054             mips_make_test_option options "-mno-abicalls"
1055             if { $gp_size == 32 } {
1056                 mips_make_test_option options "-mfp32"
1057             }
1058         }
1059         if { [mips_using_mips16_p options]
1060              && ![mips_same_option_p $abi "-mabi=32"]
1061              && ![mips_same_option_p $abi "-mabi=o64"]
1062              && (![mips_have_option_p options "addressing=absolute"]
1063                  || [mips_have_option_p options "-mhard-float"]) } {
1064             if { [mips_test_option_p options mips16] } {
1065                 mips_make_test_option options "addressing=absolute"
1066                 mips_make_test_option options "-msoft-float"
1067             } else {
1068                 mips_make_test_option options "-mno-mips16"
1069             }
1070         }
1071         unset abi
1072         unset eabi_p
1073     }
1074
1075     # Handle dependencies between the arch option and the post-arch options.
1076     # This should mirror the arch and pre-arch code above.
1077     if { $arch_test_option_p } {
1078         if { $isa < 2 } {
1079             mips_make_test_option options "-mno-branch-likely"
1080             mips_make_test_option options "-mno-fix-r10000"
1081         }
1082         if { $isa < 3 } {
1083             mips_make_test_option options "-mr10k-cache-barrier=none"
1084         }
1085         if { $isa_rev < 1 } {
1086             mips_make_test_option options "-mno-paired-single"
1087         }
1088         if { $isa_rev < 2 } {
1089             if { $gp_size == 32 } {
1090                 mips_make_test_option options "-mfp32"
1091             }
1092             mips_make_test_option options "-mno-dsp"
1093             mips_make_test_option options "-mno-dspr2"
1094         }
1095         unset arch
1096         unset isa
1097         unset isa_rev
1098     }
1099
1100     # Handle dependencies between options on the right of the diagram.
1101     mips_option_dependency options "-mno-explicit-relocs" "-mgpopt"
1102     switch -- [mips_test_option options small-data] {
1103         "" -
1104         -G0 {}
1105         default {
1106             mips_make_test_option options "-mno-abicalls"
1107         }
1108     }
1109     if { [mips_have_option_p options "-mabicalls"] } {
1110         mips_option_dependency options "addressing=absolute" "-mplt"
1111     }
1112     mips_option_dependency options "-mplt" "-msym32"
1113     mips_option_dependency options "-mplt" "-mno-shared"
1114     mips_option_dependency options "-mno-shared" "-fno-pic"
1115     mips_option_dependency options "-mfp32" "-mno-paired-single"
1116     mips_option_dependency options "-msoft-float" "-mno-paired-single"
1117     mips_option_dependency options "-mno-paired-single" "-mno-mips3d"
1118
1119     # If the test requires an unsupported option, change run tests
1120     # to link tests.
1121
1122     switch -- [lindex $do_what 0] {
1123         run {
1124             set option [mips_first_unsupported_option options]
1125             if { ![string equal $option ""] } {
1126                 set do_what [lreplace $do_what 0 0 link]
1127                 verbose -log "Downgraded to a 'link' test due to unsupported option '$option'"
1128             }
1129         }
1130     }
1131
1132     # If the test has overridden a option that changes the ABI,
1133     # downgrade a link or execution test to an assembler test.
1134     foreach group $mips_abi_groups {
1135         set old_option [mips_original_option $group]
1136         set new_option [mips_option options $group]
1137         if { ![mips_same_option_p $old_option $new_option] } {
1138             switch -- [lindex $do_what 0] {
1139                 link -
1140                 run {
1141                     set do_what [lreplace $do_what 0 0 assemble]
1142                     verbose -log "Downgraded to an 'assemble' test due to incompatible $group option ($old_option changed to $new_option)"
1143                 }
1144             }
1145             break
1146         }
1147     }
1148
1149     # Add all options to the dg variable.
1150     set options(explicit_p,addressing) 0
1151     set options(explicit_p,forbid_cpu) 0
1152     foreach { group regexp } $mips_option_groups {
1153         if { $options(explicit_p,$group) } {
1154             append extra_tool_flags " " $options(option,$group)
1155         }
1156     }
1157
1158     # If the test is MIPS16-compatible, provide a counterpart to the
1159     # NOMIPS16 convenience macro.
1160     if { [mips_have_test_option_p options "-mips16"] } {
1161         append extra_tool_flags " -DMIPS16=__attribute__((mips16))"
1162     }
1163
1164     # Use our version of gcc-dg-test for this test.
1165     if { ![string equal [info procs "mips-gcc-dg-test"] ""] } {
1166         rename gcc-dg-test mips-old-gcc-dg-test
1167         rename mips-gcc-dg-test gcc-dg-test
1168     }
1169 }
1170
1171 # A version of gcc-dg-test that is used by dg-options tests.
1172 proc mips-gcc-dg-test { prog do_what extra_tool_flags } {
1173     global board_info
1174     global mips_extra_options
1175
1176     # Override the user's chosen test options with the combined test/user
1177     # version.
1178     mips_push_test_options saved_options $mips_extra_options
1179     set result [gcc-dg-test-1 gcc_target_compile $prog \
1180                     $do_what $extra_tool_flags]
1181     mips_pop_test_options saved_options
1182
1183     # Restore the usual gcc-dg-test.
1184     rename gcc-dg-test mips-gcc-dg-test
1185     rename mips-old-gcc-dg-test gcc-dg-test
1186
1187     return $result
1188 }
1189
1190 dg-init
1191 mips-dg-init
1192 # MIPS16 is defined by "-mips16" or "(-mips16)" in dg-options.
1193 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.c]] "" \
1194     "-DNOMIPS16=__attribute__((nomips16))"
1195 mips-dg-finish
1196 dg-finish