1 # Copyright (C) 1999, 2001, 2003, 2004, 2005, 2006, 2007, 2008
2 # Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with GCC; see the file COPYING3. If not see
16 # <http://www.gnu.org/licenses/>.
18 # Please email any bugs, comments, and/or additions to this file to:
19 # gcc-patches@gcc.gnu.org
21 # This file defines procs for determining features supported by the target.
23 # Try to compile the code given by CONTENTS into an output file of
24 # type TYPE, where TYPE is as for target_compile. Return a list
25 # whose first element contains the compiler messages and whose
26 # second element is the name of the output file.
28 # BASENAME is a prefix to use for source and output files.
29 # If ARGS is not empty, its first element is a string that
30 # should be added to the command line.
32 # Assume by default that CONTENTS is C code. C++ code should contain
33 # "// C++" and Fortran code should contain "! Fortran".
34 proc check_compile {basename type contents args} {
37 if { [llength $args] > 0 } {
38 set options [list "additional_flags=[lindex $args 0]"]
42 switch -glob -- $contents {
43 "*! Fortran*" { set src ${basename}[pid].f90 }
44 "*// C++*" { set src ${basename}[pid].cc }
45 default { set src ${basename}[pid].c }
47 set compile_type $type
49 assembly { set output ${basename}[pid].s }
50 object { set output ${basename}[pid].o }
51 executable { set output ${basename}[pid].exe }
53 set output ${basename}[pid].s
54 lappend options "additional_flags=-fdump-$type"
55 set compile_type assembly
61 set lines [${tool}_target_compile $src $output $compile_type "$options"]
64 set scan_output $output
65 # Don't try folding this into the switch above; calling "glob" before the
66 # file is created won't work.
67 if [regexp "rtl-(.*)" $type dummy rtl_type] {
68 set scan_output "[glob $src.\[0-9\]\[0-9\]\[0-9\]r.$rtl_type]"
72 return [list $lines $scan_output]
75 proc current_target_name { } {
77 if [info exists target_info(target,name)] {
78 set answer $target_info(target,name)
85 # Implement an effective-target check for property PROP by invoking
86 # the Tcl command ARGS and seeing if it returns true.
88 proc check_cached_effective_target { prop args } {
91 set target [current_target_name]
92 if {![info exists et_cache($prop,target)]
93 || $et_cache($prop,target) != $target} {
94 verbose "check_cached_effective_target $prop: checking $target" 2
95 set et_cache($prop,target) $target
96 set et_cache($prop,value) [uplevel eval $args]
98 set value $et_cache($prop,value)
99 verbose "check_cached_effective_target $prop: returning $value for $target" 2
103 # Like check_compile, but delete the output file and return true if the
104 # compiler printed no messages.
105 proc check_no_compiler_messages_nocache {args} {
106 set result [eval check_compile $args]
107 set lines [lindex $result 0]
108 set output [lindex $result 1]
109 remote_file build delete $output
110 return [string match "" $lines]
113 # Like check_no_compiler_messages_nocache, but cache the result.
114 # PROP is the property we're checking, and doubles as a prefix for
115 # temporary filenames.
116 proc check_no_compiler_messages {prop args} {
117 return [check_cached_effective_target $prop {
118 eval [list check_no_compiler_messages_nocache $prop] $args
122 # Like check_compile, but return true if the compiler printed no
123 # messages and if the contents of the output file satisfy PATTERN.
124 # If PATTERN has the form "!REGEXP", the contents satisfy it if they
125 # don't match regular expression REGEXP, otherwise they satisfy it
126 # if they do match regular expression PATTERN. (PATTERN can start
127 # with something like "[!]" if the regular expression needs to match
128 # "!" as the first character.)
130 # Delete the output file before returning. The other arguments are
131 # as for check_compile.
132 proc check_no_messages_and_pattern_nocache {basename pattern args} {
135 set result [eval [list check_compile $basename] $args]
136 set lines [lindex $result 0]
137 set output [lindex $result 1]
140 if { [string match "" $lines] } {
141 set chan [open "$output"]
142 set invert [regexp {^!(.*)} $pattern dummy pattern]
143 set ok [expr { [regexp $pattern [read $chan]] != $invert }]
147 remote_file build delete $output
151 # Like check_no_messages_and_pattern_nocache, but cache the result.
152 # PROP is the property we're checking, and doubles as a prefix for
153 # temporary filenames.
154 proc check_no_messages_and_pattern {prop pattern args} {
155 return [check_cached_effective_target $prop {
156 eval [list check_no_messages_and_pattern_nocache $prop $pattern] $args
160 # Try to compile and run an executable from code CONTENTS. Return true
161 # if the compiler reports no messages and if execution "passes" in the
162 # usual DejaGNU sense. The arguments are as for check_compile, with
163 # TYPE implicitly being "executable".
164 proc check_runtime_nocache {basename contents args} {
167 set result [eval [list check_compile $basename executable $contents] $args]
168 set lines [lindex $result 0]
169 set output [lindex $result 1]
172 if { [string match "" $lines] } {
173 # No error messages, everything is OK.
174 set result [remote_load target "./$output" "" ""]
175 set status [lindex $result 0]
176 verbose "check_runtime_nocache $basename: status is <$status>" 2
177 if { $status == "pass" } {
181 remote_file build delete $output
185 # Like check_runtime_nocache, but cache the result. PROP is the
186 # property we're checking, and doubles as a prefix for temporary
188 proc check_runtime {prop args} {
191 return [check_cached_effective_target $prop {
192 eval [list check_runtime_nocache $prop] $args
196 ###############################
197 # proc check_weak_available { }
198 ###############################
200 # weak symbols are only supported in some configs/object formats
201 # this proc returns 1 if they're supported, 0 if they're not, or -1 if unsure
203 proc check_weak_available { } {
204 global target_triplet
207 # All mips targets should support it
209 if { [ string first "mips" $target_cpu ] >= 0 } {
213 # All solaris2 targets should support it
215 if { [regexp ".*-solaris2.*" $target_triplet] } {
219 # DEC OSF/1/Digital UNIX/Tru64 UNIX supports it
221 if { [regexp "alpha.*osf.*" $target_triplet] } {
225 # Windows targets Cygwin and MingW32 support it
227 if { [regexp ".*mingw32|.*cygwin" $target_triplet] } {
231 # HP-UX 10.X doesn't support it
233 if { [istarget "hppa*-*-hpux10*"] } {
237 # ELF and ECOFF support it. a.out does with gas/gld but may also with
238 # other linkers, so we should try it
240 set objformat [gcc_target_object_format]
248 unknown { return -1 }
253 ###############################
254 # proc check_weak_override_available { }
255 ###############################
257 # Like check_weak_available, but return 0 if weak symbol definitions
258 # cannot be overridden.
260 proc check_weak_override_available { } {
261 if { [istarget "*-*-mingw*"] } {
264 return [check_weak_available]
267 ###############################
268 # proc check_visibility_available { what_kind }
269 ###############################
271 # The visibility attribute is only support in some object formats
272 # This proc returns 1 if it is supported, 0 if not.
273 # The argument is the kind of visibility, default/protected/hidden/internal.
275 proc check_visibility_available { what_kind } {
277 global target_triplet
279 # On NetWare, support makes no sense.
280 if { [istarget *-*-netware*] } {
284 if [string match "" $what_kind] { set what_kind "hidden" }
286 return [check_no_compiler_messages visibility_available_$what_kind object "
287 void f() __attribute__((visibility(\"$what_kind\")));
292 ###############################
293 # proc check_alias_available { }
294 ###############################
296 # Determine if the target toolchain supports the alias attribute.
298 # Returns 2 if the target supports aliases. Returns 1 if the target
299 # only supports weak aliased. Returns 0 if the target does not
300 # support aliases at all. Returns -1 if support for aliases could not
303 proc check_alias_available { } {
304 global alias_available_saved
307 if [info exists alias_available_saved] {
308 verbose "check_alias_available returning saved $alias_available_saved" 2
312 verbose "check_alias_available compiling testfile $src" 2
313 set f [open $src "w"]
314 # Compile a small test program. The definition of "g" is
315 # necessary to keep the Solaris assembler from complaining
317 puts $f "#ifdef __cplusplus\nextern \"C\"\n#endif\n"
318 puts $f "void g() {} void f() __attribute__((alias(\"g\")));"
320 set lines [${tool}_target_compile $src $obj object ""]
322 remote_file build delete $obj
324 if [string match "" $lines] then {
325 # No error messages, everything is OK.
326 set alias_available_saved 2
328 if [regexp "alias definitions not supported" $lines] {
329 verbose "check_alias_available target does not support aliases" 2
331 set objformat [gcc_target_object_format]
333 if { $objformat == "elf" } {
334 verbose "check_alias_available but target uses ELF format, so it ought to" 2
335 set alias_available_saved -1
337 set alias_available_saved 0
340 if [regexp "only weak aliases are supported" $lines] {
341 verbose "check_alias_available target supports only weak aliases" 2
342 set alias_available_saved 1
344 set alias_available_saved -1
349 verbose "check_alias_available returning $alias_available_saved" 2
352 return $alias_available_saved
355 # Returns true if --gc-sections is supported on the target.
357 proc check_gc_sections_available { } {
358 global gc_sections_available_saved
361 if {![info exists gc_sections_available_saved]} {
362 # Some targets don't support gc-sections despite whatever's
363 # advertised by ld's options.
364 if { [istarget alpha*-*-*]
365 || [istarget ia64-*-*] } {
366 set gc_sections_available_saved 0
370 # elf2flt uses -q (--emit-relocs), which is incompatible with
372 if { [board_info target exists ldflags]
373 && [regexp " -elf2flt\[ =\]" " [board_info target ldflags] "] } {
374 set gc_sections_available_saved 0
378 # VxWorks kernel modules are relocatable objects linked with -r,
379 # while RTP executables are linked with -q (--emit-relocs).
380 # Both of these options are incompatible with --gc-sections.
381 if { [istarget *-*-vxworks*] } {
382 set gc_sections_available_saved 0
386 # Check if the ld used by gcc supports --gc-sections.
387 set gcc_spec [${tool}_target_compile "-dumpspecs" "" "none" ""]
388 regsub ".*\n\*linker:\[ \t\]*\n(\[^ \t\n\]*).*" "$gcc_spec" {\1} linker
389 set gcc_ld [lindex [${tool}_target_compile "-print-prog-name=$linker" "" "none" ""] 0]
390 set ld_output [remote_exec host "$gcc_ld" "--help"]
391 if { [ string first "--gc-sections" $ld_output ] >= 0 } {
392 set gc_sections_available_saved 1
394 set gc_sections_available_saved 0
397 return $gc_sections_available_saved
400 # Return 1 if according to target_info struct and explicit target list
401 # target is supposed to support trampolines.
403 proc check_effective_target_trampolines { } {
404 if [target_info exists no_trampolines] {
407 if { [istarget avr-*-*]
408 || [istarget hppa2.0w-hp-hpux11.23]
409 || [istarget hppa64-hp-hpux11.23] } {
415 # Return 1 if according to target_info struct and explicit target list
416 # target is supposed to keep null pointer checks. This could be due to
417 # use of option fno-delete-null-pointer-checks or hardwired in target.
419 proc check_effective_target_keeps_null_pointer_checks { } {
420 if [target_info exists keeps_null_pointer_checks] {
423 if { [istarget avr-*-*] } {
429 # Return true if profiling is supported on the target.
431 proc check_profiling_available { test_what } {
432 global profiling_available_saved
434 verbose "Profiling argument is <$test_what>" 1
436 # These conditions depend on the argument so examine them before
437 # looking at the cache variable.
439 # Support for -p on solaris2 relies on mcrt1.o which comes with the
440 # vendor compiler. We cannot reliably predict the directory where the
441 # vendor compiler (and thus mcrt1.o) is installed so we can't
442 # necessarily find mcrt1.o even if we have it.
443 if { [istarget *-*-solaris2*] && [lindex $test_what 1] == "-p" } {
447 # Support for -p on irix relies on libprof1.a which doesn't appear to
448 # exist on any irix6 system currently posting testsuite results.
449 # Support for -pg on irix relies on gcrt1.o which doesn't exist yet.
450 # See: http://gcc.gnu.org/ml/gcc/2002-10/msg00169.html
451 if { [istarget mips*-*-irix*]
452 && ([lindex $test_what 1] == "-p" || [lindex $test_what 1] == "-pg") } {
456 # We don't yet support profiling for MIPS16.
457 if { [istarget mips*-*-*]
458 && ![check_effective_target_nomips16]
459 && ([lindex $test_what 1] == "-p"
460 || [lindex $test_what 1] == "-pg") } {
464 # MinGW does not support -p.
465 if { [istarget *-*-mingw*] && [lindex $test_what 1] == "-p" } {
469 # uClibc does not have gcrt1.o.
470 if { [check_effective_target_uclibc]
471 && ([lindex $test_what 1] == "-p"
472 || [lindex $test_what 1] == "-pg") } {
476 # Now examine the cache variable.
477 if {![info exists profiling_available_saved]} {
478 # Some targets don't have any implementation of __bb_init_func or are
479 # missing other needed machinery.
480 if { [istarget mmix-*-*]
481 || [istarget arm*-*-eabi*]
482 || [istarget picochip-*-*]
483 || [istarget *-*-netware*]
484 || [istarget arm*-*-elf]
485 || [istarget arm*-*-symbianelf*]
486 || [istarget avr-*-*]
487 || [istarget bfin-*-*]
488 || [istarget powerpc-*-eabi*]
489 || [istarget cris-*-*]
490 || [istarget crisv32-*-*]
491 || [istarget fido-*-elf]
492 || [istarget h8300-*-*]
493 || [istarget m32c-*-elf]
494 || [istarget m68k-*-elf]
495 || [istarget m68k-*-uclinux*]
496 || [istarget mips*-*-elf*]
497 || [istarget xstormy16-*]
498 || [istarget xtensa*-*-elf]
499 || [istarget *-*-rtems*]
500 || [istarget *-*-vxworks*] } {
501 set profiling_available_saved 0
503 set profiling_available_saved 1
507 return $profiling_available_saved
510 # Check to see if a target is "freestanding". This is as per the definition
511 # in Section 4 of C99 standard. Effectively, it is a target which supports no
512 # extra headers or libraries other than what is considered essential.
513 proc check_effective_target_freestanding { } {
514 if { [istarget picochip-*-*] } then {
521 # Return 1 if target has packed layout of structure members by
522 # default, 0 otherwise. Note that this is slightly different than
523 # whether the target has "natural alignment": both attributes may be
526 proc check_effective_target_default_packed { } {
527 return [check_no_compiler_messages default_packed assembly {
528 struct x { char a; long b; } c;
529 int s[sizeof (c) == sizeof (char) + sizeof (long) ? 1 : -1];
533 # Return 1 if target has PCC_BITFIELD_TYPE_MATTERS defined. See
534 # documentation, where the test also comes from.
536 proc check_effective_target_pcc_bitfield_type_matters { } {
537 # PCC_BITFIELD_TYPE_MATTERS isn't just about unnamed or empty
538 # bitfields, but let's stick to the example code from the docs.
539 return [check_no_compiler_messages pcc_bitfield_type_matters assembly {
540 struct foo1 { char x; char :0; char y; };
541 struct foo2 { char x; int :0; char y; };
542 int s[sizeof (struct foo1) != sizeof (struct foo2) ? 1 : -1];
546 # Return 1 if thread local storage (TLS) is supported, 0 otherwise.
548 # This won't change for different subtargets so cache the result.
550 proc check_effective_target_tls {} {
551 return [check_no_compiler_messages tls assembly {
553 int f (void) { return i; }
554 void g (int j) { i = j; }
558 # Return 1 if *native* thread local storage (TLS) is supported, 0 otherwise.
560 # This won't change for different subtargets so cache the result.
562 proc check_effective_target_tls_native {} {
563 # VxWorks uses emulated TLS machinery, but with non-standard helper
564 # functions, so we fail to automatically detect it.
565 global target_triplet
566 if { [regexp ".*-.*-vxworks.*" $target_triplet] } {
570 return [check_no_messages_and_pattern tls_native "!emutls" assembly {
572 int f (void) { return i; }
573 void g (int j) { i = j; }
577 # Return 1 if TLS executables can run correctly, 0 otherwise.
579 # This won't change for different subtargets so cache the result.
581 proc check_effective_target_tls_runtime {} {
582 return [check_runtime tls_runtime {
583 __thread int thr = 0;
584 int main (void) { return thr; }
588 # Return 1 if compilation with -fgraphite is error-free for trivial
591 proc check_effective_target_fgraphite {} {
592 return [check_no_compiler_messages fgraphite object {
597 # Return 1 if compilation with -fopenmp is error-free for trivial
600 proc check_effective_target_fopenmp {} {
601 return [check_no_compiler_messages fopenmp object {
606 # Return 1 if compilation with -pthread is error-free for trivial
609 proc check_effective_target_pthread {} {
610 return [check_no_compiler_messages pthread object {
615 # Return 1 if the target supports -fstack-protector
616 proc check_effective_target_fstack_protector {} {
617 return [check_runtime fstack_protector {
618 int main (void) { return 0; }
619 } "-fstack-protector"]
622 # Return 1 if compilation with -freorder-blocks-and-partition is error-free
623 # for trivial code, 0 otherwise.
625 proc check_effective_target_freorder {} {
626 return [check_no_compiler_messages freorder object {
628 } "-freorder-blocks-and-partition"]
631 # Return 1 if -fpic and -fPIC are supported, as in no warnings or errors
632 # emitted, 0 otherwise. Whether a shared library can actually be built is
633 # out of scope for this test.
635 proc check_effective_target_fpic { } {
636 # Note that M68K has a multilib that supports -fpic but not
637 # -fPIC, so we need to check both. We test with a program that
638 # requires GOT references.
639 foreach arg {fpic fPIC} {
640 if [check_no_compiler_messages $arg object {
641 extern int foo (void); extern int bar;
642 int baz (void) { return foo () + bar; }
650 # Return true if the target supports -mpaired-single (as used on MIPS).
652 proc check_effective_target_mpaired_single { } {
653 return [check_no_compiler_messages mpaired_single object {
658 # Return true if the target has access to FPU instructions.
660 proc check_effective_target_hard_float { } {
661 if { [istarget mips*-*-*] } {
662 return [check_no_compiler_messages hard_float assembly {
663 #if (defined __mips_soft_float || defined __mips16)
669 # The generic test equates hard_float with "no call for adding doubles".
670 return [check_no_messages_and_pattern hard_float "!\\(call" rtl-expand {
671 double a (double b, double c) { return b + c; }
675 # Return true if the target is a 64-bit MIPS target.
677 proc check_effective_target_mips64 { } {
678 return [check_no_compiler_messages mips64 assembly {
685 # Return true if the target is a MIPS target that does not produce
688 proc check_effective_target_nomips16 { } {
689 return [check_no_compiler_messages nomips16 object {
693 /* A cheap way of testing for -mflip-mips16. */
694 void foo (void) { asm ("addiu $20,$20,1"); }
695 void bar (void) { asm ("addiu $20,$20,1"); }
700 # Add the options needed for MIPS16 function attributes. At the moment,
701 # we don't support MIPS16 PIC.
703 proc add_options_for_mips16_attribute { flags } {
704 return "$flags -mno-abicalls -fno-pic -DMIPS16=__attribute__((mips16))"
707 # Return true if we can force a mode that allows MIPS16 code generation.
708 # We don't support MIPS16 PIC, and only support MIPS16 -mhard-float
711 proc check_effective_target_mips16_attribute { } {
712 return [check_no_compiler_messages mips16_attribute assembly {
716 #if defined __mips_hard_float \
717 && (!defined _ABIO32 || _MIPS_SIM != _ABIO32) \
718 && (!defined _ABIO64 || _MIPS_SIM != _ABIO64)
721 } [add_options_for_mips16_attribute ""]]
724 # Return 1 if the current multilib does not generate PIC by default.
726 proc check_effective_target_nonpic { } {
727 return [check_no_compiler_messages nonpic assembly {
734 # Return 1 if the target does not use a status wrapper.
736 proc check_effective_target_unwrapped { } {
737 if { [target_info needs_status_wrapper] != "" \
738 && [target_info needs_status_wrapper] != "0" } {
744 # Return true if iconv is supported on the target. In particular IBM1047.
746 proc check_iconv_available { test_what } {
749 # If the tool configuration file has not set libiconv, try "-liconv"
750 if { ![info exists libiconv] } {
751 set libiconv "-liconv"
753 set test_what [lindex $test_what 1]
754 return [check_runtime_nocache $test_what [subst {
760 cd = iconv_open ("$test_what", "UTF-8");
761 if (cd == (iconv_t) -1)
768 # Return true if named sections are supported on this target.
770 proc check_named_sections_available { } {
771 return [check_no_compiler_messages named_sections assembly {
772 int __attribute__ ((section("whatever"))) foo;
776 # Return 1 if the target supports Fortran real kinds larger than real(8),
779 # When the target name changes, replace the cached result.
781 proc check_effective_target_fortran_large_real { } {
782 return [check_no_compiler_messages fortran_large_real executable {
784 integer,parameter :: k = selected_real_kind (precision (0.0_8) + 1)
791 # Return 1 if the target supports Fortran integer kinds larger than
792 # integer(8), 0 otherwise.
794 # When the target name changes, replace the cached result.
796 proc check_effective_target_fortran_large_int { } {
797 return [check_no_compiler_messages fortran_large_int executable {
799 integer,parameter :: k = selected_int_kind (range (0_8) + 1)
805 # Return 1 if the target supports Fortran integer(16), 0 otherwise.
807 # When the target name changes, replace the cached result.
809 proc check_effective_target_fortran_integer_16 { } {
810 return [check_no_compiler_messages fortran_integer_16 executable {
817 # Return 1 if we can statically link libgfortran, 0 otherwise.
819 # When the target name changes, replace the cached result.
821 proc check_effective_target_static_libgfortran { } {
822 return [check_no_compiler_messages static_libgfortran executable {
829 # Return 1 if the target supports executing 750CL paired-single instructions, 0
830 # otherwise. Cache the result.
832 proc check_750cl_hw_available { } {
833 return [check_cached_effective_target 750cl_hw_available {
834 # If this is not the right target then we can skip the test.
835 if { ![istarget powerpc-*paired*] } {
838 check_runtime_nocache 750cl_hw_available {
842 asm volatile ("ps_mul v0,v0,v0");
844 asm volatile ("ps_mul 0,0,0");
853 # Return 1 if the target supports executing SSE2 instructions, 0
854 # otherwise. Cache the result.
856 proc check_sse2_hw_available { } {
857 return [check_cached_effective_target sse2_hw_available {
858 # If this is not the right target then we can skip the test.
859 if { !([istarget x86_64-*-*] || [istarget i?86-*-*]) } {
862 check_runtime_nocache sse2_hw_available {
866 unsigned int eax, ebx, ecx, edx = 0;
867 if (__get_cpuid (1, &eax, &ebx, &ecx, &edx))
868 return !(edx & bit_SSE2);
876 # Return 1 if the target supports executing AltiVec instructions, 0
877 # otherwise. Cache the result.
879 proc check_vmx_hw_available { } {
880 return [check_cached_effective_target vmx_hw_available {
881 # Some simulators are known to not support VMX instructions.
882 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
885 # Most targets don't require special flags for this test case, but
887 if { [istarget *-*-darwin*]
888 || [istarget *-*-aix*] } {
889 set options "-maltivec"
893 check_runtime_nocache vmx_hw_available {
897 asm volatile ("vor v0,v0,v0");
899 asm volatile ("vor 0,0,0");
908 # GCC 3.4.0 for powerpc64-*-linux* included an ABI fix for passing
909 # complex float arguments. This affects gfortran tests that call cabsf
910 # in libm built by an earlier compiler. Return 1 if libm uses the same
911 # argument passing as the compiler under test, 0 otherwise.
913 # When the target name changes, replace the cached result.
915 proc check_effective_target_broken_cplxf_arg { } {
916 return [check_cached_effective_target broken_cplxf_arg {
917 # Skip the work for targets known not to be affected.
918 if { ![istarget powerpc64-*-linux*] } {
920 } elseif { ![is-effective-target lp64] } {
923 check_runtime_nocache broken_cplxf_arg {
925 extern void abort (void);
927 float cabsf (_Complex float);
934 if (fabsf (f - 5.0) > 0.0001)
943 proc check_alpha_max_hw_available { } {
944 return [check_runtime alpha_max_hw_available {
945 int main() { return __builtin_alpha_amask(1<<8) != 0; }
949 # Returns true iff the FUNCTION is available on the target system.
950 # (This is essentially a Tcl implementation of Autoconf's
953 proc check_function_available { function } {
954 return [check_no_compiler_messages ${function}_available \
960 int main () { $function (); }
964 # Returns true iff "fork" is available on the target system.
966 proc check_fork_available {} {
967 return [check_function_available "fork"]
970 # Returns true iff "mkfifo" is available on the target system.
972 proc check_mkfifo_available {} {
973 if {[istarget *-*-cygwin*]} {
974 # Cygwin has mkfifo, but support is incomplete.
978 return [check_function_available "mkfifo"]
981 # Returns true iff "__cxa_atexit" is used on the target system.
983 proc check_cxa_atexit_available { } {
984 return [check_cached_effective_target cxa_atexit_available {
985 if { [istarget "hppa*-*-hpux10*"] } {
986 # HP-UX 10 doesn't have __cxa_atexit but subsequent test passes.
989 check_runtime_nocache cxa_atexit_available {
992 static unsigned int count;
1009 Y() { f(); count = 2; }
1018 int main() { return 0; }
1025 # Return 1 if we're generating 32-bit code using default options, 0
1028 proc check_effective_target_ilp32 { } {
1029 return [check_no_compiler_messages ilp32 object {
1030 int dummy[sizeof (int) == 4
1031 && sizeof (void *) == 4
1032 && sizeof (long) == 4 ? 1 : -1];
1036 # Return 1 if we're generating 32-bit or larger integers using default
1037 # options, 0 otherwise.
1039 proc check_effective_target_int32plus { } {
1040 return [check_no_compiler_messages int32plus object {
1041 int dummy[sizeof (int) >= 4 ? 1 : -1];
1045 # Return 1 if we're generating 32-bit or larger pointers using default
1046 # options, 0 otherwise.
1048 proc check_effective_target_ptr32plus { } {
1049 return [check_no_compiler_messages ptr32plus object {
1050 int dummy[sizeof (void *) >= 4 ? 1 : -1];
1054 # Return 1 if we support 32-bit or larger array and structure sizes
1055 # using default options, 0 otherwise.
1057 proc check_effective_target_size32plus { } {
1058 return [check_no_compiler_messages size32plus object {
1063 # Returns 1 if we're generating 16-bit or smaller integers with the
1064 # default options, 0 otherwise.
1066 proc check_effective_target_int16 { } {
1067 return [check_no_compiler_messages int16 object {
1068 int dummy[sizeof (int) < 4 ? 1 : -1];
1072 # Return 1 if we're generating 64-bit code using default options, 0
1075 proc check_effective_target_lp64 { } {
1076 return [check_no_compiler_messages lp64 object {
1077 int dummy[sizeof (int) == 4
1078 && sizeof (void *) == 8
1079 && sizeof (long) == 8 ? 1 : -1];
1083 # Return 1 if we're generating 64-bit code using default llp64 options,
1086 proc check_effective_target_llp64 { } {
1087 return [check_no_compiler_messages llp64 object {
1088 int dummy[sizeof (int) == 4
1089 && sizeof (void *) == 8
1090 && sizeof (long long) == 8
1091 && sizeof (long) == 4 ? 1 : -1];
1095 # Return 1 if the target supports long double larger than double,
1098 proc check_effective_target_large_long_double { } {
1099 return [check_no_compiler_messages large_long_double object {
1100 int dummy[sizeof(long double) > sizeof(double) ? 1 : -1];
1104 # Return 1 if the target supports compiling fixed-point,
1107 proc check_effective_target_fixed_point { } {
1108 return [check_no_compiler_messages fixed_point object {
1109 _Sat _Fract x; _Sat _Accum y;
1113 # Return 1 if the target supports compiling decimal floating point,
1116 proc check_effective_target_dfp_nocache { } {
1117 verbose "check_effective_target_dfp_nocache: compiling source" 2
1118 set ret [check_no_compiler_messages_nocache dfp object {
1119 _Decimal32 x; _Decimal64 y; _Decimal128 z;
1121 verbose "check_effective_target_dfp_nocache: returning $ret" 2
1125 proc check_effective_target_dfprt_nocache { } {
1126 return [check_runtime_nocache dfprt {
1127 _Decimal32 x = 1.2df; _Decimal64 y = 2.3dd; _Decimal128 z;
1128 int main () { z = x + y; return 0; }
1132 # Return 1 if the target supports compiling Decimal Floating Point,
1135 # This won't change for different subtargets so cache the result.
1137 proc check_effective_target_dfp { } {
1138 return [check_cached_effective_target dfp {
1139 check_effective_target_dfp_nocache
1143 # Return 1 if the target supports linking and executing Decimal Floating
1144 # Point, # 0 otherwise.
1146 # This won't change for different subtargets so cache the result.
1148 proc check_effective_target_dfprt { } {
1149 return [check_cached_effective_target dfprt {
1150 check_effective_target_dfprt_nocache
1154 # Return 1 if the target needs a command line argument to enable a SIMD
1157 proc check_effective_target_vect_cmdline_needed { } {
1158 global et_vect_cmdline_needed_saved
1159 global et_vect_cmdline_needed_target_name
1161 if { ![info exists et_vect_cmdline_needed_target_name] } {
1162 set et_vect_cmdline_needed_target_name ""
1165 # If the target has changed since we set the cached value, clear it.
1166 set current_target [current_target_name]
1167 if { $current_target != $et_vect_cmdline_needed_target_name } {
1168 verbose "check_effective_target_vect_cmdline_needed: `$et_vect_cmdline_needed_target_name' `$current_target'" 2
1169 set et_vect_cmdline_needed_target_name $current_target
1170 if { [info exists et_vect_cmdline_needed_saved] } {
1171 verbose "check_effective_target_vect_cmdline_needed: removing cached result" 2
1172 unset et_vect_cmdline_needed_saved
1176 if [info exists et_vect_cmdline_needed_saved] {
1177 verbose "check_effective_target_vect_cmdline_needed: using cached result" 2
1179 set et_vect_cmdline_needed_saved 1
1180 if { [istarget ia64-*-*]
1181 || (([istarget x86_64-*-*] || [istarget i?86-*-*])
1182 && [check_effective_target_lp64])
1183 || ([istarget powerpc*-*-*]
1184 && ([check_effective_target_powerpc_spe]
1185 || [check_effective_target_powerpc_altivec]))
1186 || [istarget spu-*-*]
1187 || ([istarget arm*-*-*] && [check_effective_target_arm_neon]) } {
1188 set et_vect_cmdline_needed_saved 0
1192 verbose "check_effective_target_vect_cmdline_needed: returning $et_vect_cmdline_needed_saved" 2
1193 return $et_vect_cmdline_needed_saved
1196 # Return 1 if the target supports hardware vectors of int, 0 otherwise.
1198 # This won't change for different subtargets so cache the result.
1200 proc check_effective_target_vect_int { } {
1201 global et_vect_int_saved
1203 if [info exists et_vect_int_saved] {
1204 verbose "check_effective_target_vect_int: using cached result" 2
1206 set et_vect_int_saved 0
1207 if { [istarget i?86-*-*]
1208 || ([istarget powerpc*-*-*]
1209 && ![istarget powerpc-*-linux*paired*])
1210 || [istarget spu-*-*]
1211 || [istarget x86_64-*-*]
1212 || [istarget sparc*-*-*]
1213 || [istarget alpha*-*-*]
1214 || [istarget ia64-*-*]
1215 || [check_effective_target_arm32] } {
1216 set et_vect_int_saved 1
1220 verbose "check_effective_target_vect_int: returning $et_vect_int_saved" 2
1221 return $et_vect_int_saved
1224 # Return 1 if the target supports int->float conversion
1227 proc check_effective_target_vect_intfloat_cvt { } {
1228 global et_vect_intfloat_cvt_saved
1230 if [info exists et_vect_intfloat_cvt_saved] {
1231 verbose "check_effective_target_vect_intfloat_cvt: using cached result" 2
1233 set et_vect_intfloat_cvt_saved 0
1234 if { [istarget i?86-*-*]
1235 || ([istarget powerpc*-*-*]
1236 && ![istarget powerpc-*-linux*paired*])
1237 || [istarget x86_64-*-*] } {
1238 set et_vect_intfloat_cvt_saved 1
1242 verbose "check_effective_target_vect_intfloat_cvt: returning $et_vect_intfloat_cvt_saved" 2
1243 return $et_vect_intfloat_cvt_saved
1247 # Return 1 if the target supports float->int conversion
1250 proc check_effective_target_vect_floatint_cvt { } {
1251 global et_vect_floatint_cvt_saved
1253 if [info exists et_vect_floatint_cvt_saved] {
1254 verbose "check_effective_target_vect_floatint_cvt: using cached result" 2
1256 set et_vect_floatint_cvt_saved 0
1257 if { [istarget i?86-*-*]
1258 || ([istarget powerpc*-*-*]
1259 && ![istarget powerpc-*-linux*paired*])
1260 || [istarget x86_64-*-*] } {
1261 set et_vect_floatint_cvt_saved 1
1265 verbose "check_effective_target_vect_floatint_cvt: returning $et_vect_floatint_cvt_saved" 2
1266 return $et_vect_floatint_cvt_saved
1269 # Return 1 is this is an arm target using 32-bit instructions
1270 proc check_effective_target_arm32 { } {
1271 return [check_no_compiler_messages arm32 assembly {
1272 #if !defined(__arm__) || (defined(__thumb__) && !defined(__thumb2__))
1278 # Return 1 if this is an ARM target supporting -mfpu=vfp
1279 # -mfloat-abi=softfp. Some multilibs may be incompatible with these
1282 proc check_effective_target_arm_vfp_ok { } {
1283 if { [check_effective_target_arm32] } {
1284 return [check_no_compiler_messages arm_vfp_ok object {
1286 } "-mfpu=vfp -mfloat-abi=softfp"]
1292 # Return 1 if this is an ARM target supporting -mfpu=neon
1293 # -mfloat-abi=softfp. Some multilibs may be incompatible with these
1296 proc check_effective_target_arm_neon_ok { } {
1297 if { [check_effective_target_arm32] } {
1298 return [check_no_compiler_messages arm_neon_ok object {
1300 } "-mfpu=neon -mfloat-abi=softfp"]
1306 # Return 1 is this is an ARM target where -mthumb causes Thumb-1 to be
1309 proc check_effective_target_arm_thumb1_ok { } {
1310 return [check_no_compiler_messages arm_thumb1_ok assembly {
1311 #if !defined(__arm__) || !defined(__thumb__) || defined(__thumb2__)
1317 # Return 1 if the target supports executing NEON instructions, 0
1318 # otherwise. Cache the result.
1320 proc check_effective_target_arm_neon_hw { } {
1321 return [check_runtime arm_neon_hw_available {
1325 long long a = 0, b = 1;
1326 asm ("vorr %P0, %P1, %P2"
1328 : "0" (a), "w" (b));
1331 } "-mfpu=neon -mfloat-abi=softfp"]
1334 # Return 1 if this is a ARM target with NEON enabled.
1336 proc check_effective_target_arm_neon { } {
1337 if { [check_effective_target_arm32] } {
1338 return [check_no_compiler_messages arm_neon object {
1339 #ifndef __ARM_NEON__
1350 # Return 1 if this a Loongson-2E or -2F target using an ABI that supports
1351 # the Loongson vector modes.
1353 proc check_effective_target_mips_loongson { } {
1354 return [check_no_compiler_messages loongson assembly {
1355 #if !defined(__mips_loongson_vector_rev)
1361 # Return 1 if this is a PowerPC target with floating-point registers.
1363 proc check_effective_target_powerpc_fprs { } {
1364 if { [istarget powerpc*-*-*]
1365 || [istarget rs6000-*-*] } {
1366 return [check_no_compiler_messages powerpc_fprs object {
1378 # Return 1 if this is a PowerPC target with hardware double-precision
1381 proc check_effective_target_powerpc_hard_double { } {
1382 if { [istarget powerpc*-*-*]
1383 || [istarget rs6000-*-*] } {
1384 return [check_no_compiler_messages powerpc_hard_double object {
1396 # Return 1 if this is a PowerPC target supporting -maltivec.
1398 proc check_effective_target_powerpc_altivec_ok { } {
1399 if { ([istarget powerpc*-*-*]
1400 && ![istarget powerpc-*-linux*paired*])
1401 || [istarget rs6000-*-*] } {
1402 # AltiVec is not supported on AIX before 5.3.
1403 if { [istarget powerpc*-*-aix4*]
1404 || [istarget powerpc*-*-aix5.1*]
1405 || [istarget powerpc*-*-aix5.2*] } {
1408 return [check_no_compiler_messages powerpc_altivec_ok object {
1416 # Return 1 if this is a PowerPC target supporting -mcpu=cell.
1418 proc check_effective_target_powerpc_ppu_ok { } {
1419 if [check_effective_target_powerpc_altivec_ok] {
1420 return [check_no_compiler_messages cell_asm_available object {
1423 asm volatile ("lvlx v0,v0,v0");
1425 asm volatile ("lvlx 0,0,0");
1435 # Return 1 if this is a PowerPC target that supports SPU.
1437 proc check_effective_target_powerpc_spu { } {
1438 if [istarget powerpc*-*-linux*] {
1439 return [check_effective_target_powerpc_altivec_ok]
1445 # Return 1 if this is a PowerPC target with SPE enabled.
1447 proc check_effective_target_powerpc_spe { } {
1448 if { [istarget powerpc*-*-*] } {
1449 return [check_no_compiler_messages powerpc_spe object {
1461 # Return 1 if this is a PowerPC target with Altivec enabled.
1463 proc check_effective_target_powerpc_altivec { } {
1464 if { [istarget powerpc*-*-*] } {
1465 return [check_no_compiler_messages powerpc_altivec object {
1477 # Return 1 if this is a SPU target with a toolchain that
1478 # supports automatic overlay generation.
1480 proc check_effective_target_spu_auto_overlay { } {
1481 if { [istarget spu*-*-elf*] } {
1482 return [check_no_compiler_messages spu_auto_overlay executable {
1484 } "-Wl,--auto-overlay" ]
1490 # The VxWorks SPARC simulator accepts only EM_SPARC executables and
1491 # chokes on EM_SPARC32PLUS or EM_SPARCV9 executables. Return 1 if the
1492 # test environment appears to run executables on such a simulator.
1494 proc check_effective_target_ultrasparc_hw { } {
1495 return [check_runtime ultrasparc_hw {
1496 int main() { return 0; }
1497 } "-mcpu=ultrasparc"]
1500 # Return 1 if the target supports hardware vector shift operation.
1502 proc check_effective_target_vect_shift { } {
1503 global et_vect_shift_saved
1505 if [info exists et_vect_shift_saved] {
1506 verbose "check_effective_target_vect_shift: using cached result" 2
1508 set et_vect_shift_saved 0
1509 if { ([istarget powerpc*-*-*]
1510 && ![istarget powerpc-*-linux*paired*])
1511 || [istarget ia64-*-*]
1512 || [istarget i?86-*-*]
1513 || [istarget x86_64-*-*]
1514 || [check_effective_target_arm32] } {
1515 set et_vect_shift_saved 1
1519 verbose "check_effective_target_vect_shift: returning $et_vect_shift_saved" 2
1520 return $et_vect_shift_saved
1523 # Return 1 if the target supports hardware vectors of long, 0 otherwise.
1525 # This can change for different subtargets so do not cache the result.
1527 proc check_effective_target_vect_long { } {
1528 if { [istarget i?86-*-*]
1529 || (([istarget powerpc*-*-*]
1530 && ![istarget powerpc-*-linux*paired*])
1531 && [check_effective_target_ilp32])
1532 || [istarget x86_64-*-*]
1533 || [check_effective_target_arm32]
1534 || ([istarget sparc*-*-*] && [check_effective_target_ilp32]) } {
1540 verbose "check_effective_target_vect_long: returning $answer" 2
1544 # Return 1 if the target supports hardware vectors of float, 0 otherwise.
1546 # This won't change for different subtargets so cache the result.
1548 proc check_effective_target_vect_float { } {
1549 global et_vect_float_saved
1551 if [info exists et_vect_float_saved] {
1552 verbose "check_effective_target_vect_float: using cached result" 2
1554 set et_vect_float_saved 0
1555 if { [istarget i?86-*-*]
1556 || [istarget powerpc*-*-*]
1557 || [istarget spu-*-*]
1558 || [istarget mipsisa64*-*-*]
1559 || [istarget x86_64-*-*]
1560 || [istarget ia64-*-*]
1561 || [check_effective_target_arm32] } {
1562 set et_vect_float_saved 1
1566 verbose "check_effective_target_vect_float: returning $et_vect_float_saved" 2
1567 return $et_vect_float_saved
1570 # Return 1 if the target supports hardware vectors of double, 0 otherwise.
1572 # This won't change for different subtargets so cache the result.
1574 proc check_effective_target_vect_double { } {
1575 global et_vect_double_saved
1577 if [info exists et_vect_double_saved] {
1578 verbose "check_effective_target_vect_double: using cached result" 2
1580 set et_vect_double_saved 0
1581 if { [istarget i?86-*-*]
1582 || [istarget x86_64-*-*]
1583 || [istarget spu-*-*] } {
1584 set et_vect_double_saved 1
1588 verbose "check_effective_target_vect_double: returning $et_vect_double_saved" 2
1589 return $et_vect_double_saved
1592 # Return 1 if the target supports hardware vectors of long long, 0 otherwise.
1594 # This won't change for different subtargets so cache the result.
1596 proc check_effective_target_vect_long_long { } {
1597 global et_vect_long_long_saved
1599 if [info exists et_vect_long_long_saved] {
1600 verbose "check_effective_target_vect_long_long: using cached result" 2
1602 set et_vect_long_long_saved 0
1603 if { [istarget i?86-*-*]
1604 || [istarget x86_64-*-*] } {
1605 set et_vect_long_long_saved 1
1609 verbose "check_effective_target_vect_long_long: returning $et_vect_long_long_saved" 2
1610 return $et_vect_long_long_saved
1614 # Return 1 if the target plus current options does not support a vector
1615 # max instruction on "int", 0 otherwise.
1617 # This won't change for different subtargets so cache the result.
1619 proc check_effective_target_vect_no_int_max { } {
1620 global et_vect_no_int_max_saved
1622 if [info exists et_vect_no_int_max_saved] {
1623 verbose "check_effective_target_vect_no_int_max: using cached result" 2
1625 set et_vect_no_int_max_saved 0
1626 if { [istarget sparc*-*-*]
1627 || [istarget spu-*-*]
1628 || [istarget alpha*-*-*] } {
1629 set et_vect_no_int_max_saved 1
1632 verbose "check_effective_target_vect_no_int_max: returning $et_vect_no_int_max_saved" 2
1633 return $et_vect_no_int_max_saved
1636 # Return 1 if the target plus current options does not support a vector
1637 # add instruction on "int", 0 otherwise.
1639 # This won't change for different subtargets so cache the result.
1641 proc check_effective_target_vect_no_int_add { } {
1642 global et_vect_no_int_add_saved
1644 if [info exists et_vect_no_int_add_saved] {
1645 verbose "check_effective_target_vect_no_int_add: using cached result" 2
1647 set et_vect_no_int_add_saved 0
1648 # Alpha only supports vector add on V8QI and V4HI.
1649 if { [istarget alpha*-*-*] } {
1650 set et_vect_no_int_add_saved 1
1653 verbose "check_effective_target_vect_no_int_add: returning $et_vect_no_int_add_saved" 2
1654 return $et_vect_no_int_add_saved
1657 # Return 1 if the target plus current options does not support vector
1658 # bitwise instructions, 0 otherwise.
1660 # This won't change for different subtargets so cache the result.
1662 proc check_effective_target_vect_no_bitwise { } {
1663 global et_vect_no_bitwise_saved
1665 if [info exists et_vect_no_bitwise_saved] {
1666 verbose "check_effective_target_vect_no_bitwise: using cached result" 2
1668 set et_vect_no_bitwise_saved 0
1670 verbose "check_effective_target_vect_no_bitwise: returning $et_vect_no_bitwise_saved" 2
1671 return $et_vect_no_bitwise_saved
1674 # Return 1 if the target plus current options supports vector permutation,
1677 # This won't change for different subtargets so cache the result.
1679 proc check_effective_target_vect_perm { } {
1682 if [info exists et_vect_perm_saved] {
1683 verbose "check_effective_target_vect_perm: using cached result" 2
1685 set et_vect_perm_saved 0
1686 if { [istarget powerpc*-*-*]
1687 || [istarget spu-*-*] } {
1688 set et_vect_perm_saved 1
1691 verbose "check_effective_target_vect_perm: returning $et_vect_perm_saved" 2
1692 return $et_vect_perm_saved
1696 # Return 1 if the target plus current options supports a vector
1697 # widening summation of *short* args into *int* result, 0 otherwise.
1698 # A target can also support this widening summation if it can support
1699 # promotion (unpacking) from shorts to ints.
1701 # This won't change for different subtargets so cache the result.
1703 proc check_effective_target_vect_widen_sum_hi_to_si { } {
1704 global et_vect_widen_sum_hi_to_si
1706 if [info exists et_vect_widen_sum_hi_to_si_saved] {
1707 verbose "check_effective_target_vect_widen_sum_hi_to_si: using cached result" 2
1709 set et_vect_widen_sum_hi_to_si_saved [check_effective_target_vect_unpack]
1710 if { [istarget powerpc*-*-*]
1711 || [istarget ia64-*-*] } {
1712 set et_vect_widen_sum_hi_to_si_saved 1
1715 verbose "check_effective_target_vect_widen_sum_hi_to_si: returning $et_vect_widen_sum_hi_to_si_saved" 2
1716 return $et_vect_widen_sum_hi_to_si_saved
1719 # Return 1 if the target plus current options supports a vector
1720 # widening summation of *char* args into *short* result, 0 otherwise.
1721 # A target can also support this widening summation if it can support
1722 # promotion (unpacking) from chars to shorts.
1724 # This won't change for different subtargets so cache the result.
1726 proc check_effective_target_vect_widen_sum_qi_to_hi { } {
1727 global et_vect_widen_sum_qi_to_hi
1729 if [info exists et_vect_widen_sum_qi_to_hi_saved] {
1730 verbose "check_effective_target_vect_widen_sum_qi_to_hi: using cached result" 2
1732 set et_vect_widen_sum_qi_to_hi_saved 0
1733 if { [check_effective_target_vect_unpack]
1734 || [istarget ia64-*-*] } {
1735 set et_vect_widen_sum_qi_to_hi_saved 1
1738 verbose "check_effective_target_vect_widen_sum_qi_to_hi: returning $et_vect_widen_sum_qi_to_hi_saved" 2
1739 return $et_vect_widen_sum_qi_to_hi_saved
1742 # Return 1 if the target plus current options supports a vector
1743 # widening summation of *char* args into *int* result, 0 otherwise.
1745 # This won't change for different subtargets so cache the result.
1747 proc check_effective_target_vect_widen_sum_qi_to_si { } {
1748 global et_vect_widen_sum_qi_to_si
1750 if [info exists et_vect_widen_sum_qi_to_si_saved] {
1751 verbose "check_effective_target_vect_widen_sum_qi_to_si: using cached result" 2
1753 set et_vect_widen_sum_qi_to_si_saved 0
1754 if { [istarget powerpc*-*-*] } {
1755 set et_vect_widen_sum_qi_to_si_saved 1
1758 verbose "check_effective_target_vect_widen_sum_qi_to_si: returning $et_vect_widen_sum_qi_to_si_saved" 2
1759 return $et_vect_widen_sum_qi_to_si_saved
1762 # Return 1 if the target plus current options supports a vector
1763 # widening multiplication of *char* args into *short* result, 0 otherwise.
1764 # A target can also support this widening multplication if it can support
1765 # promotion (unpacking) from chars to shorts, and vect_short_mult (non-widening
1766 # multiplication of shorts).
1768 # This won't change for different subtargets so cache the result.
1771 proc check_effective_target_vect_widen_mult_qi_to_hi { } {
1772 global et_vect_widen_mult_qi_to_hi
1774 if [info exists et_vect_widen_mult_qi_to_hi_saved] {
1775 verbose "check_effective_target_vect_widen_mult_qi_to_hi: using cached result" 2
1777 if { [check_effective_target_vect_unpack]
1778 && [check_effective_target_vect_short_mult] } {
1779 set et_vect_widen_mult_qi_to_hi_saved 1
1781 set et_vect_widen_mult_qi_to_hi_saved 0
1783 if { [istarget powerpc*-*-*] } {
1784 set et_vect_widen_mult_qi_to_hi_saved 1
1787 verbose "check_effective_target_vect_widen_mult_qi_to_hi: returning $et_vect_widen_mult_qi_to_hi_saved" 2
1788 return $et_vect_widen_mult_qi_to_hi_saved
1791 # Return 1 if the target plus current options supports a vector
1792 # widening multiplication of *short* args into *int* result, 0 otherwise.
1793 # A target can also support this widening multplication if it can support
1794 # promotion (unpacking) from shorts to ints, and vect_int_mult (non-widening
1795 # multiplication of ints).
1797 # This won't change for different subtargets so cache the result.
1800 proc check_effective_target_vect_widen_mult_hi_to_si { } {
1801 global et_vect_widen_mult_hi_to_si
1803 if [info exists et_vect_widen_mult_hi_to_si_saved] {
1804 verbose "check_effective_target_vect_widen_mult_hi_to_si: using cached result" 2
1806 if { [check_effective_target_vect_unpack]
1807 && [check_effective_target_vect_int_mult] } {
1808 set et_vect_widen_mult_hi_to_si_saved 1
1810 set et_vect_widen_mult_hi_to_si_saved 0
1812 if { [istarget powerpc*-*-*]
1813 || [istarget spu-*-*]
1814 || [istarget i?86-*-*]
1815 || [istarget x86_64-*-*] } {
1816 set et_vect_widen_mult_hi_to_si_saved 1
1819 verbose "check_effective_target_vect_widen_mult_hi_to_si: returning $et_vect_widen_mult_hi_to_si_saved" 2
1820 return $et_vect_widen_mult_hi_to_si_saved
1823 # Return 1 if the target plus current options supports a vector
1824 # dot-product of signed chars, 0 otherwise.
1826 # This won't change for different subtargets so cache the result.
1828 proc check_effective_target_vect_sdot_qi { } {
1829 global et_vect_sdot_qi
1831 if [info exists et_vect_sdot_qi_saved] {
1832 verbose "check_effective_target_vect_sdot_qi: using cached result" 2
1834 set et_vect_sdot_qi_saved 0
1836 verbose "check_effective_target_vect_sdot_qi: returning $et_vect_sdot_qi_saved" 2
1837 return $et_vect_sdot_qi_saved
1840 # Return 1 if the target plus current options supports a vector
1841 # dot-product of unsigned chars, 0 otherwise.
1843 # This won't change for different subtargets so cache the result.
1845 proc check_effective_target_vect_udot_qi { } {
1846 global et_vect_udot_qi
1848 if [info exists et_vect_udot_qi_saved] {
1849 verbose "check_effective_target_vect_udot_qi: using cached result" 2
1851 set et_vect_udot_qi_saved 0
1852 if { [istarget powerpc*-*-*] } {
1853 set et_vect_udot_qi_saved 1
1856 verbose "check_effective_target_vect_udot_qi: returning $et_vect_udot_qi_saved" 2
1857 return $et_vect_udot_qi_saved
1860 # Return 1 if the target plus current options supports a vector
1861 # dot-product of signed shorts, 0 otherwise.
1863 # This won't change for different subtargets so cache the result.
1865 proc check_effective_target_vect_sdot_hi { } {
1866 global et_vect_sdot_hi
1868 if [info exists et_vect_sdot_hi_saved] {
1869 verbose "check_effective_target_vect_sdot_hi: using cached result" 2
1871 set et_vect_sdot_hi_saved 0
1872 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
1873 || [istarget i?86-*-*]
1874 || [istarget x86_64-*-*] } {
1875 set et_vect_sdot_hi_saved 1
1878 verbose "check_effective_target_vect_sdot_hi: returning $et_vect_sdot_hi_saved" 2
1879 return $et_vect_sdot_hi_saved
1882 # Return 1 if the target plus current options supports a vector
1883 # dot-product of unsigned shorts, 0 otherwise.
1885 # This won't change for different subtargets so cache the result.
1887 proc check_effective_target_vect_udot_hi { } {
1888 global et_vect_udot_hi
1890 if [info exists et_vect_udot_hi_saved] {
1891 verbose "check_effective_target_vect_udot_hi: using cached result" 2
1893 set et_vect_udot_hi_saved 0
1894 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*]) } {
1895 set et_vect_udot_hi_saved 1
1898 verbose "check_effective_target_vect_udot_hi: returning $et_vect_udot_hi_saved" 2
1899 return $et_vect_udot_hi_saved
1903 # Return 1 if the target plus current options supports a vector
1904 # demotion (packing) of shorts (to chars) and ints (to shorts)
1905 # using modulo arithmetic, 0 otherwise.
1907 # This won't change for different subtargets so cache the result.
1909 proc check_effective_target_vect_pack_trunc { } {
1910 global et_vect_pack_trunc
1912 if [info exists et_vect_pack_trunc_saved] {
1913 verbose "check_effective_target_vect_pack_trunc: using cached result" 2
1915 set et_vect_pack_trunc_saved 0
1916 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
1917 || [istarget i?86-*-*]
1918 || [istarget x86_64-*-*]
1919 || [istarget spu-*-*] } {
1920 set et_vect_pack_trunc_saved 1
1923 verbose "check_effective_target_vect_pack_trunc: returning $et_vect_pack_trunc_saved" 2
1924 return $et_vect_pack_trunc_saved
1927 # Return 1 if the target plus current options supports a vector
1928 # promotion (unpacking) of chars (to shorts) and shorts (to ints), 0 otherwise.
1930 # This won't change for different subtargets so cache the result.
1932 proc check_effective_target_vect_unpack { } {
1933 global et_vect_unpack
1935 if [info exists et_vect_unpack_saved] {
1936 verbose "check_effective_target_vect_unpack: using cached result" 2
1938 set et_vect_unpack_saved 0
1939 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*paired*])
1940 || [istarget i?86-*-*]
1941 || [istarget x86_64-*-*]
1942 || [istarget spu-*-*] } {
1943 set et_vect_unpack_saved 1
1946 verbose "check_effective_target_vect_unpack: returning $et_vect_unpack_saved" 2
1947 return $et_vect_unpack_saved
1950 # Return 1 if the target plus current options does not guarantee
1951 # that its STACK_BOUNDARY is >= the reguired vector alignment.
1953 # This won't change for different subtargets so cache the result.
1955 proc check_effective_target_unaligned_stack { } {
1956 global et_unaligned_stack_saved
1958 if [info exists et_unaligned_stack_saved] {
1959 verbose "check_effective_target_unaligned_stack: using cached result" 2
1961 set et_unaligned_stack_saved 0
1963 verbose "check_effective_target_unaligned_stack: returning $et_unaligned_stack_saved" 2
1964 return $et_unaligned_stack_saved
1967 # Return 1 if the target plus current options does not support a vector
1968 # alignment mechanism, 0 otherwise.
1970 # This won't change for different subtargets so cache the result.
1972 proc check_effective_target_vect_no_align { } {
1973 global et_vect_no_align_saved
1975 if [info exists et_vect_no_align_saved] {
1976 verbose "check_effective_target_vect_no_align: using cached result" 2
1978 set et_vect_no_align_saved 0
1979 if { [istarget mipsisa64*-*-*]
1980 || [istarget sparc*-*-*]
1981 || [istarget ia64-*-*]
1982 || [check_effective_target_arm32] } {
1983 set et_vect_no_align_saved 1
1986 verbose "check_effective_target_vect_no_align: returning $et_vect_no_align_saved" 2
1987 return $et_vect_no_align_saved
1990 # Return 1 if arrays are aligned to the vector alignment
1991 # boundary, 0 otherwise.
1993 # This won't change for different subtargets so cache the result.
1995 proc check_effective_target_vect_aligned_arrays { } {
1996 global et_vect_aligned_arrays
1998 if [info exists et_vect_aligned_arrays_saved] {
1999 verbose "check_effective_target_vect_aligned_arrays: using cached result" 2
2001 set et_vect_aligned_arrays_saved 0
2002 if { (([istarget x86_64-*-*]
2003 || [istarget i?86-*-*]) && [is-effective-target lp64])
2004 || [istarget spu-*-*] } {
2005 set et_vect_aligned_arrays_saved 1
2008 verbose "check_effective_target_vect_aligned_arrays: returning $et_vect_aligned_arrays_saved" 2
2009 return $et_vect_aligned_arrays_saved
2012 # Return 1 if types of size 32 bit or less are naturally aligned
2013 # (aligned to their type-size), 0 otherwise.
2015 # This won't change for different subtargets so cache the result.
2017 proc check_effective_target_natural_alignment_32 { } {
2018 global et_natural_alignment_32
2020 if [info exists et_natural_alignment_32_saved] {
2021 verbose "check_effective_target_natural_alignment_32: using cached result" 2
2023 # FIXME: 32bit powerpc: guaranteed only if MASK_ALIGN_NATURAL/POWER.
2024 set et_natural_alignment_32_saved 1
2025 if { ([istarget *-*-darwin*] && [is-effective-target lp64]) } {
2026 set et_natural_alignment_32_saved 0
2029 verbose "check_effective_target_natural_alignment_32: returning $et_natural_alignment_32_saved" 2
2030 return $et_natural_alignment_32_saved
2033 # Return 1 if types of size 64 bit or less are naturally aligned (aligned to their
2034 # type-size), 0 otherwise.
2036 # This won't change for different subtargets so cache the result.
2038 proc check_effective_target_natural_alignment_64 { } {
2039 global et_natural_alignment_64
2041 if [info exists et_natural_alignment_64_saved] {
2042 verbose "check_effective_target_natural_alignment_64: using cached result" 2
2044 set et_natural_alignment_64_saved 0
2045 if { ([is-effective-target lp64] && ![istarget *-*-darwin*])
2046 || [istarget spu-*-*] } {
2047 set et_natural_alignment_64_saved 1
2050 verbose "check_effective_target_natural_alignment_64: returning $et_natural_alignment_64_saved" 2
2051 return $et_natural_alignment_64_saved
2054 # Return 1 if vector alignment (for types of size 32 bit or less) is reachable, 0 otherwise.
2056 # This won't change for different subtargets so cache the result.
2058 proc check_effective_target_vector_alignment_reachable { } {
2059 global et_vector_alignment_reachable
2061 if [info exists et_vector_alignment_reachable_saved] {
2062 verbose "check_effective_target_vector_alignment_reachable: using cached result" 2
2064 if { [check_effective_target_vect_aligned_arrays]
2065 || [check_effective_target_natural_alignment_32] } {
2066 set et_vector_alignment_reachable_saved 1
2068 set et_vector_alignment_reachable_saved 0
2071 verbose "check_effective_target_vector_alignment_reachable: returning $et_vector_alignment_reachable_saved" 2
2072 return $et_vector_alignment_reachable_saved
2075 # Return 1 if vector alignment for 64 bit is reachable, 0 otherwise.
2077 # This won't change for different subtargets so cache the result.
2079 proc check_effective_target_vector_alignment_reachable_for_64bit { } {
2080 global et_vector_alignment_reachable_for_64bit
2082 if [info exists et_vector_alignment_reachable_for_64bit_saved] {
2083 verbose "check_effective_target_vector_alignment_reachable_for_64bit: using cached result" 2
2085 if { [check_effective_target_vect_aligned_arrays]
2086 || [check_effective_target_natural_alignment_64] } {
2087 set et_vector_alignment_reachable_for_64bit_saved 1
2089 set et_vector_alignment_reachable_for_64bit_saved 0
2092 verbose "check_effective_target_vector_alignment_reachable_for_64bit: returning $et_vector_alignment_reachable_for_64bit_saved" 2
2093 return $et_vector_alignment_reachable_for_64bit_saved
2096 # Return 1 if the target supports vector conditional operations, 0 otherwise.
2098 proc check_effective_target_vect_condition { } {
2099 global et_vect_cond_saved
2101 if [info exists et_vect_cond_saved] {
2102 verbose "check_effective_target_vect_cond: using cached result" 2
2104 set et_vect_cond_saved 0
2105 if { [istarget powerpc*-*-*]
2106 || [istarget ia64-*-*]
2107 || [istarget i?86-*-*]
2108 || [istarget spu-*-*]
2109 || [istarget x86_64-*-*] } {
2110 set et_vect_cond_saved 1
2114 verbose "check_effective_target_vect_cond: returning $et_vect_cond_saved" 2
2115 return $et_vect_cond_saved
2118 # Return 1 if the target supports vector char multiplication, 0 otherwise.
2120 proc check_effective_target_vect_char_mult { } {
2121 global et_vect_char_mult_saved
2123 if [info exists et_vect_char_mult_saved] {
2124 verbose "check_effective_target_vect_char_mult: using cached result" 2
2126 set et_vect_char_mult_saved 0
2127 if { [istarget ia64-*-*]
2128 || [istarget i?86-*-*]
2129 || [istarget x86_64-*-*] } {
2130 set et_vect_char_mult_saved 1
2134 verbose "check_effective_target_vect_char_mult: returning $et_vect_char_mult_saved" 2
2135 return $et_vect_char_mult_saved
2138 # Return 1 if the target supports vector short multiplication, 0 otherwise.
2140 proc check_effective_target_vect_short_mult { } {
2141 global et_vect_short_mult_saved
2143 if [info exists et_vect_short_mult_saved] {
2144 verbose "check_effective_target_vect_short_mult: using cached result" 2
2146 set et_vect_short_mult_saved 0
2147 if { [istarget ia64-*-*]
2148 || [istarget spu-*-*]
2149 || [istarget i?86-*-*]
2150 || [istarget x86_64-*-*]
2151 || [istarget powerpc*-*-*] } {
2152 set et_vect_short_mult_saved 1
2156 verbose "check_effective_target_vect_short_mult: returning $et_vect_short_mult_saved" 2
2157 return $et_vect_short_mult_saved
2160 # Return 1 if the target supports vector int multiplication, 0 otherwise.
2162 proc check_effective_target_vect_int_mult { } {
2163 global et_vect_int_mult_saved
2165 if [info exists et_vect_int_mult_saved] {
2166 verbose "check_effective_target_vect_int_mult: using cached result" 2
2168 set et_vect_int_mult_saved 0
2169 if { ([istarget powerpc*-*-*] && ![istarget powerpc-*-linux*paired*])
2170 || [istarget spu-*-*]
2171 || [istarget i?86-*-*]
2172 || [istarget x86_64-*-*]
2173 || [check_effective_target_arm32] } {
2174 set et_vect_int_mult_saved 1
2178 verbose "check_effective_target_vect_int_mult: returning $et_vect_int_mult_saved" 2
2179 return $et_vect_int_mult_saved
2182 # Return 1 if the target supports vector even/odd elements extraction, 0 otherwise.
2184 proc check_effective_target_vect_extract_even_odd { } {
2185 global et_vect_extract_even_odd_saved
2187 if [info exists et_vect_extract_even_odd_saved] {
2188 verbose "check_effective_target_vect_extract_even_odd: using cached result" 2
2190 set et_vect_extract_even_odd_saved 0
2191 if { [istarget powerpc*-*-*]
2192 || [istarget spu-*-*] } {
2193 set et_vect_extract_even_odd_saved 1
2197 verbose "check_effective_target_vect_extract_even_odd: returning $et_vect_extract_even_odd_saved" 2
2198 return $et_vect_extract_even_odd_saved
2201 # Return 1 if the target supports vector even/odd elements extraction of
2202 # vectors with SImode elements or larger, 0 otherwise.
2204 proc check_effective_target_vect_extract_even_odd_wide { } {
2205 global et_vect_extract_even_odd_wide_saved
2207 if [info exists et_vect_extract_even_odd_wide_saved] {
2208 verbose "check_effective_target_vect_extract_even_odd_wide: using cached result" 2
2210 set et_vect_extract_even_odd_wide_saved 0
2211 if { [istarget powerpc*-*-*]
2212 || [istarget i?86-*-*]
2213 || [istarget x86_64-*-*]
2214 || [istarget spu-*-*] } {
2215 set et_vect_extract_even_odd_wide_saved 1
2219 verbose "check_effective_target_vect_extract_even_wide_odd: returning $et_vect_extract_even_odd_wide_saved" 2
2220 return $et_vect_extract_even_odd_wide_saved
2223 # Return 1 if the target supports vector interleaving, 0 otherwise.
2225 proc check_effective_target_vect_interleave { } {
2226 global et_vect_interleave_saved
2228 if [info exists et_vect_interleave_saved] {
2229 verbose "check_effective_target_vect_interleave: using cached result" 2
2231 set et_vect_interleave_saved 0
2232 if { [istarget powerpc*-*-*]
2233 || [istarget i?86-*-*]
2234 || [istarget x86_64-*-*]
2235 || [istarget spu-*-*] } {
2236 set et_vect_interleave_saved 1
2240 verbose "check_effective_target_vect_interleave: returning $et_vect_interleave_saved" 2
2241 return $et_vect_interleave_saved
2244 # Return 1 if the target supports vector interleaving and extract even/odd, 0 otherwise.
2245 proc check_effective_target_vect_strided { } {
2246 global et_vect_strided_saved
2248 if [info exists et_vect_strided_saved] {
2249 verbose "check_effective_target_vect_strided: using cached result" 2
2251 set et_vect_strided_saved 0
2252 if { [check_effective_target_vect_interleave]
2253 && [check_effective_target_vect_extract_even_odd] } {
2254 set et_vect_strided_saved 1
2258 verbose "check_effective_target_vect_strided: returning $et_vect_strided_saved" 2
2259 return $et_vect_strided_saved
2262 # Return 1 if the target supports vector interleaving and extract even/odd
2263 # for wide element types, 0 otherwise.
2264 proc check_effective_target_vect_strided_wide { } {
2265 global et_vect_strided_wide_saved
2267 if [info exists et_vect_strided_wide_saved] {
2268 verbose "check_effective_target_vect_strided_wide: using cached result" 2
2270 set et_vect_strided_wide_saved 0
2271 if { [check_effective_target_vect_interleave]
2272 && [check_effective_target_vect_extract_even_odd_wide] } {
2273 set et_vect_strided_wide_saved 1
2277 verbose "check_effective_target_vect_strided_wide: returning $et_vect_strided_wide_saved" 2
2278 return $et_vect_strided_wide_saved
2281 # Return 1 if the target supports section-anchors
2283 proc check_effective_target_section_anchors { } {
2284 global et_section_anchors_saved
2286 if [info exists et_section_anchors_saved] {
2287 verbose "check_effective_target_section_anchors: using cached result" 2
2289 set et_section_anchors_saved 0
2290 if { [istarget powerpc*-*-*] } {
2291 set et_section_anchors_saved 1
2295 verbose "check_effective_target_section_anchors: returning $et_section_anchors_saved" 2
2296 return $et_section_anchors_saved
2299 # Return 1 if the target supports atomic operations on "int" and "long".
2301 proc check_effective_target_sync_int_long { } {
2302 global et_sync_int_long_saved
2304 if [info exists et_sync_int_long_saved] {
2305 verbose "check_effective_target_sync_int_long: using cached result" 2
2307 set et_sync_int_long_saved 0
2308 # This is intentionally powerpc but not rs6000, rs6000 doesn't have the
2309 # load-reserved/store-conditional instructions.
2310 if { [istarget ia64-*-*]
2311 || [istarget i?86-*-*]
2312 || [istarget x86_64-*-*]
2313 || [istarget alpha*-*-*]
2314 || [istarget s390*-*-*]
2315 || [istarget powerpc*-*-*]
2316 || [istarget sparc64-*-*]
2317 || [istarget sparcv9-*-*]
2318 || [istarget mips*-*-*] } {
2319 set et_sync_int_long_saved 1
2323 verbose "check_effective_target_sync_int_long: returning $et_sync_int_long_saved" 2
2324 return $et_sync_int_long_saved
2327 # Return 1 if the target supports atomic operations on "char" and "short".
2329 proc check_effective_target_sync_char_short { } {
2330 global et_sync_char_short_saved
2332 if [info exists et_sync_char_short_saved] {
2333 verbose "check_effective_target_sync_char_short: using cached result" 2
2335 set et_sync_char_short_saved 0
2336 # This is intentionally powerpc but not rs6000, rs6000 doesn't have the
2337 # load-reserved/store-conditional instructions.
2338 if { [istarget ia64-*-*]
2339 || [istarget i?86-*-*]
2340 || [istarget x86_64-*-*]
2341 || [istarget alpha*-*-*]
2342 || [istarget s390*-*-*]
2343 || [istarget powerpc*-*-*]
2344 || [istarget sparc64-*-*]
2345 || [istarget sparcv9-*-*]
2346 || [istarget mips*-*-*] } {
2347 set et_sync_char_short_saved 1
2351 verbose "check_effective_target_sync_char_short: returning $et_sync_char_short_saved" 2
2352 return $et_sync_char_short_saved
2355 # Return 1 if the target uses a ColdFire FPU.
2357 proc check_effective_target_coldfire_fpu { } {
2358 return [check_no_compiler_messages coldfire_fpu assembly {
2365 # Return true if this is a uClibc target.
2367 proc check_effective_target_uclibc {} {
2368 return [check_no_compiler_messages uclibc object {
2369 #include <features.h>
2370 #if !defined (__UCLIBC__)
2376 # Return true if this is a uclibc target and if the uclibc feature
2377 # described by __$feature__ is not present.
2379 proc check_missing_uclibc_feature {feature} {
2380 return [check_no_compiler_messages $feature object "
2381 #include <features.h>
2382 #if !defined (__UCLIBC) || defined (__${feature}__)
2388 # Return true if this is a Newlib target.
2390 proc check_effective_target_newlib {} {
2391 return [check_no_compiler_messages newlib object {
2397 # (a) an error of a few ULP is expected in string to floating-point
2398 # conversion functions; and
2399 # (b) overflow is not always detected correctly by those functions.
2401 proc check_effective_target_lax_strtofp {} {
2402 # By default, assume that all uClibc targets suffer from this.
2403 return [check_effective_target_uclibc]
2406 # Return 1 if this is a target for which wcsftime is a dummy
2407 # function that always returns 0.
2409 proc check_effective_target_dummy_wcsftime {} {
2410 # By default, assume that all uClibc targets suffer from this.
2411 return [check_effective_target_uclibc]
2414 # Return 1 if constructors with initialization priority arguments are
2415 # supposed on this target.
2417 proc check_effective_target_init_priority {} {
2418 return [check_no_compiler_messages init_priority assembly "
2419 void f() __attribute__((constructor (1000)));
2424 # Return 1 if the target matches the effective target 'arg', 0 otherwise.
2425 # This can be used with any check_* proc that takes no argument and
2426 # returns only 1 or 0. It could be used with check_* procs that take
2427 # arguments with keywords that pass particular arguments.
2429 proc is-effective-target { arg } {
2431 if { [info procs check_effective_target_${arg}] != [list] } {
2432 set selected [check_effective_target_${arg}]
2435 "vmx_hw" { set selected [check_vmx_hw_available] }
2436 "named_sections" { set selected [check_named_sections_available] }
2437 "gc_sections" { set selected [check_gc_sections_available] }
2438 "cxa_atexit" { set selected [check_cxa_atexit_available] }
2439 default { error "unknown effective target keyword `$arg'" }
2442 verbose "is-effective-target: $arg $selected" 2
2446 # Return 1 if the argument is an effective-target keyword, 0 otherwise.
2448 proc is-effective-target-keyword { arg } {
2449 if { [info procs check_effective_target_${arg}] != [list] } {
2452 # These have different names for their check_* procs.
2454 "vmx_hw" { return 1 }
2455 "named_sections" { return 1 }
2456 "gc_sections" { return 1 }
2457 "cxa_atexit" { return 1 }
2458 default { return 0 }
2463 # Return 1 if target default to short enums
2465 proc check_effective_target_short_enums { } {
2466 return [check_no_compiler_messages short_enums assembly {
2468 int s[sizeof (enum foo) == 1 ? 1 : -1];
2472 # Return 1 if target supports merging string constants at link time.
2474 proc check_effective_target_string_merging { } {
2475 return [check_no_messages_and_pattern string_merging \
2476 "rodata\\.str" assembly {
2477 const char *var = "String";
2481 # Return 1 if target has the basic signed and unsigned types in
2482 # <stdint.h>, 0 otherwise.
2484 proc check_effective_target_stdint_types { } {
2485 return [check_no_compiler_messages stdint_types assembly {
2487 int8_t a; int16_t b; int32_t c; int64_t d;
2488 uint8_t e; uint16_t f; uint32_t g; uint64_t h;
2492 # Return 1 if programs are intended to be run on a simulator
2493 # (i.e. slowly) rather than hardware (i.e. fast).
2495 proc check_effective_target_simulator { } {
2497 # All "src/sim" simulators set this one.
2498 if [board_info target exists is_simulator] {
2499 return [board_info target is_simulator]
2502 # The "sid" simulators don't set that one, but at least they set
2504 if [board_info target exists slow_simulator] {
2505 return [board_info target slow_simulator]
2511 # Return 1 if the target is a VxWorks kernel.
2513 proc check_effective_target_vxworks_kernel { } {
2514 return [check_no_compiler_messages vxworks_kernel assembly {
2515 #if !defined __vxworks || defined __RTP__
2521 # Return 1 if the target is a VxWorks RTP.
2523 proc check_effective_target_vxworks_rtp { } {
2524 return [check_no_compiler_messages vxworks_rtp assembly {
2525 #if !defined __vxworks || !defined __RTP__
2531 # Return 1 if the target is expected to provide wide character support.
2533 proc check_effective_target_wchar { } {
2534 if {[check_missing_uclibc_feature UCLIBC_HAS_WCHAR]} {
2537 return [check_no_compiler_messages wchar assembly {
2542 # Return 1 if the target has <pthread.h>.
2544 proc check_effective_target_pthread_h { } {
2545 return [check_no_compiler_messages pthread_h assembly {
2546 #include <pthread.h>
2550 # Return 1 if the target can truncate a file from a file-descriptor,
2551 # as used by libgfortran/io/unix.c:fd_truncate; i.e. ftruncate or
2552 # chsize. We test for a trivially functional truncation; no stubs.
2553 # As libgfortran uses _FILE_OFFSET_BITS 64, we do too; it'll cause a
2554 # different function to be used.
2556 proc check_effective_target_fd_truncate { } {
2558 #define _FILE_OFFSET_BITS 64
2564 FILE *f = fopen ("tst.tmp", "wb");
2566 const char t[] = "test writing more than ten characters";
2569 write (fd, t, sizeof (t) - 1);
2571 if (ftruncate (fd, 10) != 0)
2574 f = fopen ("tst.tmp", "rb");
2575 if (fread (s, 1, sizeof (s), f) != 10 || strncmp (s, t, 10) != 0)
2581 if { [check_runtime ftruncate $prog] } {
2585 regsub "ftruncate" $prog "chsize" prog
2586 return [check_runtime chsize $prog]
2589 # Add to FLAGS all the target-specific flags needed to access the c99 runtime.
2591 proc add_options_for_c99_runtime { flags } {
2592 if { [istarget *-*-solaris2*] } {
2593 return "$flags -std=c99"
2595 if { [istarget powerpc-*-darwin*] } {
2596 return "$flags -mmacosx-version-min=10.3"
2601 # Return 1 if the target provides a full C99 runtime.
2603 proc check_effective_target_c99_runtime { } {
2604 return [check_cached_effective_target c99_runtime {
2607 set file [open "$srcdir/gcc.dg/builtins-config.h"]
2608 set contents [read $file]
2611 #ifndef HAVE_C99_RUNTIME
2615 check_no_compiler_messages_nocache c99_runtime assembly \
2616 $contents [add_options_for_c99_runtime ""]
2620 # Return 1 if target wchar_t is at least 4 bytes.
2622 proc check_effective_target_4byte_wchar_t { } {
2623 return [check_no_compiler_messages 4byte_wchar_t object {
2624 int dummy[sizeof (__WCHAR_TYPE__) >= 4 ? 1 : -1];
2628 # Return 1 if the target supports automatic stack alignment.
2630 proc check_effective_target_automatic_stack_alignment { } {
2631 if { [istarget i?86*-*-*]
2632 || [istarget x86_64-*-*] } then {
2639 # Return 1 if avx instructions can be compiled.
2641 proc check_effective_target_avx { } {
2642 return [check_no_compiler_messages avx object {
2643 void _mm256_zeroall (void)
2645 __builtin_ia32_vzeroall ();
2650 # Return 1 if C wchar_t type is compatible with char16_t.
2652 proc check_effective_target_wchar_t_char16_t_compatible { } {
2653 return [check_no_compiler_messages wchar_t_char16_t object {
2655 __CHAR16_TYPE__ *p16 = &wc;
2656 char t[(((__CHAR16_TYPE__) -1) < 0 == ((__WCHAR_TYPE__) -1) < 0) ? 1 : -1];
2660 # Return 1 if C wchar_t type is compatible with char32_t.
2662 proc check_effective_target_wchar_t_char32_t_compatible { } {
2663 return [check_no_compiler_messages wchar_t_char32_t object {
2665 __CHAR32_TYPE__ *p32 = &wc;
2666 char t[(((__CHAR32_TYPE__) -1) < 0 == ((__WCHAR_TYPE__) -1) < 0) ? 1 : -1];
2670 # Return 1 if pow10 function exists.
2672 proc check_effective_target_pow10 { } {
2673 return [check_runtime pow10 {
2683 # Return 1 if current options generate DFP instructions, 0 otherwise.
2685 proc check_effective_target_hard_dfp {} {
2686 return [check_no_messages_and_pattern hard_dfp "!adddd3" assembly {
2688 void foo (void) { z = x + y; }