[AArch64] SVE load/store_lanes support
[official-gcc.git] / gcc / testsuite / lib / target-supports.exp
blobaedb7980da2e5ab205f2dcd699c9d7786dc6e616
1 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
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.
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.
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/>.
17 # Please email any bugs, comments, and/or additions to this file to:
18 # gcc-patches@gcc.gnu.org
20 # This file defines procs for determining features supported by the target.
22 # Try to compile the code given by CONTENTS into an output file of
23 # type TYPE, where TYPE is as for target_compile. Return a list
24 # whose first element contains the compiler messages and whose
25 # second element is the name of the output file.
27 # BASENAME is a prefix to use for source and output files.
28 # If ARGS is not empty, its first element is a string that
29 # should be added to the command line.
31 # Assume by default that CONTENTS is C code.
32 # Otherwise, code should contain:
33 # "// C++" for c++,
34 # "! Fortran" for Fortran code,
35 # "/* ObjC", for ObjC
36 # "// ObjC++" for ObjC++
37 # and "// Go" for Go
38 # If the tool is ObjC/ObjC++ then we overide the extension to .m/.mm to
39 # allow for ObjC/ObjC++ specific flags.
40 proc check_compile {basename type contents args} {
41 global tool
42 verbose "check_compile tool: $tool for $basename"
44 # Save additional_sources to avoid compiling testsuite's sources
45 # against check_compile's source.
46 global additional_sources
47 if [info exists additional_sources] {
48 set tmp_additional_sources "$additional_sources"
49 set additional_sources ""
52 if { [llength $args] > 0 } {
53 set options [list "additional_flags=[lindex $args 0]"]
54 } else {
55 set options ""
57 switch -glob -- $contents {
58 "*! Fortran*" { set src ${basename}[pid].f90 }
59 "*// C++*" { set src ${basename}[pid].cc }
60 "*// ObjC++*" { set src ${basename}[pid].mm }
61 "*/* ObjC*" { set src ${basename}[pid].m }
62 "*// Go*" { set src ${basename}[pid].go }
63 default {
64 switch -- $tool {
65 "objc" { set src ${basename}[pid].m }
66 "obj-c++" { set src ${basename}[pid].mm }
67 default { set src ${basename}[pid].c }
72 set compile_type $type
73 switch -glob $type {
74 assembly { set output ${basename}[pid].s }
75 object { set output ${basename}[pid].o }
76 executable { set output ${basename}[pid].exe }
77 "rtl-*" {
78 set output ${basename}[pid].s
79 lappend options "additional_flags=-fdump-$type"
80 set compile_type assembly
83 set f [open $src "w"]
84 puts $f $contents
85 close $f
86 set lines [${tool}_target_compile $src $output $compile_type "$options"]
87 file delete $src
89 set scan_output $output
90 # Don't try folding this into the switch above; calling "glob" before the
91 # file is created won't work.
92 if [regexp "rtl-(.*)" $type dummy rtl_type] {
93 set scan_output "[glob $src.\[0-9\]\[0-9\]\[0-9\]r.$rtl_type]"
94 file delete $output
97 # Restore additional_sources.
98 if [info exists additional_sources] {
99 set additional_sources "$tmp_additional_sources"
102 return [list $lines $scan_output]
105 proc current_target_name { } {
106 global target_info
107 if [info exists target_info(target,name)] {
108 set answer $target_info(target,name)
109 } else {
110 set answer ""
112 return $answer
115 # Implement an effective-target check for property PROP by invoking
116 # the Tcl command ARGS and seeing if it returns true.
118 proc check_cached_effective_target { prop args } {
119 global et_cache
120 global et_prop_list
122 set target [current_target_name]
123 if {![info exists et_cache($prop,target)]
124 || $et_cache($prop,target) != $target} {
125 verbose "check_cached_effective_target $prop: checking $target" 2
126 set et_cache($prop,target) $target
127 set et_cache($prop,value) [uplevel eval $args]
128 if {![info exists et_prop_list]
129 || [lsearch $et_prop_list $prop] < 0} {
130 lappend et_prop_list $prop
132 verbose "check_cached_effective_target cached list is now: $et_prop_list" 2
134 set value $et_cache($prop,value)
135 verbose "check_cached_effective_target $prop: returning $value for $target" 2
136 return $value
139 # Clear effective-target cache. This is useful after testing
140 # effective-target features and overriding TEST_ALWAYS_FLAGS and/or
141 # ALWAYS_CXXFLAGS.
142 # If one changes ALWAYS_CXXFLAGS or TEST_ALWAYS_FLAGS then they should
143 # do a clear_effective_target_cache at the end as the target cache can
144 # make decisions based upon the flags, and those decisions need to be
145 # redone when the flags change. An example of this is the
146 # asan_init/asan_finish pair.
148 proc clear_effective_target_cache { } {
149 global et_cache
150 global et_prop_list
152 if {[info exists et_prop_list]} {
153 verbose "clear_effective_target_cache: $et_prop_list" 2
154 foreach prop $et_prop_list {
155 unset et_cache($prop,value)
156 unset et_cache($prop,target)
158 unset et_prop_list
162 # Like check_compile, but delete the output file and return true if the
163 # compiler printed no messages.
164 proc check_no_compiler_messages_nocache {args} {
165 set result [eval check_compile $args]
166 set lines [lindex $result 0]
167 set output [lindex $result 1]
168 remote_file build delete $output
169 return [string match "" $lines]
172 # Like check_no_compiler_messages_nocache, but cache the result.
173 # PROP is the property we're checking, and doubles as a prefix for
174 # temporary filenames.
175 proc check_no_compiler_messages {prop args} {
176 return [check_cached_effective_target $prop {
177 eval [list check_no_compiler_messages_nocache $prop] $args
181 # Like check_compile, but return true if the compiler printed no
182 # messages and if the contents of the output file satisfy PATTERN.
183 # If PATTERN has the form "!REGEXP", the contents satisfy it if they
184 # don't match regular expression REGEXP, otherwise they satisfy it
185 # if they do match regular expression PATTERN. (PATTERN can start
186 # with something like "[!]" if the regular expression needs to match
187 # "!" as the first character.)
189 # Delete the output file before returning. The other arguments are
190 # as for check_compile.
191 proc check_no_messages_and_pattern_nocache {basename pattern args} {
192 global tool
194 set result [eval [list check_compile $basename] $args]
195 set lines [lindex $result 0]
196 set output [lindex $result 1]
198 set ok 0
199 if { [string match "" $lines] } {
200 set chan [open "$output"]
201 set invert [regexp {^!(.*)} $pattern dummy pattern]
202 set ok [expr { [regexp $pattern [read $chan]] != $invert }]
203 close $chan
206 remote_file build delete $output
207 return $ok
210 # Like check_no_messages_and_pattern_nocache, but cache the result.
211 # PROP is the property we're checking, and doubles as a prefix for
212 # temporary filenames.
213 proc check_no_messages_and_pattern {prop pattern args} {
214 return [check_cached_effective_target $prop {
215 eval [list check_no_messages_and_pattern_nocache $prop $pattern] $args
219 # Try to compile and run an executable from code CONTENTS. Return true
220 # if the compiler reports no messages and if execution "passes" in the
221 # usual DejaGNU sense. The arguments are as for check_compile, with
222 # TYPE implicitly being "executable".
223 proc check_runtime_nocache {basename contents args} {
224 global tool
226 set result [eval [list check_compile $basename executable $contents] $args]
227 set lines [lindex $result 0]
228 set output [lindex $result 1]
230 set ok 0
231 if { [string match "" $lines] } {
232 # No error messages, everything is OK.
233 set result [remote_load target "./$output" "" ""]
234 set status [lindex $result 0]
235 verbose "check_runtime_nocache $basename: status is <$status>" 2
236 if { $status == "pass" } {
237 set ok 1
240 remote_file build delete $output
241 return $ok
244 # Like check_runtime_nocache, but cache the result. PROP is the
245 # property we're checking, and doubles as a prefix for temporary
246 # filenames.
247 proc check_runtime {prop args} {
248 global tool
250 return [check_cached_effective_target $prop {
251 eval [list check_runtime_nocache $prop] $args
255 # Return 1 if GCC was configured with $pattern.
256 proc check_configured_with { pattern } {
257 global tool
259 set gcc_output [${tool}_target_compile "-v" "" "none" ""]
260 if { [ regexp "Configured with: \[^\n\]*$pattern" $gcc_output ] } {
261 verbose "Matched: $pattern" 2
262 return 1
265 verbose "Failed to match: $pattern" 2
266 return 0
269 ###############################
270 # proc check_weak_available { }
271 ###############################
273 # weak symbols are only supported in some configs/object formats
274 # this proc returns 1 if they're supported, 0 if they're not, or -1 if unsure
276 proc check_weak_available { } {
277 global target_cpu
279 # All mips targets should support it
281 if { [ string first "mips" $target_cpu ] >= 0 } {
282 return 1
285 # All AIX targets should support it
287 if { [istarget *-*-aix*] } {
288 return 1
291 # All solaris2 targets should support it
293 if { [istarget *-*-solaris2*] } {
294 return 1
297 # Windows targets Cygwin and MingW32 support it
299 if { [istarget *-*-cygwin*] || [istarget *-*-mingw*] } {
300 return 1
303 # HP-UX 10.X doesn't support it
305 if { [istarget hppa*-*-hpux10*] } {
306 return 0
309 # nvptx (nearly) supports it
311 if { [istarget nvptx-*-*] } {
312 return 1
315 # ELF and ECOFF support it. a.out does with gas/gld but may also with
316 # other linkers, so we should try it
318 set objformat [gcc_target_object_format]
320 switch $objformat {
321 elf { return 1 }
322 ecoff { return 1 }
323 a.out { return 1 }
324 mach-o { return 1 }
325 som { return 1 }
326 unknown { return -1 }
327 default { return 0 }
331 # return 1 if weak undefined symbols are supported.
333 proc check_effective_target_weak_undefined { } {
334 return [check_runtime weak_undefined {
335 extern void foo () __attribute__((weak));
336 int main (void) { if (foo) return 1; return 0; }
337 } ""]
340 ###############################
341 # proc check_weak_override_available { }
342 ###############################
344 # Like check_weak_available, but return 0 if weak symbol definitions
345 # cannot be overridden.
347 proc check_weak_override_available { } {
348 if { [istarget *-*-mingw*] } {
349 return 0
351 return [check_weak_available]
354 ###############################
355 # proc check_visibility_available { what_kind }
356 ###############################
358 # The visibility attribute is only support in some object formats
359 # This proc returns 1 if it is supported, 0 if not.
360 # The argument is the kind of visibility, default/protected/hidden/internal.
362 proc check_visibility_available { what_kind } {
363 if [string match "" $what_kind] { set what_kind "hidden" }
365 return [check_no_compiler_messages visibility_available_$what_kind object "
366 void f() __attribute__((visibility(\"$what_kind\")));
367 void f() {}
371 ###############################
372 # proc check_alias_available { }
373 ###############################
375 # Determine if the target toolchain supports the alias attribute.
377 # Returns 2 if the target supports aliases. Returns 1 if the target
378 # only supports weak aliased. Returns 0 if the target does not
379 # support aliases at all. Returns -1 if support for aliases could not
380 # be determined.
382 proc check_alias_available { } {
383 global alias_available_saved
384 global tool
386 if [info exists alias_available_saved] {
387 verbose "check_alias_available returning saved $alias_available_saved" 2
388 } else {
389 set src alias[pid].c
390 set obj alias[pid].o
391 verbose "check_alias_available compiling testfile $src" 2
392 set f [open $src "w"]
393 # Compile a small test program. The definition of "g" is
394 # necessary to keep the Solaris assembler from complaining
395 # about the program.
396 puts $f "#ifdef __cplusplus\nextern \"C\"\n#endif\n"
397 puts $f "void g() {} void f() __attribute__((alias(\"g\")));"
398 close $f
399 set lines [${tool}_target_compile $src $obj object ""]
400 file delete $src
401 remote_file build delete $obj
403 if [string match "" $lines] then {
404 # No error messages, everything is OK.
405 set alias_available_saved 2
406 } else {
407 if [regexp "alias definitions not supported" $lines] {
408 verbose "check_alias_available target does not support aliases" 2
410 set objformat [gcc_target_object_format]
412 if { $objformat == "elf" } {
413 verbose "check_alias_available but target uses ELF format, so it ought to" 2
414 set alias_available_saved -1
415 } else {
416 set alias_available_saved 0
418 } else {
419 if [regexp "only weak aliases are supported" $lines] {
420 verbose "check_alias_available target supports only weak aliases" 2
421 set alias_available_saved 1
422 } else {
423 set alias_available_saved -1
428 verbose "check_alias_available returning $alias_available_saved" 2
431 return $alias_available_saved
434 # Returns 1 if the target toolchain supports strong aliases, 0 otherwise.
436 proc check_effective_target_alias { } {
437 if { [check_alias_available] < 2 } {
438 return 0
439 } else {
440 return 1
444 # Returns 1 if the target toolchain supports ifunc, 0 otherwise.
446 proc check_ifunc_available { } {
447 return [check_no_compiler_messages ifunc_available object {
448 #ifdef __cplusplus
449 extern "C" {
450 #endif
451 typedef void F (void);
452 F* g (void) {}
453 void f () __attribute__ ((ifunc ("g")));
454 #ifdef __cplusplus
456 #endif
460 # Returns true if --gc-sections is supported on the target.
462 proc check_gc_sections_available { } {
463 global gc_sections_available_saved
464 global tool
466 if {![info exists gc_sections_available_saved]} {
467 # Some targets don't support gc-sections despite whatever's
468 # advertised by ld's options.
469 if { [istarget alpha*-*-*]
470 || [istarget ia64-*-*] } {
471 set gc_sections_available_saved 0
472 return 0
475 # elf2flt uses -q (--emit-relocs), which is incompatible with
476 # --gc-sections.
477 if { [board_info target exists ldflags]
478 && [regexp " -elf2flt\[ =\]" " [board_info target ldflags] "] } {
479 set gc_sections_available_saved 0
480 return 0
483 # VxWorks kernel modules are relocatable objects linked with -r,
484 # while RTP executables are linked with -q (--emit-relocs).
485 # Both of these options are incompatible with --gc-sections.
486 if { [istarget *-*-vxworks*] } {
487 set gc_sections_available_saved 0
488 return 0
491 # Check if the ld used by gcc supports --gc-sections.
492 set gcc_ld [lindex [${tool}_target_compile "-print-prog-name=ld" "" "none" ""] 0]
493 set ld_output [remote_exec host "$gcc_ld" "--help"]
494 if { [ string first "--gc-sections" $ld_output ] >= 0 } {
495 set gc_sections_available_saved 1
496 } else {
497 set gc_sections_available_saved 0
500 return $gc_sections_available_saved
503 # Return 1 if according to target_info struct and explicit target list
504 # target is supposed to support trampolines.
506 proc check_effective_target_trampolines { } {
507 if [target_info exists gcc,no_trampolines] {
508 return 0
510 if { [istarget avr-*-*]
511 || [istarget msp430-*-*]
512 || [istarget nvptx-*-*]
513 || [istarget hppa2.0w-hp-hpux11.23]
514 || [istarget hppa64-hp-hpux11.23] } {
515 return 0;
517 return 1
520 # Return 1 if target has limited stack size.
522 proc check_effective_target_stack_size { } {
523 if [target_info exists gcc,stack_size] {
524 return 1
526 return 0
529 # Return the value attribute of an effective target, otherwise return 0.
531 proc dg-effective-target-value { effective_target } {
532 if { "$effective_target" == "stack_size" } {
533 if [check_effective_target_stack_size] {
534 return [target_info gcc,stack_size]
538 return 0
541 # Return 1 if signal.h is supported.
543 proc check_effective_target_signal { } {
544 if [target_info exists gcc,signal_suppress] {
545 return 0
547 return 1
550 # Return 1 if according to target_info struct and explicit target list
551 # target disables -fdelete-null-pointer-checks. Targets should return 0
552 # if they simply default to -fno-delete-null-pointer-checks but obey
553 # -fdelete-null-pointer-checks when passed explicitly (and tests that
554 # depend on this option should do that).
556 proc check_effective_target_keeps_null_pointer_checks { } {
557 if [target_info exists keeps_null_pointer_checks] {
558 return 1
560 if { [istarget avr-*-*]
561 || [istarget msp430-*-*] } {
562 return 1;
564 return 0
567 # Return the autofdo profile wrapper
569 # Linux by default allows 516KB of perf event buffers
570 # in /proc/sys/kernel/perf_event_mlock_kb
571 # Each individual perf tries to grab it
572 # This causes problems with parallel test suite runs. Instead
573 # limit us to 8 pages (32K), which should be good enough
574 # for the small test programs. With the default settings
575 # this allows parallelism of 16 and higher of parallel gcc-auto-profile
576 proc profopt-perf-wrapper { } {
577 global srcdir
578 return "$srcdir/../config/i386/gcc-auto-profile -o perf.data -m8 "
581 # Return true if profiling is supported on the target.
583 proc check_profiling_available { test_what } {
584 global profiling_available_saved
586 verbose "Profiling argument is <$test_what>" 1
588 # These conditions depend on the argument so examine them before
589 # looking at the cache variable.
591 # Tree profiling requires TLS runtime support.
592 if { $test_what == "-fprofile-generate" } {
593 if { ![check_effective_target_tls_runtime] } {
594 return 0
598 if { $test_what == "-fauto-profile" } {
599 if { !([istarget i?86-*-linux*] || [istarget x86_64-*-linux*]) } {
600 verbose "autofdo only supported on linux"
601 return 0
603 # not cross compiling?
604 if { ![isnative] } {
605 verbose "autofdo not supported for non native builds"
606 return 0
608 set event [profopt-perf-wrapper]
609 if {$event == "" } {
610 verbose "autofdo not supported"
611 return 0
613 global srcdir
614 set status [remote_exec host "$srcdir/../config/i386/gcc-auto-profile" "true -v >/dev/null"]
615 if { [lindex $status 0] != 0 } {
616 verbose "autofdo not supported because perf does not work"
617 return 0
620 # no good way to check this in advance -- check later instead.
621 #set status [remote_exec host "create_gcov" "2>/dev/null"]
622 #if { [lindex $status 0] != 255 } {
623 # verbose "autofdo not supported due to missing create_gcov"
624 # return 0
628 # Support for -p on solaris2 relies on mcrt1.o which comes with the
629 # vendor compiler. We cannot reliably predict the directory where the
630 # vendor compiler (and thus mcrt1.o) is installed so we can't
631 # necessarily find mcrt1.o even if we have it.
632 if { [istarget *-*-solaris2*] && $test_what == "-p" } {
633 return 0
636 # We don't yet support profiling for MIPS16.
637 if { [istarget mips*-*-*]
638 && ![check_effective_target_nomips16]
639 && ($test_what == "-p" || $test_what == "-pg") } {
640 return 0
643 # MinGW does not support -p.
644 if { [istarget *-*-mingw*] && $test_what == "-p" } {
645 return 0
648 # cygwin does not support -p.
649 if { [istarget *-*-cygwin*] && $test_what == "-p" } {
650 return 0
653 # uClibc does not have gcrt1.o.
654 if { [check_effective_target_uclibc]
655 && ($test_what == "-p" || $test_what == "-pg") } {
656 return 0
659 # Now examine the cache variable.
660 if {![info exists profiling_available_saved]} {
661 # Some targets don't have any implementation of __bb_init_func or are
662 # missing other needed machinery.
663 if {[istarget aarch64*-*-elf]
664 || [istarget am3*-*-linux*]
665 || [istarget arm*-*-eabi*]
666 || [istarget arm*-*-elf]
667 || [istarget arm*-*-symbianelf*]
668 || [istarget avr-*-*]
669 || [istarget bfin-*-*]
670 || [istarget cris-*-*]
671 || [istarget crisv32-*-*]
672 || [istarget fido-*-elf]
673 || [istarget h8300-*-*]
674 || [istarget lm32-*-*]
675 || [istarget m32c-*-elf]
676 || [istarget m68k-*-elf]
677 || [istarget m68k-*-uclinux*]
678 || [istarget mips*-*-elf*]
679 || [istarget mmix-*-*]
680 || [istarget mn10300-*-elf*]
681 || [istarget moxie-*-elf*]
682 || [istarget msp430-*-*]
683 || [istarget nds32*-*-elf]
684 || [istarget nios2-*-elf]
685 || [istarget nvptx-*-*]
686 || [istarget powerpc-*-eabi*]
687 || [istarget powerpc-*-elf]
688 || [istarget rx-*-*]
689 || [istarget tic6x-*-elf]
690 || [istarget visium-*-*]
691 || [istarget xstormy16-*]
692 || [istarget xtensa*-*-elf]
693 || [istarget *-*-rtems*]
694 || [istarget *-*-vxworks*] } {
695 set profiling_available_saved 0
696 } else {
697 set profiling_available_saved 1
701 # -pg link test result can't be cached since it may change between
702 # runs.
703 set profiling_working $profiling_available_saved
704 if { $profiling_available_saved == 1
705 && ![check_no_compiler_messages_nocache profiling executable {
706 int main() { return 0; } } "-pg"] } {
707 set profiling_working 0
710 return $profiling_working
713 # Check to see if a target is "freestanding". This is as per the definition
714 # in Section 4 of C99 standard. Effectively, it is a target which supports no
715 # extra headers or libraries other than what is considered essential.
716 proc check_effective_target_freestanding { } {
717 if { [istarget nvptx-*-*] } {
718 return 1
720 return 0
723 # Return 1 if target has packed layout of structure members by
724 # default, 0 otherwise. Note that this is slightly different than
725 # whether the target has "natural alignment": both attributes may be
726 # false.
728 proc check_effective_target_default_packed { } {
729 return [check_no_compiler_messages default_packed assembly {
730 struct x { char a; long b; } c;
731 int s[sizeof (c) == sizeof (char) + sizeof (long) ? 1 : -1];
735 # Return 1 if target has PCC_BITFIELD_TYPE_MATTERS defined. See
736 # documentation, where the test also comes from.
738 proc check_effective_target_pcc_bitfield_type_matters { } {
739 # PCC_BITFIELD_TYPE_MATTERS isn't just about unnamed or empty
740 # bitfields, but let's stick to the example code from the docs.
741 return [check_no_compiler_messages pcc_bitfield_type_matters assembly {
742 struct foo1 { char x; char :0; char y; };
743 struct foo2 { char x; int :0; char y; };
744 int s[sizeof (struct foo1) != sizeof (struct foo2) ? 1 : -1];
748 # Add to FLAGS all the target-specific flags needed to use thread-local storage.
750 proc add_options_for_tls { flags } {
751 # On Solaris 9, __tls_get_addr/___tls_get_addr only lives in
752 # libthread, so always pass -pthread for native TLS. Same for AIX.
753 # Need to duplicate native TLS check from
754 # check_effective_target_tls_native to avoid recursion.
755 if { ([istarget powerpc-ibm-aix*]) &&
756 [check_no_messages_and_pattern tls_native "!emutls" assembly {
757 __thread int i;
758 int f (void) { return i; }
759 void g (int j) { i = j; }
760 }] } {
761 return "-pthread [g++_link_flags [get_multilibs "-pthread"] ] $flags "
763 return $flags
766 # Return 1 if indirect jumps are supported, 0 otherwise.
768 proc check_effective_target_indirect_jumps {} {
769 if { [istarget nvptx-*-*] } {
770 return 0
772 return 1
775 # Return 1 if nonlocal goto is supported, 0 otherwise.
777 proc check_effective_target_nonlocal_goto {} {
778 if { [istarget nvptx-*-*] } {
779 return 0
781 return 1
784 # Return 1 if global constructors are supported, 0 otherwise.
786 proc check_effective_target_global_constructor {} {
787 if { [istarget nvptx-*-*] } {
788 return 0
790 return 1
793 # Return 1 if taking label values is supported, 0 otherwise.
795 proc check_effective_target_label_values {} {
796 if { [istarget nvptx-*-*] || [target_info exists gcc,no_label_values] } {
797 return 0
800 return 1
803 # Return 1 if builtin_return_address and builtin_frame_address are
804 # supported, 0 otherwise.
806 proc check_effective_target_return_address {} {
807 if { [istarget nvptx-*-*] } {
808 return 0
810 return 1
813 # Return 1 if the assembler does not verify function types against
814 # calls, 0 otherwise. Such verification will typically show up problems
815 # with K&R C function declarations.
817 proc check_effective_target_untyped_assembly {} {
818 if { [istarget nvptx-*-*] } {
819 return 0
821 return 1
824 # Return 1 if alloca is supported, 0 otherwise.
826 proc check_effective_target_alloca {} {
827 if { [istarget nvptx-*-*] } {
828 return [check_no_compiler_messages alloca assembly {
829 void f (void*);
830 void g (int n) { f (__builtin_alloca (n)); }
833 return 1
836 # Return 1 if thread local storage (TLS) is supported, 0 otherwise.
838 proc check_effective_target_tls {} {
839 return [check_no_compiler_messages tls assembly {
840 __thread int i;
841 int f (void) { return i; }
842 void g (int j) { i = j; }
846 # Return 1 if *native* thread local storage (TLS) is supported, 0 otherwise.
848 proc check_effective_target_tls_native {} {
849 # VxWorks uses emulated TLS machinery, but with non-standard helper
850 # functions, so we fail to automatically detect it.
851 if { [istarget *-*-vxworks*] } {
852 return 0
855 return [check_no_messages_and_pattern tls_native "!emutls" assembly {
856 __thread int i;
857 int f (void) { return i; }
858 void g (int j) { i = j; }
862 # Return 1 if *emulated* thread local storage (TLS) is supported, 0 otherwise.
864 proc check_effective_target_tls_emulated {} {
865 # VxWorks uses emulated TLS machinery, but with non-standard helper
866 # functions, so we fail to automatically detect it.
867 if { [istarget *-*-vxworks*] } {
868 return 1
871 return [check_no_messages_and_pattern tls_emulated "emutls" assembly {
872 __thread int i;
873 int f (void) { return i; }
874 void g (int j) { i = j; }
878 # Return 1 if TLS executables can run correctly, 0 otherwise.
880 proc check_effective_target_tls_runtime {} {
881 # The runtime does not have TLS support, but just
882 # running the test below is insufficient to show this.
883 if { [istarget msp430-*-*] || [istarget visium-*-*] } {
884 return 0
886 return [check_runtime tls_runtime {
887 __thread int thr = 0;
888 int main (void) { return thr; }
889 } [add_options_for_tls ""]]
892 # Return 1 if atomic compare-and-swap is supported on 'int'
894 proc check_effective_target_cas_char {} {
895 return [check_no_compiler_messages cas_char assembly {
896 #ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1
897 #error unsupported
898 #endif
899 } ""]
902 proc check_effective_target_cas_int {} {
903 return [check_no_compiler_messages cas_int assembly {
904 #if __INT_MAX__ == 0x7fff && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2
905 /* ok */
906 #elif __INT_MAX__ == 0x7fffffff && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4
907 /* ok */
908 #else
909 #error unsupported
910 #endif
911 } ""]
914 # Return 1 if -ffunction-sections is supported, 0 otherwise.
916 proc check_effective_target_function_sections {} {
917 # Darwin has its own scheme and silently accepts -ffunction-sections.
918 if { [istarget *-*-darwin*] } {
919 return 0
922 return [check_no_compiler_messages functionsections assembly {
923 void foo (void) { }
924 } "-ffunction-sections"]
927 # Return 1 if instruction scheduling is available, 0 otherwise.
929 proc check_effective_target_scheduling {} {
930 return [check_no_compiler_messages scheduling object {
931 void foo (void) { }
932 } "-fschedule-insns"]
935 # Return 1 if trapping arithmetic is available, 0 otherwise.
937 proc check_effective_target_trapping {} {
938 return [check_no_compiler_messages trapping object {
939 int add (int a, int b) { return a + b; }
940 } "-ftrapv"]
943 # Return 1 if compilation with -fgraphite is error-free for trivial
944 # code, 0 otherwise.
946 proc check_effective_target_fgraphite {} {
947 return [check_no_compiler_messages fgraphite object {
948 void foo (void) { }
949 } "-O1 -fgraphite"]
952 # Return 1 if compilation with -fopenacc is error-free for trivial
953 # code, 0 otherwise.
955 proc check_effective_target_fopenacc {} {
956 # nvptx can be built with the device-side bits of openacc, but it
957 # does not make sense to test it as an openacc host.
958 if [istarget nvptx-*-*] { return 0 }
960 return [check_no_compiler_messages fopenacc object {
961 void foo (void) { }
962 } "-fopenacc"]
965 # Return 1 if compilation with -fopenmp is error-free for trivial
966 # code, 0 otherwise.
968 proc check_effective_target_fopenmp {} {
969 # nvptx can be built with the device-side bits of libgomp, but it
970 # does not make sense to test it as an openmp host.
971 if [istarget nvptx-*-*] { return 0 }
973 return [check_no_compiler_messages fopenmp object {
974 void foo (void) { }
975 } "-fopenmp"]
978 # Return 1 if compilation with -fgnu-tm is error-free for trivial
979 # code, 0 otherwise.
981 proc check_effective_target_fgnu_tm {} {
982 return [check_no_compiler_messages fgnu_tm object {
983 void foo (void) { }
984 } "-fgnu-tm"]
987 # Return 1 if the target supports mmap, 0 otherwise.
989 proc check_effective_target_mmap {} {
990 return [check_function_available "mmap"]
993 # Return 1 if the target supports dlopen, 0 otherwise.
994 proc check_effective_target_dlopen {} {
995 return [check_no_compiler_messages dlopen executable {
996 #include <dlfcn.h>
997 int main(void) { dlopen ("dummy.so", RTLD_NOW); }
998 } [add_options_for_dlopen ""]]
1001 proc add_options_for_dlopen { flags } {
1002 return "$flags -ldl"
1005 # Return 1 if the target supports clone, 0 otherwise.
1006 proc check_effective_target_clone {} {
1007 return [check_function_available "clone"]
1010 # Return 1 if the target supports setrlimit, 0 otherwise.
1011 proc check_effective_target_setrlimit {} {
1012 # Darwin has non-posix compliant RLIMIT_AS
1013 if { [istarget *-*-darwin*] } {
1014 return 0
1016 return [check_function_available "setrlimit"]
1019 # Return 1 if the target supports gettimeofday, 0 otherwise.
1020 proc check_effective_target_gettimeofday {} {
1021 return [check_function_available "gettimeofday"]
1024 # Return 1 if the target supports swapcontext, 0 otherwise.
1025 proc check_effective_target_swapcontext {} {
1026 return [check_no_compiler_messages swapcontext executable {
1027 #include <ucontext.h>
1028 int main (void)
1030 ucontext_t orig_context,child_context;
1031 if (swapcontext(&child_context, &orig_context) < 0) { }
1036 # Return 1 if compilation with -pthread is error-free for trivial
1037 # code, 0 otherwise.
1039 proc check_effective_target_pthread {} {
1040 return [check_no_compiler_messages pthread object {
1041 void foo (void) { }
1042 } "-pthread"]
1045 # Return 1 if compilation with -gstabs is error-free for trivial
1046 # code, 0 otherwise.
1048 proc check_effective_target_stabs {} {
1049 return [check_no_compiler_messages stabs object {
1050 void foo (void) { }
1051 } "-gstabs"]
1054 # Return 1 if compilation with -mpe-aligned-commons is error-free
1055 # for trivial code, 0 otherwise.
1057 proc check_effective_target_pe_aligned_commons {} {
1058 if { [istarget *-*-cygwin*] || [istarget *-*-mingw*] } {
1059 return [check_no_compiler_messages pe_aligned_commons object {
1060 int foo;
1061 } "-mpe-aligned-commons"]
1063 return 0
1066 # Return 1 if the target supports -static
1067 proc check_effective_target_static {} {
1068 return [check_no_compiler_messages static executable {
1069 int main (void) { return 0; }
1070 } "-static"]
1073 # Return 1 if the target supports -fstack-protector
1074 proc check_effective_target_fstack_protector {} {
1075 return [check_runtime fstack_protector {
1076 #include <string.h>
1077 int main (int argc, char *argv[]) {
1078 char buf[64];
1079 return !strcpy (buf, strrchr (argv[0], '/'));
1081 } "-fstack-protector"]
1084 # Return 1 if the target supports -fstack-check or -fstack-check=$stack_kind
1085 proc check_stack_check_available { stack_kind } {
1086 if [string match "" $stack_kind] then {
1087 set stack_opt "-fstack-check"
1088 } else { set stack_opt "-fstack-check=$stack_kind" }
1090 return [check_no_compiler_messages stack_check_$stack_kind executable {
1091 int main (void) { return 0; }
1092 } "$stack_opt"]
1095 # Return 1 if compilation with -freorder-blocks-and-partition is error-free
1096 # for trivial code, 0 otherwise. As some targets (ARM for example) only
1097 # warn when -fprofile-use is also supplied we test that combination too.
1099 proc check_effective_target_freorder {} {
1100 if { [check_no_compiler_messages freorder object {
1101 void foo (void) { }
1102 } "-freorder-blocks-and-partition"]
1103 && [check_no_compiler_messages fprofile_use_freorder object {
1104 void foo (void) { }
1105 } "-fprofile-use -freorder-blocks-and-partition"] } {
1106 return 1
1108 return 0
1111 # Return 1 if -fpic and -fPIC are supported, as in no warnings or errors
1112 # emitted, 0 otherwise. Whether a shared library can actually be built is
1113 # out of scope for this test.
1115 proc check_effective_target_fpic { } {
1116 # Note that M68K has a multilib that supports -fpic but not
1117 # -fPIC, so we need to check both. We test with a program that
1118 # requires GOT references.
1119 foreach arg {fpic fPIC} {
1120 if [check_no_compiler_messages $arg object {
1121 extern int foo (void); extern int bar;
1122 int baz (void) { return foo () + bar; }
1123 } "-$arg"] {
1124 return 1
1127 return 0
1130 # On AArch64, if -fpic is not supported, then we will fall back to -fPIC
1131 # silently. So, we can't rely on above "check_effective_target_fpic" as it
1132 # assumes compiler will give warning if -fpic not supported. Here we check
1133 # whether binutils supports those new -fpic relocation modifiers, and assume
1134 # -fpic is supported if there is binutils support. GCC configuration will
1135 # enable -fpic for AArch64 in this case.
1137 # "check_effective_target_aarch64_small_fpic" is dedicated for checking small
1138 # memory model -fpic relocation types.
1140 proc check_effective_target_aarch64_small_fpic { } {
1141 if { [istarget aarch64*-*-*] } {
1142 return [check_no_compiler_messages aarch64_small_fpic object {
1143 void foo (void) { asm ("ldr x0, [x2, #:gotpage_lo15:globalsym]"); }
1145 } else {
1146 return 0
1150 # On AArch64, instruction sequence for TLS LE under -mtls-size=32 will utilize
1151 # the relocation modifier "tprel_g0_nc" together with MOVK, it's only supported
1152 # in binutils since 2015-03-04 as PR gas/17843.
1154 # This test directive make sure binutils support all features needed by TLS LE
1155 # under -mtls-size=32 on AArch64.
1157 proc check_effective_target_aarch64_tlsle32 { } {
1158 if { [istarget aarch64*-*-*] } {
1159 return [check_no_compiler_messages aarch64_tlsle32 object {
1160 void foo (void) { asm ("movk x1,#:tprel_g0_nc:t1"); }
1162 } else {
1163 return 0
1167 # Return 1 if -shared is supported, as in no warnings or errors
1168 # emitted, 0 otherwise.
1170 proc check_effective_target_shared { } {
1171 # Note that M68K has a multilib that supports -fpic but not
1172 # -fPIC, so we need to check both. We test with a program that
1173 # requires GOT references.
1174 return [check_no_compiler_messages shared executable {
1175 extern int foo (void); extern int bar;
1176 int baz (void) { return foo () + bar; }
1177 } "-shared -fpic"]
1180 # Return 1 if -pie, -fpie and -fPIE are supported, 0 otherwise.
1182 proc check_effective_target_pie { } {
1183 if { [istarget *-*-darwin\[912\]*]
1184 || [istarget *-*-dragonfly*]
1185 || [istarget *-*-freebsd*]
1186 || [istarget *-*-linux*]
1187 || [istarget *-*-gnu*] } {
1188 return 1;
1190 if { [istarget *-*-solaris2.1\[1-9\]*] } {
1191 # Full PIE support was added in Solaris 11.3, but gcc errors out
1192 # if missing, so check for that.
1193 return [check_no_compiler_messages pie executable {
1194 int main (void) { return 0; }
1195 } "-pie -fpie"]
1197 return 0
1200 # Return true if the target supports -mpaired-single (as used on MIPS).
1202 proc check_effective_target_mpaired_single { } {
1203 return [check_no_compiler_messages mpaired_single object {
1204 void foo (void) { }
1205 } "-mpaired-single"]
1208 # Return true if the target has access to FPU instructions.
1210 proc check_effective_target_hard_float { } {
1211 if { [istarget mips*-*-*] } {
1212 return [check_no_compiler_messages hard_float assembly {
1213 #if (defined __mips_soft_float || defined __mips16)
1214 #error __mips_soft_float || __mips16
1215 #endif
1219 # This proc is actually checking the availabilty of FPU
1220 # support for doubles, so on the RX we must fail if the
1221 # 64-bit double multilib has been selected.
1222 if { [istarget rx-*-*] } {
1223 return 0
1224 # return [check_no_compiler_messages hard_float assembly {
1225 #if defined __RX_64_BIT_DOUBLES__
1226 #error __RX_64_BIT_DOUBLES__
1227 #endif
1228 # }]
1231 # The generic test equates hard_float with "no call for adding doubles".
1232 return [check_no_messages_and_pattern hard_float "!\\(call" rtl-expand {
1233 double a (double b, double c) { return b + c; }
1237 # Return true if the target is a 64-bit MIPS target.
1239 proc check_effective_target_mips64 { } {
1240 return [check_no_compiler_messages mips64 assembly {
1241 #ifndef __mips64
1242 #error !__mips64
1243 #endif
1247 # Return true if the target is a MIPS target that does not produce
1248 # MIPS16 code.
1250 proc check_effective_target_nomips16 { } {
1251 return [check_no_compiler_messages nomips16 object {
1252 #ifndef __mips
1253 #error !__mips
1254 #else
1255 /* A cheap way of testing for -mflip-mips16. */
1256 void foo (void) { asm ("addiu $20,$20,1"); }
1257 void bar (void) { asm ("addiu $20,$20,1"); }
1258 #endif
1262 # Add the options needed for MIPS16 function attributes. At the moment,
1263 # we don't support MIPS16 PIC.
1265 proc add_options_for_mips16_attribute { flags } {
1266 return "$flags -mno-abicalls -fno-pic -DMIPS16=__attribute__((mips16))"
1269 # Return true if we can force a mode that allows MIPS16 code generation.
1270 # We don't support MIPS16 PIC, and only support MIPS16 -mhard-float
1271 # for o32 and o64.
1273 proc check_effective_target_mips16_attribute { } {
1274 return [check_no_compiler_messages mips16_attribute assembly {
1275 #ifdef PIC
1276 #error PIC
1277 #endif
1278 #if defined __mips_hard_float \
1279 && (!defined _ABIO32 || _MIPS_SIM != _ABIO32) \
1280 && (!defined _ABIO64 || _MIPS_SIM != _ABIO64)
1281 #error __mips_hard_float && (!_ABIO32 || !_ABIO64)
1282 #endif
1283 } [add_options_for_mips16_attribute ""]]
1286 # Return 1 if the target supports long double larger than double when
1287 # using the new ABI, 0 otherwise.
1289 proc check_effective_target_mips_newabi_large_long_double { } {
1290 return [check_no_compiler_messages mips_newabi_large_long_double object {
1291 int dummy[sizeof(long double) > sizeof(double) ? 1 : -1];
1292 } "-mabi=64"]
1295 # Return true if the target is a MIPS target that has access
1296 # to the LL and SC instructions.
1298 proc check_effective_target_mips_llsc { } {
1299 if { ![istarget mips*-*-*] } {
1300 return 0
1302 # Assume that these instructions are always implemented for
1303 # non-elf* targets, via emulation if necessary.
1304 if { ![istarget *-*-elf*] } {
1305 return 1
1307 # Otherwise assume LL/SC support for everything but MIPS I.
1308 return [check_no_compiler_messages mips_llsc assembly {
1309 #if __mips == 1
1310 #error __mips == 1
1311 #endif
1315 # Return true if the target is a MIPS target that uses in-place relocations.
1317 proc check_effective_target_mips_rel { } {
1318 if { ![istarget mips*-*-*] } {
1319 return 0
1321 return [check_no_compiler_messages mips_rel object {
1322 #if (defined _ABIN32 && _MIPS_SIM == _ABIN32) \
1323 || (defined _ABI64 && _MIPS_SIM == _ABI64)
1324 #error _ABIN32 && (_ABIN32 || _ABI64)
1325 #endif
1329 # Return true if the target is a MIPS target that uses the EABI.
1331 proc check_effective_target_mips_eabi { } {
1332 if { ![istarget mips*-*-*] } {
1333 return 0
1335 return [check_no_compiler_messages mips_eabi object {
1336 #ifndef __mips_eabi
1337 #error !__mips_eabi
1338 #endif
1342 # Return 1 if the current multilib does not generate PIC by default.
1344 proc check_effective_target_nonpic { } {
1345 return [check_no_compiler_messages nonpic assembly {
1346 #if __PIC__
1347 #error __PIC__
1348 #endif
1352 # Return 1 if the current multilib generates PIE by default.
1354 proc check_effective_target_pie_enabled { } {
1355 return [check_no_compiler_messages pie_enabled assembly {
1356 #ifndef __PIE__
1357 #error unsupported
1358 #endif
1362 # Return 1 if the target generates -fstack-protector by default.
1364 proc check_effective_target_fstack_protector_enabled {} {
1365 return [ check_no_compiler_messages fstack_protector_enabled assembly {
1366 #if !defined(__SSP__) && !defined(__SSP_ALL__) && \
1367 !defined(__SSP_STRONG__) && !defined(__SSP_EXPICIT__)
1368 #error unsupported
1369 #endif
1373 # Return 1 if the target does not use a status wrapper.
1375 proc check_effective_target_unwrapped { } {
1376 if { [target_info needs_status_wrapper] != "" \
1377 && [target_info needs_status_wrapper] != "0" } {
1378 return 0
1380 return 1
1383 # Return true if iconv is supported on the target. In particular IBM1047.
1385 proc check_iconv_available { test_what } {
1386 global libiconv
1388 # If the tool configuration file has not set libiconv, try "-liconv"
1389 if { ![info exists libiconv] } {
1390 set libiconv "-liconv"
1392 set test_what [lindex $test_what 1]
1393 return [check_runtime_nocache $test_what [subst {
1394 #include <iconv.h>
1395 int main (void)
1397 iconv_t cd;
1399 cd = iconv_open ("$test_what", "UTF-8");
1400 if (cd == (iconv_t) -1)
1401 return 1;
1402 return 0;
1404 }] $libiconv]
1407 # Return true if the atomic library is supported on the target.
1408 proc check_effective_target_libatomic_available { } {
1409 return [check_no_compiler_messages libatomic_available executable {
1410 int main (void) { return 0; }
1411 } "-latomic"]
1414 # Return 1 if an ASCII locale is supported on this host, 0 otherwise.
1416 proc check_ascii_locale_available { } {
1417 return 1
1420 # Return true if named sections are supported on this target.
1422 proc check_named_sections_available { } {
1423 return [check_no_compiler_messages named_sections assembly {
1424 int __attribute__ ((section("whatever"))) foo;
1428 # Return true if the "naked" function attribute is supported on this target.
1430 proc check_effective_target_naked_functions { } {
1431 return [check_no_compiler_messages naked_functions assembly {
1432 void f() __attribute__((naked));
1436 # Return 1 if the target supports Fortran real kinds larger than real(8),
1437 # 0 otherwise.
1439 # When the target name changes, replace the cached result.
1441 proc check_effective_target_fortran_large_real { } {
1442 return [check_no_compiler_messages fortran_large_real executable {
1443 ! Fortran
1444 integer,parameter :: k = selected_real_kind (precision (0.0_8) + 1)
1445 real(kind=k) :: x
1446 x = cos (x)
1451 # Return 1 if the target supports Fortran real kind real(16),
1452 # 0 otherwise. Contrary to check_effective_target_fortran_large_real
1453 # this checks for Real(16) only; the other returned real(10) if
1454 # both real(10) and real(16) are available.
1456 # When the target name changes, replace the cached result.
1458 proc check_effective_target_fortran_real_16 { } {
1459 return [check_no_compiler_messages fortran_real_16 executable {
1460 ! Fortran
1461 real(kind=16) :: x
1462 x = cos (x)
1467 # Return 1 if the target supports Fortran real kind 10,
1468 # 0 otherwise. Contrary to check_effective_target_fortran_large_real
1469 # this checks for real(10) only.
1471 # When the target name changes, replace the cached result.
1473 proc check_effective_target_fortran_real_10 { } {
1474 return [check_no_compiler_messages fortran_real_10 executable {
1475 ! Fortran
1476 real(kind=10) :: x
1477 x = cos (x)
1482 # Return 1 if the target supports Fortran's IEEE modules,
1483 # 0 otherwise.
1485 # When the target name changes, replace the cached result.
1487 proc check_effective_target_fortran_ieee { flags } {
1488 return [check_no_compiler_messages fortran_ieee executable {
1489 ! Fortran
1490 use, intrinsic :: ieee_features
1492 } $flags ]
1496 # Return 1 if the target supports SQRT for the largest floating-point
1497 # type. (Some targets lack the libm support for this FP type.)
1498 # On most targets, this check effectively checks either whether sqrtl is
1499 # available or on __float128 systems whether libquadmath is installed,
1500 # which provides sqrtq.
1502 # When the target name changes, replace the cached result.
1504 proc check_effective_target_fortran_largest_fp_has_sqrt { } {
1505 return [check_no_compiler_messages fortran_largest_fp_has_sqrt executable {
1506 ! Fortran
1507 use iso_fortran_env, only: real_kinds
1508 integer,parameter:: maxFP = real_kinds(ubound(real_kinds,dim=1))
1509 real(kind=maxFP), volatile :: x
1510 x = 2.0_maxFP
1511 x = sqrt (x)
1517 # Return 1 if the target supports Fortran integer kinds larger than
1518 # integer(8), 0 otherwise.
1520 # When the target name changes, replace the cached result.
1522 proc check_effective_target_fortran_large_int { } {
1523 return [check_no_compiler_messages fortran_large_int executable {
1524 ! Fortran
1525 integer,parameter :: k = selected_int_kind (range (0_8) + 1)
1526 integer(kind=k) :: i
1531 # Return 1 if the target supports Fortran integer(16), 0 otherwise.
1533 # When the target name changes, replace the cached result.
1535 proc check_effective_target_fortran_integer_16 { } {
1536 return [check_no_compiler_messages fortran_integer_16 executable {
1537 ! Fortran
1538 integer(16) :: i
1543 # Return 1 if we can statically link libgfortran, 0 otherwise.
1545 # When the target name changes, replace the cached result.
1547 proc check_effective_target_static_libgfortran { } {
1548 return [check_no_compiler_messages static_libgfortran executable {
1549 ! Fortran
1550 print *, 'test'
1552 } "-static"]
1555 # Return 1 if we can use the -rdynamic option, 0 otherwise.
1557 proc check_effective_target_rdynamic { } {
1558 return [check_no_compiler_messages rdynamic executable {
1559 int main() { return 0; }
1560 } "-rdynamic"]
1563 proc check_linker_plugin_available { } {
1564 return [check_no_compiler_messages_nocache linker_plugin executable {
1565 int main() { return 0; }
1566 } "-flto -fuse-linker-plugin"]
1569 # Return 1 if the target OS supports running SSE executables, 0
1570 # otherwise. Cache the result.
1572 proc check_sse_os_support_available { } {
1573 return [check_cached_effective_target sse_os_support_available {
1574 # If this is not the right target then we can skip the test.
1575 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
1576 expr 0
1577 } elseif { [istarget i?86-*-solaris2*] } {
1578 # The Solaris 2 kernel doesn't save and restore SSE registers
1579 # before Solaris 9 4/04. Before that, executables die with SIGILL.
1580 check_runtime_nocache sse_os_support_available {
1581 int main ()
1583 asm volatile ("movaps %xmm0,%xmm0");
1584 return 0;
1586 } "-msse"
1587 } else {
1588 expr 1
1593 # Return 1 if the target OS supports running AVX executables, 0
1594 # otherwise. Cache the result.
1596 proc check_avx_os_support_available { } {
1597 return [check_cached_effective_target avx_os_support_available {
1598 # If this is not the right target then we can skip the test.
1599 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
1600 expr 0
1601 } else {
1602 # Check that OS has AVX and SSE saving enabled.
1603 check_runtime_nocache avx_os_support_available {
1604 int main ()
1606 unsigned int eax, edx;
1608 asm ("xgetbv" : "=a" (eax), "=d" (edx) : "c" (0));
1609 return (eax & 0x06) != 0x06;
1611 } ""
1616 # Return 1 if the target OS supports running AVX executables, 0
1617 # otherwise. Cache the result.
1619 proc check_avx512_os_support_available { } {
1620 return [check_cached_effective_target avx512_os_support_available {
1621 # If this is not the right target then we can skip the test.
1622 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
1623 expr 0
1624 } else {
1625 # Check that OS has AVX512, AVX and SSE saving enabled.
1626 check_runtime_nocache avx512_os_support_available {
1627 int main ()
1629 unsigned int eax, edx;
1631 asm ("xgetbv" : "=a" (eax), "=d" (edx) : "c" (0));
1632 return (eax & 0xe6) != 0xe6;
1634 } ""
1639 # Return 1 if the target supports executing SSE instructions, 0
1640 # otherwise. Cache the result.
1642 proc check_sse_hw_available { } {
1643 return [check_cached_effective_target sse_hw_available {
1644 # If this is not the right target then we can skip the test.
1645 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
1646 expr 0
1647 } else {
1648 check_runtime_nocache sse_hw_available {
1649 #include "cpuid.h"
1650 int main ()
1652 unsigned int eax, ebx, ecx, edx;
1653 if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx))
1654 return 1;
1656 return !(edx & bit_SSE);
1658 } ""
1663 # Return 1 if the target supports executing SSE2 instructions, 0
1664 # otherwise. Cache the result.
1666 proc check_sse2_hw_available { } {
1667 return [check_cached_effective_target sse2_hw_available {
1668 # If this is not the right target then we can skip the test.
1669 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
1670 expr 0
1671 } else {
1672 check_runtime_nocache sse2_hw_available {
1673 #include "cpuid.h"
1674 int main ()
1676 unsigned int eax, ebx, ecx, edx;
1677 if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx))
1678 return 1;
1680 return !(edx & bit_SSE2);
1682 } ""
1687 # Return 1 if the target supports executing SSE4 instructions, 0
1688 # otherwise. Cache the result.
1690 proc check_sse4_hw_available { } {
1691 return [check_cached_effective_target sse4_hw_available {
1692 # If this is not the right target then we can skip the test.
1693 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
1694 expr 0
1695 } else {
1696 check_runtime_nocache sse4_hw_available {
1697 #include "cpuid.h"
1698 int main ()
1700 unsigned int eax, ebx, ecx, edx;
1701 if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx))
1702 return 1;
1704 return !(ecx & bit_SSE4_2);
1706 } ""
1711 # Return 1 if the target supports executing AVX instructions, 0
1712 # otherwise. Cache the result.
1714 proc check_avx_hw_available { } {
1715 return [check_cached_effective_target avx_hw_available {
1716 # If this is not the right target then we can skip the test.
1717 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
1718 expr 0
1719 } else {
1720 check_runtime_nocache avx_hw_available {
1721 #include "cpuid.h"
1722 int main ()
1724 unsigned int eax, ebx, ecx, edx;
1725 if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx))
1726 return 1;
1728 return ((ecx & (bit_AVX | bit_OSXSAVE))
1729 != (bit_AVX | bit_OSXSAVE));
1731 } ""
1736 # Return 1 if the target supports executing AVX2 instructions, 0
1737 # otherwise. Cache the result.
1739 proc check_avx2_hw_available { } {
1740 return [check_cached_effective_target avx2_hw_available {
1741 # If this is not the right target then we can skip the test.
1742 if { !([istarget x86_64-*-*] || [istarget i?86-*-*]) } {
1743 expr 0
1744 } else {
1745 check_runtime_nocache avx2_hw_available {
1746 #include <stddef.h>
1747 #include "cpuid.h"
1748 int main ()
1750 unsigned int eax, ebx, ecx, edx;
1752 if (__get_cpuid_max (0, NULL) < 7)
1753 return 1;
1755 __cpuid (1, eax, ebx, ecx, edx);
1757 if (!(ecx & bit_OSXSAVE))
1758 return 1;
1760 __cpuid_count (7, 0, eax, ebx, ecx, edx);
1762 return !(ebx & bit_AVX2);
1764 } ""
1769 # Return 1 if the target supports executing AVX512 foundation instructions, 0
1770 # otherwise. Cache the result.
1772 proc check_avx512f_hw_available { } {
1773 return [check_cached_effective_target avx512f_hw_available {
1774 # If this is not the right target then we can skip the test.
1775 if { !([istarget x86_64-*-*] || [istarget i?86-*-*]) } {
1776 expr 0
1777 } else {
1778 check_runtime_nocache avx512f_hw_available {
1779 #include <stddef.h>
1780 #include "cpuid.h"
1781 int main ()
1783 unsigned int eax, ebx, ecx, edx;
1785 if (__get_cpuid_max (0, NULL) < 7)
1786 return 1;
1788 __cpuid (1, eax, ebx, ecx, edx);
1790 if (!(ecx & bit_OSXSAVE))
1791 return 1;
1793 __cpuid_count (7, 0, eax, ebx, ecx, edx);
1795 return !(ebx & bit_AVX512F);
1797 } ""
1802 # Return 1 if the target supports running SSE executables, 0 otherwise.
1804 proc check_effective_target_sse_runtime { } {
1805 if { [check_effective_target_sse]
1806 && [check_sse_hw_available]
1807 && [check_sse_os_support_available] } {
1808 return 1
1810 return 0
1813 # Return 1 if the target supports running SSE2 executables, 0 otherwise.
1815 proc check_effective_target_sse2_runtime { } {
1816 if { [check_effective_target_sse2]
1817 && [check_sse2_hw_available]
1818 && [check_sse_os_support_available] } {
1819 return 1
1821 return 0
1824 # Return 1 if the target supports running SSE4 executables, 0 otherwise.
1826 proc check_effective_target_sse4_runtime { } {
1827 if { [check_effective_target_sse4]
1828 && [check_sse4_hw_available]
1829 && [check_sse_os_support_available] } {
1830 return 1
1832 return 0
1835 # Return 1 if the target supports running AVX executables, 0 otherwise.
1837 proc check_effective_target_avx_runtime { } {
1838 if { [check_effective_target_avx]
1839 && [check_avx_hw_available]
1840 && [check_avx_os_support_available] } {
1841 return 1
1843 return 0
1846 # Return 1 if the target supports running AVX2 executables, 0 otherwise.
1848 proc check_effective_target_avx2_runtime { } {
1849 if { [check_effective_target_avx2]
1850 && [check_avx2_hw_available]
1851 && [check_avx_os_support_available] } {
1852 return 1
1854 return 0
1857 # Return 1 if the target supports running AVX512f executables, 0 otherwise.
1859 proc check_effective_target_avx512f_runtime { } {
1860 if { [check_effective_target_avx512f]
1861 && [check_avx512f_hw_available]
1862 && [check_avx512_os_support_available] } {
1863 return 1
1865 return 0
1868 # Return 1 if bmi2 instructions can be compiled.
1869 proc check_effective_target_bmi2 { } {
1870 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
1871 return 0
1873 return [check_no_compiler_messages bmi2 object {
1874 unsigned int
1875 _bzhi_u32 (unsigned int __X, unsigned int __Y)
1877 return __builtin_ia32_bzhi_si (__X, __Y);
1879 } "-mbmi2" ]
1882 # Return 1 if the target supports executing MIPS Paired-Single instructions,
1883 # 0 otherwise. Cache the result.
1885 proc check_mpaired_single_hw_available { } {
1886 return [check_cached_effective_target mpaired_single_hw_available {
1887 # If this is not the right target then we can skip the test.
1888 if { !([istarget mips*-*-*]) } {
1889 expr 0
1890 } else {
1891 check_runtime_nocache mpaired_single_hw_available {
1892 int main()
1894 asm volatile ("pll.ps $f2,$f4,$f6");
1895 return 0;
1897 } ""
1902 # Return 1 if the target supports executing Loongson vector instructions,
1903 # 0 otherwise. Cache the result.
1905 proc check_mips_loongson_hw_available { } {
1906 return [check_cached_effective_target mips_loongson_hw_available {
1907 # If this is not the right target then we can skip the test.
1908 if { !([istarget mips*-*-*]) } {
1909 expr 0
1910 } else {
1911 check_runtime_nocache mips_loongson_hw_available {
1912 #include <loongson.h>
1913 int main()
1915 asm volatile ("paddw $f2,$f4,$f6");
1916 return 0;
1918 } ""
1923 # Return 1 if the target supports executing MIPS MSA instructions, 0
1924 # otherwise. Cache the result.
1926 proc check_mips_msa_hw_available { } {
1927 return [check_cached_effective_target mips_msa_hw_available {
1928 # If this is not the right target then we can skip the test.
1929 if { !([istarget mips*-*-*]) } {
1930 expr 0
1931 } else {
1932 check_runtime_nocache mips_msa_hw_available {
1933 #if !defined(__mips_msa)
1934 #error "MSA NOT AVAIL"
1935 #else
1936 #if !(((__mips == 64) || (__mips == 32)) && (__mips_isa_rev >= 2))
1937 #error "MSA NOT AVAIL FOR ISA REV < 2"
1938 #endif
1939 #if !defined(__mips_hard_float)
1940 #error "MSA HARD_FLOAT REQUIRED"
1941 #endif
1942 #if __mips_fpr != 64
1943 #error "MSA 64-bit FPR REQUIRED"
1944 #endif
1945 #include <msa.h>
1947 int main()
1949 v8i16 v = __builtin_msa_ldi_h (0);
1950 v[0] = 0;
1951 return v[0];
1953 #endif
1954 } "-mmsa"
1959 # Return 1 if the target supports running MIPS Paired-Single
1960 # executables, 0 otherwise.
1962 proc check_effective_target_mpaired_single_runtime { } {
1963 if { [check_effective_target_mpaired_single]
1964 && [check_mpaired_single_hw_available] } {
1965 return 1
1967 return 0
1970 # Return 1 if the target supports running Loongson executables, 0 otherwise.
1972 proc check_effective_target_mips_loongson_runtime { } {
1973 if { [check_effective_target_mips_loongson]
1974 && [check_mips_loongson_hw_available] } {
1975 return 1
1977 return 0
1980 # Return 1 if the target supports running MIPS MSA executables, 0 otherwise.
1982 proc check_effective_target_mips_msa_runtime { } {
1983 if { [check_effective_target_mips_msa]
1984 && [check_mips_msa_hw_available] } {
1985 return 1
1987 return 0
1990 # Return 1 if we are compiling for 64-bit PowerPC but we do not use direct
1991 # move instructions for moves from GPR to FPR.
1993 proc check_effective_target_powerpc64_no_dm { } {
1994 # The "mulld" checks if we are generating PowerPC64 code. The "lfd"
1995 # checks if we do not use direct moves, but use the old-fashioned
1996 # slower move-via-the-stack.
1997 return [check_no_messages_and_pattern powerpc64_no_dm \
1998 {\mmulld\M.*\mlfd} assembly {
1999 double f(long long x) { return x*x; }
2000 } {-O2}]
2003 # Return 1 if the target supports the __builtin_cpu_supports built-in,
2004 # including having a new enough library to support the test. Cache the result.
2005 # Require at least a power7 to run on.
2007 proc check_ppc_cpu_supports_hw_available { } {
2008 return [check_cached_effective_target ppc_cpu_supports_hw_available {
2009 # Some simulators are known to not support VSX/power8 instructions.
2010 # For now, disable on Darwin
2011 if { [istarget powerpc-*-eabi]
2012 || [istarget powerpc*-*-eabispe]
2013 || [istarget *-*-darwin*]} {
2014 expr 0
2015 } else {
2016 set options "-mvsx"
2017 check_runtime_nocache ppc_cpu_supports_hw_available {
2018 int main()
2020 #ifdef __MACH__
2021 asm volatile ("xxlor vs0,vs0,vs0");
2022 #else
2023 asm volatile ("xxlor 0,0,0");
2024 #endif
2025 if (!__builtin_cpu_supports ("vsx"))
2026 return 1;
2027 return 0;
2029 } $options
2034 # Return 1 if the target supports executing 750CL paired-single instructions, 0
2035 # otherwise. Cache the result.
2037 proc check_750cl_hw_available { } {
2038 return [check_cached_effective_target 750cl_hw_available {
2039 # If this is not the right target then we can skip the test.
2040 if { ![istarget powerpc-*paired*] } {
2041 expr 0
2042 } else {
2043 check_runtime_nocache 750cl_hw_available {
2044 int main()
2046 #ifdef __MACH__
2047 asm volatile ("ps_mul v0,v0,v0");
2048 #else
2049 asm volatile ("ps_mul 0,0,0");
2050 #endif
2051 return 0;
2053 } "-mpaired"
2058 # Return 1 if the target supports executing power8 vector instructions, 0
2059 # otherwise. Cache the result.
2061 proc check_p8vector_hw_available { } {
2062 return [check_cached_effective_target p8vector_hw_available {
2063 # Some simulators are known to not support VSX/power8 instructions.
2064 # For now, disable on Darwin
2065 if { [istarget powerpc-*-eabi]
2066 || [istarget powerpc*-*-eabispe]
2067 || [istarget *-*-darwin*]} {
2068 expr 0
2069 } else {
2070 set options "-mpower8-vector"
2071 check_runtime_nocache p8vector_hw_available {
2072 int main()
2074 #ifdef __MACH__
2075 asm volatile ("xxlorc vs0,vs0,vs0");
2076 #else
2077 asm volatile ("xxlorc 0,0,0");
2078 #endif
2079 return 0;
2081 } $options
2086 # Return 1 if the target supports executing power9 vector instructions, 0
2087 # otherwise. Cache the result.
2089 proc check_p9vector_hw_available { } {
2090 return [check_cached_effective_target p9vector_hw_available {
2091 # Some simulators are known to not support VSX/power8/power9
2092 # instructions. For now, disable on Darwin.
2093 if { [istarget powerpc-*-eabi]
2094 || [istarget powerpc*-*-eabispe]
2095 || [istarget *-*-darwin*]} {
2096 expr 0
2097 } else {
2098 set options "-mpower9-vector"
2099 check_runtime_nocache p9vector_hw_available {
2100 int main()
2102 long e = -1;
2103 vector double v = (vector double) { 0.0, 0.0 };
2104 asm ("xsxexpdp %0,%1" : "+r" (e) : "wa" (v));
2105 return e;
2107 } $options
2112 # Return 1 if the target supports executing power9 modulo instructions, 0
2113 # otherwise. Cache the result.
2115 proc check_p9modulo_hw_available { } {
2116 return [check_cached_effective_target p9modulo_hw_available {
2117 # Some simulators are known to not support VSX/power8/power9
2118 # instructions. For now, disable on Darwin.
2119 if { [istarget powerpc-*-eabi]
2120 || [istarget powerpc*-*-eabispe]
2121 || [istarget *-*-darwin*]} {
2122 expr 0
2123 } else {
2124 set options "-mmodulo"
2125 check_runtime_nocache p9modulo_hw_available {
2126 int main()
2128 int i = 5, j = 3, r = -1;
2129 asm ("modsw %0,%1,%2" : "+r" (r) : "r" (i), "r" (j));
2130 return (r == 2);
2132 } $options
2137 # Return 1 if the target supports executing __float128 on PowerPC via software
2138 # emulation, 0 otherwise. Cache the result.
2140 proc check_ppc_float128_sw_available { } {
2141 return [check_cached_effective_target ppc_float128_sw_available {
2142 # Some simulators are known to not support VSX/power8/power9
2143 # instructions. For now, disable on Darwin.
2144 if { [istarget powerpc-*-eabi]
2145 || [istarget powerpc*-*-eabispe]
2146 || [istarget *-*-darwin*]} {
2147 expr 0
2148 } else {
2149 set options "-mfloat128 -mvsx"
2150 check_runtime_nocache ppc_float128_sw_available {
2151 volatile __float128 x = 1.0q;
2152 volatile __float128 y = 2.0q;
2153 int main()
2155 __float128 z = x + y;
2156 return (z != 3.0q);
2158 } $options
2163 # Return 1 if the target supports executing __float128 on PowerPC via power9
2164 # hardware instructions, 0 otherwise. Cache the result.
2166 proc check_ppc_float128_hw_available { } {
2167 return [check_cached_effective_target ppc_float128_hw_available {
2168 # Some simulators are known to not support VSX/power8/power9
2169 # instructions. For now, disable on Darwin.
2170 if { [istarget powerpc-*-eabi]
2171 || [istarget powerpc*-*-eabispe]
2172 || [istarget *-*-darwin*]} {
2173 expr 0
2174 } else {
2175 set options "-mfloat128 -mvsx -mfloat128-hardware -mpower9-vector"
2176 check_runtime_nocache ppc_float128_hw_available {
2177 volatile __float128 x = 1.0q;
2178 volatile __float128 y = 2.0q;
2179 int main()
2181 __float128 z = x + y;
2182 __float128 w = -1.0q;
2184 __asm__ ("xsaddqp %0,%1,%2" : "+v" (w) : "v" (x), "v" (y));
2185 return ((z != 3.0q) || (z != w);
2187 } $options
2192 # Return 1 if the target supports executing VSX instructions, 0
2193 # otherwise. Cache the result.
2195 proc check_vsx_hw_available { } {
2196 return [check_cached_effective_target vsx_hw_available {
2197 # Some simulators are known to not support VSX instructions.
2198 # For now, disable on Darwin
2199 if { [istarget powerpc-*-eabi]
2200 || [istarget powerpc*-*-eabispe]
2201 || [istarget *-*-darwin*]} {
2202 expr 0
2203 } else {
2204 set options "-mvsx"
2205 check_runtime_nocache vsx_hw_available {
2206 int main()
2208 #ifdef __MACH__
2209 asm volatile ("xxlor vs0,vs0,vs0");
2210 #else
2211 asm volatile ("xxlor 0,0,0");
2212 #endif
2213 return 0;
2215 } $options
2220 # Return 1 if the target supports executing AltiVec instructions, 0
2221 # otherwise. Cache the result.
2223 proc check_vmx_hw_available { } {
2224 return [check_cached_effective_target vmx_hw_available {
2225 # Some simulators are known to not support VMX instructions.
2226 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2227 expr 0
2228 } else {
2229 # Most targets don't require special flags for this test case, but
2230 # Darwin does. Just to be sure, make sure VSX is not enabled for
2231 # the altivec tests.
2232 if { [istarget *-*-darwin*]
2233 || [istarget *-*-aix*] } {
2234 set options "-maltivec -mno-vsx"
2235 } else {
2236 set options "-mno-vsx"
2238 check_runtime_nocache vmx_hw_available {
2239 int main()
2241 #ifdef __MACH__
2242 asm volatile ("vor v0,v0,v0");
2243 #else
2244 asm volatile ("vor 0,0,0");
2245 #endif
2246 return 0;
2248 } $options
2253 proc check_ppc_recip_hw_available { } {
2254 return [check_cached_effective_target ppc_recip_hw_available {
2255 # Some simulators may not support FRE/FRES/FRSQRTE/FRSQRTES
2256 # For now, disable on Darwin
2257 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] || [istarget *-*-darwin*]} {
2258 expr 0
2259 } else {
2260 set options "-mpowerpc-gfxopt -mpowerpc-gpopt -mpopcntb"
2261 check_runtime_nocache ppc_recip_hw_available {
2262 volatile double d_recip, d_rsqrt, d_four = 4.0;
2263 volatile float f_recip, f_rsqrt, f_four = 4.0f;
2264 int main()
2266 asm volatile ("fres %0,%1" : "=f" (f_recip) : "f" (f_four));
2267 asm volatile ("fre %0,%1" : "=d" (d_recip) : "d" (d_four));
2268 asm volatile ("frsqrtes %0,%1" : "=f" (f_rsqrt) : "f" (f_four));
2269 asm volatile ("frsqrte %0,%1" : "=f" (d_rsqrt) : "d" (d_four));
2270 return 0;
2272 } $options
2277 # Return 1 if the target supports executing AltiVec and Cell PPU
2278 # instructions, 0 otherwise. Cache the result.
2280 proc check_effective_target_cell_hw { } {
2281 return [check_cached_effective_target cell_hw_available {
2282 # Some simulators are known to not support VMX and PPU instructions.
2283 if { [istarget powerpc-*-eabi*] } {
2284 expr 0
2285 } else {
2286 # Most targets don't require special flags for this test
2287 # case, but Darwin and AIX do.
2288 if { [istarget *-*-darwin*]
2289 || [istarget *-*-aix*] } {
2290 set options "-maltivec -mcpu=cell"
2291 } else {
2292 set options "-mcpu=cell"
2294 check_runtime_nocache cell_hw_available {
2295 int main()
2297 #ifdef __MACH__
2298 asm volatile ("vor v0,v0,v0");
2299 asm volatile ("lvlx v0,r0,r0");
2300 #else
2301 asm volatile ("vor 0,0,0");
2302 asm volatile ("lvlx 0,0,0");
2303 #endif
2304 return 0;
2306 } $options
2311 # Return 1 if the target supports executing 64-bit instructions, 0
2312 # otherwise. Cache the result.
2314 proc check_effective_target_powerpc64 { } {
2315 global powerpc64_available_saved
2316 global tool
2318 if [info exists powerpc64_available_saved] {
2319 verbose "check_effective_target_powerpc64 returning saved $powerpc64_available_saved" 2
2320 } else {
2321 set powerpc64_available_saved 0
2323 # Some simulators are known to not support powerpc64 instructions.
2324 if { [istarget powerpc-*-eabi*] || [istarget powerpc-ibm-aix*] } {
2325 verbose "check_effective_target_powerpc64 returning 0" 2
2326 return $powerpc64_available_saved
2329 # Set up, compile, and execute a test program containing a 64-bit
2330 # instruction. Include the current process ID in the file
2331 # names to prevent conflicts with invocations for multiple
2332 # testsuites.
2333 set src ppc[pid].c
2334 set exe ppc[pid].x
2336 set f [open $src "w"]
2337 puts $f "int main() {"
2338 puts $f "#ifdef __MACH__"
2339 puts $f " asm volatile (\"extsw r0,r0\");"
2340 puts $f "#else"
2341 puts $f " asm volatile (\"extsw 0,0\");"
2342 puts $f "#endif"
2343 puts $f " return 0; }"
2344 close $f
2346 set opts "additional_flags=-mcpu=G5"
2348 verbose "check_effective_target_powerpc64 compiling testfile $src" 2
2349 set lines [${tool}_target_compile $src $exe executable "$opts"]
2350 file delete $src
2352 if [string match "" $lines] then {
2353 # No error message, compilation succeeded.
2354 set result [${tool}_load "./$exe" "" ""]
2355 set status [lindex $result 0]
2356 remote_file build delete $exe
2357 verbose "check_effective_target_powerpc64 testfile status is <$status>" 2
2359 if { $status == "pass" } then {
2360 set powerpc64_available_saved 1
2362 } else {
2363 verbose "check_effective_target_powerpc64 testfile compilation failed" 2
2367 return $powerpc64_available_saved
2370 # GCC 3.4.0 for powerpc64-*-linux* included an ABI fix for passing
2371 # complex float arguments. This affects gfortran tests that call cabsf
2372 # in libm built by an earlier compiler. Return 0 if libm uses the same
2373 # argument passing as the compiler under test, 1 otherwise.
2375 proc check_effective_target_broken_cplxf_arg { } {
2376 # Skip the work for targets known not to be affected.
2377 if { ![istarget powerpc*-*-linux*] || ![is-effective-target lp64] } {
2378 return 0
2381 return [check_cached_effective_target broken_cplxf_arg {
2382 check_runtime_nocache broken_cplxf_arg {
2383 #include <complex.h>
2384 extern void abort (void);
2385 float fabsf (float);
2386 float cabsf (_Complex float);
2387 int main ()
2389 _Complex float cf;
2390 float f;
2391 cf = 3 + 4.0fi;
2392 f = cabsf (cf);
2393 if (fabsf (f - 5.0) > 0.0001)
2394 /* Yes, it's broken. */
2395 return 0;
2396 /* All fine, not broken. */
2397 return 1;
2399 } "-lm"
2403 # Return 1 is this is a TI C6X target supporting C67X instructions
2404 proc check_effective_target_ti_c67x { } {
2405 return [check_no_compiler_messages ti_c67x assembly {
2406 #if !defined(_TMS320C6700)
2407 #error !_TMS320C6700
2408 #endif
2412 # Return 1 is this is a TI C6X target supporting C64X+ instructions
2413 proc check_effective_target_ti_c64xp { } {
2414 return [check_no_compiler_messages ti_c64xp assembly {
2415 #if !defined(_TMS320C6400_PLUS)
2416 #error !_TMS320C6400_PLUS
2417 #endif
2422 proc check_alpha_max_hw_available { } {
2423 return [check_runtime alpha_max_hw_available {
2424 int main() { return __builtin_alpha_amask(1<<8) != 0; }
2428 # Returns true iff the FUNCTION is available on the target system.
2429 # (This is essentially a Tcl implementation of Autoconf's
2430 # AC_CHECK_FUNC.)
2432 proc check_function_available { function } {
2433 return [check_no_compiler_messages ${function}_available \
2434 executable [subst {
2435 #ifdef __cplusplus
2436 extern "C"
2437 #endif
2438 char $function ();
2439 int main () { $function (); }
2440 }] "-fno-builtin" ]
2443 # Returns true iff "fork" is available on the target system.
2445 proc check_fork_available {} {
2446 return [check_function_available "fork"]
2449 # Returns true iff "mkfifo" is available on the target system.
2451 proc check_mkfifo_available {} {
2452 if { [istarget *-*-cygwin*] } {
2453 # Cygwin has mkfifo, but support is incomplete.
2454 return 0
2457 return [check_function_available "mkfifo"]
2460 # Returns true iff "__cxa_atexit" is used on the target system.
2462 proc check_cxa_atexit_available { } {
2463 return [check_cached_effective_target cxa_atexit_available {
2464 if { [istarget hppa*-*-hpux10*] } {
2465 # HP-UX 10 doesn't have __cxa_atexit but subsequent test passes.
2466 expr 0
2467 } elseif { [istarget *-*-vxworks] } {
2468 # vxworks doesn't have __cxa_atexit but subsequent test passes.
2469 expr 0
2470 } else {
2471 check_runtime_nocache cxa_atexit_available {
2472 // C++
2473 #include <stdlib.h>
2474 static unsigned int count;
2475 struct X
2477 X() { count = 1; }
2478 ~X()
2480 if (count != 3)
2481 exit(1);
2482 count = 4;
2485 void f()
2487 static X x;
2489 struct Y
2491 Y() { f(); count = 2; }
2492 ~Y()
2494 if (count != 2)
2495 exit(1);
2496 count = 3;
2499 Y y;
2500 int main() { return 0; }
2506 proc check_effective_target_objc2 { } {
2507 return [check_no_compiler_messages objc2 object {
2508 #ifdef __OBJC2__
2509 int dummy[1];
2510 #else
2511 #error !__OBJC2__
2512 #endif
2516 proc check_effective_target_next_runtime { } {
2517 return [check_no_compiler_messages objc2 object {
2518 #ifdef __NEXT_RUNTIME__
2519 int dummy[1];
2520 #else
2521 #error !__NEXT_RUNTIME__
2522 #endif
2526 # Return 1 if we're generating 32-bit code using default options, 0
2527 # otherwise.
2529 proc check_effective_target_ilp32 { } {
2530 return [check_no_compiler_messages ilp32 object {
2531 int dummy[sizeof (int) == 4
2532 && sizeof (void *) == 4
2533 && sizeof (long) == 4 ? 1 : -1];
2537 # Return 1 if we're generating ia32 code using default options, 0
2538 # otherwise.
2540 proc check_effective_target_ia32 { } {
2541 return [check_no_compiler_messages ia32 object {
2542 int dummy[sizeof (int) == 4
2543 && sizeof (void *) == 4
2544 && sizeof (long) == 4 ? 1 : -1] = { __i386__ };
2548 # Return 1 if we're generating x32 code using default options, 0
2549 # otherwise.
2551 proc check_effective_target_x32 { } {
2552 return [check_no_compiler_messages x32 object {
2553 int dummy[sizeof (int) == 4
2554 && sizeof (void *) == 4
2555 && sizeof (long) == 4 ? 1 : -1] = { __x86_64__ };
2559 # Return 1 if we're generating 32-bit integers using default
2560 # options, 0 otherwise.
2562 proc check_effective_target_int32 { } {
2563 return [check_no_compiler_messages int32 object {
2564 int dummy[sizeof (int) == 4 ? 1 : -1];
2568 # Return 1 if we're generating 32-bit or larger integers using default
2569 # options, 0 otherwise.
2571 proc check_effective_target_int32plus { } {
2572 return [check_no_compiler_messages int32plus object {
2573 int dummy[sizeof (int) >= 4 ? 1 : -1];
2577 # Return 1 if we're generating 32-bit or larger pointers using default
2578 # options, 0 otherwise.
2580 proc check_effective_target_ptr32plus { } {
2581 # The msp430 has 16-bit or 20-bit pointers. The 20-bit pointer is stored
2582 # in a 32-bit slot when in memory, so sizeof(void *) returns 4, but it
2583 # cannot really hold a 32-bit address, so we always return false here.
2584 if { [istarget msp430-*-*] } {
2585 return 0
2588 return [check_no_compiler_messages ptr32plus object {
2589 int dummy[sizeof (void *) >= 4 ? 1 : -1];
2593 # Return 1 if we support 32-bit or larger array and structure sizes
2594 # using default options, 0 otherwise. Avoid false positive on
2595 # targets with 20 or 24 bit address spaces.
2597 proc check_effective_target_size32plus { } {
2598 return [check_no_compiler_messages size32plus object {
2599 char dummy[16777217L];
2603 # Returns 1 if we're generating 16-bit or smaller integers with the
2604 # default options, 0 otherwise.
2606 proc check_effective_target_int16 { } {
2607 return [check_no_compiler_messages int16 object {
2608 int dummy[sizeof (int) < 4 ? 1 : -1];
2612 # Return 1 if we're generating 64-bit code using default options, 0
2613 # otherwise.
2615 proc check_effective_target_lp64 { } {
2616 return [check_no_compiler_messages lp64 object {
2617 int dummy[sizeof (int) == 4
2618 && sizeof (void *) == 8
2619 && sizeof (long) == 8 ? 1 : -1];
2623 # Return 1 if we're generating 64-bit code using default llp64 options,
2624 # 0 otherwise.
2626 proc check_effective_target_llp64 { } {
2627 return [check_no_compiler_messages llp64 object {
2628 int dummy[sizeof (int) == 4
2629 && sizeof (void *) == 8
2630 && sizeof (long long) == 8
2631 && sizeof (long) == 4 ? 1 : -1];
2635 # Return 1 if long and int have different sizes,
2636 # 0 otherwise.
2638 proc check_effective_target_long_neq_int { } {
2639 return [check_no_compiler_messages long_ne_int object {
2640 int dummy[sizeof (int) != sizeof (long) ? 1 : -1];
2644 # Return 1 if the target supports long double larger than double,
2645 # 0 otherwise.
2647 proc check_effective_target_large_long_double { } {
2648 return [check_no_compiler_messages large_long_double object {
2649 int dummy[sizeof(long double) > sizeof(double) ? 1 : -1];
2653 # Return 1 if the target supports double larger than float,
2654 # 0 otherwise.
2656 proc check_effective_target_large_double { } {
2657 return [check_no_compiler_messages large_double object {
2658 int dummy[sizeof(double) > sizeof(float) ? 1 : -1];
2662 # Return 1 if the target supports long double of 128 bits,
2663 # 0 otherwise.
2665 proc check_effective_target_longdouble128 { } {
2666 return [check_no_compiler_messages longdouble128 object {
2667 int dummy[sizeof(long double) == 16 ? 1 : -1];
2671 # Return 1 if the target supports double of 64 bits,
2672 # 0 otherwise.
2674 proc check_effective_target_double64 { } {
2675 return [check_no_compiler_messages double64 object {
2676 int dummy[sizeof(double) == 8 ? 1 : -1];
2680 # Return 1 if the target supports double of at least 64 bits,
2681 # 0 otherwise.
2683 proc check_effective_target_double64plus { } {
2684 return [check_no_compiler_messages double64plus object {
2685 int dummy[sizeof(double) >= 8 ? 1 : -1];
2689 # Return 1 if the target supports 'w' suffix on floating constant
2690 # 0 otherwise.
2692 proc check_effective_target_has_w_floating_suffix { } {
2693 set opts ""
2694 if [check_effective_target_c++] {
2695 append opts "-std=gnu++03"
2697 return [check_no_compiler_messages w_fp_suffix object {
2698 float dummy = 1.0w;
2699 } "$opts"]
2702 # Return 1 if the target supports 'q' suffix on floating constant
2703 # 0 otherwise.
2705 proc check_effective_target_has_q_floating_suffix { } {
2706 set opts ""
2707 if [check_effective_target_c++] {
2708 append opts "-std=gnu++03"
2710 return [check_no_compiler_messages q_fp_suffix object {
2711 float dummy = 1.0q;
2712 } "$opts"]
2715 # Return 1 if the target supports the _FloatN / _FloatNx type
2716 # indicated in the function name, 0 otherwise.
2718 proc check_effective_target_float16 {} {
2719 return [check_no_compiler_messages_nocache float16 object {
2720 _Float16 x;
2721 } [add_options_for_float16 ""]]
2724 proc check_effective_target_float32 {} {
2725 return [check_no_compiler_messages_nocache float32 object {
2726 _Float32 x;
2727 } [add_options_for_float32 ""]]
2730 proc check_effective_target_float64 {} {
2731 return [check_no_compiler_messages_nocache float64 object {
2732 _Float64 x;
2733 } [add_options_for_float64 ""]]
2736 proc check_effective_target_float128 {} {
2737 return [check_no_compiler_messages_nocache float128 object {
2738 _Float128 x;
2739 } [add_options_for_float128 ""]]
2742 proc check_effective_target_float32x {} {
2743 return [check_no_compiler_messages_nocache float32x object {
2744 _Float32x x;
2745 } [add_options_for_float32x ""]]
2748 proc check_effective_target_float64x {} {
2749 return [check_no_compiler_messages_nocache float64x object {
2750 _Float64x x;
2751 } [add_options_for_float64x ""]]
2754 proc check_effective_target_float128x {} {
2755 return [check_no_compiler_messages_nocache float128x object {
2756 _Float128x x;
2757 } [add_options_for_float128x ""]]
2760 # Likewise, but runtime support for any special options used as well
2761 # as compile-time support is required.
2763 proc check_effective_target_float16_runtime {} {
2764 return [check_effective_target_float16]
2767 proc check_effective_target_float32_runtime {} {
2768 return [check_effective_target_float32]
2771 proc check_effective_target_float64_runtime {} {
2772 return [check_effective_target_float64]
2775 proc check_effective_target_float128_runtime {} {
2776 if { ![check_effective_target_float128] } {
2777 return 0
2779 if { [istarget powerpc*-*-*] } {
2780 return [check_effective_target_base_quadfloat_support]
2782 return 1
2785 proc check_effective_target_float32x_runtime {} {
2786 return [check_effective_target_float32x]
2789 proc check_effective_target_float64x_runtime {} {
2790 if { ![check_effective_target_float64x] } {
2791 return 0
2793 if { [istarget powerpc*-*-*] } {
2794 return [check_effective_target_base_quadfloat_support]
2796 return 1
2799 proc check_effective_target_float128x_runtime {} {
2800 return [check_effective_target_float128x]
2803 # Return 1 if the target hardware supports any options added for
2804 # _FloatN and _FloatNx types, 0 otherwise.
2806 proc check_effective_target_floatn_nx_runtime {} {
2807 if { [istarget powerpc*-*-aix*] } {
2808 return 0
2810 if { [istarget powerpc*-*-*] } {
2811 return [check_effective_target_base_quadfloat_support]
2813 return 1
2816 # Add options needed to use the _FloatN / _FloatNx type indicated in
2817 # the function name.
2819 proc add_options_for_float16 { flags } {
2820 if { [istarget arm*-*-*] } {
2821 return "$flags -mfp16-format=ieee"
2823 return "$flags"
2826 proc add_options_for_float32 { flags } {
2827 return "$flags"
2830 proc add_options_for_float64 { flags } {
2831 return "$flags"
2834 proc add_options_for_float128 { flags } {
2835 return [add_options_for___float128 "$flags"]
2838 proc add_options_for_float32x { flags } {
2839 return "$flags"
2842 proc add_options_for_float64x { flags } {
2843 return [add_options_for___float128 "$flags"]
2846 proc add_options_for_float128x { flags } {
2847 return "$flags"
2850 # Return 1 if the target supports __float128,
2851 # 0 otherwise.
2853 proc check_effective_target___float128 { } {
2854 if { [istarget powerpc*-*-*] } {
2855 return [check_ppc_float128_sw_available]
2857 if { [istarget ia64-*-*]
2858 || [istarget i?86-*-*] || [istarget x86_64-*-*] } {
2859 return 1
2861 return 0
2864 proc add_options_for___float128 { flags } {
2865 if { [istarget powerpc*-*-*] } {
2866 return "$flags -mfloat128 -mvsx"
2868 return "$flags"
2871 # Return 1 if the target supports any special run-time requirements
2872 # for __float128 or _Float128,
2873 # 0 otherwise.
2875 proc check_effective_target_base_quadfloat_support { } {
2876 if { [istarget powerpc*-*-*] } {
2877 return [check_vsx_hw_available]
2879 return 1
2882 # Return 1 if the target supports compiling fixed-point,
2883 # 0 otherwise.
2885 proc check_effective_target_fixed_point { } {
2886 return [check_no_compiler_messages fixed_point object {
2887 _Sat _Fract x; _Sat _Accum y;
2891 # Return 1 if the target supports compiling decimal floating point,
2892 # 0 otherwise.
2894 proc check_effective_target_dfp_nocache { } {
2895 verbose "check_effective_target_dfp_nocache: compiling source" 2
2896 set ret [check_no_compiler_messages_nocache dfp object {
2897 float x __attribute__((mode(DD)));
2899 verbose "check_effective_target_dfp_nocache: returning $ret" 2
2900 return $ret
2903 proc check_effective_target_dfprt_nocache { } {
2904 return [check_runtime_nocache dfprt {
2905 typedef float d64 __attribute__((mode(DD)));
2906 d64 x = 1.2df, y = 2.3dd, z;
2907 int main () { z = x + y; return 0; }
2911 # Return 1 if the target supports compiling Decimal Floating Point,
2912 # 0 otherwise.
2914 # This won't change for different subtargets so cache the result.
2916 proc check_effective_target_dfp { } {
2917 return [check_cached_effective_target dfp {
2918 check_effective_target_dfp_nocache
2922 # Return 1 if the target supports linking and executing Decimal Floating
2923 # Point, 0 otherwise.
2925 # This won't change for different subtargets so cache the result.
2927 proc check_effective_target_dfprt { } {
2928 return [check_cached_effective_target dfprt {
2929 check_effective_target_dfprt_nocache
2933 proc check_effective_target_powerpc_popcntb_ok { } {
2934 return [check_cached_effective_target powerpc_popcntb_ok {
2936 # Disable on Darwin.
2937 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] || [istarget *-*-darwin*]} {
2938 expr 0
2939 } else {
2940 check_runtime_nocache powerpc_popcntb_ok {
2941 volatile int r;
2942 volatile int a = 0x12345678;
2943 int main()
2945 asm volatile ("popcntb %0,%1" : "=r" (r) : "r" (a));
2946 return 0;
2948 } "-mcpu=power5"
2953 # Return 1 if the target supports executing DFP hardware instructions,
2954 # 0 otherwise. Cache the result.
2956 proc check_dfp_hw_available { } {
2957 return [check_cached_effective_target dfp_hw_available {
2958 # For now, disable on Darwin
2959 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] || [istarget *-*-darwin*]} {
2960 expr 0
2961 } else {
2962 check_runtime_nocache dfp_hw_available {
2963 volatile _Decimal64 r;
2964 volatile _Decimal64 a = 4.0DD;
2965 volatile _Decimal64 b = 2.0DD;
2966 int main()
2968 asm volatile ("dadd %0,%1,%2" : "=d" (r) : "d" (a), "d" (b));
2969 asm volatile ("dsub %0,%1,%2" : "=d" (r) : "d" (a), "d" (b));
2970 asm volatile ("dmul %0,%1,%2" : "=d" (r) : "d" (a), "d" (b));
2971 asm volatile ("ddiv %0,%1,%2" : "=d" (r) : "d" (a), "d" (b));
2972 return 0;
2974 } "-mcpu=power6 -mhard-float"
2979 # Return 1 if the target supports compiling and assembling UCN, 0 otherwise.
2981 proc check_effective_target_ucn_nocache { } {
2982 # -std=c99 is only valid for C
2983 if [check_effective_target_c] {
2984 set ucnopts "-std=c99"
2985 } else {
2986 set ucnopts ""
2988 verbose "check_effective_target_ucn_nocache: compiling source" 2
2989 set ret [check_no_compiler_messages_nocache ucn object {
2990 int \u00C0;
2991 } $ucnopts]
2992 verbose "check_effective_target_ucn_nocache: returning $ret" 2
2993 return $ret
2996 # Return 1 if the target supports compiling and assembling UCN, 0 otherwise.
2998 # This won't change for different subtargets, so cache the result.
3000 proc check_effective_target_ucn { } {
3001 return [check_cached_effective_target ucn {
3002 check_effective_target_ucn_nocache
3006 # Return 1 if the target needs a command line argument to enable a SIMD
3007 # instruction set.
3009 proc check_effective_target_vect_cmdline_needed { } {
3010 global et_vect_cmdline_needed_saved
3011 global et_vect_cmdline_needed_target_name
3013 if { ![info exists et_vect_cmdline_needed_target_name] } {
3014 set et_vect_cmdline_needed_target_name ""
3017 # If the target has changed since we set the cached value, clear it.
3018 set current_target [current_target_name]
3019 if { $current_target != $et_vect_cmdline_needed_target_name } {
3020 verbose "check_effective_target_vect_cmdline_needed: `$et_vect_cmdline_needed_target_name' `$current_target'" 2
3021 set et_vect_cmdline_needed_target_name $current_target
3022 if { [info exists et_vect_cmdline_needed_saved] } {
3023 verbose "check_effective_target_vect_cmdline_needed: removing cached result" 2
3024 unset et_vect_cmdline_needed_saved
3028 if [info exists et_vect_cmdline_needed_saved] {
3029 verbose "check_effective_target_vect_cmdline_needed: using cached result" 2
3030 } else {
3031 set et_vect_cmdline_needed_saved 1
3032 if { [istarget alpha*-*-*]
3033 || [istarget ia64-*-*]
3034 || (([istarget i?86-*-*] || [istarget x86_64-*-*])
3035 && ![is-effective-target ia32])
3036 || ([istarget powerpc*-*-*]
3037 && ([check_effective_target_powerpc_spe]
3038 || [check_effective_target_powerpc_altivec]))
3039 || ([istarget sparc*-*-*] && [check_effective_target_sparc_vis])
3040 || [istarget spu-*-*]
3041 || ([istarget arm*-*-*] && [check_effective_target_arm_neon])
3042 || [istarget aarch64*-*-*] } {
3043 set et_vect_cmdline_needed_saved 0
3047 verbose "check_effective_target_vect_cmdline_needed: returning $et_vect_cmdline_needed_saved" 2
3048 return $et_vect_cmdline_needed_saved
3051 # Return 1 if the target supports hardware vectors of int, 0 otherwise.
3053 # This won't change for different subtargets so cache the result.
3055 proc check_effective_target_vect_int { } {
3056 global et_vect_int_saved
3057 global et_index
3059 if [info exists et_vect_int_saved($et_index)] {
3060 verbose "check_effective_target_vect_int: using cached result" 2
3061 } else {
3062 set et_vect_int_saved($et_index) 0
3063 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
3064 || ([istarget powerpc*-*-*]
3065 && ![istarget powerpc-*-linux*paired*])
3066 || [istarget spu-*-*]
3067 || [istarget sparc*-*-*]
3068 || [istarget alpha*-*-*]
3069 || [istarget ia64-*-*]
3070 || [istarget aarch64*-*-*]
3071 || [is-effective-target arm_neon]
3072 || ([istarget mips*-*-*]
3073 && ([et-is-effective-target mips_loongson]
3074 || [et-is-effective-target mips_msa]))
3075 || ([istarget s390*-*-*]
3076 && [check_effective_target_s390_vx]) } {
3077 set et_vect_int_saved($et_index) 1
3081 verbose "check_effective_target_vect_int:\
3082 returning $et_vect_int_saved($et_index)" 2
3083 return $et_vect_int_saved($et_index)
3086 # Return 1 if the target supports signed int->float conversion
3089 proc check_effective_target_vect_intfloat_cvt { } {
3090 global et_vect_intfloat_cvt_saved
3091 global et_index
3093 if [info exists et_vect_intfloat_cvt_saved($et_index)] {
3094 verbose "check_effective_target_vect_intfloat_cvt:\
3095 using cached result" 2
3096 } else {
3097 set et_vect_intfloat_cvt_saved($et_index) 0
3098 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
3099 || ([istarget powerpc*-*-*]
3100 && ![istarget powerpc-*-linux*paired*])
3101 || [is-effective-target arm_neon]
3102 || ([istarget mips*-*-*]
3103 && [et-is-effective-target mips_msa]) } {
3104 set et_vect_intfloat_cvt_saved($et_index) 1
3108 verbose "check_effective_target_vect_intfloat_cvt:\
3109 returning $et_vect_intfloat_cvt_saved($et_index)" 2
3110 return $et_vect_intfloat_cvt_saved($et_index)
3113 # Return 1 if the target supports signed double->int conversion
3116 proc check_effective_target_vect_doubleint_cvt { } {
3117 global et_vect_doubleint_cvt_saved
3118 global et_index
3120 if [info exists et_vect_doubleint_cvt_saved($et_index)] {
3121 verbose "check_effective_target_vect_doubleint_cvt: using cached result" 2
3122 } else {
3123 set et_vect_doubleint_cvt_saved($et_index) 0
3124 if { (([istarget i?86-*-*] || [istarget x86_64-*-*])
3125 && [check_no_compiler_messages vect_doubleint_cvt assembly {
3126 #ifdef __tune_atom__
3127 # error No double vectorizer support.
3128 #endif
3130 || [istarget aarch64*-*-*]
3131 || [istarget spu-*-*]
3132 || ([istarget powerpc*-*-*] && [check_vsx_hw_available])
3133 || ([istarget mips*-*-*]
3134 && [et-is-effective-target mips_msa]) } {
3135 set et_vect_doubleint_cvt_saved($et_index) 1
3139 verbose "check_effective_target_vect_doubleint_cvt:\
3140 returning $et_vect_doubleint_cvt_saved($et_index)" 2
3141 return $et_vect_doubleint_cvt_saved($et_index)
3144 # Return 1 if the target supports signed int->double conversion
3147 proc check_effective_target_vect_intdouble_cvt { } {
3148 global et_vect_intdouble_cvt_saved
3149 global et_index
3151 if [info exists et_vect_intdouble_cvt_saved($et_index)] {
3152 verbose "check_effective_target_vect_intdouble_cvt: using cached result" 2
3153 } else {
3154 set et_vect_intdouble_cvt_saved($et_index) 0
3155 if { (([istarget i?86-*-*] || [istarget x86_64-*-*])
3156 && [check_no_compiler_messages vect_intdouble_cvt assembly {
3157 #ifdef __tune_atom__
3158 # error No double vectorizer support.
3159 #endif
3161 || [istarget aarch64*-*-*]
3162 || [istarget spu-*-*]
3163 || ([istarget powerpc*-*-*] && [check_vsx_hw_available])
3164 || ([istarget mips*-*-*]
3165 && [et-is-effective-target mips_msa]) } {
3166 set et_vect_intdouble_cvt_saved($et_index) 1
3170 verbose "check_effective_target_vect_intdouble_cvt:\
3171 returning $et_vect_intdouble_cvt_saved($et_index)" 2
3172 return $et_vect_intdouble_cvt_saved($et_index)
3175 #Return 1 if we're supporting __int128 for target, 0 otherwise.
3177 proc check_effective_target_int128 { } {
3178 return [check_no_compiler_messages int128 object {
3179 int dummy[
3180 #ifndef __SIZEOF_INT128__
3182 #else
3184 #endif
3189 # Return 1 if the target supports unsigned int->float conversion
3192 proc check_effective_target_vect_uintfloat_cvt { } {
3193 global et_vect_uintfloat_cvt_saved
3194 global et_index
3196 if [info exists et_vect_uintfloat_cvt_saved($et_index)] {
3197 verbose "check_effective_target_vect_uintfloat_cvt:\
3198 using cached result" 2
3199 } else {
3200 set et_vect_uintfloat_cvt_saved($et_index) 0
3201 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
3202 || ([istarget powerpc*-*-*]
3203 && ![istarget powerpc-*-linux*paired*])
3204 || [istarget aarch64*-*-*]
3205 || [is-effective-target arm_neon]
3206 || ([istarget mips*-*-*]
3207 && [et-is-effective-target mips_msa]) } {
3208 set et_vect_uintfloat_cvt_saved($et_index) 1
3212 verbose "check_effective_target_vect_uintfloat_cvt:\
3213 returning $et_vect_uintfloat_cvt_saved($et_index)" 2
3214 return $et_vect_uintfloat_cvt_saved($et_index)
3218 # Return 1 if the target supports signed float->int conversion
3221 proc check_effective_target_vect_floatint_cvt { } {
3222 global et_vect_floatint_cvt_saved
3223 global et_index
3225 if [info exists et_vect_floatint_cvt_saved($et_index)] {
3226 verbose "check_effective_target_vect_floatint_cvt:\
3227 using cached result" 2
3228 } else {
3229 set et_vect_floatint_cvt_saved($et_index) 0
3230 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
3231 || ([istarget powerpc*-*-*]
3232 && ![istarget powerpc-*-linux*paired*])
3233 || [is-effective-target arm_neon]
3234 || ([istarget mips*-*-*]
3235 && [et-is-effective-target mips_msa]) } {
3236 set et_vect_floatint_cvt_saved($et_index) 1
3240 verbose "check_effective_target_vect_floatint_cvt:\
3241 returning $et_vect_floatint_cvt_saved($et_index)" 2
3242 return $et_vect_floatint_cvt_saved($et_index)
3245 # Return 1 if the target supports unsigned float->int conversion
3248 proc check_effective_target_vect_floatuint_cvt { } {
3249 global et_vect_floatuint_cvt_saved
3250 global et_index
3252 if [info exists et_vect_floatuint_cvt_saved($et_index)] {
3253 verbose "check_effective_target_vect_floatuint_cvt:\
3254 using cached result" 2
3255 } else {
3256 set et_vect_floatuint_cvt_saved($et_index) 0
3257 if { ([istarget powerpc*-*-*]
3258 && ![istarget powerpc-*-linux*paired*])
3259 || [is-effective-target arm_neon]
3260 || ([istarget mips*-*-*]
3261 && [et-is-effective-target mips_msa]) } {
3262 set et_vect_floatuint_cvt_saved($et_index) 1
3266 verbose "check_effective_target_vect_floatuint_cvt:\
3267 returning $et_vect_floatuint_cvt_saved($et_index)" 2
3268 return $et_vect_floatuint_cvt_saved($et_index)
3271 # Return 1 if peeling for alignment might be profitable on the target
3274 proc check_effective_target_vect_peeling_profitable { } {
3275 global et_vect_peeling_profitable_saved
3276 global et_index
3278 if [info exists et_vect_peeling_profitable_saved($et_index)] {
3279 verbose "check_effective_target_vect_peeling_profitable: using cached result" 2
3280 } else {
3281 set et_vect_peeling_profitable_saved($et_index) 1
3282 if { ([istarget s390*-*-*]
3283 && [check_effective_target_s390_vx])
3284 || [check_effective_target_vect_element_align_preferred] } {
3285 set et_vect_peeling_profitable_saved($et_index) 0
3289 verbose "check_effective_target_vect_peeling_profitable:\
3290 returning $et_vect_peeling_profitable_saved($et_index)" 2
3291 return $et_vect_peeling_profitable_saved($et_index)
3294 # Return 1 if the target supports #pragma omp declare simd, 0 otherwise.
3296 # This won't change for different subtargets so cache the result.
3298 proc check_effective_target_vect_simd_clones { } {
3299 global et_vect_simd_clones_saved
3300 global et_index
3302 if [info exists et_vect_simd_clones_saved($et_index)] {
3303 verbose "check_effective_target_vect_simd_clones: using cached result" 2
3304 } else {
3305 set et_vect_simd_clones_saved($et_index) 0
3306 # On i?86/x86_64 #pragma omp declare simd builds a sse2, avx,
3307 # avx2 and avx512f clone. Only the right clone for the
3308 # specified arch will be chosen, but still we need to at least
3309 # be able to assemble avx512f.
3310 if { (([istarget i?86-*-*] || [istarget x86_64-*-*])
3311 && [check_effective_target_avx512f]) } {
3312 set et_vect_simd_clones_saved($et_index) 1
3316 verbose "check_effective_target_vect_simd_clones:\
3317 returning $et_vect_simd_clones_saved($et_index)" 2
3318 return $et_vect_simd_clones_saved($et_index)
3321 # Return 1 if this is a AArch64 target supporting big endian
3322 proc check_effective_target_aarch64_big_endian { } {
3323 return [check_no_compiler_messages aarch64_big_endian assembly {
3324 #if !defined(__aarch64__) || !defined(__AARCH64EB__)
3325 #error !__aarch64__ || !__AARCH64EB__
3326 #endif
3330 # Return 1 if this is a AArch64 target supporting little endian
3331 proc check_effective_target_aarch64_little_endian { } {
3332 if { ![istarget aarch64*-*-*] } {
3333 return 0
3336 return [check_no_compiler_messages aarch64_little_endian assembly {
3337 #if !defined(__aarch64__) || defined(__AARCH64EB__)
3338 #error FOO
3339 #endif
3343 # Return 1 if this is an AArch64 target supporting SVE.
3344 proc check_effective_target_aarch64_sve { } {
3345 if { ![istarget aarch64*-*-*] } {
3346 return 0
3348 return [check_no_compiler_messages aarch64_sve assembly {
3349 #if !defined (__ARM_FEATURE_SVE)
3350 #error FOO
3351 #endif
3355 # Return the size in bits of an SVE vector, or 0 if the size is variable.
3356 proc aarch64_sve_bits { } {
3357 return [check_cached_effective_target aarch64_sve_bits {
3358 global tool
3360 set src dummy[pid].c
3361 set f [open $src "w"]
3362 puts $f "int bits = __ARM_FEATURE_SVE_BITS;"
3363 close $f
3364 set output [${tool}_target_compile $src "" preprocess ""]
3365 file delete $src
3367 regsub {.*bits = ([^;]*);.*} $output {\1} bits
3368 expr { $bits }
3372 # Return 1 if this is a compiler supporting ARC atomic operations
3373 proc check_effective_target_arc_atomic { } {
3374 return [check_no_compiler_messages arc_atomic assembly {
3375 #if !defined(__ARC_ATOMIC__)
3376 #error FOO
3377 #endif
3381 # Return 1 if this is an arm target using 32-bit instructions
3382 proc check_effective_target_arm32 { } {
3383 if { ![istarget arm*-*-*] } {
3384 return 0
3387 return [check_no_compiler_messages arm32 assembly {
3388 #if !defined(__arm__) || (defined(__thumb__) && !defined(__thumb2__))
3389 #error !__arm || __thumb__ && !__thumb2__
3390 #endif
3394 # Return 1 if this is an arm target not using Thumb
3395 proc check_effective_target_arm_nothumb { } {
3396 if { ![istarget arm*-*-*] } {
3397 return 0
3400 return [check_no_compiler_messages arm_nothumb assembly {
3401 #if !defined(__arm__) || (defined(__thumb__) || defined(__thumb2__))
3402 #error !__arm__ || __thumb || __thumb2__
3403 #endif
3407 # Return 1 if this is a little-endian ARM target
3408 proc check_effective_target_arm_little_endian { } {
3409 if { ![istarget arm*-*-*] } {
3410 return 0
3413 return [check_no_compiler_messages arm_little_endian assembly {
3414 #if !defined(__arm__) || !defined(__ARMEL__)
3415 #error !__arm__ || !__ARMEL__
3416 #endif
3420 # Return 1 if this is an ARM target that only supports aligned vector accesses
3421 proc check_effective_target_arm_vect_no_misalign { } {
3422 if { ![istarget arm*-*-*] } {
3423 return 0
3426 return [check_no_compiler_messages arm_vect_no_misalign assembly {
3427 #if !defined(__arm__) \
3428 || (defined(__ARM_FEATURE_UNALIGNED) \
3429 && defined(__ARMEL__))
3430 #error !__arm__ || (__ARMEL__ && __ARM_FEATURE_UNALIGNED)
3431 #endif
3436 # Return 1 if this is an ARM target supporting -mfloat-abi=soft. Some
3437 # multilibs may be incompatible with this option.
3439 proc check_effective_target_arm_soft_ok { } {
3440 if { [check_effective_target_arm32] } {
3441 return [check_no_compiler_messages arm_soft_ok executable {
3442 int main() { return 0;}
3443 } "-mfloat-abi=soft"]
3444 } else {
3445 return 0
3449 # Return 1 if this is an ARM target supporting -mfpu=vfp
3450 # -mfloat-abi=softfp. Some multilibs may be incompatible with these
3451 # options.
3453 proc check_effective_target_arm_vfp_ok { } {
3454 if { [check_effective_target_arm32] } {
3455 return [check_no_compiler_messages arm_vfp_ok object {
3456 int dummy;
3457 } "-mfpu=vfp -mfloat-abi=softfp"]
3458 } else {
3459 return 0
3463 # Return 1 if this is an ARM target supporting -mfpu=vfp3
3464 # -mfloat-abi=softfp.
3466 proc check_effective_target_arm_vfp3_ok { } {
3467 if { [check_effective_target_arm32] } {
3468 return [check_no_compiler_messages arm_vfp3_ok object {
3469 int dummy;
3470 } "-mfpu=vfp3 -mfloat-abi=softfp"]
3471 } else {
3472 return 0
3476 # Return 1 if this is an ARM target supporting -mfpu=fp-armv8
3477 # -mfloat-abi=softfp.
3478 proc check_effective_target_arm_v8_vfp_ok {} {
3479 if { [check_effective_target_arm32] } {
3480 return [check_no_compiler_messages arm_v8_vfp_ok object {
3481 int foo (void)
3483 __asm__ volatile ("vrinta.f32.f32 s0, s0");
3484 return 0;
3486 } "-mfpu=fp-armv8 -mfloat-abi=softfp"]
3487 } else {
3488 return 0
3492 # Return 1 if this is an ARM target supporting -mfpu=vfp
3493 # -mfloat-abi=hard. Some multilibs may be incompatible with these
3494 # options.
3496 proc check_effective_target_arm_hard_vfp_ok { } {
3497 if { [check_effective_target_arm32]
3498 && ! [check-flags [list "" { *-*-* } { "-mfloat-abi=*" } { "-mfloat-abi=hard" }]] } {
3499 return [check_no_compiler_messages arm_hard_vfp_ok executable {
3500 int main() { return 0;}
3501 } "-mfpu=vfp -mfloat-abi=hard"]
3502 } else {
3503 return 0
3507 # Return 1 if this is an ARM target defining __ARM_FP. We may need
3508 # -mfloat-abi=softfp or equivalent options. Some multilibs may be
3509 # incompatible with these options. Also set et_arm_fp_flags to the
3510 # best options to add.
3512 proc check_effective_target_arm_fp_ok_nocache { } {
3513 global et_arm_fp_flags
3514 set et_arm_fp_flags ""
3515 if { [check_effective_target_arm32] } {
3516 foreach flags {"" "-mfloat-abi=softfp" "-mfloat-abi=hard"} {
3517 if { [check_no_compiler_messages_nocache arm_fp_ok object {
3518 #ifndef __ARM_FP
3519 #error __ARM_FP not defined
3520 #endif
3521 } "$flags"] } {
3522 set et_arm_fp_flags $flags
3523 return 1
3528 return 0
3531 proc check_effective_target_arm_fp_ok { } {
3532 return [check_cached_effective_target arm_fp_ok \
3533 check_effective_target_arm_fp_ok_nocache]
3536 # Add the options needed to define __ARM_FP. We need either
3537 # -mfloat-abi=softfp or -mfloat-abi=hard, but if one is already
3538 # specified by the multilib, use it.
3540 proc add_options_for_arm_fp { flags } {
3541 if { ! [check_effective_target_arm_fp_ok] } {
3542 return "$flags"
3544 global et_arm_fp_flags
3545 return "$flags $et_arm_fp_flags"
3548 # Return 1 if this is an ARM target that supports DSP multiply with
3549 # current multilib flags.
3551 proc check_effective_target_arm_dsp { } {
3552 return [check_no_compiler_messages arm_dsp assembly {
3553 #ifndef __ARM_FEATURE_DSP
3554 #error not DSP
3555 #endif
3556 int i;
3560 # Return 1 if this is an ARM target that supports unaligned word/halfword
3561 # load/store instructions.
3563 proc check_effective_target_arm_unaligned { } {
3564 return [check_no_compiler_messages arm_unaligned assembly {
3565 #ifndef __ARM_FEATURE_UNALIGNED
3566 #error no unaligned support
3567 #endif
3568 int i;
3572 # Return 1 if this is an ARM target supporting -mfpu=crypto-neon-fp-armv8
3573 # -mfloat-abi=softfp or equivalent options. Some multilibs may be
3574 # incompatible with these options. Also set et_arm_crypto_flags to the
3575 # best options to add.
3577 proc check_effective_target_arm_crypto_ok_nocache { } {
3578 global et_arm_crypto_flags
3579 set et_arm_crypto_flags ""
3580 if { [check_effective_target_arm_v8_neon_ok] } {
3581 foreach flags {"" "-mfloat-abi=softfp" "-mfpu=crypto-neon-fp-armv8" "-mfpu=crypto-neon-fp-armv8 -mfloat-abi=softfp"} {
3582 if { [check_no_compiler_messages_nocache arm_crypto_ok object {
3583 #include "arm_neon.h"
3584 uint8x16_t
3585 foo (uint8x16_t a, uint8x16_t b)
3587 return vaeseq_u8 (a, b);
3589 } "$flags"] } {
3590 set et_arm_crypto_flags $flags
3591 return 1
3596 return 0
3599 # Return 1 if this is an ARM target supporting -mfpu=crypto-neon-fp-armv8
3601 proc check_effective_target_arm_crypto_ok { } {
3602 return [check_cached_effective_target arm_crypto_ok \
3603 check_effective_target_arm_crypto_ok_nocache]
3606 # Add options for crypto extensions.
3607 proc add_options_for_arm_crypto { flags } {
3608 if { ! [check_effective_target_arm_crypto_ok] } {
3609 return "$flags"
3611 global et_arm_crypto_flags
3612 return "$flags $et_arm_crypto_flags"
3615 # Add the options needed for NEON. We need either -mfloat-abi=softfp
3616 # or -mfloat-abi=hard, but if one is already specified by the
3617 # multilib, use it. Similarly, if a -mfpu option already enables
3618 # NEON, do not add -mfpu=neon.
3620 proc add_options_for_arm_neon { flags } {
3621 if { ! [check_effective_target_arm_neon_ok] } {
3622 return "$flags"
3624 global et_arm_neon_flags
3625 return "$flags $et_arm_neon_flags"
3628 proc add_options_for_arm_v8_vfp { flags } {
3629 if { ! [check_effective_target_arm_v8_vfp_ok] } {
3630 return "$flags"
3632 return "$flags -mfpu=fp-armv8 -mfloat-abi=softfp"
3635 proc add_options_for_arm_v8_neon { flags } {
3636 if { ! [check_effective_target_arm_v8_neon_ok] } {
3637 return "$flags"
3639 global et_arm_v8_neon_flags
3640 return "$flags $et_arm_v8_neon_flags -march=armv8-a"
3643 # Add the options needed for ARMv8.1 Adv.SIMD. Also adds the ARMv8 NEON
3644 # options for AArch64 and for ARM.
3646 proc add_options_for_arm_v8_1a_neon { flags } {
3647 if { ! [check_effective_target_arm_v8_1a_neon_ok] } {
3648 return "$flags"
3650 global et_arm_v8_1a_neon_flags
3651 return "$flags $et_arm_v8_1a_neon_flags"
3654 # Add the options needed for ARMv8.2 with the scalar FP16 extension.
3655 # Also adds the ARMv8 FP options for ARM and for AArch64.
3657 proc add_options_for_arm_v8_2a_fp16_scalar { flags } {
3658 if { ! [check_effective_target_arm_v8_2a_fp16_scalar_ok] } {
3659 return "$flags"
3661 global et_arm_v8_2a_fp16_scalar_flags
3662 return "$flags $et_arm_v8_2a_fp16_scalar_flags"
3665 # Add the options needed for ARMv8.2 with the FP16 extension. Also adds
3666 # the ARMv8 NEON options for ARM and for AArch64.
3668 proc add_options_for_arm_v8_2a_fp16_neon { flags } {
3669 if { ! [check_effective_target_arm_v8_2a_fp16_neon_ok] } {
3670 return "$flags"
3672 global et_arm_v8_2a_fp16_neon_flags
3673 return "$flags $et_arm_v8_2a_fp16_neon_flags"
3676 proc add_options_for_arm_crc { flags } {
3677 if { ! [check_effective_target_arm_crc_ok] } {
3678 return "$flags"
3680 global et_arm_crc_flags
3681 return "$flags $et_arm_crc_flags"
3684 # Add the options needed for NEON. We need either -mfloat-abi=softfp
3685 # or -mfloat-abi=hard, but if one is already specified by the
3686 # multilib, use it. Similarly, if a -mfpu option already enables
3687 # NEON, do not add -mfpu=neon.
3689 proc add_options_for_arm_neonv2 { flags } {
3690 if { ! [check_effective_target_arm_neonv2_ok] } {
3691 return "$flags"
3693 global et_arm_neonv2_flags
3694 return "$flags $et_arm_neonv2_flags"
3697 # Add the options needed for vfp3.
3698 proc add_options_for_arm_vfp3 { flags } {
3699 if { ! [check_effective_target_arm_vfp3_ok] } {
3700 return "$flags"
3702 return "$flags -mfpu=vfp3 -mfloat-abi=softfp"
3705 # Return 1 if this is an ARM target supporting -mfpu=neon
3706 # -mfloat-abi=softfp or equivalent options. Some multilibs may be
3707 # incompatible with these options. Also set et_arm_neon_flags to the
3708 # best options to add.
3710 proc check_effective_target_arm_neon_ok_nocache { } {
3711 global et_arm_neon_flags
3712 set et_arm_neon_flags ""
3713 if { [check_effective_target_arm32] } {
3714 foreach flags {"" "-mfloat-abi=softfp" "-mfpu=neon" "-mfpu=neon -mfloat-abi=softfp" "-mfpu=neon -mfloat-abi=softfp -march=armv7-a" "-mfloat-abi=hard" "-mfpu=neon -mfloat-abi=hard" "-mfpu=neon -mfloat-abi=hard -march=armv7-a"} {
3715 if { [check_no_compiler_messages_nocache arm_neon_ok object {
3716 #include <arm_neon.h>
3717 int dummy;
3718 #ifndef __ARM_NEON__
3719 #error not NEON
3720 #endif
3721 /* Avoid the case where a test adds -mfpu=neon, but the toolchain is
3722 configured for -mcpu=arm926ej-s, for example. */
3723 #if __ARM_ARCH < 7 || __ARM_ARCH_PROFILE == 'M'
3724 #error Architecture does not support NEON.
3725 #endif
3726 } "$flags"] } {
3727 set et_arm_neon_flags $flags
3728 return 1
3733 return 0
3736 proc check_effective_target_arm_neon_ok { } {
3737 return [check_cached_effective_target arm_neon_ok \
3738 check_effective_target_arm_neon_ok_nocache]
3741 # Return 1 if this is an ARM target supporting -mfpu=neon without any
3742 # -mfloat-abi= option. Useful in tests where add_options is not
3743 # supported (such as lto tests).
3745 proc check_effective_target_arm_neon_ok_no_float_abi_nocache { } {
3746 if { [check_effective_target_arm32] } {
3747 foreach flags {"-mfpu=neon"} {
3748 if { [check_no_compiler_messages_nocache arm_neon_ok_no_float_abi object {
3749 #include <arm_neon.h>
3750 int dummy;
3751 #ifndef __ARM_NEON__
3752 #error not NEON
3753 #endif
3754 /* Avoid the case where a test adds -mfpu=neon, but the toolchain is
3755 configured for -mcpu=arm926ej-s, for example. */
3756 #if __ARM_ARCH < 7 || __ARM_ARCH_PROFILE == 'M'
3757 #error Architecture does not support NEON.
3758 #endif
3759 } "$flags"] } {
3760 return 1
3765 return 0
3768 proc check_effective_target_arm_neon_ok_no_float_abi { } {
3769 return [check_cached_effective_target arm_neon_ok_no_float_abi \
3770 check_effective_target_arm_neon_ok_no_float_abi_nocache]
3773 proc check_effective_target_arm_crc_ok_nocache { } {
3774 global et_arm_crc_flags
3775 set et_arm_crc_flags "-march=armv8-a+crc"
3776 return [check_no_compiler_messages_nocache arm_crc_ok object {
3777 #if !defined (__ARM_FEATURE_CRC32)
3778 #error FOO
3779 #endif
3780 } "$et_arm_crc_flags"]
3783 proc check_effective_target_arm_crc_ok { } {
3784 return [check_cached_effective_target arm_crc_ok \
3785 check_effective_target_arm_crc_ok_nocache]
3788 # Return 1 if this is an ARM target supporting -mfpu=neon-fp16
3789 # -mfloat-abi=softfp or equivalent options. Some multilibs may be
3790 # incompatible with these options. Also set et_arm_neon_fp16_flags to
3791 # the best options to add.
3793 proc check_effective_target_arm_neon_fp16_ok_nocache { } {
3794 global et_arm_neon_fp16_flags
3795 global et_arm_neon_flags
3796 set et_arm_neon_fp16_flags ""
3797 if { [check_effective_target_arm32]
3798 && [check_effective_target_arm_neon_ok] } {
3799 foreach flags {"" "-mfloat-abi=softfp" "-mfpu=neon-fp16"
3800 "-mfpu=neon-fp16 -mfloat-abi=softfp"
3801 "-mfp16-format=ieee"
3802 "-mfloat-abi=softfp -mfp16-format=ieee"
3803 "-mfpu=neon-fp16 -mfp16-format=ieee"
3804 "-mfpu=neon-fp16 -mfloat-abi=softfp -mfp16-format=ieee"} {
3805 if { [check_no_compiler_messages_nocache arm_neon_fp16_ok object {
3806 #include "arm_neon.h"
3807 float16x4_t
3808 foo (float32x4_t arg)
3810 return vcvt_f16_f32 (arg);
3812 } "$et_arm_neon_flags $flags"] } {
3813 set et_arm_neon_fp16_flags [concat $et_arm_neon_flags $flags]
3814 return 1
3819 return 0
3822 proc check_effective_target_arm_neon_fp16_ok { } {
3823 return [check_cached_effective_target arm_neon_fp16_ok \
3824 check_effective_target_arm_neon_fp16_ok_nocache]
3827 proc check_effective_target_arm_neon_fp16_hw { } {
3828 if {! [check_effective_target_arm_neon_fp16_ok] } {
3829 return 0
3831 global et_arm_neon_fp16_flags
3832 check_runtime_nocache arm_neon_fp16_hw {
3834 main (int argc, char **argv)
3836 asm ("vcvt.f32.f16 q1, d0");
3837 return 0;
3839 } $et_arm_neon_fp16_flags
3842 proc add_options_for_arm_neon_fp16 { flags } {
3843 if { ! [check_effective_target_arm_neon_fp16_ok] } {
3844 return "$flags"
3846 global et_arm_neon_fp16_flags
3847 return "$flags $et_arm_neon_fp16_flags"
3850 # Return 1 if this is an ARM target supporting the FP16 alternative
3851 # format. Some multilibs may be incompatible with the options needed. Also
3852 # set et_arm_neon_fp16_flags to the best options to add.
3854 proc check_effective_target_arm_fp16_alternative_ok_nocache { } {
3855 global et_arm_neon_fp16_flags
3856 set et_arm_neon_fp16_flags ""
3857 if { [check_effective_target_arm32] } {
3858 foreach flags {"" "-mfloat-abi=softfp" "-mfpu=neon-fp16"
3859 "-mfpu=neon-fp16 -mfloat-abi=softfp"} {
3860 if { [check_no_compiler_messages_nocache \
3861 arm_fp16_alternative_ok object {
3862 #if !defined (__ARM_FP16_FORMAT_ALTERNATIVE)
3863 #error __ARM_FP16_FORMAT_ALTERNATIVE not defined
3864 #endif
3865 } "$flags -mfp16-format=alternative"] } {
3866 set et_arm_neon_fp16_flags "$flags -mfp16-format=alternative"
3867 return 1
3872 return 0
3875 proc check_effective_target_arm_fp16_alternative_ok { } {
3876 return [check_cached_effective_target arm_fp16_alternative_ok \
3877 check_effective_target_arm_fp16_alternative_ok_nocache]
3880 # Return 1 if this is an ARM target supports specifying the FP16 none
3881 # format. Some multilibs may be incompatible with the options needed.
3883 proc check_effective_target_arm_fp16_none_ok_nocache { } {
3884 if { [check_effective_target_arm32] } {
3885 foreach flags {"" "-mfloat-abi=softfp" "-mfpu=neon-fp16"
3886 "-mfpu=neon-fp16 -mfloat-abi=softfp"} {
3887 if { [check_no_compiler_messages_nocache \
3888 arm_fp16_none_ok object {
3889 #if defined (__ARM_FP16_FORMAT_ALTERNATIVE)
3890 #error __ARM_FP16_FORMAT_ALTERNATIVE defined
3891 #endif
3892 #if defined (__ARM_FP16_FORMAT_IEEE)
3893 #error __ARM_FP16_FORMAT_IEEE defined
3894 #endif
3895 } "$flags -mfp16-format=none"] } {
3896 return 1
3901 return 0
3904 proc check_effective_target_arm_fp16_none_ok { } {
3905 return [check_cached_effective_target arm_fp16_none_ok \
3906 check_effective_target_arm_fp16_none_ok_nocache]
3909 # Return 1 if this is an ARM target supporting -mfpu=neon-fp-armv8
3910 # -mfloat-abi=softfp or equivalent options. Some multilibs may be
3911 # incompatible with these options. Also set et_arm_v8_neon_flags to the
3912 # best options to add.
3914 proc check_effective_target_arm_v8_neon_ok_nocache { } {
3915 global et_arm_v8_neon_flags
3916 set et_arm_v8_neon_flags ""
3917 if { [check_effective_target_arm32] } {
3918 foreach flags {"" "-mfloat-abi=softfp" "-mfpu=neon-fp-armv8" "-mfpu=neon-fp-armv8 -mfloat-abi=softfp"} {
3919 if { [check_no_compiler_messages_nocache arm_v8_neon_ok object {
3920 #if __ARM_ARCH < 8
3921 #error not armv8 or later
3922 #endif
3923 #include "arm_neon.h"
3924 void
3925 foo ()
3927 __asm__ volatile ("vrintn.f32 q0, q0");
3929 } "$flags -march=armv8-a"] } {
3930 set et_arm_v8_neon_flags $flags
3931 return 1
3936 return 0
3939 proc check_effective_target_arm_v8_neon_ok { } {
3940 return [check_cached_effective_target arm_v8_neon_ok \
3941 check_effective_target_arm_v8_neon_ok_nocache]
3944 # Return 1 if this is an ARM target supporting -mfpu=neon-vfpv4
3945 # -mfloat-abi=softfp or equivalent options. Some multilibs may be
3946 # incompatible with these options. Also set et_arm_neonv2_flags to the
3947 # best options to add.
3949 proc check_effective_target_arm_neonv2_ok_nocache { } {
3950 global et_arm_neonv2_flags
3951 global et_arm_neon_flags
3952 set et_arm_neonv2_flags ""
3953 if { [check_effective_target_arm32]
3954 && [check_effective_target_arm_neon_ok] } {
3955 foreach flags {"" "-mfloat-abi=softfp" "-mfpu=neon-vfpv4" "-mfpu=neon-vfpv4 -mfloat-abi=softfp"} {
3956 if { [check_no_compiler_messages_nocache arm_neonv2_ok object {
3957 #include "arm_neon.h"
3958 float32x2_t
3959 foo (float32x2_t a, float32x2_t b, float32x2_t c)
3961 return vfma_f32 (a, b, c);
3963 } "$et_arm_neon_flags $flags"] } {
3964 set et_arm_neonv2_flags [concat $et_arm_neon_flags $flags]
3965 return 1
3970 return 0
3973 proc check_effective_target_arm_neonv2_ok { } {
3974 return [check_cached_effective_target arm_neonv2_ok \
3975 check_effective_target_arm_neonv2_ok_nocache]
3978 # Add the options needed for VFP FP16 support. We need either
3979 # -mfloat-abi=softfp or -mfloat-abi=hard. If one is already specified by
3980 # the multilib, use it.
3982 proc add_options_for_arm_fp16 { flags } {
3983 if { ! [check_effective_target_arm_fp16_ok] } {
3984 return "$flags"
3986 global et_arm_fp16_flags
3987 return "$flags $et_arm_fp16_flags"
3990 # Add the options needed to enable support for IEEE format
3991 # half-precision support. This is valid for ARM targets.
3993 proc add_options_for_arm_fp16_ieee { flags } {
3994 if { ! [check_effective_target_arm_fp16_ok] } {
3995 return "$flags"
3997 global et_arm_fp16_flags
3998 return "$flags $et_arm_fp16_flags -mfp16-format=ieee"
4001 # Add the options needed to enable support for ARM Alternative format
4002 # half-precision support. This is valid for ARM targets.
4004 proc add_options_for_arm_fp16_alternative { flags } {
4005 if { ! [check_effective_target_arm_fp16_ok] } {
4006 return "$flags"
4008 global et_arm_fp16_flags
4009 return "$flags $et_arm_fp16_flags -mfp16-format=alternative"
4012 # Return 1 if this is an ARM target that can support a VFP fp16 variant.
4013 # Skip multilibs that are incompatible with these options and set
4014 # et_arm_fp16_flags to the best options to add. This test is valid for
4015 # ARM only.
4017 proc check_effective_target_arm_fp16_ok_nocache { } {
4018 global et_arm_fp16_flags
4019 set et_arm_fp16_flags ""
4020 if { ! [check_effective_target_arm32] } {
4021 return 0;
4023 if [check-flags \
4024 [list "" { *-*-* } { "-mfpu=*" } \
4025 { "-mfpu=*fp16*" "-mfpu=*fpv[4-9]*" \
4026 "-mfpu=*fpv[1-9][0-9]*" "-mfpu=*fp-armv8*" } ]] {
4027 # Multilib flags would override -mfpu.
4028 return 0
4030 if [check-flags [list "" { *-*-* } { "-mfloat-abi=soft" } { "" } ]] {
4031 # Must generate floating-point instructions.
4032 return 0
4034 if [check_effective_target_arm_hf_eabi] {
4035 # Use existing float-abi and force an fpu which supports fp16
4036 set et_arm_fp16_flags "-mfpu=vfpv4"
4037 return 1;
4039 if [check-flags [list "" { *-*-* } { "-mfpu=*" } { "" } ]] {
4040 # The existing -mfpu value is OK; use it, but add softfp.
4041 set et_arm_fp16_flags "-mfloat-abi=softfp"
4042 return 1;
4044 # Add -mfpu for a VFP fp16 variant since there is no preprocessor
4045 # macro to check for this support.
4046 set flags "-mfpu=vfpv4 -mfloat-abi=softfp"
4047 if { [check_no_compiler_messages_nocache arm_fp16_ok assembly {
4048 int dummy;
4049 } "$flags"] } {
4050 set et_arm_fp16_flags "$flags"
4051 return 1
4054 return 0
4057 proc check_effective_target_arm_fp16_ok { } {
4058 return [check_cached_effective_target arm_fp16_ok \
4059 check_effective_target_arm_fp16_ok_nocache]
4062 # Return 1 if the target supports executing VFP FP16 instructions, 0
4063 # otherwise. This test is valid for ARM only.
4065 proc check_effective_target_arm_fp16_hw { } {
4066 if {! [check_effective_target_arm_fp16_ok] } {
4067 return 0
4069 global et_arm_fp16_flags
4070 check_runtime_nocache arm_fp16_hw {
4072 main (int argc, char **argv)
4074 __fp16 a = 1.0;
4075 float r;
4076 asm ("vcvtb.f32.f16 %0, %1"
4077 : "=w" (r) : "w" (a)
4078 : /* No clobbers. */);
4079 return (r == 1.0) ? 0 : 1;
4081 } "$et_arm_fp16_flags -mfp16-format=ieee"
4084 # Creates a series of routines that return 1 if the given architecture
4085 # can be selected and a routine to give the flags to select that architecture
4086 # Note: Extra flags may be added to disable options from newer compilers
4087 # (Thumb in particular - but others may be added in the future).
4088 # Warning: Do not use check_effective_target_arm_arch_*_ok for architecture
4089 # extension (eg. ARMv8.1-A) since there is no macro defined for them. See
4090 # how only __ARM_ARCH_8A__ is checked for ARMv8.1-A.
4091 # Usage: /* { dg-require-effective-target arm_arch_v5_ok } */
4092 # /* { dg-add-options arm_arch_v5 } */
4093 # /* { dg-require-effective-target arm_arch_v5_multilib } */
4094 foreach { armfunc armflag armdefs } {
4095 v4 "-march=armv4 -marm" __ARM_ARCH_4__
4096 v4t "-march=armv4t" __ARM_ARCH_4T__
4097 v5 "-march=armv5 -marm" __ARM_ARCH_5__
4098 v5t "-march=armv5t" __ARM_ARCH_5T__
4099 v5te "-march=armv5te" __ARM_ARCH_5TE__
4100 v6 "-march=armv6" __ARM_ARCH_6__
4101 v6k "-march=armv6k" __ARM_ARCH_6K__
4102 v6t2 "-march=armv6t2" __ARM_ARCH_6T2__
4103 v6z "-march=armv6z" __ARM_ARCH_6Z__
4104 v6m "-march=armv6-m -mthumb -mfloat-abi=soft" __ARM_ARCH_6M__
4105 v7a "-march=armv7-a" __ARM_ARCH_7A__
4106 v7r "-march=armv7-r" __ARM_ARCH_7R__
4107 v7m "-march=armv7-m -mthumb" __ARM_ARCH_7M__
4108 v7em "-march=armv7e-m -mthumb" __ARM_ARCH_7EM__
4109 v7ve "-march=armv7ve -marm"
4110 "__ARM_ARCH_7A__ && __ARM_FEATURE_IDIV"
4111 v8a "-march=armv8-a" __ARM_ARCH_8A__
4112 v8_1a "-march=armv8.1a" __ARM_ARCH_8A__
4113 v8_2a "-march=armv8.2a" __ARM_ARCH_8A__
4114 v8m_base "-march=armv8-m.base -mthumb -mfloat-abi=soft"
4115 __ARM_ARCH_8M_BASE__
4116 v8m_main "-march=armv8-m.main -mthumb" __ARM_ARCH_8M_MAIN__
4117 v8r "-march=armv8-r" __ARM_ARCH_8R__ } {
4118 eval [string map [list FUNC $armfunc FLAG $armflag DEFS $armdefs ] {
4119 proc check_effective_target_arm_arch_FUNC_ok { } {
4120 if { [ string match "*-marm*" "FLAG" ] &&
4121 ![check_effective_target_arm_arm_ok] } {
4122 return 0
4124 return [check_no_compiler_messages arm_arch_FUNC_ok assembly {
4125 #if !(DEFS)
4126 #error !(DEFS)
4127 #endif
4128 } "FLAG" ]
4131 proc add_options_for_arm_arch_FUNC { flags } {
4132 return "$flags FLAG"
4135 proc check_effective_target_arm_arch_FUNC_multilib { } {
4136 return [check_runtime arm_arch_FUNC_multilib {
4138 main (void)
4140 return 0;
4142 } [add_options_for_arm_arch_FUNC ""]]
4147 # Return 1 if GCC was configured with --with-mode=
4148 proc check_effective_target_default_mode { } {
4150 return [check_configured_with "with-mode="]
4153 # Return 1 if this is an ARM target where -marm causes ARM to be
4154 # used (not Thumb)
4156 proc check_effective_target_arm_arm_ok { } {
4157 return [check_no_compiler_messages arm_arm_ok assembly {
4158 #if !defined (__arm__) || defined (__thumb__) || defined (__thumb2__)
4159 #error !__arm__ || __thumb__ || __thumb2__
4160 #endif
4161 } "-marm"]
4165 # Return 1 is this is an ARM target where -mthumb causes Thumb-1 to be
4166 # used.
4168 proc check_effective_target_arm_thumb1_ok { } {
4169 return [check_no_compiler_messages arm_thumb1_ok assembly {
4170 #if !defined(__arm__) || !defined(__thumb__) || defined(__thumb2__)
4171 #error !__arm__ || !__thumb__ || __thumb2__
4172 #endif
4173 int foo (int i) { return i; }
4174 } "-mthumb"]
4177 # Return 1 is this is an ARM target where -mthumb causes Thumb-2 to be
4178 # used.
4180 proc check_effective_target_arm_thumb2_ok { } {
4181 return [check_no_compiler_messages arm_thumb2_ok assembly {
4182 #if !defined(__thumb2__)
4183 #error !__thumb2__
4184 #endif
4185 int foo (int i) { return i; }
4186 } "-mthumb"]
4189 # Return 1 if this is an ARM target where Thumb-1 is used without options
4190 # added by the test.
4192 proc check_effective_target_arm_thumb1 { } {
4193 return [check_no_compiler_messages arm_thumb1 assembly {
4194 #if !defined(__arm__) || !defined(__thumb__) || defined(__thumb2__)
4195 #error !__arm__ || !__thumb__ || __thumb2__
4196 #endif
4197 int i;
4198 } ""]
4201 # Return 1 if this is an ARM target where Thumb-2 is used without options
4202 # added by the test.
4204 proc check_effective_target_arm_thumb2 { } {
4205 return [check_no_compiler_messages arm_thumb2 assembly {
4206 #if !defined(__thumb2__)
4207 #error !__thumb2__
4208 #endif
4209 int i;
4210 } ""]
4213 # Return 1 if this is an ARM target where conditional execution is available.
4215 proc check_effective_target_arm_cond_exec { } {
4216 return [check_no_compiler_messages arm_cond_exec assembly {
4217 #if defined(__arm__) && defined(__thumb__) && !defined(__thumb2__)
4218 #error FOO
4219 #endif
4220 int i;
4221 } ""]
4224 # Return 1 if this is an ARM cortex-M profile cpu
4226 proc check_effective_target_arm_cortex_m { } {
4227 if { ![istarget arm*-*-*] } {
4228 return 0
4230 return [check_no_compiler_messages arm_cortex_m assembly {
4231 #if defined(__ARM_ARCH_ISA_ARM)
4232 #error __ARM_ARCH_ISA_ARM is defined
4233 #endif
4234 int i;
4235 } "-mthumb"]
4238 # Return 1 if this is an ARM target where -mthumb causes Thumb-1 to be
4239 # used and MOVT/MOVW instructions to be available.
4241 proc check_effective_target_arm_thumb1_movt_ok {} {
4242 if [check_effective_target_arm_thumb1_ok] {
4243 return [check_no_compiler_messages arm_movt object {
4245 foo (void)
4247 asm ("movt r0, #42");
4249 } "-mthumb"]
4250 } else {
4251 return 0
4255 # Return 1 if this is an ARM target where -mthumb causes Thumb-1 to be
4256 # used and CBZ and CBNZ instructions are available.
4258 proc check_effective_target_arm_thumb1_cbz_ok {} {
4259 if [check_effective_target_arm_thumb1_ok] {
4260 return [check_no_compiler_messages arm_movt object {
4262 foo (void)
4264 asm ("cbz r0, 2f\n2:");
4266 } "-mthumb"]
4267 } else {
4268 return 0
4272 # Return 1 if this is an ARM target where ARMv8-M Security Extensions is
4273 # available.
4275 proc check_effective_target_arm_cmse_ok {} {
4276 return [check_no_compiler_messages arm_cmse object {
4278 foo (void)
4280 asm ("bxns r0");
4282 } "-mcmse"];
4285 # Return 1 if this compilation turns on string_ops_prefer_neon on.
4287 proc check_effective_target_arm_tune_string_ops_prefer_neon { } {
4288 return [check_no_messages_and_pattern arm_tune_string_ops_prefer_neon "@string_ops_prefer_neon:\t1" assembly {
4289 int foo (void) { return 0; }
4290 } "-O2 -mprint-tune-info" ]
4293 # Return 1 if the target supports executing NEON instructions, 0
4294 # otherwise. Cache the result.
4296 proc check_effective_target_arm_neon_hw { } {
4297 return [check_runtime arm_neon_hw_available {
4299 main (void)
4301 long long a = 0, b = 1;
4302 asm ("vorr %P0, %P1, %P2"
4303 : "=w" (a)
4304 : "0" (a), "w" (b));
4305 return (a != 1);
4307 } [add_options_for_arm_neon ""]]
4310 # Return true if this is an AArch64 target that can run SVE code.
4312 proc check_effective_target_aarch64_sve_hw { } {
4313 if { ![istarget aarch64*-*-*] } {
4314 return 0
4316 return [check_runtime aarch64_sve_hw_available {
4318 main (void)
4320 asm volatile ("ptrue p0.b");
4321 return 0;
4326 # Return true if this is an AArch64 target that can run SVE code and
4327 # if its SVE vectors have exactly BITS bits.
4329 proc aarch64_sve_hw_bits { bits } {
4330 if { ![check_effective_target_aarch64_sve_hw] } {
4331 return 0
4333 return [check_runtime aarch64_sve${bits}_hw [subst {
4335 main (void)
4337 int res;
4338 asm volatile ("cntd %0" : "=r" (res));
4339 if (res * 64 != $bits)
4340 __builtin_abort ();
4341 return 0;
4346 # Return true if this is an AArch64 target that can run SVE code and
4347 # if its SVE vectors have exactly 256 bits.
4349 proc check_effective_target_aarch64_sve256_hw { } {
4350 return [aarch64_sve_hw_bits 256]
4353 proc check_effective_target_arm_neonv2_hw { } {
4354 return [check_runtime arm_neon_hwv2_available {
4355 #include "arm_neon.h"
4357 main (void)
4359 float32x2_t a, b, c;
4360 asm ("vfma.f32 %P0, %P1, %P2"
4361 : "=w" (a)
4362 : "w" (b), "w" (c));
4363 return 0;
4365 } [add_options_for_arm_neonv2 ""]]
4368 # Return 1 if the target supports the ARMv8.1 Adv.SIMD extension, 0
4369 # otherwise. The test is valid for AArch64 and ARM. Record the command
4370 # line options needed.
4372 proc check_effective_target_arm_v8_1a_neon_ok_nocache { } {
4373 global et_arm_v8_1a_neon_flags
4374 set et_arm_v8_1a_neon_flags ""
4376 if { ![istarget arm*-*-*] && ![istarget aarch64*-*-*] } {
4377 return 0;
4380 # Iterate through sets of options to find the compiler flags that
4381 # need to be added to the -march option. Start with the empty set
4382 # since AArch64 only needs the -march setting.
4383 foreach flags {"" "-mfpu=neon-fp-armv8" "-mfloat-abi=softfp" \
4384 "-mfpu=neon-fp-armv8 -mfloat-abi=softfp"} {
4385 foreach arches { "-march=armv8-a+rdma" "-march=armv8.1-a" } {
4386 if { [check_no_compiler_messages_nocache arm_v8_1a_neon_ok object {
4387 #if !defined (__ARM_FEATURE_QRDMX)
4388 #error "__ARM_FEATURE_QRDMX not defined"
4389 #endif
4390 } "$flags $arches"] } {
4391 set et_arm_v8_1a_neon_flags "$flags $arches"
4392 return 1
4397 return 0;
4400 proc check_effective_target_arm_v8_1a_neon_ok { } {
4401 return [check_cached_effective_target arm_v8_1a_neon_ok \
4402 check_effective_target_arm_v8_1a_neon_ok_nocache]
4405 # Return 1 if the target supports ARMv8.2 scalar FP16 arithmetic
4406 # instructions, 0 otherwise. The test is valid for ARM and for AArch64.
4407 # Record the command line options needed.
4409 proc check_effective_target_arm_v8_2a_fp16_scalar_ok_nocache { } {
4410 global et_arm_v8_2a_fp16_scalar_flags
4411 set et_arm_v8_2a_fp16_scalar_flags ""
4413 if { ![istarget arm*-*-*] && ![istarget aarch64*-*-*] } {
4414 return 0;
4417 # Iterate through sets of options to find the compiler flags that
4418 # need to be added to the -march option.
4419 foreach flags {"" "-mfpu=fp-armv8" "-mfloat-abi=softfp" \
4420 "-mfpu=fp-armv8 -mfloat-abi=softfp"} {
4421 if { [check_no_compiler_messages_nocache \
4422 arm_v8_2a_fp16_scalar_ok object {
4423 #if !defined (__ARM_FEATURE_FP16_SCALAR_ARITHMETIC)
4424 #error "__ARM_FEATURE_FP16_SCALAR_ARITHMETIC not defined"
4425 #endif
4426 } "$flags -march=armv8.2-a+fp16"] } {
4427 set et_arm_v8_2a_fp16_scalar_flags "$flags -march=armv8.2-a+fp16"
4428 return 1
4432 return 0;
4435 proc check_effective_target_arm_v8_2a_fp16_scalar_ok { } {
4436 return [check_cached_effective_target arm_v8_2a_fp16_scalar_ok \
4437 check_effective_target_arm_v8_2a_fp16_scalar_ok_nocache]
4440 # Return 1 if the target supports ARMv8.2 Adv.SIMD FP16 arithmetic
4441 # instructions, 0 otherwise. The test is valid for ARM and for AArch64.
4442 # Record the command line options needed.
4444 proc check_effective_target_arm_v8_2a_fp16_neon_ok_nocache { } {
4445 global et_arm_v8_2a_fp16_neon_flags
4446 set et_arm_v8_2a_fp16_neon_flags ""
4448 if { ![istarget arm*-*-*] && ![istarget aarch64*-*-*] } {
4449 return 0;
4452 # Iterate through sets of options to find the compiler flags that
4453 # need to be added to the -march option.
4454 foreach flags {"" "-mfpu=neon-fp-armv8" "-mfloat-abi=softfp" \
4455 "-mfpu=neon-fp-armv8 -mfloat-abi=softfp"} {
4456 if { [check_no_compiler_messages_nocache \
4457 arm_v8_2a_fp16_neon_ok object {
4458 #if !defined (__ARM_FEATURE_FP16_VECTOR_ARITHMETIC)
4459 #error "__ARM_FEATURE_FP16_VECTOR_ARITHMETIC not defined"
4460 #endif
4461 } "$flags -march=armv8.2-a+fp16"] } {
4462 set et_arm_v8_2a_fp16_neon_flags "$flags -march=armv8.2-a+fp16"
4463 return 1
4467 return 0;
4470 proc check_effective_target_arm_v8_2a_fp16_neon_ok { } {
4471 return [check_cached_effective_target arm_v8_2a_fp16_neon_ok \
4472 check_effective_target_arm_v8_2a_fp16_neon_ok_nocache]
4475 # Return 1 if the target supports ARMv8.2 Adv.SIMD Dot Product
4476 # instructions, 0 otherwise. The test is valid for ARM and for AArch64.
4477 # Record the command line options needed.
4479 proc check_effective_target_arm_v8_2a_dotprod_neon_ok_nocache { } {
4480 global et_arm_v8_2a_dotprod_neon_flags
4481 set et_arm_v8_2a_dotprod_neon_flags ""
4483 if { ![istarget arm*-*-*] && ![istarget aarch64*-*-*] } {
4484 return 0;
4487 # Iterate through sets of options to find the compiler flags that
4488 # need to be added to the -march option.
4489 foreach flags {"" "-mfloat-abi=softfp -mfpu=neon-fp-armv8" "-mfloat-abi=hard -mfpu=neon-fp-armv8"} {
4490 if { [check_no_compiler_messages_nocache \
4491 arm_v8_2a_dotprod_neon_ok object {
4492 #if !defined (__ARM_FEATURE_DOTPROD)
4493 #error "__ARM_FEATURE_DOTPROD not defined"
4494 #endif
4495 } "$flags -march=armv8.2-a+dotprod"] } {
4496 set et_arm_v8_2a_dotprod_neon_flags "$flags -march=armv8.2-a+dotprod"
4497 return 1
4501 return 0;
4504 proc check_effective_target_arm_v8_2a_dotprod_neon_ok { } {
4505 return [check_cached_effective_target arm_v8_2a_dotprod_neon_ok \
4506 check_effective_target_arm_v8_2a_dotprod_neon_ok_nocache]
4509 proc add_options_for_arm_v8_2a_dotprod_neon { flags } {
4510 if { ! [check_effective_target_arm_v8_2a_dotprod_neon_ok] } {
4511 return "$flags"
4513 global et_arm_v8_2a_dotprod_neon_flags
4514 return "$flags $et_arm_v8_2a_dotprod_neon_flags"
4517 # Return 1 if the target supports FP16 VFMAL and VFMSL
4518 # instructions, 0 otherwise.
4519 # Record the command line options needed.
4521 proc check_effective_target_arm_fp16fml_neon_ok_nocache { } {
4522 global et_arm_fp16fml_neon_flags
4523 set et_arm_fp16fml_neon_flags ""
4525 if { ![istarget arm*-*-*] } {
4526 return 0;
4529 # Iterate through sets of options to find the compiler flags that
4530 # need to be added to the -march option.
4531 foreach flags {"" "-mfloat-abi=softfp -mfpu=neon-fp-armv8" "-mfloat-abi=hard -mfpu=neon-fp-armv8"} {
4532 if { [check_no_compiler_messages_nocache \
4533 arm_fp16fml_neon_ok assembly {
4534 #include <arm_neon.h>
4535 float32x2_t
4536 foo (float32x2_t r, float16x4_t a, float16x4_t b)
4538 return vfmlal_high_u32 (r, a, b);
4540 } "$flags -march=armv8.2-a+fp16fml"] } {
4541 set et_arm_fp16fml_neon_flags "$flags -march=armv8.2-a+fp16fml"
4542 return 1
4546 return 0;
4549 proc check_effective_target_arm_fp16fml_neon_ok { } {
4550 return [check_cached_effective_target arm_fp16fml_neon_ok \
4551 check_effective_target_arm_fp16fml_neon_ok_nocache]
4554 proc add_options_for_arm_fp16fml_neon { flags } {
4555 if { ! [check_effective_target_arm_fp16fml_neon_ok] } {
4556 return "$flags"
4558 global et_arm_fp16fml_neon_flags
4559 return "$flags $et_arm_fp16fml_neon_flags"
4562 # Return 1 if the target supports executing ARMv8 NEON instructions, 0
4563 # otherwise.
4565 proc check_effective_target_arm_v8_neon_hw { } {
4566 return [check_runtime arm_v8_neon_hw_available {
4567 #include "arm_neon.h"
4569 main (void)
4571 float32x2_t a = { 1.0f, 2.0f };
4572 #ifdef __ARM_ARCH_ISA_A64
4573 asm ("frinta %0.2s, %1.2s"
4574 : "=w" (a)
4575 : "w" (a));
4576 #else
4577 asm ("vrinta.f32 %P0, %P1"
4578 : "=w" (a)
4579 : "0" (a));
4580 #endif
4581 return a[0] == 2.0f;
4583 } [add_options_for_arm_v8_neon ""]]
4586 # Return 1 if the target supports executing the ARMv8.1 Adv.SIMD extension, 0
4587 # otherwise. The test is valid for AArch64 and ARM.
4589 proc check_effective_target_arm_v8_1a_neon_hw { } {
4590 if { ![check_effective_target_arm_v8_1a_neon_ok] } {
4591 return 0;
4593 return [check_runtime arm_v8_1a_neon_hw_available {
4595 main (void)
4597 #ifdef __ARM_ARCH_ISA_A64
4598 __Int32x2_t a = {0, 1};
4599 __Int32x2_t b = {0, 2};
4600 __Int32x2_t result;
4602 asm ("sqrdmlah %0.2s, %1.2s, %2.2s"
4603 : "=w"(result)
4604 : "w"(a), "w"(b)
4605 : /* No clobbers. */);
4607 #else
4609 __simd64_int32_t a = {0, 1};
4610 __simd64_int32_t b = {0, 2};
4611 __simd64_int32_t result;
4613 asm ("vqrdmlah.s32 %P0, %P1, %P2"
4614 : "=w"(result)
4615 : "w"(a), "w"(b)
4616 : /* No clobbers. */);
4617 #endif
4619 return result[0];
4621 } [add_options_for_arm_v8_1a_neon ""]]
4624 # Return 1 if the target supports executing floating point instructions from
4625 # ARMv8.2 with the FP16 extension, 0 otherwise. The test is valid for ARM and
4626 # for AArch64.
4628 proc check_effective_target_arm_v8_2a_fp16_scalar_hw { } {
4629 if { ![check_effective_target_arm_v8_2a_fp16_scalar_ok] } {
4630 return 0;
4632 return [check_runtime arm_v8_2a_fp16_scalar_hw_available {
4634 main (void)
4636 __fp16 a = 1.0;
4637 __fp16 result;
4639 #ifdef __ARM_ARCH_ISA_A64
4641 asm ("fabs %h0, %h1"
4642 : "=w"(result)
4643 : "w"(a)
4644 : /* No clobbers. */);
4646 #else
4648 asm ("vabs.f16 %0, %1"
4649 : "=w"(result)
4650 : "w"(a)
4651 : /* No clobbers. */);
4653 #endif
4655 return (result == 1.0) ? 0 : 1;
4657 } [add_options_for_arm_v8_2a_fp16_scalar ""]]
4660 # Return 1 if the target supports executing Adv.SIMD instructions from ARMv8.2
4661 # with the FP16 extension, 0 otherwise. The test is valid for ARM and for
4662 # AArch64.
4664 proc check_effective_target_arm_v8_2a_fp16_neon_hw { } {
4665 if { ![check_effective_target_arm_v8_2a_fp16_neon_ok] } {
4666 return 0;
4668 return [check_runtime arm_v8_2a_fp16_neon_hw_available {
4670 main (void)
4672 #ifdef __ARM_ARCH_ISA_A64
4674 __Float16x4_t a = {1.0, -1.0, 1.0, -1.0};
4675 __Float16x4_t result;
4677 asm ("fabs %0.4h, %1.4h"
4678 : "=w"(result)
4679 : "w"(a)
4680 : /* No clobbers. */);
4682 #else
4684 __simd64_float16_t a = {1.0, -1.0, 1.0, -1.0};
4685 __simd64_float16_t result;
4687 asm ("vabs.f16 %P0, %P1"
4688 : "=w"(result)
4689 : "w"(a)
4690 : /* No clobbers. */);
4692 #endif
4694 return (result[0] == 1.0) ? 0 : 1;
4696 } [add_options_for_arm_v8_2a_fp16_neon ""]]
4699 # Return 1 if the target supports executing AdvSIMD instructions from ARMv8.2
4700 # with the Dot Product extension, 0 otherwise. The test is valid for ARM and for
4701 # AArch64.
4703 proc check_effective_target_arm_v8_2a_dotprod_neon_hw { } {
4704 if { ![check_effective_target_arm_v8_2a_dotprod_neon_ok] } {
4705 return 0;
4707 return [check_runtime arm_v8_2a_dotprod_neon_hw_available {
4708 #include "arm_neon.h"
4710 main (void)
4713 uint32x2_t results = {0,0};
4714 uint8x8_t a = {1,1,1,1,2,2,2,2};
4715 uint8x8_t b = {2,2,2,2,3,3,3,3};
4717 #ifdef __ARM_ARCH_ISA_A64
4718 asm ("udot %0.2s, %1.8b, %2.8b"
4719 : "=w"(results)
4720 : "w"(a), "w"(b)
4721 : /* No clobbers. */);
4723 #else
4724 asm ("vudot.u8 %P0, %P1, %P2"
4725 : "=w"(results)
4726 : "w"(a), "w"(b)
4727 : /* No clobbers. */);
4728 #endif
4730 return (results[0] == 8 && results[1] == 24) ? 1 : 0;
4732 } [add_options_for_arm_v8_2a_dotprod_neon ""]]
4735 # Return 1 if this is a ARM target with NEON enabled.
4737 proc check_effective_target_arm_neon { } {
4738 if { [check_effective_target_arm32] } {
4739 return [check_no_compiler_messages arm_neon object {
4740 #ifndef __ARM_NEON__
4741 #error not NEON
4742 #else
4743 int dummy;
4744 #endif
4746 } else {
4747 return 0
4751 proc check_effective_target_arm_neonv2 { } {
4752 if { [check_effective_target_arm32] } {
4753 return [check_no_compiler_messages arm_neon object {
4754 #ifndef __ARM_NEON__
4755 #error not NEON
4756 #else
4757 #ifndef __ARM_FEATURE_FMA
4758 #error not NEONv2
4759 #else
4760 int dummy;
4761 #endif
4762 #endif
4764 } else {
4765 return 0
4769 # Return 1 if this is an ARM target with load acquire and store release
4770 # instructions for 8-, 16- and 32-bit types.
4772 proc check_effective_target_arm_acq_rel { } {
4773 return [check_no_compiler_messages arm_acq_rel object {
4774 void
4775 load_acquire_store_release (void)
4777 asm ("lda r0, [r1]\n\t"
4778 "stl r0, [r1]\n\t"
4779 "ldah r0, [r1]\n\t"
4780 "stlh r0, [r1]\n\t"
4781 "ldab r0, [r1]\n\t"
4782 "stlb r0, [r1]"
4783 : : : "r0", "memory");
4788 # Add the options needed for MIPS Paired-Single.
4790 proc add_options_for_mpaired_single { flags } {
4791 if { ! [check_effective_target_mpaired_single] } {
4792 return "$flags"
4794 return "$flags -mpaired-single"
4797 # Add the options needed for MIPS SIMD Architecture.
4799 proc add_options_for_mips_msa { flags } {
4800 if { ! [check_effective_target_mips_msa] } {
4801 return "$flags"
4803 return "$flags -mmsa"
4806 # Return 1 if this a Loongson-2E or -2F target using an ABI that supports
4807 # the Loongson vector modes.
4809 proc check_effective_target_mips_loongson { } {
4810 return [check_no_compiler_messages loongson assembly {
4811 #if !defined(__mips_loongson_vector_rev)
4812 #error !__mips_loongson_vector_rev
4813 #endif
4817 # Return 1 if this is a MIPS target that supports the legacy NAN.
4819 proc check_effective_target_mips_nanlegacy { } {
4820 return [check_no_compiler_messages nanlegacy assembly {
4821 #include <stdlib.h>
4822 int main () { return 0; }
4823 } "-mnan=legacy"]
4826 # Return 1 if an MSA program can be compiled to object
4828 proc check_effective_target_mips_msa { } {
4829 if ![check_effective_target_nomips16] {
4830 return 0
4832 return [check_no_compiler_messages msa object {
4833 #if !defined(__mips_msa)
4834 #error "MSA NOT AVAIL"
4835 #else
4836 #if !(((__mips == 64) || (__mips == 32)) && (__mips_isa_rev >= 2))
4837 #error "MSA NOT AVAIL FOR ISA REV < 2"
4838 #endif
4839 #if !defined(__mips_hard_float)
4840 #error "MSA HARD_FLOAT REQUIRED"
4841 #endif
4842 #if __mips_fpr != 64
4843 #error "MSA 64-bit FPR REQUIRED"
4844 #endif
4845 #include <msa.h>
4847 int main()
4849 v8i16 v = __builtin_msa_ldi_h (1);
4851 return v[0];
4853 #endif
4854 } "-mmsa" ]
4857 # Return 1 if this is an ARM target that adheres to the ABI for the ARM
4858 # Architecture.
4860 proc check_effective_target_arm_eabi { } {
4861 return [check_no_compiler_messages arm_eabi object {
4862 #ifndef __ARM_EABI__
4863 #error not EABI
4864 #else
4865 int dummy;
4866 #endif
4870 # Return 1 if this is an ARM target that adheres to the hard-float variant of
4871 # the ABI for the ARM Architecture (e.g. -mfloat-abi=hard).
4873 proc check_effective_target_arm_hf_eabi { } {
4874 return [check_no_compiler_messages arm_hf_eabi object {
4875 #if !defined(__ARM_EABI__) || !defined(__ARM_PCS_VFP)
4876 #error not hard-float EABI
4877 #else
4878 int dummy;
4879 #endif
4883 # Return 1 if this is an ARM target supporting -mcpu=iwmmxt.
4884 # Some multilibs may be incompatible with this option.
4886 proc check_effective_target_arm_iwmmxt_ok { } {
4887 if { [check_effective_target_arm32] } {
4888 return [check_no_compiler_messages arm_iwmmxt_ok object {
4889 int dummy;
4890 } "-mcpu=iwmmxt"]
4891 } else {
4892 return 0
4896 # Return true if LDRD/STRD instructions are prefered over LDM/STM instructions
4897 # for an ARM target.
4898 proc check_effective_target_arm_prefer_ldrd_strd { } {
4899 if { ![check_effective_target_arm32] } {
4900 return 0;
4903 return [check_no_messages_and_pattern arm_prefer_ldrd_strd "strd\tr" assembly {
4904 void foo (void) { __asm__ ("" ::: "r4", "r5"); }
4905 } "-O2 -mthumb" ]
4908 # Return 1 if this is a PowerPC target supporting -meabi.
4910 proc check_effective_target_powerpc_eabi_ok { } {
4911 if { [istarget powerpc*-*-*] } {
4912 return [check_no_compiler_messages powerpc_eabi_ok object {
4913 int dummy;
4914 } "-meabi"]
4915 } else {
4916 return 0
4920 # Return 1 if this is a PowerPC target with floating-point registers.
4922 proc check_effective_target_powerpc_fprs { } {
4923 if { [istarget powerpc*-*-*]
4924 || [istarget rs6000-*-*] } {
4925 return [check_no_compiler_messages powerpc_fprs object {
4926 #ifdef __NO_FPRS__
4927 #error no FPRs
4928 #else
4929 int dummy;
4930 #endif
4932 } else {
4933 return 0
4937 # Return 1 if this is a PowerPC target with hardware double-precision
4938 # floating point.
4940 proc check_effective_target_powerpc_hard_double { } {
4941 if { [istarget powerpc*-*-*]
4942 || [istarget rs6000-*-*] } {
4943 return [check_no_compiler_messages powerpc_hard_double object {
4944 #ifdef _SOFT_DOUBLE
4945 #error soft double
4946 #else
4947 int dummy;
4948 #endif
4950 } else {
4951 return 0
4955 # Return 1 if this is a PowerPC target supporting -maltivec.
4957 proc check_effective_target_powerpc_altivec_ok { } {
4958 if { ([istarget powerpc*-*-*]
4959 && ![istarget powerpc-*-linux*paired*])
4960 || [istarget rs6000-*-*] } {
4961 # AltiVec is not supported on AIX before 5.3.
4962 if { [istarget powerpc*-*-aix4*]
4963 || [istarget powerpc*-*-aix5.1*]
4964 || [istarget powerpc*-*-aix5.2*] } {
4965 return 0
4967 return [check_no_compiler_messages powerpc_altivec_ok object {
4968 int dummy;
4969 } "-maltivec"]
4970 } else {
4971 return 0
4975 # Return 1 if this is a PowerPC target supporting -mpower8-vector
4977 proc check_effective_target_powerpc_p8vector_ok { } {
4978 if { ([istarget powerpc*-*-*]
4979 && ![istarget powerpc-*-linux*paired*])
4980 || [istarget rs6000-*-*] } {
4981 # AltiVec is not supported on AIX before 5.3.
4982 if { [istarget powerpc*-*-aix4*]
4983 || [istarget powerpc*-*-aix5.1*]
4984 || [istarget powerpc*-*-aix5.2*] } {
4985 return 0
4987 return [check_no_compiler_messages powerpc_p8vector_ok object {
4988 int main (void) {
4989 #ifdef __MACH__
4990 asm volatile ("xxlorc vs0,vs0,vs0");
4991 #else
4992 asm volatile ("xxlorc 0,0,0");
4993 #endif
4994 return 0;
4996 } "-mpower8-vector"]
4997 } else {
4998 return 0
5002 # Return 1 if this is a PowerPC target supporting -mpower9-vector
5004 proc check_effective_target_powerpc_p9vector_ok { } {
5005 if { ([istarget powerpc*-*-*]
5006 && ![istarget powerpc-*-linux*paired*])
5007 || [istarget rs6000-*-*] } {
5008 # AltiVec is not supported on AIX before 5.3.
5009 if { [istarget powerpc*-*-aix4*]
5010 || [istarget powerpc*-*-aix5.1*]
5011 || [istarget powerpc*-*-aix5.2*] } {
5012 return 0
5014 return [check_no_compiler_messages powerpc_p9vector_ok object {
5015 int main (void) {
5016 long e = -1;
5017 vector double v = (vector double) { 0.0, 0.0 };
5018 asm ("xsxexpdp %0,%1" : "+r" (e) : "wa" (v));
5019 return e;
5021 } "-mpower9-vector"]
5022 } else {
5023 return 0
5027 # Return 1 if this is a PowerPC target supporting -mmodulo
5029 proc check_effective_target_powerpc_p9modulo_ok { } {
5030 if { ([istarget powerpc*-*-*]
5031 && ![istarget powerpc-*-linux*paired*])
5032 || [istarget rs6000-*-*] } {
5033 # AltiVec is not supported on AIX before 5.3.
5034 if { [istarget powerpc*-*-aix4*]
5035 || [istarget powerpc*-*-aix5.1*]
5036 || [istarget powerpc*-*-aix5.2*] } {
5037 return 0
5039 return [check_no_compiler_messages powerpc_p9modulo_ok object {
5040 int main (void) {
5041 int i = 5, j = 3, r = -1;
5042 asm ("modsw %0,%1,%2" : "+r" (r) : "r" (i), "r" (j));
5043 return (r == 2);
5045 } "-mmodulo"]
5046 } else {
5047 return 0
5051 # Return 1 if this is a PowerPC target supporting -mfloat128 via either
5052 # software emulation on power7/power8 systems or hardware support on power9.
5054 proc check_effective_target_powerpc_float128_sw_ok { } {
5055 if { ([istarget powerpc*-*-*]
5056 && ![istarget powerpc-*-linux*paired*])
5057 || [istarget rs6000-*-*] } {
5058 # AltiVec is not supported on AIX before 5.3.
5059 if { [istarget powerpc*-*-aix4*]
5060 || [istarget powerpc*-*-aix5.1*]
5061 || [istarget powerpc*-*-aix5.2*] } {
5062 return 0
5064 return [check_no_compiler_messages powerpc_float128_sw_ok object {
5065 volatile __float128 x = 1.0q;
5066 volatile __float128 y = 2.0q;
5067 int main() {
5068 __float128 z = x + y;
5069 return (z == 3.0q);
5071 } "-mfloat128 -mvsx"]
5072 } else {
5073 return 0
5077 # Return 1 if this is a PowerPC target supporting -mfloat128 via hardware
5078 # support on power9.
5080 proc check_effective_target_powerpc_float128_hw_ok { } {
5081 if { ([istarget powerpc*-*-*]
5082 && ![istarget powerpc-*-linux*paired*])
5083 || [istarget rs6000-*-*] } {
5084 # AltiVec is not supported on AIX before 5.3.
5085 if { [istarget powerpc*-*-aix4*]
5086 || [istarget powerpc*-*-aix5.1*]
5087 || [istarget powerpc*-*-aix5.2*] } {
5088 return 0
5090 return [check_no_compiler_messages powerpc_float128_hw_ok object {
5091 volatile __float128 x = 1.0q;
5092 volatile __float128 y = 2.0q;
5093 int main() {
5094 __float128 z;
5095 __asm__ ("xsaddqp %0,%1,%2" : "=v" (z) : "v" (x), "v" (y));
5096 return (z == 3.0q);
5098 } "-mfloat128-hardware"]
5099 } else {
5100 return 0
5104 # Return 1 if this is a PowerPC target supporting -mvsx
5106 proc check_effective_target_powerpc_vsx_ok { } {
5107 if { ([istarget powerpc*-*-*]
5108 && ![istarget powerpc-*-linux*paired*])
5109 || [istarget rs6000-*-*] } {
5110 # VSX is not supported on AIX before 7.1.
5111 if { [istarget powerpc*-*-aix4*]
5112 || [istarget powerpc*-*-aix5*]
5113 || [istarget powerpc*-*-aix6*] } {
5114 return 0
5116 return [check_no_compiler_messages powerpc_vsx_ok object {
5117 int main (void) {
5118 #ifdef __MACH__
5119 asm volatile ("xxlor vs0,vs0,vs0");
5120 #else
5121 asm volatile ("xxlor 0,0,0");
5122 #endif
5123 return 0;
5125 } "-mvsx"]
5126 } else {
5127 return 0
5131 # Return 1 if this is a PowerPC target supporting -mhtm
5133 proc check_effective_target_powerpc_htm_ok { } {
5134 if { ([istarget powerpc*-*-*]
5135 && ![istarget powerpc-*-linux*paired*])
5136 || [istarget rs6000-*-*] } {
5137 # HTM is not supported on AIX yet.
5138 if { [istarget powerpc*-*-aix*] } {
5139 return 0
5141 return [check_no_compiler_messages powerpc_htm_ok object {
5142 int main (void) {
5143 asm volatile ("tbegin. 0");
5144 return 0;
5146 } "-mhtm"]
5147 } else {
5148 return 0
5152 # Return 1 if the target supports executing HTM hardware instructions,
5153 # 0 otherwise. Cache the result.
5155 proc check_htm_hw_available { } {
5156 return [check_cached_effective_target htm_hw_available {
5157 # For now, disable on Darwin
5158 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] || [istarget *-*-darwin*]} {
5159 expr 0
5160 } else {
5161 check_runtime_nocache htm_hw_available {
5162 int main()
5164 __builtin_ttest ();
5165 return 0;
5167 } "-mhtm"
5171 # Return 1 if this is a PowerPC target supporting -mcpu=cell.
5173 proc check_effective_target_powerpc_ppu_ok { } {
5174 if [check_effective_target_powerpc_altivec_ok] {
5175 return [check_no_compiler_messages cell_asm_available object {
5176 int main (void) {
5177 #ifdef __MACH__
5178 asm volatile ("lvlx v0,v0,v0");
5179 #else
5180 asm volatile ("lvlx 0,0,0");
5181 #endif
5182 return 0;
5185 } else {
5186 return 0
5190 # Return 1 if this is a PowerPC target that supports SPU.
5192 proc check_effective_target_powerpc_spu { } {
5193 if { [istarget powerpc*-*-linux*] } {
5194 return [check_effective_target_powerpc_altivec_ok]
5195 } else {
5196 return 0
5200 # Return 1 if this is a PowerPC SPE target. The check includes options
5201 # specified by dg-options for this test, so don't cache the result.
5203 proc check_effective_target_powerpc_spe_nocache { } {
5204 if { [istarget powerpc*-*-*] } {
5205 return [check_no_compiler_messages_nocache powerpc_spe object {
5206 #ifndef __SPE__
5207 #error not SPE
5208 #else
5209 int dummy;
5210 #endif
5211 } [current_compiler_flags]]
5212 } else {
5213 return 0
5217 # Return 1 if this is a PowerPC target with SPE enabled.
5219 proc check_effective_target_powerpc_spe { } {
5220 if { [istarget powerpc*-*-*] } {
5221 return [check_no_compiler_messages powerpc_spe object {
5222 #ifndef __SPE__
5223 #error not SPE
5224 #else
5225 int dummy;
5226 #endif
5228 } else {
5229 return 0
5233 # Return 1 if this is a PowerPC target with Altivec enabled.
5235 proc check_effective_target_powerpc_altivec { } {
5236 if { [istarget powerpc*-*-*] } {
5237 return [check_no_compiler_messages powerpc_altivec object {
5238 #ifndef __ALTIVEC__
5239 #error not Altivec
5240 #else
5241 int dummy;
5242 #endif
5244 } else {
5245 return 0
5249 # Return 1 if this is a PowerPC 405 target. The check includes options
5250 # specified by dg-options for this test, so don't cache the result.
5252 proc check_effective_target_powerpc_405_nocache { } {
5253 if { [istarget powerpc*-*-*] || [istarget rs6000-*-*] } {
5254 return [check_no_compiler_messages_nocache powerpc_405 object {
5255 #ifdef __PPC405__
5256 int dummy;
5257 #else
5258 #error not a PPC405
5259 #endif
5260 } [current_compiler_flags]]
5261 } else {
5262 return 0
5266 # Return 1 if this is a PowerPC target using the ELFv2 ABI.
5268 proc check_effective_target_powerpc_elfv2 { } {
5269 if { [istarget powerpc*-*-*] } {
5270 return [check_no_compiler_messages powerpc_elfv2 object {
5271 #if _CALL_ELF != 2
5272 #error not ELF v2 ABI
5273 #else
5274 int dummy;
5275 #endif
5277 } else {
5278 return 0
5282 # Return 1 if this is a SPU target with a toolchain that
5283 # supports automatic overlay generation.
5285 proc check_effective_target_spu_auto_overlay { } {
5286 if { [istarget spu*-*-elf*] } {
5287 return [check_no_compiler_messages spu_auto_overlay executable {
5288 int main (void) { }
5289 } "-Wl,--auto-overlay" ]
5290 } else {
5291 return 0
5295 # The VxWorks SPARC simulator accepts only EM_SPARC executables and
5296 # chokes on EM_SPARC32PLUS or EM_SPARCV9 executables. Return 1 if the
5297 # test environment appears to run executables on such a simulator.
5299 proc check_effective_target_ultrasparc_hw { } {
5300 return [check_runtime ultrasparc_hw {
5301 int main() { return 0; }
5302 } "-mcpu=ultrasparc"]
5305 # Return 1 if the test environment supports executing UltraSPARC VIS2
5306 # instructions. We check this by attempting: "bmask %g0, %g0, %g0"
5308 proc check_effective_target_ultrasparc_vis2_hw { } {
5309 return [check_runtime ultrasparc_vis2_hw {
5310 int main() { __asm__(".word 0x81b00320"); return 0; }
5311 } "-mcpu=ultrasparc3"]
5314 # Return 1 if the test environment supports executing UltraSPARC VIS3
5315 # instructions. We check this by attempting: "addxc %g0, %g0, %g0"
5317 proc check_effective_target_ultrasparc_vis3_hw { } {
5318 return [check_runtime ultrasparc_vis3_hw {
5319 int main() { __asm__(".word 0x81b00220"); return 0; }
5320 } "-mcpu=niagara3"]
5323 # Return 1 if this is a SPARC-V9 target.
5325 proc check_effective_target_sparc_v9 { } {
5326 if { [istarget sparc*-*-*] } {
5327 return [check_no_compiler_messages sparc_v9 object {
5328 int main (void) {
5329 asm volatile ("return %i7+8");
5330 return 0;
5333 } else {
5334 return 0
5338 # Return 1 if this is a SPARC target with VIS enabled.
5340 proc check_effective_target_sparc_vis { } {
5341 if { [istarget sparc*-*-*] } {
5342 return [check_no_compiler_messages sparc_vis object {
5343 #ifndef __VIS__
5344 #error not VIS
5345 #else
5346 int dummy;
5347 #endif
5349 } else {
5350 return 0
5354 # Return 1 if the target supports hardware vector shift operation.
5356 proc check_effective_target_vect_shift { } {
5357 global et_vect_shift_saved
5358 global et_index
5360 if [info exists et_vect_shift_saved($et_index)] {
5361 verbose "check_effective_target_vect_shift: using cached result" 2
5362 } else {
5363 set et_vect_shift_saved($et_index) 0
5364 if { ([istarget powerpc*-*-*]
5365 && ![istarget powerpc-*-linux*paired*])
5366 || [istarget ia64-*-*]
5367 || [istarget i?86-*-*] || [istarget x86_64-*-*]
5368 || [istarget aarch64*-*-*]
5369 || [is-effective-target arm_neon]
5370 || ([istarget mips*-*-*]
5371 && ([et-is-effective-target mips_msa]
5372 || [et-is-effective-target mips_loongson]))
5373 || ([istarget s390*-*-*]
5374 && [check_effective_target_s390_vx]) } {
5375 set et_vect_shift_saved($et_index) 1
5379 verbose "check_effective_target_vect_shift:\
5380 returning $et_vect_shift_saved($et_index)" 2
5381 return $et_vect_shift_saved($et_index)
5384 proc check_effective_target_whole_vector_shift { } {
5385 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
5386 || [istarget ia64-*-*]
5387 || [istarget aarch64*-*-*]
5388 || [istarget powerpc64*-*-*]
5389 || ([is-effective-target arm_neon]
5390 && [check_effective_target_arm_little_endian])
5391 || ([istarget mips*-*-*]
5392 && [et-is-effective-target mips_loongson])
5393 || ([istarget s390*-*-*]
5394 && [check_effective_target_s390_vx]) } {
5395 set answer 1
5396 } else {
5397 set answer 0
5400 verbose "check_effective_target_vect_long: returning $answer" 2
5401 return $answer
5404 # Return 1 if the target supports vector bswap operations.
5406 proc check_effective_target_vect_bswap { } {
5407 global et_vect_bswap_saved
5408 global et_index
5410 if [info exists et_vect_bswap_saved($et_index)] {
5411 verbose "check_effective_target_vect_bswap: using cached result" 2
5412 } else {
5413 set et_vect_bswap_saved($et_index) 0
5414 if { [istarget aarch64*-*-*]
5415 || [is-effective-target arm_neon]
5417 set et_vect_bswap_saved($et_index) 1
5421 verbose "check_effective_target_vect_bswap:\
5422 returning $et_vect_bswap_saved($et_index)" 2
5423 return $et_vect_bswap_saved($et_index)
5426 # Return 1 if the target supports hardware vector shift operation for char.
5428 proc check_effective_target_vect_shift_char { } {
5429 global et_vect_shift_char_saved
5430 global et_index
5432 if [info exists et_vect_shift_char_saved($et_index)] {
5433 verbose "check_effective_target_vect_shift_char: using cached result" 2
5434 } else {
5435 set et_vect_shift_char_saved($et_index) 0
5436 if { ([istarget powerpc*-*-*]
5437 && ![istarget powerpc-*-linux*paired*])
5438 || [is-effective-target arm_neon]
5439 || ([istarget mips*-*-*]
5440 && [et-is-effective-target mips_msa])
5441 || ([istarget s390*-*-*]
5442 && [check_effective_target_s390_vx]) } {
5443 set et_vect_shift_char_saved($et_index) 1
5447 verbose "check_effective_target_vect_shift_char:\
5448 returning $et_vect_shift_char_saved($et_index)" 2
5449 return $et_vect_shift_char_saved($et_index)
5452 # Return 1 if the target supports hardware vectors of long, 0 otherwise.
5454 # This can change for different subtargets so do not cache the result.
5456 proc check_effective_target_vect_long { } {
5457 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
5458 || (([istarget powerpc*-*-*]
5459 && ![istarget powerpc-*-linux*paired*])
5460 && [check_effective_target_ilp32])
5461 || [is-effective-target arm_neon]
5462 || ([istarget sparc*-*-*] && [check_effective_target_ilp32])
5463 || [istarget aarch64*-*-*]
5464 || ([istarget mips*-*-*]
5465 && [et-is-effective-target mips_msa])
5466 || ([istarget s390*-*-*]
5467 && [check_effective_target_s390_vx]) } {
5468 set answer 1
5469 } else {
5470 set answer 0
5473 verbose "check_effective_target_vect_long: returning $answer" 2
5474 return $answer
5477 # Return 1 if the target supports hardware vectors of float, 0 otherwise.
5479 # This won't change for different subtargets so cache the result.
5481 proc check_effective_target_vect_float { } {
5482 global et_vect_float_saved
5483 global et_index
5485 if [info exists et_vect_float_saved($et_index)] {
5486 verbose "check_effective_target_vect_float: using cached result" 2
5487 } else {
5488 set et_vect_float_saved($et_index) 0
5489 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
5490 || [istarget powerpc*-*-*]
5491 || [istarget spu-*-*]
5492 || [istarget mips-sde-elf]
5493 || [istarget mipsisa64*-*-*]
5494 || [istarget ia64-*-*]
5495 || [istarget aarch64*-*-*]
5496 || ([istarget mips*-*-*]
5497 && [et-is-effective-target mips_msa])
5498 || [is-effective-target arm_neon]
5499 || ([istarget s390*-*-*]
5500 && [check_effective_target_s390_vxe]) } {
5501 set et_vect_float_saved($et_index) 1
5505 verbose "check_effective_target_vect_float:\
5506 returning $et_vect_float_saved($et_index)" 2
5507 return $et_vect_float_saved($et_index)
5510 # Return 1 if the target supports hardware vectors of double, 0 otherwise.
5512 # This won't change for different subtargets so cache the result.
5514 proc check_effective_target_vect_double { } {
5515 global et_vect_double_saved
5516 global et_index
5518 if [info exists et_vect_double_saved($et_index)] {
5519 verbose "check_effective_target_vect_double: using cached result" 2
5520 } else {
5521 set et_vect_double_saved($et_index) 0
5522 if { (([istarget i?86-*-*] || [istarget x86_64-*-*])
5523 && [check_no_compiler_messages vect_double assembly {
5524 #ifdef __tune_atom__
5525 # error No double vectorizer support.
5526 #endif
5528 || [istarget aarch64*-*-*]
5529 || [istarget spu-*-*]
5530 || ([istarget powerpc*-*-*] && [check_vsx_hw_available])
5531 || ([istarget mips*-*-*]
5532 && [et-is-effective-target mips_msa])
5533 || ([istarget s390*-*-*]
5534 && [check_effective_target_s390_vx]) } {
5535 set et_vect_double_saved($et_index) 1
5539 verbose "check_effective_target_vect_double:\
5540 returning $et_vect_double_saved($et_index)" 2
5541 return $et_vect_double_saved($et_index)
5544 # Return 1 if the target supports hardware vectors of long long, 0 otherwise.
5546 # This won't change for different subtargets so cache the result.
5548 proc check_effective_target_vect_long_long { } {
5549 global et_vect_long_long_saved
5550 global et_index
5552 if [info exists et_vect_long_long_saved($et_index)] {
5553 verbose "check_effective_target_vect_long_long: using cached result" 2
5554 } else {
5555 set et_vect_long_long_saved($et_index) 0
5556 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
5557 || ([istarget mips*-*-*]
5558 && [et-is-effective-target mips_msa])
5559 || ([istarget s390*-*-*]
5560 && [check_effective_target_s390_vx]) } {
5561 set et_vect_long_long_saved($et_index) 1
5565 verbose "check_effective_target_vect_long_long:\
5566 returning $et_vect_long_long_saved($et_index)" 2
5567 return $et_vect_long_long_saved($et_index)
5571 # Return 1 if the target plus current options does not support a vector
5572 # max instruction on "int", 0 otherwise.
5574 # This won't change for different subtargets so cache the result.
5576 proc check_effective_target_vect_no_int_min_max { } {
5577 global et_vect_no_int_min_max_saved
5578 global et_index
5580 if [info exists et_vect_no_int_min_max_saved($et_index)] {
5581 verbose "check_effective_target_vect_no_int_min_max:\
5582 using cached result" 2
5583 } else {
5584 set et_vect_no_int_min_max_saved($et_index) 0
5585 if { [istarget sparc*-*-*]
5586 || [istarget spu-*-*]
5587 || [istarget alpha*-*-*]
5588 || ([istarget mips*-*-*]
5589 && [et-is-effective-target mips_loongson]) } {
5590 set et_vect_no_int_min_max_saved($et_index) 1
5593 verbose "check_effective_target_vect_no_int_min_max:\
5594 returning $et_vect_no_int_min_max_saved($et_index)" 2
5595 return $et_vect_no_int_min_max_saved($et_index)
5598 # Return 1 if the target plus current options does not support a vector
5599 # add instruction on "int", 0 otherwise.
5601 # This won't change for different subtargets so cache the result.
5603 proc check_effective_target_vect_no_int_add { } {
5604 global et_vect_no_int_add_saved
5605 global et_index
5607 if [info exists et_vect_no_int_add_saved($et_index)] {
5608 verbose "check_effective_target_vect_no_int_add: using cached result" 2
5609 } else {
5610 set et_vect_no_int_add_saved($et_index) 0
5611 # Alpha only supports vector add on V8QI and V4HI.
5612 if { [istarget alpha*-*-*] } {
5613 set et_vect_no_int_add_saved($et_index) 1
5616 verbose "check_effective_target_vect_no_int_add:\
5617 returning $et_vect_no_int_add_saved($et_index)" 2
5618 return $et_vect_no_int_add_saved($et_index)
5621 # Return 1 if the target plus current options does not support vector
5622 # bitwise instructions, 0 otherwise.
5624 # This won't change for different subtargets so cache the result.
5626 proc check_effective_target_vect_no_bitwise { } {
5627 global et_vect_no_bitwise_saved
5628 global et_index
5630 if [info exists et_vect_no_bitwise_saved($et_index)] {
5631 verbose "check_effective_target_vect_no_bitwise: using cached result" 2
5632 } else {
5633 set et_vect_no_bitwise_saved($et_index) 0
5635 verbose "check_effective_target_vect_no_bitwise:\
5636 returning $et_vect_no_bitwise_saved($et_index)" 2
5637 return $et_vect_no_bitwise_saved($et_index)
5640 # Return 1 if the target plus current options supports vector permutation,
5641 # 0 otherwise.
5643 # This won't change for different subtargets so cache the result.
5645 proc check_effective_target_vect_perm { } {
5646 global et_vect_perm_saved
5647 global et_index
5649 if [info exists et_vect_perm_saved($et_index)] {
5650 verbose "check_effective_target_vect_perm: using cached result" 2
5651 } else {
5652 set et_vect_perm_saved($et_index) 0
5653 if { [is-effective-target arm_neon]
5654 || ([istarget aarch64*-*-*]
5655 && ![check_effective_target_vect_variable_length])
5656 || [istarget powerpc*-*-*]
5657 || [istarget spu-*-*]
5658 || [istarget i?86-*-*] || [istarget x86_64-*-*]
5659 || ([istarget mips*-*-*]
5660 && ([et-is-effective-target mpaired_single]
5661 || [et-is-effective-target mips_msa]))
5662 || ([istarget s390*-*-*]
5663 && [check_effective_target_s390_vx]) } {
5664 set et_vect_perm_saved($et_index) 1
5667 verbose "check_effective_target_vect_perm:\
5668 returning $et_vect_perm_saved($et_index)" 2
5669 return $et_vect_perm_saved($et_index)
5672 # Return 1 if, for some VF:
5674 # - the target's default vector size is VF * ELEMENT_BITS bits
5676 # - it is possible to implement the equivalent of:
5678 # int<ELEMENT_BITS>_t s1[COUNT][COUNT * VF], s2[COUNT * VF];
5679 # for (int i = 0; i < COUNT; ++i)
5680 # for (int j = 0; j < COUNT * VF; ++j)
5681 # s1[i][j] = s2[j - j % COUNT + i]
5683 # using only a single 2-vector permute for each vector in s1.
5685 # E.g. for COUNT == 3 and vector length 4, the two arrays would be:
5687 # s2 | a0 a1 a2 a3 | b0 b1 b2 b3 | c0 c1 c2 c3
5688 # ------+-------------+-------------+------------
5689 # s1[0] | a0 a0 a0 a3 | a3 a3 b2 b2 | b2 c1 c1 c1
5690 # s1[1] | a1 a1 a1 b0 | b0 b0 b3 b3 | b3 c2 c2 c2
5691 # s1[2] | a2 a2 a2 b1 | b1 b1 c0 c0 | c0 c3 c3 c3
5693 # Each s1 permute requires only two of a, b and c.
5695 # The distance between the start of vector n in s1[0] and the start
5696 # of vector n in s2 is:
5698 # A = (n * VF) % COUNT
5700 # The corresponding value for the end of vector n is:
5702 # B = (n * VF + VF - 1) % COUNT
5704 # Subtracting i from each value gives the corresponding difference
5705 # for s1[i]. The condition being tested by this function is false
5706 # iff A - i > 0 and B - i < 0 for some i and n, such that the first
5707 # element for s1[i] comes from vector n - 1 of s2 and the last element
5708 # comes from vector n + 1 of s2. The condition is therefore true iff
5709 # A <= B for all n. This is turn means the condition is true iff:
5711 # (n * VF) % COUNT + (VF - 1) % COUNT < COUNT
5713 # for all n. COUNT - (n * VF) % COUNT is bounded by gcd (VF, COUNT),
5714 # and will be that value for at least one n in [0, COUNT), so we want:
5716 # (VF - 1) % COUNT < gcd (VF, COUNT)
5718 proc vect_perm_supported { count element_bits } {
5719 set vector_bits [lindex [available_vector_sizes] 0]
5720 if { $vector_bits <= 0 } {
5721 return 0
5723 set vf [expr { $vector_bits / $element_bits }]
5725 # Compute gcd (VF, COUNT).
5726 set gcd $vf
5727 set temp1 $count
5728 while { $temp1 > 0 } {
5729 set temp2 [expr { $gcd % $temp1 }]
5730 set gcd $temp1
5731 set temp1 $temp2
5733 return [expr { ($vf - 1) % $count < $gcd }]
5736 # Return 1 if the target supports SLP permutation of 3 vectors when each
5737 # element has 32 bits.
5739 proc check_effective_target_vect_perm3_int { } {
5740 return [expr { [check_effective_target_vect_perm]
5741 && [vect_perm_supported 3 32] }]
5744 # Return 1 if the target plus current options supports vector permutation
5745 # on byte-sized elements, 0 otherwise.
5747 # This won't change for different subtargets so cache the result.
5749 proc check_effective_target_vect_perm_byte { } {
5750 global et_vect_perm_byte_saved
5751 global et_index
5753 if [info exists et_vect_perm_byte_saved($et_index)] {
5754 verbose "check_effective_target_vect_perm_byte: using cached result" 2
5755 } else {
5756 set et_vect_perm_byte_saved($et_index) 0
5757 if { ([is-effective-target arm_neon]
5758 && [is-effective-target arm_little_endian])
5759 || ([istarget aarch64*-*-*]
5760 && [is-effective-target aarch64_little_endian]
5761 && ![check_effective_target_vect_variable_length])
5762 || [istarget powerpc*-*-*]
5763 || [istarget spu-*-*]
5764 || ([istarget mips-*.*]
5765 && [et-is-effective-target mips_msa])
5766 || ([istarget s390*-*-*]
5767 && [check_effective_target_s390_vx]) } {
5768 set et_vect_perm_byte_saved($et_index) 1
5771 verbose "check_effective_target_vect_perm_byte:\
5772 returning $et_vect_perm_byte_saved($et_index)" 2
5773 return $et_vect_perm_byte_saved($et_index)
5776 # Return 1 if the target supports SLP permutation of 3 vectors when each
5777 # element has 8 bits.
5779 proc check_effective_target_vect_perm3_byte { } {
5780 return [expr { [check_effective_target_vect_perm_byte]
5781 && [vect_perm_supported 3 8] }]
5784 # Return 1 if the target plus current options supports vector permutation
5785 # on short-sized elements, 0 otherwise.
5787 # This won't change for different subtargets so cache the result.
5789 proc check_effective_target_vect_perm_short { } {
5790 global et_vect_perm_short_saved
5791 global et_index
5793 if [info exists et_vect_perm_short_saved($et_index)] {
5794 verbose "check_effective_target_vect_perm_short: using cached result" 2
5795 } else {
5796 set et_vect_perm_short_saved($et_index) 0
5797 if { ([is-effective-target arm_neon]
5798 && [is-effective-target arm_little_endian])
5799 || ([istarget aarch64*-*-*]
5800 && [is-effective-target aarch64_little_endian]
5801 && ![check_effective_target_vect_variable_length])
5802 || [istarget powerpc*-*-*]
5803 || [istarget spu-*-*]
5804 || ([istarget mips*-*-*]
5805 && [et-is-effective-target mips_msa])
5806 || ([istarget s390*-*-*]
5807 && [check_effective_target_s390_vx]) } {
5808 set et_vect_perm_short_saved($et_index) 1
5811 verbose "check_effective_target_vect_perm_short:\
5812 returning $et_vect_perm_short_saved($et_index)" 2
5813 return $et_vect_perm_short_saved($et_index)
5816 # Return 1 if the target supports SLP permutation of 3 vectors when each
5817 # element has 16 bits.
5819 proc check_effective_target_vect_perm3_short { } {
5820 return [expr { [check_effective_target_vect_perm_short]
5821 && [vect_perm_supported 3 16] }]
5824 # Return 1 if the target plus current options supports folding of
5825 # copysign into XORSIGN.
5827 # This won't change for different subtargets so cache the result.
5829 proc check_effective_target_xorsign { } {
5830 global et_xorsign_saved
5831 global et_index
5833 if [info exists et_xorsign_saved($et_index)] {
5834 verbose "check_effective_target_xorsign: using cached result" 2
5835 } else {
5836 set et_xorsign_saved($et_index) 0
5837 if { [istarget aarch64*-*-*] || [istarget arm*-*-*] } {
5838 set et_xorsign_saved($et_index) 1
5841 verbose "check_effective_target_xorsign:\
5842 returning $et_xorsign_saved($et_index)" 2
5843 return $et_xorsign_saved($et_index)
5846 # Return 1 if the target plus current options supports a vector
5847 # widening summation of *short* args into *int* result, 0 otherwise.
5849 # This won't change for different subtargets so cache the result.
5851 proc check_effective_target_vect_widen_sum_hi_to_si_pattern { } {
5852 global et_vect_widen_sum_hi_to_si_pattern_saved
5853 global et_index
5855 if [info exists et_vect_widen_sum_hi_to_si_pattern_saved($et_index)] {
5856 verbose "check_effective_target_vect_widen_sum_hi_to_si_pattern:\
5857 using cached result" 2
5858 } else {
5859 set et_vect_widen_sum_hi_to_si_pattern_saved($et_index) 0
5860 if { [istarget powerpc*-*-*]
5861 || ([istarget aarch64*-*-*]
5862 && ![check_effective_target_aarch64_sve])
5863 || [is-effective-target arm_neon]
5864 || [istarget ia64-*-*] } {
5865 set et_vect_widen_sum_hi_to_si_pattern_saved($et_index) 1
5868 verbose "check_effective_target_vect_widen_sum_hi_to_si_pattern:\
5869 returning $et_vect_widen_sum_hi_to_si_pattern_saved($et_index)" 2
5870 return $et_vect_widen_sum_hi_to_si_pattern_saved($et_index)
5873 # Return 1 if the target plus current options supports a vector
5874 # widening summation of *short* args into *int* result, 0 otherwise.
5875 # A target can also support this widening summation if it can support
5876 # promotion (unpacking) from shorts to ints.
5878 # This won't change for different subtargets so cache the result.
5880 proc check_effective_target_vect_widen_sum_hi_to_si { } {
5881 global et_vect_widen_sum_hi_to_si_saved
5882 global et_index
5884 if [info exists et_vect_widen_sum_hi_to_si_saved($et_index)] {
5885 verbose "check_effective_target_vect_widen_sum_hi_to_si:\
5886 using cached result" 2
5887 } else {
5888 set et_vect_widen_sum_hi_to_si_saved($et_index) \
5889 [check_effective_target_vect_unpack]
5890 if { [istarget powerpc*-*-*]
5891 || [istarget ia64-*-*] } {
5892 set et_vect_widen_sum_hi_to_si_saved($et_index) 1
5895 verbose "check_effective_target_vect_widen_sum_hi_to_si:\
5896 returning $et_vect_widen_sum_hi_to_si_saved($et_index)" 2
5897 return $et_vect_widen_sum_hi_to_si_saved($et_index)
5900 # Return 1 if the target plus current options supports a vector
5901 # widening summation of *char* args into *short* result, 0 otherwise.
5902 # A target can also support this widening summation if it can support
5903 # promotion (unpacking) from chars to shorts.
5905 # This won't change for different subtargets so cache the result.
5907 proc check_effective_target_vect_widen_sum_qi_to_hi { } {
5908 global et_vect_widen_sum_qi_to_hi_saved
5909 global et_index
5911 if [info exists et_vect_widen_sum_qi_to_hi_saved($et_index)] {
5912 verbose "check_effective_target_vect_widen_sum_qi_to_hi:\
5913 using cached result" 2
5914 } else {
5915 set et_vect_widen_sum_qi_to_hi_saved($et_index) 0
5916 if { [check_effective_target_vect_unpack]
5917 || [is-effective-target arm_neon]
5918 || [istarget ia64-*-*] } {
5919 set et_vect_widen_sum_qi_to_hi_saved($et_index) 1
5922 verbose "check_effective_target_vect_widen_sum_qi_to_hi:\
5923 returning $et_vect_widen_sum_qi_to_hi_saved($et_index)" 2
5924 return $et_vect_widen_sum_qi_to_hi_saved($et_index)
5927 # Return 1 if the target plus current options supports a vector
5928 # widening summation of *char* args into *int* result, 0 otherwise.
5930 # This won't change for different subtargets so cache the result.
5932 proc check_effective_target_vect_widen_sum_qi_to_si { } {
5933 global et_vect_widen_sum_qi_to_si_saved
5934 global et_index
5936 if [info exists et_vect_widen_sum_qi_to_si_saved($et_index)] {
5937 verbose "check_effective_target_vect_widen_sum_qi_to_si:\
5938 using cached result" 2
5939 } else {
5940 set et_vect_widen_sum_qi_to_si_saved($et_index) 0
5941 if { [istarget powerpc*-*-*] } {
5942 set et_vect_widen_sum_qi_to_si_saved($et_index) 1
5945 verbose "check_effective_target_vect_widen_sum_qi_to_si:\
5946 returning $et_vect_widen_sum_qi_to_si_saved($et_index)" 2
5947 return $et_vect_widen_sum_qi_to_si_saved($et_index)
5950 # Return 1 if the target plus current options supports a vector
5951 # widening multiplication of *char* args into *short* result, 0 otherwise.
5952 # A target can also support this widening multplication if it can support
5953 # promotion (unpacking) from chars to shorts, and vect_short_mult (non-widening
5954 # multiplication of shorts).
5956 # This won't change for different subtargets so cache the result.
5959 proc check_effective_target_vect_widen_mult_qi_to_hi { } {
5960 global et_vect_widen_mult_qi_to_hi_saved
5961 global et_index
5963 if [info exists et_vect_widen_mult_qi_to_hi_saved($et_index)] {
5964 verbose "check_effective_target_vect_widen_mult_qi_to_hi:\
5965 using cached result" 2
5966 } else {
5967 if { [check_effective_target_vect_unpack]
5968 && [check_effective_target_vect_short_mult] } {
5969 set et_vect_widen_mult_qi_to_hi_saved($et_index) 1
5970 } else {
5971 set et_vect_widen_mult_qi_to_hi_saved($et_index) 0
5973 if { [istarget powerpc*-*-*]
5974 || ([istarget aarch64*-*-*]
5975 && ![check_effective_target_aarch64_sve])
5976 || [is-effective-target arm_neon]
5977 || ([istarget s390*-*-*]
5978 && [check_effective_target_s390_vx]) } {
5979 set et_vect_widen_mult_qi_to_hi_saved($et_index) 1
5982 verbose "check_effective_target_vect_widen_mult_qi_to_hi:\
5983 returning $et_vect_widen_mult_qi_to_hi_saved($et_index)" 2
5984 return $et_vect_widen_mult_qi_to_hi_saved($et_index)
5987 # Return 1 if the target plus current options supports a vector
5988 # widening multiplication of *short* args into *int* result, 0 otherwise.
5989 # A target can also support this widening multplication if it can support
5990 # promotion (unpacking) from shorts to ints, and vect_int_mult (non-widening
5991 # multiplication of ints).
5993 # This won't change for different subtargets so cache the result.
5996 proc check_effective_target_vect_widen_mult_hi_to_si { } {
5997 global et_vect_widen_mult_hi_to_si_saved
5998 global et_index
6000 if [info exists et_vect_widen_mult_hi_to_si_saved($et_index)] {
6001 verbose "check_effective_target_vect_widen_mult_hi_to_si:\
6002 using cached result" 2
6003 } else {
6004 if { [check_effective_target_vect_unpack]
6005 && [check_effective_target_vect_int_mult] } {
6006 set et_vect_widen_mult_hi_to_si_saved($et_index) 1
6007 } else {
6008 set et_vect_widen_mult_hi_to_si_saved($et_index) 0
6010 if { [istarget powerpc*-*-*]
6011 || [istarget spu-*-*]
6012 || [istarget ia64-*-*]
6013 || ([istarget aarch64*-*-*]
6014 && ![check_effective_target_aarch64_sve])
6015 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6016 || [is-effective-target arm_neon]
6017 || ([istarget s390*-*-*]
6018 && [check_effective_target_s390_vx]) } {
6019 set et_vect_widen_mult_hi_to_si_saved($et_index) 1
6022 verbose "check_effective_target_vect_widen_mult_hi_to_si:\
6023 returning $et_vect_widen_mult_hi_to_si_saved($et_index)" 2
6024 return $et_vect_widen_mult_hi_to_si_saved($et_index)
6027 # Return 1 if the target plus current options supports a vector
6028 # widening multiplication of *char* args into *short* result, 0 otherwise.
6030 # This won't change for different subtargets so cache the result.
6032 proc check_effective_target_vect_widen_mult_qi_to_hi_pattern { } {
6033 global et_vect_widen_mult_qi_to_hi_pattern_saved
6034 global et_index
6036 if [info exists et_vect_widen_mult_qi_to_hi_pattern_saved($et_index)] {
6037 verbose "check_effective_target_vect_widen_mult_qi_to_hi_pattern:\
6038 using cached result" 2
6039 } else {
6040 set et_vect_widen_mult_qi_to_hi_pattern_saved($et_index) 0
6041 if { [istarget powerpc*-*-*]
6042 || ([is-effective-target arm_neon]
6043 && [check_effective_target_arm_little_endian])
6044 || ([istarget s390*-*-*]
6045 && [check_effective_target_s390_vx]) } {
6046 set et_vect_widen_mult_qi_to_hi_pattern_saved($et_index) 1
6049 verbose "check_effective_target_vect_widen_mult_qi_to_hi_pattern:\
6050 returning $et_vect_widen_mult_qi_to_hi_pattern_saved($et_index)" 2
6051 return $et_vect_widen_mult_qi_to_hi_pattern_saved($et_index)
6054 # Return 1 if the target plus current options supports a vector
6055 # widening multiplication of *short* args into *int* result, 0 otherwise.
6057 # This won't change for different subtargets so cache the result.
6059 proc check_effective_target_vect_widen_mult_hi_to_si_pattern { } {
6060 global et_vect_widen_mult_hi_to_si_pattern_saved
6061 global et_index
6063 if [info exists et_vect_widen_mult_hi_to_si_pattern_saved($et_index)] {
6064 verbose "check_effective_target_vect_widen_mult_hi_to_si_pattern:\
6065 using cached result" 2
6066 } else {
6067 set et_vect_widen_mult_hi_to_si_pattern_saved($et_index) 0
6068 if { [istarget powerpc*-*-*]
6069 || [istarget spu-*-*]
6070 || [istarget ia64-*-*]
6071 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6072 || ([is-effective-target arm_neon]
6073 && [check_effective_target_arm_little_endian])
6074 || ([istarget s390*-*-*]
6075 && [check_effective_target_s390_vx]) } {
6076 set et_vect_widen_mult_hi_to_si_pattern_saved($et_index) 1
6079 verbose "check_effective_target_vect_widen_mult_hi_to_si_pattern:\
6080 returning $et_vect_widen_mult_hi_to_si_pattern_saved($et_index)" 2
6081 return $et_vect_widen_mult_hi_to_si_pattern_saved($et_index)
6084 # Return 1 if the target plus current options supports a vector
6085 # widening multiplication of *int* args into *long* result, 0 otherwise.
6087 # This won't change for different subtargets so cache the result.
6089 proc check_effective_target_vect_widen_mult_si_to_di_pattern { } {
6090 global et_vect_widen_mult_si_to_di_pattern_saved
6091 global et_index
6093 if [info exists et_vect_widen_mult_si_to_di_pattern_saved($et_index)] {
6094 verbose "check_effective_target_vect_widen_mult_si_to_di_pattern:\
6095 using cached result" 2
6096 } else {
6097 set et_vect_widen_mult_si_to_di_pattern_saved($et_index) 0
6098 if {[istarget ia64-*-*]
6099 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6100 || ([istarget s390*-*-*]
6101 && [check_effective_target_s390_vx]) } {
6102 set et_vect_widen_mult_si_to_di_pattern_saved($et_index) 1
6105 verbose "check_effective_target_vect_widen_mult_si_to_di_pattern:\
6106 returning $et_vect_widen_mult_si_to_di_pattern_saved($et_index)" 2
6107 return $et_vect_widen_mult_si_to_di_pattern_saved($et_index)
6110 # Return 1 if the target plus current options supports a vector
6111 # widening shift, 0 otherwise.
6113 # This won't change for different subtargets so cache the result.
6115 proc check_effective_target_vect_widen_shift { } {
6116 global et_vect_widen_shift_saved
6117 global et_index
6119 if [info exists et_vect_shift_saved($et_index)] {
6120 verbose "check_effective_target_vect_widen_shift: using cached result" 2
6121 } else {
6122 set et_vect_widen_shift_saved($et_index) 0
6123 if { [is-effective-target arm_neon] } {
6124 set et_vect_widen_shift_saved($et_index) 1
6127 verbose "check_effective_target_vect_widen_shift:\
6128 returning $et_vect_widen_shift_saved($et_index)" 2
6129 return $et_vect_widen_shift_saved($et_index)
6132 # Return 1 if the target plus current options supports a vector
6133 # dot-product of signed chars, 0 otherwise.
6135 # This won't change for different subtargets so cache the result.
6137 proc check_effective_target_vect_sdot_qi { } {
6138 global et_vect_sdot_qi_saved
6139 global et_index
6141 if [info exists et_vect_sdot_qi_saved($et_index)] {
6142 verbose "check_effective_target_vect_sdot_qi: using cached result" 2
6143 } else {
6144 set et_vect_sdot_qi_saved($et_index) 0
6145 if { [istarget ia64-*-*]
6146 || [istarget aarch64*-*-*]
6147 || [istarget arm*-*-*]
6148 || ([istarget mips*-*-*]
6149 && [et-is-effective-target mips_msa]) } {
6150 set et_vect_udot_qi_saved 1
6153 verbose "check_effective_target_vect_sdot_qi:\
6154 returning $et_vect_sdot_qi_saved($et_index)" 2
6155 return $et_vect_sdot_qi_saved($et_index)
6158 # Return 1 if the target plus current options supports a vector
6159 # dot-product of unsigned chars, 0 otherwise.
6161 # This won't change for different subtargets so cache the result.
6163 proc check_effective_target_vect_udot_qi { } {
6164 global et_vect_udot_qi_saved
6165 global et_index
6167 if [info exists et_vect_udot_qi_saved($et_index)] {
6168 verbose "check_effective_target_vect_udot_qi: using cached result" 2
6169 } else {
6170 set et_vect_udot_qi_saved($et_index) 0
6171 if { [istarget powerpc*-*-*]
6172 || [istarget aarch64*-*-*]
6173 || [istarget arm*-*-*]
6174 || [istarget ia64-*-*]
6175 || ([istarget mips*-*-*]
6176 && [et-is-effective-target mips_msa]) } {
6177 set et_vect_udot_qi_saved($et_index) 1
6180 verbose "check_effective_target_vect_udot_qi:\
6181 returning $et_vect_udot_qi_saved($et_index)" 2
6182 return $et_vect_udot_qi_saved($et_index)
6185 # Return 1 if the target plus current options supports a vector
6186 # dot-product of signed shorts, 0 otherwise.
6188 # This won't change for different subtargets so cache the result.
6190 proc check_effective_target_vect_sdot_hi { } {
6191 global et_vect_sdot_hi_saved
6192 global et_index
6194 if [info exists et_vect_sdot_hi_saved($et_index)] {
6195 verbose "check_effective_target_vect_sdot_hi: using cached result" 2
6196 } else {
6197 set et_vect_sdot_hi_saved($et_index) 0
6198 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
6199 || [istarget ia64-*-*]
6200 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6201 || ([istarget mips*-*-*]
6202 && [et-is-effective-target mips_msa]) } {
6203 set et_vect_sdot_hi_saved($et_index) 1
6206 verbose "check_effective_target_vect_sdot_hi:\
6207 returning $et_vect_sdot_hi_saved($et_index)" 2
6208 return $et_vect_sdot_hi_saved($et_index)
6211 # Return 1 if the target plus current options supports a vector
6212 # dot-product of unsigned shorts, 0 otherwise.
6214 # This won't change for different subtargets so cache the result.
6216 proc check_effective_target_vect_udot_hi { } {
6217 global et_vect_udot_hi_saved
6218 global et_index
6220 if [info exists et_vect_udot_hi_saved($et_index)] {
6221 verbose "check_effective_target_vect_udot_hi: using cached result" 2
6222 } else {
6223 set et_vect_udot_hi_saved($et_index) 0
6224 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
6225 || ([istarget mips*-*-*]
6226 && [et-is-effective-target mips_msa]) } {
6227 set et_vect_udot_hi_saved($et_index) 1
6230 verbose "check_effective_target_vect_udot_hi:\
6231 returning $et_vect_udot_hi_saved($et_index)" 2
6232 return $et_vect_udot_hi_saved($et_index)
6235 # Return 1 if the target plus current options supports a vector
6236 # sad operation of unsigned chars, 0 otherwise.
6238 # This won't change for different subtargets so cache the result.
6240 proc check_effective_target_vect_usad_char { } {
6241 global et_vect_usad_char_saved
6242 global et_index
6244 if [info exists et_vect_usad_char_saved($et_index)] {
6245 verbose "check_effective_target_vect_usad_char: using cached result" 2
6246 } else {
6247 set et_vect_usad_char_saved($et_index) 0
6248 if { [istarget i?86-*-*] || [istarget x86_64-*-*] } {
6249 set et_vect_usad_char_saved($et_index) 1
6252 verbose "check_effective_target_vect_usad_char:\
6253 returning $et_vect_usad_char_saved($et_index)" 2
6254 return $et_vect_usad_char_saved($et_index)
6257 # Return 1 if the target plus current options supports a vector
6258 # demotion (packing) of shorts (to chars) and ints (to shorts)
6259 # using modulo arithmetic, 0 otherwise.
6261 # This won't change for different subtargets so cache the result.
6263 proc check_effective_target_vect_pack_trunc { } {
6264 global et_vect_pack_trunc_saved
6265 global et_index
6267 if [info exists et_vect_pack_trunc_saved($et_index)] {
6268 verbose "check_effective_target_vect_pack_trunc: using cached result" 2
6269 } else {
6270 set et_vect_pack_trunc_saved($et_index) 0
6271 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
6272 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6273 || [istarget aarch64*-*-*]
6274 || [istarget spu-*-*]
6275 || ([istarget arm*-*-*] && [check_effective_target_arm_neon_ok]
6276 && [check_effective_target_arm_little_endian])
6277 || ([istarget mips*-*-*]
6278 && [et-is-effective-target mips_msa])
6279 || ([istarget s390*-*-*]
6280 && [check_effective_target_s390_vx]) } {
6281 set et_vect_pack_trunc_saved($et_index) 1
6284 verbose "check_effective_target_vect_pack_trunc:\
6285 returning $et_vect_pack_trunc_saved($et_index)" 2
6286 return $et_vect_pack_trunc_saved($et_index)
6289 # Return 1 if the target plus current options supports a vector
6290 # promotion (unpacking) of chars (to shorts) and shorts (to ints), 0 otherwise.
6292 # This won't change for different subtargets so cache the result.
6294 proc check_effective_target_vect_unpack { } {
6295 global et_vect_unpack_saved
6296 global et_index
6298 if [info exists et_vect_unpack_saved($et_index)] {
6299 verbose "check_effective_target_vect_unpack: using cached result" 2
6300 } else {
6301 set et_vect_unpack_saved($et_index) 0
6302 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*paired*])
6303 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6304 || [istarget spu-*-*]
6305 || [istarget ia64-*-*]
6306 || [istarget aarch64*-*-*]
6307 || ([istarget mips*-*-*]
6308 && [et-is-effective-target mips_msa])
6309 || ([istarget arm*-*-*] && [check_effective_target_arm_neon_ok]
6310 && [check_effective_target_arm_little_endian])
6311 || ([istarget s390*-*-*]
6312 && [check_effective_target_s390_vx]) } {
6313 set et_vect_unpack_saved($et_index) 1
6316 verbose "check_effective_target_vect_unpack:\
6317 returning $et_vect_unpack_saved($et_index)" 2
6318 return $et_vect_unpack_saved($et_index)
6321 # Return 1 if the target plus current options does not guarantee
6322 # that its STACK_BOUNDARY is >= the reguired vector alignment.
6324 # This won't change for different subtargets so cache the result.
6326 proc check_effective_target_unaligned_stack { } {
6327 global et_unaligned_stack_saved
6329 if [info exists et_unaligned_stack_saved] {
6330 verbose "check_effective_target_unaligned_stack: using cached result" 2
6331 } else {
6332 set et_unaligned_stack_saved 0
6334 verbose "check_effective_target_unaligned_stack: returning $et_unaligned_stack_saved" 2
6335 return $et_unaligned_stack_saved
6338 # Return 1 if the target plus current options does not have
6339 # slow unaligned access when using word size accesses.
6341 # This won't change for different subtargets so cache the result.
6343 proc check_effective_target_word_mode_no_slow_unalign { } {
6344 global et_word_mode_no_slow_unalign_saved
6345 global et_index
6347 if [info exists et_word_mode_no_slow_unalign_saved($et_index)] {
6348 verbose "check_effective_target_word_mode_no_slow_unalign: \
6349 using cached result" 2
6350 } else {
6351 set et_word_mode_no_slow_unalign_saved($et_index) 0
6352 if { [is-effective-target non_strict_align]
6353 && !([istarget arm*-*-*])
6355 set et_word_mode_no_slow_unalign_saved($et_index) 1
6358 verbose "check_effective_target_word_mode_no_slow_unalign:\
6359 returning $et_word_mode_no_slow_unalign_saved($et_index)" 2
6360 return $et_word_mode_no_slow_unalign_saved($et_index)
6363 # Return 1 if the target plus current options does not support a vector
6364 # alignment mechanism, 0 otherwise.
6366 # This won't change for different subtargets so cache the result.
6368 proc check_effective_target_vect_no_align { } {
6369 global et_vect_no_align_saved
6370 global et_index
6372 if [info exists et_vect_no_align_saved($et_index)] {
6373 verbose "check_effective_target_vect_no_align: using cached result" 2
6374 } else {
6375 set et_vect_no_align_saved($et_index) 0
6376 if { [istarget mipsisa64*-*-*]
6377 || [istarget mips-sde-elf]
6378 || [istarget sparc*-*-*]
6379 || [istarget ia64-*-*]
6380 || [check_effective_target_arm_vect_no_misalign]
6381 || ([istarget powerpc*-*-*] && [check_p8vector_hw_available])
6382 || ([istarget mips*-*-*]
6383 && [et-is-effective-target mips_loongson]) } {
6384 set et_vect_no_align_saved($et_index) 1
6387 verbose "check_effective_target_vect_no_align:\
6388 returning $et_vect_no_align_saved($et_index)" 2
6389 return $et_vect_no_align_saved($et_index)
6392 # Return 1 if the target supports a vector misalign access, 0 otherwise.
6394 # This won't change for different subtargets so cache the result.
6396 proc check_effective_target_vect_hw_misalign { } {
6397 global et_vect_hw_misalign_saved
6398 global et_index
6400 if [info exists et_vect_hw_misalign_saved($et_index)] {
6401 verbose "check_effective_target_vect_hw_misalign: using cached result" 2
6402 } else {
6403 set et_vect_hw_misalign_saved($et_index) 0
6404 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
6405 || ([istarget powerpc*-*-*] && [check_p8vector_hw_available])
6406 || [istarget aarch64*-*-*]
6407 || ([istarget mips*-*-*] && [et-is-effective-target mips_msa])
6408 || ([istarget s390*-*-*]
6409 && [check_effective_target_s390_vx]) } {
6410 set et_vect_hw_misalign_saved($et_index) 1
6412 if { [istarget arm*-*-*] } {
6413 set et_vect_hw_misalign_saved($et_index) [expr ![check_effective_target_arm_vect_no_misalign]]
6416 verbose "check_effective_target_vect_hw_misalign:\
6417 returning $et_vect_hw_misalign_saved($et_index)" 2
6418 return $et_vect_hw_misalign_saved($et_index)
6422 # Return 1 if arrays are aligned to the vector alignment
6423 # boundary, 0 otherwise.
6425 proc check_effective_target_vect_aligned_arrays { } {
6426 set et_vect_aligned_arrays 0
6427 if { (([istarget i?86-*-*] || [istarget x86_64-*-*])
6428 && !([is-effective-target ia32]
6429 || ([check_avx_available] && ![check_prefer_avx128])))
6430 || [istarget spu-*-*] } {
6431 set et_vect_aligned_arrays 1
6434 verbose "check_effective_target_vect_aligned_arrays:\
6435 returning $et_vect_aligned_arrays" 2
6436 return $et_vect_aligned_arrays
6439 # Return 1 if types of size 32 bit or less are naturally aligned
6440 # (aligned to their type-size), 0 otherwise.
6442 # This won't change for different subtargets so cache the result.
6444 proc check_effective_target_natural_alignment_32 { } {
6445 global et_natural_alignment_32
6447 if [info exists et_natural_alignment_32_saved] {
6448 verbose "check_effective_target_natural_alignment_32: using cached result" 2
6449 } else {
6450 # FIXME: 32bit powerpc: guaranteed only if MASK_ALIGN_NATURAL/POWER.
6451 set et_natural_alignment_32_saved 1
6452 if { ([istarget *-*-darwin*] && [is-effective-target lp64])
6453 || [istarget avr-*-*] } {
6454 set et_natural_alignment_32_saved 0
6457 verbose "check_effective_target_natural_alignment_32: returning $et_natural_alignment_32_saved" 2
6458 return $et_natural_alignment_32_saved
6461 # Return 1 if types of size 64 bit or less are naturally aligned (aligned to their
6462 # type-size), 0 otherwise.
6464 # This won't change for different subtargets so cache the result.
6466 proc check_effective_target_natural_alignment_64 { } {
6467 global et_natural_alignment_64
6469 if [info exists et_natural_alignment_64_saved] {
6470 verbose "check_effective_target_natural_alignment_64: using cached result" 2
6471 } else {
6472 set et_natural_alignment_64_saved 0
6473 if { ([is-effective-target lp64] && ![istarget *-*-darwin*])
6474 || [istarget spu-*-*] } {
6475 set et_natural_alignment_64_saved 1
6478 verbose "check_effective_target_natural_alignment_64: returning $et_natural_alignment_64_saved" 2
6479 return $et_natural_alignment_64_saved
6482 # Return 1 if all vector types are naturally aligned (aligned to their
6483 # type-size), 0 otherwise.
6485 proc check_effective_target_vect_natural_alignment { } {
6486 set et_vect_natural_alignment 1
6487 if { [check_effective_target_arm_eabi]
6488 || [istarget nvptx-*-*]
6489 || [istarget s390*-*-*] } {
6490 set et_vect_natural_alignment 0
6492 verbose "check_effective_target_vect_natural_alignment:\
6493 returning $et_vect_natural_alignment" 2
6494 return $et_vect_natural_alignment
6497 # Return 1 if the target doesn't prefer any alignment beyond element
6498 # alignment during vectorization.
6500 proc check_effective_target_vect_element_align_preferred { } {
6501 return [expr { [check_effective_target_aarch64_sve]
6502 && [check_effective_target_vect_variable_length] }]
6505 # Return 1 if we can align stack data to the preferred vector alignment.
6507 proc check_effective_target_vect_align_stack_vars { } {
6508 if { [check_effective_target_aarch64_sve] } {
6509 return [check_effective_target_vect_variable_length]
6511 return 1
6514 # Return 1 if vector alignment (for types of size 32 bit or less) is reachable, 0 otherwise.
6516 proc check_effective_target_vector_alignment_reachable { } {
6517 set et_vector_alignment_reachable 0
6518 if { [check_effective_target_vect_aligned_arrays]
6519 || [check_effective_target_natural_alignment_32] } {
6520 set et_vector_alignment_reachable 1
6522 verbose "check_effective_target_vector_alignment_reachable:\
6523 returning $et_vector_alignment_reachable" 2
6524 return $et_vector_alignment_reachable
6527 # Return 1 if vector alignment for 64 bit is reachable, 0 otherwise.
6529 proc check_effective_target_vector_alignment_reachable_for_64bit { } {
6530 set et_vector_alignment_reachable_for_64bit 0
6531 if { [check_effective_target_vect_aligned_arrays]
6532 || [check_effective_target_natural_alignment_64] } {
6533 set et_vector_alignment_reachable_for_64bit 1
6535 verbose "check_effective_target_vector_alignment_reachable_for_64bit:\
6536 returning $et_vector_alignment_reachable_for_64bit" 2
6537 return $et_vector_alignment_reachable_for_64bit
6540 # Return 1 if the target only requires element alignment for vector accesses
6542 proc check_effective_target_vect_element_align { } {
6543 global et_vect_element_align
6544 global et_index
6546 if [info exists et_vect_element_align($et_index)] {
6547 verbose "check_effective_target_vect_element_align:\
6548 using cached result" 2
6549 } else {
6550 set et_vect_element_align($et_index) 0
6551 if { ([istarget arm*-*-*]
6552 && ![check_effective_target_arm_vect_no_misalign])
6553 || [check_effective_target_vect_hw_misalign] } {
6554 set et_vect_element_align($et_index) 1
6558 verbose "check_effective_target_vect_element_align:\
6559 returning $et_vect_element_align($et_index)" 2
6560 return $et_vect_element_align($et_index)
6563 # Return 1 if we expect to see unaligned accesses in at least some
6564 # vector dumps.
6566 proc check_effective_target_vect_unaligned_possible { } {
6567 return [expr { ![check_effective_target_vect_element_align_preferred]
6568 && (![check_effective_target_vect_no_align]
6569 || [check_effective_target_vect_hw_misalign]) }]
6572 # Return 1 if the target supports vector LOAD_LANES operations, 0 otherwise.
6574 proc check_effective_target_vect_load_lanes { } {
6575 global et_vect_load_lanes
6577 if [info exists et_vect_load_lanes] {
6578 verbose "check_effective_target_vect_load_lanes: using cached result" 2
6579 } else {
6580 set et_vect_load_lanes 0
6581 if { ([istarget arm*-*-*] && [check_effective_target_arm_neon_ok])
6582 || [istarget aarch64*-*-*] } {
6583 set et_vect_load_lanes 1
6587 verbose "check_effective_target_vect_load_lanes: returning $et_vect_load_lanes" 2
6588 return $et_vect_load_lanes
6591 # Return 1 if the target supports vector masked stores.
6593 proc check_effective_target_vect_masked_store { } {
6594 return [check_effective_target_aarch64_sve]
6597 # Return 1 if the target supports vector conditional operations, 0 otherwise.
6599 proc check_effective_target_vect_condition { } {
6600 global et_vect_cond_saved
6601 global et_index
6603 if [info exists et_vect_cond_saved($et_index)] {
6604 verbose "check_effective_target_vect_cond: using cached result" 2
6605 } else {
6606 set et_vect_cond_saved($et_index) 0
6607 if { [istarget aarch64*-*-*]
6608 || [istarget powerpc*-*-*]
6609 || [istarget ia64-*-*]
6610 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6611 || [istarget spu-*-*]
6612 || ([istarget mips*-*-*]
6613 && [et-is-effective-target mips_msa])
6614 || ([istarget arm*-*-*]
6615 && [check_effective_target_arm_neon_ok])
6616 || ([istarget s390*-*-*]
6617 && [check_effective_target_s390_vx]) } {
6618 set et_vect_cond_saved($et_index) 1
6622 verbose "check_effective_target_vect_cond:\
6623 returning $et_vect_cond_saved($et_index)" 2
6624 return $et_vect_cond_saved($et_index)
6627 # Return 1 if the target supports vector conditional operations where
6628 # the comparison has different type from the lhs, 0 otherwise.
6630 proc check_effective_target_vect_cond_mixed { } {
6631 global et_vect_cond_mixed_saved
6632 global et_index
6634 if [info exists et_vect_cond_mixed_saved($et_index)] {
6635 verbose "check_effective_target_vect_cond_mixed: using cached result" 2
6636 } else {
6637 set et_vect_cond_mixed_saved($et_index) 0
6638 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
6639 || [istarget aarch64*-*-*]
6640 || [istarget powerpc*-*-*]
6641 || ([istarget mips*-*-*]
6642 && [et-is-effective-target mips_msa])
6643 || ([istarget s390*-*-*]
6644 && [check_effective_target_s390_vx]) } {
6645 set et_vect_cond_mixed_saved($et_index) 1
6649 verbose "check_effective_target_vect_cond_mixed:\
6650 returning $et_vect_cond_mixed_saved($et_index)" 2
6651 return $et_vect_cond_mixed_saved($et_index)
6654 # Return 1 if the target supports vector char multiplication, 0 otherwise.
6656 proc check_effective_target_vect_char_mult { } {
6657 global et_vect_char_mult_saved
6658 global et_index
6660 if [info exists et_vect_char_mult_saved($et_index)] {
6661 verbose "check_effective_target_vect_char_mult: using cached result" 2
6662 } else {
6663 set et_vect_char_mult_saved($et_index) 0
6664 if { [istarget aarch64*-*-*]
6665 || [istarget ia64-*-*]
6666 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6667 || [check_effective_target_arm32]
6668 || [check_effective_target_powerpc_altivec]
6669 || ([istarget mips*-*-*]
6670 && [et-is-effective-target mips_msa])
6671 || ([istarget s390*-*-*]
6672 && [check_effective_target_s390_vx]) } {
6673 set et_vect_char_mult_saved($et_index) 1
6677 verbose "check_effective_target_vect_char_mult:\
6678 returning $et_vect_char_mult_saved($et_index)" 2
6679 return $et_vect_char_mult_saved($et_index)
6682 # Return 1 if the target supports vector short multiplication, 0 otherwise.
6684 proc check_effective_target_vect_short_mult { } {
6685 global et_vect_short_mult_saved
6686 global et_index
6688 if [info exists et_vect_short_mult_saved($et_index)] {
6689 verbose "check_effective_target_vect_short_mult: using cached result" 2
6690 } else {
6691 set et_vect_short_mult_saved($et_index) 0
6692 if { [istarget ia64-*-*]
6693 || [istarget spu-*-*]
6694 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6695 || [istarget powerpc*-*-*]
6696 || [istarget aarch64*-*-*]
6697 || [check_effective_target_arm32]
6698 || ([istarget mips*-*-*]
6699 && ([et-is-effective-target mips_msa]
6700 || [et-is-effective-target mips_loongson]))
6701 || ([istarget s390*-*-*]
6702 && [check_effective_target_s390_vx]) } {
6703 set et_vect_short_mult_saved($et_index) 1
6707 verbose "check_effective_target_vect_short_mult:\
6708 returning $et_vect_short_mult_saved($et_index)" 2
6709 return $et_vect_short_mult_saved($et_index)
6712 # Return 1 if the target supports vector int multiplication, 0 otherwise.
6714 proc check_effective_target_vect_int_mult { } {
6715 global et_vect_int_mult_saved
6716 global et_index
6718 if [info exists et_vect_int_mult_saved($et_index)] {
6719 verbose "check_effective_target_vect_int_mult: using cached result" 2
6720 } else {
6721 set et_vect_int_mult_saved($et_index) 0
6722 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
6723 || [istarget spu-*-*]
6724 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6725 || [istarget ia64-*-*]
6726 || [istarget aarch64*-*-*]
6727 || ([istarget mips*-*-*]
6728 && [et-is-effective-target mips_msa])
6729 || [check_effective_target_arm32]
6730 || ([istarget s390*-*-*]
6731 && [check_effective_target_s390_vx]) } {
6732 set et_vect_int_mult_saved($et_index) 1
6736 verbose "check_effective_target_vect_int_mult:\
6737 returning $et_vect_int_mult_saved($et_index)" 2
6738 return $et_vect_int_mult_saved($et_index)
6741 # Return 1 if the target supports 64 bit hardware vector
6742 # multiplication of long operands with a long result, 0 otherwise.
6744 # This can change for different subtargets so do not cache the result.
6746 proc check_effective_target_vect_long_mult { } {
6747 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
6748 || (([istarget powerpc*-*-*]
6749 && ![istarget powerpc-*-linux*paired*])
6750 && [check_effective_target_ilp32])
6751 || [is-effective-target arm_neon]
6752 || ([istarget sparc*-*-*] && [check_effective_target_ilp32])
6753 || [istarget aarch64*-*-*]
6754 || ([istarget mips*-*-*]
6755 && [et-is-effective-target mips_msa]) } {
6756 set answer 1
6757 } else {
6758 set answer 0
6761 verbose "check_effective_target_vect_long_mult: returning $answer" 2
6762 return $answer
6765 # Return 1 if the target supports vector even/odd elements extraction, 0 otherwise.
6767 proc check_effective_target_vect_extract_even_odd { } {
6768 global et_vect_extract_even_odd_saved
6769 global et_index
6771 if [info exists et_vect_extract_even_odd_saved($et_index)] {
6772 verbose "check_effective_target_vect_extract_even_odd:\
6773 using cached result" 2
6774 } else {
6775 set et_vect_extract_even_odd_saved($et_index) 0
6776 if { [istarget aarch64*-*-*]
6777 || [istarget powerpc*-*-*]
6778 || [is-effective-target arm_neon]
6779 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6780 || [istarget ia64-*-*]
6781 || [istarget spu-*-*]
6782 || ([istarget mips*-*-*]
6783 && ([et-is-effective-target mips_msa]
6784 || [et-is-effective-target mpaired_single]))
6785 || ([istarget s390*-*-*]
6786 && [check_effective_target_s390_vx]) } {
6787 set et_vect_extract_even_odd_saved($et_index) 1
6791 verbose "check_effective_target_vect_extract_even_odd:\
6792 returning $et_vect_extract_even_odd_saved($et_index)" 2
6793 return $et_vect_extract_even_odd_saved($et_index)
6796 # Return 1 if the target supports vector interleaving, 0 otherwise.
6798 proc check_effective_target_vect_interleave { } {
6799 global et_vect_interleave_saved
6800 global et_index
6802 if [info exists et_vect_interleave_saved($et_index)] {
6803 verbose "check_effective_target_vect_interleave: using cached result" 2
6804 } else {
6805 set et_vect_interleave_saved($et_index) 0
6806 if { [istarget aarch64*-*-*]
6807 || [istarget powerpc*-*-*]
6808 || [is-effective-target arm_neon]
6809 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6810 || [istarget ia64-*-*]
6811 || [istarget spu-*-*]
6812 || ([istarget mips*-*-*]
6813 && ([et-is-effective-target mpaired_single]
6814 || [et-is-effective-target mips_msa]))
6815 || ([istarget s390*-*-*]
6816 && [check_effective_target_s390_vx]) } {
6817 set et_vect_interleave_saved($et_index) 1
6821 verbose "check_effective_target_vect_interleave:\
6822 returning $et_vect_interleave_saved($et_index)" 2
6823 return $et_vect_interleave_saved($et_index)
6826 foreach N {2 3 4 8} {
6827 eval [string map [list N $N] {
6828 # Return 1 if the target supports 2-vector interleaving
6829 proc check_effective_target_vect_stridedN { } {
6830 global et_vect_stridedN_saved
6831 global et_index
6833 if [info exists et_vect_stridedN_saved($et_index)] {
6834 verbose "check_effective_target_vect_stridedN:\
6835 using cached result" 2
6836 } else {
6837 set et_vect_stridedN_saved($et_index) 0
6838 if { (N & -N) == N
6839 && [check_effective_target_vect_interleave]
6840 && [check_effective_target_vect_extract_even_odd] } {
6841 set et_vect_stridedN_saved($et_index) 1
6843 if { ([istarget arm*-*-*]
6844 || [istarget aarch64*-*-*]) && N >= 2 && N <= 4 } {
6845 set et_vect_stridedN_saved($et_index) 1
6849 verbose "check_effective_target_vect_stridedN:\
6850 returning $et_vect_stridedN_saved($et_index)" 2
6851 return $et_vect_stridedN_saved($et_index)
6856 # Return the list of vector sizes (in bits) that each target supports.
6857 # A vector length of "0" indicates variable-length vectors.
6859 proc available_vector_sizes { } {
6860 set result {}
6861 if { [istarget aarch64*-*-*] } {
6862 if { [check_effective_target_aarch64_sve] } {
6863 lappend result [aarch64_sve_bits]
6865 lappend result 128 64
6866 } elseif { [istarget arm*-*-*]
6867 && [check_effective_target_arm_neon_ok] } {
6868 lappend result 128 64
6869 } elseif { (([istarget i?86-*-*] || [istarget x86_64-*-*])
6870 && ([check_avx_available] && ![check_prefer_avx128])) } {
6871 lappend result 256 128
6872 } elseif { [istarget sparc*-*-*] } {
6873 lappend result 64
6874 } else {
6875 # The traditional default asumption.
6876 lappend result 128
6878 return $result
6881 # Return 1 if the target supports multiple vector sizes
6883 proc check_effective_target_vect_multiple_sizes { } {
6884 return [expr { [llength [available_vector_sizes]] > 1 }]
6887 # Return true if variable-length vectors are supported.
6889 proc check_effective_target_vect_variable_length { } {
6890 return [expr { [lindex [available_vector_sizes] 0] == 0 }]
6893 # Return 1 if the target supports vectors of 64 bits.
6895 proc check_effective_target_vect64 { } {
6896 return [expr { [lsearch -exact [available_vector_sizes] 64] >= 0 }]
6899 # Return 1 if the target supports vector copysignf calls.
6901 proc check_effective_target_vect_call_copysignf { } {
6902 global et_vect_call_copysignf_saved
6903 global et_index
6905 if [info exists et_vect_call_copysignf_saved($et_index)] {
6906 verbose "check_effective_target_vect_call_copysignf:\
6907 using cached result" 2
6908 } else {
6909 set et_vect_call_copysignf_saved($et_index) 0
6910 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
6911 || [istarget powerpc*-*-*]
6912 || [istarget aarch64*-*-*] } {
6913 set et_vect_call_copysignf_saved($et_index) 1
6917 verbose "check_effective_target_vect_call_copysignf:\
6918 returning $et_vect_call_copysignf_saved($et_index)" 2
6919 return $et_vect_call_copysignf_saved($et_index)
6922 # Return 1 if the target supports hardware square root instructions.
6924 proc check_effective_target_sqrt_insn { } {
6925 global et_sqrt_insn_saved
6927 if [info exists et_sqrt_insn_saved] {
6928 verbose "check_effective_target_hw_sqrt: using cached result" 2
6929 } else {
6930 set et_sqrt_insn_saved 0
6931 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
6932 || [istarget powerpc*-*-*]
6933 || [istarget aarch64*-*-*]
6934 || ([istarget arm*-*-*] && [check_effective_target_arm_vfp_ok])
6935 || ([istarget s390*-*-*]
6936 && [check_effective_target_s390_vx]) } {
6937 set et_sqrt_insn_saved 1
6941 verbose "check_effective_target_hw_sqrt: returning et_sqrt_insn_saved" 2
6942 return $et_sqrt_insn_saved
6945 # Return 1 if the target supports vector sqrtf calls.
6947 proc check_effective_target_vect_call_sqrtf { } {
6948 global et_vect_call_sqrtf_saved
6949 global et_index
6951 if [info exists et_vect_call_sqrtf_saved($et_index)] {
6952 verbose "check_effective_target_vect_call_sqrtf: using cached result" 2
6953 } else {
6954 set et_vect_call_sqrtf_saved($et_index) 0
6955 if { [istarget aarch64*-*-*]
6956 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6957 || ([istarget powerpc*-*-*] && [check_vsx_hw_available])
6958 || ([istarget s390*-*-*]
6959 && [check_effective_target_s390_vx]) } {
6960 set et_vect_call_sqrtf_saved($et_index) 1
6964 verbose "check_effective_target_vect_call_sqrtf:\
6965 returning $et_vect_call_sqrtf_saved($et_index)" 2
6966 return $et_vect_call_sqrtf_saved($et_index)
6969 # Return 1 if the target supports vector lrint calls.
6971 proc check_effective_target_vect_call_lrint { } {
6972 set et_vect_call_lrint 0
6973 if { (([istarget i?86-*-*] || [istarget x86_64-*-*])
6974 && [check_effective_target_ilp32]) } {
6975 set et_vect_call_lrint 1
6978 verbose "check_effective_target_vect_call_lrint: returning $et_vect_call_lrint" 2
6979 return $et_vect_call_lrint
6982 # Return 1 if the target supports vector btrunc calls.
6984 proc check_effective_target_vect_call_btrunc { } {
6985 global et_vect_call_btrunc_saved
6986 global et_index
6988 if [info exists et_vect_call_btrunc_saved($et_index)] {
6989 verbose "check_effective_target_vect_call_btrunc:\
6990 using cached result" 2
6991 } else {
6992 set et_vect_call_btrunc_saved($et_index) 0
6993 if { [istarget aarch64*-*-*] } {
6994 set et_vect_call_btrunc_saved($et_index) 1
6998 verbose "check_effective_target_vect_call_btrunc:\
6999 returning $et_vect_call_btrunc_saved($et_index)" 2
7000 return $et_vect_call_btrunc_saved($et_index)
7003 # Return 1 if the target supports vector btruncf calls.
7005 proc check_effective_target_vect_call_btruncf { } {
7006 global et_vect_call_btruncf_saved
7007 global et_index
7009 if [info exists et_vect_call_btruncf_saved($et_index)] {
7010 verbose "check_effective_target_vect_call_btruncf:\
7011 using cached result" 2
7012 } else {
7013 set et_vect_call_btruncf_saved($et_index) 0
7014 if { [istarget aarch64*-*-*] } {
7015 set et_vect_call_btruncf_saved($et_index) 1
7019 verbose "check_effective_target_vect_call_btruncf:\
7020 returning $et_vect_call_btruncf_saved($et_index)" 2
7021 return $et_vect_call_btruncf_saved($et_index)
7024 # Return 1 if the target supports vector ceil calls.
7026 proc check_effective_target_vect_call_ceil { } {
7027 global et_vect_call_ceil_saved
7028 global et_index
7030 if [info exists et_vect_call_ceil_saved($et_index)] {
7031 verbose "check_effective_target_vect_call_ceil: using cached result" 2
7032 } else {
7033 set et_vect_call_ceil_saved($et_index) 0
7034 if { [istarget aarch64*-*-*] } {
7035 set et_vect_call_ceil_saved($et_index) 1
7039 verbose "check_effective_target_vect_call_ceil:\
7040 returning $et_vect_call_ceil_saved($et_index)" 2
7041 return $et_vect_call_ceil_saved($et_index)
7044 # Return 1 if the target supports vector ceilf calls.
7046 proc check_effective_target_vect_call_ceilf { } {
7047 global et_vect_call_ceilf_saved
7048 global et_index
7050 if [info exists et_vect_call_ceilf_saved($et_index)] {
7051 verbose "check_effective_target_vect_call_ceilf: using cached result" 2
7052 } else {
7053 set et_vect_call_ceilf_saved($et_index) 0
7054 if { [istarget aarch64*-*-*] } {
7055 set et_vect_call_ceilf_saved($et_index) 1
7059 verbose "check_effective_target_vect_call_ceilf:\
7060 returning $et_vect_call_ceilf_saved($et_index)" 2
7061 return $et_vect_call_ceilf_saved($et_index)
7064 # Return 1 if the target supports vector floor calls.
7066 proc check_effective_target_vect_call_floor { } {
7067 global et_vect_call_floor_saved
7068 global et_index
7070 if [info exists et_vect_call_floor_saved($et_index)] {
7071 verbose "check_effective_target_vect_call_floor: using cached result" 2
7072 } else {
7073 set et_vect_call_floor_saved($et_index) 0
7074 if { [istarget aarch64*-*-*] } {
7075 set et_vect_call_floor_saved($et_index) 1
7079 verbose "check_effective_target_vect_call_floor:\
7080 returning $et_vect_call_floor_saved($et_index)" 2
7081 return $et_vect_call_floor_saved($et_index)
7084 # Return 1 if the target supports vector floorf calls.
7086 proc check_effective_target_vect_call_floorf { } {
7087 global et_vect_call_floorf_saved
7088 global et_index
7090 if [info exists et_vect_call_floorf_saved($et_index)] {
7091 verbose "check_effective_target_vect_call_floorf: using cached result" 2
7092 } else {
7093 set et_vect_call_floorf_saved($et_index) 0
7094 if { [istarget aarch64*-*-*] } {
7095 set et_vect_call_floorf_saved($et_index) 1
7099 verbose "check_effective_target_vect_call_floorf:\
7100 returning $et_vect_call_floorf_saved($et_index)" 2
7101 return $et_vect_call_floorf_saved($et_index)
7104 # Return 1 if the target supports vector lceil calls.
7106 proc check_effective_target_vect_call_lceil { } {
7107 global et_vect_call_lceil_saved
7108 global et_index
7110 if [info exists et_vect_call_lceil_saved($et_index)] {
7111 verbose "check_effective_target_vect_call_lceil: using cached result" 2
7112 } else {
7113 set et_vect_call_lceil_saved($et_index) 0
7114 if { [istarget aarch64*-*-*] } {
7115 set et_vect_call_lceil_saved($et_index) 1
7119 verbose "check_effective_target_vect_call_lceil:\
7120 returning $et_vect_call_lceil_saved($et_index)" 2
7121 return $et_vect_call_lceil_saved($et_index)
7124 # Return 1 if the target supports vector lfloor calls.
7126 proc check_effective_target_vect_call_lfloor { } {
7127 global et_vect_call_lfloor_saved
7128 global et_index
7130 if [info exists et_vect_call_lfloor_saved($et_index)] {
7131 verbose "check_effective_target_vect_call_lfloor: using cached result" 2
7132 } else {
7133 set et_vect_call_lfloor_saved($et_index) 0
7134 if { [istarget aarch64*-*-*] } {
7135 set et_vect_call_lfloor_saved($et_index) 1
7139 verbose "check_effective_target_vect_call_lfloor:\
7140 returning $et_vect_call_lfloor_saved($et_index)" 2
7141 return $et_vect_call_lfloor_saved($et_index)
7144 # Return 1 if the target supports vector nearbyint calls.
7146 proc check_effective_target_vect_call_nearbyint { } {
7147 global et_vect_call_nearbyint_saved
7148 global et_index
7150 if [info exists et_vect_call_nearbyint_saved($et_index)] {
7151 verbose "check_effective_target_vect_call_nearbyint: using cached result" 2
7152 } else {
7153 set et_vect_call_nearbyint_saved($et_index) 0
7154 if { [istarget aarch64*-*-*] } {
7155 set et_vect_call_nearbyint_saved($et_index) 1
7159 verbose "check_effective_target_vect_call_nearbyint:\
7160 returning $et_vect_call_nearbyint_saved($et_index)" 2
7161 return $et_vect_call_nearbyint_saved($et_index)
7164 # Return 1 if the target supports vector nearbyintf calls.
7166 proc check_effective_target_vect_call_nearbyintf { } {
7167 global et_vect_call_nearbyintf_saved
7168 global et_index
7170 if [info exists et_vect_call_nearbyintf_saved($et_index)] {
7171 verbose "check_effective_target_vect_call_nearbyintf:\
7172 using cached result" 2
7173 } else {
7174 set et_vect_call_nearbyintf_saved($et_index) 0
7175 if { [istarget aarch64*-*-*] } {
7176 set et_vect_call_nearbyintf_saved($et_index) 1
7180 verbose "check_effective_target_vect_call_nearbyintf:\
7181 returning $et_vect_call_nearbyintf_saved($et_index)" 2
7182 return $et_vect_call_nearbyintf_saved($et_index)
7185 # Return 1 if the target supports vector round calls.
7187 proc check_effective_target_vect_call_round { } {
7188 global et_vect_call_round_saved
7189 global et_index
7191 if [info exists et_vect_call_round_saved($et_index)] {
7192 verbose "check_effective_target_vect_call_round: using cached result" 2
7193 } else {
7194 set et_vect_call_round_saved($et_index) 0
7195 if { [istarget aarch64*-*-*] } {
7196 set et_vect_call_round_saved($et_index) 1
7200 verbose "check_effective_target_vect_call_round:\
7201 returning $et_vect_call_round_saved($et_index)" 2
7202 return $et_vect_call_round_saved($et_index)
7205 # Return 1 if the target supports vector roundf calls.
7207 proc check_effective_target_vect_call_roundf { } {
7208 global et_vect_call_roundf_saved
7209 global et_index
7211 if [info exists et_vect_call_roundf_saved($et_index)] {
7212 verbose "check_effective_target_vect_call_roundf: using cached result" 2
7213 } else {
7214 set et_vect_call_roundf_saved($et_index) 0
7215 if { [istarget aarch64*-*-*] } {
7216 set et_vect_call_roundf_saved($et_index) 1
7220 verbose "check_effective_target_vect_call_roundf:\
7221 returning $et_vect_call_roundf_saved($et_index)" 2
7222 return $et_vect_call_roundf_saved($et_index)
7225 # Return 1 if the target supports section-anchors
7227 proc check_effective_target_section_anchors { } {
7228 global et_section_anchors_saved
7230 if [info exists et_section_anchors_saved] {
7231 verbose "check_effective_target_section_anchors: using cached result" 2
7232 } else {
7233 set et_section_anchors_saved 0
7234 if { [istarget powerpc*-*-*]
7235 || [istarget arm*-*-*]
7236 || [istarget aarch64*-*-*] } {
7237 set et_section_anchors_saved 1
7241 verbose "check_effective_target_section_anchors: returning $et_section_anchors_saved" 2
7242 return $et_section_anchors_saved
7245 # Return 1 if the target supports atomic operations on "int_128" values.
7247 proc check_effective_target_sync_int_128 { } {
7248 if { [istarget spu-*-*] } {
7249 return 1
7250 } else {
7251 return 0
7255 # Return 1 if the target supports atomic operations on "int_128" values
7256 # and can execute them.
7257 # This requires support for both compare-and-swap and true atomic loads.
7259 proc check_effective_target_sync_int_128_runtime { } {
7260 if { [istarget spu-*-*] } {
7261 return 1
7262 } else {
7263 return 0
7267 # Return 1 if the target supports atomic operations on "long long".
7269 # Note: 32bit x86 targets require -march=pentium in dg-options.
7270 # Note: 32bit s390 targets require -mzarch in dg-options.
7272 proc check_effective_target_sync_long_long { } {
7273 if { [istarget i?86-*-*] || [istarget x86_64-*-*])
7274 || [istarget aarch64*-*-*]
7275 || [istarget arm*-*-*]
7276 || [istarget alpha*-*-*]
7277 || ([istarget sparc*-*-*] && [check_effective_target_lp64])
7278 || [istarget s390*-*-*]
7279 || [istarget spu-*-*] } {
7280 return 1
7281 } else {
7282 return 0
7286 # Return 1 if the target supports atomic operations on "long long"
7287 # and can execute them.
7289 # Note: 32bit x86 targets require -march=pentium in dg-options.
7291 proc check_effective_target_sync_long_long_runtime { } {
7292 if { (([istarget x86_64-*-*] || [istarget i?86-*-*])
7293 && [check_cached_effective_target sync_long_long_available {
7294 check_runtime_nocache sync_long_long_available {
7295 #include "cpuid.h"
7296 int main ()
7298 unsigned int eax, ebx, ecx, edx;
7299 if (__get_cpuid (1, &eax, &ebx, &ecx, &edx))
7300 return !(edx & bit_CMPXCHG8B);
7301 return 1;
7303 } ""
7305 || [istarget aarch64*-*-*]
7306 || ([istarget arm*-*-linux-*]
7307 && [check_runtime sync_longlong_runtime {
7308 #include <stdlib.h>
7309 int main ()
7311 long long l1;
7313 if (sizeof (long long) != 8)
7314 exit (1);
7316 /* Just check for native;
7317 checking for kernel fallback is tricky. */
7318 asm volatile ("ldrexd r0,r1, [%0]"
7319 : : "r" (&l1) : "r0", "r1");
7320 exit (0);
7322 } "" ])
7323 || [istarget alpha*-*-*]
7324 || ([istarget sparc*-*-*]
7325 && [check_effective_target_lp64]
7326 && [check_effective_target_ultrasparc_hw])
7327 || [istarget spu-*-*]
7328 || ([istarget powerpc*-*-*] && [check_effective_target_lp64]) } {
7329 return 1
7330 } else {
7331 return 0
7335 # Return 1 if the target supports byte swap instructions.
7337 proc check_effective_target_bswap { } {
7338 global et_bswap_saved
7340 if [info exists et_bswap_saved] {
7341 verbose "check_effective_target_bswap: using cached result" 2
7342 } else {
7343 set et_bswap_saved 0
7344 if { [istarget aarch64*-*-*]
7345 || [istarget alpha*-*-*]
7346 || [istarget i?86-*-*] || [istarget x86_64-*-*]
7347 || [istarget m68k-*-*]
7348 || [istarget powerpc*-*-*]
7349 || [istarget rs6000-*-*]
7350 || [istarget s390*-*-*]
7351 || ([istarget arm*-*-*]
7352 && [check_no_compiler_messages_nocache arm_v6_or_later object {
7353 #if __ARM_ARCH < 6
7354 #error not armv6 or later
7355 #endif
7356 int i;
7357 } ""]) } {
7358 set et_bswap_saved 1
7362 verbose "check_effective_target_bswap: returning $et_bswap_saved" 2
7363 return $et_bswap_saved
7366 # Return 1 if the target supports atomic operations on "int" and "long".
7368 proc check_effective_target_sync_int_long { } {
7369 global et_sync_int_long_saved
7371 if [info exists et_sync_int_long_saved] {
7372 verbose "check_effective_target_sync_int_long: using cached result" 2
7373 } else {
7374 set et_sync_int_long_saved 0
7375 # This is intentionally powerpc but not rs6000, rs6000 doesn't have the
7376 # load-reserved/store-conditional instructions.
7377 if { [istarget ia64-*-*]
7378 || [istarget i?86-*-*] || [istarget x86_64-*-*]
7379 || [istarget aarch64*-*-*]
7380 || [istarget alpha*-*-*]
7381 || [istarget arm*-*-linux-*]
7382 || ([istarget arm*-*-*]
7383 && [check_effective_target_arm_acq_rel])
7384 || [istarget bfin*-*linux*]
7385 || [istarget hppa*-*linux*]
7386 || [istarget s390*-*-*]
7387 || [istarget powerpc*-*-*]
7388 || [istarget crisv32-*-*] || [istarget cris-*-*]
7389 || ([istarget sparc*-*-*] && [check_effective_target_sparc_v9])
7390 || [istarget spu-*-*]
7391 || ([istarget arc*-*-*] && [check_effective_target_arc_atomic])
7392 || [check_effective_target_mips_llsc] } {
7393 set et_sync_int_long_saved 1
7397 verbose "check_effective_target_sync_int_long: returning $et_sync_int_long_saved" 2
7398 return $et_sync_int_long_saved
7401 # Return 1 if the target supports atomic operations on "char" and "short".
7403 proc check_effective_target_sync_char_short { } {
7404 global et_sync_char_short_saved
7406 if [info exists et_sync_char_short_saved] {
7407 verbose "check_effective_target_sync_char_short: using cached result" 2
7408 } else {
7409 set et_sync_char_short_saved 0
7410 # This is intentionally powerpc but not rs6000, rs6000 doesn't have the
7411 # load-reserved/store-conditional instructions.
7412 if { [istarget aarch64*-*-*]
7413 || [istarget ia64-*-*]
7414 || [istarget i?86-*-*] || [istarget x86_64-*-*]
7415 || [istarget alpha*-*-*]
7416 || [istarget arm*-*-linux-*]
7417 || ([istarget arm*-*-*]
7418 && [check_effective_target_arm_acq_rel])
7419 || [istarget hppa*-*linux*]
7420 || [istarget s390*-*-*]
7421 || [istarget powerpc*-*-*]
7422 || [istarget crisv32-*-*] || [istarget cris-*-*]
7423 || ([istarget sparc*-*-*] && [check_effective_target_sparc_v9])
7424 || [istarget spu-*-*]
7425 || ([istarget arc*-*-*] && [check_effective_target_arc_atomic])
7426 || [check_effective_target_mips_llsc] } {
7427 set et_sync_char_short_saved 1
7431 verbose "check_effective_target_sync_char_short: returning $et_sync_char_short_saved" 2
7432 return $et_sync_char_short_saved
7435 # Return 1 if the target uses a ColdFire FPU.
7437 proc check_effective_target_coldfire_fpu { } {
7438 return [check_no_compiler_messages coldfire_fpu assembly {
7439 #ifndef __mcffpu__
7440 #error !__mcffpu__
7441 #endif
7445 # Return true if this is a uClibc target.
7447 proc check_effective_target_uclibc {} {
7448 return [check_no_compiler_messages uclibc object {
7449 #include <features.h>
7450 #if !defined (__UCLIBC__)
7451 #error !__UCLIBC__
7452 #endif
7456 # Return true if this is a uclibc target and if the uclibc feature
7457 # described by __$feature__ is not present.
7459 proc check_missing_uclibc_feature {feature} {
7460 return [check_no_compiler_messages $feature object "
7461 #include <features.h>
7462 #if !defined (__UCLIBC) || defined (__${feature}__)
7463 #error FOO
7464 #endif
7468 # Return true if this is a Newlib target.
7470 proc check_effective_target_newlib {} {
7471 return [check_no_compiler_messages newlib object {
7472 #include <newlib.h>
7476 # Some newlib versions don't provide a frexpl and instead depend
7477 # on frexp to implement long double conversions in their printf-like
7478 # functions. This leads to broken results. Detect such versions here.
7480 proc check_effective_target_newlib_broken_long_double_io {} {
7481 if { [is-effective-target newlib] && ![is-effective-target frexpl] } {
7482 return 1
7484 return 0
7487 # Return true if this is NOT a Bionic target.
7489 proc check_effective_target_non_bionic {} {
7490 return [check_no_compiler_messages non_bionic object {
7491 #include <ctype.h>
7492 #if defined (__BIONIC__)
7493 #error FOO
7494 #endif
7498 # Return true if this target has error.h header.
7500 proc check_effective_target_error_h {} {
7501 return [check_no_compiler_messages error_h object {
7502 #include <error.h>
7506 # Return true if this target has tgmath.h header.
7508 proc check_effective_target_tgmath_h {} {
7509 return [check_no_compiler_messages tgmath_h object {
7510 #include <tgmath.h>
7514 # Return true if target's libc supports complex functions.
7516 proc check_effective_target_libc_has_complex_functions {} {
7517 return [check_no_compiler_messages libc_has_complex_functions object {
7518 #include <complex.h>
7522 # Return 1 if
7523 # (a) an error of a few ULP is expected in string to floating-point
7524 # conversion functions; and
7525 # (b) overflow is not always detected correctly by those functions.
7527 proc check_effective_target_lax_strtofp {} {
7528 # By default, assume that all uClibc targets suffer from this.
7529 return [check_effective_target_uclibc]
7532 # Return 1 if this is a target for which wcsftime is a dummy
7533 # function that always returns 0.
7535 proc check_effective_target_dummy_wcsftime {} {
7536 # By default, assume that all uClibc targets suffer from this.
7537 return [check_effective_target_uclibc]
7540 # Return 1 if constructors with initialization priority arguments are
7541 # supposed on this target.
7543 proc check_effective_target_init_priority {} {
7544 return [check_no_compiler_messages init_priority assembly "
7545 void f() __attribute__((constructor (1000)));
7546 void f() \{\}
7550 # Return 1 if the target matches the effective target 'arg', 0 otherwise.
7551 # This can be used with any check_* proc that takes no argument and
7552 # returns only 1 or 0. It could be used with check_* procs that take
7553 # arguments with keywords that pass particular arguments.
7555 proc is-effective-target { arg } {
7556 global et_index
7557 set selected 0
7558 if { ![info exists et_index] } {
7559 # Initialize the effective target index that is used in some
7560 # check_effective_target_* procs.
7561 set et_index 0
7563 if { [info procs check_effective_target_${arg}] != [list] } {
7564 set selected [check_effective_target_${arg}]
7565 } else {
7566 switch $arg {
7567 "vmx_hw" { set selected [check_vmx_hw_available] }
7568 "vsx_hw" { set selected [check_vsx_hw_available] }
7569 "p8vector_hw" { set selected [check_p8vector_hw_available] }
7570 "p9vector_hw" { set selected [check_p9vector_hw_available] }
7571 "p9modulo_hw" { set selected [check_p9modulo_hw_available] }
7572 "ppc_float128_sw" { set selected [check_ppc_float128_sw_available] }
7573 "ppc_float128_hw" { set selected [check_ppc_float128_hw_available] }
7574 "ppc_recip_hw" { set selected [check_ppc_recip_hw_available] }
7575 "ppc_cpu_supports_hw" { set selected [check_ppc_cpu_supports_hw_available] }
7576 "dfp_hw" { set selected [check_dfp_hw_available] }
7577 "htm_hw" { set selected [check_htm_hw_available] }
7578 "named_sections" { set selected [check_named_sections_available] }
7579 "gc_sections" { set selected [check_gc_sections_available] }
7580 "cxa_atexit" { set selected [check_cxa_atexit_available] }
7581 default { error "unknown effective target keyword `$arg'" }
7584 verbose "is-effective-target: $arg $selected" 2
7585 return $selected
7588 # Return 1 if the argument is an effective-target keyword, 0 otherwise.
7590 proc is-effective-target-keyword { arg } {
7591 if { [info procs check_effective_target_${arg}] != [list] } {
7592 return 1
7593 } else {
7594 # These have different names for their check_* procs.
7595 switch $arg {
7596 "vmx_hw" { return 1 }
7597 "vsx_hw" { return 1 }
7598 "p8vector_hw" { return 1 }
7599 "p9vector_hw" { return 1 }
7600 "p9modulo_hw" { return 1 }
7601 "ppc_float128_sw" { return 1 }
7602 "ppc_float128_hw" { return 1 }
7603 "ppc_recip_hw" { return 1 }
7604 "dfp_hw" { return 1 }
7605 "htm_hw" { return 1 }
7606 "named_sections" { return 1 }
7607 "gc_sections" { return 1 }
7608 "cxa_atexit" { return 1 }
7609 default { return 0 }
7614 # Execute tests for all targets in EFFECTIVE_TARGETS list. Set et_index to
7615 # indicate what target is currently being processed. This is for
7616 # the vectorizer tests, e.g. vect_int, to keep track what target supports
7617 # a given feature.
7619 proc et-dg-runtest { runtest testcases flags default-extra-flags } {
7620 global dg-do-what-default
7621 global EFFECTIVE_TARGETS
7622 global et_index
7624 if { [llength $EFFECTIVE_TARGETS] > 0 } {
7625 foreach target $EFFECTIVE_TARGETS {
7626 set target_flags $flags
7627 set dg-do-what-default compile
7628 set et_index [lsearch -exact $EFFECTIVE_TARGETS $target]
7629 if { [info procs add_options_for_${target}] != [list] } {
7630 set target_flags [add_options_for_${target} "$flags"]
7632 if { [info procs check_effective_target_${target}_runtime]
7633 != [list] && [check_effective_target_${target}_runtime] } {
7634 set dg-do-what-default run
7636 $runtest $testcases $target_flags ${default-extra-flags}
7638 } else {
7639 set et_index 0
7640 $runtest $testcases $flags ${default-extra-flags}
7644 # Return 1 if a target matches the target in EFFECTIVE_TARGETS at index
7645 # et_index, 0 otherwise.
7647 proc et-is-effective-target { target } {
7648 global EFFECTIVE_TARGETS
7649 global et_index
7651 if { [llength $EFFECTIVE_TARGETS] > $et_index
7652 && [lindex $EFFECTIVE_TARGETS $et_index] == $target } {
7653 return 1
7655 return 0
7658 # Return 1 if target default to short enums
7660 proc check_effective_target_short_enums { } {
7661 return [check_no_compiler_messages short_enums assembly {
7662 enum foo { bar };
7663 int s[sizeof (enum foo) == 1 ? 1 : -1];
7667 # Return 1 if target supports merging string constants at link time.
7669 proc check_effective_target_string_merging { } {
7670 return [check_no_messages_and_pattern string_merging \
7671 "rodata\\.str" assembly {
7672 const char *var = "String";
7673 } {-O2}]
7676 # Return 1 if target has the basic signed and unsigned types in
7677 # <stdint.h>, 0 otherwise. This will be obsolete when GCC ensures a
7678 # working <stdint.h> for all targets.
7680 proc check_effective_target_stdint_types { } {
7681 return [check_no_compiler_messages stdint_types assembly {
7682 #include <stdint.h>
7683 int8_t a; int16_t b; int32_t c; int64_t d;
7684 uint8_t e; uint16_t f; uint32_t g; uint64_t h;
7688 # Return 1 if target has the basic signed and unsigned types in
7689 # <inttypes.h>, 0 otherwise. This is for tests that GCC's notions of
7690 # these types agree with those in the header, as some systems have
7691 # only <inttypes.h>.
7693 proc check_effective_target_inttypes_types { } {
7694 return [check_no_compiler_messages inttypes_types assembly {
7695 #include <inttypes.h>
7696 int8_t a; int16_t b; int32_t c; int64_t d;
7697 uint8_t e; uint16_t f; uint32_t g; uint64_t h;
7701 # Return 1 if programs are intended to be run on a simulator
7702 # (i.e. slowly) rather than hardware (i.e. fast).
7704 proc check_effective_target_simulator { } {
7706 # All "src/sim" simulators set this one.
7707 if [board_info target exists is_simulator] {
7708 return [board_info target is_simulator]
7711 # The "sid" simulators don't set that one, but at least they set
7712 # this one.
7713 if [board_info target exists slow_simulator] {
7714 return [board_info target slow_simulator]
7717 return 0
7720 # Return 1 if programs are intended to be run on hardware rather than
7721 # on a simulator
7723 proc check_effective_target_hw { } {
7725 # All "src/sim" simulators set this one.
7726 if [board_info target exists is_simulator] {
7727 if [board_info target is_simulator] {
7728 return 0
7729 } else {
7730 return 1
7734 # The "sid" simulators don't set that one, but at least they set
7735 # this one.
7736 if [board_info target exists slow_simulator] {
7737 if [board_info target slow_simulator] {
7738 return 0
7739 } else {
7740 return 1
7744 return 1
7747 # Return 1 if the target is a VxWorks kernel.
7749 proc check_effective_target_vxworks_kernel { } {
7750 return [check_no_compiler_messages vxworks_kernel assembly {
7751 #if !defined __vxworks || defined __RTP__
7752 #error NO
7753 #endif
7757 # Return 1 if the target is a VxWorks RTP.
7759 proc check_effective_target_vxworks_rtp { } {
7760 return [check_no_compiler_messages vxworks_rtp assembly {
7761 #if !defined __vxworks || !defined __RTP__
7762 #error NO
7763 #endif
7767 # Return 1 if the target is expected to provide wide character support.
7769 proc check_effective_target_wchar { } {
7770 if {[check_missing_uclibc_feature UCLIBC_HAS_WCHAR]} {
7771 return 0
7773 return [check_no_compiler_messages wchar assembly {
7774 #include <wchar.h>
7778 # Return 1 if the target has <pthread.h>.
7780 proc check_effective_target_pthread_h { } {
7781 return [check_no_compiler_messages pthread_h assembly {
7782 #include <pthread.h>
7786 # Return 1 if the target can truncate a file from a file-descriptor,
7787 # as used by libgfortran/io/unix.c:fd_truncate; i.e. ftruncate or
7788 # chsize. We test for a trivially functional truncation; no stubs.
7789 # As libgfortran uses _FILE_OFFSET_BITS 64, we do too; it'll cause a
7790 # different function to be used.
7792 proc check_effective_target_fd_truncate { } {
7793 set prog {
7794 #define _FILE_OFFSET_BITS 64
7795 #include <unistd.h>
7796 #include <stdio.h>
7797 #include <stdlib.h>
7798 #include <string.h>
7799 int main ()
7801 FILE *f = fopen ("tst.tmp", "wb");
7802 int fd;
7803 const char t[] = "test writing more than ten characters";
7804 char s[11];
7805 int status = 0;
7806 fd = fileno (f);
7807 write (fd, t, sizeof (t) - 1);
7808 lseek (fd, 0, 0);
7809 if (ftruncate (fd, 10) != 0)
7810 status = 1;
7811 close (fd);
7812 fclose (f);
7813 if (status)
7815 unlink ("tst.tmp");
7816 exit (status);
7818 f = fopen ("tst.tmp", "rb");
7819 if (fread (s, 1, sizeof (s), f) != 10 || strncmp (s, t, 10) != 0)
7820 status = 1;
7821 fclose (f);
7822 unlink ("tst.tmp");
7823 exit (status);
7827 if { [check_runtime ftruncate $prog] } {
7828 return 1;
7831 regsub "ftruncate" $prog "chsize" prog
7832 return [check_runtime chsize $prog]
7835 # Add to FLAGS all the target-specific flags needed to access the c99 runtime.
7837 proc add_options_for_c99_runtime { flags } {
7838 if { [istarget *-*-solaris2*] } {
7839 return "$flags -std=c99"
7841 if { [istarget powerpc-*-darwin*] } {
7842 return "$flags -mmacosx-version-min=10.3"
7844 return $flags
7847 # Add to FLAGS all the target-specific flags needed to enable
7848 # full IEEE compliance mode.
7850 proc add_options_for_ieee { flags } {
7851 if { [istarget alpha*-*-*]
7852 || [istarget sh*-*-*] } {
7853 return "$flags -mieee"
7855 if { [istarget rx-*-*] } {
7856 return "$flags -mnofpu"
7858 return $flags
7861 if {![info exists flags_to_postpone]} {
7862 set flags_to_postpone ""
7865 # Add to FLAGS the flags needed to enable functions to bind locally
7866 # when using pic/PIC passes in the testsuite.
7867 proc add_options_for_bind_pic_locally { flags } {
7868 global flags_to_postpone
7870 # Instead of returning 'flags' with the -fPIE or -fpie appended, we save it
7871 # in 'flags_to_postpone' and append it later in gcc_target_compile procedure in
7872 # order to make sure that the multilib_flags doesn't override this.
7874 if {[check_no_compiler_messages using_pic2 assembly {
7875 #if __PIC__ != 2
7876 #error __PIC__ != 2
7877 #endif
7878 }]} {
7879 set flags_to_postpone "-fPIE"
7880 return $flags
7882 if {[check_no_compiler_messages using_pic1 assembly {
7883 #if __PIC__ != 1
7884 #error __PIC__ != 1
7885 #endif
7886 }]} {
7887 set flags_to_postpone "-fpie"
7888 return $flags
7890 return $flags
7893 # Add to FLAGS the flags needed to enable 64-bit vectors.
7895 proc add_options_for_double_vectors { flags } {
7896 if [is-effective-target arm_neon_ok] {
7897 return "$flags -mvectorize-with-neon-double"
7900 return $flags
7903 # Add to FLAGS the flags needed to define the STACK_SIZE macro.
7905 proc add_options_for_stack_size { flags } {
7906 if [is-effective-target stack_size] {
7907 set stack_size [dg-effective-target-value stack_size]
7908 return "$flags -DSTACK_SIZE=$stack_size"
7911 return $flags
7914 # Return 1 if the target provides a full C99 runtime.
7916 proc check_effective_target_c99_runtime { } {
7917 return [check_cached_effective_target c99_runtime {
7918 global srcdir
7920 set file [open "$srcdir/gcc.dg/builtins-config.h"]
7921 set contents [read $file]
7922 close $file
7923 append contents {
7924 #ifndef HAVE_C99_RUNTIME
7925 #error !HAVE_C99_RUNTIME
7926 #endif
7928 check_no_compiler_messages_nocache c99_runtime assembly \
7929 $contents [add_options_for_c99_runtime ""]
7933 # Return 1 if target wchar_t is at least 4 bytes.
7935 proc check_effective_target_4byte_wchar_t { } {
7936 return [check_no_compiler_messages 4byte_wchar_t object {
7937 int dummy[sizeof (__WCHAR_TYPE__) >= 4 ? 1 : -1];
7941 # Return 1 if the target supports automatic stack alignment.
7943 proc check_effective_target_automatic_stack_alignment { } {
7944 # Ordinarily x86 supports automatic stack alignment ...
7945 if { [istarget i?86*-*-*] || [istarget x86_64-*-*] } then {
7946 if { [istarget *-*-mingw*] || [istarget *-*-cygwin*] } {
7947 # ... except Win64 SEH doesn't. Succeed for Win32 though.
7948 return [check_effective_target_ilp32];
7950 return 1;
7952 return 0;
7955 # Return true if we are compiling for AVX target.
7957 proc check_avx_available { } {
7958 if { [check_no_compiler_messages avx_available assembly {
7959 #ifndef __AVX__
7960 #error unsupported
7961 #endif
7962 } ""] } {
7963 return 1;
7965 return 0;
7968 # Return true if 32- and 16-bytes vectors are available.
7970 proc check_effective_target_vect_sizes_32B_16B { } {
7971 return [expr { [available_vector_sizes] == [list 256 128] }]
7974 # Return true if 16- and 8-bytes vectors are available.
7976 proc check_effective_target_vect_sizes_16B_8B { } {
7977 if { [check_avx_available]
7978 || [is-effective-target arm_neon]
7979 || [istarget aarch64*-*-*] } {
7980 return 1;
7981 } else {
7982 return 0;
7987 # Return true if 128-bits vectors are preferred even if 256-bits vectors
7988 # are available.
7990 proc check_prefer_avx128 { } {
7991 if ![check_avx_available] {
7992 return 0;
7994 return [check_no_messages_and_pattern avx_explicit "xmm" assembly {
7995 float a[1024],b[1024],c[1024];
7996 void foo (void) { int i; for (i = 0; i < 1024; i++) a[i]=b[i]+c[i];}
7997 } "-O2 -ftree-vectorize"]
8001 # Return 1 if avx512f instructions can be compiled.
8003 proc check_effective_target_avx512f { } {
8004 return [check_no_compiler_messages avx512f object {
8005 typedef double __m512d __attribute__ ((__vector_size__ (64)));
8006 typedef double __m128d __attribute__ ((__vector_size__ (16)));
8008 __m512d _mm512_add (__m512d a)
8010 return __builtin_ia32_addpd512_mask (a, a, a, 1, 4);
8013 __m128d _mm128_add (__m128d a)
8015 return __builtin_ia32_addsd_round (a, a, 8);
8018 __m128d _mm128_getmant (__m128d a)
8020 return __builtin_ia32_getmantsd_round (a, a, 0, 8);
8022 } "-O2 -mavx512f" ]
8025 # Return 1 if avx instructions can be compiled.
8027 proc check_effective_target_avx { } {
8028 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
8029 return 0
8031 return [check_no_compiler_messages avx object {
8032 void _mm256_zeroall (void)
8034 __builtin_ia32_vzeroall ();
8036 } "-O2 -mavx" ]
8039 # Return 1 if avx2 instructions can be compiled.
8040 proc check_effective_target_avx2 { } {
8041 return [check_no_compiler_messages avx2 object {
8042 typedef long long __v4di __attribute__ ((__vector_size__ (32)));
8043 __v4di
8044 mm256_is32_andnotsi256 (__v4di __X, __v4di __Y)
8046 return __builtin_ia32_andnotsi256 (__X, __Y);
8048 } "-O0 -mavx2" ]
8051 # Return 1 if sse instructions can be compiled.
8052 proc check_effective_target_sse { } {
8053 return [check_no_compiler_messages sse object {
8054 int main ()
8056 __builtin_ia32_stmxcsr ();
8057 return 0;
8059 } "-O2 -msse" ]
8062 # Return 1 if sse2 instructions can be compiled.
8063 proc check_effective_target_sse2 { } {
8064 return [check_no_compiler_messages sse2 object {
8065 typedef long long __m128i __attribute__ ((__vector_size__ (16)));
8067 __m128i _mm_srli_si128 (__m128i __A, int __N)
8069 return (__m128i)__builtin_ia32_psrldqi128 (__A, 8);
8071 } "-O2 -msse2" ]
8074 # Return 1 if sse4.1 instructions can be compiled.
8075 proc check_effective_target_sse4 { } {
8076 return [check_no_compiler_messages sse4.1 object {
8077 typedef long long __m128i __attribute__ ((__vector_size__ (16)));
8078 typedef int __v4si __attribute__ ((__vector_size__ (16)));
8080 __m128i _mm_mullo_epi32 (__m128i __X, __m128i __Y)
8082 return (__m128i) __builtin_ia32_pmulld128 ((__v4si)__X,
8083 (__v4si)__Y);
8085 } "-O2 -msse4.1" ]
8088 # Return 1 if F16C instructions can be compiled.
8090 proc check_effective_target_f16c { } {
8091 return [check_no_compiler_messages f16c object {
8092 #include "immintrin.h"
8093 float
8094 foo (unsigned short val)
8096 return _cvtsh_ss (val);
8098 } "-O2 -mf16c" ]
8101 # Return 1 if C wchar_t type is compatible with char16_t.
8103 proc check_effective_target_wchar_t_char16_t_compatible { } {
8104 return [check_no_compiler_messages wchar_t_char16_t object {
8105 __WCHAR_TYPE__ wc;
8106 __CHAR16_TYPE__ *p16 = &wc;
8107 char t[(((__CHAR16_TYPE__) -1) < 0 == ((__WCHAR_TYPE__) -1) < 0) ? 1 : -1];
8111 # Return 1 if C wchar_t type is compatible with char32_t.
8113 proc check_effective_target_wchar_t_char32_t_compatible { } {
8114 return [check_no_compiler_messages wchar_t_char32_t object {
8115 __WCHAR_TYPE__ wc;
8116 __CHAR32_TYPE__ *p32 = &wc;
8117 char t[(((__CHAR32_TYPE__) -1) < 0 == ((__WCHAR_TYPE__) -1) < 0) ? 1 : -1];
8121 # Return 1 if pow10 function exists.
8123 proc check_effective_target_pow10 { } {
8124 return [check_runtime pow10 {
8125 #include <math.h>
8126 int main () {
8127 double x;
8128 x = pow10 (1);
8129 return 0;
8131 } "-lm" ]
8134 # Return 1 if frexpl function exists.
8136 proc check_effective_target_frexpl { } {
8137 return [check_runtime frexpl {
8138 #include <math.h>
8139 int main () {
8140 long double x;
8141 int y;
8142 x = frexpl (5.0, &y);
8143 return 0;
8145 } "-lm" ]
8149 # Return 1 if issignaling function exists.
8150 proc check_effective_target_issignaling {} {
8151 return [check_runtime issignaling {
8152 #define _GNU_SOURCE
8153 #include <math.h>
8154 int main ()
8156 return issignaling (0.0);
8158 } "-lm" ]
8161 # Return 1 if current options generate DFP instructions, 0 otherwise.
8162 proc check_effective_target_hard_dfp {} {
8163 return [check_no_messages_and_pattern hard_dfp "!adddd3" assembly {
8164 typedef float d64 __attribute__((mode(DD)));
8165 d64 x, y, z;
8166 void foo (void) { z = x + y; }
8170 # Return 1 if string.h and wchar.h headers provide C++ requires overloads
8171 # for strchr etc. functions.
8173 proc check_effective_target_correct_iso_cpp_string_wchar_protos { } {
8174 return [check_no_compiler_messages correct_iso_cpp_string_wchar_protos assembly {
8175 #include <string.h>
8176 #include <wchar.h>
8177 #if !defined(__cplusplus) \
8178 || !defined(__CORRECT_ISO_CPP_STRING_H_PROTO) \
8179 || !defined(__CORRECT_ISO_CPP_WCHAR_H_PROTO)
8180 ISO C++ correct string.h and wchar.h protos not supported.
8181 #else
8182 int i;
8183 #endif
8187 # Return 1 if GNU as is used.
8189 proc check_effective_target_gas { } {
8190 global use_gas_saved
8191 global tool
8193 if {![info exists use_gas_saved]} {
8194 # Check if the as used by gcc is GNU as.
8195 set gcc_as [lindex [${tool}_target_compile "-print-prog-name=as" "" "none" ""] 0]
8196 # Provide /dev/null as input, otherwise gas times out reading from
8197 # stdin.
8198 set status [remote_exec host "$gcc_as" "-v /dev/null"]
8199 set as_output [lindex $status 1]
8200 if { [ string first "GNU" $as_output ] >= 0 } {
8201 set use_gas_saved 1
8202 } else {
8203 set use_gas_saved 0
8206 return $use_gas_saved
8209 # Return 1 if GNU ld is used.
8211 proc check_effective_target_gld { } {
8212 global use_gld_saved
8213 global tool
8215 if {![info exists use_gld_saved]} {
8216 # Check if the ld used by gcc is GNU ld.
8217 set gcc_ld [lindex [${tool}_target_compile "-print-prog-name=ld" "" "none" ""] 0]
8218 set status [remote_exec host "$gcc_ld" "--version"]
8219 set ld_output [lindex $status 1]
8220 if { [ string first "GNU" $ld_output ] >= 0 } {
8221 set use_gld_saved 1
8222 } else {
8223 set use_gld_saved 0
8226 return $use_gld_saved
8229 # Return 1 if the compiler has been configure with link-time optimization
8230 # (LTO) support.
8232 proc check_effective_target_lto { } {
8233 if { [istarget nvptx-*-*] } {
8234 return 0;
8236 return [check_no_compiler_messages lto object {
8237 void foo (void) { }
8238 } "-flto"]
8241 # Return 1 if -mx32 -maddress-mode=short can compile, 0 otherwise.
8243 proc check_effective_target_maybe_x32 { } {
8244 return [check_no_compiler_messages maybe_x32 object {
8245 void foo (void) {}
8246 } "-mx32 -maddress-mode=short"]
8249 # Return 1 if this target supports the -fsplit-stack option, 0
8250 # otherwise.
8252 proc check_effective_target_split_stack {} {
8253 return [check_no_compiler_messages split_stack object {
8254 void foo (void) { }
8255 } "-fsplit-stack"]
8258 # Return 1 if this target supports the -masm=intel option, 0
8259 # otherwise
8261 proc check_effective_target_masm_intel {} {
8262 return [check_no_compiler_messages masm_intel object {
8263 extern void abort (void);
8264 } "-masm=intel"]
8267 # Return 1 if the language for the compiler under test is C.
8269 proc check_effective_target_c { } {
8270 global tool
8271 if [string match $tool "gcc"] {
8272 return 1
8274 return 0
8277 # Return 1 if the language for the compiler under test is C++.
8279 proc check_effective_target_c++ { } {
8280 global tool
8281 if { [string match $tool "g++"] || [string match $tool "libstdc++"] } {
8282 return 1
8284 return 0
8287 set cxx_default "c++14"
8288 # Check whether the current active language standard supports the features
8289 # of C++11/C++14 by checking for the presence of one of the -std flags.
8290 # This assumes that the default for the compiler is $cxx_default, and that
8291 # there will never be multiple -std= arguments on the command line.
8292 proc check_effective_target_c++11_only { } {
8293 global cxx_default
8294 if ![check_effective_target_c++] {
8295 return 0
8297 if [check-flags { { } { } { -std=c++0x -std=gnu++0x -std=c++11 -std=gnu++11 } }] {
8298 return 1
8300 if { $cxx_default == "c++11" && [check-flags { { } { } { } { -std=* } }] } {
8301 return 1
8303 return 0
8305 proc check_effective_target_c++11 { } {
8306 if [check_effective_target_c++11_only] {
8307 return 1
8309 return [check_effective_target_c++14]
8311 proc check_effective_target_c++11_down { } {
8312 if ![check_effective_target_c++] {
8313 return 0
8315 return [expr ![check_effective_target_c++14] ]
8318 proc check_effective_target_c++14_only { } {
8319 global cxx_default
8320 if ![check_effective_target_c++] {
8321 return 0
8323 if [check-flags { { } { } { -std=c++14 -std=gnu++14 -std=c++14 -std=gnu++14 } }] {
8324 return 1
8326 if { $cxx_default == "c++14" && [check-flags { { } { } { } { -std=* } }] } {
8327 return 1
8329 return 0
8332 proc check_effective_target_c++14 { } {
8333 if [check_effective_target_c++14_only] {
8334 return 1
8336 return [check_effective_target_c++17]
8338 proc check_effective_target_c++14_down { } {
8339 if ![check_effective_target_c++] {
8340 return 0
8342 return [expr ![check_effective_target_c++17] ]
8345 proc check_effective_target_c++98_only { } {
8346 global cxx_default
8347 if ![check_effective_target_c++] {
8348 return 0
8350 if [check-flags { { } { } { -std=c++98 -std=gnu++98 -std=c++03 -std=gnu++03 } }] {
8351 return 1
8353 if { $cxx_default == "c++98" && [check-flags { { } { } { } { -std=* } }] } {
8354 return 1
8356 return 0
8359 proc check_effective_target_c++17_only { } {
8360 global cxx_default
8361 if ![check_effective_target_c++] {
8362 return 0
8364 if [check-flags { { } { } { -std=c++17 -std=gnu++17 -std=c++1z -std=gnu++1z } }] {
8365 return 1
8367 if { $cxx_default == "c++17" && [check-flags { { } { } { } { -std=* } }] } {
8368 return 1
8370 return 0
8373 proc check_effective_target_c++17 { } {
8374 if [check_effective_target_c++17_only] {
8375 return 1
8377 return [check_effective_target_c++2a]
8379 proc check_effective_target_c++17_down { } {
8380 if ![check_effective_target_c++] {
8381 return 0
8383 return [expr ![check_effective_target_c++2a] ]
8386 proc check_effective_target_c++2a_only { } {
8387 global cxx_default
8388 if ![check_effective_target_c++] {
8389 return 0
8391 if [check-flags { { } { } { -std=c++2a -std=gnu++2a } }] {
8392 return 1
8394 if { $cxx_default == "c++20" && [check-flags { { } { } { } { -std=* } }] } {
8395 return 1
8397 return 0
8399 proc check_effective_target_c++2a { } {
8400 return [check_effective_target_c++2a_only]
8403 # Check for C++ Concepts TS support, i.e. -fconcepts flag.
8404 proc check_effective_target_concepts { } {
8405 return [check-flags { "" { } { -fconcepts } }]
8408 # Return 1 if expensive testcases should be run.
8410 proc check_effective_target_run_expensive_tests { } {
8411 if { [getenv GCC_TEST_RUN_EXPENSIVE] != "" } {
8412 return 1
8414 return 0
8417 # Returns 1 if "mempcpy" is available on the target system.
8419 proc check_effective_target_mempcpy {} {
8420 return [check_function_available "mempcpy"]
8423 # Returns 1 if "stpcpy" is available on the target system.
8425 proc check_effective_target_stpcpy {} {
8426 return [check_function_available "stpcpy"]
8429 # Check whether the vectorizer tests are supported by the target and
8430 # append additional target-dependent compile flags to DEFAULT_VECTCFLAGS.
8431 # If a port wants to execute the tests more than once it should append
8432 # the supported target to EFFECTIVE_TARGETS instead, and the compile flags
8433 # will be added by a call to add_options_for_<target>.
8434 # Set dg-do-what-default to either compile or run, depending on target
8435 # capabilities. Do not set this if the supported target is appended to
8436 # EFFECTIVE_TARGETS. Flags and this variable will be set by et-dg-runtest
8437 # automatically. Return the number of effective targets if vectorizer tests
8438 # are supported, 0 otherwise.
8440 proc check_vect_support_and_set_flags { } {
8441 global DEFAULT_VECTCFLAGS
8442 global dg-do-what-default
8443 global EFFECTIVE_TARGETS
8445 if [istarget powerpc-*paired*] {
8446 lappend DEFAULT_VECTCFLAGS "-mpaired"
8447 if [check_750cl_hw_available] {
8448 set dg-do-what-default run
8449 } else {
8450 set dg-do-what-default compile
8452 } elseif [istarget powerpc*-*-*] {
8453 # Skip targets not supporting -maltivec.
8454 if ![is-effective-target powerpc_altivec_ok] {
8455 return 0
8458 lappend DEFAULT_VECTCFLAGS "-maltivec"
8459 if [check_p9vector_hw_available] {
8460 lappend DEFAULT_VECTCFLAGS "-mpower9-vector"
8461 } elseif [check_p8vector_hw_available] {
8462 lappend DEFAULT_VECTCFLAGS "-mpower8-vector"
8463 } elseif [check_vsx_hw_available] {
8464 lappend DEFAULT_VECTCFLAGS "-mvsx" "-mno-allow-movmisalign"
8467 if [check_vmx_hw_available] {
8468 set dg-do-what-default run
8469 } else {
8470 if [is-effective-target ilp32] {
8471 # Specify a cpu that supports VMX for compile-only tests.
8472 lappend DEFAULT_VECTCFLAGS "-mcpu=970"
8474 set dg-do-what-default compile
8476 } elseif { [istarget spu-*-*] } {
8477 set dg-do-what-default run
8478 } elseif { [istarget i?86-*-*] || [istarget x86_64-*-*] } {
8479 lappend DEFAULT_VECTCFLAGS "-msse2"
8480 if { [check_effective_target_sse2_runtime] } {
8481 set dg-do-what-default run
8482 } else {
8483 set dg-do-what-default compile
8485 } elseif { [istarget mips*-*-*]
8486 && [check_effective_target_nomips16] } {
8487 if { [check_effective_target_mpaired_single] } {
8488 lappend EFFECTIVE_TARGETS mpaired_single
8490 if { [check_effective_target_mips_loongson] } {
8491 lappend EFFECTIVE_TARGETS mips_loongson
8493 if { [check_effective_target_mips_msa] } {
8494 lappend EFFECTIVE_TARGETS mips_msa
8496 return [llength $EFFECTIVE_TARGETS]
8497 } elseif [istarget sparc*-*-*] {
8498 lappend DEFAULT_VECTCFLAGS "-mcpu=ultrasparc" "-mvis"
8499 if [check_effective_target_ultrasparc_hw] {
8500 set dg-do-what-default run
8501 } else {
8502 set dg-do-what-default compile
8504 } elseif [istarget alpha*-*-*] {
8505 # Alpha's vectorization capabilities are extremely limited.
8506 # It's more effort than its worth disabling all of the tests
8507 # that it cannot pass. But if you actually want to see what
8508 # does work, command out the return.
8509 return 0
8511 lappend DEFAULT_VECTCFLAGS "-mmax"
8512 if [check_alpha_max_hw_available] {
8513 set dg-do-what-default run
8514 } else {
8515 set dg-do-what-default compile
8517 } elseif [istarget ia64-*-*] {
8518 set dg-do-what-default run
8519 } elseif [is-effective-target arm_neon_ok] {
8520 eval lappend DEFAULT_VECTCFLAGS [add_options_for_arm_neon ""]
8521 # NEON does not support denormals, so is not used for vectorization by
8522 # default to avoid loss of precision. We must pass -ffast-math to test
8523 # vectorization of float operations.
8524 lappend DEFAULT_VECTCFLAGS "-ffast-math"
8525 if [is-effective-target arm_neon_hw] {
8526 set dg-do-what-default run
8527 } else {
8528 set dg-do-what-default compile
8530 } elseif [istarget "aarch64*-*-*"] {
8531 set dg-do-what-default run
8532 } elseif [istarget s390*-*-*] {
8533 # The S/390 backend set a default of 2 for that value.
8534 # Override it to have the same situation as with other
8535 # targets.
8536 lappend DEFAULT_VECTCFLAGS "--param" "min-vect-loop-bound=1"
8537 lappend DEFAULT_VECTCFLAGS "--param" "max-unrolled-insns=200"
8538 lappend DEFAULT_VECTCFLAGS "--param" "max-unroll-times=8"
8539 lappend DEFAULT_VECTCFLAGS "--param" "max-completely-peeled-insns=200"
8540 lappend DEFAULT_VECTCFLAGS "--param" "max-completely-peel-times=16"
8541 if [check_effective_target_s390_vxe] {
8542 lappend DEFAULT_VECTCFLAGS "-march=z14" "-mzarch"
8543 set dg-do-what-default run
8544 } elseif [check_effective_target_s390_vx] {
8545 lappend DEFAULT_VECTCFLAGS "-march=z13" "-mzarch"
8546 set dg-do-what-default run
8547 } else {
8548 lappend DEFAULT_VECTCFLAGS "-march=z14" "-mzarch"
8549 set dg-do-what-default compile
8551 } else {
8552 return 0
8555 return 1
8558 # Return 1 if the target does *not* require strict alignment.
8560 proc check_effective_target_non_strict_align {} {
8562 # On ARM, the default is to use STRICT_ALIGNMENT, but there
8563 # are interfaces defined for misaligned access and thus
8564 # depending on the architecture levels unaligned access is
8565 # available.
8566 if [istarget "arm*-*-*"] {
8567 return [check_effective_target_arm_unaligned]
8570 return [check_no_compiler_messages non_strict_align assembly {
8571 char *y;
8572 typedef char __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))) c;
8573 c *z;
8574 void foo(void) { z = (c *) y; }
8575 } "-Wcast-align"]
8578 # Return 1 if the target has <ucontext.h>.
8580 proc check_effective_target_ucontext_h { } {
8581 return [check_no_compiler_messages ucontext_h assembly {
8582 #include <ucontext.h>
8586 proc check_effective_target_aarch64_tiny { } {
8587 if { [istarget aarch64*-*-*] } {
8588 return [check_no_compiler_messages aarch64_tiny object {
8589 #ifdef __AARCH64_CMODEL_TINY__
8590 int dummy;
8591 #else
8592 #error target not AArch64 tiny code model
8593 #endif
8595 } else {
8596 return 0
8600 # Create functions to check that the AArch64 assembler supports the
8601 # various architecture extensions via the .arch_extension pseudo-op.
8603 foreach { aarch64_ext } { "fp" "simd" "crypto" "crc" "lse" "dotprod" "sve"} {
8604 eval [string map [list FUNC $aarch64_ext] {
8605 proc check_effective_target_aarch64_asm_FUNC_ok { } {
8606 if { [istarget aarch64*-*-*] } {
8607 return [check_no_compiler_messages aarch64_FUNC_assembler object {
8608 __asm__ (".arch_extension FUNC");
8609 } "-march=armv8-a+FUNC"]
8610 } else {
8611 return 0
8617 proc check_effective_target_aarch64_small { } {
8618 if { [istarget aarch64*-*-*] } {
8619 return [check_no_compiler_messages aarch64_small object {
8620 #ifdef __AARCH64_CMODEL_SMALL__
8621 int dummy;
8622 #else
8623 #error target not AArch64 small code model
8624 #endif
8626 } else {
8627 return 0
8631 proc check_effective_target_aarch64_large { } {
8632 if { [istarget aarch64*-*-*] } {
8633 return [check_no_compiler_messages aarch64_large object {
8634 #ifdef __AARCH64_CMODEL_LARGE__
8635 int dummy;
8636 #else
8637 #error target not AArch64 large code model
8638 #endif
8640 } else {
8641 return 0
8646 # Return 1 if this is a reduced AVR Tiny core. Such cores have different
8647 # register set, instruction set, addressing capabilities and ABI.
8649 proc check_effective_target_avr_tiny { } {
8650 if { [istarget avr*-*-*] } {
8651 return [check_no_compiler_messages avr_tiny object {
8652 #ifdef __AVR_TINY__
8653 int dummy;
8654 #else
8655 #error target not a reduced AVR Tiny core
8656 #endif
8658 } else {
8659 return 0
8663 # Return 1 if <fenv.h> is available with all the standard IEEE
8664 # exceptions and floating-point exceptions are raised by arithmetic
8665 # operations. (If the target requires special options for "inexact"
8666 # exceptions, those need to be specified in the testcases.)
8668 proc check_effective_target_fenv_exceptions {} {
8669 return [check_runtime fenv_exceptions {
8670 #include <fenv.h>
8671 #include <stdlib.h>
8672 #ifndef FE_DIVBYZERO
8673 # error Missing FE_DIVBYZERO
8674 #endif
8675 #ifndef FE_INEXACT
8676 # error Missing FE_INEXACT
8677 #endif
8678 #ifndef FE_INVALID
8679 # error Missing FE_INVALID
8680 #endif
8681 #ifndef FE_OVERFLOW
8682 # error Missing FE_OVERFLOW
8683 #endif
8684 #ifndef FE_UNDERFLOW
8685 # error Missing FE_UNDERFLOW
8686 #endif
8687 volatile float a = 0.0f, r;
8689 main (void)
8691 r = a / a;
8692 if (fetestexcept (FE_INVALID))
8693 exit (0);
8694 else
8695 abort ();
8697 } [add_options_for_ieee "-std=gnu99"]]
8700 proc check_effective_target_tiny {} {
8701 global et_target_tiny_saved
8703 if [info exists et_target_tiny_saved] {
8704 verbose "check_effective_target_tiny: using cached result" 2
8705 } else {
8706 set et_target_tiny_saved 0
8707 if { [istarget aarch64*-*-*]
8708 && [check_effective_target_aarch64_tiny] } {
8709 set et_target_tiny_saved 1
8711 if { [istarget avr-*-*]
8712 && [check_effective_target_avr_tiny] } {
8713 set et_target_tiny_saved 1
8717 return $et_target_tiny_saved
8720 # Return 1 if LOGICAL_OP_NON_SHORT_CIRCUIT is set to 0 for the current target.
8722 proc check_effective_target_logical_op_short_circuit {} {
8723 if { [istarget mips*-*-*]
8724 || [istarget arc*-*-*]
8725 || [istarget avr*-*-*]
8726 || [istarget crisv32-*-*] || [istarget cris-*-*]
8727 || [istarget mmix-*-*]
8728 || [istarget s390*-*-*]
8729 || [istarget powerpc*-*-*]
8730 || [istarget nios2*-*-*]
8731 || [istarget riscv*-*-*]
8732 || [istarget visium-*-*]
8733 || [check_effective_target_arm_cortex_m] } {
8734 return 1
8736 return 0
8739 # Return 1 if the target supports -mbranch-cost=N option.
8741 proc check_effective_target_branch_cost {} {
8742 if { [ istarget arm*-*-*]
8743 || [istarget avr*-*-*]
8744 || [istarget epiphany*-*-*]
8745 || [istarget frv*-*-*]
8746 || [istarget i?86-*-*] || [istarget x86_64-*-*]
8747 || [istarget mips*-*-*]
8748 || [istarget s390*-*-*]
8749 || [istarget riscv*-*-*]
8750 || [istarget sh*-*-*]
8751 || [istarget spu*-*-*] } {
8752 return 1
8754 return 0
8757 # Record that dg-final test TEST requires convential compilation.
8759 proc force_conventional_output_for { test } {
8760 if { [info proc $test] == "" } {
8761 perror "$test does not exist"
8762 exit 1
8764 proc ${test}_required_options {} {
8765 global gcc_force_conventional_output
8766 return $gcc_force_conventional_output
8770 # Return 1 if the x86-64 target supports PIE with copy reloc, 0
8771 # otherwise. Cache the result.
8773 proc check_effective_target_pie_copyreloc { } {
8774 global pie_copyreloc_available_saved
8775 global tool
8776 global GCC_UNDER_TEST
8778 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
8779 return 0
8782 # Need auto-host.h to check linker support.
8783 if { ![file exists ../../auto-host.h ] } {
8784 return 0
8787 if [info exists pie_copyreloc_available_saved] {
8788 verbose "check_effective_target_pie_copyreloc returning saved $pie_copyreloc_available_saved" 2
8789 } else {
8790 # Set up and compile to see if linker supports PIE with copy
8791 # reloc. Include the current process ID in the file names to
8792 # prevent conflicts with invocations for multiple testsuites.
8794 set src pie[pid].c
8795 set obj pie[pid].o
8797 set f [open $src "w"]
8798 puts $f "#include \"../../auto-host.h\""
8799 puts $f "#if HAVE_LD_PIE_COPYRELOC == 0"
8800 puts $f "# error Linker does not support PIE with copy reloc."
8801 puts $f "#endif"
8802 close $f
8804 verbose "check_effective_target_pie_copyreloc compiling testfile $src" 2
8805 set lines [${tool}_target_compile $src $obj object ""]
8807 file delete $src
8808 file delete $obj
8810 if [string match "" $lines] then {
8811 verbose "check_effective_target_pie_copyreloc testfile compilation passed" 2
8812 set pie_copyreloc_available_saved 1
8813 } else {
8814 verbose "check_effective_target_pie_copyreloc testfile compilation failed" 2
8815 set pie_copyreloc_available_saved 0
8819 return $pie_copyreloc_available_saved
8822 # Return 1 if the x86 target supports R_386_GOT32X relocation, 0
8823 # otherwise. Cache the result.
8825 proc check_effective_target_got32x_reloc { } {
8826 global got32x_reloc_available_saved
8827 global tool
8828 global GCC_UNDER_TEST
8830 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
8831 return 0
8834 # Need auto-host.h to check linker support.
8835 if { ![file exists ../../auto-host.h ] } {
8836 return 0
8839 if [info exists got32x_reloc_available_saved] {
8840 verbose "check_effective_target_got32x_reloc returning saved $got32x_reloc_available_saved" 2
8841 } else {
8842 # Include the current process ID in the file names to prevent
8843 # conflicts with invocations for multiple testsuites.
8845 set src got32x[pid].c
8846 set obj got32x[pid].o
8848 set f [open $src "w"]
8849 puts $f "#include \"../../auto-host.h\""
8850 puts $f "#if HAVE_AS_IX86_GOT32X == 0"
8851 puts $f "# error Assembler does not support R_386_GOT32X."
8852 puts $f "#endif"
8853 close $f
8855 verbose "check_effective_target_got32x_reloc compiling testfile $src" 2
8856 set lines [${tool}_target_compile $src $obj object ""]
8858 file delete $src
8859 file delete $obj
8861 if [string match "" $lines] then {
8862 verbose "check_effective_target_got32x_reloc testfile compilation passed" 2
8863 set got32x_reloc_available_saved 1
8864 } else {
8865 verbose "check_effective_target_got32x_reloc testfile compilation failed" 2
8866 set got32x_reloc_available_saved 0
8870 return $got32x_reloc_available_saved
8873 # Return 1 if the x86 target supports calling ___tls_get_addr via GOT,
8874 # 0 otherwise. Cache the result.
8876 proc check_effective_target_tls_get_addr_via_got { } {
8877 global tls_get_addr_via_got_available_saved
8878 global tool
8879 global GCC_UNDER_TEST
8881 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
8882 return 0
8885 # Need auto-host.h to check linker support.
8886 if { ![file exists ../../auto-host.h ] } {
8887 return 0
8890 if [info exists tls_get_addr_via_got_available_saved] {
8891 verbose "check_effective_target_tls_get_addr_via_got returning saved $tls_get_addr_via_got_available_saved" 2
8892 } else {
8893 # Include the current process ID in the file names to prevent
8894 # conflicts with invocations for multiple testsuites.
8896 set src tls_get_addr_via_got[pid].c
8897 set obj tls_get_addr_via_got[pid].o
8899 set f [open $src "w"]
8900 puts $f "#include \"../../auto-host.h\""
8901 puts $f "#if HAVE_AS_IX86_TLS_GET_ADDR_GOT == 0"
8902 puts $f "# error Assembler/linker do not support calling ___tls_get_addr via GOT."
8903 puts $f "#endif"
8904 close $f
8906 verbose "check_effective_target_tls_get_addr_via_got compiling testfile $src" 2
8907 set lines [${tool}_target_compile $src $obj object ""]
8909 file delete $src
8910 file delete $obj
8912 if [string match "" $lines] then {
8913 verbose "check_effective_target_tls_get_addr_via_got testfile compilation passed" 2
8914 set tls_get_addr_via_got_available_saved 1
8915 } else {
8916 verbose "check_effective_target_tls_get_addr_via_got testfile compilation failed" 2
8917 set tls_get_addr_via_got_available_saved 0
8921 return $tls_get_addr_via_got_available_saved
8924 # Return 1 if the target uses comdat groups.
8926 proc check_effective_target_comdat_group {} {
8927 return [check_no_messages_and_pattern comdat_group "\.section\[^\n\r]*,comdat" assembly {
8928 // C++
8929 inline int foo () { return 1; }
8930 int (*fn) () = foo;
8934 # Return 1 if target supports __builtin_eh_return
8935 proc check_effective_target_builtin_eh_return { } {
8936 return [check_no_compiler_messages builtin_eh_return object {
8937 void test (long l, void *p)
8939 __builtin_eh_return (l, p);
8941 } "" ]
8944 # Return 1 if the target supports max reduction for vectors.
8946 proc check_effective_target_vect_max_reduc { } {
8947 if { [istarget aarch64*-*-*] || [is-effective-target arm_neon] } {
8948 return 1
8950 return 0
8953 # Return 1 if there is an nvptx offload compiler.
8955 proc check_effective_target_offload_nvptx { } {
8956 return [check_no_compiler_messages offload_nvptx object {
8957 int main () {return 0;}
8958 } "-foffload=nvptx-none" ]
8961 # Return 1 if the compiler has been configured with hsa offloading.
8963 proc check_effective_target_offload_hsa { } {
8964 return [check_no_compiler_messages offload_hsa assembly {
8965 int main () {return 0;}
8966 } "-foffload=hsa" ]
8969 # Return 1 if the target support -fprofile-update=atomic
8970 proc check_effective_target_profile_update_atomic {} {
8971 return [check_no_compiler_messages profile_update_atomic assembly {
8972 int main (void) { return 0; }
8973 } "-fprofile-update=atomic -fprofile-generate"]
8976 # Return 1 if vector (va - vector add) instructions are understood by
8977 # the assembler and can be executed. This also covers checking for
8978 # the VX kernel feature. A kernel without that feature does not
8979 # enable the vector facility and the following check will die with a
8980 # signal.
8981 proc check_effective_target_s390_vx { } {
8982 if ![istarget s390*-*-*] then {
8983 return 0;
8986 return [check_runtime s390_check_vx {
8987 int main (void)
8989 asm ("va %%v24, %%v26, %%v28, 3" : : : "v24", "v26", "v28");
8990 return 0;
8992 } "-march=z13 -mzarch" ]
8995 # Same as above but for the z14 vector enhancement facility. Test
8996 # is performed with the vector nand instruction.
8997 proc check_effective_target_s390_vxe { } {
8998 if ![istarget s390*-*-*] then {
8999 return 0;
9002 return [check_runtime s390_check_vxe {
9003 int main (void)
9005 asm ("vnn %%v24, %%v26, %%v28" : : : "v24", "v26", "v28");
9006 return 0;
9008 } "-march=z14 -mzarch" ]
9011 #For versions of ARM architectures that have hardware div insn,
9012 #disable the divmod transform
9014 proc check_effective_target_arm_divmod_simode { } {
9015 return [check_no_compiler_messages arm_divmod assembly {
9016 #ifdef __ARM_ARCH_EXT_IDIV__
9017 #error has div insn
9018 #endif
9019 int i;
9023 # Return 1 if target supports divmod hardware insn or divmod libcall.
9025 proc check_effective_target_divmod { } {
9026 #TODO: Add checks for all targets that have either hardware divmod insn
9027 # or define libfunc for divmod.
9028 if { [istarget arm*-*-*]
9029 || [istarget i?86-*-*] || [istarget x86_64-*-*] } {
9030 return 1
9032 return 0
9035 # Return 1 if target supports divmod for SImode. The reason for
9036 # separating this from check_effective_target_divmod is that
9037 # some versions of ARM architecture define div instruction
9038 # only for simode, and for these archs, we do not want to enable
9039 # divmod transform for simode.
9041 proc check_effective_target_divmod_simode { } {
9042 if { [istarget arm*-*-*] } {
9043 return [check_effective_target_arm_divmod_simode]
9046 return [check_effective_target_divmod]
9049 # Return 1 if store merging optimization is applicable for target.
9050 # Store merging is not profitable for targets like the avr which
9051 # can load/store only one byte at a time. Use int size as a proxy
9052 # for the number of bytes the target can write, and skip for targets
9053 # with a smallish (< 32) size.
9055 proc check_effective_target_store_merge { } {
9056 if { [is-effective-target non_strict_align ] && [is-effective-target int32plus] } {
9057 return 1
9060 return 0
9063 # Return 1 if we're able to assemble rdrand
9065 proc check_effective_target_rdrand { } {
9066 return [check_no_compiler_messages_nocache rdrand object {
9067 unsigned int
9068 __foo(void)
9070 unsigned int val;
9071 __builtin_ia32_rdrand32_step(&val);
9072 return val;
9074 } "-mrdrnd" ]
9077 # Return 1 if the target supports coprocessor instructions: cdp, ldc, ldcl,
9078 # stc, stcl, mcr and mrc.
9079 proc check_effective_target_arm_coproc1_ok_nocache { } {
9080 if { ![istarget arm*-*-*] } {
9081 return 0
9083 return [check_no_compiler_messages_nocache arm_coproc1_ok assembly {
9084 #if (__thumb__ && !__thumb2__) || __ARM_ARCH < 4
9085 #error FOO
9086 #endif
9090 proc check_effective_target_arm_coproc1_ok { } {
9091 return [check_cached_effective_target arm_coproc1_ok \
9092 check_effective_target_arm_coproc1_ok_nocache]
9095 # Return 1 if the target supports all coprocessor instructions checked by
9096 # check_effective_target_arm_coproc1_ok in addition to the following: cdp2,
9097 # ldc2, ldc2l, stc2, stc2l, mcr2 and mrc2.
9098 proc check_effective_target_arm_coproc2_ok_nocache { } {
9099 if { ![check_effective_target_arm_coproc1_ok] } {
9100 return 0
9102 return [check_no_compiler_messages_nocache arm_coproc2_ok assembly {
9103 #if (__thumb__ && !__thumb2__) || __ARM_ARCH < 5
9104 #error FOO
9105 #endif
9109 proc check_effective_target_arm_coproc2_ok { } {
9110 return [check_cached_effective_target arm_coproc2_ok \
9111 check_effective_target_arm_coproc2_ok_nocache]
9114 # Return 1 if the target supports all coprocessor instructions checked by
9115 # check_effective_target_arm_coproc2_ok in addition the following: mcrr and
9116 # mrrc.
9117 proc check_effective_target_arm_coproc3_ok_nocache { } {
9118 if { ![check_effective_target_arm_coproc2_ok] } {
9119 return 0
9121 return [check_no_compiler_messages_nocache arm_coproc3_ok assembly {
9122 #if (__thumb__ && !__thumb2__) \
9123 || (__ARM_ARCH < 6 && !defined (__ARM_ARCH_5TE__))
9124 #error FOO
9125 #endif
9129 proc check_effective_target_arm_coproc3_ok { } {
9130 return [check_cached_effective_target arm_coproc3_ok \
9131 check_effective_target_arm_coproc3_ok_nocache]
9134 # Return 1 if the target supports all coprocessor instructions checked by
9135 # check_effective_target_arm_coproc3_ok in addition the following: mcrr2 and
9136 # mrcc2.
9137 proc check_effective_target_arm_coproc4_ok_nocache { } {
9138 if { ![check_effective_target_arm_coproc3_ok] } {
9139 return 0
9141 return [check_no_compiler_messages_nocache arm_coproc4_ok assembly {
9142 #if (__thumb__ && !__thumb2__) || __ARM_ARCH < 6
9143 #error FOO
9144 #endif
9148 proc check_effective_target_arm_coproc4_ok { } {
9149 return [check_cached_effective_target arm_coproc4_ok \
9150 check_effective_target_arm_coproc4_ok_nocache]
9153 # Return 1 if the target supports the auto_inc_dec optimization pass.
9154 proc check_effective_target_autoincdec { } {
9155 if { ![check_no_compiler_messages auto_incdec assembly { void f () { }
9156 } "-O2 -fdump-rtl-auto_inc_dec" ] } {
9157 return 0
9160 set dumpfile [glob -nocomplain "auto_incdec[pid].c.\[0-9\]\[0-9\]\[0-9\]r.auto_inc_dec"]
9161 if { [file exists $dumpfile ] } {
9162 file delete $dumpfile
9163 return 1
9165 return 0
9168 # Return 1 if the target has support for stack probing designed
9169 # to avoid stack-clash style attacks.
9171 # This is used to restrict the stack-clash mitigation tests to
9172 # just those targets that have been explicitly supported.
9174 # In addition to the prologue work on those targets, each target's
9175 # properties should be described in the functions below so that
9176 # tests do not become a mess of unreadable target conditions.
9178 proc check_effective_target_supports_stack_clash_protection { } {
9180 # Temporary until the target bits are fully ACK'd.
9181 # if { [istarget aarch*-*-*] } {
9182 # return 1
9185 if { [istarget x86_64-*-*] || [istarget i?86-*-*]
9186 || [istarget powerpc*-*-*] || [istarget rs6000*-*-*]
9187 || [istarget s390*-*-*] } {
9188 return 1
9190 return 0
9193 # Return 1 if the target creates a frame pointer for non-leaf functions
9194 # Note we ignore cases where we apply tail call optimization here.
9195 proc check_effective_target_frame_pointer_for_non_leaf { } {
9196 if { [istarget aarch*-*-*] } {
9197 return 1
9200 # Solaris/x86 defaults to -fno-omit-frame-pointer.
9201 if { [istarget i?86-*-solaris*] || [istarget x86_64-*-solaris*] } {
9202 return 1
9205 return 0
9208 # Return 1 if the target's calling sequence or its ABI
9209 # create implicit stack probes at or prior to function entry.
9210 proc check_effective_target_caller_implicit_probes { } {
9212 # On x86/x86_64 the call instruction itself pushes the return
9213 # address onto the stack. That is an implicit probe of *sp.
9214 if { [istarget x86_64-*-*] || [istarget i?86-*-*] } {
9215 return 1
9218 # On PPC, the ABI mandates that the address of the outer
9219 # frame be stored at *sp. Thus each allocation of stack
9220 # space is itself an implicit probe of *sp.
9221 if { [istarget powerpc*-*-*] || [istarget rs6000*-*-*] } {
9222 return 1
9225 # s390's ABI has a register save area allocated by the
9226 # caller for use by the callee. The mere existence does
9227 # not constitute a probe by the caller, but when the slots
9228 # used by the callee those stores are implicit probes.
9229 if { [istarget s390*-*-*] } {
9230 return 1
9233 # Not strictly true on aarch64, but we have agreed that we will
9234 # consider any function that pushes SP more than 3kbytes into
9235 # the guard page as broken. This essentially means that we can
9236 # consider the aarch64 as having a caller implicit probe at
9237 # *(sp + 1k).
9238 if { [istarget aarch64*-*-*] } {
9239 return 1;
9242 return 0
9245 # Targets that potentially realign the stack pointer often cause residual
9246 # stack allocations and make it difficult to elimination loops or residual
9247 # allocations for dynamic stack allocations
9248 proc check_effective_target_callee_realigns_stack { } {
9249 if { [istarget x86_64-*-*] || [istarget i?86-*-*] } {
9250 return 1
9252 return 0
9255 # Return 1 if CET instructions can be compiled.
9256 proc check_effective_target_cet { } {
9257 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
9258 return 0
9260 return [check_no_compiler_messages cet object {
9261 void foo (void)
9263 asm ("setssbsy");
9265 } "-O2" ]