t-linux64: Delete the 32-bit multilib that uses software floating point emulation.
[official-gcc.git] / gcc / flags.h
blob48c20e51bd8af95ddbfc363f7379a30643a8ccd7
1 /* Compilation switch flag definitions for GCC.
2 Copyright (C) 1987, 1988, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #ifndef GCC_FLAGS_H
23 #define GCC_FLAGS_H
25 #include "coretypes.h"
26 #include "flag-types.h"
27 #include "options.h"
29 #if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS) && !defined(IN_RTS)
31 /* Names of debug_info_type, for error messages. */
32 extern const char *const debug_type_names[];
34 extern void strip_off_ending (char *, int);
35 extern int base_of_path (const char *path, const char **base_out);
37 /* Return true iff flags are set as if -ffast-math. */
38 extern bool fast_math_flags_set_p (const struct gcc_options *);
39 extern bool fast_math_flags_struct_set_p (struct cl_optimization *);
41 /* Used to set the level of -Wstrict-aliasing in OPTS, when no level
42 is specified. The external way to set the default level is to use
43 -Wstrict-aliasing=level.
44 ONOFF is assumed to take value 1 when -Wstrict-aliasing is specified,
45 and 0 otherwise. After calling this function, wstrict_aliasing will be
46 set to the default value of -Wstrict_aliasing=level. */
48 extern void set_Wstrict_aliasing (struct gcc_options *opts, int onoff);
50 /* Now the symbols that are set with `-f' switches. */
52 /* True if printing into -fdump-final-insns= dump. */
54 extern bool final_insns_dump_p;
57 /* Other basic status info about current function. */
59 /* Target-dependent global state. */
60 struct target_flag_state {
61 /* Values of the -falign-* flags: how much to align labels in code.
62 0 means `use default', 1 means `don't align'.
63 For each variable, there is an _log variant which is the power
64 of two not less than the variable, for .align output. */
65 int x_align_loops_log;
66 int x_align_loops_max_skip;
67 int x_align_jumps_log;
68 int x_align_jumps_max_skip;
69 int x_align_labels_log;
70 int x_align_labels_max_skip;
71 int x_align_functions_log;
73 /* The excess precision currently in effect. */
74 enum excess_precision x_flag_excess_precision;
77 extern struct target_flag_state default_target_flag_state;
78 #if SWITCHABLE_TARGET
79 extern struct target_flag_state *this_target_flag_state;
80 #else
81 #define this_target_flag_state (&default_target_flag_state)
82 #endif
84 #define align_loops_log \
85 (this_target_flag_state->x_align_loops_log)
86 #define align_loops_max_skip \
87 (this_target_flag_state->x_align_loops_max_skip)
88 #define align_jumps_log \
89 (this_target_flag_state->x_align_jumps_log)
90 #define align_jumps_max_skip \
91 (this_target_flag_state->x_align_jumps_max_skip)
92 #define align_labels_log \
93 (this_target_flag_state->x_align_labels_log)
94 #define align_labels_max_skip \
95 (this_target_flag_state->x_align_labels_max_skip)
96 #define align_functions_log \
97 (this_target_flag_state->x_align_functions_log)
98 #define flag_excess_precision \
99 (this_target_flag_state->x_flag_excess_precision)
101 /* Nonzero if we dump in VCG format, not plain text. */
102 extern int dump_for_graph;
104 /* Returns TRUE if generated code should match ABI version N or
105 greater is in use. */
107 #define abi_version_at_least(N) \
108 (flag_abi_version == 0 || flag_abi_version >= (N))
110 /* True if overflow wraps around for the given integral type. That
111 is, TYPE_MAX + 1 == TYPE_MIN. */
112 #define TYPE_OVERFLOW_WRAPS(TYPE) \
113 (TYPE_UNSIGNED (TYPE) || flag_wrapv)
115 /* True if overflow is undefined for the given integral type. We may
116 optimize on the assumption that values in the type never overflow.
118 IMPORTANT NOTE: Any optimization based on TYPE_OVERFLOW_UNDEFINED
119 must issue a warning based on warn_strict_overflow. In some cases
120 it will be appropriate to issue the warning immediately, and in
121 other cases it will be appropriate to simply set a flag and let the
122 caller decide whether a warning is appropriate or not. */
123 #define TYPE_OVERFLOW_UNDEFINED(TYPE) \
124 (!TYPE_UNSIGNED (TYPE) && !flag_wrapv && !flag_trapv && flag_strict_overflow)
126 /* True if overflow for the given integral type should issue a
127 trap. */
128 #define TYPE_OVERFLOW_TRAPS(TYPE) \
129 (!TYPE_UNSIGNED (TYPE) && flag_trapv)
131 /* True if pointer types have undefined overflow. */
132 #define POINTER_TYPE_OVERFLOW_UNDEFINED (flag_strict_overflow)
134 /* Whether to emit an overflow warning whose code is C. */
135 #define issue_strict_overflow_warning(c) (warn_strict_overflow >= (int) (c))
137 #endif
139 #endif /* ! GCC_FLAGS_H */