Fix ifunc detection in target-supports.exp file.
[official-gcc.git] / gcc / testsuite / lib / target-supports.exp
bloba3ce690efa8dfea06bfa3d3ff72ea48bd9afe7a0
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 extern void f_ ();
452 typedef void F (void);
453 F* g (void) { return &f_; }
454 void f () __attribute__ ((ifunc ("g")));
455 #ifdef __cplusplus
457 #endif
461 # Returns true if --gc-sections is supported on the target.
463 proc check_gc_sections_available { } {
464 global gc_sections_available_saved
465 global tool
467 if {![info exists gc_sections_available_saved]} {
468 # Some targets don't support gc-sections despite whatever's
469 # advertised by ld's options.
470 if { [istarget alpha*-*-*]
471 || [istarget ia64-*-*] } {
472 set gc_sections_available_saved 0
473 return 0
476 # elf2flt uses -q (--emit-relocs), which is incompatible with
477 # --gc-sections.
478 if { [board_info target exists ldflags]
479 && [regexp " -elf2flt\[ =\]" " [board_info target ldflags] "] } {
480 set gc_sections_available_saved 0
481 return 0
484 # VxWorks kernel modules are relocatable objects linked with -r,
485 # while RTP executables are linked with -q (--emit-relocs).
486 # Both of these options are incompatible with --gc-sections.
487 if { [istarget *-*-vxworks*] } {
488 set gc_sections_available_saved 0
489 return 0
492 # Check if the ld used by gcc supports --gc-sections.
493 set gcc_ld [lindex [${tool}_target_compile "-print-prog-name=ld" "" "none" ""] 0]
494 set ld_output [remote_exec host "$gcc_ld" "--help"]
495 if { [ string first "--gc-sections" $ld_output ] >= 0 } {
496 set gc_sections_available_saved 1
497 } else {
498 set gc_sections_available_saved 0
501 return $gc_sections_available_saved
504 # Return 1 if according to target_info struct and explicit target list
505 # target is supposed to support trampolines.
507 proc check_effective_target_trampolines { } {
508 if [target_info exists gcc,no_trampolines] {
509 return 0
511 if { [istarget avr-*-*]
512 || [istarget msp430-*-*]
513 || [istarget nvptx-*-*]
514 || [istarget hppa2.0w-hp-hpux11.23]
515 || [istarget hppa64-hp-hpux11.23] } {
516 return 0;
518 return 1
521 # Return 1 if target has limited stack size.
523 proc check_effective_target_stack_size { } {
524 if [target_info exists gcc,stack_size] {
525 return 1
527 return 0
530 # Return the value attribute of an effective target, otherwise return 0.
532 proc dg-effective-target-value { effective_target } {
533 if { "$effective_target" == "stack_size" } {
534 if [check_effective_target_stack_size] {
535 return [target_info gcc,stack_size]
539 return 0
542 # Return 1 if signal.h is supported.
544 proc check_effective_target_signal { } {
545 if [target_info exists gcc,signal_suppress] {
546 return 0
548 return 1
551 # Return 1 if according to target_info struct and explicit target list
552 # target disables -fdelete-null-pointer-checks. Targets should return 0
553 # if they simply default to -fno-delete-null-pointer-checks but obey
554 # -fdelete-null-pointer-checks when passed explicitly (and tests that
555 # depend on this option should do that).
557 proc check_effective_target_keeps_null_pointer_checks { } {
558 if [target_info exists keeps_null_pointer_checks] {
559 return 1
561 if { [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.1-a" __ARM_ARCH_8A__
4113 v8_2a "-march=armv8.2-a" __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
4129 main (void)
4131 return 0;
4133 } "FLAG" ]
4136 proc add_options_for_arm_arch_FUNC { flags } {
4137 return "$flags FLAG"
4140 proc check_effective_target_arm_arch_FUNC_multilib { } {
4141 return [check_runtime arm_arch_FUNC_multilib {
4143 main (void)
4145 return 0;
4147 } [add_options_for_arm_arch_FUNC ""]]
4152 # Return 1 if GCC was configured with --with-mode=
4153 proc check_effective_target_default_mode { } {
4155 return [check_configured_with "with-mode="]
4158 # Return 1 if this is an ARM target where -marm causes ARM to be
4159 # used (not Thumb)
4161 proc check_effective_target_arm_arm_ok { } {
4162 return [check_no_compiler_messages arm_arm_ok assembly {
4163 #if !defined (__arm__) || defined (__thumb__) || defined (__thumb2__)
4164 #error !__arm__ || __thumb__ || __thumb2__
4165 #endif
4166 } "-marm"]
4170 # Return 1 is this is an ARM target where -mthumb causes Thumb-1 to be
4171 # used.
4173 proc check_effective_target_arm_thumb1_ok { } {
4174 return [check_no_compiler_messages arm_thumb1_ok assembly {
4175 #if !defined(__arm__) || !defined(__thumb__) || defined(__thumb2__)
4176 #error !__arm__ || !__thumb__ || __thumb2__
4177 #endif
4178 int foo (int i) { return i; }
4179 } "-mthumb"]
4182 # Return 1 is this is an ARM target where -mthumb causes Thumb-2 to be
4183 # used.
4185 proc check_effective_target_arm_thumb2_ok { } {
4186 return [check_no_compiler_messages arm_thumb2_ok assembly {
4187 #if !defined(__thumb2__)
4188 #error !__thumb2__
4189 #endif
4190 int foo (int i) { return i; }
4191 } "-mthumb"]
4194 # Return 1 if this is an ARM target where Thumb-1 is used without options
4195 # added by the test.
4197 proc check_effective_target_arm_thumb1 { } {
4198 return [check_no_compiler_messages arm_thumb1 assembly {
4199 #if !defined(__arm__) || !defined(__thumb__) || defined(__thumb2__)
4200 #error !__arm__ || !__thumb__ || __thumb2__
4201 #endif
4202 int i;
4203 } ""]
4206 # Return 1 if this is an ARM target where Thumb-2 is used without options
4207 # added by the test.
4209 proc check_effective_target_arm_thumb2 { } {
4210 return [check_no_compiler_messages arm_thumb2 assembly {
4211 #if !defined(__thumb2__)
4212 #error !__thumb2__
4213 #endif
4214 int i;
4215 } ""]
4218 # Return 1 if this is an ARM target where conditional execution is available.
4220 proc check_effective_target_arm_cond_exec { } {
4221 return [check_no_compiler_messages arm_cond_exec assembly {
4222 #if defined(__arm__) && defined(__thumb__) && !defined(__thumb2__)
4223 #error FOO
4224 #endif
4225 int i;
4226 } ""]
4229 # Return 1 if this is an ARM cortex-M profile cpu
4231 proc check_effective_target_arm_cortex_m { } {
4232 if { ![istarget arm*-*-*] } {
4233 return 0
4235 return [check_no_compiler_messages arm_cortex_m assembly {
4236 #if defined(__ARM_ARCH_ISA_ARM)
4237 #error __ARM_ARCH_ISA_ARM is defined
4238 #endif
4239 int i;
4240 } "-mthumb"]
4243 # Return 1 if this is an ARM target where -mthumb causes Thumb-1 to be
4244 # used and MOVT/MOVW instructions to be available.
4246 proc check_effective_target_arm_thumb1_movt_ok {} {
4247 if [check_effective_target_arm_thumb1_ok] {
4248 return [check_no_compiler_messages arm_movt object {
4250 foo (void)
4252 asm ("movt r0, #42");
4254 } "-mthumb"]
4255 } else {
4256 return 0
4260 # Return 1 if this is an ARM target where -mthumb causes Thumb-1 to be
4261 # used and CBZ and CBNZ instructions are available.
4263 proc check_effective_target_arm_thumb1_cbz_ok {} {
4264 if [check_effective_target_arm_thumb1_ok] {
4265 return [check_no_compiler_messages arm_movt object {
4267 foo (void)
4269 asm ("cbz r0, 2f\n2:");
4271 } "-mthumb"]
4272 } else {
4273 return 0
4277 # Return 1 if this is an ARM target where ARMv8-M Security Extensions is
4278 # available.
4280 proc check_effective_target_arm_cmse_ok {} {
4281 return [check_no_compiler_messages arm_cmse object {
4283 foo (void)
4285 asm ("bxns r0");
4287 } "-mcmse"];
4290 # Return 1 if this compilation turns on string_ops_prefer_neon on.
4292 proc check_effective_target_arm_tune_string_ops_prefer_neon { } {
4293 return [check_no_messages_and_pattern arm_tune_string_ops_prefer_neon "@string_ops_prefer_neon:\t1" assembly {
4294 int foo (void) { return 0; }
4295 } "-O2 -mprint-tune-info" ]
4298 # Return 1 if the target supports executing NEON instructions, 0
4299 # otherwise. Cache the result.
4301 proc check_effective_target_arm_neon_hw { } {
4302 return [check_runtime arm_neon_hw_available {
4304 main (void)
4306 long long a = 0, b = 1;
4307 asm ("vorr %P0, %P1, %P2"
4308 : "=w" (a)
4309 : "0" (a), "w" (b));
4310 return (a != 1);
4312 } [add_options_for_arm_neon ""]]
4315 # Return true if this is an AArch64 target that can run SVE code.
4317 proc check_effective_target_aarch64_sve_hw { } {
4318 if { ![istarget aarch64*-*-*] } {
4319 return 0
4321 return [check_runtime aarch64_sve_hw_available {
4323 main (void)
4325 asm volatile ("ptrue p0.b");
4326 return 0;
4331 # Return true if this is an AArch64 target that can run SVE code and
4332 # if its SVE vectors have exactly BITS bits.
4334 proc aarch64_sve_hw_bits { bits } {
4335 if { ![check_effective_target_aarch64_sve_hw] } {
4336 return 0
4338 return [check_runtime aarch64_sve${bits}_hw [subst {
4340 main (void)
4342 int res;
4343 asm volatile ("cntd %0" : "=r" (res));
4344 if (res * 64 != $bits)
4345 __builtin_abort ();
4346 return 0;
4351 # Return true if this is an AArch64 target that can run SVE code and
4352 # if its SVE vectors have exactly 256 bits.
4354 proc check_effective_target_aarch64_sve256_hw { } {
4355 return [aarch64_sve_hw_bits 256]
4358 proc check_effective_target_arm_neonv2_hw { } {
4359 return [check_runtime arm_neon_hwv2_available {
4360 #include "arm_neon.h"
4362 main (void)
4364 float32x2_t a, b, c;
4365 asm ("vfma.f32 %P0, %P1, %P2"
4366 : "=w" (a)
4367 : "w" (b), "w" (c));
4368 return 0;
4370 } [add_options_for_arm_neonv2 ""]]
4373 # Return 1 if the target supports the ARMv8.1 Adv.SIMD extension, 0
4374 # otherwise. The test is valid for AArch64 and ARM. Record the command
4375 # line options needed.
4377 proc check_effective_target_arm_v8_1a_neon_ok_nocache { } {
4378 global et_arm_v8_1a_neon_flags
4379 set et_arm_v8_1a_neon_flags ""
4381 if { ![istarget arm*-*-*] && ![istarget aarch64*-*-*] } {
4382 return 0;
4385 # Iterate through sets of options to find the compiler flags that
4386 # need to be added to the -march option. Start with the empty set
4387 # since AArch64 only needs the -march setting.
4388 foreach flags {"" "-mfpu=neon-fp-armv8" "-mfloat-abi=softfp" \
4389 "-mfpu=neon-fp-armv8 -mfloat-abi=softfp"} {
4390 foreach arches { "-march=armv8-a+rdma" "-march=armv8.1-a" } {
4391 if { [check_no_compiler_messages_nocache arm_v8_1a_neon_ok object {
4392 #if !defined (__ARM_FEATURE_QRDMX)
4393 #error "__ARM_FEATURE_QRDMX not defined"
4394 #endif
4395 } "$flags $arches"] } {
4396 set et_arm_v8_1a_neon_flags "$flags $arches"
4397 return 1
4402 return 0;
4405 proc check_effective_target_arm_v8_1a_neon_ok { } {
4406 return [check_cached_effective_target arm_v8_1a_neon_ok \
4407 check_effective_target_arm_v8_1a_neon_ok_nocache]
4410 # Return 1 if the target supports ARMv8.2 scalar FP16 arithmetic
4411 # instructions, 0 otherwise. The test is valid for ARM and for AArch64.
4412 # Record the command line options needed.
4414 proc check_effective_target_arm_v8_2a_fp16_scalar_ok_nocache { } {
4415 global et_arm_v8_2a_fp16_scalar_flags
4416 set et_arm_v8_2a_fp16_scalar_flags ""
4418 if { ![istarget arm*-*-*] && ![istarget aarch64*-*-*] } {
4419 return 0;
4422 # Iterate through sets of options to find the compiler flags that
4423 # need to be added to the -march option.
4424 foreach flags {"" "-mfpu=fp-armv8" "-mfloat-abi=softfp" \
4425 "-mfpu=fp-armv8 -mfloat-abi=softfp"} {
4426 if { [check_no_compiler_messages_nocache \
4427 arm_v8_2a_fp16_scalar_ok object {
4428 #if !defined (__ARM_FEATURE_FP16_SCALAR_ARITHMETIC)
4429 #error "__ARM_FEATURE_FP16_SCALAR_ARITHMETIC not defined"
4430 #endif
4431 } "$flags -march=armv8.2-a+fp16"] } {
4432 set et_arm_v8_2a_fp16_scalar_flags "$flags -march=armv8.2-a+fp16"
4433 return 1
4437 return 0;
4440 proc check_effective_target_arm_v8_2a_fp16_scalar_ok { } {
4441 return [check_cached_effective_target arm_v8_2a_fp16_scalar_ok \
4442 check_effective_target_arm_v8_2a_fp16_scalar_ok_nocache]
4445 # Return 1 if the target supports ARMv8.2 Adv.SIMD FP16 arithmetic
4446 # instructions, 0 otherwise. The test is valid for ARM and for AArch64.
4447 # Record the command line options needed.
4449 proc check_effective_target_arm_v8_2a_fp16_neon_ok_nocache { } {
4450 global et_arm_v8_2a_fp16_neon_flags
4451 set et_arm_v8_2a_fp16_neon_flags ""
4453 if { ![istarget arm*-*-*] && ![istarget aarch64*-*-*] } {
4454 return 0;
4457 # Iterate through sets of options to find the compiler flags that
4458 # need to be added to the -march option.
4459 foreach flags {"" "-mfpu=neon-fp-armv8" "-mfloat-abi=softfp" \
4460 "-mfpu=neon-fp-armv8 -mfloat-abi=softfp"} {
4461 if { [check_no_compiler_messages_nocache \
4462 arm_v8_2a_fp16_neon_ok object {
4463 #if !defined (__ARM_FEATURE_FP16_VECTOR_ARITHMETIC)
4464 #error "__ARM_FEATURE_FP16_VECTOR_ARITHMETIC not defined"
4465 #endif
4466 } "$flags -march=armv8.2-a+fp16"] } {
4467 set et_arm_v8_2a_fp16_neon_flags "$flags -march=armv8.2-a+fp16"
4468 return 1
4472 return 0;
4475 proc check_effective_target_arm_v8_2a_fp16_neon_ok { } {
4476 return [check_cached_effective_target arm_v8_2a_fp16_neon_ok \
4477 check_effective_target_arm_v8_2a_fp16_neon_ok_nocache]
4480 # Return 1 if the target supports ARMv8.2 Adv.SIMD Dot Product
4481 # instructions, 0 otherwise. The test is valid for ARM and for AArch64.
4482 # Record the command line options needed.
4484 proc check_effective_target_arm_v8_2a_dotprod_neon_ok_nocache { } {
4485 global et_arm_v8_2a_dotprod_neon_flags
4486 set et_arm_v8_2a_dotprod_neon_flags ""
4488 if { ![istarget arm*-*-*] && ![istarget aarch64*-*-*] } {
4489 return 0;
4492 # Iterate through sets of options to find the compiler flags that
4493 # need to be added to the -march option.
4494 foreach flags {"" "-mfloat-abi=softfp -mfpu=neon-fp-armv8" "-mfloat-abi=hard -mfpu=neon-fp-armv8"} {
4495 if { [check_no_compiler_messages_nocache \
4496 arm_v8_2a_dotprod_neon_ok object {
4497 #if !defined (__ARM_FEATURE_DOTPROD)
4498 #error "__ARM_FEATURE_DOTPROD not defined"
4499 #endif
4500 } "$flags -march=armv8.2-a+dotprod"] } {
4501 set et_arm_v8_2a_dotprod_neon_flags "$flags -march=armv8.2-a+dotprod"
4502 return 1
4506 return 0;
4509 proc check_effective_target_arm_v8_2a_dotprod_neon_ok { } {
4510 return [check_cached_effective_target arm_v8_2a_dotprod_neon_ok \
4511 check_effective_target_arm_v8_2a_dotprod_neon_ok_nocache]
4514 proc add_options_for_arm_v8_2a_dotprod_neon { flags } {
4515 if { ! [check_effective_target_arm_v8_2a_dotprod_neon_ok] } {
4516 return "$flags"
4518 global et_arm_v8_2a_dotprod_neon_flags
4519 return "$flags $et_arm_v8_2a_dotprod_neon_flags"
4522 # Return 1 if the target supports FP16 VFMAL and VFMSL
4523 # instructions, 0 otherwise.
4524 # Record the command line options needed.
4526 proc check_effective_target_arm_fp16fml_neon_ok_nocache { } {
4527 global et_arm_fp16fml_neon_flags
4528 set et_arm_fp16fml_neon_flags ""
4530 if { ![istarget arm*-*-*] } {
4531 return 0;
4534 # Iterate through sets of options to find the compiler flags that
4535 # need to be added to the -march option.
4536 foreach flags {"" "-mfloat-abi=softfp -mfpu=neon-fp-armv8" "-mfloat-abi=hard -mfpu=neon-fp-armv8"} {
4537 if { [check_no_compiler_messages_nocache \
4538 arm_fp16fml_neon_ok assembly {
4539 #include <arm_neon.h>
4540 float32x2_t
4541 foo (float32x2_t r, float16x4_t a, float16x4_t b)
4543 return vfmlal_high_u32 (r, a, b);
4545 } "$flags -march=armv8.2-a+fp16fml"] } {
4546 set et_arm_fp16fml_neon_flags "$flags -march=armv8.2-a+fp16fml"
4547 return 1
4551 return 0;
4554 proc check_effective_target_arm_fp16fml_neon_ok { } {
4555 return [check_cached_effective_target arm_fp16fml_neon_ok \
4556 check_effective_target_arm_fp16fml_neon_ok_nocache]
4559 proc add_options_for_arm_fp16fml_neon { flags } {
4560 if { ! [check_effective_target_arm_fp16fml_neon_ok] } {
4561 return "$flags"
4563 global et_arm_fp16fml_neon_flags
4564 return "$flags $et_arm_fp16fml_neon_flags"
4567 # Return 1 if the target supports executing ARMv8 NEON instructions, 0
4568 # otherwise.
4570 proc check_effective_target_arm_v8_neon_hw { } {
4571 return [check_runtime arm_v8_neon_hw_available {
4572 #include "arm_neon.h"
4574 main (void)
4576 float32x2_t a = { 1.0f, 2.0f };
4577 #ifdef __ARM_ARCH_ISA_A64
4578 asm ("frinta %0.2s, %1.2s"
4579 : "=w" (a)
4580 : "w" (a));
4581 #else
4582 asm ("vrinta.f32 %P0, %P1"
4583 : "=w" (a)
4584 : "0" (a));
4585 #endif
4586 return a[0] == 2.0f;
4588 } [add_options_for_arm_v8_neon ""]]
4591 # Return 1 if the target supports executing the ARMv8.1 Adv.SIMD extension, 0
4592 # otherwise. The test is valid for AArch64 and ARM.
4594 proc check_effective_target_arm_v8_1a_neon_hw { } {
4595 if { ![check_effective_target_arm_v8_1a_neon_ok] } {
4596 return 0;
4598 return [check_runtime arm_v8_1a_neon_hw_available {
4600 main (void)
4602 #ifdef __ARM_ARCH_ISA_A64
4603 __Int32x2_t a = {0, 1};
4604 __Int32x2_t b = {0, 2};
4605 __Int32x2_t result;
4607 asm ("sqrdmlah %0.2s, %1.2s, %2.2s"
4608 : "=w"(result)
4609 : "w"(a), "w"(b)
4610 : /* No clobbers. */);
4612 #else
4614 __simd64_int32_t a = {0, 1};
4615 __simd64_int32_t b = {0, 2};
4616 __simd64_int32_t result;
4618 asm ("vqrdmlah.s32 %P0, %P1, %P2"
4619 : "=w"(result)
4620 : "w"(a), "w"(b)
4621 : /* No clobbers. */);
4622 #endif
4624 return result[0];
4626 } [add_options_for_arm_v8_1a_neon ""]]
4629 # Return 1 if the target supports executing floating point instructions from
4630 # ARMv8.2 with the FP16 extension, 0 otherwise. The test is valid for ARM and
4631 # for AArch64.
4633 proc check_effective_target_arm_v8_2a_fp16_scalar_hw { } {
4634 if { ![check_effective_target_arm_v8_2a_fp16_scalar_ok] } {
4635 return 0;
4637 return [check_runtime arm_v8_2a_fp16_scalar_hw_available {
4639 main (void)
4641 __fp16 a = 1.0;
4642 __fp16 result;
4644 #ifdef __ARM_ARCH_ISA_A64
4646 asm ("fabs %h0, %h1"
4647 : "=w"(result)
4648 : "w"(a)
4649 : /* No clobbers. */);
4651 #else
4653 asm ("vabs.f16 %0, %1"
4654 : "=w"(result)
4655 : "w"(a)
4656 : /* No clobbers. */);
4658 #endif
4660 return (result == 1.0) ? 0 : 1;
4662 } [add_options_for_arm_v8_2a_fp16_scalar ""]]
4665 # Return 1 if the target supports executing Adv.SIMD instructions from ARMv8.2
4666 # with the FP16 extension, 0 otherwise. The test is valid for ARM and for
4667 # AArch64.
4669 proc check_effective_target_arm_v8_2a_fp16_neon_hw { } {
4670 if { ![check_effective_target_arm_v8_2a_fp16_neon_ok] } {
4671 return 0;
4673 return [check_runtime arm_v8_2a_fp16_neon_hw_available {
4675 main (void)
4677 #ifdef __ARM_ARCH_ISA_A64
4679 __Float16x4_t a = {1.0, -1.0, 1.0, -1.0};
4680 __Float16x4_t result;
4682 asm ("fabs %0.4h, %1.4h"
4683 : "=w"(result)
4684 : "w"(a)
4685 : /* No clobbers. */);
4687 #else
4689 __simd64_float16_t a = {1.0, -1.0, 1.0, -1.0};
4690 __simd64_float16_t result;
4692 asm ("vabs.f16 %P0, %P1"
4693 : "=w"(result)
4694 : "w"(a)
4695 : /* No clobbers. */);
4697 #endif
4699 return (result[0] == 1.0) ? 0 : 1;
4701 } [add_options_for_arm_v8_2a_fp16_neon ""]]
4704 # Return 1 if the target supports executing AdvSIMD instructions from ARMv8.2
4705 # with the Dot Product extension, 0 otherwise. The test is valid for ARM and for
4706 # AArch64.
4708 proc check_effective_target_arm_v8_2a_dotprod_neon_hw { } {
4709 if { ![check_effective_target_arm_v8_2a_dotprod_neon_ok] } {
4710 return 0;
4712 return [check_runtime arm_v8_2a_dotprod_neon_hw_available {
4713 #include "arm_neon.h"
4715 main (void)
4718 uint32x2_t results = {0,0};
4719 uint8x8_t a = {1,1,1,1,2,2,2,2};
4720 uint8x8_t b = {2,2,2,2,3,3,3,3};
4722 #ifdef __ARM_ARCH_ISA_A64
4723 asm ("udot %0.2s, %1.8b, %2.8b"
4724 : "=w"(results)
4725 : "w"(a), "w"(b)
4726 : /* No clobbers. */);
4728 #else
4729 asm ("vudot.u8 %P0, %P1, %P2"
4730 : "=w"(results)
4731 : "w"(a), "w"(b)
4732 : /* No clobbers. */);
4733 #endif
4735 return (results[0] == 8 && results[1] == 24) ? 1 : 0;
4737 } [add_options_for_arm_v8_2a_dotprod_neon ""]]
4740 # Return 1 if this is a ARM target with NEON enabled.
4742 proc check_effective_target_arm_neon { } {
4743 if { [check_effective_target_arm32] } {
4744 return [check_no_compiler_messages arm_neon object {
4745 #ifndef __ARM_NEON__
4746 #error not NEON
4747 #else
4748 int dummy;
4749 #endif
4751 } else {
4752 return 0
4756 proc check_effective_target_arm_neonv2 { } {
4757 if { [check_effective_target_arm32] } {
4758 return [check_no_compiler_messages arm_neon object {
4759 #ifndef __ARM_NEON__
4760 #error not NEON
4761 #else
4762 #ifndef __ARM_FEATURE_FMA
4763 #error not NEONv2
4764 #else
4765 int dummy;
4766 #endif
4767 #endif
4769 } else {
4770 return 0
4774 # Return 1 if this is an ARM target with load acquire and store release
4775 # instructions for 8-, 16- and 32-bit types.
4777 proc check_effective_target_arm_acq_rel { } {
4778 return [check_no_compiler_messages arm_acq_rel object {
4779 void
4780 load_acquire_store_release (void)
4782 asm ("lda r0, [r1]\n\t"
4783 "stl r0, [r1]\n\t"
4784 "ldah r0, [r1]\n\t"
4785 "stlh r0, [r1]\n\t"
4786 "ldab r0, [r1]\n\t"
4787 "stlb r0, [r1]"
4788 : : : "r0", "memory");
4793 # Add the options needed for MIPS Paired-Single.
4795 proc add_options_for_mpaired_single { flags } {
4796 if { ! [check_effective_target_mpaired_single] } {
4797 return "$flags"
4799 return "$flags -mpaired-single"
4802 # Add the options needed for MIPS SIMD Architecture.
4804 proc add_options_for_mips_msa { flags } {
4805 if { ! [check_effective_target_mips_msa] } {
4806 return "$flags"
4808 return "$flags -mmsa"
4811 # Return 1 if this a Loongson-2E or -2F target using an ABI that supports
4812 # the Loongson vector modes.
4814 proc check_effective_target_mips_loongson { } {
4815 return [check_no_compiler_messages loongson assembly {
4816 #if !defined(__mips_loongson_vector_rev)
4817 #error !__mips_loongson_vector_rev
4818 #endif
4822 # Return 1 if this is a MIPS target that supports the legacy NAN.
4824 proc check_effective_target_mips_nanlegacy { } {
4825 return [check_no_compiler_messages nanlegacy assembly {
4826 #include <stdlib.h>
4827 int main () { return 0; }
4828 } "-mnan=legacy"]
4831 # Return 1 if an MSA program can be compiled to object
4833 proc check_effective_target_mips_msa { } {
4834 if ![check_effective_target_nomips16] {
4835 return 0
4837 return [check_no_compiler_messages msa object {
4838 #if !defined(__mips_msa)
4839 #error "MSA NOT AVAIL"
4840 #else
4841 #if !(((__mips == 64) || (__mips == 32)) && (__mips_isa_rev >= 2))
4842 #error "MSA NOT AVAIL FOR ISA REV < 2"
4843 #endif
4844 #if !defined(__mips_hard_float)
4845 #error "MSA HARD_FLOAT REQUIRED"
4846 #endif
4847 #if __mips_fpr != 64
4848 #error "MSA 64-bit FPR REQUIRED"
4849 #endif
4850 #include <msa.h>
4852 int main()
4854 v8i16 v = __builtin_msa_ldi_h (1);
4856 return v[0];
4858 #endif
4859 } "-mmsa" ]
4862 # Return 1 if this is an ARM target that adheres to the ABI for the ARM
4863 # Architecture.
4865 proc check_effective_target_arm_eabi { } {
4866 return [check_no_compiler_messages arm_eabi object {
4867 #ifndef __ARM_EABI__
4868 #error not EABI
4869 #else
4870 int dummy;
4871 #endif
4875 # Return 1 if this is an ARM target that adheres to the hard-float variant of
4876 # the ABI for the ARM Architecture (e.g. -mfloat-abi=hard).
4878 proc check_effective_target_arm_hf_eabi { } {
4879 return [check_no_compiler_messages arm_hf_eabi object {
4880 #if !defined(__ARM_EABI__) || !defined(__ARM_PCS_VFP)
4881 #error not hard-float EABI
4882 #else
4883 int dummy;
4884 #endif
4888 # Return 1 if this is an ARM target that uses the soft float ABI
4889 # with no floating-point instructions at all (e.g. -mfloat-abi=soft).
4891 proc check_effective_target_arm_softfloat { } {
4892 return [check_no_compiler_messages arm_softfloat object {
4893 #if !defined(__SOFTFP__)
4894 #error not soft-float EABI
4895 #else
4896 int dummy;
4897 #endif
4901 # Return 1 if this is an ARM target supporting -mcpu=iwmmxt.
4902 # Some multilibs may be incompatible with this option.
4904 proc check_effective_target_arm_iwmmxt_ok { } {
4905 if { [check_effective_target_arm32] } {
4906 return [check_no_compiler_messages arm_iwmmxt_ok object {
4907 int dummy;
4908 } "-mcpu=iwmmxt"]
4909 } else {
4910 return 0
4914 # Return true if LDRD/STRD instructions are prefered over LDM/STM instructions
4915 # for an ARM target.
4916 proc check_effective_target_arm_prefer_ldrd_strd { } {
4917 if { ![check_effective_target_arm32] } {
4918 return 0;
4921 return [check_no_messages_and_pattern arm_prefer_ldrd_strd "strd\tr" assembly {
4922 void foo (void) { __asm__ ("" ::: "r4", "r5"); }
4923 } "-O2 -mthumb" ]
4926 # Return 1 if this is a PowerPC target supporting -meabi.
4928 proc check_effective_target_powerpc_eabi_ok { } {
4929 if { [istarget powerpc*-*-*] } {
4930 return [check_no_compiler_messages powerpc_eabi_ok object {
4931 int dummy;
4932 } "-meabi"]
4933 } else {
4934 return 0
4938 # Return 1 if this is a PowerPC target with floating-point registers.
4940 proc check_effective_target_powerpc_fprs { } {
4941 if { [istarget powerpc*-*-*]
4942 || [istarget rs6000-*-*] } {
4943 return [check_no_compiler_messages powerpc_fprs object {
4944 #ifdef __NO_FPRS__
4945 #error no FPRs
4946 #else
4947 int dummy;
4948 #endif
4950 } else {
4951 return 0
4955 # Return 1 if this is a PowerPC target with hardware double-precision
4956 # floating point.
4958 proc check_effective_target_powerpc_hard_double { } {
4959 if { [istarget powerpc*-*-*]
4960 || [istarget rs6000-*-*] } {
4961 return [check_no_compiler_messages powerpc_hard_double object {
4962 #ifdef _SOFT_DOUBLE
4963 #error soft double
4964 #else
4965 int dummy;
4966 #endif
4968 } else {
4969 return 0
4973 # Return 1 if this is a PowerPC target supporting -maltivec.
4975 proc check_effective_target_powerpc_altivec_ok { } {
4976 if { ([istarget powerpc*-*-*]
4977 && ![istarget powerpc-*-linux*paired*])
4978 || [istarget rs6000-*-*] } {
4979 # AltiVec is not supported on AIX before 5.3.
4980 if { [istarget powerpc*-*-aix4*]
4981 || [istarget powerpc*-*-aix5.1*]
4982 || [istarget powerpc*-*-aix5.2*] } {
4983 return 0
4985 return [check_no_compiler_messages powerpc_altivec_ok object {
4986 int dummy;
4987 } "-maltivec"]
4988 } else {
4989 return 0
4993 # Return 1 if this is a PowerPC target supporting -mpower8-vector
4995 proc check_effective_target_powerpc_p8vector_ok { } {
4996 if { ([istarget powerpc*-*-*]
4997 && ![istarget powerpc-*-linux*paired*])
4998 || [istarget rs6000-*-*] } {
4999 # AltiVec is not supported on AIX before 5.3.
5000 if { [istarget powerpc*-*-aix4*]
5001 || [istarget powerpc*-*-aix5.1*]
5002 || [istarget powerpc*-*-aix5.2*] } {
5003 return 0
5005 return [check_no_compiler_messages powerpc_p8vector_ok object {
5006 int main (void) {
5007 #ifdef __MACH__
5008 asm volatile ("xxlorc vs0,vs0,vs0");
5009 #else
5010 asm volatile ("xxlorc 0,0,0");
5011 #endif
5012 return 0;
5014 } "-mpower8-vector"]
5015 } else {
5016 return 0
5020 # Return 1 if this is a PowerPC target supporting -mpower9-vector
5022 proc check_effective_target_powerpc_p9vector_ok { } {
5023 if { ([istarget powerpc*-*-*]
5024 && ![istarget powerpc-*-linux*paired*])
5025 || [istarget rs6000-*-*] } {
5026 # AltiVec is not supported on AIX before 5.3.
5027 if { [istarget powerpc*-*-aix4*]
5028 || [istarget powerpc*-*-aix5.1*]
5029 || [istarget powerpc*-*-aix5.2*] } {
5030 return 0
5032 return [check_no_compiler_messages powerpc_p9vector_ok object {
5033 int main (void) {
5034 long e = -1;
5035 vector double v = (vector double) { 0.0, 0.0 };
5036 asm ("xsxexpdp %0,%1" : "+r" (e) : "wa" (v));
5037 return e;
5039 } "-mpower9-vector"]
5040 } else {
5041 return 0
5045 # Return 1 if this is a PowerPC target supporting -mmodulo
5047 proc check_effective_target_powerpc_p9modulo_ok { } {
5048 if { ([istarget powerpc*-*-*]
5049 && ![istarget powerpc-*-linux*paired*])
5050 || [istarget rs6000-*-*] } {
5051 # AltiVec is not supported on AIX before 5.3.
5052 if { [istarget powerpc*-*-aix4*]
5053 || [istarget powerpc*-*-aix5.1*]
5054 || [istarget powerpc*-*-aix5.2*] } {
5055 return 0
5057 return [check_no_compiler_messages powerpc_p9modulo_ok object {
5058 int main (void) {
5059 int i = 5, j = 3, r = -1;
5060 asm ("modsw %0,%1,%2" : "+r" (r) : "r" (i), "r" (j));
5061 return (r == 2);
5063 } "-mmodulo"]
5064 } else {
5065 return 0
5069 # Return 1 if this is a PowerPC target supporting -mfloat128 via either
5070 # software emulation on power7/power8 systems or hardware support on power9.
5072 proc check_effective_target_powerpc_float128_sw_ok { } {
5073 if { ([istarget powerpc*-*-*]
5074 && ![istarget powerpc-*-linux*paired*])
5075 || [istarget rs6000-*-*] } {
5076 # AltiVec is not supported on AIX before 5.3.
5077 if { [istarget powerpc*-*-aix4*]
5078 || [istarget powerpc*-*-aix5.1*]
5079 || [istarget powerpc*-*-aix5.2*] } {
5080 return 0
5082 return [check_no_compiler_messages powerpc_float128_sw_ok object {
5083 volatile __float128 x = 1.0q;
5084 volatile __float128 y = 2.0q;
5085 int main() {
5086 __float128 z = x + y;
5087 return (z == 3.0q);
5089 } "-mfloat128 -mvsx"]
5090 } else {
5091 return 0
5095 # Return 1 if this is a PowerPC target supporting -mfloat128 via hardware
5096 # support on power9.
5098 proc check_effective_target_powerpc_float128_hw_ok { } {
5099 if { ([istarget powerpc*-*-*]
5100 && ![istarget powerpc-*-linux*paired*])
5101 || [istarget rs6000-*-*] } {
5102 # AltiVec is not supported on AIX before 5.3.
5103 if { [istarget powerpc*-*-aix4*]
5104 || [istarget powerpc*-*-aix5.1*]
5105 || [istarget powerpc*-*-aix5.2*] } {
5106 return 0
5108 return [check_no_compiler_messages powerpc_float128_hw_ok object {
5109 volatile __float128 x = 1.0q;
5110 volatile __float128 y = 2.0q;
5111 int main() {
5112 __float128 z;
5113 __asm__ ("xsaddqp %0,%1,%2" : "=v" (z) : "v" (x), "v" (y));
5114 return (z == 3.0q);
5116 } "-mfloat128-hardware"]
5117 } else {
5118 return 0
5122 # Return 1 if this is a PowerPC target supporting -mvsx
5124 proc check_effective_target_powerpc_vsx_ok { } {
5125 if { ([istarget powerpc*-*-*]
5126 && ![istarget powerpc-*-linux*paired*])
5127 || [istarget rs6000-*-*] } {
5128 # VSX is not supported on AIX before 7.1.
5129 if { [istarget powerpc*-*-aix4*]
5130 || [istarget powerpc*-*-aix5*]
5131 || [istarget powerpc*-*-aix6*] } {
5132 return 0
5134 return [check_no_compiler_messages powerpc_vsx_ok object {
5135 int main (void) {
5136 #ifdef __MACH__
5137 asm volatile ("xxlor vs0,vs0,vs0");
5138 #else
5139 asm volatile ("xxlor 0,0,0");
5140 #endif
5141 return 0;
5143 } "-mvsx"]
5144 } else {
5145 return 0
5149 # Return 1 if this is a PowerPC target supporting -mhtm
5151 proc check_effective_target_powerpc_htm_ok { } {
5152 if { ([istarget powerpc*-*-*]
5153 && ![istarget powerpc-*-linux*paired*])
5154 || [istarget rs6000-*-*] } {
5155 # HTM is not supported on AIX yet.
5156 if { [istarget powerpc*-*-aix*] } {
5157 return 0
5159 return [check_no_compiler_messages powerpc_htm_ok object {
5160 int main (void) {
5161 asm volatile ("tbegin. 0");
5162 return 0;
5164 } "-mhtm"]
5165 } else {
5166 return 0
5170 # Return 1 if the target supports executing HTM hardware instructions,
5171 # 0 otherwise. Cache the result.
5173 proc check_htm_hw_available { } {
5174 return [check_cached_effective_target htm_hw_available {
5175 # For now, disable on Darwin
5176 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] || [istarget *-*-darwin*]} {
5177 expr 0
5178 } else {
5179 check_runtime_nocache htm_hw_available {
5180 int main()
5182 __builtin_ttest ();
5183 return 0;
5185 } "-mhtm"
5189 # Return 1 if this is a PowerPC target supporting -mcpu=cell.
5191 proc check_effective_target_powerpc_ppu_ok { } {
5192 if [check_effective_target_powerpc_altivec_ok] {
5193 return [check_no_compiler_messages cell_asm_available object {
5194 int main (void) {
5195 #ifdef __MACH__
5196 asm volatile ("lvlx v0,v0,v0");
5197 #else
5198 asm volatile ("lvlx 0,0,0");
5199 #endif
5200 return 0;
5203 } else {
5204 return 0
5208 # Return 1 if this is a PowerPC target that supports SPU.
5210 proc check_effective_target_powerpc_spu { } {
5211 if { [istarget powerpc*-*-linux*] } {
5212 return [check_effective_target_powerpc_altivec_ok]
5213 } else {
5214 return 0
5218 # Return 1 if this is a PowerPC SPE target. The check includes options
5219 # specified by dg-options for this test, so don't cache the result.
5221 proc check_effective_target_powerpc_spe_nocache { } {
5222 if { [istarget powerpc*-*-*] } {
5223 return [check_no_compiler_messages_nocache powerpc_spe object {
5224 #ifndef __SPE__
5225 #error not SPE
5226 #else
5227 int dummy;
5228 #endif
5229 } [current_compiler_flags]]
5230 } else {
5231 return 0
5235 # Return 1 if this is a PowerPC target with SPE enabled.
5237 proc check_effective_target_powerpc_spe { } {
5238 if { [istarget powerpc*-*-*] } {
5239 return [check_no_compiler_messages powerpc_spe object {
5240 #ifndef __SPE__
5241 #error not SPE
5242 #else
5243 int dummy;
5244 #endif
5246 } else {
5247 return 0
5251 # Return 1 if this is a PowerPC target with Altivec enabled.
5253 proc check_effective_target_powerpc_altivec { } {
5254 if { [istarget powerpc*-*-*] } {
5255 return [check_no_compiler_messages powerpc_altivec object {
5256 #ifndef __ALTIVEC__
5257 #error not Altivec
5258 #else
5259 int dummy;
5260 #endif
5262 } else {
5263 return 0
5267 # Return 1 if this is a PowerPC 405 target. The check includes options
5268 # specified by dg-options for this test, so don't cache the result.
5270 proc check_effective_target_powerpc_405_nocache { } {
5271 if { [istarget powerpc*-*-*] || [istarget rs6000-*-*] } {
5272 return [check_no_compiler_messages_nocache powerpc_405 object {
5273 #ifdef __PPC405__
5274 int dummy;
5275 #else
5276 #error not a PPC405
5277 #endif
5278 } [current_compiler_flags]]
5279 } else {
5280 return 0
5284 # Return 1 if this is a PowerPC target using the ELFv2 ABI.
5286 proc check_effective_target_powerpc_elfv2 { } {
5287 if { [istarget powerpc*-*-*] } {
5288 return [check_no_compiler_messages powerpc_elfv2 object {
5289 #if _CALL_ELF != 2
5290 #error not ELF v2 ABI
5291 #else
5292 int dummy;
5293 #endif
5295 } else {
5296 return 0
5300 # Return 1 if this is a SPU target with a toolchain that
5301 # supports automatic overlay generation.
5303 proc check_effective_target_spu_auto_overlay { } {
5304 if { [istarget spu*-*-elf*] } {
5305 return [check_no_compiler_messages spu_auto_overlay executable {
5306 int main (void) { }
5307 } "-Wl,--auto-overlay" ]
5308 } else {
5309 return 0
5313 # The VxWorks SPARC simulator accepts only EM_SPARC executables and
5314 # chokes on EM_SPARC32PLUS or EM_SPARCV9 executables. Return 1 if the
5315 # test environment appears to run executables on such a simulator.
5317 proc check_effective_target_ultrasparc_hw { } {
5318 return [check_runtime ultrasparc_hw {
5319 int main() { return 0; }
5320 } "-mcpu=ultrasparc"]
5323 # Return 1 if the test environment supports executing UltraSPARC VIS2
5324 # instructions. We check this by attempting: "bmask %g0, %g0, %g0"
5326 proc check_effective_target_ultrasparc_vis2_hw { } {
5327 return [check_runtime ultrasparc_vis2_hw {
5328 int main() { __asm__(".word 0x81b00320"); return 0; }
5329 } "-mcpu=ultrasparc3"]
5332 # Return 1 if the test environment supports executing UltraSPARC VIS3
5333 # instructions. We check this by attempting: "addxc %g0, %g0, %g0"
5335 proc check_effective_target_ultrasparc_vis3_hw { } {
5336 return [check_runtime ultrasparc_vis3_hw {
5337 int main() { __asm__(".word 0x81b00220"); return 0; }
5338 } "-mcpu=niagara3"]
5341 # Return 1 if this is a SPARC-V9 target.
5343 proc check_effective_target_sparc_v9 { } {
5344 if { [istarget sparc*-*-*] } {
5345 return [check_no_compiler_messages sparc_v9 object {
5346 int main (void) {
5347 asm volatile ("return %i7+8");
5348 return 0;
5351 } else {
5352 return 0
5356 # Return 1 if this is a SPARC target with VIS enabled.
5358 proc check_effective_target_sparc_vis { } {
5359 if { [istarget sparc*-*-*] } {
5360 return [check_no_compiler_messages sparc_vis object {
5361 #ifndef __VIS__
5362 #error not VIS
5363 #else
5364 int dummy;
5365 #endif
5367 } else {
5368 return 0
5372 # Return 1 if the target supports hardware vector shift operation.
5374 proc check_effective_target_vect_shift { } {
5375 global et_vect_shift_saved
5376 global et_index
5378 if [info exists et_vect_shift_saved($et_index)] {
5379 verbose "check_effective_target_vect_shift: using cached result" 2
5380 } else {
5381 set et_vect_shift_saved($et_index) 0
5382 if { ([istarget powerpc*-*-*]
5383 && ![istarget powerpc-*-linux*paired*])
5384 || [istarget ia64-*-*]
5385 || [istarget i?86-*-*] || [istarget x86_64-*-*]
5386 || [istarget aarch64*-*-*]
5387 || [is-effective-target arm_neon]
5388 || ([istarget mips*-*-*]
5389 && ([et-is-effective-target mips_msa]
5390 || [et-is-effective-target mips_loongson]))
5391 || ([istarget s390*-*-*]
5392 && [check_effective_target_s390_vx]) } {
5393 set et_vect_shift_saved($et_index) 1
5397 verbose "check_effective_target_vect_shift:\
5398 returning $et_vect_shift_saved($et_index)" 2
5399 return $et_vect_shift_saved($et_index)
5402 proc check_effective_target_whole_vector_shift { } {
5403 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
5404 || [istarget ia64-*-*]
5405 || [istarget aarch64*-*-*]
5406 || [istarget powerpc64*-*-*]
5407 || ([is-effective-target arm_neon]
5408 && [check_effective_target_arm_little_endian])
5409 || ([istarget mips*-*-*]
5410 && [et-is-effective-target mips_loongson])
5411 || ([istarget s390*-*-*]
5412 && [check_effective_target_s390_vx]) } {
5413 set answer 1
5414 } else {
5415 set answer 0
5418 verbose "check_effective_target_vect_long: returning $answer" 2
5419 return $answer
5422 # Return 1 if the target supports vector bswap operations.
5424 proc check_effective_target_vect_bswap { } {
5425 global et_vect_bswap_saved
5426 global et_index
5428 if [info exists et_vect_bswap_saved($et_index)] {
5429 verbose "check_effective_target_vect_bswap: using cached result" 2
5430 } else {
5431 set et_vect_bswap_saved($et_index) 0
5432 if { [istarget aarch64*-*-*]
5433 || [is-effective-target arm_neon]
5435 set et_vect_bswap_saved($et_index) 1
5439 verbose "check_effective_target_vect_bswap:\
5440 returning $et_vect_bswap_saved($et_index)" 2
5441 return $et_vect_bswap_saved($et_index)
5444 # Return 1 if the target supports hardware vector shift operation for char.
5446 proc check_effective_target_vect_shift_char { } {
5447 global et_vect_shift_char_saved
5448 global et_index
5450 if [info exists et_vect_shift_char_saved($et_index)] {
5451 verbose "check_effective_target_vect_shift_char: using cached result" 2
5452 } else {
5453 set et_vect_shift_char_saved($et_index) 0
5454 if { ([istarget powerpc*-*-*]
5455 && ![istarget powerpc-*-linux*paired*])
5456 || [is-effective-target arm_neon]
5457 || ([istarget mips*-*-*]
5458 && [et-is-effective-target mips_msa])
5459 || ([istarget s390*-*-*]
5460 && [check_effective_target_s390_vx]) } {
5461 set et_vect_shift_char_saved($et_index) 1
5465 verbose "check_effective_target_vect_shift_char:\
5466 returning $et_vect_shift_char_saved($et_index)" 2
5467 return $et_vect_shift_char_saved($et_index)
5470 # Return 1 if the target supports hardware vectors of long, 0 otherwise.
5472 # This can change for different subtargets so do not cache the result.
5474 proc check_effective_target_vect_long { } {
5475 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
5476 || (([istarget powerpc*-*-*]
5477 && ![istarget powerpc-*-linux*paired*])
5478 && [check_effective_target_ilp32])
5479 || [is-effective-target arm_neon]
5480 || ([istarget sparc*-*-*] && [check_effective_target_ilp32])
5481 || [istarget aarch64*-*-*]
5482 || ([istarget mips*-*-*]
5483 && [et-is-effective-target mips_msa])
5484 || ([istarget s390*-*-*]
5485 && [check_effective_target_s390_vx]) } {
5486 set answer 1
5487 } else {
5488 set answer 0
5491 verbose "check_effective_target_vect_long: returning $answer" 2
5492 return $answer
5495 # Return 1 if the target supports hardware vectors of float when
5496 # -funsafe-math-optimizations is enabled, 0 otherwise.
5498 # This won't change for different subtargets so cache the result.
5500 proc check_effective_target_vect_float { } {
5501 global et_vect_float_saved
5502 global et_index
5504 if [info exists et_vect_float_saved($et_index)] {
5505 verbose "check_effective_target_vect_float: using cached result" 2
5506 } else {
5507 set et_vect_float_saved($et_index) 0
5508 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
5509 || [istarget powerpc*-*-*]
5510 || [istarget spu-*-*]
5511 || [istarget mips-sde-elf]
5512 || [istarget mipsisa64*-*-*]
5513 || [istarget ia64-*-*]
5514 || [istarget aarch64*-*-*]
5515 || ([istarget mips*-*-*]
5516 && [et-is-effective-target mips_msa])
5517 || [is-effective-target arm_neon]
5518 || ([istarget s390*-*-*]
5519 && [check_effective_target_s390_vxe]) } {
5520 set et_vect_float_saved($et_index) 1
5524 verbose "check_effective_target_vect_float:\
5525 returning $et_vect_float_saved($et_index)" 2
5526 return $et_vect_float_saved($et_index)
5529 # Return 1 if the target supports hardware vectors of float without
5530 # -funsafe-math-optimizations being enabled, 0 otherwise.
5532 proc check_effective_target_vect_float_strict { } {
5533 return [expr { [check_effective_target_vect_float]
5534 && ![istarget arm*-*-*] }]
5537 # Return 1 if the target supports hardware vectors of double, 0 otherwise.
5539 # This won't change for different subtargets so cache the result.
5541 proc check_effective_target_vect_double { } {
5542 global et_vect_double_saved
5543 global et_index
5545 if [info exists et_vect_double_saved($et_index)] {
5546 verbose "check_effective_target_vect_double: using cached result" 2
5547 } else {
5548 set et_vect_double_saved($et_index) 0
5549 if { (([istarget i?86-*-*] || [istarget x86_64-*-*])
5550 && [check_no_compiler_messages vect_double assembly {
5551 #ifdef __tune_atom__
5552 # error No double vectorizer support.
5553 #endif
5555 || [istarget aarch64*-*-*]
5556 || [istarget spu-*-*]
5557 || ([istarget powerpc*-*-*] && [check_vsx_hw_available])
5558 || ([istarget mips*-*-*]
5559 && [et-is-effective-target mips_msa])
5560 || ([istarget s390*-*-*]
5561 && [check_effective_target_s390_vx]) } {
5562 set et_vect_double_saved($et_index) 1
5566 verbose "check_effective_target_vect_double:\
5567 returning $et_vect_double_saved($et_index)" 2
5568 return $et_vect_double_saved($et_index)
5571 # Return 1 if the target supports hardware vectors of long long, 0 otherwise.
5573 # This won't change for different subtargets so cache the result.
5575 proc check_effective_target_vect_long_long { } {
5576 global et_vect_long_long_saved
5577 global et_index
5579 if [info exists et_vect_long_long_saved($et_index)] {
5580 verbose "check_effective_target_vect_long_long: using cached result" 2
5581 } else {
5582 set et_vect_long_long_saved($et_index) 0
5583 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
5584 || ([istarget mips*-*-*]
5585 && [et-is-effective-target mips_msa])
5586 || ([istarget s390*-*-*]
5587 && [check_effective_target_s390_vx]) } {
5588 set et_vect_long_long_saved($et_index) 1
5592 verbose "check_effective_target_vect_long_long:\
5593 returning $et_vect_long_long_saved($et_index)" 2
5594 return $et_vect_long_long_saved($et_index)
5598 # Return 1 if the target plus current options does not support a vector
5599 # max 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_min_max { } {
5604 global et_vect_no_int_min_max_saved
5605 global et_index
5607 if [info exists et_vect_no_int_min_max_saved($et_index)] {
5608 verbose "check_effective_target_vect_no_int_min_max:\
5609 using cached result" 2
5610 } else {
5611 set et_vect_no_int_min_max_saved($et_index) 0
5612 if { [istarget sparc*-*-*]
5613 || [istarget spu-*-*]
5614 || [istarget alpha*-*-*]
5615 || ([istarget mips*-*-*]
5616 && [et-is-effective-target mips_loongson]) } {
5617 set et_vect_no_int_min_max_saved($et_index) 1
5620 verbose "check_effective_target_vect_no_int_min_max:\
5621 returning $et_vect_no_int_min_max_saved($et_index)" 2
5622 return $et_vect_no_int_min_max_saved($et_index)
5625 # Return 1 if the target plus current options does not support a vector
5626 # add instruction on "int", 0 otherwise.
5628 # This won't change for different subtargets so cache the result.
5630 proc check_effective_target_vect_no_int_add { } {
5631 global et_vect_no_int_add_saved
5632 global et_index
5634 if [info exists et_vect_no_int_add_saved($et_index)] {
5635 verbose "check_effective_target_vect_no_int_add: using cached result" 2
5636 } else {
5637 set et_vect_no_int_add_saved($et_index) 0
5638 # Alpha only supports vector add on V8QI and V4HI.
5639 if { [istarget alpha*-*-*] } {
5640 set et_vect_no_int_add_saved($et_index) 1
5643 verbose "check_effective_target_vect_no_int_add:\
5644 returning $et_vect_no_int_add_saved($et_index)" 2
5645 return $et_vect_no_int_add_saved($et_index)
5648 # Return 1 if the target plus current options does not support vector
5649 # bitwise instructions, 0 otherwise.
5651 # This won't change for different subtargets so cache the result.
5653 proc check_effective_target_vect_no_bitwise { } {
5654 global et_vect_no_bitwise_saved
5655 global et_index
5657 if [info exists et_vect_no_bitwise_saved($et_index)] {
5658 verbose "check_effective_target_vect_no_bitwise: using cached result" 2
5659 } else {
5660 set et_vect_no_bitwise_saved($et_index) 0
5662 verbose "check_effective_target_vect_no_bitwise:\
5663 returning $et_vect_no_bitwise_saved($et_index)" 2
5664 return $et_vect_no_bitwise_saved($et_index)
5667 # Return 1 if the target plus current options supports vector permutation,
5668 # 0 otherwise.
5670 # This won't change for different subtargets so cache the result.
5672 proc check_effective_target_vect_perm { } {
5673 global et_vect_perm_saved
5674 global et_index
5676 if [info exists et_vect_perm_saved($et_index)] {
5677 verbose "check_effective_target_vect_perm: using cached result" 2
5678 } else {
5679 set et_vect_perm_saved($et_index) 0
5680 if { [is-effective-target arm_neon]
5681 || ([istarget aarch64*-*-*]
5682 && ![check_effective_target_vect_variable_length])
5683 || [istarget powerpc*-*-*]
5684 || [istarget spu-*-*]
5685 || [istarget i?86-*-*] || [istarget x86_64-*-*]
5686 || ([istarget mips*-*-*]
5687 && ([et-is-effective-target mpaired_single]
5688 || [et-is-effective-target mips_msa]))
5689 || ([istarget s390*-*-*]
5690 && [check_effective_target_s390_vx]) } {
5691 set et_vect_perm_saved($et_index) 1
5694 verbose "check_effective_target_vect_perm:\
5695 returning $et_vect_perm_saved($et_index)" 2
5696 return $et_vect_perm_saved($et_index)
5699 # Return 1 if, for some VF:
5701 # - the target's default vector size is VF * ELEMENT_BITS bits
5703 # - it is possible to implement the equivalent of:
5705 # int<ELEMENT_BITS>_t s1[COUNT][COUNT * VF], s2[COUNT * VF];
5706 # for (int i = 0; i < COUNT; ++i)
5707 # for (int j = 0; j < COUNT * VF; ++j)
5708 # s1[i][j] = s2[j - j % COUNT + i]
5710 # using only a single 2-vector permute for each vector in s1.
5712 # E.g. for COUNT == 3 and vector length 4, the two arrays would be:
5714 # s2 | a0 a1 a2 a3 | b0 b1 b2 b3 | c0 c1 c2 c3
5715 # ------+-------------+-------------+------------
5716 # s1[0] | a0 a0 a0 a3 | a3 a3 b2 b2 | b2 c1 c1 c1
5717 # s1[1] | a1 a1 a1 b0 | b0 b0 b3 b3 | b3 c2 c2 c2
5718 # s1[2] | a2 a2 a2 b1 | b1 b1 c0 c0 | c0 c3 c3 c3
5720 # Each s1 permute requires only two of a, b and c.
5722 # The distance between the start of vector n in s1[0] and the start
5723 # of vector n in s2 is:
5725 # A = (n * VF) % COUNT
5727 # The corresponding value for the end of vector n is:
5729 # B = (n * VF + VF - 1) % COUNT
5731 # Subtracting i from each value gives the corresponding difference
5732 # for s1[i]. The condition being tested by this function is false
5733 # iff A - i > 0 and B - i < 0 for some i and n, such that the first
5734 # element for s1[i] comes from vector n - 1 of s2 and the last element
5735 # comes from vector n + 1 of s2. The condition is therefore true iff
5736 # A <= B for all n. This is turn means the condition is true iff:
5738 # (n * VF) % COUNT + (VF - 1) % COUNT < COUNT
5740 # for all n. COUNT - (n * VF) % COUNT is bounded by gcd (VF, COUNT),
5741 # and will be that value for at least one n in [0, COUNT), so we want:
5743 # (VF - 1) % COUNT < gcd (VF, COUNT)
5745 proc vect_perm_supported { count element_bits } {
5746 set vector_bits [lindex [available_vector_sizes] 0]
5747 if { $vector_bits <= 0 } {
5748 return 0
5750 set vf [expr { $vector_bits / $element_bits }]
5752 # Compute gcd (VF, COUNT).
5753 set gcd $vf
5754 set temp1 $count
5755 while { $temp1 > 0 } {
5756 set temp2 [expr { $gcd % $temp1 }]
5757 set gcd $temp1
5758 set temp1 $temp2
5760 return [expr { ($vf - 1) % $count < $gcd }]
5763 # Return 1 if the target supports SLP permutation of 3 vectors when each
5764 # element has 32 bits.
5766 proc check_effective_target_vect_perm3_int { } {
5767 return [expr { [check_effective_target_vect_perm]
5768 && [vect_perm_supported 3 32] }]
5771 # Return 1 if the target plus current options supports vector permutation
5772 # on byte-sized elements, 0 otherwise.
5774 # This won't change for different subtargets so cache the result.
5776 proc check_effective_target_vect_perm_byte { } {
5777 global et_vect_perm_byte_saved
5778 global et_index
5780 if [info exists et_vect_perm_byte_saved($et_index)] {
5781 verbose "check_effective_target_vect_perm_byte: using cached result" 2
5782 } else {
5783 set et_vect_perm_byte_saved($et_index) 0
5784 if { ([is-effective-target arm_neon]
5785 && [is-effective-target arm_little_endian])
5786 || ([istarget aarch64*-*-*]
5787 && [is-effective-target aarch64_little_endian]
5788 && ![check_effective_target_vect_variable_length])
5789 || [istarget powerpc*-*-*]
5790 || [istarget spu-*-*]
5791 || ([istarget mips-*.*]
5792 && [et-is-effective-target mips_msa])
5793 || ([istarget s390*-*-*]
5794 && [check_effective_target_s390_vx]) } {
5795 set et_vect_perm_byte_saved($et_index) 1
5798 verbose "check_effective_target_vect_perm_byte:\
5799 returning $et_vect_perm_byte_saved($et_index)" 2
5800 return $et_vect_perm_byte_saved($et_index)
5803 # Return 1 if the target supports SLP permutation of 3 vectors when each
5804 # element has 8 bits.
5806 proc check_effective_target_vect_perm3_byte { } {
5807 return [expr { [check_effective_target_vect_perm_byte]
5808 && [vect_perm_supported 3 8] }]
5811 # Return 1 if the target plus current options supports vector permutation
5812 # on short-sized elements, 0 otherwise.
5814 # This won't change for different subtargets so cache the result.
5816 proc check_effective_target_vect_perm_short { } {
5817 global et_vect_perm_short_saved
5818 global et_index
5820 if [info exists et_vect_perm_short_saved($et_index)] {
5821 verbose "check_effective_target_vect_perm_short: using cached result" 2
5822 } else {
5823 set et_vect_perm_short_saved($et_index) 0
5824 if { ([is-effective-target arm_neon]
5825 && [is-effective-target arm_little_endian])
5826 || ([istarget aarch64*-*-*]
5827 && [is-effective-target aarch64_little_endian]
5828 && ![check_effective_target_vect_variable_length])
5829 || [istarget powerpc*-*-*]
5830 || [istarget spu-*-*]
5831 || ([istarget mips*-*-*]
5832 && [et-is-effective-target mips_msa])
5833 || ([istarget s390*-*-*]
5834 && [check_effective_target_s390_vx]) } {
5835 set et_vect_perm_short_saved($et_index) 1
5838 verbose "check_effective_target_vect_perm_short:\
5839 returning $et_vect_perm_short_saved($et_index)" 2
5840 return $et_vect_perm_short_saved($et_index)
5843 # Return 1 if the target supports SLP permutation of 3 vectors when each
5844 # element has 16 bits.
5846 proc check_effective_target_vect_perm3_short { } {
5847 return [expr { [check_effective_target_vect_perm_short]
5848 && [vect_perm_supported 3 16] }]
5851 # Return 1 if the target plus current options supports folding of
5852 # copysign into XORSIGN.
5854 # This won't change for different subtargets so cache the result.
5856 proc check_effective_target_xorsign { } {
5857 global et_xorsign_saved
5858 global et_index
5860 if [info exists et_xorsign_saved($et_index)] {
5861 verbose "check_effective_target_xorsign: using cached result" 2
5862 } else {
5863 set et_xorsign_saved($et_index) 0
5864 if { [istarget aarch64*-*-*] || [istarget arm*-*-*] } {
5865 set et_xorsign_saved($et_index) 1
5868 verbose "check_effective_target_xorsign:\
5869 returning $et_xorsign_saved($et_index)" 2
5870 return $et_xorsign_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.
5876 # This won't change for different subtargets so cache the result.
5878 proc check_effective_target_vect_widen_sum_hi_to_si_pattern { } {
5879 global et_vect_widen_sum_hi_to_si_pattern_saved
5880 global et_index
5882 if [info exists et_vect_widen_sum_hi_to_si_pattern_saved($et_index)] {
5883 verbose "check_effective_target_vect_widen_sum_hi_to_si_pattern:\
5884 using cached result" 2
5885 } else {
5886 set et_vect_widen_sum_hi_to_si_pattern_saved($et_index) 0
5887 if { [istarget powerpc*-*-*]
5888 || ([istarget aarch64*-*-*]
5889 && ![check_effective_target_aarch64_sve])
5890 || [is-effective-target arm_neon]
5891 || [istarget ia64-*-*] } {
5892 set et_vect_widen_sum_hi_to_si_pattern_saved($et_index) 1
5895 verbose "check_effective_target_vect_widen_sum_hi_to_si_pattern:\
5896 returning $et_vect_widen_sum_hi_to_si_pattern_saved($et_index)" 2
5897 return $et_vect_widen_sum_hi_to_si_pattern_saved($et_index)
5900 # Return 1 if the target plus current options supports a vector
5901 # widening summation of *short* args into *int* result, 0 otherwise.
5902 # A target can also support this widening summation if it can support
5903 # promotion (unpacking) from shorts to ints.
5905 # This won't change for different subtargets so cache the result.
5907 proc check_effective_target_vect_widen_sum_hi_to_si { } {
5908 global et_vect_widen_sum_hi_to_si_saved
5909 global et_index
5911 if [info exists et_vect_widen_sum_hi_to_si_saved($et_index)] {
5912 verbose "check_effective_target_vect_widen_sum_hi_to_si:\
5913 using cached result" 2
5914 } else {
5915 set et_vect_widen_sum_hi_to_si_saved($et_index) \
5916 [check_effective_target_vect_unpack]
5917 if { [istarget powerpc*-*-*]
5918 || [istarget ia64-*-*] } {
5919 set et_vect_widen_sum_hi_to_si_saved($et_index) 1
5922 verbose "check_effective_target_vect_widen_sum_hi_to_si:\
5923 returning $et_vect_widen_sum_hi_to_si_saved($et_index)" 2
5924 return $et_vect_widen_sum_hi_to_si_saved($et_index)
5927 # Return 1 if the target plus current options supports a vector
5928 # widening summation of *char* args into *short* result, 0 otherwise.
5929 # A target can also support this widening summation if it can support
5930 # promotion (unpacking) from chars to shorts.
5932 # This won't change for different subtargets so cache the result.
5934 proc check_effective_target_vect_widen_sum_qi_to_hi { } {
5935 global et_vect_widen_sum_qi_to_hi_saved
5936 global et_index
5938 if [info exists et_vect_widen_sum_qi_to_hi_saved($et_index)] {
5939 verbose "check_effective_target_vect_widen_sum_qi_to_hi:\
5940 using cached result" 2
5941 } else {
5942 set et_vect_widen_sum_qi_to_hi_saved($et_index) 0
5943 if { [check_effective_target_vect_unpack]
5944 || [is-effective-target arm_neon]
5945 || [istarget ia64-*-*] } {
5946 set et_vect_widen_sum_qi_to_hi_saved($et_index) 1
5949 verbose "check_effective_target_vect_widen_sum_qi_to_hi:\
5950 returning $et_vect_widen_sum_qi_to_hi_saved($et_index)" 2
5951 return $et_vect_widen_sum_qi_to_hi_saved($et_index)
5954 # Return 1 if the target plus current options supports a vector
5955 # widening summation of *char* args into *int* result, 0 otherwise.
5957 # This won't change for different subtargets so cache the result.
5959 proc check_effective_target_vect_widen_sum_qi_to_si { } {
5960 global et_vect_widen_sum_qi_to_si_saved
5961 global et_index
5963 if [info exists et_vect_widen_sum_qi_to_si_saved($et_index)] {
5964 verbose "check_effective_target_vect_widen_sum_qi_to_si:\
5965 using cached result" 2
5966 } else {
5967 set et_vect_widen_sum_qi_to_si_saved($et_index) 0
5968 if { [istarget powerpc*-*-*] } {
5969 set et_vect_widen_sum_qi_to_si_saved($et_index) 1
5972 verbose "check_effective_target_vect_widen_sum_qi_to_si:\
5973 returning $et_vect_widen_sum_qi_to_si_saved($et_index)" 2
5974 return $et_vect_widen_sum_qi_to_si_saved($et_index)
5977 # Return 1 if the target plus current options supports a vector
5978 # widening multiplication of *char* args into *short* result, 0 otherwise.
5979 # A target can also support this widening multplication if it can support
5980 # promotion (unpacking) from chars to shorts, and vect_short_mult (non-widening
5981 # multiplication of shorts).
5983 # This won't change for different subtargets so cache the result.
5986 proc check_effective_target_vect_widen_mult_qi_to_hi { } {
5987 global et_vect_widen_mult_qi_to_hi_saved
5988 global et_index
5990 if [info exists et_vect_widen_mult_qi_to_hi_saved($et_index)] {
5991 verbose "check_effective_target_vect_widen_mult_qi_to_hi:\
5992 using cached result" 2
5993 } else {
5994 if { [check_effective_target_vect_unpack]
5995 && [check_effective_target_vect_short_mult] } {
5996 set et_vect_widen_mult_qi_to_hi_saved($et_index) 1
5997 } else {
5998 set et_vect_widen_mult_qi_to_hi_saved($et_index) 0
6000 if { [istarget powerpc*-*-*]
6001 || ([istarget aarch64*-*-*]
6002 && ![check_effective_target_aarch64_sve])
6003 || [is-effective-target arm_neon]
6004 || ([istarget s390*-*-*]
6005 && [check_effective_target_s390_vx]) } {
6006 set et_vect_widen_mult_qi_to_hi_saved($et_index) 1
6009 verbose "check_effective_target_vect_widen_mult_qi_to_hi:\
6010 returning $et_vect_widen_mult_qi_to_hi_saved($et_index)" 2
6011 return $et_vect_widen_mult_qi_to_hi_saved($et_index)
6014 # Return 1 if the target plus current options supports a vector
6015 # widening multiplication of *short* args into *int* result, 0 otherwise.
6016 # A target can also support this widening multplication if it can support
6017 # promotion (unpacking) from shorts to ints, and vect_int_mult (non-widening
6018 # multiplication of ints).
6020 # This won't change for different subtargets so cache the result.
6023 proc check_effective_target_vect_widen_mult_hi_to_si { } {
6024 global et_vect_widen_mult_hi_to_si_saved
6025 global et_index
6027 if [info exists et_vect_widen_mult_hi_to_si_saved($et_index)] {
6028 verbose "check_effective_target_vect_widen_mult_hi_to_si:\
6029 using cached result" 2
6030 } else {
6031 if { [check_effective_target_vect_unpack]
6032 && [check_effective_target_vect_int_mult] } {
6033 set et_vect_widen_mult_hi_to_si_saved($et_index) 1
6034 } else {
6035 set et_vect_widen_mult_hi_to_si_saved($et_index) 0
6037 if { [istarget powerpc*-*-*]
6038 || [istarget spu-*-*]
6039 || [istarget ia64-*-*]
6040 || ([istarget aarch64*-*-*]
6041 && ![check_effective_target_aarch64_sve])
6042 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6043 || [is-effective-target arm_neon]
6044 || ([istarget s390*-*-*]
6045 && [check_effective_target_s390_vx]) } {
6046 set et_vect_widen_mult_hi_to_si_saved($et_index) 1
6049 verbose "check_effective_target_vect_widen_mult_hi_to_si:\
6050 returning $et_vect_widen_mult_hi_to_si_saved($et_index)" 2
6051 return $et_vect_widen_mult_hi_to_si_saved($et_index)
6054 # Return 1 if the target plus current options supports a vector
6055 # widening multiplication of *char* args into *short* result, 0 otherwise.
6057 # This won't change for different subtargets so cache the result.
6059 proc check_effective_target_vect_widen_mult_qi_to_hi_pattern { } {
6060 global et_vect_widen_mult_qi_to_hi_pattern_saved
6061 global et_index
6063 if [info exists et_vect_widen_mult_qi_to_hi_pattern_saved($et_index)] {
6064 verbose "check_effective_target_vect_widen_mult_qi_to_hi_pattern:\
6065 using cached result" 2
6066 } else {
6067 set et_vect_widen_mult_qi_to_hi_pattern_saved($et_index) 0
6068 if { [istarget powerpc*-*-*]
6069 || ([is-effective-target arm_neon]
6070 && [check_effective_target_arm_little_endian])
6071 || ([istarget s390*-*-*]
6072 && [check_effective_target_s390_vx]) } {
6073 set et_vect_widen_mult_qi_to_hi_pattern_saved($et_index) 1
6076 verbose "check_effective_target_vect_widen_mult_qi_to_hi_pattern:\
6077 returning $et_vect_widen_mult_qi_to_hi_pattern_saved($et_index)" 2
6078 return $et_vect_widen_mult_qi_to_hi_pattern_saved($et_index)
6081 # Return 1 if the target plus current options supports a vector
6082 # widening multiplication of *short* args into *int* result, 0 otherwise.
6084 # This won't change for different subtargets so cache the result.
6086 proc check_effective_target_vect_widen_mult_hi_to_si_pattern { } {
6087 global et_vect_widen_mult_hi_to_si_pattern_saved
6088 global et_index
6090 if [info exists et_vect_widen_mult_hi_to_si_pattern_saved($et_index)] {
6091 verbose "check_effective_target_vect_widen_mult_hi_to_si_pattern:\
6092 using cached result" 2
6093 } else {
6094 set et_vect_widen_mult_hi_to_si_pattern_saved($et_index) 0
6095 if { [istarget powerpc*-*-*]
6096 || [istarget spu-*-*]
6097 || [istarget ia64-*-*]
6098 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6099 || ([is-effective-target arm_neon]
6100 && [check_effective_target_arm_little_endian])
6101 || ([istarget s390*-*-*]
6102 && [check_effective_target_s390_vx]) } {
6103 set et_vect_widen_mult_hi_to_si_pattern_saved($et_index) 1
6106 verbose "check_effective_target_vect_widen_mult_hi_to_si_pattern:\
6107 returning $et_vect_widen_mult_hi_to_si_pattern_saved($et_index)" 2
6108 return $et_vect_widen_mult_hi_to_si_pattern_saved($et_index)
6111 # Return 1 if the target plus current options supports a vector
6112 # widening multiplication of *int* args into *long* result, 0 otherwise.
6114 # This won't change for different subtargets so cache the result.
6116 proc check_effective_target_vect_widen_mult_si_to_di_pattern { } {
6117 global et_vect_widen_mult_si_to_di_pattern_saved
6118 global et_index
6120 if [info exists et_vect_widen_mult_si_to_di_pattern_saved($et_index)] {
6121 verbose "check_effective_target_vect_widen_mult_si_to_di_pattern:\
6122 using cached result" 2
6123 } else {
6124 set et_vect_widen_mult_si_to_di_pattern_saved($et_index) 0
6125 if {[istarget ia64-*-*]
6126 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6127 || ([istarget s390*-*-*]
6128 && [check_effective_target_s390_vx]) } {
6129 set et_vect_widen_mult_si_to_di_pattern_saved($et_index) 1
6132 verbose "check_effective_target_vect_widen_mult_si_to_di_pattern:\
6133 returning $et_vect_widen_mult_si_to_di_pattern_saved($et_index)" 2
6134 return $et_vect_widen_mult_si_to_di_pattern_saved($et_index)
6137 # Return 1 if the target plus current options supports a vector
6138 # widening shift, 0 otherwise.
6140 # This won't change for different subtargets so cache the result.
6142 proc check_effective_target_vect_widen_shift { } {
6143 global et_vect_widen_shift_saved
6144 global et_index
6146 if [info exists et_vect_shift_saved($et_index)] {
6147 verbose "check_effective_target_vect_widen_shift: using cached result" 2
6148 } else {
6149 set et_vect_widen_shift_saved($et_index) 0
6150 if { [is-effective-target arm_neon] } {
6151 set et_vect_widen_shift_saved($et_index) 1
6154 verbose "check_effective_target_vect_widen_shift:\
6155 returning $et_vect_widen_shift_saved($et_index)" 2
6156 return $et_vect_widen_shift_saved($et_index)
6159 # Return 1 if the target plus current options supports a vector
6160 # dot-product of signed chars, 0 otherwise.
6162 # This won't change for different subtargets so cache the result.
6164 proc check_effective_target_vect_sdot_qi { } {
6165 global et_vect_sdot_qi_saved
6166 global et_index
6168 if [info exists et_vect_sdot_qi_saved($et_index)] {
6169 verbose "check_effective_target_vect_sdot_qi: using cached result" 2
6170 } else {
6171 set et_vect_sdot_qi_saved($et_index) 0
6172 if { [istarget ia64-*-*]
6173 || [istarget aarch64*-*-*]
6174 || [istarget arm*-*-*]
6175 || ([istarget mips*-*-*]
6176 && [et-is-effective-target mips_msa]) } {
6177 set et_vect_udot_qi_saved 1
6180 verbose "check_effective_target_vect_sdot_qi:\
6181 returning $et_vect_sdot_qi_saved($et_index)" 2
6182 return $et_vect_sdot_qi_saved($et_index)
6185 # Return 1 if the target plus current options supports a vector
6186 # dot-product of unsigned chars, 0 otherwise.
6188 # This won't change for different subtargets so cache the result.
6190 proc check_effective_target_vect_udot_qi { } {
6191 global et_vect_udot_qi_saved
6192 global et_index
6194 if [info exists et_vect_udot_qi_saved($et_index)] {
6195 verbose "check_effective_target_vect_udot_qi: using cached result" 2
6196 } else {
6197 set et_vect_udot_qi_saved($et_index) 0
6198 if { [istarget powerpc*-*-*]
6199 || [istarget aarch64*-*-*]
6200 || [istarget arm*-*-*]
6201 || [istarget ia64-*-*]
6202 || ([istarget mips*-*-*]
6203 && [et-is-effective-target mips_msa]) } {
6204 set et_vect_udot_qi_saved($et_index) 1
6207 verbose "check_effective_target_vect_udot_qi:\
6208 returning $et_vect_udot_qi_saved($et_index)" 2
6209 return $et_vect_udot_qi_saved($et_index)
6212 # Return 1 if the target plus current options supports a vector
6213 # dot-product of signed shorts, 0 otherwise.
6215 # This won't change for different subtargets so cache the result.
6217 proc check_effective_target_vect_sdot_hi { } {
6218 global et_vect_sdot_hi_saved
6219 global et_index
6221 if [info exists et_vect_sdot_hi_saved($et_index)] {
6222 verbose "check_effective_target_vect_sdot_hi: using cached result" 2
6223 } else {
6224 set et_vect_sdot_hi_saved($et_index) 0
6225 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
6226 || [istarget ia64-*-*]
6227 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6228 || ([istarget mips*-*-*]
6229 && [et-is-effective-target mips_msa]) } {
6230 set et_vect_sdot_hi_saved($et_index) 1
6233 verbose "check_effective_target_vect_sdot_hi:\
6234 returning $et_vect_sdot_hi_saved($et_index)" 2
6235 return $et_vect_sdot_hi_saved($et_index)
6238 # Return 1 if the target plus current options supports a vector
6239 # dot-product of unsigned shorts, 0 otherwise.
6241 # This won't change for different subtargets so cache the result.
6243 proc check_effective_target_vect_udot_hi { } {
6244 global et_vect_udot_hi_saved
6245 global et_index
6247 if [info exists et_vect_udot_hi_saved($et_index)] {
6248 verbose "check_effective_target_vect_udot_hi: using cached result" 2
6249 } else {
6250 set et_vect_udot_hi_saved($et_index) 0
6251 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
6252 || ([istarget mips*-*-*]
6253 && [et-is-effective-target mips_msa]) } {
6254 set et_vect_udot_hi_saved($et_index) 1
6257 verbose "check_effective_target_vect_udot_hi:\
6258 returning $et_vect_udot_hi_saved($et_index)" 2
6259 return $et_vect_udot_hi_saved($et_index)
6262 # Return 1 if the target plus current options supports a vector
6263 # sad operation of unsigned chars, 0 otherwise.
6265 # This won't change for different subtargets so cache the result.
6267 proc check_effective_target_vect_usad_char { } {
6268 global et_vect_usad_char_saved
6269 global et_index
6271 if [info exists et_vect_usad_char_saved($et_index)] {
6272 verbose "check_effective_target_vect_usad_char: using cached result" 2
6273 } else {
6274 set et_vect_usad_char_saved($et_index) 0
6275 if { [istarget i?86-*-*] || [istarget x86_64-*-*] } {
6276 set et_vect_usad_char_saved($et_index) 1
6279 verbose "check_effective_target_vect_usad_char:\
6280 returning $et_vect_usad_char_saved($et_index)" 2
6281 return $et_vect_usad_char_saved($et_index)
6284 # Return 1 if the target plus current options supports a vector
6285 # demotion (packing) of shorts (to chars) and ints (to shorts)
6286 # using modulo arithmetic, 0 otherwise.
6288 # This won't change for different subtargets so cache the result.
6290 proc check_effective_target_vect_pack_trunc { } {
6291 global et_vect_pack_trunc_saved
6292 global et_index
6294 if [info exists et_vect_pack_trunc_saved($et_index)] {
6295 verbose "check_effective_target_vect_pack_trunc: using cached result" 2
6296 } else {
6297 set et_vect_pack_trunc_saved($et_index) 0
6298 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
6299 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6300 || [istarget aarch64*-*-*]
6301 || [istarget spu-*-*]
6302 || ([istarget arm*-*-*] && [check_effective_target_arm_neon_ok]
6303 && [check_effective_target_arm_little_endian])
6304 || ([istarget mips*-*-*]
6305 && [et-is-effective-target mips_msa])
6306 || ([istarget s390*-*-*]
6307 && [check_effective_target_s390_vx]) } {
6308 set et_vect_pack_trunc_saved($et_index) 1
6311 verbose "check_effective_target_vect_pack_trunc:\
6312 returning $et_vect_pack_trunc_saved($et_index)" 2
6313 return $et_vect_pack_trunc_saved($et_index)
6316 # Return 1 if the target plus current options supports a vector
6317 # promotion (unpacking) of chars (to shorts) and shorts (to ints), 0 otherwise.
6319 # This won't change for different subtargets so cache the result.
6321 proc check_effective_target_vect_unpack { } {
6322 global et_vect_unpack_saved
6323 global et_index
6325 if [info exists et_vect_unpack_saved($et_index)] {
6326 verbose "check_effective_target_vect_unpack: using cached result" 2
6327 } else {
6328 set et_vect_unpack_saved($et_index) 0
6329 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*paired*])
6330 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6331 || [istarget spu-*-*]
6332 || [istarget ia64-*-*]
6333 || [istarget aarch64*-*-*]
6334 || ([istarget mips*-*-*]
6335 && [et-is-effective-target mips_msa])
6336 || ([istarget arm*-*-*] && [check_effective_target_arm_neon_ok]
6337 && [check_effective_target_arm_little_endian])
6338 || ([istarget s390*-*-*]
6339 && [check_effective_target_s390_vx]) } {
6340 set et_vect_unpack_saved($et_index) 1
6343 verbose "check_effective_target_vect_unpack:\
6344 returning $et_vect_unpack_saved($et_index)" 2
6345 return $et_vect_unpack_saved($et_index)
6348 # Return 1 if the target plus current options does not guarantee
6349 # that its STACK_BOUNDARY is >= the reguired vector alignment.
6351 # This won't change for different subtargets so cache the result.
6353 proc check_effective_target_unaligned_stack { } {
6354 global et_unaligned_stack_saved
6356 if [info exists et_unaligned_stack_saved] {
6357 verbose "check_effective_target_unaligned_stack: using cached result" 2
6358 } else {
6359 set et_unaligned_stack_saved 0
6361 verbose "check_effective_target_unaligned_stack: returning $et_unaligned_stack_saved" 2
6362 return $et_unaligned_stack_saved
6365 # Return 1 if the target plus current options does not have
6366 # slow unaligned access when using word size accesses.
6368 # This won't change for different subtargets so cache the result.
6370 proc check_effective_target_word_mode_no_slow_unalign { } {
6371 global et_word_mode_no_slow_unalign_saved
6372 global et_index
6374 if [info exists et_word_mode_no_slow_unalign_saved($et_index)] {
6375 verbose "check_effective_target_word_mode_no_slow_unalign: \
6376 using cached result" 2
6377 } else {
6378 set et_word_mode_no_slow_unalign_saved($et_index) 0
6379 if { [is-effective-target non_strict_align]
6380 && !([istarget arm*-*-*])
6382 set et_word_mode_no_slow_unalign_saved($et_index) 1
6385 verbose "check_effective_target_word_mode_no_slow_unalign:\
6386 returning $et_word_mode_no_slow_unalign_saved($et_index)" 2
6387 return $et_word_mode_no_slow_unalign_saved($et_index)
6390 # Return 1 if the target plus current options does not support a vector
6391 # alignment mechanism, 0 otherwise.
6393 # This won't change for different subtargets so cache the result.
6395 proc check_effective_target_vect_no_align { } {
6396 global et_vect_no_align_saved
6397 global et_index
6399 if [info exists et_vect_no_align_saved($et_index)] {
6400 verbose "check_effective_target_vect_no_align: using cached result" 2
6401 } else {
6402 set et_vect_no_align_saved($et_index) 0
6403 if { [istarget mipsisa64*-*-*]
6404 || [istarget mips-sde-elf]
6405 || [istarget sparc*-*-*]
6406 || [istarget ia64-*-*]
6407 || [check_effective_target_arm_vect_no_misalign]
6408 || ([istarget powerpc*-*-*] && [check_p8vector_hw_available])
6409 || ([istarget mips*-*-*]
6410 && [et-is-effective-target mips_loongson]) } {
6411 set et_vect_no_align_saved($et_index) 1
6414 verbose "check_effective_target_vect_no_align:\
6415 returning $et_vect_no_align_saved($et_index)" 2
6416 return $et_vect_no_align_saved($et_index)
6419 # Return 1 if the target supports a vector misalign access, 0 otherwise.
6421 # This won't change for different subtargets so cache the result.
6423 proc check_effective_target_vect_hw_misalign { } {
6424 global et_vect_hw_misalign_saved
6425 global et_index
6427 if [info exists et_vect_hw_misalign_saved($et_index)] {
6428 verbose "check_effective_target_vect_hw_misalign: using cached result" 2
6429 } else {
6430 set et_vect_hw_misalign_saved($et_index) 0
6431 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
6432 || ([istarget powerpc*-*-*] && [check_p8vector_hw_available])
6433 || [istarget aarch64*-*-*]
6434 || ([istarget mips*-*-*] && [et-is-effective-target mips_msa])
6435 || ([istarget s390*-*-*]
6436 && [check_effective_target_s390_vx]) } {
6437 set et_vect_hw_misalign_saved($et_index) 1
6439 if { [istarget arm*-*-*] } {
6440 set et_vect_hw_misalign_saved($et_index) [expr ![check_effective_target_arm_vect_no_misalign]]
6443 verbose "check_effective_target_vect_hw_misalign:\
6444 returning $et_vect_hw_misalign_saved($et_index)" 2
6445 return $et_vect_hw_misalign_saved($et_index)
6449 # Return 1 if arrays are aligned to the vector alignment
6450 # boundary, 0 otherwise.
6452 proc check_effective_target_vect_aligned_arrays { } {
6453 set et_vect_aligned_arrays 0
6454 if { (([istarget i?86-*-*] || [istarget x86_64-*-*])
6455 && !([is-effective-target ia32]
6456 || ([check_avx_available] && ![check_prefer_avx128])))
6457 || [istarget spu-*-*] } {
6458 set et_vect_aligned_arrays 1
6461 verbose "check_effective_target_vect_aligned_arrays:\
6462 returning $et_vect_aligned_arrays" 2
6463 return $et_vect_aligned_arrays
6466 # Return 1 if types of size 32 bit or less are naturally aligned
6467 # (aligned to their type-size), 0 otherwise.
6469 # This won't change for different subtargets so cache the result.
6471 proc check_effective_target_natural_alignment_32 { } {
6472 global et_natural_alignment_32
6474 if [info exists et_natural_alignment_32_saved] {
6475 verbose "check_effective_target_natural_alignment_32: using cached result" 2
6476 } else {
6477 # FIXME: 32bit powerpc: guaranteed only if MASK_ALIGN_NATURAL/POWER.
6478 set et_natural_alignment_32_saved 1
6479 if { ([istarget *-*-darwin*] && [is-effective-target lp64])
6480 || [istarget avr-*-*] } {
6481 set et_natural_alignment_32_saved 0
6484 verbose "check_effective_target_natural_alignment_32: returning $et_natural_alignment_32_saved" 2
6485 return $et_natural_alignment_32_saved
6488 # Return 1 if types of size 64 bit or less are naturally aligned (aligned to their
6489 # type-size), 0 otherwise.
6491 # This won't change for different subtargets so cache the result.
6493 proc check_effective_target_natural_alignment_64 { } {
6494 global et_natural_alignment_64
6496 if [info exists et_natural_alignment_64_saved] {
6497 verbose "check_effective_target_natural_alignment_64: using cached result" 2
6498 } else {
6499 set et_natural_alignment_64_saved 0
6500 if { ([is-effective-target lp64] && ![istarget *-*-darwin*])
6501 || [istarget spu-*-*] } {
6502 set et_natural_alignment_64_saved 1
6505 verbose "check_effective_target_natural_alignment_64: returning $et_natural_alignment_64_saved" 2
6506 return $et_natural_alignment_64_saved
6509 # Return 1 if all vector types are naturally aligned (aligned to their
6510 # type-size), 0 otherwise.
6512 proc check_effective_target_vect_natural_alignment { } {
6513 set et_vect_natural_alignment 1
6514 if { [check_effective_target_arm_eabi]
6515 || [istarget nvptx-*-*]
6516 || [istarget s390*-*-*] } {
6517 set et_vect_natural_alignment 0
6519 verbose "check_effective_target_vect_natural_alignment:\
6520 returning $et_vect_natural_alignment" 2
6521 return $et_vect_natural_alignment
6524 # Return true if fully-masked loops are supported.
6526 proc check_effective_target_vect_fully_masked { } {
6527 return [check_effective_target_aarch64_sve]
6530 # Return 1 if the target doesn't prefer any alignment beyond element
6531 # alignment during vectorization.
6533 proc check_effective_target_vect_element_align_preferred { } {
6534 return [expr { [check_effective_target_aarch64_sve]
6535 && [check_effective_target_vect_variable_length] }]
6538 # Return 1 if we can align stack data to the preferred vector alignment.
6540 proc check_effective_target_vect_align_stack_vars { } {
6541 if { [check_effective_target_aarch64_sve] } {
6542 return [check_effective_target_vect_variable_length]
6544 return 1
6547 # Return 1 if vector alignment (for types of size 32 bit or less) is reachable, 0 otherwise.
6549 proc check_effective_target_vector_alignment_reachable { } {
6550 set et_vector_alignment_reachable 0
6551 if { [check_effective_target_vect_aligned_arrays]
6552 || [check_effective_target_natural_alignment_32] } {
6553 set et_vector_alignment_reachable 1
6555 verbose "check_effective_target_vector_alignment_reachable:\
6556 returning $et_vector_alignment_reachable" 2
6557 return $et_vector_alignment_reachable
6560 # Return 1 if vector alignment for 64 bit is reachable, 0 otherwise.
6562 proc check_effective_target_vector_alignment_reachable_for_64bit { } {
6563 set et_vector_alignment_reachable_for_64bit 0
6564 if { [check_effective_target_vect_aligned_arrays]
6565 || [check_effective_target_natural_alignment_64] } {
6566 set et_vector_alignment_reachable_for_64bit 1
6568 verbose "check_effective_target_vector_alignment_reachable_for_64bit:\
6569 returning $et_vector_alignment_reachable_for_64bit" 2
6570 return $et_vector_alignment_reachable_for_64bit
6573 # Return 1 if the target only requires element alignment for vector accesses
6575 proc check_effective_target_vect_element_align { } {
6576 global et_vect_element_align
6577 global et_index
6579 if [info exists et_vect_element_align($et_index)] {
6580 verbose "check_effective_target_vect_element_align:\
6581 using cached result" 2
6582 } else {
6583 set et_vect_element_align($et_index) 0
6584 if { ([istarget arm*-*-*]
6585 && ![check_effective_target_arm_vect_no_misalign])
6586 || [check_effective_target_vect_hw_misalign] } {
6587 set et_vect_element_align($et_index) 1
6591 verbose "check_effective_target_vect_element_align:\
6592 returning $et_vect_element_align($et_index)" 2
6593 return $et_vect_element_align($et_index)
6596 # Return 1 if we expect to see unaligned accesses in at least some
6597 # vector dumps.
6599 proc check_effective_target_vect_unaligned_possible { } {
6600 return [expr { ![check_effective_target_vect_element_align_preferred]
6601 && (![check_effective_target_vect_no_align]
6602 || [check_effective_target_vect_hw_misalign]) }]
6605 # Return 1 if the target supports vector LOAD_LANES operations, 0 otherwise.
6607 proc check_effective_target_vect_load_lanes { } {
6608 global et_vect_load_lanes
6610 if [info exists et_vect_load_lanes] {
6611 verbose "check_effective_target_vect_load_lanes: using cached result" 2
6612 } else {
6613 set et_vect_load_lanes 0
6614 if { ([istarget arm*-*-*] && [check_effective_target_arm_neon_ok])
6615 || [istarget aarch64*-*-*] } {
6616 set et_vect_load_lanes 1
6620 verbose "check_effective_target_vect_load_lanes: returning $et_vect_load_lanes" 2
6621 return $et_vect_load_lanes
6624 # Return 1 if the target supports vector masked stores.
6626 proc check_effective_target_vect_masked_store { } {
6627 return [check_effective_target_aarch64_sve]
6630 # Return 1 if the target supports vector scatter stores.
6632 proc check_effective_target_vect_scatter_store { } {
6633 return [check_effective_target_aarch64_sve]
6636 # Return 1 if the target supports vector conditional operations, 0 otherwise.
6638 proc check_effective_target_vect_condition { } {
6639 global et_vect_cond_saved
6640 global et_index
6642 if [info exists et_vect_cond_saved($et_index)] {
6643 verbose "check_effective_target_vect_cond: using cached result" 2
6644 } else {
6645 set et_vect_cond_saved($et_index) 0
6646 if { [istarget aarch64*-*-*]
6647 || [istarget powerpc*-*-*]
6648 || [istarget ia64-*-*]
6649 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6650 || [istarget spu-*-*]
6651 || ([istarget mips*-*-*]
6652 && [et-is-effective-target mips_msa])
6653 || ([istarget arm*-*-*]
6654 && [check_effective_target_arm_neon_ok])
6655 || ([istarget s390*-*-*]
6656 && [check_effective_target_s390_vx]) } {
6657 set et_vect_cond_saved($et_index) 1
6661 verbose "check_effective_target_vect_cond:\
6662 returning $et_vect_cond_saved($et_index)" 2
6663 return $et_vect_cond_saved($et_index)
6666 # Return 1 if the target supports vector conditional operations where
6667 # the comparison has different type from the lhs, 0 otherwise.
6669 proc check_effective_target_vect_cond_mixed { } {
6670 global et_vect_cond_mixed_saved
6671 global et_index
6673 if [info exists et_vect_cond_mixed_saved($et_index)] {
6674 verbose "check_effective_target_vect_cond_mixed: using cached result" 2
6675 } else {
6676 set et_vect_cond_mixed_saved($et_index) 0
6677 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
6678 || [istarget aarch64*-*-*]
6679 || [istarget powerpc*-*-*]
6680 || ([istarget mips*-*-*]
6681 && [et-is-effective-target mips_msa])
6682 || ([istarget s390*-*-*]
6683 && [check_effective_target_s390_vx]) } {
6684 set et_vect_cond_mixed_saved($et_index) 1
6688 verbose "check_effective_target_vect_cond_mixed:\
6689 returning $et_vect_cond_mixed_saved($et_index)" 2
6690 return $et_vect_cond_mixed_saved($et_index)
6693 # Return 1 if the target supports vector char multiplication, 0 otherwise.
6695 proc check_effective_target_vect_char_mult { } {
6696 global et_vect_char_mult_saved
6697 global et_index
6699 if [info exists et_vect_char_mult_saved($et_index)] {
6700 verbose "check_effective_target_vect_char_mult: using cached result" 2
6701 } else {
6702 set et_vect_char_mult_saved($et_index) 0
6703 if { [istarget aarch64*-*-*]
6704 || [istarget ia64-*-*]
6705 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6706 || [check_effective_target_arm32]
6707 || [check_effective_target_powerpc_altivec]
6708 || ([istarget mips*-*-*]
6709 && [et-is-effective-target mips_msa])
6710 || ([istarget s390*-*-*]
6711 && [check_effective_target_s390_vx]) } {
6712 set et_vect_char_mult_saved($et_index) 1
6716 verbose "check_effective_target_vect_char_mult:\
6717 returning $et_vect_char_mult_saved($et_index)" 2
6718 return $et_vect_char_mult_saved($et_index)
6721 # Return 1 if the target supports vector short multiplication, 0 otherwise.
6723 proc check_effective_target_vect_short_mult { } {
6724 global et_vect_short_mult_saved
6725 global et_index
6727 if [info exists et_vect_short_mult_saved($et_index)] {
6728 verbose "check_effective_target_vect_short_mult: using cached result" 2
6729 } else {
6730 set et_vect_short_mult_saved($et_index) 0
6731 if { [istarget ia64-*-*]
6732 || [istarget spu-*-*]
6733 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6734 || [istarget powerpc*-*-*]
6735 || [istarget aarch64*-*-*]
6736 || [check_effective_target_arm32]
6737 || ([istarget mips*-*-*]
6738 && ([et-is-effective-target mips_msa]
6739 || [et-is-effective-target mips_loongson]))
6740 || ([istarget s390*-*-*]
6741 && [check_effective_target_s390_vx]) } {
6742 set et_vect_short_mult_saved($et_index) 1
6746 verbose "check_effective_target_vect_short_mult:\
6747 returning $et_vect_short_mult_saved($et_index)" 2
6748 return $et_vect_short_mult_saved($et_index)
6751 # Return 1 if the target supports vector int multiplication, 0 otherwise.
6753 proc check_effective_target_vect_int_mult { } {
6754 global et_vect_int_mult_saved
6755 global et_index
6757 if [info exists et_vect_int_mult_saved($et_index)] {
6758 verbose "check_effective_target_vect_int_mult: using cached result" 2
6759 } else {
6760 set et_vect_int_mult_saved($et_index) 0
6761 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
6762 || [istarget spu-*-*]
6763 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6764 || [istarget ia64-*-*]
6765 || [istarget aarch64*-*-*]
6766 || ([istarget mips*-*-*]
6767 && [et-is-effective-target mips_msa])
6768 || [check_effective_target_arm32]
6769 || ([istarget s390*-*-*]
6770 && [check_effective_target_s390_vx]) } {
6771 set et_vect_int_mult_saved($et_index) 1
6775 verbose "check_effective_target_vect_int_mult:\
6776 returning $et_vect_int_mult_saved($et_index)" 2
6777 return $et_vect_int_mult_saved($et_index)
6780 # Return 1 if the target supports 64 bit hardware vector
6781 # multiplication of long operands with a long result, 0 otherwise.
6783 # This can change for different subtargets so do not cache the result.
6785 proc check_effective_target_vect_long_mult { } {
6786 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
6787 || (([istarget powerpc*-*-*]
6788 && ![istarget powerpc-*-linux*paired*])
6789 && [check_effective_target_ilp32])
6790 || [is-effective-target arm_neon]
6791 || ([istarget sparc*-*-*] && [check_effective_target_ilp32])
6792 || [istarget aarch64*-*-*]
6793 || ([istarget mips*-*-*]
6794 && [et-is-effective-target mips_msa]) } {
6795 set answer 1
6796 } else {
6797 set answer 0
6800 verbose "check_effective_target_vect_long_mult: returning $answer" 2
6801 return $answer
6804 # Return 1 if the target supports vector even/odd elements extraction, 0 otherwise.
6806 proc check_effective_target_vect_extract_even_odd { } {
6807 global et_vect_extract_even_odd_saved
6808 global et_index
6810 if [info exists et_vect_extract_even_odd_saved($et_index)] {
6811 verbose "check_effective_target_vect_extract_even_odd:\
6812 using cached result" 2
6813 } else {
6814 set et_vect_extract_even_odd_saved($et_index) 0
6815 if { [istarget aarch64*-*-*]
6816 || [istarget powerpc*-*-*]
6817 || [is-effective-target arm_neon]
6818 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6819 || [istarget ia64-*-*]
6820 || [istarget spu-*-*]
6821 || ([istarget mips*-*-*]
6822 && ([et-is-effective-target mips_msa]
6823 || [et-is-effective-target mpaired_single]))
6824 || ([istarget s390*-*-*]
6825 && [check_effective_target_s390_vx]) } {
6826 set et_vect_extract_even_odd_saved($et_index) 1
6830 verbose "check_effective_target_vect_extract_even_odd:\
6831 returning $et_vect_extract_even_odd_saved($et_index)" 2
6832 return $et_vect_extract_even_odd_saved($et_index)
6835 # Return 1 if the target supports vector interleaving, 0 otherwise.
6837 proc check_effective_target_vect_interleave { } {
6838 global et_vect_interleave_saved
6839 global et_index
6841 if [info exists et_vect_interleave_saved($et_index)] {
6842 verbose "check_effective_target_vect_interleave: using cached result" 2
6843 } else {
6844 set et_vect_interleave_saved($et_index) 0
6845 if { [istarget aarch64*-*-*]
6846 || [istarget powerpc*-*-*]
6847 || [is-effective-target arm_neon]
6848 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6849 || [istarget ia64-*-*]
6850 || [istarget spu-*-*]
6851 || ([istarget mips*-*-*]
6852 && ([et-is-effective-target mpaired_single]
6853 || [et-is-effective-target mips_msa]))
6854 || ([istarget s390*-*-*]
6855 && [check_effective_target_s390_vx]) } {
6856 set et_vect_interleave_saved($et_index) 1
6860 verbose "check_effective_target_vect_interleave:\
6861 returning $et_vect_interleave_saved($et_index)" 2
6862 return $et_vect_interleave_saved($et_index)
6865 foreach N {2 3 4 8} {
6866 eval [string map [list N $N] {
6867 # Return 1 if the target supports 2-vector interleaving
6868 proc check_effective_target_vect_stridedN { } {
6869 global et_vect_stridedN_saved
6870 global et_index
6872 if [info exists et_vect_stridedN_saved($et_index)] {
6873 verbose "check_effective_target_vect_stridedN:\
6874 using cached result" 2
6875 } else {
6876 set et_vect_stridedN_saved($et_index) 0
6877 if { (N & -N) == N
6878 && [check_effective_target_vect_interleave]
6879 && [check_effective_target_vect_extract_even_odd] } {
6880 set et_vect_stridedN_saved($et_index) 1
6882 if { ([istarget arm*-*-*]
6883 || [istarget aarch64*-*-*]) && N >= 2 && N <= 4 } {
6884 set et_vect_stridedN_saved($et_index) 1
6888 verbose "check_effective_target_vect_stridedN:\
6889 returning $et_vect_stridedN_saved($et_index)" 2
6890 return $et_vect_stridedN_saved($et_index)
6895 # Return the list of vector sizes (in bits) that each target supports.
6896 # A vector length of "0" indicates variable-length vectors.
6898 proc available_vector_sizes { } {
6899 set result {}
6900 if { [istarget aarch64*-*-*] } {
6901 if { [check_effective_target_aarch64_sve] } {
6902 lappend result [aarch64_sve_bits]
6904 lappend result 128 64
6905 } elseif { [istarget arm*-*-*]
6906 && [check_effective_target_arm_neon_ok] } {
6907 lappend result 128 64
6908 } elseif { (([istarget i?86-*-*] || [istarget x86_64-*-*])
6909 && ([check_avx_available] && ![check_prefer_avx128])) } {
6910 lappend result 256 128
6911 } elseif { [istarget sparc*-*-*] } {
6912 lappend result 64
6913 } else {
6914 # The traditional default asumption.
6915 lappend result 128
6917 return $result
6920 # Return 1 if the target supports multiple vector sizes
6922 proc check_effective_target_vect_multiple_sizes { } {
6923 return [expr { [llength [available_vector_sizes]] > 1 }]
6926 # Return true if variable-length vectors are supported.
6928 proc check_effective_target_vect_variable_length { } {
6929 return [expr { [lindex [available_vector_sizes] 0] == 0 }]
6932 # Return 1 if the target supports vectors of 64 bits.
6934 proc check_effective_target_vect64 { } {
6935 return [expr { [lsearch -exact [available_vector_sizes] 64] >= 0 }]
6938 # Return 1 if the target supports vector copysignf calls.
6940 proc check_effective_target_vect_call_copysignf { } {
6941 global et_vect_call_copysignf_saved
6942 global et_index
6944 if [info exists et_vect_call_copysignf_saved($et_index)] {
6945 verbose "check_effective_target_vect_call_copysignf:\
6946 using cached result" 2
6947 } else {
6948 set et_vect_call_copysignf_saved($et_index) 0
6949 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
6950 || [istarget powerpc*-*-*]
6951 || [istarget aarch64*-*-*] } {
6952 set et_vect_call_copysignf_saved($et_index) 1
6956 verbose "check_effective_target_vect_call_copysignf:\
6957 returning $et_vect_call_copysignf_saved($et_index)" 2
6958 return $et_vect_call_copysignf_saved($et_index)
6961 # Return 1 if the target supports hardware square root instructions.
6963 proc check_effective_target_sqrt_insn { } {
6964 global et_sqrt_insn_saved
6966 if [info exists et_sqrt_insn_saved] {
6967 verbose "check_effective_target_hw_sqrt: using cached result" 2
6968 } else {
6969 set et_sqrt_insn_saved 0
6970 if { [istarget i?86-*-*] || [istarget x86_64-*-*]
6971 || [istarget powerpc*-*-*]
6972 || [istarget aarch64*-*-*]
6973 || ([istarget arm*-*-*] && [check_effective_target_arm_vfp_ok])
6974 || ([istarget s390*-*-*]
6975 && [check_effective_target_s390_vx]) } {
6976 set et_sqrt_insn_saved 1
6980 verbose "check_effective_target_hw_sqrt: returning et_sqrt_insn_saved" 2
6981 return $et_sqrt_insn_saved
6984 # Return 1 if the target supports vector sqrtf calls.
6986 proc check_effective_target_vect_call_sqrtf { } {
6987 global et_vect_call_sqrtf_saved
6988 global et_index
6990 if [info exists et_vect_call_sqrtf_saved($et_index)] {
6991 verbose "check_effective_target_vect_call_sqrtf: using cached result" 2
6992 } else {
6993 set et_vect_call_sqrtf_saved($et_index) 0
6994 if { [istarget aarch64*-*-*]
6995 || [istarget i?86-*-*] || [istarget x86_64-*-*]
6996 || ([istarget powerpc*-*-*] && [check_vsx_hw_available])
6997 || ([istarget s390*-*-*]
6998 && [check_effective_target_s390_vx]) } {
6999 set et_vect_call_sqrtf_saved($et_index) 1
7003 verbose "check_effective_target_vect_call_sqrtf:\
7004 returning $et_vect_call_sqrtf_saved($et_index)" 2
7005 return $et_vect_call_sqrtf_saved($et_index)
7008 # Return 1 if the target supports vector lrint calls.
7010 proc check_effective_target_vect_call_lrint { } {
7011 set et_vect_call_lrint 0
7012 if { (([istarget i?86-*-*] || [istarget x86_64-*-*])
7013 && [check_effective_target_ilp32]) } {
7014 set et_vect_call_lrint 1
7017 verbose "check_effective_target_vect_call_lrint: returning $et_vect_call_lrint" 2
7018 return $et_vect_call_lrint
7021 # Return 1 if the target supports vector btrunc calls.
7023 proc check_effective_target_vect_call_btrunc { } {
7024 global et_vect_call_btrunc_saved
7025 global et_index
7027 if [info exists et_vect_call_btrunc_saved($et_index)] {
7028 verbose "check_effective_target_vect_call_btrunc:\
7029 using cached result" 2
7030 } else {
7031 set et_vect_call_btrunc_saved($et_index) 0
7032 if { [istarget aarch64*-*-*] } {
7033 set et_vect_call_btrunc_saved($et_index) 1
7037 verbose "check_effective_target_vect_call_btrunc:\
7038 returning $et_vect_call_btrunc_saved($et_index)" 2
7039 return $et_vect_call_btrunc_saved($et_index)
7042 # Return 1 if the target supports vector btruncf calls.
7044 proc check_effective_target_vect_call_btruncf { } {
7045 global et_vect_call_btruncf_saved
7046 global et_index
7048 if [info exists et_vect_call_btruncf_saved($et_index)] {
7049 verbose "check_effective_target_vect_call_btruncf:\
7050 using cached result" 2
7051 } else {
7052 set et_vect_call_btruncf_saved($et_index) 0
7053 if { [istarget aarch64*-*-*] } {
7054 set et_vect_call_btruncf_saved($et_index) 1
7058 verbose "check_effective_target_vect_call_btruncf:\
7059 returning $et_vect_call_btruncf_saved($et_index)" 2
7060 return $et_vect_call_btruncf_saved($et_index)
7063 # Return 1 if the target supports vector ceil calls.
7065 proc check_effective_target_vect_call_ceil { } {
7066 global et_vect_call_ceil_saved
7067 global et_index
7069 if [info exists et_vect_call_ceil_saved($et_index)] {
7070 verbose "check_effective_target_vect_call_ceil: using cached result" 2
7071 } else {
7072 set et_vect_call_ceil_saved($et_index) 0
7073 if { [istarget aarch64*-*-*] } {
7074 set et_vect_call_ceil_saved($et_index) 1
7078 verbose "check_effective_target_vect_call_ceil:\
7079 returning $et_vect_call_ceil_saved($et_index)" 2
7080 return $et_vect_call_ceil_saved($et_index)
7083 # Return 1 if the target supports vector ceilf calls.
7085 proc check_effective_target_vect_call_ceilf { } {
7086 global et_vect_call_ceilf_saved
7087 global et_index
7089 if [info exists et_vect_call_ceilf_saved($et_index)] {
7090 verbose "check_effective_target_vect_call_ceilf: using cached result" 2
7091 } else {
7092 set et_vect_call_ceilf_saved($et_index) 0
7093 if { [istarget aarch64*-*-*] } {
7094 set et_vect_call_ceilf_saved($et_index) 1
7098 verbose "check_effective_target_vect_call_ceilf:\
7099 returning $et_vect_call_ceilf_saved($et_index)" 2
7100 return $et_vect_call_ceilf_saved($et_index)
7103 # Return 1 if the target supports vector floor calls.
7105 proc check_effective_target_vect_call_floor { } {
7106 global et_vect_call_floor_saved
7107 global et_index
7109 if [info exists et_vect_call_floor_saved($et_index)] {
7110 verbose "check_effective_target_vect_call_floor: using cached result" 2
7111 } else {
7112 set et_vect_call_floor_saved($et_index) 0
7113 if { [istarget aarch64*-*-*] } {
7114 set et_vect_call_floor_saved($et_index) 1
7118 verbose "check_effective_target_vect_call_floor:\
7119 returning $et_vect_call_floor_saved($et_index)" 2
7120 return $et_vect_call_floor_saved($et_index)
7123 # Return 1 if the target supports vector floorf calls.
7125 proc check_effective_target_vect_call_floorf { } {
7126 global et_vect_call_floorf_saved
7127 global et_index
7129 if [info exists et_vect_call_floorf_saved($et_index)] {
7130 verbose "check_effective_target_vect_call_floorf: using cached result" 2
7131 } else {
7132 set et_vect_call_floorf_saved($et_index) 0
7133 if { [istarget aarch64*-*-*] } {
7134 set et_vect_call_floorf_saved($et_index) 1
7138 verbose "check_effective_target_vect_call_floorf:\
7139 returning $et_vect_call_floorf_saved($et_index)" 2
7140 return $et_vect_call_floorf_saved($et_index)
7143 # Return 1 if the target supports vector lceil calls.
7145 proc check_effective_target_vect_call_lceil { } {
7146 global et_vect_call_lceil_saved
7147 global et_index
7149 if [info exists et_vect_call_lceil_saved($et_index)] {
7150 verbose "check_effective_target_vect_call_lceil: using cached result" 2
7151 } else {
7152 set et_vect_call_lceil_saved($et_index) 0
7153 if { [istarget aarch64*-*-*] } {
7154 set et_vect_call_lceil_saved($et_index) 1
7158 verbose "check_effective_target_vect_call_lceil:\
7159 returning $et_vect_call_lceil_saved($et_index)" 2
7160 return $et_vect_call_lceil_saved($et_index)
7163 # Return 1 if the target supports vector lfloor calls.
7165 proc check_effective_target_vect_call_lfloor { } {
7166 global et_vect_call_lfloor_saved
7167 global et_index
7169 if [info exists et_vect_call_lfloor_saved($et_index)] {
7170 verbose "check_effective_target_vect_call_lfloor: using cached result" 2
7171 } else {
7172 set et_vect_call_lfloor_saved($et_index) 0
7173 if { [istarget aarch64*-*-*] } {
7174 set et_vect_call_lfloor_saved($et_index) 1
7178 verbose "check_effective_target_vect_call_lfloor:\
7179 returning $et_vect_call_lfloor_saved($et_index)" 2
7180 return $et_vect_call_lfloor_saved($et_index)
7183 # Return 1 if the target supports vector nearbyint calls.
7185 proc check_effective_target_vect_call_nearbyint { } {
7186 global et_vect_call_nearbyint_saved
7187 global et_index
7189 if [info exists et_vect_call_nearbyint_saved($et_index)] {
7190 verbose "check_effective_target_vect_call_nearbyint: using cached result" 2
7191 } else {
7192 set et_vect_call_nearbyint_saved($et_index) 0
7193 if { [istarget aarch64*-*-*] } {
7194 set et_vect_call_nearbyint_saved($et_index) 1
7198 verbose "check_effective_target_vect_call_nearbyint:\
7199 returning $et_vect_call_nearbyint_saved($et_index)" 2
7200 return $et_vect_call_nearbyint_saved($et_index)
7203 # Return 1 if the target supports vector nearbyintf calls.
7205 proc check_effective_target_vect_call_nearbyintf { } {
7206 global et_vect_call_nearbyintf_saved
7207 global et_index
7209 if [info exists et_vect_call_nearbyintf_saved($et_index)] {
7210 verbose "check_effective_target_vect_call_nearbyintf:\
7211 using cached result" 2
7212 } else {
7213 set et_vect_call_nearbyintf_saved($et_index) 0
7214 if { [istarget aarch64*-*-*] } {
7215 set et_vect_call_nearbyintf_saved($et_index) 1
7219 verbose "check_effective_target_vect_call_nearbyintf:\
7220 returning $et_vect_call_nearbyintf_saved($et_index)" 2
7221 return $et_vect_call_nearbyintf_saved($et_index)
7224 # Return 1 if the target supports vector round calls.
7226 proc check_effective_target_vect_call_round { } {
7227 global et_vect_call_round_saved
7228 global et_index
7230 if [info exists et_vect_call_round_saved($et_index)] {
7231 verbose "check_effective_target_vect_call_round: using cached result" 2
7232 } else {
7233 set et_vect_call_round_saved($et_index) 0
7234 if { [istarget aarch64*-*-*] } {
7235 set et_vect_call_round_saved($et_index) 1
7239 verbose "check_effective_target_vect_call_round:\
7240 returning $et_vect_call_round_saved($et_index)" 2
7241 return $et_vect_call_round_saved($et_index)
7244 # Return 1 if the target supports vector roundf calls.
7246 proc check_effective_target_vect_call_roundf { } {
7247 global et_vect_call_roundf_saved
7248 global et_index
7250 if [info exists et_vect_call_roundf_saved($et_index)] {
7251 verbose "check_effective_target_vect_call_roundf: using cached result" 2
7252 } else {
7253 set et_vect_call_roundf_saved($et_index) 0
7254 if { [istarget aarch64*-*-*] } {
7255 set et_vect_call_roundf_saved($et_index) 1
7259 verbose "check_effective_target_vect_call_roundf:\
7260 returning $et_vect_call_roundf_saved($et_index)" 2
7261 return $et_vect_call_roundf_saved($et_index)
7264 # Return 1 if the target supports AND, OR and XOR reduction.
7266 proc check_effective_target_vect_logical_reduc { } {
7267 return [check_effective_target_aarch64_sve]
7270 # Return 1 if the target supports the fold_extract_last optab.
7272 proc check_effective_target_vect_fold_extract_last { } {
7273 return [check_effective_target_aarch64_sve]
7276 # Return 1 if the target supports section-anchors
7278 proc check_effective_target_section_anchors { } {
7279 global et_section_anchors_saved
7281 if [info exists et_section_anchors_saved] {
7282 verbose "check_effective_target_section_anchors: using cached result" 2
7283 } else {
7284 set et_section_anchors_saved 0
7285 if { [istarget powerpc*-*-*]
7286 || [istarget arm*-*-*]
7287 || [istarget aarch64*-*-*] } {
7288 set et_section_anchors_saved 1
7292 verbose "check_effective_target_section_anchors: returning $et_section_anchors_saved" 2
7293 return $et_section_anchors_saved
7296 # Return 1 if the target supports atomic operations on "int_128" values.
7298 proc check_effective_target_sync_int_128 { } {
7299 if { [istarget spu-*-*] } {
7300 return 1
7301 } else {
7302 return 0
7306 # Return 1 if the target supports atomic operations on "int_128" values
7307 # and can execute them.
7308 # This requires support for both compare-and-swap and true atomic loads.
7310 proc check_effective_target_sync_int_128_runtime { } {
7311 if { [istarget spu-*-*] } {
7312 return 1
7313 } else {
7314 return 0
7318 # Return 1 if the target supports atomic operations on "long long".
7320 # Note: 32bit x86 targets require -march=pentium in dg-options.
7321 # Note: 32bit s390 targets require -mzarch in dg-options.
7323 proc check_effective_target_sync_long_long { } {
7324 if { [istarget i?86-*-*] || [istarget x86_64-*-*])
7325 || [istarget aarch64*-*-*]
7326 || [istarget arm*-*-*]
7327 || [istarget alpha*-*-*]
7328 || ([istarget sparc*-*-*] && [check_effective_target_lp64])
7329 || [istarget s390*-*-*]
7330 || [istarget spu-*-*] } {
7331 return 1
7332 } else {
7333 return 0
7337 # Return 1 if the target supports atomic operations on "long long"
7338 # and can execute them.
7340 # Note: 32bit x86 targets require -march=pentium in dg-options.
7342 proc check_effective_target_sync_long_long_runtime { } {
7343 if { (([istarget x86_64-*-*] || [istarget i?86-*-*])
7344 && [check_cached_effective_target sync_long_long_available {
7345 check_runtime_nocache sync_long_long_available {
7346 #include "cpuid.h"
7347 int main ()
7349 unsigned int eax, ebx, ecx, edx;
7350 if (__get_cpuid (1, &eax, &ebx, &ecx, &edx))
7351 return !(edx & bit_CMPXCHG8B);
7352 return 1;
7354 } ""
7356 || [istarget aarch64*-*-*]
7357 || ([istarget arm*-*-linux-*]
7358 && [check_runtime sync_longlong_runtime {
7359 #include <stdlib.h>
7360 int main ()
7362 long long l1;
7364 if (sizeof (long long) != 8)
7365 exit (1);
7367 /* Just check for native;
7368 checking for kernel fallback is tricky. */
7369 asm volatile ("ldrexd r0,r1, [%0]"
7370 : : "r" (&l1) : "r0", "r1");
7371 exit (0);
7373 } "" ])
7374 || [istarget alpha*-*-*]
7375 || ([istarget sparc*-*-*]
7376 && [check_effective_target_lp64]
7377 && [check_effective_target_ultrasparc_hw])
7378 || [istarget spu-*-*]
7379 || ([istarget powerpc*-*-*] && [check_effective_target_lp64]) } {
7380 return 1
7381 } else {
7382 return 0
7386 # Return 1 if the target supports byte swap instructions.
7388 proc check_effective_target_bswap { } {
7389 global et_bswap_saved
7391 if [info exists et_bswap_saved] {
7392 verbose "check_effective_target_bswap: using cached result" 2
7393 } else {
7394 set et_bswap_saved 0
7395 if { [istarget aarch64*-*-*]
7396 || [istarget alpha*-*-*]
7397 || [istarget i?86-*-*] || [istarget x86_64-*-*]
7398 || [istarget m68k-*-*]
7399 || [istarget powerpc*-*-*]
7400 || [istarget rs6000-*-*]
7401 || [istarget s390*-*-*]
7402 || ([istarget arm*-*-*]
7403 && [check_no_compiler_messages_nocache arm_v6_or_later object {
7404 #if __ARM_ARCH < 6
7405 #error not armv6 or later
7406 #endif
7407 int i;
7408 } ""]) } {
7409 set et_bswap_saved 1
7413 verbose "check_effective_target_bswap: returning $et_bswap_saved" 2
7414 return $et_bswap_saved
7417 # Return 1 if the target supports atomic operations on "int" and "long".
7419 proc check_effective_target_sync_int_long { } {
7420 global et_sync_int_long_saved
7422 if [info exists et_sync_int_long_saved] {
7423 verbose "check_effective_target_sync_int_long: using cached result" 2
7424 } else {
7425 set et_sync_int_long_saved 0
7426 # This is intentionally powerpc but not rs6000, rs6000 doesn't have the
7427 # load-reserved/store-conditional instructions.
7428 if { [istarget ia64-*-*]
7429 || [istarget i?86-*-*] || [istarget x86_64-*-*]
7430 || [istarget aarch64*-*-*]
7431 || [istarget alpha*-*-*]
7432 || [istarget arm*-*-linux-*]
7433 || ([istarget arm*-*-*]
7434 && [check_effective_target_arm_acq_rel])
7435 || [istarget bfin*-*linux*]
7436 || [istarget hppa*-*linux*]
7437 || [istarget s390*-*-*]
7438 || [istarget powerpc*-*-*]
7439 || [istarget crisv32-*-*] || [istarget cris-*-*]
7440 || ([istarget sparc*-*-*] && [check_effective_target_sparc_v9])
7441 || [istarget spu-*-*]
7442 || ([istarget arc*-*-*] && [check_effective_target_arc_atomic])
7443 || [check_effective_target_mips_llsc] } {
7444 set et_sync_int_long_saved 1
7448 verbose "check_effective_target_sync_int_long: returning $et_sync_int_long_saved" 2
7449 return $et_sync_int_long_saved
7452 # Return 1 if the target supports atomic operations on "char" and "short".
7454 proc check_effective_target_sync_char_short { } {
7455 global et_sync_char_short_saved
7457 if [info exists et_sync_char_short_saved] {
7458 verbose "check_effective_target_sync_char_short: using cached result" 2
7459 } else {
7460 set et_sync_char_short_saved 0
7461 # This is intentionally powerpc but not rs6000, rs6000 doesn't have the
7462 # load-reserved/store-conditional instructions.
7463 if { [istarget aarch64*-*-*]
7464 || [istarget ia64-*-*]
7465 || [istarget i?86-*-*] || [istarget x86_64-*-*]
7466 || [istarget alpha*-*-*]
7467 || [istarget arm*-*-linux-*]
7468 || ([istarget arm*-*-*]
7469 && [check_effective_target_arm_acq_rel])
7470 || [istarget hppa*-*linux*]
7471 || [istarget s390*-*-*]
7472 || [istarget powerpc*-*-*]
7473 || [istarget crisv32-*-*] || [istarget cris-*-*]
7474 || ([istarget sparc*-*-*] && [check_effective_target_sparc_v9])
7475 || [istarget spu-*-*]
7476 || ([istarget arc*-*-*] && [check_effective_target_arc_atomic])
7477 || [check_effective_target_mips_llsc] } {
7478 set et_sync_char_short_saved 1
7482 verbose "check_effective_target_sync_char_short: returning $et_sync_char_short_saved" 2
7483 return $et_sync_char_short_saved
7486 # Return 1 if the target uses a ColdFire FPU.
7488 proc check_effective_target_coldfire_fpu { } {
7489 return [check_no_compiler_messages coldfire_fpu assembly {
7490 #ifndef __mcffpu__
7491 #error !__mcffpu__
7492 #endif
7496 # Return true if this is a uClibc target.
7498 proc check_effective_target_uclibc {} {
7499 return [check_no_compiler_messages uclibc object {
7500 #include <features.h>
7501 #if !defined (__UCLIBC__)
7502 #error !__UCLIBC__
7503 #endif
7507 # Return true if this is a uclibc target and if the uclibc feature
7508 # described by __$feature__ is not present.
7510 proc check_missing_uclibc_feature {feature} {
7511 return [check_no_compiler_messages $feature object "
7512 #include <features.h>
7513 #if !defined (__UCLIBC) || defined (__${feature}__)
7514 #error FOO
7515 #endif
7519 # Return true if this is a Newlib target.
7521 proc check_effective_target_newlib {} {
7522 return [check_no_compiler_messages newlib object {
7523 #include <newlib.h>
7527 # Some newlib versions don't provide a frexpl and instead depend
7528 # on frexp to implement long double conversions in their printf-like
7529 # functions. This leads to broken results. Detect such versions here.
7531 proc check_effective_target_newlib_broken_long_double_io {} {
7532 if { [is-effective-target newlib] && ![is-effective-target frexpl] } {
7533 return 1
7535 return 0
7538 # Return true if this is NOT a Bionic target.
7540 proc check_effective_target_non_bionic {} {
7541 return [check_no_compiler_messages non_bionic object {
7542 #include <ctype.h>
7543 #if defined (__BIONIC__)
7544 #error FOO
7545 #endif
7549 # Return true if this target has error.h header.
7551 proc check_effective_target_error_h {} {
7552 return [check_no_compiler_messages error_h object {
7553 #include <error.h>
7557 # Return true if this target has tgmath.h header.
7559 proc check_effective_target_tgmath_h {} {
7560 return [check_no_compiler_messages tgmath_h object {
7561 #include <tgmath.h>
7565 # Return true if target's libc supports complex functions.
7567 proc check_effective_target_libc_has_complex_functions {} {
7568 return [check_no_compiler_messages libc_has_complex_functions object {
7569 #include <complex.h>
7573 # Return 1 if
7574 # (a) an error of a few ULP is expected in string to floating-point
7575 # conversion functions; and
7576 # (b) overflow is not always detected correctly by those functions.
7578 proc check_effective_target_lax_strtofp {} {
7579 # By default, assume that all uClibc targets suffer from this.
7580 return [check_effective_target_uclibc]
7583 # Return 1 if this is a target for which wcsftime is a dummy
7584 # function that always returns 0.
7586 proc check_effective_target_dummy_wcsftime {} {
7587 # By default, assume that all uClibc targets suffer from this.
7588 return [check_effective_target_uclibc]
7591 # Return 1 if constructors with initialization priority arguments are
7592 # supposed on this target.
7594 proc check_effective_target_init_priority {} {
7595 return [check_no_compiler_messages init_priority assembly "
7596 void f() __attribute__((constructor (1000)));
7597 void f() \{\}
7601 # Return 1 if the target matches the effective target 'arg', 0 otherwise.
7602 # This can be used with any check_* proc that takes no argument and
7603 # returns only 1 or 0. It could be used with check_* procs that take
7604 # arguments with keywords that pass particular arguments.
7606 proc is-effective-target { arg } {
7607 global et_index
7608 set selected 0
7609 if { ![info exists et_index] } {
7610 # Initialize the effective target index that is used in some
7611 # check_effective_target_* procs.
7612 set et_index 0
7614 if { [info procs check_effective_target_${arg}] != [list] } {
7615 set selected [check_effective_target_${arg}]
7616 } else {
7617 switch $arg {
7618 "vmx_hw" { set selected [check_vmx_hw_available] }
7619 "vsx_hw" { set selected [check_vsx_hw_available] }
7620 "p8vector_hw" { set selected [check_p8vector_hw_available] }
7621 "p9vector_hw" { set selected [check_p9vector_hw_available] }
7622 "p9modulo_hw" { set selected [check_p9modulo_hw_available] }
7623 "ppc_float128_sw" { set selected [check_ppc_float128_sw_available] }
7624 "ppc_float128_hw" { set selected [check_ppc_float128_hw_available] }
7625 "ppc_recip_hw" { set selected [check_ppc_recip_hw_available] }
7626 "ppc_cpu_supports_hw" { set selected [check_ppc_cpu_supports_hw_available] }
7627 "dfp_hw" { set selected [check_dfp_hw_available] }
7628 "htm_hw" { set selected [check_htm_hw_available] }
7629 "named_sections" { set selected [check_named_sections_available] }
7630 "gc_sections" { set selected [check_gc_sections_available] }
7631 "cxa_atexit" { set selected [check_cxa_atexit_available] }
7632 default { error "unknown effective target keyword `$arg'" }
7635 verbose "is-effective-target: $arg $selected" 2
7636 return $selected
7639 # Return 1 if the argument is an effective-target keyword, 0 otherwise.
7641 proc is-effective-target-keyword { arg } {
7642 if { [info procs check_effective_target_${arg}] != [list] } {
7643 return 1
7644 } else {
7645 # These have different names for their check_* procs.
7646 switch $arg {
7647 "vmx_hw" { return 1 }
7648 "vsx_hw" { return 1 }
7649 "p8vector_hw" { return 1 }
7650 "p9vector_hw" { return 1 }
7651 "p9modulo_hw" { return 1 }
7652 "ppc_float128_sw" { return 1 }
7653 "ppc_float128_hw" { return 1 }
7654 "ppc_recip_hw" { return 1 }
7655 "dfp_hw" { return 1 }
7656 "htm_hw" { return 1 }
7657 "named_sections" { return 1 }
7658 "gc_sections" { return 1 }
7659 "cxa_atexit" { return 1 }
7660 default { return 0 }
7665 # Execute tests for all targets in EFFECTIVE_TARGETS list. Set et_index to
7666 # indicate what target is currently being processed. This is for
7667 # the vectorizer tests, e.g. vect_int, to keep track what target supports
7668 # a given feature.
7670 proc et-dg-runtest { runtest testcases flags default-extra-flags } {
7671 global dg-do-what-default
7672 global EFFECTIVE_TARGETS
7673 global et_index
7675 if { [llength $EFFECTIVE_TARGETS] > 0 } {
7676 foreach target $EFFECTIVE_TARGETS {
7677 set target_flags $flags
7678 set dg-do-what-default compile
7679 set et_index [lsearch -exact $EFFECTIVE_TARGETS $target]
7680 if { [info procs add_options_for_${target}] != [list] } {
7681 set target_flags [add_options_for_${target} "$flags"]
7683 if { [info procs check_effective_target_${target}_runtime]
7684 != [list] && [check_effective_target_${target}_runtime] } {
7685 set dg-do-what-default run
7687 $runtest $testcases $target_flags ${default-extra-flags}
7689 } else {
7690 set et_index 0
7691 $runtest $testcases $flags ${default-extra-flags}
7695 # Return 1 if a target matches the target in EFFECTIVE_TARGETS at index
7696 # et_index, 0 otherwise.
7698 proc et-is-effective-target { target } {
7699 global EFFECTIVE_TARGETS
7700 global et_index
7702 if { [llength $EFFECTIVE_TARGETS] > $et_index
7703 && [lindex $EFFECTIVE_TARGETS $et_index] == $target } {
7704 return 1
7706 return 0
7709 # Return 1 if target default to short enums
7711 proc check_effective_target_short_enums { } {
7712 return [check_no_compiler_messages short_enums assembly {
7713 enum foo { bar };
7714 int s[sizeof (enum foo) == 1 ? 1 : -1];
7718 # Return 1 if target supports merging string constants at link time.
7720 proc check_effective_target_string_merging { } {
7721 return [check_no_messages_and_pattern string_merging \
7722 "rodata\\.str" assembly {
7723 const char *var = "String";
7724 } {-O2}]
7727 # Return 1 if target has the basic signed and unsigned types in
7728 # <stdint.h>, 0 otherwise. This will be obsolete when GCC ensures a
7729 # working <stdint.h> for all targets.
7731 proc check_effective_target_stdint_types { } {
7732 return [check_no_compiler_messages stdint_types assembly {
7733 #include <stdint.h>
7734 int8_t a; int16_t b; int32_t c; int64_t d;
7735 uint8_t e; uint16_t f; uint32_t g; uint64_t h;
7739 # Return 1 if target has the basic signed and unsigned types in
7740 # <inttypes.h>, 0 otherwise. This is for tests that GCC's notions of
7741 # these types agree with those in the header, as some systems have
7742 # only <inttypes.h>.
7744 proc check_effective_target_inttypes_types { } {
7745 return [check_no_compiler_messages inttypes_types assembly {
7746 #include <inttypes.h>
7747 int8_t a; int16_t b; int32_t c; int64_t d;
7748 uint8_t e; uint16_t f; uint32_t g; uint64_t h;
7752 # Return 1 if programs are intended to be run on a simulator
7753 # (i.e. slowly) rather than hardware (i.e. fast).
7755 proc check_effective_target_simulator { } {
7757 # All "src/sim" simulators set this one.
7758 if [board_info target exists is_simulator] {
7759 return [board_info target is_simulator]
7762 # The "sid" simulators don't set that one, but at least they set
7763 # this one.
7764 if [board_info target exists slow_simulator] {
7765 return [board_info target slow_simulator]
7768 return 0
7771 # Return 1 if programs are intended to be run on hardware rather than
7772 # on a simulator
7774 proc check_effective_target_hw { } {
7776 # All "src/sim" simulators set this one.
7777 if [board_info target exists is_simulator] {
7778 if [board_info target is_simulator] {
7779 return 0
7780 } else {
7781 return 1
7785 # The "sid" simulators don't set that one, but at least they set
7786 # this one.
7787 if [board_info target exists slow_simulator] {
7788 if [board_info target slow_simulator] {
7789 return 0
7790 } else {
7791 return 1
7795 return 1
7798 # Return 1 if the target is a VxWorks kernel.
7800 proc check_effective_target_vxworks_kernel { } {
7801 return [check_no_compiler_messages vxworks_kernel assembly {
7802 #if !defined __vxworks || defined __RTP__
7803 #error NO
7804 #endif
7808 # Return 1 if the target is a VxWorks RTP.
7810 proc check_effective_target_vxworks_rtp { } {
7811 return [check_no_compiler_messages vxworks_rtp assembly {
7812 #if !defined __vxworks || !defined __RTP__
7813 #error NO
7814 #endif
7818 # Return 1 if the target is expected to provide wide character support.
7820 proc check_effective_target_wchar { } {
7821 if {[check_missing_uclibc_feature UCLIBC_HAS_WCHAR]} {
7822 return 0
7824 return [check_no_compiler_messages wchar assembly {
7825 #include <wchar.h>
7829 # Return 1 if the target has <pthread.h>.
7831 proc check_effective_target_pthread_h { } {
7832 return [check_no_compiler_messages pthread_h assembly {
7833 #include <pthread.h>
7837 # Return 1 if the target can truncate a file from a file-descriptor,
7838 # as used by libgfortran/io/unix.c:fd_truncate; i.e. ftruncate or
7839 # chsize. We test for a trivially functional truncation; no stubs.
7840 # As libgfortran uses _FILE_OFFSET_BITS 64, we do too; it'll cause a
7841 # different function to be used.
7843 proc check_effective_target_fd_truncate { } {
7844 set prog {
7845 #define _FILE_OFFSET_BITS 64
7846 #include <unistd.h>
7847 #include <stdio.h>
7848 #include <stdlib.h>
7849 #include <string.h>
7850 int main ()
7852 FILE *f = fopen ("tst.tmp", "wb");
7853 int fd;
7854 const char t[] = "test writing more than ten characters";
7855 char s[11];
7856 int status = 0;
7857 fd = fileno (f);
7858 write (fd, t, sizeof (t) - 1);
7859 lseek (fd, 0, 0);
7860 if (ftruncate (fd, 10) != 0)
7861 status = 1;
7862 close (fd);
7863 fclose (f);
7864 if (status)
7866 unlink ("tst.tmp");
7867 exit (status);
7869 f = fopen ("tst.tmp", "rb");
7870 if (fread (s, 1, sizeof (s), f) != 10 || strncmp (s, t, 10) != 0)
7871 status = 1;
7872 fclose (f);
7873 unlink ("tst.tmp");
7874 exit (status);
7878 if { [check_runtime ftruncate $prog] } {
7879 return 1;
7882 regsub "ftruncate" $prog "chsize" prog
7883 return [check_runtime chsize $prog]
7886 # Add to FLAGS all the target-specific flags needed to access the c99 runtime.
7888 proc add_options_for_c99_runtime { flags } {
7889 if { [istarget *-*-solaris2*] } {
7890 return "$flags -std=c99"
7892 if { [istarget powerpc-*-darwin*] } {
7893 return "$flags -mmacosx-version-min=10.3"
7895 return $flags
7898 # Add to FLAGS all the target-specific flags needed to enable
7899 # full IEEE compliance mode.
7901 proc add_options_for_ieee { flags } {
7902 if { [istarget alpha*-*-*]
7903 || [istarget sh*-*-*] } {
7904 return "$flags -mieee"
7906 if { [istarget rx-*-*] } {
7907 return "$flags -mnofpu"
7909 return $flags
7912 if {![info exists flags_to_postpone]} {
7913 set flags_to_postpone ""
7916 # Add to FLAGS the flags needed to enable functions to bind locally
7917 # when using pic/PIC passes in the testsuite.
7918 proc add_options_for_bind_pic_locally { flags } {
7919 global flags_to_postpone
7921 # Instead of returning 'flags' with the -fPIE or -fpie appended, we save it
7922 # in 'flags_to_postpone' and append it later in gcc_target_compile procedure in
7923 # order to make sure that the multilib_flags doesn't override this.
7925 if {[check_no_compiler_messages using_pic2 assembly {
7926 #if __PIC__ != 2
7927 #error __PIC__ != 2
7928 #endif
7929 }]} {
7930 set flags_to_postpone "-fPIE"
7931 return $flags
7933 if {[check_no_compiler_messages using_pic1 assembly {
7934 #if __PIC__ != 1
7935 #error __PIC__ != 1
7936 #endif
7937 }]} {
7938 set flags_to_postpone "-fpie"
7939 return $flags
7941 return $flags
7944 # Add to FLAGS the flags needed to enable 64-bit vectors.
7946 proc add_options_for_double_vectors { flags } {
7947 if [is-effective-target arm_neon_ok] {
7948 return "$flags -mvectorize-with-neon-double"
7951 return $flags
7954 # Add to FLAGS the flags needed to define the STACK_SIZE macro.
7956 proc add_options_for_stack_size { flags } {
7957 if [is-effective-target stack_size] {
7958 set stack_size [dg-effective-target-value stack_size]
7959 return "$flags -DSTACK_SIZE=$stack_size"
7962 return $flags
7965 # Return 1 if the target provides a full C99 runtime.
7967 proc check_effective_target_c99_runtime { } {
7968 return [check_cached_effective_target c99_runtime {
7969 global srcdir
7971 set file [open "$srcdir/gcc.dg/builtins-config.h"]
7972 set contents [read $file]
7973 close $file
7974 append contents {
7975 #ifndef HAVE_C99_RUNTIME
7976 #error !HAVE_C99_RUNTIME
7977 #endif
7979 check_no_compiler_messages_nocache c99_runtime assembly \
7980 $contents [add_options_for_c99_runtime ""]
7984 # Return 1 if target wchar_t is at least 4 bytes.
7986 proc check_effective_target_4byte_wchar_t { } {
7987 return [check_no_compiler_messages 4byte_wchar_t object {
7988 int dummy[sizeof (__WCHAR_TYPE__) >= 4 ? 1 : -1];
7992 # Return 1 if the target supports automatic stack alignment.
7994 proc check_effective_target_automatic_stack_alignment { } {
7995 # Ordinarily x86 supports automatic stack alignment ...
7996 if { [istarget i?86*-*-*] || [istarget x86_64-*-*] } then {
7997 if { [istarget *-*-mingw*] || [istarget *-*-cygwin*] } {
7998 # ... except Win64 SEH doesn't. Succeed for Win32 though.
7999 return [check_effective_target_ilp32];
8001 return 1;
8003 return 0;
8006 # Return true if we are compiling for AVX target.
8008 proc check_avx_available { } {
8009 if { [check_no_compiler_messages avx_available assembly {
8010 #ifndef __AVX__
8011 #error unsupported
8012 #endif
8013 } ""] } {
8014 return 1;
8016 return 0;
8019 # Return true if 32- and 16-bytes vectors are available.
8021 proc check_effective_target_vect_sizes_32B_16B { } {
8022 return [expr { [available_vector_sizes] == [list 256 128] }]
8025 # Return true if 16- and 8-bytes vectors are available.
8027 proc check_effective_target_vect_sizes_16B_8B { } {
8028 if { [check_avx_available]
8029 || [is-effective-target arm_neon]
8030 || [istarget aarch64*-*-*] } {
8031 return 1;
8032 } else {
8033 return 0;
8038 # Return true if 128-bits vectors are preferred even if 256-bits vectors
8039 # are available.
8041 proc check_prefer_avx128 { } {
8042 if ![check_avx_available] {
8043 return 0;
8045 return [check_no_messages_and_pattern avx_explicit "xmm" assembly {
8046 float a[1024],b[1024],c[1024];
8047 void foo (void) { int i; for (i = 0; i < 1024; i++) a[i]=b[i]+c[i];}
8048 } "-O2 -ftree-vectorize"]
8052 # Return 1 if avx512f instructions can be compiled.
8054 proc check_effective_target_avx512f { } {
8055 return [check_no_compiler_messages avx512f object {
8056 typedef double __m512d __attribute__ ((__vector_size__ (64)));
8057 typedef double __m128d __attribute__ ((__vector_size__ (16)));
8059 __m512d _mm512_add (__m512d a)
8061 return __builtin_ia32_addpd512_mask (a, a, a, 1, 4);
8064 __m128d _mm128_add (__m128d a)
8066 return __builtin_ia32_addsd_round (a, a, 8);
8069 __m128d _mm128_getmant (__m128d a)
8071 return __builtin_ia32_getmantsd_round (a, a, 0, 8);
8073 } "-O2 -mavx512f" ]
8076 # Return 1 if avx instructions can be compiled.
8078 proc check_effective_target_avx { } {
8079 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
8080 return 0
8082 return [check_no_compiler_messages avx object {
8083 void _mm256_zeroall (void)
8085 __builtin_ia32_vzeroall ();
8087 } "-O2 -mavx" ]
8090 # Return 1 if avx2 instructions can be compiled.
8091 proc check_effective_target_avx2 { } {
8092 return [check_no_compiler_messages avx2 object {
8093 typedef long long __v4di __attribute__ ((__vector_size__ (32)));
8094 __v4di
8095 mm256_is32_andnotsi256 (__v4di __X, __v4di __Y)
8097 return __builtin_ia32_andnotsi256 (__X, __Y);
8099 } "-O0 -mavx2" ]
8102 # Return 1 if sse instructions can be compiled.
8103 proc check_effective_target_sse { } {
8104 return [check_no_compiler_messages sse object {
8105 int main ()
8107 __builtin_ia32_stmxcsr ();
8108 return 0;
8110 } "-O2 -msse" ]
8113 # Return 1 if sse2 instructions can be compiled.
8114 proc check_effective_target_sse2 { } {
8115 return [check_no_compiler_messages sse2 object {
8116 typedef long long __m128i __attribute__ ((__vector_size__ (16)));
8118 __m128i _mm_srli_si128 (__m128i __A, int __N)
8120 return (__m128i)__builtin_ia32_psrldqi128 (__A, 8);
8122 } "-O2 -msse2" ]
8125 # Return 1 if sse4.1 instructions can be compiled.
8126 proc check_effective_target_sse4 { } {
8127 return [check_no_compiler_messages sse4.1 object {
8128 typedef long long __m128i __attribute__ ((__vector_size__ (16)));
8129 typedef int __v4si __attribute__ ((__vector_size__ (16)));
8131 __m128i _mm_mullo_epi32 (__m128i __X, __m128i __Y)
8133 return (__m128i) __builtin_ia32_pmulld128 ((__v4si)__X,
8134 (__v4si)__Y);
8136 } "-O2 -msse4.1" ]
8139 # Return 1 if F16C instructions can be compiled.
8141 proc check_effective_target_f16c { } {
8142 return [check_no_compiler_messages f16c object {
8143 #include "immintrin.h"
8144 float
8145 foo (unsigned short val)
8147 return _cvtsh_ss (val);
8149 } "-O2 -mf16c" ]
8152 # Return 1 if C wchar_t type is compatible with char16_t.
8154 proc check_effective_target_wchar_t_char16_t_compatible { } {
8155 return [check_no_compiler_messages wchar_t_char16_t object {
8156 __WCHAR_TYPE__ wc;
8157 __CHAR16_TYPE__ *p16 = &wc;
8158 char t[(((__CHAR16_TYPE__) -1) < 0 == ((__WCHAR_TYPE__) -1) < 0) ? 1 : -1];
8162 # Return 1 if C wchar_t type is compatible with char32_t.
8164 proc check_effective_target_wchar_t_char32_t_compatible { } {
8165 return [check_no_compiler_messages wchar_t_char32_t object {
8166 __WCHAR_TYPE__ wc;
8167 __CHAR32_TYPE__ *p32 = &wc;
8168 char t[(((__CHAR32_TYPE__) -1) < 0 == ((__WCHAR_TYPE__) -1) < 0) ? 1 : -1];
8172 # Return 1 if pow10 function exists.
8174 proc check_effective_target_pow10 { } {
8175 return [check_runtime pow10 {
8176 #include <math.h>
8177 int main () {
8178 double x;
8179 x = pow10 (1);
8180 return 0;
8182 } "-lm" ]
8185 # Return 1 if frexpl function exists.
8187 proc check_effective_target_frexpl { } {
8188 return [check_runtime frexpl {
8189 #include <math.h>
8190 int main () {
8191 long double x;
8192 int y;
8193 x = frexpl (5.0, &y);
8194 return 0;
8196 } "-lm" ]
8200 # Return 1 if issignaling function exists.
8201 proc check_effective_target_issignaling {} {
8202 return [check_runtime issignaling {
8203 #define _GNU_SOURCE
8204 #include <math.h>
8205 int main ()
8207 return issignaling (0.0);
8209 } "-lm" ]
8212 # Return 1 if current options generate DFP instructions, 0 otherwise.
8213 proc check_effective_target_hard_dfp {} {
8214 return [check_no_messages_and_pattern hard_dfp "!adddd3" assembly {
8215 typedef float d64 __attribute__((mode(DD)));
8216 d64 x, y, z;
8217 void foo (void) { z = x + y; }
8221 # Return 1 if string.h and wchar.h headers provide C++ requires overloads
8222 # for strchr etc. functions.
8224 proc check_effective_target_correct_iso_cpp_string_wchar_protos { } {
8225 return [check_no_compiler_messages correct_iso_cpp_string_wchar_protos assembly {
8226 #include <string.h>
8227 #include <wchar.h>
8228 #if !defined(__cplusplus) \
8229 || !defined(__CORRECT_ISO_CPP_STRING_H_PROTO) \
8230 || !defined(__CORRECT_ISO_CPP_WCHAR_H_PROTO)
8231 ISO C++ correct string.h and wchar.h protos not supported.
8232 #else
8233 int i;
8234 #endif
8238 # Return 1 if GNU as is used.
8240 proc check_effective_target_gas { } {
8241 global use_gas_saved
8242 global tool
8244 if {![info exists use_gas_saved]} {
8245 # Check if the as used by gcc is GNU as.
8246 set gcc_as [lindex [${tool}_target_compile "-print-prog-name=as" "" "none" ""] 0]
8247 # Provide /dev/null as input, otherwise gas times out reading from
8248 # stdin.
8249 set status [remote_exec host "$gcc_as" "-v /dev/null"]
8250 set as_output [lindex $status 1]
8251 if { [ string first "GNU" $as_output ] >= 0 } {
8252 set use_gas_saved 1
8253 } else {
8254 set use_gas_saved 0
8257 return $use_gas_saved
8260 # Return 1 if GNU ld is used.
8262 proc check_effective_target_gld { } {
8263 global use_gld_saved
8264 global tool
8266 if {![info exists use_gld_saved]} {
8267 # Check if the ld used by gcc is GNU ld.
8268 set gcc_ld [lindex [${tool}_target_compile "-print-prog-name=ld" "" "none" ""] 0]
8269 set status [remote_exec host "$gcc_ld" "--version"]
8270 set ld_output [lindex $status 1]
8271 if { [ string first "GNU" $ld_output ] >= 0 } {
8272 set use_gld_saved 1
8273 } else {
8274 set use_gld_saved 0
8277 return $use_gld_saved
8280 # Return 1 if the compiler has been configure with link-time optimization
8281 # (LTO) support.
8283 proc check_effective_target_lto { } {
8284 if { [istarget nvptx-*-*] } {
8285 return 0;
8287 return [check_no_compiler_messages lto object {
8288 void foo (void) { }
8289 } "-flto"]
8292 # Return 1 if -mx32 -maddress-mode=short can compile, 0 otherwise.
8294 proc check_effective_target_maybe_x32 { } {
8295 return [check_no_compiler_messages maybe_x32 object {
8296 void foo (void) {}
8297 } "-mx32 -maddress-mode=short"]
8300 # Return 1 if this target supports the -fsplit-stack option, 0
8301 # otherwise.
8303 proc check_effective_target_split_stack {} {
8304 return [check_no_compiler_messages split_stack object {
8305 void foo (void) { }
8306 } "-fsplit-stack"]
8309 # Return 1 if this target supports the -masm=intel option, 0
8310 # otherwise
8312 proc check_effective_target_masm_intel {} {
8313 return [check_no_compiler_messages masm_intel object {
8314 extern void abort (void);
8315 } "-masm=intel"]
8318 # Return 1 if the language for the compiler under test is C.
8320 proc check_effective_target_c { } {
8321 global tool
8322 if [string match $tool "gcc"] {
8323 return 1
8325 return 0
8328 # Return 1 if the language for the compiler under test is C++.
8330 proc check_effective_target_c++ { } {
8331 global tool
8332 if { [string match $tool "g++"] || [string match $tool "libstdc++"] } {
8333 return 1
8335 return 0
8338 set cxx_default "c++14"
8339 # Check whether the current active language standard supports the features
8340 # of C++11/C++14 by checking for the presence of one of the -std flags.
8341 # This assumes that the default for the compiler is $cxx_default, and that
8342 # there will never be multiple -std= arguments on the command line.
8343 proc check_effective_target_c++11_only { } {
8344 global cxx_default
8345 if ![check_effective_target_c++] {
8346 return 0
8348 if [check-flags { { } { } { -std=c++0x -std=gnu++0x -std=c++11 -std=gnu++11 } }] {
8349 return 1
8351 if { $cxx_default == "c++11" && [check-flags { { } { } { } { -std=* } }] } {
8352 return 1
8354 return 0
8356 proc check_effective_target_c++11 { } {
8357 if [check_effective_target_c++11_only] {
8358 return 1
8360 return [check_effective_target_c++14]
8362 proc check_effective_target_c++11_down { } {
8363 if ![check_effective_target_c++] {
8364 return 0
8366 return [expr ![check_effective_target_c++14] ]
8369 proc check_effective_target_c++14_only { } {
8370 global cxx_default
8371 if ![check_effective_target_c++] {
8372 return 0
8374 if [check-flags { { } { } { -std=c++14 -std=gnu++14 -std=c++14 -std=gnu++14 } }] {
8375 return 1
8377 if { $cxx_default == "c++14" && [check-flags { { } { } { } { -std=* } }] } {
8378 return 1
8380 return 0
8383 proc check_effective_target_c++14 { } {
8384 if [check_effective_target_c++14_only] {
8385 return 1
8387 return [check_effective_target_c++17]
8389 proc check_effective_target_c++14_down { } {
8390 if ![check_effective_target_c++] {
8391 return 0
8393 return [expr ![check_effective_target_c++17] ]
8396 proc check_effective_target_c++98_only { } {
8397 global cxx_default
8398 if ![check_effective_target_c++] {
8399 return 0
8401 if [check-flags { { } { } { -std=c++98 -std=gnu++98 -std=c++03 -std=gnu++03 } }] {
8402 return 1
8404 if { $cxx_default == "c++98" && [check-flags { { } { } { } { -std=* } }] } {
8405 return 1
8407 return 0
8410 proc check_effective_target_c++17_only { } {
8411 global cxx_default
8412 if ![check_effective_target_c++] {
8413 return 0
8415 if [check-flags { { } { } { -std=c++17 -std=gnu++17 -std=c++1z -std=gnu++1z } }] {
8416 return 1
8418 if { $cxx_default == "c++17" && [check-flags { { } { } { } { -std=* } }] } {
8419 return 1
8421 return 0
8424 proc check_effective_target_c++17 { } {
8425 if [check_effective_target_c++17_only] {
8426 return 1
8428 return [check_effective_target_c++2a]
8430 proc check_effective_target_c++17_down { } {
8431 if ![check_effective_target_c++] {
8432 return 0
8434 return [expr ![check_effective_target_c++2a] ]
8437 proc check_effective_target_c++2a_only { } {
8438 global cxx_default
8439 if ![check_effective_target_c++] {
8440 return 0
8442 if [check-flags { { } { } { -std=c++2a -std=gnu++2a } }] {
8443 return 1
8445 if { $cxx_default == "c++20" && [check-flags { { } { } { } { -std=* } }] } {
8446 return 1
8448 return 0
8450 proc check_effective_target_c++2a { } {
8451 return [check_effective_target_c++2a_only]
8454 # Check for C++ Concepts TS support, i.e. -fconcepts flag.
8455 proc check_effective_target_concepts { } {
8456 return [check-flags { "" { } { -fconcepts } }]
8459 # Return 1 if expensive testcases should be run.
8461 proc check_effective_target_run_expensive_tests { } {
8462 if { [getenv GCC_TEST_RUN_EXPENSIVE] != "" } {
8463 return 1
8465 return 0
8468 # Returns 1 if "mempcpy" is available on the target system.
8470 proc check_effective_target_mempcpy {} {
8471 return [check_function_available "mempcpy"]
8474 # Returns 1 if "stpcpy" is available on the target system.
8476 proc check_effective_target_stpcpy {} {
8477 return [check_function_available "stpcpy"]
8480 # Check whether the vectorizer tests are supported by the target and
8481 # append additional target-dependent compile flags to DEFAULT_VECTCFLAGS.
8482 # If a port wants to execute the tests more than once it should append
8483 # the supported target to EFFECTIVE_TARGETS instead, and the compile flags
8484 # will be added by a call to add_options_for_<target>.
8485 # Set dg-do-what-default to either compile or run, depending on target
8486 # capabilities. Do not set this if the supported target is appended to
8487 # EFFECTIVE_TARGETS. Flags and this variable will be set by et-dg-runtest
8488 # automatically. Return the number of effective targets if vectorizer tests
8489 # are supported, 0 otherwise.
8491 proc check_vect_support_and_set_flags { } {
8492 global DEFAULT_VECTCFLAGS
8493 global dg-do-what-default
8494 global EFFECTIVE_TARGETS
8496 if [istarget powerpc-*paired*] {
8497 lappend DEFAULT_VECTCFLAGS "-mpaired"
8498 if [check_750cl_hw_available] {
8499 set dg-do-what-default run
8500 } else {
8501 set dg-do-what-default compile
8503 } elseif [istarget powerpc*-*-*] {
8504 # Skip targets not supporting -maltivec.
8505 if ![is-effective-target powerpc_altivec_ok] {
8506 return 0
8509 lappend DEFAULT_VECTCFLAGS "-maltivec"
8510 if [check_p9vector_hw_available] {
8511 lappend DEFAULT_VECTCFLAGS "-mpower9-vector"
8512 } elseif [check_p8vector_hw_available] {
8513 lappend DEFAULT_VECTCFLAGS "-mpower8-vector"
8514 } elseif [check_vsx_hw_available] {
8515 lappend DEFAULT_VECTCFLAGS "-mvsx" "-mno-allow-movmisalign"
8518 if [check_vmx_hw_available] {
8519 set dg-do-what-default run
8520 } else {
8521 if [is-effective-target ilp32] {
8522 # Specify a cpu that supports VMX for compile-only tests.
8523 lappend DEFAULT_VECTCFLAGS "-mcpu=970"
8525 set dg-do-what-default compile
8527 } elseif { [istarget spu-*-*] } {
8528 set dg-do-what-default run
8529 } elseif { [istarget i?86-*-*] || [istarget x86_64-*-*] } {
8530 lappend DEFAULT_VECTCFLAGS "-msse2"
8531 if { [check_effective_target_sse2_runtime] } {
8532 set dg-do-what-default run
8533 } else {
8534 set dg-do-what-default compile
8536 } elseif { [istarget mips*-*-*]
8537 && [check_effective_target_nomips16] } {
8538 if { [check_effective_target_mpaired_single] } {
8539 lappend EFFECTIVE_TARGETS mpaired_single
8541 if { [check_effective_target_mips_loongson] } {
8542 lappend EFFECTIVE_TARGETS mips_loongson
8544 if { [check_effective_target_mips_msa] } {
8545 lappend EFFECTIVE_TARGETS mips_msa
8547 return [llength $EFFECTIVE_TARGETS]
8548 } elseif [istarget sparc*-*-*] {
8549 lappend DEFAULT_VECTCFLAGS "-mcpu=ultrasparc" "-mvis"
8550 if [check_effective_target_ultrasparc_hw] {
8551 set dg-do-what-default run
8552 } else {
8553 set dg-do-what-default compile
8555 } elseif [istarget alpha*-*-*] {
8556 # Alpha's vectorization capabilities are extremely limited.
8557 # It's more effort than its worth disabling all of the tests
8558 # that it cannot pass. But if you actually want to see what
8559 # does work, command out the return.
8560 return 0
8562 lappend DEFAULT_VECTCFLAGS "-mmax"
8563 if [check_alpha_max_hw_available] {
8564 set dg-do-what-default run
8565 } else {
8566 set dg-do-what-default compile
8568 } elseif [istarget ia64-*-*] {
8569 set dg-do-what-default run
8570 } elseif [is-effective-target arm_neon_ok] {
8571 eval lappend DEFAULT_VECTCFLAGS [add_options_for_arm_neon ""]
8572 # NEON does not support denormals, so is not used for vectorization by
8573 # default to avoid loss of precision. We must pass -ffast-math to test
8574 # vectorization of float operations.
8575 lappend DEFAULT_VECTCFLAGS "-ffast-math"
8576 if [is-effective-target arm_neon_hw] {
8577 set dg-do-what-default run
8578 } else {
8579 set dg-do-what-default compile
8581 } elseif [istarget "aarch64*-*-*"] {
8582 set dg-do-what-default run
8583 } elseif [istarget s390*-*-*] {
8584 # The S/390 backend set a default of 2 for that value.
8585 # Override it to have the same situation as with other
8586 # targets.
8587 lappend DEFAULT_VECTCFLAGS "--param" "min-vect-loop-bound=1"
8588 lappend DEFAULT_VECTCFLAGS "--param" "max-unrolled-insns=200"
8589 lappend DEFAULT_VECTCFLAGS "--param" "max-unroll-times=8"
8590 lappend DEFAULT_VECTCFLAGS "--param" "max-completely-peeled-insns=200"
8591 lappend DEFAULT_VECTCFLAGS "--param" "max-completely-peel-times=16"
8592 if [check_effective_target_s390_vxe] {
8593 lappend DEFAULT_VECTCFLAGS "-march=z14" "-mzarch"
8594 set dg-do-what-default run
8595 } elseif [check_effective_target_s390_vx] {
8596 lappend DEFAULT_VECTCFLAGS "-march=z13" "-mzarch"
8597 set dg-do-what-default run
8598 } else {
8599 lappend DEFAULT_VECTCFLAGS "-march=z14" "-mzarch"
8600 set dg-do-what-default compile
8602 } else {
8603 return 0
8606 return 1
8609 # Return 1 if the target does *not* require strict alignment.
8611 proc check_effective_target_non_strict_align {} {
8613 # On ARM, the default is to use STRICT_ALIGNMENT, but there
8614 # are interfaces defined for misaligned access and thus
8615 # depending on the architecture levels unaligned access is
8616 # available.
8617 if [istarget "arm*-*-*"] {
8618 return [check_effective_target_arm_unaligned]
8621 return [check_no_compiler_messages non_strict_align assembly {
8622 char *y;
8623 typedef char __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))) c;
8624 c *z;
8625 void foo(void) { z = (c *) y; }
8626 } "-Wcast-align"]
8629 # Return 1 if the target has <ucontext.h>.
8631 proc check_effective_target_ucontext_h { } {
8632 return [check_no_compiler_messages ucontext_h assembly {
8633 #include <ucontext.h>
8637 proc check_effective_target_aarch64_tiny { } {
8638 if { [istarget aarch64*-*-*] } {
8639 return [check_no_compiler_messages aarch64_tiny object {
8640 #ifdef __AARCH64_CMODEL_TINY__
8641 int dummy;
8642 #else
8643 #error target not AArch64 tiny code model
8644 #endif
8646 } else {
8647 return 0
8651 # Create functions to check that the AArch64 assembler supports the
8652 # various architecture extensions via the .arch_extension pseudo-op.
8654 foreach { aarch64_ext } { "fp" "simd" "crypto" "crc" "lse" "dotprod" "sve"} {
8655 eval [string map [list FUNC $aarch64_ext] {
8656 proc check_effective_target_aarch64_asm_FUNC_ok { } {
8657 if { [istarget aarch64*-*-*] } {
8658 return [check_no_compiler_messages aarch64_FUNC_assembler object {
8659 __asm__ (".arch_extension FUNC");
8660 } "-march=armv8-a+FUNC"]
8661 } else {
8662 return 0
8668 proc check_effective_target_aarch64_small { } {
8669 if { [istarget aarch64*-*-*] } {
8670 return [check_no_compiler_messages aarch64_small object {
8671 #ifdef __AARCH64_CMODEL_SMALL__
8672 int dummy;
8673 #else
8674 #error target not AArch64 small code model
8675 #endif
8677 } else {
8678 return 0
8682 proc check_effective_target_aarch64_large { } {
8683 if { [istarget aarch64*-*-*] } {
8684 return [check_no_compiler_messages aarch64_large object {
8685 #ifdef __AARCH64_CMODEL_LARGE__
8686 int dummy;
8687 #else
8688 #error target not AArch64 large code model
8689 #endif
8691 } else {
8692 return 0
8697 # Return 1 if this is a reduced AVR Tiny core. Such cores have different
8698 # register set, instruction set, addressing capabilities and ABI.
8700 proc check_effective_target_avr_tiny { } {
8701 if { [istarget avr*-*-*] } {
8702 return [check_no_compiler_messages avr_tiny object {
8703 #ifdef __AVR_TINY__
8704 int dummy;
8705 #else
8706 #error target not a reduced AVR Tiny core
8707 #endif
8709 } else {
8710 return 0
8714 # Return 1 if <fenv.h> is available with all the standard IEEE
8715 # exceptions and floating-point exceptions are raised by arithmetic
8716 # operations. (If the target requires special options for "inexact"
8717 # exceptions, those need to be specified in the testcases.)
8719 proc check_effective_target_fenv_exceptions {} {
8720 return [check_runtime fenv_exceptions {
8721 #include <fenv.h>
8722 #include <stdlib.h>
8723 #ifndef FE_DIVBYZERO
8724 # error Missing FE_DIVBYZERO
8725 #endif
8726 #ifndef FE_INEXACT
8727 # error Missing FE_INEXACT
8728 #endif
8729 #ifndef FE_INVALID
8730 # error Missing FE_INVALID
8731 #endif
8732 #ifndef FE_OVERFLOW
8733 # error Missing FE_OVERFLOW
8734 #endif
8735 #ifndef FE_UNDERFLOW
8736 # error Missing FE_UNDERFLOW
8737 #endif
8738 volatile float a = 0.0f, r;
8740 main (void)
8742 r = a / a;
8743 if (fetestexcept (FE_INVALID))
8744 exit (0);
8745 else
8746 abort ();
8748 } [add_options_for_ieee "-std=gnu99"]]
8751 proc check_effective_target_tiny {} {
8752 global et_target_tiny_saved
8754 if [info exists et_target_tiny_saved] {
8755 verbose "check_effective_target_tiny: using cached result" 2
8756 } else {
8757 set et_target_tiny_saved 0
8758 if { [istarget aarch64*-*-*]
8759 && [check_effective_target_aarch64_tiny] } {
8760 set et_target_tiny_saved 1
8762 if { [istarget avr-*-*]
8763 && [check_effective_target_avr_tiny] } {
8764 set et_target_tiny_saved 1
8768 return $et_target_tiny_saved
8771 # Return 1 if LOGICAL_OP_NON_SHORT_CIRCUIT is set to 0 for the current target.
8773 proc check_effective_target_logical_op_short_circuit {} {
8774 if { [istarget mips*-*-*]
8775 || [istarget arc*-*-*]
8776 || [istarget avr*-*-*]
8777 || [istarget crisv32-*-*] || [istarget cris-*-*]
8778 || [istarget mmix-*-*]
8779 || [istarget s390*-*-*]
8780 || [istarget powerpc*-*-*]
8781 || [istarget nios2*-*-*]
8782 || [istarget riscv*-*-*]
8783 || [istarget visium-*-*]
8784 || [check_effective_target_arm_cortex_m] } {
8785 return 1
8787 return 0
8790 # Return 1 if the target supports -mbranch-cost=N option.
8792 proc check_effective_target_branch_cost {} {
8793 if { [ istarget arm*-*-*]
8794 || [istarget avr*-*-*]
8795 || [istarget epiphany*-*-*]
8796 || [istarget frv*-*-*]
8797 || [istarget i?86-*-*] || [istarget x86_64-*-*]
8798 || [istarget mips*-*-*]
8799 || [istarget s390*-*-*]
8800 || [istarget riscv*-*-*]
8801 || [istarget sh*-*-*]
8802 || [istarget spu*-*-*] } {
8803 return 1
8805 return 0
8808 # Record that dg-final test TEST requires convential compilation.
8810 proc force_conventional_output_for { test } {
8811 if { [info proc $test] == "" } {
8812 perror "$test does not exist"
8813 exit 1
8815 proc ${test}_required_options {} {
8816 global gcc_force_conventional_output
8817 return $gcc_force_conventional_output
8821 # Return 1 if the x86-64 target supports PIE with copy reloc, 0
8822 # otherwise. Cache the result.
8824 proc check_effective_target_pie_copyreloc { } {
8825 global pie_copyreloc_available_saved
8826 global tool
8827 global GCC_UNDER_TEST
8829 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
8830 return 0
8833 # Need auto-host.h to check linker support.
8834 if { ![file exists ../../auto-host.h ] } {
8835 return 0
8838 if [info exists pie_copyreloc_available_saved] {
8839 verbose "check_effective_target_pie_copyreloc returning saved $pie_copyreloc_available_saved" 2
8840 } else {
8841 # Set up and compile to see if linker supports PIE with copy
8842 # reloc. Include the current process ID in the file names to
8843 # prevent conflicts with invocations for multiple testsuites.
8845 set src pie[pid].c
8846 set obj pie[pid].o
8848 set f [open $src "w"]
8849 puts $f "#include \"../../auto-host.h\""
8850 puts $f "#if HAVE_LD_PIE_COPYRELOC == 0"
8851 puts $f "# error Linker does not support PIE with copy reloc."
8852 puts $f "#endif"
8853 close $f
8855 verbose "check_effective_target_pie_copyreloc 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_pie_copyreloc testfile compilation passed" 2
8863 set pie_copyreloc_available_saved 1
8864 } else {
8865 verbose "check_effective_target_pie_copyreloc testfile compilation failed" 2
8866 set pie_copyreloc_available_saved 0
8870 return $pie_copyreloc_available_saved
8873 # Return 1 if the x86 target supports R_386_GOT32X relocation, 0
8874 # otherwise. Cache the result.
8876 proc check_effective_target_got32x_reloc { } {
8877 global got32x_reloc_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 got32x_reloc_available_saved] {
8891 verbose "check_effective_target_got32x_reloc returning saved $got32x_reloc_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 got32x[pid].c
8897 set obj got32x[pid].o
8899 set f [open $src "w"]
8900 puts $f "#include \"../../auto-host.h\""
8901 puts $f "#if HAVE_AS_IX86_GOT32X == 0"
8902 puts $f "# error Assembler does not support R_386_GOT32X."
8903 puts $f "#endif"
8904 close $f
8906 verbose "check_effective_target_got32x_reloc 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_got32x_reloc testfile compilation passed" 2
8914 set got32x_reloc_available_saved 1
8915 } else {
8916 verbose "check_effective_target_got32x_reloc testfile compilation failed" 2
8917 set got32x_reloc_available_saved 0
8921 return $got32x_reloc_available_saved
8924 # Return 1 if the x86 target supports calling ___tls_get_addr via GOT,
8925 # 0 otherwise. Cache the result.
8927 proc check_effective_target_tls_get_addr_via_got { } {
8928 global tls_get_addr_via_got_available_saved
8929 global tool
8930 global GCC_UNDER_TEST
8932 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
8933 return 0
8936 # Need auto-host.h to check linker support.
8937 if { ![file exists ../../auto-host.h ] } {
8938 return 0
8941 if [info exists tls_get_addr_via_got_available_saved] {
8942 verbose "check_effective_target_tls_get_addr_via_got returning saved $tls_get_addr_via_got_available_saved" 2
8943 } else {
8944 # Include the current process ID in the file names to prevent
8945 # conflicts with invocations for multiple testsuites.
8947 set src tls_get_addr_via_got[pid].c
8948 set obj tls_get_addr_via_got[pid].o
8950 set f [open $src "w"]
8951 puts $f "#include \"../../auto-host.h\""
8952 puts $f "#if HAVE_AS_IX86_TLS_GET_ADDR_GOT == 0"
8953 puts $f "# error Assembler/linker do not support calling ___tls_get_addr via GOT."
8954 puts $f "#endif"
8955 close $f
8957 verbose "check_effective_target_tls_get_addr_via_got compiling testfile $src" 2
8958 set lines [${tool}_target_compile $src $obj object ""]
8960 file delete $src
8961 file delete $obj
8963 if [string match "" $lines] then {
8964 verbose "check_effective_target_tls_get_addr_via_got testfile compilation passed" 2
8965 set tls_get_addr_via_got_available_saved 1
8966 } else {
8967 verbose "check_effective_target_tls_get_addr_via_got testfile compilation failed" 2
8968 set tls_get_addr_via_got_available_saved 0
8972 return $tls_get_addr_via_got_available_saved
8975 # Return 1 if the target uses comdat groups.
8977 proc check_effective_target_comdat_group {} {
8978 return [check_no_messages_and_pattern comdat_group "\.section\[^\n\r]*,comdat|\.group\[^\n\r]*,#comdat" assembly {
8979 // C++
8980 inline int foo () { return 1; }
8981 int (*fn) () = foo;
8985 # Return 1 if target supports __builtin_eh_return
8986 proc check_effective_target_builtin_eh_return { } {
8987 return [check_no_compiler_messages builtin_eh_return object {
8988 void test (long l, void *p)
8990 __builtin_eh_return (l, p);
8992 } "" ]
8995 # Return 1 if the target supports max reduction for vectors.
8997 proc check_effective_target_vect_max_reduc { } {
8998 if { [istarget aarch64*-*-*] || [is-effective-target arm_neon] } {
8999 return 1
9001 return 0
9004 # Return 1 if there is an nvptx offload compiler.
9006 proc check_effective_target_offload_nvptx { } {
9007 return [check_no_compiler_messages offload_nvptx object {
9008 int main () {return 0;}
9009 } "-foffload=nvptx-none" ]
9012 # Return 1 if the compiler has been configured with hsa offloading.
9014 proc check_effective_target_offload_hsa { } {
9015 return [check_no_compiler_messages offload_hsa assembly {
9016 int main () {return 0;}
9017 } "-foffload=hsa" ]
9020 # Return 1 if the target support -fprofile-update=atomic
9021 proc check_effective_target_profile_update_atomic {} {
9022 return [check_no_compiler_messages profile_update_atomic assembly {
9023 int main (void) { return 0; }
9024 } "-fprofile-update=atomic -fprofile-generate"]
9027 # Return 1 if vector (va - vector add) instructions are understood by
9028 # the assembler and can be executed. This also covers checking for
9029 # the VX kernel feature. A kernel without that feature does not
9030 # enable the vector facility and the following check will die with a
9031 # signal.
9032 proc check_effective_target_s390_vx { } {
9033 if ![istarget s390*-*-*] then {
9034 return 0;
9037 return [check_runtime s390_check_vx {
9038 int main (void)
9040 asm ("va %%v24, %%v26, %%v28, 3" : : : "v24", "v26", "v28");
9041 return 0;
9043 } "-march=z13 -mzarch" ]
9046 # Same as above but for the z14 vector enhancement facility. Test
9047 # is performed with the vector nand instruction.
9048 proc check_effective_target_s390_vxe { } {
9049 if ![istarget s390*-*-*] then {
9050 return 0;
9053 return [check_runtime s390_check_vxe {
9054 int main (void)
9056 asm ("vnn %%v24, %%v26, %%v28" : : : "v24", "v26", "v28");
9057 return 0;
9059 } "-march=z14 -mzarch" ]
9062 #For versions of ARM architectures that have hardware div insn,
9063 #disable the divmod transform
9065 proc check_effective_target_arm_divmod_simode { } {
9066 return [check_no_compiler_messages arm_divmod assembly {
9067 #ifdef __ARM_ARCH_EXT_IDIV__
9068 #error has div insn
9069 #endif
9070 int i;
9074 # Return 1 if target supports divmod hardware insn or divmod libcall.
9076 proc check_effective_target_divmod { } {
9077 #TODO: Add checks for all targets that have either hardware divmod insn
9078 # or define libfunc for divmod.
9079 if { [istarget arm*-*-*]
9080 || [istarget i?86-*-*] || [istarget x86_64-*-*] } {
9081 return 1
9083 return 0
9086 # Return 1 if target supports divmod for SImode. The reason for
9087 # separating this from check_effective_target_divmod is that
9088 # some versions of ARM architecture define div instruction
9089 # only for simode, and for these archs, we do not want to enable
9090 # divmod transform for simode.
9092 proc check_effective_target_divmod_simode { } {
9093 if { [istarget arm*-*-*] } {
9094 return [check_effective_target_arm_divmod_simode]
9097 return [check_effective_target_divmod]
9100 # Return 1 if store merging optimization is applicable for target.
9101 # Store merging is not profitable for targets like the avr which
9102 # can load/store only one byte at a time. Use int size as a proxy
9103 # for the number of bytes the target can write, and skip for targets
9104 # with a smallish (< 32) size.
9106 proc check_effective_target_store_merge { } {
9107 if { [is-effective-target non_strict_align ] && [is-effective-target int32plus] } {
9108 return 1
9111 return 0
9114 # Return 1 if we're able to assemble rdrand
9116 proc check_effective_target_rdrand { } {
9117 return [check_no_compiler_messages_nocache rdrand object {
9118 unsigned int
9119 __foo(void)
9121 unsigned int val;
9122 __builtin_ia32_rdrand32_step(&val);
9123 return val;
9125 } "-mrdrnd" ]
9128 # Return 1 if the target supports coprocessor instructions: cdp, ldc, ldcl,
9129 # stc, stcl, mcr and mrc.
9130 proc check_effective_target_arm_coproc1_ok_nocache { } {
9131 if { ![istarget arm*-*-*] } {
9132 return 0
9134 return [check_no_compiler_messages_nocache arm_coproc1_ok assembly {
9135 #if (__thumb__ && !__thumb2__) || __ARM_ARCH < 4
9136 #error FOO
9137 #endif
9141 proc check_effective_target_arm_coproc1_ok { } {
9142 return [check_cached_effective_target arm_coproc1_ok \
9143 check_effective_target_arm_coproc1_ok_nocache]
9146 # Return 1 if the target supports all coprocessor instructions checked by
9147 # check_effective_target_arm_coproc1_ok in addition to the following: cdp2,
9148 # ldc2, ldc2l, stc2, stc2l, mcr2 and mrc2.
9149 proc check_effective_target_arm_coproc2_ok_nocache { } {
9150 if { ![check_effective_target_arm_coproc1_ok] } {
9151 return 0
9153 return [check_no_compiler_messages_nocache arm_coproc2_ok assembly {
9154 #if (__thumb__ && !__thumb2__) || __ARM_ARCH < 5
9155 #error FOO
9156 #endif
9160 proc check_effective_target_arm_coproc2_ok { } {
9161 return [check_cached_effective_target arm_coproc2_ok \
9162 check_effective_target_arm_coproc2_ok_nocache]
9165 # Return 1 if the target supports all coprocessor instructions checked by
9166 # check_effective_target_arm_coproc2_ok in addition the following: mcrr and
9167 # mrrc.
9168 proc check_effective_target_arm_coproc3_ok_nocache { } {
9169 if { ![check_effective_target_arm_coproc2_ok] } {
9170 return 0
9172 return [check_no_compiler_messages_nocache arm_coproc3_ok assembly {
9173 #if (__thumb__ && !__thumb2__) \
9174 || (__ARM_ARCH < 6 && !defined (__ARM_ARCH_5TE__))
9175 #error FOO
9176 #endif
9180 proc check_effective_target_arm_coproc3_ok { } {
9181 return [check_cached_effective_target arm_coproc3_ok \
9182 check_effective_target_arm_coproc3_ok_nocache]
9185 # Return 1 if the target supports all coprocessor instructions checked by
9186 # check_effective_target_arm_coproc3_ok in addition the following: mcrr2 and
9187 # mrcc2.
9188 proc check_effective_target_arm_coproc4_ok_nocache { } {
9189 if { ![check_effective_target_arm_coproc3_ok] } {
9190 return 0
9192 return [check_no_compiler_messages_nocache arm_coproc4_ok assembly {
9193 #if (__thumb__ && !__thumb2__) || __ARM_ARCH < 6
9194 #error FOO
9195 #endif
9199 proc check_effective_target_arm_coproc4_ok { } {
9200 return [check_cached_effective_target arm_coproc4_ok \
9201 check_effective_target_arm_coproc4_ok_nocache]
9204 # Return 1 if the target supports the auto_inc_dec optimization pass.
9205 proc check_effective_target_autoincdec { } {
9206 if { ![check_no_compiler_messages auto_incdec assembly { void f () { }
9207 } "-O2 -fdump-rtl-auto_inc_dec" ] } {
9208 return 0
9211 set dumpfile [glob -nocomplain "auto_incdec[pid].c.\[0-9\]\[0-9\]\[0-9\]r.auto_inc_dec"]
9212 if { [file exists $dumpfile ] } {
9213 file delete $dumpfile
9214 return 1
9216 return 0
9219 # Return 1 if the target has support for stack probing designed
9220 # to avoid stack-clash style attacks.
9222 # This is used to restrict the stack-clash mitigation tests to
9223 # just those targets that have been explicitly supported.
9225 # In addition to the prologue work on those targets, each target's
9226 # properties should be described in the functions below so that
9227 # tests do not become a mess of unreadable target conditions.
9229 proc check_effective_target_supports_stack_clash_protection { } {
9231 # Temporary until the target bits are fully ACK'd.
9232 # if { [istarget aarch*-*-*] } {
9233 # return 1
9236 if { [istarget x86_64-*-*] || [istarget i?86-*-*]
9237 || [istarget powerpc*-*-*] || [istarget rs6000*-*-*]
9238 || [istarget s390*-*-*] } {
9239 return 1
9241 return 0
9244 # Return 1 if the target creates a frame pointer for non-leaf functions
9245 # Note we ignore cases where we apply tail call optimization here.
9246 proc check_effective_target_frame_pointer_for_non_leaf { } {
9247 if { [istarget aarch*-*-*] } {
9248 return 1
9251 # Solaris/x86 defaults to -fno-omit-frame-pointer.
9252 if { [istarget i?86-*-solaris*] || [istarget x86_64-*-solaris*] } {
9253 return 1
9256 return 0
9259 # Return 1 if the target's calling sequence or its ABI
9260 # create implicit stack probes at or prior to function entry.
9261 proc check_effective_target_caller_implicit_probes { } {
9263 # On x86/x86_64 the call instruction itself pushes the return
9264 # address onto the stack. That is an implicit probe of *sp.
9265 if { [istarget x86_64-*-*] || [istarget i?86-*-*] } {
9266 return 1
9269 # On PPC, the ABI mandates that the address of the outer
9270 # frame be stored at *sp. Thus each allocation of stack
9271 # space is itself an implicit probe of *sp.
9272 if { [istarget powerpc*-*-*] || [istarget rs6000*-*-*] } {
9273 return 1
9276 # s390's ABI has a register save area allocated by the
9277 # caller for use by the callee. The mere existence does
9278 # not constitute a probe by the caller, but when the slots
9279 # used by the callee those stores are implicit probes.
9280 if { [istarget s390*-*-*] } {
9281 return 1
9284 # Not strictly true on aarch64, but we have agreed that we will
9285 # consider any function that pushes SP more than 3kbytes into
9286 # the guard page as broken. This essentially means that we can
9287 # consider the aarch64 as having a caller implicit probe at
9288 # *(sp + 1k).
9289 if { [istarget aarch64*-*-*] } {
9290 return 1;
9293 return 0
9296 # Targets that potentially realign the stack pointer often cause residual
9297 # stack allocations and make it difficult to elimination loops or residual
9298 # allocations for dynamic stack allocations
9299 proc check_effective_target_callee_realigns_stack { } {
9300 if { [istarget x86_64-*-*] || [istarget i?86-*-*] } {
9301 return 1
9303 return 0
9306 # Return 1 if CET instructions can be compiled.
9307 proc check_effective_target_cet { } {
9308 if { !([istarget i?86-*-*] || [istarget x86_64-*-*]) } {
9309 return 0
9311 return [check_no_compiler_messages cet object {
9312 void foo (void)
9314 asm ("setssbsy");
9316 } "-O2" ]