1 /* Shift right
, logical.
*/
3 DEFTREECODE (URSHIFT_EXPR
, "urshift_expr", '2', 2)
5 /* Return
-1, 0, 1 depending on whether the first argument is
6 less
, equal
, or greater to the second argument.
*/
7 DEFTREECODE (COMPARE_EXPR
, "compare_expr", '2', 2)
9 /* Same as COMPARE_EXPR
, but if either value is NaN
, the result is
-1.
*/
10 DEFTREECODE (COMPARE_L_EXPR
, "compare_l_expr", '2', 2)
11 /* Same as COMPARE_EXPR
, but if either value is NaN
, the result is
1.
*/
12 DEFTREECODE (COMPARE_G_EXPR
, "compare_g_expr", '2', 2)
14 /* Unary plus. Operand
0 is the expression the unary plus is applied
16 DEFTREECODE (UNARY_PLUS_EXPR
, "unary_plus_expr", '1', 1)
18 /* New array creation expression.
19 Operand
0 is the array base type.
20 Operand
1 is the list of dimension expressions.
21 Operand
2 is the number of other dimensions of unspecified range.
22 Once patched
, the node will bear the type of the created array.
*/
23 DEFTREECODE (NEW_ARRAY_EXPR
, "new_array_expr", 'e', 3)
25 /* New anonymous array creation expression.
26 Operand
0 is the base type of the anonymous array.
27 Operand
1 is the signature of the dimensions this array contains.
28 Operand
2 is the anonymous array initializer.
29 Once patched
, the node will bear the type of the created array.
*/
30 DEFTREECODE (NEW_ANONYMOUS_ARRAY_EXPR
, "new_anonymous_array", 'e', 3)
32 /* New class creation expression.
33 Operand
0 is the name of the class to be created
34 Operand
1 is the argument list used to select a constructor.
35 There is no operand
2. That slot is used for the
36 CALL_EXPR_RTL
macro (see preexpand_calls
).
37 The type should be the one of the created class.
*/
38 DEFTREECODE (NEW_CLASS_EXPR
, "new_class_expr", 'e', 3)
40 /* Defines `this
' as an expression. */
41 DEFTREECODE (THIS_EXPR, "this", '1', 0)
43 /* Case statement expression.
44 Operand 1 is the case value. */
45 DEFTREECODE (CASE_EXPR, "case", 'e
', 1)
47 /* Default statement expression. */
48 DEFTREECODE (DEFAULT_EXPR, "default", 'e
', 0)
51 Operand 0 is the tried block,
52 Operand 1 contains chained catch nodes. */
53 DEFTREECODE (TRY_EXPR, "try-catch", 'e
', 2)
56 Operand 0 is the catch clause block, which contains the declaration of
57 the catch clause parameter. */
58 DEFTREECODE (CATCH_EXPR, "catch", '1', 1)
60 /* Synchronized statement.
61 Operand 0 is the expression on which we wish to synchronize,
62 Operand 1 is the synchronized expression block. */
63 DEFTREECODE (SYNCHRONIZED_EXPR, "synchronized", 'e
', 2)
66 Operand 0 is the throw expression. */
67 DEFTREECODE (THROW_EXPR, "throw", '1', 1)
69 /* Conditional operator.
70 Operand 0 is the condition expression
71 Operand 1 is the then-value
72 Operand 2 is the else-value. */
73 DEFTREECODE (CONDITIONAL_EXPR, "?:", 'e
', 3)
75 /* instanceof operator.
76 Operand 0 is the expression that is getting tested
77 Operand 1 is the class used for the test. */
78 DEFTREECODE (INSTANCEOF_EXPR, "instanceof", 'e
', 2)
80 /* Array initializers.
81 Operand 0 is the (sub) array target to initialize, left to NULL_TREE
82 when the node is created.
83 Operand 1 is a CONSTRUCTOR node. */
84 DEFTREECODE (NEW_ARRAY_INIT, "new_array_init", '1', 1)
87 Operand 0 is the name of the class we're trying to build a
89 DEFTREECODE (CLASS_LITERAL
, "class_literal", '1', 1)
91 /* The Java object within the exception object from the runtime.
*/
92 DEFTREECODE (JAVA_EXC_OBJ_EXPR
, "java_exc_obj_expr", 'e', 0)