1/* This file contains the definitions and documentation for the
2 additional tree codes used in the GNU C compiler (see tree.def
3 for the standard codes).
4 Copyright (C) 1987-2026 Free Software Foundation, Inc.
5 Written by Benjamin Chelf <chelf@codesourcery.com>
6
7This file is part of GCC.
8
9GCC is free software; you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
11Software Foundation; either version 3, or (at your option) any later
12version.
13
14GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15WARRANTY; without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
18
19You should have received a copy of the GNU General Public License
20along with GCC; see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>. */
22
23/* Tree nodes used in the C frontend. These are also shared with the
24 C++ and Objective C frontends. */
25
26/* A C_MAYBE_CONST_EXPR, currently only used for C and Objective C,
27 tracks information about constancy of an expression and VLA type
28 sizes or VM expressions from typeof that need to be evaluated
29 before the main expression. It is used during parsing and removed
30 in c_fully_fold. C_MAYBE_CONST_EXPR_PRE is the expression to
31 evaluate first, if not NULL; C_MAYBE_CONST_EXPR_EXPR is the main
32 expression. If C_MAYBE_CONST_EXPR_INT_OPERANDS is set then the
33 expression may be used in an unevaluated part of an integer
34 constant expression, but not in an evaluated part. If
35 C_MAYBE_CONST_EXPR_NON_CONST is set then the expression contains
36 something that cannot occur in an evaluated part of a constant
37 expression (or outside of sizeof in C90 mode); otherwise it does
38 not. */
39DEFTREECODE (C_MAYBE_CONST_EXPR, "c_maybe_const_expr", tcc_expression, 2)
40
41/* An EXCESS_PRECISION_EXPR represents an expression evaluated in greater
42 range or precision than its type. The type of the EXCESS_PRECISION_EXPR
43 is the semantic type while the operand represents what is actually being
44 evaluated. */
45DEFTREECODE (EXCESS_PRECISION_EXPR, "excess_precision_expr", tcc_expression, 1)
46
47/* Used to represent a user-defined literal.
48 The operands are an IDENTIFIER for the suffix, the VALUE of the literal,
49 and for numeric literals the original string representation of the
50 number. */
51DEFTREECODE (USERDEF_LITERAL, "userdef_literal", tcc_exceptional, 3)
52
53/* Represents a 'countof' expression. */
54DEFTREECODE (COUNTOF_EXPR, "countof_expr", tcc_expression, 1)
55
56/* Represents a 'maxof' expression. */
57DEFTREECODE (MAXOF_EXPR, "maxof_expr", tcc_expression, 1)
58
59/* Represents a 'minof' expression. */
60DEFTREECODE (MINOF_EXPR, "minof_expr", tcc_expression, 1)
61
62/* Represents a 'sizeof' expression during C++ template expansion,
63 or for the purpose of -Wsizeof-pointer-memaccess warning. */
64DEFTREECODE (SIZEOF_EXPR, "sizeof_expr", tcc_expression, 1)
65
66/* Like above, but enclosed in parentheses. Used to suppress warnings. */
67DEFTREECODE (PAREN_SIZEOF_EXPR, "paren_sizeof_expr", tcc_expression, 1)
68
69/* Used to represent a `for' statement. The operands are
70 FOR_INIT_STMT, FOR_COND, FOR_EXPR, FOR_BODY, FOR_SCOPE, FOR_NAME,
71 FOR_COND_PREP and FOR_COND_CLEANUP, respectively. */
72DEFTREECODE (FOR_STMT, "for_stmt", tcc_statement, 8)
73
74/* Used to represent a 'while' statement. The operands are WHILE_COND,
75 WHILE_BODY, WHILE_NAME, WHILE_COND_PREP and WHILE_COND_CLEANUP,
76 respectively. */
77DEFTREECODE (WHILE_STMT, "while_stmt", tcc_statement, 5)
78
79/* Used to represent a 'do' statement. The operands are DO_COND, DO_BODY,
80 and DO_NAME, respectively. */
81DEFTREECODE (DO_STMT, "do_stmt", tcc_statement, 3)
82
83/* Used to represent a 'break' statement. The operand BREAK_NAME is
84 the {FOR,WHILE,DO,SWITCH}_NAME to which it applies. NULL_TREE means
85 innermost. */
86DEFTREECODE (BREAK_STMT, "break_stmt", tcc_statement, 1)
87
88/* Used to represent a 'continue' statement. The operand CONTINUE_NAME is
89 the {FOR,WHILE,DO}_STMT to which it applies. NULL_TREE means innermost. */
90DEFTREECODE (CONTINUE_STMT, "continue_stmt", tcc_statement, 1)
91
92/* Used to represent a 'switch' statement. The operands are
93 SWITCH_STMT_COND, SWITCH_STMT_BODY, SWITCH_STMT_TYPE, SWITCH_STMT_SCOPE,
94 and SWITCH_STMT_NAME, respectively. */
95DEFTREECODE (SWITCH_STMT, "switch_stmt", tcc_statement, 5)
96
97/* Extensions for C++ Concepts. */
98
99/* Concept definition. This is not entirely different than a VAR_DECL
100 except that a) it must be a template, and b) doesn't have the wide
101 range of value and linkage options available to variables. Used
102 by C++ FE and in c-family attribute handling. */
103DEFTREECODE (CONCEPT_DECL, "concept_decl", tcc_declaration, 0)
104
105/*
106Local variables:
107mode:c
108End:
109*/
110

source code of gcc/c-family/c-common.def