annotate gcc/c-family/c-common.h @ 146:351920fa3827

merge
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 01 Mar 2020 16:13:28 +0900
parents d34655255c78 1830386684a0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Definitions for c-common.c.
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
2 Copyright (C) 1987-2020 Free Software Foundation, Inc.
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 This file is part of GCC.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 GCC is free software; you can redistribute it and/or modify it under
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 the terms of the GNU General Public License as published by the Free
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 Software Foundation; either version 3, or (at your option) any later
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 version.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 for more details.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 along with GCC; see the file COPYING3. If not see
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 <http://www.gnu.org/licenses/>. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 #ifndef GCC_C_COMMON_H
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21 #define GCC_C_COMMON_H
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
23 #include "splay-tree.h"
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
24 #include "cpplib.h"
111
kono
parents: 68
diff changeset
25 #include "alias.h"
kono
parents: 68
diff changeset
26 #include "tree.h"
kono
parents: 68
diff changeset
27 #include "fold-const.h"
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
28 #include "wide-int-bitmask.h"
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
29
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
30 /* In order for the format checking to accept the C frontend
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
31 diagnostic framework extensions, you must include this file before
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
32 diagnostic-core.h, not after. The C front end formats are a subset of those
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
33 for C++, so they are the appropriate set to use in common code;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
34 cp-tree.h overrides this for C++. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
35 #if defined(GCC_DIAGNOSTIC_CORE_H)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
36 #error \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
37 In order for the format checking to accept the C front end diagnostic \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
38 framework extensions, you must include this file before diagnostic-core.h \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
39 never after.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
40 #endif
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
41 #ifndef GCC_DIAG_STYLE
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
42 #define GCC_DIAG_STYLE __gcc_cdiag__
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
43 #endif
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
44 #include "diagnostic-core.h"
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
45
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
46 /* Usage of TREE_LANG_FLAG_?:
111
kono
parents: 68
diff changeset
47 0: IDENTIFIER_MARKED (used by search routines).
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
48 C_MAYBE_CONST_EXPR_INT_OPERANDS (in C_MAYBE_CONST_EXPR, for C)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
49 1: C_DECLARED_LABEL_FLAG (in LABEL_DECL)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
50 STATEMENT_LIST_STMT_EXPR (in STATEMENT_LIST)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
51 C_MAYBE_CONST_EXPR_NON_CONST (in C_MAYBE_CONST_EXPR, for C)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
52 2: unused
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
53 3: STATEMENT_LIST_HAS_LABEL (in STATEMENT_LIST)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
54 4: unused
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
55 */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
56
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
57 /* Reserved identifiers. This is the union of all the keywords for C,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58 C++, and Objective-C. All the type modifiers have to be in one
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
59 block at the beginning, because they are used as mask bits. There
111
kono
parents: 68
diff changeset
60 are 28 type modifiers; if we add many more we will have to redesign
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
61 the mask mechanism. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
62
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
63 enum rid
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
64 {
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
65 /* Modifiers: */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
66 /* C, in empirical order of frequency. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
67 RID_STATIC = 0,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
68 RID_UNSIGNED, RID_LONG, RID_CONST, RID_EXTERN,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
69 RID_REGISTER, RID_TYPEDEF, RID_SHORT, RID_INLINE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
70 RID_VOLATILE, RID_SIGNED, RID_AUTO, RID_RESTRICT,
111
kono
parents: 68
diff changeset
71 RID_NORETURN, RID_ATOMIC,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
72
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
73 /* C extensions */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
74 RID_COMPLEX, RID_THREAD, RID_SAT,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
75
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 /* C++ */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
77 RID_FRIEND, RID_VIRTUAL, RID_EXPLICIT, RID_EXPORT, RID_MUTABLE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
78
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
79 /* ObjC ("PQ" reserved words - they do not appear after a '@' and
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
80 are keywords only in specific contexts) */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
81 RID_IN, RID_OUT, RID_INOUT, RID_BYCOPY, RID_BYREF, RID_ONEWAY,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
82
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
83 /* ObjC ("PATTR" reserved words - they do not appear after a '@'
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
84 and are keywords only as property attributes) */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
85 RID_GETTER, RID_SETTER,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
86 RID_READONLY, RID_READWRITE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
87 RID_ASSIGN, RID_RETAIN, RID_COPY,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
88 RID_NONATOMIC,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
89
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
90 /* C (reserved and imaginary types not implemented, so any use is a
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
91 syntax error) */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
92 RID_IMAGINARY,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
93
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
94 /* C */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
95 RID_INT, RID_CHAR, RID_FLOAT, RID_DOUBLE, RID_VOID,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
96 RID_ENUM, RID_STRUCT, RID_UNION, RID_IF, RID_ELSE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
97 RID_WHILE, RID_DO, RID_FOR, RID_SWITCH, RID_CASE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
98 RID_DEFAULT, RID_BREAK, RID_CONTINUE, RID_RETURN, RID_GOTO,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
99 RID_SIZEOF,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
100
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
101 /* C extensions */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
102 RID_ASM, RID_TYPEOF, RID_ALIGNOF, RID_ATTRIBUTE, RID_VA_ARG,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
103 RID_EXTENSION, RID_IMAGPART, RID_REALPART, RID_LABEL, RID_CHOOSE_EXPR,
111
kono
parents: 68
diff changeset
104 RID_TYPES_COMPATIBLE_P, RID_BUILTIN_COMPLEX, RID_BUILTIN_SHUFFLE,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
105 RID_BUILTIN_CONVERTVECTOR, RID_BUILTIN_TGMATH,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
106 RID_BUILTIN_HAS_ATTRIBUTE,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
107 RID_DFLOAT32, RID_DFLOAT64, RID_DFLOAT128,
111
kono
parents: 68
diff changeset
108
kono
parents: 68
diff changeset
109 /* TS 18661-3 keywords, in the same sequence as the TI_* values. */
kono
parents: 68
diff changeset
110 RID_FLOAT16,
kono
parents: 68
diff changeset
111 RID_FLOATN_NX_FIRST = RID_FLOAT16,
kono
parents: 68
diff changeset
112 RID_FLOAT32,
kono
parents: 68
diff changeset
113 RID_FLOAT64,
kono
parents: 68
diff changeset
114 RID_FLOAT128,
kono
parents: 68
diff changeset
115 RID_FLOAT32X,
kono
parents: 68
diff changeset
116 RID_FLOAT64X,
kono
parents: 68
diff changeset
117 RID_FLOAT128X,
kono
parents: 68
diff changeset
118 #define CASE_RID_FLOATN_NX \
kono
parents: 68
diff changeset
119 case RID_FLOAT16: case RID_FLOAT32: case RID_FLOAT64: case RID_FLOAT128: \
kono
parents: 68
diff changeset
120 case RID_FLOAT32X: case RID_FLOAT64X: case RID_FLOAT128X
kono
parents: 68
diff changeset
121
kono
parents: 68
diff changeset
122 RID_FRACT, RID_ACCUM, RID_AUTO_TYPE, RID_BUILTIN_CALL_WITH_STATIC_CHAIN,
kono
parents: 68
diff changeset
123
kono
parents: 68
diff changeset
124 /* "__GIMPLE", for the GIMPLE-parsing extension to the C frontend. */
kono
parents: 68
diff changeset
125 RID_GIMPLE,
kono
parents: 68
diff changeset
126
kono
parents: 68
diff changeset
127 /* "__PHI", for parsing PHI function in GIMPLE FE. */
kono
parents: 68
diff changeset
128 RID_PHI,
kono
parents: 68
diff changeset
129
kono
parents: 68
diff changeset
130 /* "__RTL", for the RTL-parsing extension to the C frontend. */
kono
parents: 68
diff changeset
131 RID_RTL,
kono
parents: 68
diff changeset
132
kono
parents: 68
diff changeset
133 /* C11 */
kono
parents: 68
diff changeset
134 RID_ALIGNAS, RID_GENERIC,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
135
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
136 /* This means to warn that this is a C++ keyword, and then treat it
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
137 as a normal identifier. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
138 RID_CXX_COMPAT_WARN,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
139
111
kono
parents: 68
diff changeset
140 /* GNU transactional memory extension */
kono
parents: 68
diff changeset
141 RID_TRANSACTION_ATOMIC, RID_TRANSACTION_RELAXED, RID_TRANSACTION_CANCEL,
kono
parents: 68
diff changeset
142
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
143 /* Too many ways of getting the name of a function as a string */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
144 RID_FUNCTION_NAME, RID_PRETTY_FUNCTION_NAME, RID_C99_FUNCTION_NAME,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
145
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
146 /* C++ (some of these are keywords in Objective-C as well, but only
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
147 if they appear after a '@') */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
148 RID_BOOL, RID_WCHAR, RID_CLASS,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
149 RID_PUBLIC, RID_PRIVATE, RID_PROTECTED,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
150 RID_TEMPLATE, RID_NULL, RID_CATCH,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
151 RID_DELETE, RID_FALSE, RID_NAMESPACE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
152 RID_NEW, RID_OFFSETOF, RID_OPERATOR,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
153 RID_THIS, RID_THROW, RID_TRUE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
154 RID_TRY, RID_TYPENAME, RID_TYPEID,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
155 RID_USING, RID_CHAR16, RID_CHAR32,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
156
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
157 /* casts */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
158 RID_CONSTCAST, RID_DYNCAST, RID_REINTCAST, RID_STATCAST,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
159
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
160 /* C++ extensions */
111
kono
parents: 68
diff changeset
161 RID_ADDRESSOF, RID_BASES,
kono
parents: 68
diff changeset
162 RID_BUILTIN_LAUNDER, RID_DIRECT_BASES,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
163 RID_HAS_NOTHROW_ASSIGN, RID_HAS_NOTHROW_CONSTRUCTOR,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
164 RID_HAS_NOTHROW_COPY, RID_HAS_TRIVIAL_ASSIGN,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
165 RID_HAS_TRIVIAL_CONSTRUCTOR, RID_HAS_TRIVIAL_COPY,
111
kono
parents: 68
diff changeset
166 RID_HAS_TRIVIAL_DESTRUCTOR, RID_HAS_UNIQUE_OBJ_REPRESENTATIONS,
kono
parents: 68
diff changeset
167 RID_HAS_VIRTUAL_DESTRUCTOR,
kono
parents: 68
diff changeset
168 RID_IS_ABSTRACT, RID_IS_AGGREGATE,
kono
parents: 68
diff changeset
169 RID_IS_BASE_OF, RID_IS_CLASS,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
170 RID_IS_EMPTY, RID_IS_ENUM,
111
kono
parents: 68
diff changeset
171 RID_IS_FINAL, RID_IS_LITERAL_TYPE,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
172 RID_IS_POD, RID_IS_POLYMORPHIC,
111
kono
parents: 68
diff changeset
173 RID_IS_SAME_AS,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
174 RID_IS_STD_LAYOUT, RID_IS_TRIVIAL,
111
kono
parents: 68
diff changeset
175 RID_IS_TRIVIALLY_ASSIGNABLE, RID_IS_TRIVIALLY_CONSTRUCTIBLE,
kono
parents: 68
diff changeset
176 RID_IS_TRIVIALLY_COPYABLE,
kono
parents: 68
diff changeset
177 RID_IS_UNION, RID_UNDERLYING_TYPE,
kono
parents: 68
diff changeset
178 RID_IS_ASSIGNABLE, RID_IS_CONSTRUCTIBLE,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
179
111
kono
parents: 68
diff changeset
180 /* C++11 */
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
181 RID_CONSTEXPR, RID_DECLTYPE, RID_NOEXCEPT, RID_NULLPTR, RID_STATIC_ASSERT,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
182
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
183 /* C++20 */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
184 RID_CONSTINIT, RID_CONSTEVAL,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
185
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
186 /* char8_t */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
187 RID_CHAR8,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
188
111
kono
parents: 68
diff changeset
189 /* C++ concepts */
kono
parents: 68
diff changeset
190 RID_CONCEPT, RID_REQUIRES,
kono
parents: 68
diff changeset
191
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
192 /* C++ coroutines */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
193 RID_CO_AWAIT, RID_CO_YIELD, RID_CO_RETURN,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
194
111
kono
parents: 68
diff changeset
195 /* C++ transactional memory. */
kono
parents: 68
diff changeset
196 RID_ATOMIC_NOEXCEPT, RID_ATOMIC_CANCEL, RID_SYNCHRONIZED,
kono
parents: 68
diff changeset
197
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
198 /* Objective-C ("AT" reserved words - they are only keywords when
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
199 they follow '@') */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
200 RID_AT_ENCODE, RID_AT_END,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
201 RID_AT_CLASS, RID_AT_ALIAS, RID_AT_DEFS,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
202 RID_AT_PRIVATE, RID_AT_PROTECTED, RID_AT_PUBLIC, RID_AT_PACKAGE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
203 RID_AT_PROTOCOL, RID_AT_SELECTOR,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
204 RID_AT_THROW, RID_AT_TRY, RID_AT_CATCH,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
205 RID_AT_FINALLY, RID_AT_SYNCHRONIZED,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
206 RID_AT_OPTIONAL, RID_AT_REQUIRED, RID_AT_PROPERTY,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
207 RID_AT_SYNTHESIZE, RID_AT_DYNAMIC,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
208 RID_AT_INTERFACE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
209 RID_AT_IMPLEMENTATION,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
210
70
b81903832de2 merge c-decl.c
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 68
diff changeset
211 #ifndef noCbC
b81903832de2 merge c-decl.c
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 68
diff changeset
212 /* Continuation based C */
98
5211b774b8b5 implemeted selftype expression. add CbC-exanples/selftype.c
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 90
diff changeset
213 RID_CbC_CODE, RID_CbC_ENV, RID_CbC_RET,
70
b81903832de2 merge c-decl.c
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 68
diff changeset
214 #endif
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
215 /* Named address support, mapping the keyword to a particular named address
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
216 number. Named address space 0 is reserved for the generic address. If
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
217 there are more than 254 named addresses, the addr_space_t type will need
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
218 to be grown from an unsigned char to unsigned short. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
219 RID_ADDR_SPACE_0, /* generic address */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
220 RID_ADDR_SPACE_1,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
221 RID_ADDR_SPACE_2,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
222 RID_ADDR_SPACE_3,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
223 RID_ADDR_SPACE_4,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
224 RID_ADDR_SPACE_5,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
225 RID_ADDR_SPACE_6,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
226 RID_ADDR_SPACE_7,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
227 RID_ADDR_SPACE_8,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
228 RID_ADDR_SPACE_9,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
229 RID_ADDR_SPACE_10,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
230 RID_ADDR_SPACE_11,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
231 RID_ADDR_SPACE_12,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
232 RID_ADDR_SPACE_13,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
233 RID_ADDR_SPACE_14,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
234 RID_ADDR_SPACE_15,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
235
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
236 RID_FIRST_ADDR_SPACE = RID_ADDR_SPACE_0,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
237 RID_LAST_ADDR_SPACE = RID_ADDR_SPACE_15,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
238
111
kono
parents: 68
diff changeset
239 /* __intN keywords. The _N_M here doesn't correspond to the intN
kono
parents: 68
diff changeset
240 in the keyword; use the bitsize in int_n_t_data_t[M] for that.
kono
parents: 68
diff changeset
241 For example, if int_n_t_data_t[0].bitsize is 13, then RID_INT_N_0
kono
parents: 68
diff changeset
242 is for __int13. */
kono
parents: 68
diff changeset
243
kono
parents: 68
diff changeset
244 /* Note that the range to use is RID_FIRST_INT_N through
kono
parents: 68
diff changeset
245 RID_FIRST_INT_N + NUM_INT_N_ENTS - 1 and c-parser.c has a list of
kono
parents: 68
diff changeset
246 all RID_INT_N_* in a case statement. */
kono
parents: 68
diff changeset
247
kono
parents: 68
diff changeset
248 RID_INT_N_0,
kono
parents: 68
diff changeset
249 RID_INT_N_1,
kono
parents: 68
diff changeset
250 RID_INT_N_2,
kono
parents: 68
diff changeset
251 RID_INT_N_3,
kono
parents: 68
diff changeset
252
kono
parents: 68
diff changeset
253 RID_FIRST_INT_N = RID_INT_N_0,
kono
parents: 68
diff changeset
254 RID_LAST_INT_N = RID_INT_N_3,
kono
parents: 68
diff changeset
255
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
256 RID_MAX,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
257
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
258 RID_FIRST_MODIFIER = RID_STATIC,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
259 RID_LAST_MODIFIER = RID_ONEWAY,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
260
111
kono
parents: 68
diff changeset
261 RID_FIRST_CXX11 = RID_CONSTEXPR,
kono
parents: 68
diff changeset
262 RID_LAST_CXX11 = RID_STATIC_ASSERT,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
263 RID_FIRST_CXX20 = RID_CONSTINIT,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
264 RID_LAST_CXX20 = RID_CONSTINIT,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
265 RID_FIRST_AT = RID_AT_ENCODE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
266 RID_LAST_AT = RID_AT_IMPLEMENTATION,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
267 RID_FIRST_PQ = RID_IN,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
268 RID_LAST_PQ = RID_ONEWAY,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
269 RID_FIRST_PATTR = RID_GETTER,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
270 RID_LAST_PATTR = RID_NONATOMIC
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
271 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
272
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
273 #define OBJC_IS_AT_KEYWORD(rid) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
274 ((unsigned int) (rid) >= (unsigned int) RID_FIRST_AT && \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
275 (unsigned int) (rid) <= (unsigned int) RID_LAST_AT)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
276
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
277 #define OBJC_IS_PQ_KEYWORD(rid) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
278 ((unsigned int) (rid) >= (unsigned int) RID_FIRST_PQ && \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
279 (unsigned int) (rid) <= (unsigned int) RID_LAST_PQ)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
280
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
281 #define OBJC_IS_PATTR_KEYWORD(rid) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
282 ((unsigned int) (rid) >= (unsigned int) RID_FIRST_PATTR && \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
283 (unsigned int) (rid) <= (unsigned int) RID_LAST_PATTR)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
284
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
285 /* OBJC_IS_CXX_KEYWORD recognizes the 'CXX_OBJC' keywords (such as
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
286 'class') which are shared in a subtle way between Objective-C and
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
287 C++. When the lexer is lexing in Objective-C/Objective-C++, if it
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
288 finds '@' followed by one of these identifiers (eg, '@class'), it
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
289 recognizes the whole as an Objective-C keyword. If the identifier
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
290 is found elsewhere, it follows the rules of the C/C++ language.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
291 */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
292 #define OBJC_IS_CXX_KEYWORD(rid) \
111
kono
parents: 68
diff changeset
293 (rid == RID_CLASS || rid == RID_SYNCHRONIZED \
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
294 || rid == RID_PUBLIC || rid == RID_PROTECTED || rid == RID_PRIVATE \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
295 || rid == RID_TRY || rid == RID_THROW || rid == RID_CATCH)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
296
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
297 /* The elements of `ridpointers' are identifier nodes for the reserved
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
298 type names and storage classes. It is indexed by a RID_... value. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
299 extern GTY ((length ("(int) RID_MAX"))) tree *ridpointers;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
300
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
301 /* Standard named or nameless data types of the C compiler. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
302
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
303 enum c_tree_index
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
304 {
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
305 CTI_CHAR8_TYPE,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
306 CTI_CHAR16_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
307 CTI_CHAR32_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
308 CTI_WCHAR_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
309 CTI_UNDERLYING_WCHAR_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
310 CTI_WINT_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
311 CTI_SIGNED_SIZE_TYPE, /* For format checking only. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
312 CTI_UNSIGNED_PTRDIFF_TYPE, /* For format checking only. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
313 CTI_INTMAX_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
314 CTI_UINTMAX_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
315 CTI_WIDEST_INT_LIT_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
316 CTI_WIDEST_UINT_LIT_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
317
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
318 /* Types for <stdint.h>, that may not be defined on all
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
319 targets. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
320 CTI_SIG_ATOMIC_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
321 CTI_INT8_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
322 CTI_INT16_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
323 CTI_INT32_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
324 CTI_INT64_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
325 CTI_UINT8_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
326 CTI_UINT16_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
327 CTI_UINT32_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
328 CTI_UINT64_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
329 CTI_INT_LEAST8_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
330 CTI_INT_LEAST16_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
331 CTI_INT_LEAST32_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
332 CTI_INT_LEAST64_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
333 CTI_UINT_LEAST8_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
334 CTI_UINT_LEAST16_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
335 CTI_UINT_LEAST32_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
336 CTI_UINT_LEAST64_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
337 CTI_INT_FAST8_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
338 CTI_INT_FAST16_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
339 CTI_INT_FAST32_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
340 CTI_INT_FAST64_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
341 CTI_UINT_FAST8_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
342 CTI_UINT_FAST16_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
343 CTI_UINT_FAST32_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
344 CTI_UINT_FAST64_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
345 CTI_INTPTR_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
346 CTI_UINTPTR_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
347
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
348 CTI_CHAR_ARRAY_TYPE,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
349 CTI_CHAR8_ARRAY_TYPE,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
350 CTI_CHAR16_ARRAY_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
351 CTI_CHAR32_ARRAY_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
352 CTI_WCHAR_ARRAY_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
353 CTI_STRING_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
354 CTI_CONST_STRING_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
355
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
356 /* Type for boolean expressions (bool in C++, int in C). */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
357 CTI_TRUTHVALUE_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
358 CTI_TRUTHVALUE_TRUE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
359 CTI_TRUTHVALUE_FALSE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
360
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
361 CTI_DEFAULT_FUNCTION_TYPE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
362
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
363 /* These are not types, but we have to look them up all the time. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
364 CTI_FUNCTION_NAME_DECL,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
365 CTI_PRETTY_FUNCTION_NAME_DECL,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
366 CTI_C99_FUNCTION_NAME_DECL,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
367 CTI_SAVED_FUNCTION_NAME_DECLS,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
368
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
369 CTI_NULL,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
370
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
371 CTI_MAX
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
372 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
373
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
374 #define C_CPP_HASHNODE(id) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
375 (&(((struct c_common_identifier *) (id))->node))
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
376 #define C_RID_CODE(id) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
377 ((enum rid) (((struct c_common_identifier *) (id))->node.rid_code))
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
378 #define C_SET_RID_CODE(id, code) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
379 (((struct c_common_identifier *) (id))->node.rid_code = (unsigned char) code)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
380
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
381 /* Identifier part common to the C front ends. Inherits from
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
382 tree_identifier, despite appearances. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
383 struct GTY(()) c_common_identifier {
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
384 struct tree_common common;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
385 struct cpp_hashnode node;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
386 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
387
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
388 /* An entry in the reserved keyword table. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
389
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
390 struct c_common_resword
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
391 {
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
392 const char *const word;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
393 ENUM_BITFIELD(rid) const rid : 16;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
394 const unsigned int disable : 16;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
395 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
396
111
kono
parents: 68
diff changeset
397 /* Mode used to build pointers (VOIDmode means ptr_mode). */
kono
parents: 68
diff changeset
398
kono
parents: 68
diff changeset
399 extern machine_mode c_default_pointer_mode;
kono
parents: 68
diff changeset
400
kono
parents: 68
diff changeset
401 /* Extra cpp_ttype values for C++. */
kono
parents: 68
diff changeset
402
kono
parents: 68
diff changeset
403 /* A token type for template-ids. If a template-id is processed while
kono
parents: 68
diff changeset
404 parsing tentatively, it is replaced with a CPP_TEMPLATE_ID token;
kono
parents: 68
diff changeset
405 the value of the CPP_TEMPLATE_ID is whatever was returned by
kono
parents: 68
diff changeset
406 cp_parser_template_id. */
kono
parents: 68
diff changeset
407 #define CPP_TEMPLATE_ID ((enum cpp_ttype) (CPP_KEYWORD + 1))
kono
parents: 68
diff changeset
408
kono
parents: 68
diff changeset
409 /* A token type for nested-name-specifiers. If a
kono
parents: 68
diff changeset
410 nested-name-specifier is processed while parsing tentatively, it is
kono
parents: 68
diff changeset
411 replaced with a CPP_NESTED_NAME_SPECIFIER token; the value of the
kono
parents: 68
diff changeset
412 CPP_NESTED_NAME_SPECIFIER is whatever was returned by
kono
parents: 68
diff changeset
413 cp_parser_nested_name_specifier_opt. */
kono
parents: 68
diff changeset
414 #define CPP_NESTED_NAME_SPECIFIER ((enum cpp_ttype) (CPP_TEMPLATE_ID + 1))
kono
parents: 68
diff changeset
415
kono
parents: 68
diff changeset
416 /* A token type for pre-parsed C++0x decltype. */
kono
parents: 68
diff changeset
417 #define CPP_DECLTYPE ((enum cpp_ttype) (CPP_NESTED_NAME_SPECIFIER + 1))
kono
parents: 68
diff changeset
418
kono
parents: 68
diff changeset
419 /* A token type for pre-parsed primary-expression (lambda- or statement-). */
kono
parents: 68
diff changeset
420 #define CPP_PREPARSED_EXPR ((enum cpp_ttype) (CPP_DECLTYPE + 1))
kono
parents: 68
diff changeset
421
kono
parents: 68
diff changeset
422 /* The number of token types, including C++-specific ones. */
kono
parents: 68
diff changeset
423 #define N_CP_TTYPES ((int) (CPP_PREPARSED_EXPR + 1))
kono
parents: 68
diff changeset
424
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
425 /* Disable mask. Keywords are disabled if (reswords[i].disable &
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
426 mask) is _true_. Thus for keywords which are present in all
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
427 languages the disable field is zero. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
428
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
429 #define D_CONLY 0x0001 /* C only (not in C++). */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
430 #define D_CXXONLY 0x0002 /* C++ only (not in C). */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
431 #define D_C99 0x0004 /* In C, C99 only. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
432 #define D_CXX11 0x0008 /* In C++, C++11 only. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
433 #define D_EXT 0x0010 /* GCC extension. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
434 #define D_EXT89 0x0020 /* GCC extension incorporated in C99. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
435 #define D_ASM 0x0040 /* Disabled by -fno-asm. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
436 #define D_OBJC 0x0080 /* In Objective C and neither C nor C++. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
437 #define D_CXX_OBJC 0x0100 /* In Objective C, and C++, but not C. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
438 #define D_CXXWARN 0x0200 /* In C warn with -Wcxx-compat. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
439 #define D_CXX_CONCEPTS 0x0400 /* In C++, only with concepts. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
440 #define D_TRANSMEM 0X0800 /* C++ transactional memory TS. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
441 #define D_CXX_CHAR8_T 0X1000 /* In C++, only with -fchar8_t. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
442 #define D_CXX20 0x2000 /* In C++, C++20 only. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
443 #define D_CXX_COROUTINES 0x4000 /* In C++, only with coroutines. */
111
kono
parents: 68
diff changeset
444
kono
parents: 68
diff changeset
445 #define D_CXX_CONCEPTS_FLAGS D_CXXONLY | D_CXX_CONCEPTS
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
446 #define D_CXX_CHAR8_T_FLAGS D_CXXONLY | D_CXX_CHAR8_T
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
447 #define D_CXX_COROUTINES_FLAGS (D_CXXONLY | D_CXX_COROUTINES)
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
448
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
449 /* The reserved keyword table. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
450 extern const struct c_common_resword c_common_reswords[];
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
451
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
452 /* The number of items in the reserved keyword table. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
453 extern const unsigned int num_c_common_reswords;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
454
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
455 #define char8_type_node c_global_trees[CTI_CHAR8_TYPE]
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
456 #define char16_type_node c_global_trees[CTI_CHAR16_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
457 #define char32_type_node c_global_trees[CTI_CHAR32_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
458 #define wchar_type_node c_global_trees[CTI_WCHAR_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
459 #define underlying_wchar_type_node c_global_trees[CTI_UNDERLYING_WCHAR_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
460 #define wint_type_node c_global_trees[CTI_WINT_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
461 #define signed_size_type_node c_global_trees[CTI_SIGNED_SIZE_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
462 #define unsigned_ptrdiff_type_node c_global_trees[CTI_UNSIGNED_PTRDIFF_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
463 #define intmax_type_node c_global_trees[CTI_INTMAX_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
464 #define uintmax_type_node c_global_trees[CTI_UINTMAX_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
465 #define widest_integer_literal_type_node c_global_trees[CTI_WIDEST_INT_LIT_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
466 #define widest_unsigned_literal_type_node c_global_trees[CTI_WIDEST_UINT_LIT_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
467
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
468 #define sig_atomic_type_node c_global_trees[CTI_SIG_ATOMIC_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
469 #define int8_type_node c_global_trees[CTI_INT8_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
470 #define int16_type_node c_global_trees[CTI_INT16_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
471 #define int32_type_node c_global_trees[CTI_INT32_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
472 #define int64_type_node c_global_trees[CTI_INT64_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
473 #define uint8_type_node c_global_trees[CTI_UINT8_TYPE]
111
kono
parents: 68
diff changeset
474 #define c_uint16_type_node c_global_trees[CTI_UINT16_TYPE]
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
475 #define c_uint32_type_node c_global_trees[CTI_UINT32_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
476 #define c_uint64_type_node c_global_trees[CTI_UINT64_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
477 #define int_least8_type_node c_global_trees[CTI_INT_LEAST8_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
478 #define int_least16_type_node c_global_trees[CTI_INT_LEAST16_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
479 #define int_least32_type_node c_global_trees[CTI_INT_LEAST32_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
480 #define int_least64_type_node c_global_trees[CTI_INT_LEAST64_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
481 #define uint_least8_type_node c_global_trees[CTI_UINT_LEAST8_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
482 #define uint_least16_type_node c_global_trees[CTI_UINT_LEAST16_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
483 #define uint_least32_type_node c_global_trees[CTI_UINT_LEAST32_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
484 #define uint_least64_type_node c_global_trees[CTI_UINT_LEAST64_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
485 #define int_fast8_type_node c_global_trees[CTI_INT_FAST8_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
486 #define int_fast16_type_node c_global_trees[CTI_INT_FAST16_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
487 #define int_fast32_type_node c_global_trees[CTI_INT_FAST32_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
488 #define int_fast64_type_node c_global_trees[CTI_INT_FAST64_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
489 #define uint_fast8_type_node c_global_trees[CTI_UINT_FAST8_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
490 #define uint_fast16_type_node c_global_trees[CTI_UINT_FAST16_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
491 #define uint_fast32_type_node c_global_trees[CTI_UINT_FAST32_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
492 #define uint_fast64_type_node c_global_trees[CTI_UINT_FAST64_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
493 #define intptr_type_node c_global_trees[CTI_INTPTR_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
494 #define uintptr_type_node c_global_trees[CTI_UINTPTR_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
495
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
496 #define truthvalue_type_node c_global_trees[CTI_TRUTHVALUE_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
497 #define truthvalue_true_node c_global_trees[CTI_TRUTHVALUE_TRUE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
498 #define truthvalue_false_node c_global_trees[CTI_TRUTHVALUE_FALSE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
499
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
500 #define char_array_type_node c_global_trees[CTI_CHAR_ARRAY_TYPE]
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
501 #define char8_array_type_node c_global_trees[CTI_CHAR8_ARRAY_TYPE]
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
502 #define char16_array_type_node c_global_trees[CTI_CHAR16_ARRAY_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
503 #define char32_array_type_node c_global_trees[CTI_CHAR32_ARRAY_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
504 #define wchar_array_type_node c_global_trees[CTI_WCHAR_ARRAY_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
505 #define string_type_node c_global_trees[CTI_STRING_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
506 #define const_string_type_node c_global_trees[CTI_CONST_STRING_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
507
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
508 #define default_function_type c_global_trees[CTI_DEFAULT_FUNCTION_TYPE]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
509
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
510 #define function_name_decl_node c_global_trees[CTI_FUNCTION_NAME_DECL]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
511 #define pretty_function_name_decl_node c_global_trees[CTI_PRETTY_FUNCTION_NAME_DECL]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
512 #define c99_function_name_decl_node c_global_trees[CTI_C99_FUNCTION_NAME_DECL]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
513 #define saved_function_name_decls c_global_trees[CTI_SAVED_FUNCTION_NAME_DECLS]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
514
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
515 /* The node for C++ `__null'. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
516 #define null_node c_global_trees[CTI_NULL]
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
517
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
518 extern GTY(()) tree c_global_trees[CTI_MAX];
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
519
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
520 /* Mark which labels are explicitly declared.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
521 These may be shadowed, and may be referenced from nested functions. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
522 #define C_DECLARED_LABEL_FLAG(label) TREE_LANG_FLAG_1 (label)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
523
111
kono
parents: 68
diff changeset
524 enum c_language_kind
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
525 {
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
526 clk_c = 0, /* C90, C94, C99, C11 or C2X */
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
527 clk_objc = 1, /* clk_c with ObjC features. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
528 clk_cxx = 2, /* ANSI/ISO C++ */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
529 clk_objcxx = 3 /* clk_cxx with ObjC features. */
111
kono
parents: 68
diff changeset
530 };
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
531
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
532 /* To test for a specific language use c_language, defined by each
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
533 front end. For "ObjC features" or "not C++" use the macros. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
534 extern c_language_kind c_language;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
535
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
536 #define c_dialect_cxx() ((c_language & clk_cxx) != 0)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
537 #define c_dialect_objc() ((c_language & clk_objc) != 0)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
538
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
539 /* The various name of operator that appears in error messages. */
111
kono
parents: 68
diff changeset
540 enum ref_operator {
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
541 /* NULL */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
542 RO_NULL,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
543 /* array indexing */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
544 RO_ARRAY_INDEXING,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
545 /* unary * */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
546 RO_UNARY_STAR,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
547 /* -> */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
548 RO_ARROW,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
549 /* implicit conversion */
111
kono
parents: 68
diff changeset
550 RO_IMPLICIT_CONVERSION,
kono
parents: 68
diff changeset
551 /* ->* */
kono
parents: 68
diff changeset
552 RO_ARROW_STAR
kono
parents: 68
diff changeset
553 };
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
554
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
555 /* Information about a statement tree. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
556
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
557 struct GTY(()) stmt_tree_s {
111
kono
parents: 68
diff changeset
558 /* A stack of statement lists being collected. */
kono
parents: 68
diff changeset
559 vec<tree, va_gc> *x_cur_stmt_list;
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
560
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
561 /* In C++, Nonzero if we should treat statements as full
111
kono
parents: 68
diff changeset
562 expressions. In particular, this variable is non-zero if at the
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
563 end of a statement we should destroy any temporaries created
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
564 during that statement. Similarly, if, at the end of a block, we
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
565 should destroy any local variables in this block. Normally, this
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
566 variable is nonzero, since those are the normal semantics of
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
567 C++.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
568
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
569 This flag has no effect in C. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
570 int stmts_are_full_exprs_p;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
571 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
572
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
573 typedef struct stmt_tree_s *stmt_tree;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
574
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
575 /* Global state pertinent to the current function. Some C dialects
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
576 extend this structure with additional fields. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
577
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
578 struct GTY(()) c_language_function {
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
579 /* While we are parsing the function, this contains information
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
580 about the statement-tree that we are building. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
581 struct stmt_tree_s x_stmt_tree;
111
kono
parents: 68
diff changeset
582
kono
parents: 68
diff changeset
583 /* Vector of locally defined typedefs, for
kono
parents: 68
diff changeset
584 -Wunused-local-typedefs. */
kono
parents: 68
diff changeset
585 vec<tree, va_gc> *local_typedefs;
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
586 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
587
111
kono
parents: 68
diff changeset
588 #define stmt_list_stack (current_stmt_tree ()->x_cur_stmt_list)
kono
parents: 68
diff changeset
589
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
590 /* When building a statement-tree, this is the current statement list
111
kono
parents: 68
diff changeset
591 being collected. */
kono
parents: 68
diff changeset
592 #define cur_stmt_list (stmt_list_stack->last ())
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
593
111
kono
parents: 68
diff changeset
594 #define building_stmt_list_p() (stmt_list_stack && !stmt_list_stack->is_empty())
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
595
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
596 /* Language-specific hooks. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
597
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
598 /* If non-NULL, this function is called after a precompile header file
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
599 is loaded. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
600 extern void (*lang_post_pch_load) (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
601
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
602 extern void push_file_scope (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
603 extern void pop_file_scope (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
604 extern stmt_tree current_stmt_tree (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
605 extern tree push_stmt_list (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
606 extern tree pop_stmt_list (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
607 extern tree add_stmt (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
608 extern void push_cleanup (tree, tree, bool);
111
kono
parents: 68
diff changeset
609
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
610 extern tree build_modify_expr (location_t, tree, tree, enum tree_code,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
611 location_t, tree, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
612 extern tree build_indirect_ref (location_t, tree, ref_operator);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
613
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
614 extern bool has_c_linkage (const_tree decl);
111
kono
parents: 68
diff changeset
615 extern bool c_decl_implicit (const_tree);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
616
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
617 /* Switches common to the C front ends. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
618
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
619 /* Nonzero means don't output line number information. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
620
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
621 extern char flag_no_line_commands;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
622
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
623 /* Nonzero causes -E output not to be done, but directives such as
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
624 #define that have side effects are still obeyed. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
625
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
626 extern char flag_no_output;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
627
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
628 /* Nonzero means dump macros in some fashion; contains the 'D', 'M',
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
629 'N' or 'U' of the command line switch. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
630
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
631 extern char flag_dump_macros;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
632
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
633 /* Nonzero means pass #include lines through to the output. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
634
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
635 extern char flag_dump_includes;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
636
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
637 /* Nonzero means process PCH files while preprocessing. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
638
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
639 extern bool flag_pch_preprocess;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
640
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
641 /* The file name to which we should write a precompiled header, or
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
642 NULL if no header will be written in this compile. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
643
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
644 extern const char *pch_file;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
645
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
646 /* Nonzero if an ISO standard was selected. It rejects macros in the
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
647 user's namespace. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
648
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
649 extern int flag_iso;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
650
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
651 /* C/ObjC language option variables. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
652
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
653
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
654 /* Nonzero means allow type mismatches in conditional expressions;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
655 just make their values `void'. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
656
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
657 extern int flag_cond_mismatch;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
658
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
659 /* Nonzero means enable C89 Amendment 1 features. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
660
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
661 extern int flag_isoc94;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
662
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
663 /* Nonzero means use the ISO C99 (or later) dialect of C. */
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
664
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
665 extern int flag_isoc99;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
666
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
667 /* Nonzero means use the ISO C11 (or later) dialect of C. */
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
668
111
kono
parents: 68
diff changeset
669 extern int flag_isoc11;
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
670
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
671 /* Nonzero means use the ISO C2X dialect of C. */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
672
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
673 extern int flag_isoc2x;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
674
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
675 /* Nonzero means that we have builtin functions, and main is an int. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
676
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
677 extern int flag_hosted;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
678
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
679 /* ObjC language option variables. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
680
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
681
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
682 /* Tells the compiler that this is a special run. Do not perform any
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
683 compiling, instead we are to test some platform dependent features
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
684 and output a C header file with appropriate definitions. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
685
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
686 extern int print_struct_values;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
687
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
688 /* Tells the compiler what is the constant string class for ObjC. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
689
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
690 extern const char *constant_string_class_name;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
691
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
692
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
693 /* C++ language option variables. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
694
111
kono
parents: 68
diff changeset
695 /* The reference version of the ABI for -Wabi. */
kono
parents: 68
diff changeset
696
kono
parents: 68
diff changeset
697 extern int warn_abi_version;
kono
parents: 68
diff changeset
698
kono
parents: 68
diff changeset
699 /* Return TRUE if one of {flag_abi_version,flag_abi_compat_version} is
kono
parents: 68
diff changeset
700 less than N and the other is at least N. */
kono
parents: 68
diff changeset
701 #define abi_compat_version_crosses(N) \
kono
parents: 68
diff changeset
702 (abi_version_at_least(N) \
kono
parents: 68
diff changeset
703 != (flag_abi_compat_version == 0 \
kono
parents: 68
diff changeset
704 || flag_abi_compat_version >= (N)))
kono
parents: 68
diff changeset
705
kono
parents: 68
diff changeset
706 /* Return TRUE if one of {flag_abi_version,warn_abi_version} is
kono
parents: 68
diff changeset
707 less than N and the other is at least N, for use by -Wabi. */
kono
parents: 68
diff changeset
708 #define abi_version_crosses(N) \
kono
parents: 68
diff changeset
709 (abi_version_at_least(N) \
kono
parents: 68
diff changeset
710 != (warn_abi_version == 0 \
kono
parents: 68
diff changeset
711 || warn_abi_version >= (N)))
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
712
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
713 /* The supported C++ dialects. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
714
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
715 enum cxx_dialect {
111
kono
parents: 68
diff changeset
716 cxx_unset,
kono
parents: 68
diff changeset
717 /* C++98 with TC1 */
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
718 cxx98,
111
kono
parents: 68
diff changeset
719 cxx03 = cxx98,
kono
parents: 68
diff changeset
720 /* C++11 */
kono
parents: 68
diff changeset
721 cxx0x,
kono
parents: 68
diff changeset
722 cxx11 = cxx0x,
kono
parents: 68
diff changeset
723 /* C++14 */
kono
parents: 68
diff changeset
724 cxx14,
kono
parents: 68
diff changeset
725 /* C++17 */
kono
parents: 68
diff changeset
726 cxx17,
kono
parents: 68
diff changeset
727 /* C++2a (C++20?) */
kono
parents: 68
diff changeset
728 cxx2a
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
729 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
730
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
731 /* The C++ dialect being used. C++98 is the default. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
732 extern enum cxx_dialect cxx_dialect;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
733
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
734 /* Maximum template instantiation depth. This limit is rather
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
735 arbitrary, but it exists to limit the time it takes to notice
111
kono
parents: 68
diff changeset
736 excessively recursive template instantiations. */
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
737
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
738 extern int max_tinst_depth;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
739
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
740 /* Nonzero means that we should not issue warnings about problems that
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
741 occur when the code is executed, because the code being processed
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
742 is not expected to be executed. This is set during parsing. This
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
743 is used for cases like sizeof() and "0 ? a : b". This is a count,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
744 not a bool, because unexecuted expressions can nest. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
745
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
746 extern int c_inhibit_evaluation_warnings;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
747
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
748 /* Whether lexing has been completed, so subsequent preprocessor
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
749 errors should use the compiler's input_location. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
750
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
751 extern bool done_lexing;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
752
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
753 /* C types are partitioned into three subsets: object, function, and
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
754 incomplete types. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
755 #define C_TYPE_OBJECT_P(type) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
756 (TREE_CODE (type) != FUNCTION_TYPE && TYPE_SIZE (type))
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
757
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
758 #define C_TYPE_INCOMPLETE_P(type) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
759 (TREE_CODE (type) != FUNCTION_TYPE && TYPE_SIZE (type) == 0)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
760
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
761 #define C_TYPE_FUNCTION_P(type) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
762 (TREE_CODE (type) == FUNCTION_TYPE)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
763
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
764 /* For convenience we define a single macro to identify the class of
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
765 object or incomplete types. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
766 #define C_TYPE_OBJECT_OR_INCOMPLETE_P(type) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
767 (!C_TYPE_FUNCTION_P (type))
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
768
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
769 /* Return true if TYPE is a vector type that should be subject to the GNU
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
770 vector extensions (as opposed to a vector type that is used only for
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
771 the purposes of defining target-specific built-in functions). */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
772
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
773 inline bool
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
774 gnu_vector_type_p (const_tree type)
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
775 {
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
776 return TREE_CODE (type) == VECTOR_TYPE && !TYPE_INDIVISIBLE_P (type);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
777 }
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
778
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
779 struct visibility_flags
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
780 {
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
781 unsigned inpragma : 1; /* True when in #pragma GCC visibility. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
782 unsigned inlines_hidden : 1; /* True when -finlineshidden in effect. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
783 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
784
111
kono
parents: 68
diff changeset
785 /* These enumerators are possible types of unsafe conversions. */
kono
parents: 68
diff changeset
786 enum conversion_safety {
kono
parents: 68
diff changeset
787 /* The conversion is safe. */
kono
parents: 68
diff changeset
788 SAFE_CONVERSION = 0,
kono
parents: 68
diff changeset
789 /* Another type of conversion with problems. */
kono
parents: 68
diff changeset
790 UNSAFE_OTHER,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
791 /* Conversion between signed and unsigned integers. */
111
kono
parents: 68
diff changeset
792 UNSAFE_SIGN,
kono
parents: 68
diff changeset
793 /* Conversions that reduce the precision of reals including conversions
kono
parents: 68
diff changeset
794 from reals to integers. */
kono
parents: 68
diff changeset
795 UNSAFE_REAL,
kono
parents: 68
diff changeset
796 /* Conversions from complex to reals or integers, that discard imaginary
kono
parents: 68
diff changeset
797 component. */
kono
parents: 68
diff changeset
798 UNSAFE_IMAGINARY
kono
parents: 68
diff changeset
799 };
kono
parents: 68
diff changeset
800
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
801 /* Global visibility options. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
802 extern struct visibility_flags visibility_options;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
803
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
804 /* Attribute table common to the C front ends. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
805 extern const struct attribute_spec c_common_attribute_table[];
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
806 extern const struct attribute_spec c_common_format_attribute_table[];
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
807
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
808 /* Pointer to function to lazily generate the VAR_DECL for __FUNCTION__ etc.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
809 ID is the identifier to use, NAME is the string.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
810 TYPE_DEP indicates whether it depends on type of the function or not
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
811 (i.e. __PRETTY_FUNCTION__). */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
812
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
813 extern tree (*make_fname_decl) (location_t, tree, int);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
814
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
815 /* In c-decl.c and cp/tree.c. FIXME. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
816 extern void c_register_addr_space (const char *str, addr_space_t as);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
817
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
818 /* In c-common.c. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
819 extern bool in_late_binary_op;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
820 extern const char *c_addr_space_name (addr_space_t as);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
821 extern tree identifier_global_value (tree);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
822 extern tree identifier_global_tag (tree);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
823 extern bool names_builtin_p (const char *);
111
kono
parents: 68
diff changeset
824 extern tree c_linkage_bindings (tree);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
825 extern void record_builtin_type (enum rid, const char *, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
826 extern tree build_void_list_node (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
827 extern void start_fname_decls (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
828 extern void finish_fname_decls (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
829 extern const char *fname_as_string (int);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
830 extern tree fname_decl (location_t, unsigned, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
831
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
832 extern int check_user_alignment (const_tree, bool, bool);
111
kono
parents: 68
diff changeset
833 extern bool check_function_arguments (location_t loc, const_tree, const_tree,
kono
parents: 68
diff changeset
834 int, tree *, vec<location_t> *);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
835 extern void check_function_arguments_recurse (void (*)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
836 (void *, tree,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
837 unsigned HOST_WIDE_INT),
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
838 void *, tree,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
839 unsigned HOST_WIDE_INT);
111
kono
parents: 68
diff changeset
840 extern bool check_builtin_function_arguments (location_t, vec<location_t>,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
841 tree, tree, int, tree *);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
842 extern void check_function_format (const_tree, tree, int, tree *,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
843 vec<location_t> *);
111
kono
parents: 68
diff changeset
844 extern bool attribute_fallthrough_p (tree);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
845 extern tree handle_format_attribute (tree *, tree, tree, int, bool *);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
846 extern tree handle_format_arg_attribute (tree *, tree, tree, int, bool *);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
847 extern bool c_common_handle_option (size_t, const char *, HOST_WIDE_INT, int,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
848 location_t,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
849 const struct cl_option_handlers *);
111
kono
parents: 68
diff changeset
850 extern bool default_handle_c_option (size_t, const char *, int);
kono
parents: 68
diff changeset
851 extern tree c_common_type_for_mode (machine_mode, int);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
852 extern tree c_common_type_for_size (unsigned int, int);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
853 extern tree c_common_fixed_point_type_for_size (unsigned int, unsigned int,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
854 int, int);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
855 extern tree c_common_unsigned_type (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
856 extern tree c_common_signed_type (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
857 extern tree c_common_signed_or_unsigned_type (int, tree);
111
kono
parents: 68
diff changeset
858 extern void c_common_init_ts (void);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
859 extern tree c_build_bitfield_integer_type (unsigned HOST_WIDE_INT, int);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
860 extern enum conversion_safety unsafe_conversion_p (tree, tree, tree, bool);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
861 extern bool decl_with_nonnull_addr_p (const_tree);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
862 extern tree c_fully_fold (tree, bool, bool *, bool = false);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
863 extern tree c_wrap_maybe_const (tree, bool);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
864 extern tree c_common_truthvalue_conversion (location_t, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
865 extern void c_apply_type_quals_to_decl (int, tree);
111
kono
parents: 68
diff changeset
866 extern tree c_sizeof_or_alignof_type (location_t, tree, bool, bool, int);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
867 extern tree c_alignof_expr (location_t, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
868 /* Print an error message for invalid operands to arith operation CODE.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
869 NOP_EXPR is used as a special case (see truthvalue_conversion). */
111
kono
parents: 68
diff changeset
870 extern void binary_op_error (rich_location *, enum tree_code, tree, tree);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
871 extern tree fix_string_type (tree);
111
kono
parents: 68
diff changeset
872 extern tree convert_and_check (location_t, tree, tree);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
873 extern bool c_determine_visibility (tree);
111
kono
parents: 68
diff changeset
874 extern bool vector_types_compatible_elements_p (tree, tree);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
875 extern void mark_valid_location_for_stdc_pragma (bool);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
876 extern bool valid_location_for_stdc_pragma_p (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
877 extern void set_float_const_decimal64 (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
878 extern void clear_float_const_decimal64 (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
879 extern bool float_const_decimal64_p (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
880
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
881 extern bool keyword_begins_type_specifier (enum rid);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
882 extern bool keyword_is_storage_class_specifier (enum rid);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
883 extern bool keyword_is_type_qualifier (enum rid);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
884 extern bool keyword_is_decl_specifier (enum rid);
111
kono
parents: 68
diff changeset
885 extern unsigned max_align_t_align (void);
kono
parents: 68
diff changeset
886 extern bool cxx_fundamental_alignment_p (unsigned);
kono
parents: 68
diff changeset
887 extern bool pointer_to_zero_sized_aggr_p (tree);
kono
parents: 68
diff changeset
888 extern bool bool_promoted_to_int_p (tree);
kono
parents: 68
diff changeset
889 extern tree fold_for_warn (tree);
kono
parents: 68
diff changeset
890 extern tree c_common_get_narrower (tree, int *);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
891 extern bool get_attribute_operand (tree, unsigned HOST_WIDE_INT *);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
892
111
kono
parents: 68
diff changeset
893 #define c_sizeof(LOC, T) c_sizeof_or_alignof_type (LOC, T, true, false, 1)
kono
parents: 68
diff changeset
894 #define c_alignof(LOC, T) c_sizeof_or_alignof_type (LOC, T, false, false, 1)
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
895
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
896 /* Subroutine of build_binary_op, used for certain operations. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
897 extern tree shorten_binary_op (tree result_type, tree op0, tree op1, bool bitwise);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
898
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
899 /* Subroutine of build_binary_op, used for comparison operations.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
900 See if the operands have both been converted from subword integer types
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
901 and, if so, perhaps change them both back to their original type. */
111
kono
parents: 68
diff changeset
902 extern tree shorten_compare (location_t, tree *, tree *, tree *,
kono
parents: 68
diff changeset
903 enum tree_code *);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
904
111
kono
parents: 68
diff changeset
905 extern tree pointer_int_sum (location_t, enum tree_code, tree, tree,
kono
parents: 68
diff changeset
906 bool = true);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
907
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
908 /* Add qualifiers to a type, in the fashion for C. */
111
kono
parents: 68
diff changeset
909 extern tree c_build_qualified_type (tree, int, tree = NULL_TREE, size_t = 0);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
910
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
911 /* Build tree nodes and builtin functions common to both C and C++ language
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
912 frontends. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
913 extern void c_common_nodes_and_builtins (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
914
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
915 extern void disable_builtin_function (const char *);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
916
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
917 extern void set_compound_literal_name (tree decl);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
918
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
919 extern tree build_va_arg (location_t, tree, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
920
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
921 extern const unsigned int c_family_lang_mask;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
922 extern unsigned int c_common_option_lang_mask (void);
111
kono
parents: 68
diff changeset
923 extern void c_common_diagnostics_set_defaults (diagnostic_context *);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
924 extern bool c_common_complain_wrong_lang_p (const struct cl_option *);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
925 extern void c_common_init_options_struct (struct gcc_options *);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
926 extern void c_common_init_options (unsigned int, struct cl_decoded_option *);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
927 extern bool c_common_post_options (const char **);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
928 extern bool c_common_init (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
929 extern void c_common_finish (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
930 extern void c_common_parse_file (void);
111
kono
parents: 68
diff changeset
931 extern FILE *get_dump_info (int, dump_flags_t *);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
932 extern alias_set_type c_common_get_alias_set (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
933 extern void c_register_builtin_type (tree, const char*);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
934 extern bool c_promoting_integer_type_p (const_tree);
111
kono
parents: 68
diff changeset
935 extern bool self_promoting_args_p (const_tree);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
936 extern tree strip_pointer_operator (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
937 extern tree strip_pointer_or_array_types (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
938 extern HOST_WIDE_INT c_common_to_target_charset (HOST_WIDE_INT);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
939
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
940 /* This is the basic parsing function. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
941 extern void c_parse_file (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
942
111
kono
parents: 68
diff changeset
943 extern void c_parse_final_cleanups (void);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
944
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
945 /* These macros provide convenient access to the various _STMT nodes. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
946
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
947 /* Nonzero if a given STATEMENT_LIST represents the outermost binding
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
948 if a statement expression. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
949 #define STATEMENT_LIST_STMT_EXPR(NODE) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
950 TREE_LANG_FLAG_1 (STATEMENT_LIST_CHECK (NODE))
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
951
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
952 /* Nonzero if a label has been added to the statement list. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
953 #define STATEMENT_LIST_HAS_LABEL(NODE) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
954 TREE_LANG_FLAG_3 (STATEMENT_LIST_CHECK (NODE))
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
955
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
956 /* C_MAYBE_CONST_EXPR accessors. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
957 #define C_MAYBE_CONST_EXPR_PRE(NODE) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
958 TREE_OPERAND (C_MAYBE_CONST_EXPR_CHECK (NODE), 0)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
959 #define C_MAYBE_CONST_EXPR_EXPR(NODE) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
960 TREE_OPERAND (C_MAYBE_CONST_EXPR_CHECK (NODE), 1)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
961 #define C_MAYBE_CONST_EXPR_INT_OPERANDS(NODE) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
962 TREE_LANG_FLAG_0 (C_MAYBE_CONST_EXPR_CHECK (NODE))
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
963 #define C_MAYBE_CONST_EXPR_NON_CONST(NODE) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
964 TREE_LANG_FLAG_1 (C_MAYBE_CONST_EXPR_CHECK (NODE))
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
965 #define EXPR_INT_CONST_OPERANDS(EXPR) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
966 (INTEGRAL_TYPE_P (TREE_TYPE (EXPR)) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
967 && (TREE_CODE (EXPR) == INTEGER_CST \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
968 || (TREE_CODE (EXPR) == C_MAYBE_CONST_EXPR \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
969 && C_MAYBE_CONST_EXPR_INT_OPERANDS (EXPR))))
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
970
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
971 /* In a FIELD_DECL, nonzero if the decl was originally a bitfield. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
972 #define DECL_C_BIT_FIELD(NODE) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
973 (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) == 1)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
974 #define SET_DECL_C_BIT_FIELD(NODE) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
975 (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) = 1)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
976 #define CLEAR_DECL_C_BIT_FIELD(NODE) \
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
977 (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) = 0)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
978
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
979 /* True if the decl was an unnamed bitfield. */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
980 #define DECL_UNNAMED_BIT_FIELD(NODE) \
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
981 (DECL_C_BIT_FIELD (NODE) && !DECL_NAME (NODE))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
982
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
983 extern tree do_case (location_t, tree, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
984 extern tree build_stmt (location_t, enum tree_code, ...);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
985 extern tree build_real_imag_expr (location_t, enum tree_code, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
986
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
987 /* These functions must be defined by each front-end which implements
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
988 a variant of the C language. They are used in c-common.c. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
989
111
kono
parents: 68
diff changeset
990 extern tree build_unary_op (location_t, enum tree_code, tree, bool);
kono
parents: 68
diff changeset
991 extern tree build_binary_op (location_t, enum tree_code, tree, tree, bool);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
992 extern tree perform_integral_promotions (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
993
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
994 /* These functions must be defined by each front-end which implements
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
995 a variant of the C language. They are used by port files. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
996
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
997 extern tree default_conversion (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
998
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
999 /* Given two integer or real types, return the type for their sum.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1000 Given two compatible ANSI C types, returns the merged type. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1001
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1002 extern tree common_type (tree, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1003
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1004 extern tree decl_constant_value (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1005
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1006 /* Handle increment and decrement of boolean types. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1007 extern tree boolean_increment (enum tree_code, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1008
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1009 extern int case_compare (splay_tree_key, splay_tree_key);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1010
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1011 extern tree c_add_case_label (location_t, splay_tree, tree, tree, tree);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1012 extern bool c_switch_covers_all_cases_p (splay_tree, tree);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1013
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1014 extern tree build_function_call (location_t, tree, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1015
111
kono
parents: 68
diff changeset
1016 extern tree build_function_call_vec (location_t, vec<location_t>, tree,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1017 vec<tree, va_gc> *, vec<tree, va_gc> *,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1018 tree = NULL_TREE);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1019
111
kono
parents: 68
diff changeset
1020 extern tree resolve_overloaded_builtin (location_t, tree, vec<tree, va_gc> *);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1021
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1022 extern tree finish_label_address_expr (tree, location_t);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1023
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1024 /* Same function prototype, but the C and C++ front ends have
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1025 different implementations. Used in c-common.c. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1026 extern tree lookup_label (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1027 extern tree lookup_name (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1028 extern bool lvalue_p (const_tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1029
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1030 extern bool vector_targets_convertible_p (const_tree t1, const_tree t2);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1031 extern bool vector_types_convertible_p (const_tree t1, const_tree t2, bool emit_lax_note);
111
kono
parents: 68
diff changeset
1032 extern tree c_build_vec_perm_expr (location_t, tree, tree, tree, bool = true);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1033 extern tree c_build_vec_convert (location_t, tree, location_t, tree, bool = true);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1034
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1035 extern void init_c_lex (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1036
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1037 extern void c_cpp_builtins (cpp_reader *);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1038 extern void c_cpp_builtins_optimize_pragma (cpp_reader *, tree, tree);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1039 extern bool c_cpp_diagnostic (cpp_reader *, enum cpp_diagnostic_level,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1040 enum cpp_warning_reason, rich_location *,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1041 const char *, va_list *)
111
kono
parents: 68
diff changeset
1042 ATTRIBUTE_GCC_DIAG(5,0);
kono
parents: 68
diff changeset
1043 extern int c_common_has_attribute (cpp_reader *);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1044 extern int c_common_has_builtin (cpp_reader *);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1045
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1046 extern bool parse_optimize_options (tree, bool);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1047
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1048 /* Positive if an implicit `extern "C"' scope has just been entered;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1049 negative if such a scope has just been exited. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1050 extern GTY(()) int pending_lang_change;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1051
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1052 /* Information recorded about each file examined during compilation. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1053
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1054 struct c_fileinfo
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1055 {
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1056 int time; /* Time spent in the file. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1057
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1058 /* Flags used only by C++.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1059 INTERFACE_ONLY nonzero means that we are in an "interface" section
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1060 of the compiler. INTERFACE_UNKNOWN nonzero means we cannot trust
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1061 the value of INTERFACE_ONLY. If INTERFACE_UNKNOWN is zero and
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1062 INTERFACE_ONLY is zero, it means that we are responsible for
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1063 exporting definitions that others might need. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1064 short interface_only;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1065 short interface_unknown;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1066 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1067
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1068 struct c_fileinfo *get_fileinfo (const char *);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1069 extern void dump_time_statistics (void);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1070
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1071 extern bool c_dump_tree (void *, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1072
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1073 extern void verify_sequence_points (tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1074
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1075 extern tree fold_offsetof (tree, tree = size_type_node,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1076 tree_code ctx = ERROR_MARK);
111
kono
parents: 68
diff changeset
1077
kono
parents: 68
diff changeset
1078 extern int complete_array_type (tree *, tree, bool);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1079 extern void complete_flexible_array_elts (tree);
111
kono
parents: 68
diff changeset
1080
kono
parents: 68
diff changeset
1081 extern tree builtin_type_for_size (int, bool);
kono
parents: 68
diff changeset
1082
kono
parents: 68
diff changeset
1083 extern void c_common_mark_addressable_vec (tree);
kono
parents: 68
diff changeset
1084
kono
parents: 68
diff changeset
1085 extern void set_underlying_type (tree);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1086 extern bool user_facing_original_type_p (const_tree);
111
kono
parents: 68
diff changeset
1087 extern void record_types_used_by_current_var_decl (tree);
kono
parents: 68
diff changeset
1088 extern vec<tree, va_gc> *make_tree_vector (void);
kono
parents: 68
diff changeset
1089 extern void release_tree_vector (vec<tree, va_gc> *);
kono
parents: 68
diff changeset
1090 extern vec<tree, va_gc> *make_tree_vector_single (tree);
kono
parents: 68
diff changeset
1091 extern vec<tree, va_gc> *make_tree_vector_from_list (tree);
kono
parents: 68
diff changeset
1092 extern vec<tree, va_gc> *make_tree_vector_from_ctor (tree);
kono
parents: 68
diff changeset
1093 extern vec<tree, va_gc> *make_tree_vector_copy (const vec<tree, va_gc> *);
kono
parents: 68
diff changeset
1094
kono
parents: 68
diff changeset
1095 /* Used for communication between c_common_type_for_mode and
kono
parents: 68
diff changeset
1096 c_register_builtin_type. */
kono
parents: 68
diff changeset
1097 extern GTY(()) tree registered_builtin_types;
kono
parents: 68
diff changeset
1098
kono
parents: 68
diff changeset
1099 /* Read SOURCE_DATE_EPOCH from environment to have a deterministic
kono
parents: 68
diff changeset
1100 timestamp to replace embedded current dates to get reproducible
kono
parents: 68
diff changeset
1101 results. Returns -1 if SOURCE_DATE_EPOCH is not defined. */
kono
parents: 68
diff changeset
1102 extern time_t cb_get_source_date_epoch (cpp_reader *pfile);
kono
parents: 68
diff changeset
1103
kono
parents: 68
diff changeset
1104 /* The value (as a unix timestamp) corresponds to date
kono
parents: 68
diff changeset
1105 "Dec 31 9999 23:59:59 UTC", which is the latest date that __DATE__ and
kono
parents: 68
diff changeset
1106 __TIME__ can store. */
kono
parents: 68
diff changeset
1107 #define MAX_SOURCE_DATE_EPOCH HOST_WIDE_INT_C (253402300799)
kono
parents: 68
diff changeset
1108
kono
parents: 68
diff changeset
1109 /* Callback for libcpp for offering spelling suggestions for misspelled
kono
parents: 68
diff changeset
1110 directives. */
kono
parents: 68
diff changeset
1111 extern const char *cb_get_suggestion (cpp_reader *, const char *,
kono
parents: 68
diff changeset
1112 const char *const *);
kono
parents: 68
diff changeset
1113
kono
parents: 68
diff changeset
1114 extern GTY(()) string_concat_db *g_string_concat_db;
kono
parents: 68
diff changeset
1115
kono
parents: 68
diff changeset
1116 class substring_loc;
kono
parents: 68
diff changeset
1117 extern const char *c_get_substring_location (const substring_loc &substr_loc,
kono
parents: 68
diff changeset
1118 location_t *out_loc);
kono
parents: 68
diff changeset
1119
kono
parents: 68
diff changeset
1120 /* In c-gimplify.c */
kono
parents: 68
diff changeset
1121 extern void c_genericize (tree);
kono
parents: 68
diff changeset
1122 extern int c_gimplify_expr (tree *, gimple_seq *, gimple_seq *);
kono
parents: 68
diff changeset
1123 extern tree c_build_bind_expr (location_t, tree, tree);
kono
parents: 68
diff changeset
1124
kono
parents: 68
diff changeset
1125 /* In c-lex.c. */
kono
parents: 68
diff changeset
1126 extern enum cpp_ttype
kono
parents: 68
diff changeset
1127 conflict_marker_get_final_tok_kind (enum cpp_ttype tok1_kind);
kono
parents: 68
diff changeset
1128
kono
parents: 68
diff changeset
1129 /* In c-pch.c */
kono
parents: 68
diff changeset
1130 extern void pch_init (void);
kono
parents: 68
diff changeset
1131 extern void pch_cpp_save_state (void);
kono
parents: 68
diff changeset
1132 extern int c_common_valid_pch (cpp_reader *pfile, const char *name, int fd);
kono
parents: 68
diff changeset
1133 extern void c_common_read_pch (cpp_reader *pfile, const char *name, int fd,
kono
parents: 68
diff changeset
1134 const char *orig);
kono
parents: 68
diff changeset
1135 extern void c_common_write_pch (void);
kono
parents: 68
diff changeset
1136 extern void c_common_no_more_pch (void);
kono
parents: 68
diff changeset
1137 extern void c_common_pch_pragma (cpp_reader *pfile, const char *);
kono
parents: 68
diff changeset
1138
kono
parents: 68
diff changeset
1139 /* In *-checksum.c */
kono
parents: 68
diff changeset
1140 extern const unsigned char executable_checksum[16];
kono
parents: 68
diff changeset
1141
kono
parents: 68
diff changeset
1142 /* In c-cppbuiltin.c */
kono
parents: 68
diff changeset
1143 extern void builtin_define_std (const char *macro);
kono
parents: 68
diff changeset
1144 extern void builtin_define_with_value (const char *, const char *, int);
kono
parents: 68
diff changeset
1145 extern void builtin_define_with_int_value (const char *, HOST_WIDE_INT);
kono
parents: 68
diff changeset
1146 extern void builtin_define_type_sizeof (const char *, tree);
kono
parents: 68
diff changeset
1147 extern void c_stddef_cpp_builtins (void);
kono
parents: 68
diff changeset
1148 extern void fe_file_change (const line_map_ordinary *);
kono
parents: 68
diff changeset
1149 extern void c_parse_error (const char *, enum cpp_ttype, tree, unsigned char,
kono
parents: 68
diff changeset
1150 rich_location *richloc);
kono
parents: 68
diff changeset
1151
kono
parents: 68
diff changeset
1152 /* In c-ppoutput.c */
kono
parents: 68
diff changeset
1153 extern void init_pp_output (FILE *);
kono
parents: 68
diff changeset
1154 extern void preprocess_file (cpp_reader *);
kono
parents: 68
diff changeset
1155 extern void pp_file_change (const line_map_ordinary *);
kono
parents: 68
diff changeset
1156 extern void pp_dir_change (cpp_reader *, const char *);
kono
parents: 68
diff changeset
1157 extern bool check_missing_format_attribute (tree, tree);
kono
parents: 68
diff changeset
1158
kono
parents: 68
diff changeset
1159 /* In c-omp.c */
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1160 typedef wide_int_bitmask omp_clause_mask;
111
kono
parents: 68
diff changeset
1161
kono
parents: 68
diff changeset
1162 #define OMP_CLAUSE_MASK_1 omp_clause_mask (1)
kono
parents: 68
diff changeset
1163
kono
parents: 68
diff changeset
1164 enum c_omp_clause_split
kono
parents: 68
diff changeset
1165 {
kono
parents: 68
diff changeset
1166 C_OMP_CLAUSE_SPLIT_TARGET = 0,
kono
parents: 68
diff changeset
1167 C_OMP_CLAUSE_SPLIT_TEAMS,
kono
parents: 68
diff changeset
1168 C_OMP_CLAUSE_SPLIT_DISTRIBUTE,
kono
parents: 68
diff changeset
1169 C_OMP_CLAUSE_SPLIT_PARALLEL,
kono
parents: 68
diff changeset
1170 C_OMP_CLAUSE_SPLIT_FOR,
kono
parents: 68
diff changeset
1171 C_OMP_CLAUSE_SPLIT_SIMD,
kono
parents: 68
diff changeset
1172 C_OMP_CLAUSE_SPLIT_COUNT,
kono
parents: 68
diff changeset
1173 C_OMP_CLAUSE_SPLIT_SECTIONS = C_OMP_CLAUSE_SPLIT_FOR,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1174 C_OMP_CLAUSE_SPLIT_TASKLOOP = C_OMP_CLAUSE_SPLIT_FOR,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1175 C_OMP_CLAUSE_SPLIT_LOOP = C_OMP_CLAUSE_SPLIT_FOR
111
kono
parents: 68
diff changeset
1176 };
kono
parents: 68
diff changeset
1177
kono
parents: 68
diff changeset
1178 enum c_omp_region_type
kono
parents: 68
diff changeset
1179 {
kono
parents: 68
diff changeset
1180 C_ORT_OMP = 1 << 0,
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1181 C_ORT_ACC = 1 << 1,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1182 C_ORT_DECLARE_SIMD = 1 << 2,
111
kono
parents: 68
diff changeset
1183 C_ORT_OMP_DECLARE_SIMD = C_ORT_OMP | C_ORT_DECLARE_SIMD
kono
parents: 68
diff changeset
1184 };
kono
parents: 68
diff changeset
1185
kono
parents: 68
diff changeset
1186 extern tree c_finish_omp_master (location_t, tree);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1187 extern tree c_finish_omp_taskgroup (location_t, tree, tree);
111
kono
parents: 68
diff changeset
1188 extern tree c_finish_omp_critical (location_t, tree, tree, tree);
kono
parents: 68
diff changeset
1189 extern tree c_finish_omp_ordered (location_t, tree, tree);
kono
parents: 68
diff changeset
1190 extern void c_finish_omp_barrier (location_t);
kono
parents: 68
diff changeset
1191 extern tree c_finish_omp_atomic (location_t, enum tree_code, enum tree_code,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1192 tree, tree, tree, tree, tree, bool,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1193 enum omp_memory_order, bool = false);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1194 extern bool c_omp_depend_t_p (tree);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1195 extern void c_finish_omp_depobj (location_t, tree, enum omp_clause_depend_kind,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1196 tree);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1197 extern void c_finish_omp_flush (location_t, int);
111
kono
parents: 68
diff changeset
1198 extern void c_finish_omp_taskwait (location_t);
kono
parents: 68
diff changeset
1199 extern void c_finish_omp_taskyield (location_t);
kono
parents: 68
diff changeset
1200 extern tree c_finish_omp_for (location_t, enum tree_code, tree, tree, tree,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1201 tree, tree, tree, tree, bool);
111
kono
parents: 68
diff changeset
1202 extern bool c_omp_check_loop_iv (tree, tree, walk_tree_lh);
kono
parents: 68
diff changeset
1203 extern bool c_omp_check_loop_iv_exprs (location_t, tree, tree, tree, tree,
kono
parents: 68
diff changeset
1204 walk_tree_lh);
kono
parents: 68
diff changeset
1205 extern tree c_finish_oacc_wait (location_t, tree, tree);
kono
parents: 68
diff changeset
1206 extern tree c_oacc_split_loop_clauses (tree, tree *, bool);
kono
parents: 68
diff changeset
1207 extern void c_omp_split_clauses (location_t, enum tree_code, omp_clause_mask,
kono
parents: 68
diff changeset
1208 tree, tree *);
kono
parents: 68
diff changeset
1209 extern tree c_omp_declare_simd_clauses_to_numbers (tree, tree);
kono
parents: 68
diff changeset
1210 extern void c_omp_declare_simd_clauses_to_decls (tree, tree);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1211 extern bool c_omp_predefined_variable (tree);
111
kono
parents: 68
diff changeset
1212 extern enum omp_clause_default_kind c_omp_predetermined_sharing (tree);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1213 extern tree c_omp_check_context_selector (location_t, tree);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1214 extern void c_omp_mark_declare_variant (location_t, tree, tree);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1215 extern const char *c_omp_map_clause_name (tree, bool);
111
kono
parents: 68
diff changeset
1216
kono
parents: 68
diff changeset
1217 /* Return next tree in the chain for chain_next walking of tree nodes. */
kono
parents: 68
diff changeset
1218 static inline tree
kono
parents: 68
diff changeset
1219 c_tree_chain_next (tree t)
kono
parents: 68
diff changeset
1220 {
kono
parents: 68
diff changeset
1221 /* TREE_CHAIN of a type is TYPE_STUB_DECL, which is different
kono
parents: 68
diff changeset
1222 kind of object, never a long chain of nodes. Prefer
kono
parents: 68
diff changeset
1223 TYPE_NEXT_VARIANT for types. */
kono
parents: 68
diff changeset
1224 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPE_COMMON))
kono
parents: 68
diff changeset
1225 return TYPE_NEXT_VARIANT (t);
kono
parents: 68
diff changeset
1226 /* Otherwise, if there is TREE_CHAIN, return it. */
kono
parents: 68
diff changeset
1227 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_COMMON))
kono
parents: 68
diff changeset
1228 return TREE_CHAIN (t);
kono
parents: 68
diff changeset
1229 return NULL;
kono
parents: 68
diff changeset
1230 }
kono
parents: 68
diff changeset
1231
kono
parents: 68
diff changeset
1232 /* Mask used by tm_stmt_attr. */
kono
parents: 68
diff changeset
1233 #define TM_STMT_ATTR_OUTER 2
kono
parents: 68
diff changeset
1234 #define TM_STMT_ATTR_ATOMIC 4
kono
parents: 68
diff changeset
1235 #define TM_STMT_ATTR_RELAXED 8
kono
parents: 68
diff changeset
1236
kono
parents: 68
diff changeset
1237 /* Mask used by tm_attr_to_mask and tm_mask_to_attr. Note that these
kono
parents: 68
diff changeset
1238 are ordered specifically such that more restrictive attributes are
kono
parents: 68
diff changeset
1239 at lower bit positions. This fact is known by the C++ tm attribute
kono
parents: 68
diff changeset
1240 inheritance code such that least bit extraction (mask & -mask) results
kono
parents: 68
diff changeset
1241 in the most restrictive attribute. */
kono
parents: 68
diff changeset
1242 #define TM_ATTR_SAFE 1
kono
parents: 68
diff changeset
1243 #define TM_ATTR_CALLABLE 2
kono
parents: 68
diff changeset
1244 #define TM_ATTR_PURE 4
kono
parents: 68
diff changeset
1245 #define TM_ATTR_IRREVOCABLE 8
kono
parents: 68
diff changeset
1246 #define TM_ATTR_MAY_CANCEL_OUTER 16
kono
parents: 68
diff changeset
1247
kono
parents: 68
diff changeset
1248 /* A suffix-identifier value doublet that represents user-defined literals
kono
parents: 68
diff changeset
1249 for C++-0x. */
kono
parents: 68
diff changeset
1250 enum overflow_type {
kono
parents: 68
diff changeset
1251 OT_UNDERFLOW = -1,
kono
parents: 68
diff changeset
1252 OT_NONE,
kono
parents: 68
diff changeset
1253 OT_OVERFLOW
kono
parents: 68
diff changeset
1254 };
kono
parents: 68
diff changeset
1255
kono
parents: 68
diff changeset
1256 struct GTY(()) tree_userdef_literal {
kono
parents: 68
diff changeset
1257 struct tree_base base;
kono
parents: 68
diff changeset
1258 tree suffix_id;
kono
parents: 68
diff changeset
1259 tree value;
kono
parents: 68
diff changeset
1260 tree num_string;
kono
parents: 68
diff changeset
1261 enum overflow_type overflow;
kono
parents: 68
diff changeset
1262 };
kono
parents: 68
diff changeset
1263
kono
parents: 68
diff changeset
1264 #define USERDEF_LITERAL_SUFFIX_ID(NODE) \
kono
parents: 68
diff changeset
1265 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->suffix_id)
kono
parents: 68
diff changeset
1266
kono
parents: 68
diff changeset
1267 #define USERDEF_LITERAL_VALUE(NODE) \
kono
parents: 68
diff changeset
1268 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->value)
kono
parents: 68
diff changeset
1269
kono
parents: 68
diff changeset
1270 #define USERDEF_LITERAL_OVERFLOW(NODE) \
kono
parents: 68
diff changeset
1271 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->overflow)
kono
parents: 68
diff changeset
1272
kono
parents: 68
diff changeset
1273 #define USERDEF_LITERAL_NUM_STRING(NODE) \
kono
parents: 68
diff changeset
1274 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->num_string)
kono
parents: 68
diff changeset
1275
kono
parents: 68
diff changeset
1276 #define USERDEF_LITERAL_TYPE(NODE) \
kono
parents: 68
diff changeset
1277 (TREE_TYPE (USERDEF_LITERAL_VALUE (NODE)))
kono
parents: 68
diff changeset
1278
kono
parents: 68
diff changeset
1279 extern tree build_userdef_literal (tree suffix_id, tree value,
kono
parents: 68
diff changeset
1280 enum overflow_type overflow,
kono
parents: 68
diff changeset
1281 tree num_string);
kono
parents: 68
diff changeset
1282
kono
parents: 68
diff changeset
1283 extern bool convert_vector_to_array_for_subscript (location_t, tree *, tree);
kono
parents: 68
diff changeset
1284
kono
parents: 68
diff changeset
1285 /* Possibe cases of scalar_to_vector conversion. */
kono
parents: 68
diff changeset
1286 enum stv_conv {
kono
parents: 68
diff changeset
1287 stv_error, /* Error occurred. */
kono
parents: 68
diff changeset
1288 stv_nothing, /* Nothing happened. */
kono
parents: 68
diff changeset
1289 stv_firstarg, /* First argument must be expanded. */
kono
parents: 68
diff changeset
1290 stv_secondarg /* Second argument must be expanded. */
kono
parents: 68
diff changeset
1291 };
kono
parents: 68
diff changeset
1292
kono
parents: 68
diff changeset
1293 extern enum stv_conv scalar_to_vector (location_t loc, enum tree_code code,
kono
parents: 68
diff changeset
1294 tree op0, tree op1, bool);
kono
parents: 68
diff changeset
1295
kono
parents: 68
diff changeset
1296 extern tree find_inv_trees (tree *, int *, void *);
kono
parents: 68
diff changeset
1297 extern tree replace_inv_trees (tree *, int *, void *);
kono
parents: 68
diff changeset
1298
kono
parents: 68
diff changeset
1299 extern bool reject_gcc_builtin (const_tree, location_t = UNKNOWN_LOCATION);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1300 extern bool valid_array_size_p (location_t, const_tree, tree, bool = true);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1301 extern void invalid_array_size_error (location_t, cst_size_error,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1302 const_tree, const_tree);
111
kono
parents: 68
diff changeset
1303
kono
parents: 68
diff changeset
1304 /* In c-warn.c. */
kono
parents: 68
diff changeset
1305 extern void constant_expression_warning (tree);
kono
parents: 68
diff changeset
1306 extern void constant_expression_error (tree);
kono
parents: 68
diff changeset
1307 extern void overflow_warning (location_t, tree, tree = NULL_TREE);
kono
parents: 68
diff changeset
1308 extern void warn_logical_operator (location_t, enum tree_code, tree,
kono
parents: 68
diff changeset
1309 enum tree_code, tree, enum tree_code, tree);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1310 extern void warn_tautological_cmp (const op_location_t &, enum tree_code,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1311 tree, tree);
111
kono
parents: 68
diff changeset
1312 extern void warn_logical_not_parentheses (location_t, enum tree_code, tree,
kono
parents: 68
diff changeset
1313 tree);
kono
parents: 68
diff changeset
1314 extern bool warn_if_unused_value (const_tree, location_t);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1315 extern bool strict_aliasing_warning (location_t, tree, tree);
111
kono
parents: 68
diff changeset
1316 extern void sizeof_pointer_memaccess_warning (location_t *, tree,
kono
parents: 68
diff changeset
1317 vec<tree, va_gc> *, tree *,
kono
parents: 68
diff changeset
1318 bool (*) (tree, tree));
kono
parents: 68
diff changeset
1319 extern void check_main_parameter_types (tree decl);
kono
parents: 68
diff changeset
1320 extern void warnings_for_convert_and_check (location_t, tree, tree, tree);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1321 extern void c_do_switch_warnings (splay_tree, location_t, tree, tree, bool);
111
kono
parents: 68
diff changeset
1322 extern void warn_for_omitted_condop (location_t, tree);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1323 extern bool warn_for_restrict (unsigned, tree *, unsigned);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1324 extern void warn_for_address_or_pointer_of_packed_member (tree, tree);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1325
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1326 /* Places where an lvalue, or modifiable lvalue, may be required.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1327 Used to select diagnostic messages in lvalue_error and
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1328 readonly_error. */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1329 enum lvalue_use {
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1330 lv_assign,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1331 lv_increment,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1332 lv_decrement,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1333 lv_addressof,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1334 lv_asm
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1335 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1336
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1337 extern void lvalue_error (location_t, enum lvalue_use);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1338 extern void invalid_indirection_error (location_t, tree, ref_operator);
111
kono
parents: 68
diff changeset
1339 extern void readonly_error (location_t, tree, enum lvalue_use);
kono
parents: 68
diff changeset
1340 extern void warn_array_subscript_with_type_char (location_t, tree);
kono
parents: 68
diff changeset
1341 extern void warn_about_parentheses (location_t,
kono
parents: 68
diff changeset
1342 enum tree_code,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1343 enum tree_code, tree,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1344 enum tree_code, tree);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1345 extern void warn_for_unused_label (tree label);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1346 extern void warn_for_div_by_zero (location_t, tree divisor);
111
kono
parents: 68
diff changeset
1347 extern void warn_for_memset (location_t, tree, tree, int);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1348 extern void warn_for_sign_compare (location_t,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1349 tree orig_op0, tree orig_op1,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1350 tree op0, tree op1,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1351 tree result_type,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1352 enum tree_code resultcode);
111
kono
parents: 68
diff changeset
1353 extern void do_warn_double_promotion (tree, tree, tree, const char *,
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1354 location_t);
111
kono
parents: 68
diff changeset
1355 extern void do_warn_unused_parameter (tree);
kono
parents: 68
diff changeset
1356 extern void record_locally_defined_typedef (tree);
kono
parents: 68
diff changeset
1357 extern void maybe_record_typedef_use (tree);
kono
parents: 68
diff changeset
1358 extern void maybe_warn_unused_local_typedefs (void);
kono
parents: 68
diff changeset
1359 extern void maybe_warn_bool_compare (location_t, enum tree_code, tree, tree);
kono
parents: 68
diff changeset
1360 extern bool maybe_warn_shift_overflow (location_t, tree, tree);
kono
parents: 68
diff changeset
1361 extern void warn_duplicated_cond_add_or_warn (location_t, tree, vec<tree> **);
kono
parents: 68
diff changeset
1362 extern bool diagnose_mismatched_attributes (tree, tree);
kono
parents: 68
diff changeset
1363 extern tree do_warn_duplicated_branches_r (tree *, int *, void *);
kono
parents: 68
diff changeset
1364 extern void warn_for_multistatement_macros (location_t, location_t,
kono
parents: 68
diff changeset
1365 location_t, enum rid);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1366
111
kono
parents: 68
diff changeset
1367 /* In c-attribs.c. */
kono
parents: 68
diff changeset
1368 extern bool attribute_takes_identifier_p (const_tree);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1369 extern tree handle_deprecated_attribute (tree *, tree, tree, int, bool *);
111
kono
parents: 68
diff changeset
1370 extern tree handle_unused_attribute (tree *, tree, tree, int, bool *);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1371 extern tree handle_fallthrough_attribute (tree *, tree, tree, int, bool *);
111
kono
parents: 68
diff changeset
1372 extern int parse_tm_stmt_attr (tree, int);
kono
parents: 68
diff changeset
1373 extern int tm_attr_to_mask (tree);
kono
parents: 68
diff changeset
1374 extern tree tm_mask_to_attr (int);
kono
parents: 68
diff changeset
1375 extern tree find_tm_attribute (tree);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1376 extern const struct attribute_spec::exclusions attr_cold_hot_exclusions[];
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1377 extern const struct attribute_spec::exclusions attr_noreturn_exclusions[];
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1378 extern tree handle_noreturn_attribute (tree *, tree, tree, int, bool *);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1379
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1380 /* In c-format.c. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1381 extern bool valid_format_string_type_p (tree);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1382
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1383 /* A bitmap of flags to positional_argument. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1384 enum posargflags {
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1385 /* Consider positional attribute argument value zero valid. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1386 POSARG_ZERO = 1,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1387 /* Consider positional attribute argument value valid if it refers
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1388 to the ellipsis (i.e., beyond the last typed argument). */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1389 POSARG_ELLIPSIS = 2
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1390 };
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1391
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1392 extern tree positional_argument (const_tree, const_tree, tree, tree_code,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1393 int = 0, int = posargflags ());
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1394
111
kono
parents: 68
diff changeset
1395 extern enum flt_eval_method
kono
parents: 68
diff changeset
1396 excess_precision_mode_join (enum flt_eval_method, enum flt_eval_method);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1397
111
kono
parents: 68
diff changeset
1398 extern int c_flt_eval_method (bool ts18661_p);
kono
parents: 68
diff changeset
1399 extern void add_no_sanitize_value (tree node, unsigned int flags);
kono
parents: 68
diff changeset
1400
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1401 extern void maybe_add_include_fixit (rich_location *, const char *, bool);
111
kono
parents: 68
diff changeset
1402 extern void maybe_suggest_missing_token_insertion (rich_location *richloc,
kono
parents: 68
diff changeset
1403 enum cpp_ttype token_type,
kono
parents: 68
diff changeset
1404 location_t prev_token_loc);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1405 extern tree braced_lists_to_strings (tree, tree);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1406
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
1407 extern bool has_attribute (location_t, tree, tree, tree (*)(tree));
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1408
111
kono
parents: 68
diff changeset
1409 #if CHECKING_P
kono
parents: 68
diff changeset
1410 namespace selftest {
kono
parents: 68
diff changeset
1411 /* Declarations for specific families of tests within c-family,
kono
parents: 68
diff changeset
1412 by source file, in alphabetical order. */
kono
parents: 68
diff changeset
1413 extern void c_format_c_tests (void);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1414 extern void c_indentation_c_tests (void);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1415 extern void c_pretty_print_c_tests (void);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1416 extern void c_spellcheck_cc_tests (void);
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1417
111
kono
parents: 68
diff changeset
1418 /* The entrypoint for running all of the above tests. */
kono
parents: 68
diff changeset
1419 extern void c_family_tests (void);
kono
parents: 68
diff changeset
1420 } // namespace selftest
kono
parents: 68
diff changeset
1421 #endif /* #if CHECKING_P */
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1422
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1423 #endif /* ! GCC_C_COMMON_H */