OSDN Git Service

* sh.h (CPP_SPEC): Add -D__NOMACSAVE__ for -mnomacsave.
[pf3gnuchains/gcc-fork.git] / gcc / c-common.h
1 /* Definitions for c-common.c.
2    Copyright (C) 1987, 1993, 1994, 1995, 1997, 1998,
3    1999, 2000 Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 /* Standard named or nameless data types of the C compiler.  */
23
24 enum c_tree_index
25 {
26     CTI_WCHAR_TYPE,
27     CTI_SIGNED_WCHAR_TYPE,
28     CTI_UNSIGNED_WCHAR_TYPE,
29     CTI_WIDEST_INT_LIT_TYPE,
30     CTI_WIDEST_UINT_LIT_TYPE,
31
32     CTI_CHAR_ARRAY_TYPE,
33     CTI_WCHAR_ARRAY_TYPE,
34     CTI_INT_ARRAY_TYPE,
35     CTI_STRING_TYPE,
36     CTI_CONST_STRING_TYPE,
37
38     CTI_BOOLEAN_TYPE,
39     CTI_BOOLEAN_TRUE,
40     CTI_BOOLEAN_FALSE,
41     CTI_DEFAULT_FUNCTION_TYPE,
42     CTI_VOID_LIST,
43
44     CTI_VOID_FTYPE,
45     CTI_VOID_FTYPE_PTR,
46     CTI_INT_FTYPE_INT,
47     CTI_PTR_FTYPE_SIZETYPE,
48
49     CTI_G77_INTEGER_TYPE,
50     CTI_G77_UINTEGER_TYPE,
51     CTI_G77_LONGINT_TYPE,
52     CTI_G77_ULONGINT_TYPE,
53
54     CTI_MAX
55 };
56
57 extern tree c_global_trees[CTI_MAX];
58
59 #define wchar_type_node                 c_global_trees[CTI_WCHAR_TYPE]
60 #define signed_wchar_type_node          c_global_trees[CTI_SIGNED_WCHAR_TYPE]
61 #define unsigned_wchar_type_node        c_global_trees[CTI_UNSIGNED_WCHAR_TYPE]
62 #define widest_integer_literal_type_node c_global_trees[CTI_WIDEST_INT_LIT_TYPE]
63 #define widest_unsigned_literal_type_node c_global_trees[CTI_WIDEST_UINT_LIT_TYPE]
64
65 #define boolean_type_node               c_global_trees[CTI_BOOLEAN_TYPE]
66 #define boolean_true_node               c_global_trees[CTI_BOOLEAN_TRUE]
67 #define boolean_false_node              c_global_trees[CTI_BOOLEAN_FALSE]
68
69 #define char_array_type_node            c_global_trees[CTI_CHAR_ARRAY_TYPE]
70 #define wchar_array_type_node           c_global_trees[CTI_WCHAR_ARRAY_TYPE]
71 #define int_array_type_node             c_global_trees[CTI_INT_ARRAY_TYPE]
72 #define string_type_node                c_global_trees[CTI_STRING_TYPE]
73 #define const_string_type_node          c_global_trees[CTI_CONST_STRING_TYPE]
74
75 #define default_function_type           c_global_trees[CTI_DEFAULT_FUNCTION_TYPE]
76 #define void_list_node                  c_global_trees[CTI_VOID_LIST]
77 #define void_ftype                      c_global_trees[CTI_VOID_FTYPE]
78 #define void_ftype_ptr                  c_global_trees[CTI_VOID_FTYPE_PTR]
79 #define int_ftype_int                   c_global_trees[CTI_INT_FTYPE_INT]
80 #define ptr_ftype_sizetype              c_global_trees[CTI_PTR_FTYPE_SIZETYPE]
81
82 /* g77 integer types, which which must be kept in sync with f/com.h */
83 #define g77_integer_type_node           c_global_trees[CTI_G77_INTEGER_TYPE]
84 #define g77_uinteger_type_node          c_global_trees[CTI_G77_UINTEGER_TYPE]
85 #define g77_longint_type_node           c_global_trees[CTI_G77_LONGINT_TYPE]
86 #define g77_ulongint_type_node          c_global_trees[CTI_G77_ULONGINT_TYPE]
87
88 /* Pointer to function to generate the VAR_DECL for __FUNCTION__ etc.
89    ID is the identifier to use, NAME is the string.
90    TYPE_DEP indicates whether it depends on type of the function or not
91    (i.e. __PRETTY_FUNCTION__).  */
92
93 extern tree (*make_fname_decl)                  PARAMS ((tree, const char *, int));
94
95 extern void declare_function_name               PARAMS ((void));
96 extern void decl_attributes                     PARAMS ((tree, tree, tree));
97 extern void init_function_format_info           PARAMS ((void));
98 extern void check_function_format               PARAMS ((tree, tree, tree));
99 extern void c_apply_type_quals_to_decl          PARAMS ((int, tree));
100 extern HOST_WIDE_INT c_get_alias_set            PARAMS ((tree));
101 /* Print an error message for invalid operands to arith operation CODE.
102    NOP_EXPR is used as a special case (see truthvalue_conversion).  */
103 extern void binary_op_error                     PARAMS ((enum tree_code));
104 extern void c_expand_expr_stmt                  PARAMS ((tree));
105 extern void c_expand_start_cond                 PARAMS ((tree, int, int));
106 extern void c_expand_start_else                 PARAMS ((void));
107 extern void c_expand_end_cond                   PARAMS ((void));
108 /* Validate the expression after `case' and apply default promotions.  */
109 extern tree check_case_value                    PARAMS ((tree));
110 /* Concatenate a list of STRING_CST nodes into one STRING_CST.  */
111 extern tree combine_strings                     PARAMS ((tree));
112 extern void constant_expression_warning         PARAMS ((tree));
113 extern tree convert_and_check                   PARAMS ((tree, tree));
114 extern void overflow_warning                    PARAMS ((tree));
115 extern void unsigned_conversion_warning         PARAMS ((tree, tree));
116 /* Read the rest of the current #-directive line.  */
117 #if USE_CPPLIB
118 extern char *get_directive_line                 PARAMS ((void));
119 #define GET_DIRECTIVE_LINE() get_directive_line ()
120 #else
121 extern char *get_directive_line                 PARAMS ((FILE *));
122 #define GET_DIRECTIVE_LINE() get_directive_line (finput)
123 #endif
124
125 /* Subroutine of build_binary_op, used for comparison operations.
126    See if the operands have both been converted from subword integer types
127    and, if so, perhaps change them both back to their original type.  */
128 extern tree shorten_compare                     PARAMS ((tree *, tree *, tree *, enum tree_code *));
129 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
130    or validate its data type for an `if' or `while' statement or ?..: exp. */
131 extern tree truthvalue_conversion               PARAMS ((tree));
132 extern tree type_for_mode                       PARAMS ((enum machine_mode, int));
133 extern tree type_for_size                       PARAMS ((unsigned, int));
134
135 /* Build tree nodes and builtin functions common to both C and C++ language
136    frontends.  */
137 extern void c_common_nodes_and_builtins         PARAMS ((int, int, int));
138
139 extern tree build_va_arg                        PARAMS ((tree, tree));
140
141 /* Nonzero if the type T promotes to itself.
142    ANSI C states explicitly the list of types that promote;
143    in particular, short promotes to int even if they have the same width.  */
144 #define C_PROMOTING_INTEGER_TYPE_P(t)                           \
145   (TREE_CODE ((t)) == INTEGER_TYPE                              \
146    && (TYPE_MAIN_VARIANT (t) == char_type_node                  \
147        || TYPE_MAIN_VARIANT (t) == signed_char_type_node        \
148        || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node      \
149        || TYPE_MAIN_VARIANT (t) == short_integer_type_node      \
150        || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node))
151
152 extern int self_promoting_args_p                PARAMS ((tree));
153 extern tree simple_type_promotes_to             PARAMS ((tree));