150#define MARK_TS_BASE(C) \
151 (tree_contains_struct[C][TS_BASE] = true)
153#define MARK_TS_TYPED(C) \
155 tree_contains_struct[C][TS_TYPED] = true)
157#define MARK_TS_COMMON(C) \
158 (MARK_TS_TYPED (C), \
159 tree_contains_struct[C][TS_COMMON] = true)
161#define MARK_TS_TYPE_COMMON(C) \
162 (MARK_TS_COMMON (C), \
163 tree_contains_struct[C][TS_TYPE_COMMON] = true)
165#define MARK_TS_TYPE_WITH_LANG_SPECIFIC(C) \
166 (MARK_TS_TYPE_COMMON (C), \
167 tree_contains_struct[C][TS_TYPE_WITH_LANG_SPECIFIC] = true)
169#define MARK_TS_TYPE_NON_COMMON(C) \
170 (MARK_TS_TYPE_WITH_LANG_SPECIFIC (C), \
171 tree_contains_struct[C][TS_TYPE_NON_COMMON] = true) \
173#define MARK_TS_DECL_MINIMAL(C) \
174 (MARK_TS_COMMON (C), \
175 tree_contains_struct[C][TS_DECL_MINIMAL] = true)
177#define MARK_TS_DECL_COMMON(C) \
178 (MARK_TS_DECL_MINIMAL (C), \
179 tree_contains_struct[C][TS_DECL_COMMON] = true)
181#define MARK_TS_DECL_WRTL(C) \
182 (MARK_TS_DECL_COMMON (C), \
183 tree_contains_struct[C][TS_DECL_WRTL] = true)
185#define MARK_TS_DECL_WITH_VIS(C) \
186 (MARK_TS_DECL_WRTL (C), \
187 tree_contains_struct[C][TS_DECL_WITH_VIS] = true)
189#define MARK_TS_DECL_NON_COMMON(C) \
190 (MARK_TS_DECL_WITH_VIS (C), \
191 tree_contains_struct[C][TS_DECL_NON_COMMON] = true)
193#define MARK_TS_EXP(C) \
194 (MARK_TS_TYPED (C), \
195 tree_contains_struct[C][TS_EXP] = true)
199#define TREE_CODE_CLASS_STRING(CLASS)\
200 tree_code_class_strings[(int) (CLASS)]
202#if __cpp_inline_variables < 201606L
203#define TREE_CODE_CLASS(CODE) \
204 tree_code_type_tmpl <0>::tree_code_type[(int) (CODE)]
206#define TREE_CODE_CLASS(CODE) tree_code_type[(int) (CODE)]
211#define EXCEPTIONAL_CLASS_P(NODE)\
212 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_exceptional)
216#define CONSTANT_CLASS_P(NODE)\
217 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_constant)
222#define CONSTANT_CLASS_OR_WRAPPER_P(NODE)\
223 (CONSTANT_CLASS_P (tree_strip_any_location_wrapper (NODE)))
228 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_type)
233 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_declaration)
237 (TREE_CODE (NODE) == VAR_DECL)
241#define VAR_OR_FUNCTION_DECL_P(DECL)\
242 (TREE_CODE (DECL) == VAR_DECL || TREE_CODE (DECL) == FUNCTION_DECL)
247#define INDIRECT_REF_P(NODE)\
248 (TREE_CODE (NODE) == INDIRECT_REF)
252#define REFERENCE_CLASS_P(NODE)\
253 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_reference)
257#define COMPARISON_CLASS_P(NODE)\
258 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_comparison)
262#define UNARY_CLASS_P(NODE)\
263 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_unary)
267#define BINARY_CLASS_P(NODE)\
268 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_binary)
272#define STATEMENT_CLASS_P(NODE)\
273 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_statement)
278#define VL_EXP_CLASS_P(NODE)\
279 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_vl_exp)
283#define EXPRESSION_CLASS_P(NODE)\
284 (TREE_CODE_CLASS (TREE_CODE (NODE)) == tcc_expression)
288#define IS_TYPE_OR_DECL_P(NODE)\
289 (TYPE_P (NODE) || DECL_P (NODE))
294#define IS_EXPR_CODE_CLASS(CLASS)\
295 ((CLASS) >= tcc_reference && (CLASS) <= tcc_expression)
299#define EXPR_P(NODE) IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (NODE)))
301#if __cpp_inline_variables < 201606L
302#define TREE_CODE_LENGTH(CODE) \
303 tree_code_length_tmpl <0>::tree_code_length[(int) (CODE)]
305#define TREE_CODE_LENGTH(CODE) tree_code_length[(int) (CODE)]
311#define CASE_FLT_FN(FN) case FN: case FN##F: case FN##L
312#define CASE_FLT_FN_FLOATN_NX(FN) \
313 case FN##F16: case FN##F32: case FN##F64: case FN##F128: \
314 case FN##F32X: case FN##F64X: case FN##F128X
315#define CASE_FLT_FN_REENT(FN) case FN##_R: case FN##F_R: case FN##L_R
316#define CASE_INT_FN(FN) case FN: case FN##L: case FN##LL: case FN##IMAX
318#define NULL_TREE (tree) NULL
325#define TREE_CODE(NODE) ((enum tree_code) (NODE)->base.code)
326#define TREE_SET_CODE(NODE, VALUE) ((NODE)->base.code = (VALUE))
330#if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
332#define TREE_CHECK(T, CODE) \
333(tree_check ((T), __FILE__, __LINE__, __FUNCTION__, (CODE)))
335#define TREE_NOT_CHECK(T, CODE) \
336(tree_not_check ((T), __FILE__, __LINE__, __FUNCTION__, (CODE)))
338#define TREE_CHECK2(T, CODE1, CODE2) \
339(tree_check2 ((T), __FILE__, __LINE__, __FUNCTION__, (CODE1), (CODE2)))
341#define TREE_NOT_CHECK2(T, CODE1, CODE2) \
342(tree_not_check2 ((T), __FILE__, __LINE__, __FUNCTION__, (CODE1), (CODE2)))
344#define TREE_CHECK3(T, CODE1, CODE2, CODE3) \
345(tree_check3 ((T), __FILE__, __LINE__, __FUNCTION__, (CODE1), (CODE2), (CODE3)))
347#define TREE_NOT_CHECK3(T, CODE1, CODE2, CODE3) \
348(tree_not_check3 ((T), __FILE__, __LINE__, __FUNCTION__, \
349 (CODE1), (CODE2), (CODE3)))
351#define TREE_CHECK4(T, CODE1, CODE2, CODE3, CODE4) \
352(tree_check4 ((T), __FILE__, __LINE__, __FUNCTION__, \
353 (CODE1), (CODE2), (CODE3), (CODE4)))
355#define TREE_NOT_CHECK4(T, CODE1, CODE2, CODE3, CODE4) \
356(tree_not_check4 ((T), __FILE__, __LINE__, __FUNCTION__, \
357 (CODE1), (CODE2), (CODE3), (CODE4)))
359#define TREE_CHECK5(T, CODE1, CODE2, CODE3, CODE4, CODE5) \
360(tree_check5 ((T), __FILE__, __LINE__, __FUNCTION__, \
361 (CODE1), (CODE2), (CODE3), (CODE4), (CODE5)))
363#define TREE_NOT_CHECK5(T, CODE1, CODE2, CODE3, CODE4, CODE5) \
364(tree_not_check5 ((T), __FILE__, __LINE__, __FUNCTION__, \
365 (CODE1), (CODE2), (CODE3), (CODE4), (CODE5)))
367#define TREE_CHECK6(T, CODE1, CODE2, CODE3, CODE4, CODE5, CODE6) \
368(tree_check6 ((T), __FILE__, __LINE__, __FUNCTION__, \
369 (CODE1), (CODE2), (CODE3), (CODE4), (CODE5), (CODE6)))
371#define TREE_NOT_CHECK6(T, CODE1, CODE2, CODE3, CODE4, CODE5, CODE6) \
372(tree_not_check6 ((T), __FILE__, __LINE__, __FUNCTION__, \
373 (CODE1), (CODE2), (CODE3), (CODE4), (CODE5), (CODE6)))
375#define CONTAINS_STRUCT_CHECK(T, STRUCT) \
376(contains_struct_check ((T), (STRUCT), __FILE__, __LINE__, __FUNCTION__))
378#define TREE_CLASS_CHECK(T, CLASS) \
379(tree_class_check ((T), (CLASS), __FILE__, __LINE__, __FUNCTION__))
381#define TREE_RANGE_CHECK(T, CODE1, CODE2) \
382(tree_range_check ((T), (CODE1), (CODE2), __FILE__, __LINE__, __FUNCTION__))
384#define OMP_CLAUSE_SUBCODE_CHECK(T, CODE) \
385(omp_clause_subcode_check ((T), (CODE), __FILE__, __LINE__, __FUNCTION__))
387#define OMP_CLAUSE_RANGE_CHECK(T, CODE1, CODE2) \
388(omp_clause_range_check ((T), (CODE1), (CODE2), \
389 __FILE__, __LINE__, __FUNCTION__))
392#define EXPR_CHECK(T) \
393(expr_check ((T), __FILE__, __LINE__, __FUNCTION__))
396#define NON_TYPE_CHECK(T) \
397(non_type_check ((T), __FILE__, __LINE__, __FUNCTION__))
400#define ANY_INTEGRAL_TYPE_CHECK(T) \
401(any_integral_type_check ((T), __FILE__, __LINE__, __FUNCTION__))
403#define TREE_INT_CST_ELT_CHECK(T, I) \
404(*tree_int_cst_elt_check ((T), (I), __FILE__, __LINE__, __FUNCTION__))
406#define TREE_VEC_ELT_CHECK(T, I) \
407(*(const_cast<tree *> ( \
408 tree_vec_elt_check ((T), (I), __FILE__, __LINE__, __FUNCTION__))))
410#define OMP_CLAUSE_ELT_CHECK(T, I) \
411(*(omp_clause_elt_check ((T), (I), __FILE__, __LINE__, __FUNCTION__)))
414#define TREE_OPERAND_CHECK(T, I) \
415(*(const_cast<tree *> ( \
416 tree_operand_check ((T), (I), __FILE__, __LINE__, __FUNCTION__))))
418#define TREE_OPERAND_CHECK_CODE(T, CODE, I) \
419(*(tree_operand_check_code ((T), (CODE), (I), \
420 __FILE__, __LINE__, __FUNCTION__)))
431#define TREE_CHAIN(NODE) \
432(CONTAINS_STRUCT_CHECK (NODE, TS_COMMON)->common.chain)
438#define TREE_TYPE(NODE) \
439(CONTAINS_STRUCT_CHECK (NODE, TS_TYPED)->typed.type)
441extern void tree_contains_struct_check_failed (
const_tree,
443 const char *,
int,
const char *)
446extern void tree_check_failed (
const_tree,
const char *,
int,
const char *,
448extern
void tree_not_check_failed (
const_tree, const
char *,
int, const
char *,
451 const
char *,
int, const
char *)
453extern
void tree_range_check_failed (
const_tree, const
char *,
int,
457extern
void tree_not_class_check_failed (
const_tree,
459 const
char *,
int, const
char *)
461extern
void tree_int_cst_elt_check_failed (
int,
int, const
char *,
464extern
void tree_vec_elt_check_failed (
int,
int, const
char *,
467extern
void phi_node_elt_check_failed (
int,
int, const
char *,
470extern
void tree_operand_check_failed (
int,
const_tree,
471 const
char *,
int, const
char *)
473extern
void omp_clause_check_failed (
const_tree, const
char *,
int,
476extern
void omp_clause_operand_check_failed (
int,
const_tree, const
char *,
479extern
void omp_clause_range_check_failed (
const_tree, const
char *,
int,
486#define CONTAINS_STRUCT_CHECK(T, ENUM) (T)
487#define TREE_CHECK(T, CODE) (T)
488#define TREE_NOT_CHECK(T, CODE) (T)
489#define TREE_CHECK2(T, CODE1, CODE2) (T)
490#define TREE_NOT_CHECK2(T, CODE1, CODE2) (T)
491#define TREE_CHECK3(T, CODE1, CODE2, CODE3) (T)
492#define TREE_NOT_CHECK3(T, CODE1, CODE2, CODE3) (T)
493#define TREE_CHECK4(T, CODE1, CODE2, CODE3, CODE4) (T)
494#define TREE_NOT_CHECK4(T, CODE1, CODE2, CODE3, CODE4) (T)
495#define TREE_CHECK5(T, CODE1, CODE2, CODE3, CODE4, CODE5) (T)
496#define TREE_NOT_CHECK5(T, CODE1, CODE2, CODE3, CODE4, CODE5) (T)
497#define TREE_CHECK6(T, CODE1, CODE2, CODE3, CODE4, CODE5, CODE6) (T)
498#define TREE_NOT_CHECK6(T, CODE1, CODE2, CODE3, CODE4, CODE5, CODE6) (T)
499#define TREE_CLASS_CHECK(T, CODE) (T)
500#define TREE_RANGE_CHECK(T, CODE1, CODE2) (T)
501#define EXPR_CHECK(T) (T)
502#define NON_TYPE_CHECK(T) (T)
503#define TREE_INT_CST_ELT_CHECK(T, I) ((T)->int_cst.val[I])
504#define TREE_VEC_ELT_CHECK(T, I) ((T)->vec.a[I])
505#define TREE_OPERAND_CHECK(T, I) ((T)->exp.operands[I])
506#define TREE_OPERAND_CHECK_CODE(T, CODE, I) ((T)->exp.operands[I])
507#define OMP_CLAUSE_ELT_CHECK(T, i) ((T)->omp_clause.ops[i])
508#define OMP_CLAUSE_RANGE_CHECK(T, CODE1, CODE2) (T)
509#define OMP_CLAUSE_SUBCODE_CHECK(T, CODE) (T)
510#define ANY_INTEGRAL_TYPE_CHECK(T) (T)
512#define TREE_CHAIN(NODE) ((NODE)->common.chain)
513#define TREE_TYPE(NODE) ((NODE)->typed.type)
517#define TREE_BLOCK(NODE) (tree_block (NODE))
518#define TREE_SET_BLOCK(T, B) (tree_set_block ((T), (B)))
520#include "tree-check.h"
522#define TYPE_CHECK(T) TREE_CLASS_CHECK (T, tcc_type)
523#define DECL_MINIMAL_CHECK(T) CONTAINS_STRUCT_CHECK (T, TS_DECL_MINIMAL)
524#define DECL_COMMON_CHECK(T) CONTAINS_STRUCT_CHECK (T, TS_DECL_COMMON)
525#define DECL_WRTL_CHECK(T) CONTAINS_STRUCT_CHECK (T, TS_DECL_WRTL)
526#define DECL_WITH_VIS_CHECK(T) CONTAINS_STRUCT_CHECK (T, TS_DECL_WITH_VIS)
527#define DECL_NON_COMMON_CHECK(T) CONTAINS_STRUCT_CHECK (T, TS_DECL_NON_COMMON)
528#define CST_CHECK(T) TREE_CLASS_CHECK (T, tcc_constant)
529#define STMT_CHECK(T) TREE_CLASS_CHECK (T, tcc_statement)
530#define VL_EXP_CHECK(T) TREE_CLASS_CHECK (T, tcc_vl_exp)
531#define FUNC_OR_METHOD_CHECK(T) TREE_CHECK2 (T, FUNCTION_TYPE, METHOD_TYPE)
532#define PTR_OR_REF_CHECK(T) TREE_CHECK2 (T, POINTER_TYPE, REFERENCE_TYPE)
534#define RECORD_OR_UNION_CHECK(T) \
535 TREE_CHECK3 (T, RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE)
536#define NOT_RECORD_OR_UNION_CHECK(T) \
537 TREE_NOT_CHECK3 (T, RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE)
538#define ARRAY_OR_INTEGER_TYPE_CHECK(T) \
539 TREE_CHECK2 (T, ARRAY_TYPE, INTEGER_TYPE)
541#define NUMERICAL_TYPE_CHECK(T) \
542 TREE_CHECK6 (T, INTEGER_TYPE, ENUMERAL_TYPE, BOOLEAN_TYPE, REAL_TYPE, \
543 FIXED_POINT_TYPE, BITINT_TYPE)
547#define TYPE_HASH(TYPE) (TYPE_UID (TYPE))
551#define TREE_HASH(NODE) ((size_t) (NODE) & 0777777)
554#define CONVERT_EXPR_CODE_P(CODE) \
555 ((CODE) == NOP_EXPR || (CODE) == CONVERT_EXPR)
558#define CONVERT_EXPR_P(EXP) CONVERT_EXPR_CODE_P (TREE_CODE (EXP))
562#define CASE_CONVERT \
570#define STRIP_NOPS(EXP) \
571 (EXP) = tree_strip_nop_conversions (const_cast<tree> (EXP))
575#define STRIP_SIGN_NOPS(EXP) \
576 (EXP) = tree_strip_sign_nop_conversions (const_cast<tree> (EXP))
580#define STRIP_TYPE_NOPS(EXP) \
581 while ((CONVERT_EXPR_P (EXP) \
582 || TREE_CODE (EXP) == NON_LVALUE_EXPR) \
583 && TREE_OPERAND (EXP, 0) != error_mark_node \
584 && (TREE_TYPE (EXP) \
585 == TREE_TYPE (TREE_OPERAND (EXP, 0)))) \
586 (EXP) = TREE_OPERAND (EXP, 0)
591#define STRIP_USELESS_TYPE_CONVERSION(EXP) \
592 (EXP) = tree_ssa_strip_useless_type_conversions (EXP)
597#define STRIP_ANY_LOCATION_WRAPPER(EXP) \
598 (EXP) = tree_strip_any_location_wrapper (const_cast<tree> (EXP))
602#define VECTOR_TYPE_P(TYPE) (TREE_CODE (TYPE) == VECTOR_TYPE)
606#define VECTOR_BOOLEAN_TYPE_P(TYPE) \
607 (TREE_CODE (TYPE) == VECTOR_TYPE \
608 && TREE_CODE (TREE_TYPE (TYPE)) == BOOLEAN_TYPE)
614#define INTEGRAL_TYPE_P(TYPE) \
615 (TREE_CODE (TYPE) == ENUMERAL_TYPE \
616 || TREE_CODE (TYPE) == BOOLEAN_TYPE \
617 || TREE_CODE (TYPE) == INTEGER_TYPE \
618 || TREE_CODE (TYPE) == BITINT_TYPE)
622#define INTEGRAL_NB_TYPE_P(TYPE) \
623 (TREE_CODE (TYPE) == ENUMERAL_TYPE \
624 || TREE_CODE (TYPE) == INTEGER_TYPE \
625 || TREE_CODE (TYPE) == BITINT_TYPE)
630#define ANY_INTEGRAL_TYPE_P(TYPE) \
631 (INTEGRAL_TYPE_P (TYPE) \
632 || ((TREE_CODE (TYPE) == COMPLEX_TYPE \
633 || VECTOR_TYPE_P (TYPE)) \
634 && INTEGRAL_TYPE_P (TREE_TYPE (TYPE))))
639#define BITINT_TYPE_P(TYPE) \
640 (TREE_CODE (TYPE) == BITINT_TYPE \
641 || (TREE_CODE (TYPE) == ENUMERAL_TYPE \
642 && TREE_TYPE (TYPE) \
643 && TREE_CODE (TREE_TYPE (TYPE)) == BITINT_TYPE))
647#define NON_SAT_FIXED_POINT_TYPE_P(TYPE) \
648 (TREE_CODE (TYPE) == FIXED_POINT_TYPE && !TYPE_SATURATING (TYPE))
652#define SAT_FIXED_POINT_TYPE_P(TYPE) \
653 (TREE_CODE (TYPE) == FIXED_POINT_TYPE && TYPE_SATURATING (TYPE))
657#define FIXED_POINT_TYPE_P(TYPE) (TREE_CODE (TYPE) == FIXED_POINT_TYPE)
661#define SCALAR_FLOAT_TYPE_P(TYPE) (TREE_CODE (TYPE) == REAL_TYPE)
665#define COMPLEX_FLOAT_TYPE_P(TYPE) \
666 (TREE_CODE (TYPE) == COMPLEX_TYPE \
667 && TREE_CODE (TREE_TYPE (TYPE)) == REAL_TYPE)
671#define VECTOR_INTEGER_TYPE_P(TYPE) \
672 (VECTOR_TYPE_P (TYPE) \
673 && TREE_CODE (TREE_TYPE (TYPE)) == INTEGER_TYPE)
678#define VECTOR_FLOAT_TYPE_P(TYPE) \
679 (VECTOR_TYPE_P (TYPE) \
680 && TREE_CODE (TREE_TYPE (TYPE)) == REAL_TYPE)
686#define FLOAT_TYPE_P(TYPE) \
687 (SCALAR_FLOAT_TYPE_P (TYPE) \
688 || ((TREE_CODE (TYPE) == COMPLEX_TYPE \
689 || VECTOR_TYPE_P (TYPE)) \
690 && SCALAR_FLOAT_TYPE_P (TREE_TYPE (TYPE))))
693#define DECIMAL_FLOAT_TYPE_P(TYPE) \
694 (SCALAR_FLOAT_TYPE_P (TYPE) \
695 && DECIMAL_FLOAT_MODE_P (TYPE_MODE (TYPE)))
698#define RECORD_OR_UNION_TYPE_P(TYPE) \
699 (TREE_CODE (TYPE) == RECORD_TYPE \
700 || TREE_CODE (TYPE) == UNION_TYPE \
701 || TREE_CODE (TYPE) == QUAL_UNION_TYPE)
706#define AGGREGATE_TYPE_P(TYPE) \
707 (TREE_CODE (TYPE) == ARRAY_TYPE || RECORD_OR_UNION_TYPE_P (TYPE))
713#define POINTER_TYPE_P(TYPE) \
714 (TREE_CODE (TYPE) == POINTER_TYPE || TREE_CODE (TYPE) == REFERENCE_TYPE)
717#define FUNCTION_POINTER_TYPE_P(TYPE) \
718 (POINTER_TYPE_P (TYPE) && TREE_CODE (TREE_TYPE (TYPE)) == FUNCTION_TYPE)
721#define COMPLETE_TYPE_P(NODE) (TYPE_SIZE (NODE) != NULL_TREE)
724#define VOID_TYPE_P(NODE) (TREE_CODE (NODE) == VOID_TYPE)
727#define COMPLETE_OR_VOID_TYPE_P(NODE) \
728 (COMPLETE_TYPE_P (NODE) || VOID_TYPE_P (NODE))
731#define COMPLETE_OR_UNBOUND_ARRAY_TYPE_P(NODE) \
732 (COMPLETE_TYPE_P (TREE_CODE (NODE) == ARRAY_TYPE ? TREE_TYPE (NODE) : (NODE)))
734#define FUNC_OR_METHOD_TYPE_P(NODE) \
735 (TREE_CODE (NODE) == FUNCTION_TYPE || TREE_CODE (NODE) == METHOD_TYPE)
737#define OPAQUE_TYPE_P(NODE) \
738 (TREE_CODE (NODE) == OPAQUE_TYPE)
757#define TREE_ADDRESSABLE(NODE) ((NODE)->base.addressable_flag)
762#define CALL_EXPR_TAILCALL(NODE) \
763 (CALL_EXPR_CHECK (NODE)->base.addressable_flag)
767#define CALL_EXPR_MUST_TAIL_CALL(NODE) \
768 (CALL_EXPR_CHECK (NODE)->base.static_flag)
772#define CASE_LOW_SEEN(NODE) \
773 (CASE_LABEL_EXPR_CHECK (NODE)->base.addressable_flag)
775#define PREDICT_EXPR_OUTCOME(NODE) \
776 ((enum prediction) (PREDICT_EXPR_CHECK (NODE)->base.addressable_flag))
777#define SET_PREDICT_EXPR_OUTCOME(NODE, OUTCOME) \
778 (PREDICT_EXPR_CHECK (NODE)->base.addressable_flag = (int) OUTCOME)
779#define PREDICT_EXPR_PREDICTOR(NODE) \
780 ((enum br_predictor)tree_to_shwi (TREE_OPERAND (PREDICT_EXPR_CHECK (NODE), 0)))
785#define TREE_STATIC(NODE) ((NODE)->base.static_flag)
788#define TREE_NO_TRAMPOLINE(NODE) (ADDR_EXPR_CHECK (NODE)->base.static_flag)
793#define CLEANUP_EH_ONLY(NODE) ((NODE)->base.static_flag)
797#define TRY_CATCH_IS_CLEANUP(NODE) \
798 (TRY_CATCH_EXPR_CHECK (NODE)->base.static_flag)
802#define CASE_HIGH_SEEN(NODE) \
803 (CASE_LABEL_EXPR_CHECK (NODE)->base.static_flag)
806#define ENUM_IS_SCOPED(NODE) (ENUMERAL_TYPE_CHECK (NODE)->base.static_flag)
809#define ENUM_IS_OPAQUE(NODE) (ENUMERAL_TYPE_CHECK (NODE)->base.private_flag)
813#define CONST_WRAPPER_P(NODE) \
814 (TREE_CHECK (NODE, VIEW_CONVERT_EXPR)->base.private_flag)
821#define TREE_NO_WARNING(NODE) ((NODE)->base.nowarning_flag)
825#define TRANSLATION_UNIT_WARN_EMPTY_P(NODE) \
826 (TRANSLATION_UNIT_DECL_CHECK (NODE)->decl_common.decl_flag_0)
829#define TYPE_EMPTY_P(NODE) (TYPE_CHECK (NODE)->type_common.empty_flag)
832#define TYPE_ARTIFICIAL(NODE) (TYPE_CHECK (NODE)->base.nowarning_flag)
837#define TYPE_INDIVISIBLE_P(NODE) (TYPE_CHECK (NODE)->type_common.indivisible_p)
842#define TYPE_NO_NAMED_ARGS_STDARG_P(NODE) \
843 (FUNC_OR_METHOD_CHECK (NODE)->type_common.no_named_args_stdarg_p)
847#define TYPE_INCLUDES_FLEXARRAY(NODE) \
848 (RECORD_OR_UNION_CHECK (NODE)->type_common.no_named_args_stdarg_p)
852#define TREE_SYMBOL_REFERENCED(NODE) \
853 (IDENTIFIER_NODE_CHECK (NODE)->base.static_flag)
857#define TYPE_REF_CAN_ALIAS_ALL(NODE) \
858 (PTR_OR_REF_CHECK (NODE)->base.static_flag)
863#define TREE_OVERFLOW(NODE) (CST_CHECK (NODE)->base.public_flag)
867#define TREE_OVERFLOW_P(EXPR) \
868 (CONSTANT_CLASS_P (EXPR) && TREE_OVERFLOW (EXPR))
875#define TREE_PUBLIC(NODE) ((NODE)->base.public_flag)
879#define TYPE_CACHED_VALUES_P(NODE) (TYPE_CHECK (NODE)->base.public_flag)
883#define SAVE_EXPR_RESOLVED_P(NODE) \
884 (SAVE_EXPR_CHECK (NODE)->base.public_flag)
888#define CALL_EXPR_VA_ARG_PACK(NODE) \
889 (CALL_EXPR_CHECK (NODE)->base.public_flag)
896#define TREE_SIDE_EFFECTS(NODE) \
897 (NON_TYPE_CHECK (NODE)->base.side_effects_flag)
902#define FORCED_LABEL(NODE) (LABEL_DECL_CHECK (NODE)->base.side_effects_flag)
906#define FALLTHROUGH_LABEL_P(NODE) \
907 (LABEL_DECL_CHECK (NODE)->base.private_flag)
911#define SWITCH_BREAK_LABEL_P(NODE) \
912 (LABEL_DECL_CHECK (NODE)->base.protected_flag)
917#define UNUSED_LABEL_P(NODE) \
918 (LABEL_DECL_CHECK (NODE)->base.default_def_flag)
930#define VACUOUS_INIT_LABEL_P(NODE) \
931 (LABEL_DECL_CHECK (NODE)->base.nothrow_flag)
946#define TREE_THIS_VOLATILE(NODE) ((NODE)->base.volatile_flag)
957#define TREE_THIS_NOTRAP(NODE) \
958 (TREE_CHECK5 (NODE, INDIRECT_REF, MEM_REF, TARGET_MEM_REF, ARRAY_REF, \
959 ARRAY_RANGE_REF)->base.nothrow_flag)
965#define TREE_READONLY(NODE) (NON_TYPE_CHECK (NODE)->base.readonly_flag)
969#define TREE_CONSTANT(NODE) (NON_TYPE_CHECK (NODE)->base.constant_flag)
972#define TYPE_SIZES_GIMPLIFIED(NODE) \
973 (TYPE_CHECK (NODE)->base.constant_flag)
976#define DECL_UNSIGNED(NODE) \
977 (DECL_COMMON_CHECK (NODE)->base.u.bits.unsigned_flag)
980#define TYPE_UNSIGNED(NODE) (TYPE_CHECK (NODE)->base.u.bits.unsigned_flag)
983#define TYPE_SIGN(NODE) ((signop) TYPE_UNSIGNED (NODE))
987#define TYPE_OVERFLOW_WRAPS(TYPE) \
988 (POINTER_TYPE_P (TYPE) \
989 ? flag_wrapv_pointer \
990 : (ANY_INTEGRAL_TYPE_CHECK(TYPE)->base.u.bits.unsigned_flag \
995#define TYPE_OVERFLOW_UNDEFINED(TYPE) \
996 (POINTER_TYPE_P (TYPE) \
997 ? !flag_wrapv_pointer \
998 : (!ANY_INTEGRAL_TYPE_CHECK(TYPE)->base.u.bits.unsigned_flag \
999 && !flag_wrapv && !flag_trapv))
1003#define TYPE_OVERFLOW_TRAPS(TYPE) \
1004 (!ANY_INTEGRAL_TYPE_CHECK(TYPE)->base.u.bits.unsigned_flag && flag_trapv)
1007#define TYPE_OVERFLOW_SANITIZED(TYPE) \
1008 (INTEGRAL_TYPE_P (TYPE) \
1009 && !TYPE_OVERFLOW_WRAPS (TYPE) \
1010 && (flag_sanitize & SANITIZE_SI_OVERFLOW))
1021#define TREE_ASM_WRITTEN(NODE) ((NODE)->base.asm_written_flag)
1028#define TREE_USED(NODE) ((NODE)->base.used_flag)
1034#define TREE_NOTHROW(NODE) ((NODE)->base.nothrow_flag)
1038#define CALL_EXPR_RETURN_SLOT_OPT(NODE) \
1039 (CALL_EXPR_CHECK (NODE)->base.private_flag)
1044#define DECL_BY_REFERENCE(NODE) \
1045 (TREE_CHECK3 (NODE, VAR_DECL, PARM_DECL, \
1046 RESULT_DECL)->decl_common.decl_by_reference_flag)
1050#define DECL_READ_P(NODE) \
1051 (TREE_CHECK2 (NODE, VAR_DECL, PARM_DECL)->decl_common.decl_read_flag)
1055#define DECL_NONSHAREABLE(NODE) \
1056 (TREE_CHECK2 (NODE, VAR_DECL, \
1057 RESULT_DECL)->decl_common.decl_nonshareable_flag)
1061#define DECL_HIDDEN_STRING_LENGTH(NODE) \
1062 (TREE_CHECK (NODE, PARM_DECL)->decl_common.decl_nonshareable_flag)
1067#define CALL_FROM_THUNK_P(NODE) (CALL_EXPR_CHECK (NODE)->base.protected_flag)
1073#define CALL_ALLOCA_FOR_VAR_P(NODE) \
1074 (CALL_EXPR_CHECK (NODE)->base.protected_flag)
1079#define CALL_FROM_NEW_OR_DELETE_P(NODE) \
1080 (CALL_EXPR_CHECK (NODE)->base.protected_flag)
1083#define TREE_PRIVATE(NODE) ((NODE)->base.private_flag)
1085#define TREE_PROTECTED(NODE) ((NODE)->base.protected_flag)
1088#define TYPE_REF_IS_RVALUE(NODE) \
1089 (REFERENCE_TYPE_CHECK (NODE)->base.private_flag)
1093#define TREE_DEPRECATED(NODE) \
1094 ((NODE)->base.deprecated_flag)
1098#define TREE_UNAVAILABLE(NODE) \
1099 ((NODE)->base.u.bits.unavailable_flag)
1103#define IDENTIFIER_ANON_P(NODE) \
1104 (IDENTIFIER_NODE_CHECK (NODE)->base.private_flag)
1108#define IDENTIFIER_INTERNAL_P(NODE) \
1109 (IDENTIFIER_NODE_CHECK (NODE)->base.volatile_flag)
1113#define IDENTIFIER_TRANSPARENT_ALIAS(NODE) \
1114 (IDENTIFIER_NODE_CHECK (NODE)->base.deprecated_flag)
1119#define TYPE_REVERSE_STORAGE_ORDER(NODE) \
1120 (TREE_CHECK4 (NODE, RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE, ARRAY_TYPE)->base.u.bits.saturating_flag)
1123#define TYPE_SATURATING(NODE) \
1124 (TREE_NOT_CHECK4 (NODE, RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE, ARRAY_TYPE)->base.u.bits.saturating_flag)
1137#define REF_REVERSE_STORAGE_ORDER(NODE) \
1138 (TREE_CHECK2 (NODE, BIT_FIELD_REF, MEM_REF)->base.default_def_flag)
1142#define FUNC_ADDR_BY_DESCRIPTOR(NODE) \
1143 (TREE_CHECK (NODE, ADDR_EXPR)->base.default_def_flag)
1147#define CALL_EXPR_BY_DESCRIPTOR(NODE) \
1148 (TREE_CHECK (NODE, CALL_EXPR)->base.default_def_flag)
1151#define TREE_LANG_FLAG_0(NODE) \
1152 (TREE_NOT_CHECK2 (NODE, TREE_VEC, SSA_NAME)->base.u.bits.lang_flag_0)
1153#define TREE_LANG_FLAG_1(NODE) \
1154 (TREE_NOT_CHECK2 (NODE, TREE_VEC, SSA_NAME)->base.u.bits.lang_flag_1)
1155#define TREE_LANG_FLAG_2(NODE) \
1156 (TREE_NOT_CHECK2 (NODE, TREE_VEC, SSA_NAME)->base.u.bits.lang_flag_2)
1157#define TREE_LANG_FLAG_3(NODE) \
1158 (TREE_NOT_CHECK2 (NODE, TREE_VEC, SSA_NAME)->base.u.bits.lang_flag_3)
1159#define TREE_LANG_FLAG_4(NODE) \
1160 (TREE_NOT_CHECK2 (NODE, TREE_VEC, SSA_NAME)->base.u.bits.lang_flag_4)
1161#define TREE_LANG_FLAG_5(NODE) \
1162 (TREE_NOT_CHECK2 (NODE, TREE_VEC, SSA_NAME)->base.u.bits.lang_flag_5)
1163#define TREE_LANG_FLAG_6(NODE) \
1164 (TREE_NOT_CHECK2 (NODE, TREE_VEC, SSA_NAME)->base.u.bits.lang_flag_6)
1168#define TREE_INT_CST_NUNITS(NODE) \
1169 (INTEGER_CST_CHECK (NODE)->base.u.int_length.unextended)
1170#define TREE_INT_CST_EXT_NUNITS(NODE) \
1171 (INTEGER_CST_CHECK (NODE)->base.u.int_length.extended)
1172#define TREE_INT_CST_ELT(NODE, I) TREE_INT_CST_ELT_CHECK (NODE, I)
1173#define TREE_INT_CST_LOW(NODE) \
1174 ((unsigned HOST_WIDE_INT) TREE_INT_CST_ELT (NODE, 0))
1178#define POLY_INT_CST_P(NODE) \
1179 (NUM_POLY_INT_COEFFS > 1 && TREE_CODE (NODE) == POLY_INT_CST)
1182#define POLY_INT_CST_COEFF(NODE, I) \
1183 (POLY_INT_CST_CHECK (NODE)->poly_int_cst.coeffs[I])
1185#define TREE_REAL_CST_PTR(NODE) (&REAL_CST_CHECK (NODE)->real_cst.value)
1186#define TREE_REAL_CST(NODE) (*TREE_REAL_CST_PTR (NODE))
1188#define TREE_FIXED_CST_PTR(NODE) \
1189 (FIXED_CST_CHECK (NODE)->fixed_cst.fixed_cst_ptr)
1190#define TREE_FIXED_CST(NODE) (*TREE_FIXED_CST_PTR (NODE))
1194#define TREE_STRING_LENGTH(NODE) (STRING_CST_CHECK (NODE)->string.length)
1195#define TREE_STRING_POINTER(NODE) \
1196 ((const char *)(STRING_CST_CHECK (NODE)->string.str))
1199#define RAW_DATA_LENGTH(NODE) \
1200 (RAW_DATA_CST_CHECK (NODE)->raw_data_cst.length)
1201#define RAW_DATA_POINTER(NODE) \
1202 (RAW_DATA_CST_CHECK (NODE)->raw_data_cst.str)
1203#define RAW_DATA_OWNER(NODE) \
1204 (RAW_DATA_CST_CHECK (NODE)->raw_data_cst.owner)
1205#define RAW_DATA_UCHAR_ELT(NODE, I) \
1206 (((const unsigned char *) RAW_DATA_POINTER (NODE))[I])
1207#define RAW_DATA_SCHAR_ELT(NODE, I) \
1208 (((const signed char *) RAW_DATA_POINTER (NODE))[I])
1211#define TREE_REALPART(NODE) (COMPLEX_CST_CHECK (NODE)->complex.real)
1212#define TREE_IMAGPART(NODE) (COMPLEX_CST_CHECK (NODE)->complex.imag)
1215#define VECTOR_CST_NELTS(NODE) (TYPE_VECTOR_SUBPARTS (TREE_TYPE (NODE)))
1216#define VECTOR_CST_ELT(NODE,IDX) vector_cst_elt (NODE, IDX)
1218#define VECTOR_CST_LOG2_NPATTERNS(NODE) \
1219 (VECTOR_CST_CHECK (NODE)->base.u.vector_cst.log2_npatterns)
1220#define VECTOR_CST_NPATTERNS(NODE) \
1221 (1U << VECTOR_CST_LOG2_NPATTERNS (NODE))
1222#define VECTOR_CST_NELTS_PER_PATTERN(NODE) \
1223 (VECTOR_CST_CHECK (NODE)->base.u.vector_cst.nelts_per_pattern)
1224#define VECTOR_CST_DUPLICATE_P(NODE) \
1225 (VECTOR_CST_NELTS_PER_PATTERN (NODE) == 1)
1226#define VECTOR_CST_STEPPED_P(NODE) \
1227 (VECTOR_CST_NELTS_PER_PATTERN (NODE) == 3)
1228#define VECTOR_CST_ENCODED_ELTS(NODE) \
1229 (VECTOR_CST_CHECK (NODE)->vector.elts)
1230#define VECTOR_CST_ENCODED_ELT(NODE, ELT) \
1231 (VECTOR_CST_CHECK (NODE)->vector.elts[ELT])
1236#define IDENTIFIER_LENGTH(NODE) \
1237 (IDENTIFIER_NODE_CHECK (NODE)->identifier.id.len)
1238#define IDENTIFIER_POINTER(NODE) \
1239 ((const char *) IDENTIFIER_NODE_CHECK (NODE)->identifier.id.str)
1240#define IDENTIFIER_HASH_VALUE(NODE) \
1241 (IDENTIFIER_NODE_CHECK (NODE)->identifier.id.hash_value)
1246#define HT_IDENT_TO_GCC_IDENT(NODE) \
1247 ((tree) ((char *) (NODE) - sizeof (struct tree_common)))
1248#define GCC_IDENT_TO_HT_IDENT(NODE) (&((struct tree_identifier *) (NODE))->id)
1251#define TREE_PURPOSE(NODE) (TREE_LIST_CHECK (NODE)->list.purpose)
1252#define TREE_VALUE(NODE) (TREE_LIST_CHECK (NODE)->list.value)
1258#define ATTR_UNIQUE_VALUE_P(NODE) (TREE_LIST_CHECK (NODE)->base.protected_flag)
1261#define TREE_VEC_LENGTH(NODE) (TREE_VEC_CHECK (NODE)->base.u.length)
1262#define TREE_VEC_BEGIN(NODE) (&TREE_VEC_CHECK (NODE)->vec.a[0])
1263#define TREE_VEC_END(NODE) \
1264 ((void) TREE_VEC_CHECK (NODE), &((NODE)->vec.a[(NODE)->base.u.length]))
1266#define TREE_VEC_ELT(NODE,I) TREE_VEC_ELT_CHECK (NODE, I)
1269#define CONSTRUCTOR_ELTS(NODE) (CONSTRUCTOR_CHECK (NODE)->constructor.elts)
1270#define CONSTRUCTOR_ELT(NODE,IDX) \
1271 (&(*CONSTRUCTOR_ELTS (NODE))[IDX])
1272#define CONSTRUCTOR_NELTS(NODE) \
1273 (vec_safe_length (CONSTRUCTOR_ELTS (NODE)))
1274#define CONSTRUCTOR_NO_CLEARING(NODE) \
1275 (CONSTRUCTOR_CHECK (NODE)->base.public_flag)
1277#define CONSTRUCTOR_ZERO_PADDING_BITS(NODE) \
1278 (CONSTRUCTOR_CHECK (NODE)->base.default_def_flag)
1283#define FOR_EACH_CONSTRUCTOR_VALUE(V, IX, VAL) \
1284 for (IX = 0; (IX >= vec_safe_length (V)) \
1286 : ((VAL = (*(V))[IX].value), \
1293#define FOR_EACH_CONSTRUCTOR_ELT(V, IX, INDEX, VAL) \
1294 for (IX = 0; (IX >= vec_safe_length (V)) \
1296 : (((void) (VAL = (*V)[IX].value)), \
1297 (INDEX = (*V)[IX].index), \
1302#define CONSTRUCTOR_APPEND_ELT(V, INDEX, VALUE) \
1304 constructor_elt _ce___ = {INDEX, VALUE}; \
1305 vec_safe_push ((V), _ce___); \
1310#define CONSTRUCTOR_BITFIELD_P(NODE) \
1311 (DECL_BIT_FIELD (FIELD_DECL_CHECK (NODE)) \
1312 && (DECL_MODE (NODE) != BLKmode \
1313 || TREE_CODE (TREE_TYPE (NODE)) == BITINT_TYPE))
1320#define TREE_CLOBBER_P(NODE) \
1321 (TREE_CODE (NODE) == CONSTRUCTOR && TREE_THIS_VOLATILE (NODE))
1324#define CLOBBER_KIND(NODE) \
1325 (CONSTRUCTOR_CHECK (NODE)->base.u.bits.address_space)
1330#define IS_EMPTY_STMT(NODE) (TREE_CODE (NODE) == NOP_EXPR \
1331 && VOID_TYPE_P (TREE_TYPE (NODE)) \
1332 && integer_zerop (TREE_OPERAND (NODE, 0)))
1335#define TREE_OPERAND_LENGTH(NODE) tree_operand_length (NODE)
1336#define TREE_OPERAND(NODE, I) TREE_OPERAND_CHECK (NODE, I)
1343#define VL_EXP_OPERAND_LENGTH(NODE) \
1344 ((int)TREE_INT_CST_LOW (VL_EXP_CHECK (NODE)->exp.operands[0]))
1347#define MAY_HAVE_DEBUG_MARKER_STMTS debug_nonbind_markers_p
1350#define MAY_HAVE_DEBUG_BIND_STMTS flag_var_tracking_assignments
1352#define MAY_HAVE_DEBUG_STMTS \
1353 (MAY_HAVE_DEBUG_MARKER_STMTS || MAY_HAVE_DEBUG_BIND_STMTS)
1356#define LOOP_EXPR_BODY(NODE) TREE_OPERAND_CHECK_CODE (NODE, LOOP_EXPR, 0)
1361#define EXPR_LOCATION(NODE) \
1362 (CAN_HAVE_LOCATION_P ((NODE)) ? (NODE)->exp.locus : UNKNOWN_LOCATION)
1363#define SET_EXPR_LOCATION(NODE, LOCUS) EXPR_CHECK ((NODE))->exp.locus = (LOCUS)
1364#define EXPR_HAS_LOCATION(NODE) (LOCATION_LOCUS (EXPR_LOCATION (NODE)) \
1365 != UNKNOWN_LOCATION)
1368#define EXPR_LOC_OR_LOC(NODE, LOCUS) (EXPR_HAS_LOCATION (NODE) \
1369 ? (NODE)->exp.locus : (LOCUS))
1370#define EXPR_FILENAME(NODE) LOCATION_FILE (EXPR_CHECK ((NODE))->exp.locus)
1371#define EXPR_LINENO(NODE) LOCATION_LINE (EXPR_CHECK (NODE)->exp.locus)
1373#define CAN_HAVE_RANGE_P(NODE) (CAN_HAVE_LOCATION_P (NODE))
1374#define EXPR_LOCATION_RANGE(NODE) (get_expr_source_range (EXPR_CHECK ((NODE))))
1376#define EXPR_HAS_RANGE(NODE) \
1377 (CAN_HAVE_RANGE_P (NODE) \
1378 ? EXPR_LOCATION_RANGE (NODE).m_start != UNKNOWN_LOCATION \
1383#define CAN_HAVE_LOCATION_P(NODE) ((NODE) && EXPR_P (NODE))
1394ATTRIBUTE_WARN_UNUSED_RESULT
1413#define TARGET_EXPR_SLOT(NODE) TREE_OPERAND_CHECK_CODE (NODE, TARGET_EXPR, 0)
1414#define TARGET_EXPR_INITIAL(NODE) TREE_OPERAND_CHECK_CODE (NODE, TARGET_EXPR, 1)
1415#define TARGET_EXPR_CLEANUP(NODE) TREE_OPERAND_CHECK_CODE (NODE, TARGET_EXPR, 2)
1418#define TARGET_EXPR_NO_ELIDE(NODE) (TARGET_EXPR_CHECK (NODE)->base.private_flag)
1422#define DECL_EXPR_DECL(NODE) TREE_OPERAND (DECL_EXPR_CHECK (NODE), 0)
1424#define EXIT_EXPR_COND(NODE) TREE_OPERAND (EXIT_EXPR_CHECK (NODE), 0)
1427#define COMPOUND_LITERAL_EXPR_DECL_EXPR(NODE) \
1428 TREE_OPERAND (COMPOUND_LITERAL_EXPR_CHECK (NODE), 0)
1429#define COMPOUND_LITERAL_EXPR_DECL(NODE) \
1430 DECL_EXPR_DECL (COMPOUND_LITERAL_EXPR_DECL_EXPR (NODE))
1433#define SWITCH_COND(NODE) TREE_OPERAND (SWITCH_EXPR_CHECK (NODE), 0)
1434#define SWITCH_BODY(NODE) TREE_OPERAND (SWITCH_EXPR_CHECK (NODE), 1)
1438#define SWITCH_ALL_CASES_P(NODE) (SWITCH_EXPR_CHECK (NODE)->base.private_flag)
1442#define CASE_LOW(NODE) TREE_OPERAND (CASE_LABEL_EXPR_CHECK (NODE), 0)
1443#define CASE_HIGH(NODE) TREE_OPERAND (CASE_LABEL_EXPR_CHECK (NODE), 1)
1444#define CASE_LABEL(NODE) TREE_OPERAND (CASE_LABEL_EXPR_CHECK (NODE), 2)
1445#define CASE_CHAIN(NODE) TREE_OPERAND (CASE_LABEL_EXPR_CHECK (NODE), 3)
1449#define TMR_BASE(NODE) (TREE_OPERAND (TARGET_MEM_REF_CHECK (NODE), 0))
1450#define TMR_OFFSET(NODE) (TREE_OPERAND (TARGET_MEM_REF_CHECK (NODE), 1))
1451#define TMR_INDEX(NODE) (TREE_OPERAND (TARGET_MEM_REF_CHECK (NODE), 2))
1452#define TMR_STEP(NODE) (TREE_OPERAND (TARGET_MEM_REF_CHECK (NODE), 3))
1453#define TMR_INDEX2(NODE) (TREE_OPERAND (TARGET_MEM_REF_CHECK (NODE), 4))
1455#define MR_DEPENDENCE_CLIQUE(NODE) \
1456 (TREE_CHECK2 (NODE, MEM_REF, TARGET_MEM_REF)->base.u.dependence_info.clique)
1457#define MR_DEPENDENCE_BASE(NODE) \
1458 (TREE_CHECK2 (NODE, MEM_REF, TARGET_MEM_REF)->base.u.dependence_info.base)
1461#define BIND_EXPR_VARS(NODE) (TREE_OPERAND (BIND_EXPR_CHECK (NODE), 0))
1462#define BIND_EXPR_BODY(NODE) (TREE_OPERAND (BIND_EXPR_CHECK (NODE), 1))
1463#define BIND_EXPR_BLOCK(NODE) (TREE_OPERAND (BIND_EXPR_CHECK (NODE), 2))
1467#define GOTO_DESTINATION(NODE) TREE_OPERAND (GOTO_EXPR_CHECK (NODE), 0)
1473#define ASM_STRING(NODE) TREE_OPERAND (ASM_EXPR_CHECK (NODE), 0)
1474#define ASM_OUTPUTS(NODE) TREE_OPERAND (ASM_EXPR_CHECK (NODE), 1)
1475#define ASM_INPUTS(NODE) TREE_OPERAND (ASM_EXPR_CHECK (NODE), 2)
1476#define ASM_CLOBBERS(NODE) TREE_OPERAND (ASM_EXPR_CHECK (NODE), 3)
1477#define ASM_LABELS(NODE) TREE_OPERAND (ASM_EXPR_CHECK (NODE), 4)
1481#define ASM_BASIC_P(NODE) (ASM_EXPR_CHECK (NODE)->base.static_flag)
1482#define ASM_VOLATILE_P(NODE) (ASM_EXPR_CHECK (NODE)->base.public_flag)
1485#define ASM_INLINE_P(NODE) (ASM_EXPR_CHECK (NODE)->base.protected_flag)
1488#define COND_EXPR_COND(NODE) (TREE_OPERAND (COND_EXPR_CHECK (NODE), 0))
1489#define COND_EXPR_THEN(NODE) (TREE_OPERAND (COND_EXPR_CHECK (NODE), 1))
1490#define COND_EXPR_ELSE(NODE) (TREE_OPERAND (COND_EXPR_CHECK (NODE), 2))
1493#define CHREC_LEFT(NODE) TREE_OPERAND (POLYNOMIAL_CHREC_CHECK (NODE), 0)
1494#define CHREC_RIGHT(NODE) TREE_OPERAND (POLYNOMIAL_CHREC_CHECK (NODE), 1)
1495#define CHREC_VARIABLE(NODE) POLYNOMIAL_CHREC_CHECK (NODE)->base.u.chrec_var
1497#define CHREC_NOWRAP(NODE) POLYNOMIAL_CHREC_CHECK (NODE)->base.nothrow_flag
1501#define LABEL_EXPR_LABEL(NODE) TREE_OPERAND (LABEL_EXPR_CHECK (NODE), 0)
1504#define CATCH_TYPES(NODE) TREE_OPERAND (CATCH_EXPR_CHECK (NODE), 0)
1505#define CATCH_BODY(NODE) TREE_OPERAND (CATCH_EXPR_CHECK (NODE), 1)
1508#define EH_FILTER_TYPES(NODE) TREE_OPERAND (EH_FILTER_EXPR_CHECK (NODE), 0)
1509#define EH_FILTER_FAILURE(NODE) TREE_OPERAND (EH_FILTER_EXPR_CHECK (NODE), 1)
1512#define OBJ_TYPE_REF_EXPR(NODE) TREE_OPERAND (OBJ_TYPE_REF_CHECK (NODE), 0)
1513#define OBJ_TYPE_REF_OBJECT(NODE) TREE_OPERAND (OBJ_TYPE_REF_CHECK (NODE), 1)
1514#define OBJ_TYPE_REF_TOKEN(NODE) TREE_OPERAND (OBJ_TYPE_REF_CHECK (NODE), 2)
1517#define CALL_EXPR_FN(NODE) TREE_OPERAND (CALL_EXPR_CHECK (NODE), 1)
1518#define CALL_EXPR_STATIC_CHAIN(NODE) TREE_OPERAND (CALL_EXPR_CHECK (NODE), 2)
1519#define CALL_EXPR_ARG(NODE, I) TREE_OPERAND (CALL_EXPR_CHECK (NODE), (I) + 3)
1520#define call_expr_nargs(NODE) (VL_EXP_OPERAND_LENGTH (NODE) - 3)
1521#define CALL_EXPR_IFN(NODE) (CALL_EXPR_CHECK (NODE)->base.u.ifn)
1529#define CALL_EXPR_ARGP(NODE) \
1530 (&(TREE_OPERAND (CALL_EXPR_CHECK (NODE), 0)) + 3)
1533#define TRANSACTION_EXPR_BODY(NODE) \
1534 TREE_OPERAND (TRANSACTION_EXPR_CHECK (NODE), 0)
1535#define TRANSACTION_EXPR_OUTER(NODE) \
1536 (TRANSACTION_EXPR_CHECK (NODE)->base.static_flag)
1537#define TRANSACTION_EXPR_RELAXED(NODE) \
1538 (TRANSACTION_EXPR_CHECK (NODE)->base.public_flag)
1544#define OMP_BODY(NODE) \
1545 TREE_OPERAND (TREE_RANGE_CHECK (NODE, OACC_PARALLEL, OMP_MASTER), 0)
1546#define OMP_CLAUSES(NODE) \
1547 TREE_OPERAND (TREE_RANGE_CHECK (NODE, OACC_PARALLEL, OMP_SCAN), 1)
1550#define OMP_STANDALONE_CLAUSES(NODE) \
1551 TREE_OPERAND (TREE_RANGE_CHECK (NODE, OACC_CACHE, OMP_TARGET_EXIT_DATA), 0)
1553#define OACC_DATA_BODY(NODE) \
1554 TREE_OPERAND (OACC_DATA_CHECK (NODE), 0)
1555#define OACC_DATA_CLAUSES(NODE) \
1556 TREE_OPERAND (OACC_DATA_CHECK (NODE), 1)
1558#define OACC_HOST_DATA_BODY(NODE) \
1559 TREE_OPERAND (OACC_HOST_DATA_CHECK (NODE), 0)
1560#define OACC_HOST_DATA_CLAUSES(NODE) \
1561 TREE_OPERAND (OACC_HOST_DATA_CHECK (NODE), 1)
1563#define OACC_CACHE_CLAUSES(NODE) \
1564 TREE_OPERAND (OACC_CACHE_CHECK (NODE), 0)
1566#define OACC_DECLARE_CLAUSES(NODE) \
1567 TREE_OPERAND (OACC_DECLARE_CHECK (NODE), 0)
1569#define OACC_ENTER_DATA_CLAUSES(NODE) \
1570 TREE_OPERAND (OACC_ENTER_DATA_CHECK (NODE), 0)
1572#define OACC_EXIT_DATA_CLAUSES(NODE) \
1573 TREE_OPERAND (OACC_EXIT_DATA_CHECK (NODE), 0)
1575#define OACC_UPDATE_CLAUSES(NODE) \
1576 TREE_OPERAND (OACC_UPDATE_CHECK (NODE), 0)
1578#define OMP_PARALLEL_BODY(NODE) TREE_OPERAND (OMP_PARALLEL_CHECK (NODE), 0)
1579#define OMP_PARALLEL_CLAUSES(NODE) TREE_OPERAND (OMP_PARALLEL_CHECK (NODE), 1)
1581#define OMP_TASK_BODY(NODE) TREE_OPERAND (OMP_TASK_CHECK (NODE), 0)
1582#define OMP_TASK_CLAUSES(NODE) TREE_OPERAND (OMP_TASK_CHECK (NODE), 1)
1584#define OMP_TASKREG_CHECK(NODE) TREE_RANGE_CHECK (NODE, OMP_PARALLEL, OMP_TASK)
1585#define OMP_TASKREG_BODY(NODE) TREE_OPERAND (OMP_TASKREG_CHECK (NODE), 0)
1586#define OMP_TASKREG_CLAUSES(NODE) TREE_OPERAND (OMP_TASKREG_CHECK (NODE), 1)
1588#define OMP_LOOPING_CHECK(NODE) TREE_RANGE_CHECK (NODE, OMP_FOR, OACC_LOOP)
1589#define OMP_FOR_BODY(NODE) TREE_OPERAND (OMP_LOOPING_CHECK (NODE), 0)
1590#define OMP_FOR_CLAUSES(NODE) TREE_OPERAND (OMP_LOOPING_CHECK (NODE), 1)
1591#define OMP_FOR_INIT(NODE) TREE_OPERAND (OMP_LOOPING_CHECK (NODE), 2)
1592#define OMP_FOR_COND(NODE) TREE_OPERAND (OMP_LOOPING_CHECK (NODE), 3)
1593#define OMP_FOR_INCR(NODE) TREE_OPERAND (OMP_LOOPING_CHECK (NODE), 4)
1594#define OMP_FOR_PRE_BODY(NODE) TREE_OPERAND (OMP_LOOPING_CHECK (NODE), 5)
1595#define OMP_FOR_ORIG_DECLS(NODE) TREE_OPERAND (OMP_LOOPING_CHECK (NODE), 6)
1597#define OMP_INTEROP_CLAUSES(NODE)\
1598 TREE_OPERAND (OMP_INTEROP_CHECK (NODE), 0)
1600#define OMP_LOOPXFORM_CHECK(NODE) TREE_RANGE_CHECK (NODE, OMP_TILE, OMP_UNROLL)
1601#define OMP_LOOPXFORM_LOWERED(NODE) \
1602 (OMP_LOOPXFORM_CHECK (NODE)->base.public_flag)
1604#define OMP_SECTIONS_BODY(NODE) TREE_OPERAND (OMP_SECTIONS_CHECK (NODE), 0)
1605#define OMP_SECTIONS_CLAUSES(NODE) TREE_OPERAND (OMP_SECTIONS_CHECK (NODE), 1)
1607#define OMP_SECTION_BODY(NODE) TREE_OPERAND (OMP_SECTION_CHECK (NODE), 0)
1609#define OMP_STRUCTURED_BLOCK_BODY(NODE) \
1610 TREE_OPERAND (OMP_STRUCTURED_BLOCK_CHECK (NODE), 0)
1612#define OMP_SINGLE_BODY(NODE) TREE_OPERAND (OMP_SINGLE_CHECK (NODE), 0)
1613#define OMP_SINGLE_CLAUSES(NODE) TREE_OPERAND (OMP_SINGLE_CHECK (NODE), 1)
1615#define OMP_SCOPE_BODY(NODE) TREE_OPERAND (OMP_SCOPE_CHECK (NODE), 0)
1616#define OMP_SCOPE_CLAUSES(NODE) TREE_OPERAND (OMP_SCOPE_CHECK (NODE), 1)
1618#define OMP_MASTER_BODY(NODE) TREE_OPERAND (OMP_MASTER_CHECK (NODE), 0)
1620#define OMP_MASKED_BODY(NODE) TREE_OPERAND (OMP_MASKED_CHECK (NODE), 0)
1621#define OMP_MASKED_CLAUSES(NODE) TREE_OPERAND (OMP_MASKED_CHECK (NODE), 1)
1623#define OMP_TASKGROUP_BODY(NODE) TREE_OPERAND (OMP_TASKGROUP_CHECK (NODE), 0)
1624#define OMP_TASKGROUP_CLAUSES(NODE) \
1625 TREE_OPERAND (OMP_TASKGROUP_CHECK (NODE), 1)
1627#define OMP_ORDERED_BODY(NODE) TREE_OPERAND (OMP_ORDERED_CHECK (NODE), 0)
1628#define OMP_ORDERED_CLAUSES(NODE) TREE_OPERAND (OMP_ORDERED_CHECK (NODE), 1)
1630#define OMP_CRITICAL_BODY(NODE) TREE_OPERAND (OMP_CRITICAL_CHECK (NODE), 0)
1631#define OMP_CRITICAL_CLAUSES(NODE) TREE_OPERAND (OMP_CRITICAL_CHECK (NODE), 1)
1632#define OMP_CRITICAL_NAME(NODE) TREE_OPERAND (OMP_CRITICAL_CHECK (NODE), 2)
1634#define OMP_TEAMS_BODY(NODE) TREE_OPERAND (OMP_TEAMS_CHECK (NODE), 0)
1635#define OMP_TEAMS_CLAUSES(NODE) TREE_OPERAND (OMP_TEAMS_CHECK (NODE), 1)
1637#define OMP_TARGET_DATA_BODY(NODE) \
1638 TREE_OPERAND (OMP_TARGET_DATA_CHECK (NODE), 0)
1639#define OMP_TARGET_DATA_CLAUSES(NODE)\
1640 TREE_OPERAND (OMP_TARGET_DATA_CHECK (NODE), 1)
1642#define OMP_TARGET_BODY(NODE) TREE_OPERAND (OMP_TARGET_CHECK (NODE), 0)
1643#define OMP_TARGET_CLAUSES(NODE) TREE_OPERAND (OMP_TARGET_CHECK (NODE), 1)
1645#define OMP_TARGET_UPDATE_CLAUSES(NODE)\
1646 TREE_OPERAND (OMP_TARGET_UPDATE_CHECK (NODE), 0)
1648#define OMP_TARGET_ENTER_DATA_CLAUSES(NODE)\
1649 TREE_OPERAND (OMP_TARGET_ENTER_DATA_CHECK (NODE), 0)
1651#define OMP_TARGET_EXIT_DATA_CLAUSES(NODE)\
1652 TREE_OPERAND (OMP_TARGET_EXIT_DATA_CHECK (NODE), 0)
1654#define OMP_METADIRECTIVE_VARIANTS(NODE) \
1655 TREE_OPERAND (OMP_METADIRECTIVE_CHECK (NODE), 0)
1657#define OMP_METADIRECTIVE_VARIANT_SELECTOR(v) \
1659#define OMP_METADIRECTIVE_VARIANT_DIRECTIVE(v) \
1660 TREE_PURPOSE (TREE_VALUE (v))
1661#define OMP_METADIRECTIVE_VARIANT_BODY(v) \
1662 TREE_VALUE (TREE_VALUE (v))
1664#define OMP_DECLARE_MAPPER_ID(NODE) \
1665 TREE_OPERAND (OMP_DECLARE_MAPPER_CHECK (NODE), 0)
1666#define OMP_DECLARE_MAPPER_DECL(NODE) \
1667 TREE_OPERAND (OMP_DECLARE_MAPPER_CHECK (NODE), 1)
1668#define OMP_DECLARE_MAPPER_CLAUSES(NODE) \
1669 TREE_OPERAND (OMP_DECLARE_MAPPER_CHECK (NODE), 2)
1671#define OMP_SCAN_BODY(NODE) TREE_OPERAND (OMP_SCAN_CHECK (NODE), 0)
1672#define OMP_SCAN_CLAUSES(NODE) TREE_OPERAND (OMP_SCAN_CHECK (NODE), 1)
1674#define OMP_DISPATCH_BODY(NODE) TREE_OPERAND (OMP_DISPATCH_CHECK (NODE), 0)
1675#define OMP_DISPATCH_CLAUSES(NODE) TREE_OPERAND (OMP_DISPATCH_CHECK (NODE), 1)
1677#define OMP_CLAUSE_SIZE(NODE) \
1678 OMP_CLAUSE_OPERAND (OMP_CLAUSE_RANGE_CHECK (OMP_CLAUSE_CHECK (NODE), \
1680 OMP_CLAUSE__CACHE_), 1)
1682#define OMP_CLAUSE_CHAIN(NODE) TREE_CHAIN (OMP_CLAUSE_CHECK (NODE))
1683#define OMP_CLAUSE_DECL(NODE) \
1684 OMP_CLAUSE_OPERAND (OMP_CLAUSE_RANGE_CHECK (OMP_CLAUSE_CHECK (NODE), \
1685 OMP_CLAUSE_PRIVATE, \
1686 OMP_CLAUSE__SCANTEMP_), 0)
1687#define OMP_CLAUSE_HAS_LOCATION(NODE) \
1688 (LOCATION_LOCUS ((OMP_CLAUSE_CHECK (NODE))->omp_clause.locus) \
1689 != UNKNOWN_LOCATION)
1690#define OMP_CLAUSE_LOCATION(NODE) (OMP_CLAUSE_CHECK (NODE))->omp_clause.locus
1692#define OMP_CLAUSE_HAS_ITERATORS(NODE) \
1693 ((OMP_CLAUSE_CODE (NODE) == OMP_CLAUSE_FROM \
1694 || OMP_CLAUSE_CODE (NODE) == OMP_CLAUSE_TO \
1695 || OMP_CLAUSE_CODE (NODE) == OMP_CLAUSE_MAP) \
1696 && OMP_CLAUSE_ITERATORS (NODE))
1697#define OMP_CLAUSE_ITERATORS(NODE) \
1698 OMP_CLAUSE_OPERAND (OMP_CLAUSE_RANGE_CHECK (OMP_CLAUSE_CHECK (NODE), \
1707#define OMP_ITERATOR_VAR(NODE) TREE_VEC_ELT (NODE, 0)
1708#define OMP_ITERATOR_BEGIN(NODE) TREE_VEC_ELT (NODE, 1)
1709#define OMP_ITERATOR_END(NODE) TREE_VEC_ELT (NODE, 2)
1710#define OMP_ITERATOR_STEP(NODE) TREE_VEC_ELT (NODE, 3)
1711#define OMP_ITERATOR_ORIG_STEP(NODE) TREE_VEC_ELT (NODE, 4)
1712#define OMP_ITERATOR_BLOCK(NODE) TREE_VEC_ELT (NODE, 5)
1713#define OMP_ITERATOR_LABEL(NODE) TREE_VEC_ELT (NODE, 6)
1714#define OMP_ITERATOR_INDEX(NODE) TREE_VEC_ELT (NODE, 7)
1715#define OMP_ITERATOR_ELEMS(NODE) TREE_VEC_ELT (NODE, 8)
1716#define OMP_ITERATOR_COUNT(NODE) TREE_VEC_ELT (NODE, 9)
1718#define OMP_ITERATOR_EXPANDED_P(NODE) (TREE_VEC_LENGTH (NODE) > 6)
1722#define OMP_FOR_NON_RECTANGULAR(NODE) \
1723 (OMP_LOOPING_CHECK (NODE)->base.private_flag)
1727#define OMP_SECTION_LAST(NODE) \
1728 (OMP_SECTION_CHECK (NODE)->base.private_flag)
1732#define OMP_PARALLEL_COMBINED(NODE) \
1733 (OMP_PARALLEL_CHECK (NODE)->base.private_flag)
1737#define OMP_TEAMS_COMBINED(NODE) \
1738 (OMP_TEAMS_CHECK (NODE)->base.private_flag)
1742#define OMP_TARGET_COMBINED(NODE) \
1743 (OMP_TARGET_CHECK (NODE)->base.private_flag)
1747#define OMP_MASTER_COMBINED(NODE) \
1748 (OMP_MASTER_CHECK (NODE)->base.private_flag)
1752#define OMP_MASKED_COMBINED(NODE) \
1753 (OMP_MASKED_CHECK (NODE)->base.private_flag)
1756#define OMP_ATOMIC_MEMORY_ORDER(NODE) \
1757 (TREE_RANGE_CHECK (NODE, OMP_ATOMIC, \
1758 OMP_ATOMIC_CAPTURE_NEW)->base.u.omp_atomic_memory_order)
1761#define OMP_ATOMIC_WEAK(NODE) \
1762 (TREE_RANGE_CHECK (NODE, OMP_ATOMIC, \
1763 OMP_ATOMIC_CAPTURE_NEW)->base.public_flag)
1768#define OMP_CLAUSE_PRIVATE_DEBUG(NODE) \
1769 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_PRIVATE)->base.public_flag)
1773#define OMP_CLAUSE_PRIVATE_OUTER_REF(NODE) \
1774 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_PRIVATE))
1779#define OMP_CLAUSE_PRIVATE_TASKLOOP_IV(NODE) \
1780 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_PRIVATE))
1783#define OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT(NODE) \
1784 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_FIRSTPRIVATE)->base.public_flag)
1788#define OMP_CLAUSE_FIRSTPRIVATE_NO_REFERENCE(NODE) \
1789 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_FIRSTPRIVATE))
1793#define OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT_TARGET(NODE) \
1794 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_FIRSTPRIVATE))
1798#define OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE(NODE) \
1799 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LASTPRIVATE)->base.public_flag)
1800#define OMP_CLAUSE_LASTPRIVATE_STMT(NODE) \
1801 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, \
1802 OMP_CLAUSE_LASTPRIVATE),\
1804#define OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ(NODE) \
1805 (OMP_CLAUSE_CHECK (NODE))->omp_clause.gimple_reduction_init
1811#define OMP_CLAUSE_LASTPRIVATE_LOOP_IV(NODE) \
1812 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LASTPRIVATE))
1815#define OMP_CLAUSE_LASTPRIVATE_CONDITIONAL(NODE) \
1816 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LASTPRIVATE))
1821#define OMP_CLAUSE_SHARED_FIRSTPRIVATE(NODE) \
1822 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_SHARED)->base.public_flag)
1826#define OMP_CLAUSE_SHARED_READONLY(NODE) \
1827 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_SHARED))
1829#define OMP_CLAUSE_IF_MODIFIER(NODE) \
1830 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_IF)->omp_clause.subcode.if_modifier)
1832#define OMP_CLAUSE_FINAL_EXPR(NODE) \
1833 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_FINAL), 0)
1834#define OMP_CLAUSE_IF_EXPR(NODE) \
1835 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_IF), 0)
1836#define OMP_CLAUSE_SELF_EXPR(NODE) \
1837 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_SELF), 0)
1838#define OMP_CLAUSE_NUM_THREADS_EXPR(NODE) \
1839 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NUM_THREADS),0)
1840#define OMP_CLAUSE_SCHEDULE_CHUNK_EXPR(NODE) \
1841 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_SCHEDULE), 0)
1842#define OMP_CLAUSE_NUM_TASKS_EXPR(NODE) \
1843 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NUM_TASKS), 0)
1844#define OMP_CLAUSE_HINT_EXPR(NODE) \
1845 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_HINT), 0)
1846#define OMP_CLAUSE_FILTER_EXPR(NODE) \
1847 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_FILTER), 0)
1848#define OMP_CLAUSE_PARTIAL_EXPR(NODE) \
1849 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_PARTIAL), 0)
1850#define OMP_CLAUSE_SIZES_LIST(NODE) \
1851 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_SIZES), 0)
1852#define OMP_CLAUSE_NOVARIANTS_EXPR(NODE) \
1853 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NOVARIANTS), 0)
1854#define OMP_CLAUSE_NOCONTEXT_EXPR(NODE) \
1855 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NOCONTEXT), 0)
1857#define OMP_CLAUSE_GRAINSIZE_EXPR(NODE) \
1858 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_GRAINSIZE),0)
1860#define OMP_CLAUSE_PRIORITY_EXPR(NODE) \
1861 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_PRIORITY),0)
1863#define OMP_CLAUSE_GRAINSIZE_STRICT(NODE) \
1864 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_GRAINSIZE))
1865#define OMP_CLAUSE_NUM_TASKS_STRICT(NODE) \
1866 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NUM_TASKS))
1867#define OMP_CLAUSE_NUM_THREADS_STRICT(NODE) \
1868 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NUM_THREADS))
1869#define OMP_CLAUSE_THREAD_LIMIT_STRICT(NODE) \
1870 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_THREAD_LIMIT))
1871#define OMP_CLAUSE_NUM_TEAMS_DIMS(NODE) \
1872 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NUM_TEAMS))
1873#define OMP_CLAUSE_NUM_THREADS_DIMS(NODE) \
1874 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NUM_THREADS))
1875#define OMP_CLAUSE_THREAD_LIMIT_DIMS(NODE) \
1876 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_THREAD_LIMIT))
1879#define OMP_CLAUSE_EXPR(NODE, CLAUSE) \
1880 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, CLAUSE), 0)
1881#define OMP_CLAUSE_GANG_EXPR(NODE) \
1882 OMP_CLAUSE_OPERAND ( \
1883 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_GANG), 0)
1884#define OMP_CLAUSE_GANG_STATIC_EXPR(NODE) \
1885 OMP_CLAUSE_OPERAND ( \
1886 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_GANG), 1)
1887#define OMP_CLAUSE_ASYNC_EXPR(NODE) \
1888 OMP_CLAUSE_OPERAND ( \
1889 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_ASYNC), 0)
1890#define OMP_CLAUSE_WAIT_EXPR(NODE) \
1891 OMP_CLAUSE_OPERAND ( \
1892 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_WAIT), 0)
1893#define OMP_CLAUSE_VECTOR_EXPR(NODE) \
1894 OMP_CLAUSE_OPERAND ( \
1895 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_VECTOR), 0)
1896#define OMP_CLAUSE_WORKER_EXPR(NODE) \
1897 OMP_CLAUSE_OPERAND ( \
1898 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_WORKER), 0)
1899#define OMP_CLAUSE_NUM_GANGS_EXPR(NODE) \
1900 OMP_CLAUSE_OPERAND ( \
1901 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NUM_GANGS), 0)
1902#define OMP_CLAUSE_NUM_WORKERS_EXPR(NODE) \
1903 OMP_CLAUSE_OPERAND ( \
1904 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NUM_WORKERS), 0)
1905#define OMP_CLAUSE_VECTOR_LENGTH_EXPR(NODE) \
1906 OMP_CLAUSE_OPERAND ( \
1907 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_VECTOR_LENGTH), 0)
1909#define OMP_CLAUSE_DEPEND_KIND(NODE) \
1910 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DEPEND)->omp_clause.subcode.depend_kind)
1912#define OMP_CLAUSE_DOACROSS_KIND(NODE) \
1913 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DOACROSS)->omp_clause.subcode.doacross_kind)
1915#define OMP_CLAUSE_DOACROSS_SINK_NEGATIVE(NODE) \
1916 TREE_PUBLIC (TREE_LIST_CHECK (NODE))
1919#define OMP_CLAUSE_DOACROSS_DEPEND(NODE) \
1920 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DOACROSS))
1924#define OMP_CLAUSE_MESSAGE_EXPR(NODE) \
1925 OMP_CLAUSE_OPERAND ( \
1926 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MESSAGE), 0)
1927#define OMP_CLAUSE_MESSAGE_LEN(NODE) \
1928 OMP_CLAUSE_OPERAND ( \
1929 OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MESSAGE), 1)
1930#define OMP_CLAUSE_MESSAGE_SEVERITY_WARN(NODE) \
1931 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MESSAGE)->base.public_flag)
1933#define OMP_CLAUSE_MAP_KIND(NODE) \
1934 ((enum gomp_map_kind) OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP)->omp_clause.subcode.map_kind)
1935#define OMP_CLAUSE_SET_MAP_KIND(NODE, MAP_KIND) \
1936 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP)->omp_clause.subcode.map_kind \
1937 = (unsigned int) (MAP_KIND))
1939#define OMP_CLAUSE_MOTION_PRESENT(NODE) \
1940 (OMP_CLAUSE_RANGE_CHECK (NODE, OMP_CLAUSE_FROM, OMP_CLAUSE_TO)->base.deprecated_flag)
1942#define OMP_CLAUSE_INIT_TARGET(NODE) \
1943 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_INIT)->base.public_flag)
1944#define OMP_CLAUSE_INIT_TARGETSYNC(NODE) \
1945 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_INIT)->base.deprecated_flag)
1946#define OMP_CLAUSE_INIT_PREFER_TYPE(NODE) \
1947 OMP_CLAUSE_OPERAND (OMP_CLAUSE_RANGE_CHECK (OMP_CLAUSE_CHECK (NODE), \
1949 OMP_CLAUSE_INIT), 1)
1954#define OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION(NODE) \
1955 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP)->base.public_flag)
1958#define OMP_CLAUSE_MAP_MAYBE_ZERO_LENGTH_ARRAY_SECTION(NODE) \
1959 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP))
1963#define OMP_CLAUSE_MAP_IN_REDUCTION(NODE) \
1964 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP))
1968#define OMP_CLAUSE_MAP_IMPLICIT(NODE) \
1969 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP)->base.default_def_flag)
1973#define OMP_CLAUSE_MAP_RUNTIME_IMPLICIT_P(NODE) \
1974 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP)->base.deprecated_flag)
1977#define OMP_CLAUSE_ATTACHMENT_MAPPING_ERASED(NODE) \
1978 TREE_STATIC (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP))
1981#define OMP_CLAUSE_RELEASE_DESCRIPTOR(NODE) \
1982 TREE_NOTHROW (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP))
1986#define OMP_CLAUSE_MAP_DECL_MAKE_ADDRESSABLE(NODE) \
1987 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP)->base.addressable_flag)
1990#define OMP_CLAUSE_MAP_READONLY(NODE) \
1991 TREE_READONLY (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP))
1995#define OMP_CLAUSE_MAP_SIZE_NEEDS_ADJUSTMENT(NODE) \
1996 TREE_CONSTANT (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP))
2000#define OMP_CLAUSE_MAP_GIMPLE_ONLY(NODE) \
2001 TREE_USED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_MAP))
2004#define OMP_CLAUSE__CACHE__READONLY(NODE) \
2005 TREE_READONLY (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE__CACHE_))
2009#define OMP_CLAUSE_USE_DEVICE_PTR_IF_PRESENT(NODE) \
2010 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_USE_DEVICE_PTR)->base.public_flag)
2012#define OMP_CLAUSE_PROC_BIND_KIND(NODE) \
2013 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_PROC_BIND)->omp_clause.subcode.proc_bind_kind)
2015#define OMP_CLAUSE_DEVICE_TYPE_KIND(NODE) \
2016 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DEVICE_TYPE)->omp_clause.subcode.device_type_kind)
2018#define OMP_CLAUSE_INDIRECT_EXPR(NODE) \
2019 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_INDIRECT), 0)
2023#define OMP_CLAUSE_DEVICE_ANCESTOR(NODE) \
2024 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DEVICE)->base.public_flag)
2026#define OMP_CLAUSE_COLLAPSE_EXPR(NODE) \
2027 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_COLLAPSE), 0)
2028#define OMP_CLAUSE_COLLAPSE_ITERVAR(NODE) \
2029 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_COLLAPSE), 1)
2030#define OMP_CLAUSE_COLLAPSE_COUNT(NODE) \
2031 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_COLLAPSE), 2)
2033#define OMP_CLAUSE_ORDERED_EXPR(NODE) \
2034 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_ORDERED), 0)
2038#define OMP_CLAUSE_ORDERED_DOACROSS(NODE) \
2039 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_ORDERED)->base.public_flag)
2042#define OMP_CLAUSE_ORDER_UNCONSTRAINED(NODE) \
2043 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_ORDER)->base.public_flag)
2045#define OMP_CLAUSE_ORDER_REPRODUCIBLE(NODE) \
2046 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_ORDER))
2048#define OMP_CLAUSE_REDUCTION_CODE(NODE) \
2049 (OMP_CLAUSE_RANGE_CHECK (NODE, OMP_CLAUSE_REDUCTION, \
2050 OMP_CLAUSE_IN_REDUCTION)->omp_clause.subcode.reduction_code)
2051#define OMP_CLAUSE_REDUCTION_INIT(NODE) \
2052 OMP_CLAUSE_OPERAND (OMP_CLAUSE_RANGE_CHECK (NODE, OMP_CLAUSE_REDUCTION, \
2053 OMP_CLAUSE_IN_REDUCTION), 1)
2054#define OMP_CLAUSE_REDUCTION_MERGE(NODE) \
2055 OMP_CLAUSE_OPERAND (OMP_CLAUSE_RANGE_CHECK (NODE, OMP_CLAUSE_REDUCTION, \
2056 OMP_CLAUSE_IN_REDUCTION), 2)
2057#define OMP_CLAUSE_REDUCTION_GIMPLE_INIT(NODE) \
2058 (OMP_CLAUSE_CHECK (NODE))->omp_clause.gimple_reduction_init
2059#define OMP_CLAUSE_REDUCTION_GIMPLE_MERGE(NODE) \
2060 (OMP_CLAUSE_CHECK (NODE))->omp_clause.gimple_reduction_merge
2061#define OMP_CLAUSE_REDUCTION_PLACEHOLDER(NODE) \
2062 OMP_CLAUSE_OPERAND (OMP_CLAUSE_RANGE_CHECK (NODE, OMP_CLAUSE_REDUCTION, \
2063 OMP_CLAUSE_IN_REDUCTION), 3)
2064#define OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER(NODE) \
2065 OMP_CLAUSE_OPERAND (OMP_CLAUSE_RANGE_CHECK (NODE, OMP_CLAUSE_REDUCTION, \
2066 OMP_CLAUSE_IN_REDUCTION), 4)
2070#define OMP_CLAUSE_REDUCTION_OMP_ORIG_REF(NODE) \
2071 (OMP_CLAUSE_RANGE_CHECK (NODE, OMP_CLAUSE_REDUCTION, \
2072 OMP_CLAUSE_IN_REDUCTION)->base.public_flag)
2075#define OMP_CLAUSE_REDUCTION_TASK(NODE) \
2076 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_REDUCTION))
2079#define OMP_CLAUSE_REDUCTION_INSCAN(NODE) \
2080 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_REDUCTION))
2084#define OMP_CLAUSE_LINEAR_NO_COPYIN(NODE) \
2085 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LINEAR)->base.public_flag)
2089#define OMP_CLAUSE_LINEAR_NO_COPYOUT(NODE) \
2090 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LINEAR))
2093#define OMP_CLAUSE_LINEAR_VARIABLE_STRIDE(NODE) \
2094 TREE_PROTECTED (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LINEAR))
2098#define OMP_CLAUSE_LINEAR_OLD_LINEAR_MODIFIER(NODE) \
2099 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LINEAR)->base.addressable_flag)
2103#define OMP_CLAUSE_LINEAR_ARRAY(NODE) \
2104 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LINEAR)->base.deprecated_flag)
2106#define OMP_CLAUSE_LINEAR_STEP(NODE) \
2107 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LINEAR), 1)
2109#define OMP_CLAUSE_LINEAR_STMT(NODE) \
2110 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LINEAR), 2)
2112#define OMP_CLAUSE_LINEAR_GIMPLE_SEQ(NODE) \
2113 (OMP_CLAUSE_CHECK (NODE))->omp_clause.gimple_reduction_init
2115#define OMP_CLAUSE_LINEAR_KIND(NODE) \
2116 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_LINEAR)->omp_clause.subcode.linear_kind)
2118#define OMP_CLAUSE_ALIGNED_ALIGNMENT(NODE) \
2119 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_ALIGNED), 1)
2121#define OMP_CLAUSE_ALLOCATE_ALLOCATOR(NODE) \
2122 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_ALLOCATE), 1)
2124#define OMP_CLAUSE_ALLOCATE_ALIGN(NODE) \
2125 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_ALLOCATE), 2)
2131#define OMP_CLAUSE_ALLOCATE_COMBINED(NODE) \
2132 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_ALLOCATE)->base.public_flag)
2134#define OMP_CLAUSE_USES_ALLOCATORS_ALLOCATOR(NODE) \
2135 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_USES_ALLOCATORS), 0)
2137#define OMP_CLAUSE_USES_ALLOCATORS_MEMSPACE(NODE) \
2138 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_USES_ALLOCATORS), 1)
2140#define OMP_CLAUSE_USES_ALLOCATORS_TRAITS(NODE) \
2141 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_USES_ALLOCATORS), 2)
2143#define OMP_CLAUSE_NUM_TEAMS_UPPER_EXPR(NODE) \
2144 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NUM_TEAMS), 0)
2146#define OMP_CLAUSE_NUM_TEAMS_LOWER_EXPR(NODE) \
2147 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_NUM_TEAMS), 1)
2149#define OMP_CLAUSE_THREAD_LIMIT_EXPR(NODE) \
2150 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, \
2151 OMP_CLAUSE_THREAD_LIMIT), 0)
2153#define OMP_CLAUSE_DEVICE_ID(NODE) \
2154 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DEVICE), 0)
2156#define OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR(NODE) \
2157 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, \
2158 OMP_CLAUSE_DIST_SCHEDULE), 0)
2160#define OMP_CLAUSE_SAFELEN_EXPR(NODE) \
2161 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_SAFELEN), 0)
2163#define OMP_CLAUSE_SIMDLEN_EXPR(NODE) \
2164 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_SIMDLEN), 0)
2166#define OMP_CLAUSE__SIMDUID__DECL(NODE) \
2167 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE__SIMDUID_), 0)
2169#define OMP_CLAUSE_SCHEDULE_KIND(NODE) \
2170 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_SCHEDULE)->omp_clause.subcode.schedule_kind)
2173#define OMP_CLAUSE_SCHEDULE_SIMD(NODE) \
2174 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_SCHEDULE)->base.public_flag)
2176#define OMP_CLAUSE_DEFAULT_KIND(NODE) \
2177 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DEFAULT)->omp_clause.subcode.default_kind)
2179#define OMP_CLAUSE_DEFAULTMAP_KIND(NODE) \
2180 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DEFAULTMAP)->omp_clause.subcode.defaultmap_kind)
2181#define OMP_CLAUSE_DEFAULTMAP_CATEGORY(NODE) \
2182 ((enum omp_clause_defaultmap_kind) \
2183 (OMP_CLAUSE_DEFAULTMAP_KIND (NODE) & OMP_CLAUSE_DEFAULTMAP_CATEGORY_MASK))
2184#define OMP_CLAUSE_DEFAULTMAP_BEHAVIOR(NODE) \
2185 ((enum omp_clause_defaultmap_kind) \
2186 (OMP_CLAUSE_DEFAULTMAP_KIND (NODE) & OMP_CLAUSE_DEFAULTMAP_MASK))
2187#define OMP_CLAUSE_DEFAULTMAP_SET_KIND(NODE, BEHAVIOR, CATEGORY) \
2188 (OMP_CLAUSE_DEFAULTMAP_KIND (NODE) \
2189 = (enum omp_clause_defaultmap_kind) (CATEGORY | BEHAVIOR))
2191#define OMP_CLAUSE_BIND_KIND(NODE) \
2192 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_BIND)->omp_clause.subcode.bind_kind)
2194#define OMP_CLAUSE_DYN_GROUPPRIVATE_EXPR(NODE) \
2195 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DYN_GROUPPRIVATE), 0)
2196#define OMP_CLAUSE_DYN_GROUPPRIVATE_KIND(NODE) \
2197 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DYN_GROUPPRIVATE)->omp_clause.subcode.fallback_kind)
2200#define OMP_CLAUSE_ENTER_TO(NODE) \
2201 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_ENTER)->base.public_flag)
2203#define OMP_CLAUSE_TILE_LIST(NODE) \
2204 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_TILE), 0)
2205#define OMP_CLAUSE_TILE_ITERVAR(NODE) \
2206 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_TILE), 1)
2207#define OMP_CLAUSE_TILE_COUNT(NODE) \
2208 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_TILE), 2)
2211#define OMP_CLAUSE__CONDTEMP__ITER(NODE) \
2212 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE__CONDTEMP_)->base.public_flag)
2216#define OMP_CLAUSE__SCANTEMP__ALLOC(NODE) \
2217 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE__SCANTEMP_)->base.public_flag)
2222#define OMP_CLAUSE__SCANTEMP__CONTROL(NODE) \
2223 TREE_PRIVATE (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE__SCANTEMP_))
2226#define OMP_NEXT_VARIANT_INDEX(NODE) \
2227 TREE_OPERAND (OMP_NEXT_VARIANT_CHECK (NODE), 0)
2228#define OMP_NEXT_VARIANT_STATE(NODE) \
2229 TREE_OPERAND (OMP_NEXT_VARIANT_CHECK (NODE), 1)
2232#define OMP_TARGET_DEVICE_MATCHES_SELECTOR(NODE) \
2233 TREE_OPERAND (OMP_TARGET_DEVICE_MATCHES_CHECK (NODE), 0)
2234#define OMP_TARGET_DEVICE_MATCHES_PROPERTIES(NODE) \
2235 TREE_OPERAND (OMP_TARGET_DEVICE_MATCHES_CHECK (NODE), 1)
2237#define OMP_CLAUSE__MAPPER_BINDING__ID(NODE) \
2238 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, \
2239 OMP_CLAUSE__MAPPER_BINDING_), 0)
2241#define OMP_CLAUSE__MAPPER_BINDING__DECL(NODE) \
2242 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, \
2243 OMP_CLAUSE__MAPPER_BINDING_), 1)
2245#define OMP_CLAUSE__MAPPER_BINDING__MAPPER(NODE) \
2246 OMP_CLAUSE_OPERAND (OMP_CLAUSE_SUBCODE_CHECK (NODE, \
2247 OMP_CLAUSE__MAPPER_BINDING_), 2)
2253#define SSA_NAME_IS_VIRTUAL_OPERAND(NODE) \
2254 SSA_NAME_CHECK (NODE)->base.public_flag
2258#define SSA_NAME_IDENTIFIER(NODE) \
2259 (SSA_NAME_CHECK (NODE)->ssa_name.var != NULL_TREE \
2260 ? (TREE_CODE ((NODE)->ssa_name.var) == IDENTIFIER_NODE \
2261 ? (NODE)->ssa_name.var \
2262 : DECL_NAME ((NODE)->ssa_name.var)) \
2268#define SSA_NAME_VAR(NODE) \
2269 (SSA_NAME_CHECK (NODE)->ssa_name.var == NULL_TREE \
2270 || TREE_CODE ((NODE)->ssa_name.var) == IDENTIFIER_NODE \
2271 ? NULL_TREE : (NODE)->ssa_name.var)
2273#define SET_SSA_NAME_VAR_OR_IDENTIFIER(NODE,VAR) \
2276 tree var_ = (VAR); \
2277 SSA_NAME_CHECK (NODE)->ssa_name.var = var_; \
2278 SSA_NAME_IS_VIRTUAL_OPERAND (NODE) \
2280 && TREE_CODE (var_) == VAR_DECL \
2281 && VAR_DECL_IS_VIRTUAL_OPERAND (var_)); \
2286#define SSA_NAME_DEF_STMT(NODE) SSA_NAME_CHECK (NODE)->ssa_name.def_stmt
2290#define SSA_NAME_VERSION(NODE) SSA_NAME_CHECK (NODE)->base.u.version
2295#define SSA_NAME_OCCURS_IN_ABNORMAL_PHI(NODE) \
2296 SSA_NAME_CHECK (NODE)->base.asm_written_flag
2301#define SSA_NAME_IN_FREE_LIST(NODE) \
2302 SSA_NAME_CHECK (NODE)->base.nothrow_flag
2309#define SSA_NAME_IS_DEFAULT_DEF(NODE) \
2310 SSA_NAME_CHECK (NODE)->base.default_def_flag
2316#define SSA_NAME_POINTS_TO_READONLY_MEMORY(NODE) \
2317 SSA_NAME_CHECK (NODE)->base.deprecated_flag
2320#define SSA_NAME_PTR_INFO(N) \
2321 SSA_NAME_CHECK (N)->ssa_name.info.ptr_info
2324#define SSA_NAME_RANGE_INFO(N) \
2325 SSA_NAME_CHECK (N)->ssa_name.info.range_info
2328#define SSA_NAME_IMM_USE_NODE(NODE) SSA_NAME_CHECK (NODE)->ssa_name.imm_uses
2330#define OMP_CLAUSE_CODE(NODE) \
2331 (OMP_CLAUSE_CHECK (NODE))->omp_clause.code
2333#define OMP_CLAUSE_SET_CODE(NODE, CODE) \
2334 ((OMP_CLAUSE_CHECK (NODE))->omp_clause.code = (CODE))
2336#define OMP_CLAUSE_OPERAND(NODE, I) \
2337 OMP_CLAUSE_ELT_CHECK (NODE, I)
2340#define OMP_ITERATOR_DECL_P(NODE) \
2341 (TREE_CODE (NODE) == TREE_LIST \
2342 && TREE_PURPOSE (NODE) \
2343 && TREE_CODE (TREE_PURPOSE (NODE)) == TREE_VEC)
2347#define BLOCK_VARS(NODE) (BLOCK_CHECK (NODE)->block.vars)
2348#define BLOCK_NONLOCALIZED_VARS(NODE) \
2349 (BLOCK_CHECK (NODE)->block.nonlocalized_vars)
2350#define BLOCK_NUM_NONLOCALIZED_VARS(NODE) \
2351 vec_safe_length (BLOCK_NONLOCALIZED_VARS (NODE))
2352#define BLOCK_NONLOCALIZED_VAR(NODE,N) (*BLOCK_NONLOCALIZED_VARS (NODE))[N]
2354#define BLOCK_SUBBLOCKS(NODE) (BLOCK_CHECK (NODE)->block.subblocks)
2359#define BLOCK_SUPERCONTEXT(NODE) (BLOCK_CHECK (NODE)->block.supercontext)
2361#define BLOCK_CHAIN(NODE) (BLOCK_CHECK (NODE)->block.chain)
2366#define BLOCK_ABSTRACT_ORIGIN(NODE) (BLOCK_CHECK (NODE)->block.abstract_origin)
2367#define BLOCK_ORIGIN(NODE) \
2368 (BLOCK_ABSTRACT_ORIGIN(NODE) ? BLOCK_ABSTRACT_ORIGIN(NODE) : (NODE))
2369#define BLOCK_DIE(NODE) (BLOCK_CHECK (NODE)->block.die)
2372#define BLOCK_SAME_RANGE(NODE) (BLOCK_CHECK (NODE)->base.u.bits.nameless_flag)
2375#define BLOCK_IN_COLD_SECTION_P(NODE) \
2376 (BLOCK_CHECK (NODE)->base.u.bits.atomic_flag)
2381#define BLOCK_NUMBER(NODE) (BLOCK_CHECK (NODE)->block.block_num)
2405#define BLOCK_FRAGMENT_ORIGIN(NODE) (BLOCK_CHECK (NODE)->block.fragment_origin)
2406#define BLOCK_FRAGMENT_CHAIN(NODE) (BLOCK_CHECK (NODE)->block.fragment_chain)
2412#define BLOCK_SOURCE_LOCATION(NODE) (BLOCK_CHECK (NODE)->block.locus)
2417#define BLOCK_SOURCE_END_LOCATION(NODE) (BLOCK_CHECK (NODE)->block.end_locus)
2430#define TYPE_UID(NODE) (TYPE_CHECK (NODE)->type_common.uid)
2435#define TYPE_SIZE(NODE) (TYPE_CHECK (NODE)->type_common.size)
2437#define TYPE_SIZE_UNIT(NODE) (TYPE_CHECK (NODE)->type_common.size_unit)
2438#define TYPE_POINTER_TO(NODE) (TYPE_CHECK (NODE)->type_common.pointer_to)
2439#define TYPE_REFERENCE_TO(NODE) (TYPE_CHECK (NODE)->type_common.reference_to)
2440#define TYPE_PRECISION(NODE) \
2441 (TREE_NOT_CHECK (TYPE_CHECK (NODE), VECTOR_TYPE)->type_common.precision)
2442#define TYPE_PRECISION_RAW(NODE) (TYPE_CHECK (NODE)->type_common.precision)
2443#define TYPE_NAME(NODE) (TYPE_CHECK (NODE)->type_common.name)
2444#define TYPE_NEXT_VARIANT(NODE) (TYPE_CHECK (NODE)->type_common.next_variant)
2445#define TYPE_MAIN_VARIANT(NODE) (TYPE_CHECK (NODE)->type_common.main_variant)
2446#define TYPE_CONTEXT(NODE) (TYPE_CHECK (NODE)->type_common.context)
2448#define TYPE_MODE_RAW(NODE) (TYPE_CHECK (NODE)->type_common.mode)
2449#define TYPE_MODE(NODE) \
2450 (VECTOR_TYPE_P (TYPE_CHECK (NODE)) \
2451 ? vector_type_mode (NODE) : (NODE)->type_common.mode)
2452#define SCALAR_TYPE_MODE(NODE) \
2453 (as_a <scalar_mode> (TYPE_CHECK (NODE)->type_common.mode))
2454#define SCALAR_INT_TYPE_MODE(NODE) \
2455 (as_a <scalar_int_mode> (TYPE_CHECK (NODE)->type_common.mode))
2456#define SCALAR_FLOAT_TYPE_MODE(NODE) \
2457 (as_a <scalar_float_mode> (TYPE_CHECK (NODE)->type_common.mode))
2458#define SET_TYPE_MODE(NODE, MODE) \
2459 (TYPE_CHECK (NODE)->type_common.mode = (MODE))
2483#define TYPE_CANONICAL(NODE) (TYPE_CHECK (NODE)->type_common.canonical)
2490#define TYPE_STRUCTURAL_EQUALITY_P(NODE) (TYPE_CANONICAL (NODE) == NULL_TREE)
2493#define SET_TYPE_STRUCTURAL_EQUALITY(NODE) (TYPE_CANONICAL (NODE) = NULL_TREE)
2495#define TYPE_IBIT(NODE) (GET_MODE_IBIT (TYPE_MODE (NODE)))
2496#define TYPE_FBIT(NODE) (GET_MODE_FBIT (TYPE_MODE (NODE)))
2503#define TYPE_ALIAS_SET(NODE) (TYPE_CHECK (NODE)->type_common.alias_set)
2507#define TYPE_ALIAS_SET_KNOWN_P(NODE) \
2508 (TYPE_CHECK (NODE)->type_common.alias_set != -1)
2512#define TYPE_ATTRIBUTES(NODE) (TYPE_CHECK (NODE)->type_common.attributes)
2515#define TYPE_ALIGN_RAW(NODE) \
2516 (TYPE_CHECK (NODE)->type_common.align)
2521#define TYPE_ALIGN(NODE) \
2522 (TYPE_ALIGN_RAW (NODE) \
2523 ? ((unsigned)1) << (TYPE_ALIGN_RAW(NODE) - 1) : 0)
2526#define SET_TYPE_ALIGN(NODE, X) \
2527 (TYPE_CHECK (NODE)->type_common.align = ffs_hwi (X))
2531#define TYPE_USER_ALIGN(NODE) (TYPE_CHECK (NODE)->base.u.bits.user_align)
2534#define TYPE_ALIGN_UNIT(NODE) (TYPE_ALIGN (NODE) / BITS_PER_UNIT)
2538#define TYPE_WARN_IF_NOT_ALIGN_RAW(NODE) \
2539 (TYPE_CHECK (NODE)->type_common.warn_if_not_align)
2540#define TYPE_WARN_IF_NOT_ALIGN(NODE) \
2541 (TYPE_WARN_IF_NOT_ALIGN_RAW (NODE) \
2542 ? ((unsigned)1) << (TYPE_WARN_IF_NOT_ALIGN_RAW (NODE) - 1) : 0)
2545#define SET_TYPE_WARN_IF_NOT_ALIGN(NODE, X) \
2546 (TYPE_WARN_IF_NOT_ALIGN_RAW (NODE) = ffs_hwi (X))
2555#define TYPE_STUB_DECL(NODE) (TREE_CHAIN (TYPE_CHECK (NODE)))
2560#define TYPE_NO_FORCE_BLK(NODE) \
2561 (TYPE_CHECK (NODE)->type_common.no_force_blk_flag)
2564#define TYPE_VOLATILE(NODE) (TYPE_CHECK (NODE)->base.volatile_flag)
2567#define TYPE_ATOMIC(NODE) (TYPE_CHECK (NODE)->base.u.bits.atomic_flag)
2570#define TYPE_READONLY(NODE) (TYPE_CHECK (NODE)->base.readonly_flag)
2574#define TYPE_RESTRICT(NODE) (TYPE_CHECK (NODE)->type_common.restrict_flag)
2577#define TYPE_NAMELESS(NODE) (TYPE_CHECK (NODE)->base.u.bits.nameless_flag)
2580#define TYPE_ADDR_SPACE(NODE) (TYPE_CHECK (NODE)->base.u.bits.address_space)
2584#define ENCODE_QUAL_ADDR_SPACE(NUM) (((NUM) & 0xFF) << 8)
2585#define DECODE_QUAL_ADDR_SPACE(X) (((X) >> 8) & 0xFF)
2588#define CLEAR_QUAL_ADDR_SPACE(X) ((X) & ~0xFF00)
2592#define KEEP_QUAL_ADDR_SPACE(X) ((X) & 0xFF00)
2595#define TYPE_QUALS(NODE) \
2596 ((int) ((TYPE_READONLY (NODE) * TYPE_QUAL_CONST) \
2597 | (TYPE_VOLATILE (NODE) * TYPE_QUAL_VOLATILE) \
2598 | (TYPE_ATOMIC (NODE) * TYPE_QUAL_ATOMIC) \
2599 | (TYPE_RESTRICT (NODE) * TYPE_QUAL_RESTRICT) \
2600 | (ENCODE_QUAL_ADDR_SPACE (TYPE_ADDR_SPACE (NODE)))))
2603#define TYPE_QUALS_NO_ADDR_SPACE(NODE) \
2604 ((int) ((TYPE_READONLY (NODE) * TYPE_QUAL_CONST) \
2605 | (TYPE_VOLATILE (NODE) * TYPE_QUAL_VOLATILE) \
2606 | (TYPE_ATOMIC (NODE) * TYPE_QUAL_ATOMIC) \
2607 | (TYPE_RESTRICT (NODE) * TYPE_QUAL_RESTRICT)))
2611#define TYPE_QUALS_NO_ADDR_SPACE_NO_ATOMIC(NODE) \
2612 ((int) ((TYPE_READONLY (NODE) * TYPE_QUAL_CONST) \
2613 | (TYPE_VOLATILE (NODE) * TYPE_QUAL_VOLATILE) \
2614 | (TYPE_RESTRICT (NODE) * TYPE_QUAL_RESTRICT)))
2617#define TYPE_LANG_FLAG_0(NODE) (TYPE_CHECK (NODE)->type_common.lang_flag_0)
2618#define TYPE_LANG_FLAG_1(NODE) (TYPE_CHECK (NODE)->type_common.lang_flag_1)
2619#define TYPE_LANG_FLAG_2(NODE) (TYPE_CHECK (NODE)->type_common.lang_flag_2)
2620#define TYPE_LANG_FLAG_3(NODE) (TYPE_CHECK (NODE)->type_common.lang_flag_3)
2621#define TYPE_LANG_FLAG_4(NODE) (TYPE_CHECK (NODE)->type_common.lang_flag_4)
2622#define TYPE_LANG_FLAG_5(NODE) (TYPE_CHECK (NODE)->type_common.lang_flag_5)
2623#define TYPE_LANG_FLAG_6(NODE) (TYPE_CHECK (NODE)->type_common.lang_flag_6)
2624#define TYPE_LANG_FLAG_7(NODE) (TYPE_CHECK (NODE)->type_common.lang_flag_7)
2628#define TREE_VISITED(NODE) ((NODE)->base.visited)
2633#define TYPE_STRING_FLAG(NODE) \
2634 (ARRAY_OR_INTEGER_TYPE_CHECK (NODE)->type_common.string_flag)
2639#define TYPE_CXX_ODR_P(NODE) \
2640 (RECORD_OR_UNION_CHECK (NODE)->type_common.string_flag)
2644#define TYPE_VECTOR_OPAQUE(NODE) \
2645 (VECTOR_TYPE_CHECK (NODE)->base.default_def_flag)
2649#define TYPE_NEEDS_CONSTRUCTING(NODE) \
2650 (TYPE_CHECK (NODE)->type_common.needs_constructing_flag)
2656#define TYPE_TRANSPARENT_AGGR(NODE) \
2657 (RECORD_OR_UNION_CHECK (NODE)->type_common.transparent_aggr_flag)
2662#define TYPE_NONALIASED_COMPONENT(NODE) \
2663 (ARRAY_TYPE_CHECK (NODE)->type_common.transparent_aggr_flag)
2674#define TYPE_TYPELESS_STORAGE(NODE) \
2675 (TREE_CHECK4 (NODE, RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE, \
2676 ARRAY_TYPE)->type_common.typeless_storage)
2680#define TYPE_PACKED(NODE) (TYPE_CHECK (NODE)->base.u.bits.packed_flag)
2685#define TYPE_CONTAINS_PLACEHOLDER_INTERNAL(NODE) \
2686 (TYPE_CHECK (NODE)->type_common.contains_placeholder_bits)
2689#define TYPE_FINAL_P(NODE) \
2690 (RECORD_OR_UNION_CHECK (NODE)->base.default_def_flag)
2701#define TYPE_SYMTAB_ADDRESS(NODE) \
2702 (TYPE_CHECK (NODE)->type_common.symtab.address)
2706#define TYPE_SYMTAB_DIE(NODE) \
2707 (TYPE_CHECK (NODE)->type_common.symtab.die)
2713#define TYPE_SYMTAB_IS_ADDRESS (0)
2714#define TYPE_SYMTAB_IS_DIE (1)
2716#define TYPE_LANG_SPECIFIC(NODE) \
2717 (TYPE_CHECK (NODE)->type_with_lang_specific.lang_specific)
2719#define TYPE_VALUES(NODE) (ENUMERAL_TYPE_CHECK (NODE)->type_non_common.values)
2720#define TYPE_DOMAIN(NODE) (ARRAY_TYPE_CHECK (NODE)->type_non_common.values)
2721#define TYPE_FIELDS(NODE) \
2722 (RECORD_OR_UNION_CHECK (NODE)->type_non_common.values)
2723#define TYPE_CACHED_VALUES(NODE) (TYPE_CHECK (NODE)->type_non_common.values)
2724#define TYPE_ARG_TYPES(NODE) \
2725 (FUNC_OR_METHOD_CHECK (NODE)->type_non_common.values)
2726#define TYPE_VALUES_RAW(NODE) (TYPE_CHECK (NODE)->type_non_common.values)
2728#define TYPE_MIN_VALUE(NODE) \
2729 (NUMERICAL_TYPE_CHECK (NODE)->type_non_common.minval)
2730#define TYPE_NEXT_PTR_TO(NODE) \
2731 (POINTER_TYPE_CHECK (NODE)->type_non_common.minval)
2732#define TYPE_NEXT_REF_TO(NODE) \
2733 (REFERENCE_TYPE_CHECK (NODE)->type_non_common.minval)
2734#define TYPE_VFIELD(NODE) \
2735 (RECORD_OR_UNION_CHECK (NODE)->type_non_common.minval)
2736#define TYPE_MIN_VALUE_RAW(NODE) (TYPE_CHECK (NODE)->type_non_common.minval)
2738#define TYPE_MAX_VALUE(NODE) \
2739 (NUMERICAL_TYPE_CHECK (NODE)->type_non_common.maxval)
2740#define TYPE_METHOD_BASETYPE(NODE) \
2741 (FUNC_OR_METHOD_CHECK (NODE)->type_non_common.maxval)
2742#define TYPE_OFFSET_BASETYPE(NODE) \
2743 (OFFSET_TYPE_CHECK (NODE)->type_non_common.maxval)
2747#define TYPE_ARRAY_MAX_SIZE(ARRAY_TYPE) \
2748 (ARRAY_TYPE_CHECK (ARRAY_TYPE)->type_non_common.maxval)
2749#define TYPE_MAX_VALUE_RAW(NODE) (TYPE_CHECK (NODE)->type_non_common.maxval)
2752#define TYPE_BINFO(NODE) (RECORD_OR_UNION_CHECK (NODE)->type_non_common.maxval)
2755#define TYPE_LANG_SLOT_1(NODE) \
2756 (TYPE_CHECK (NODE)->type_non_common.lang_1)
2776#define BINFO_VIRTUAL_P(NODE) (TREE_BINFO_CHECK (NODE)->base.static_flag)
2779#define BINFO_FLAG_0(NODE) TREE_LANG_FLAG_0 (TREE_BINFO_CHECK (NODE))
2780#define BINFO_FLAG_1(NODE) TREE_LANG_FLAG_1 (TREE_BINFO_CHECK (NODE))
2781#define BINFO_FLAG_2(NODE) TREE_LANG_FLAG_2 (TREE_BINFO_CHECK (NODE))
2782#define BINFO_FLAG_3(NODE) TREE_LANG_FLAG_3 (TREE_BINFO_CHECK (NODE))
2783#define BINFO_FLAG_4(NODE) TREE_LANG_FLAG_4 (TREE_BINFO_CHECK (NODE))
2784#define BINFO_FLAG_5(NODE) TREE_LANG_FLAG_5 (TREE_BINFO_CHECK (NODE))
2785#define BINFO_FLAG_6(NODE) TREE_LANG_FLAG_6 (TREE_BINFO_CHECK (NODE))
2788#define BINFO_TYPE(NODE) TREE_TYPE (TREE_BINFO_CHECK (NODE))
2796#define BINFO_OFFSET(NODE) (TREE_BINFO_CHECK (NODE)->binfo.offset)
2797#define BINFO_OFFSET_ZEROP(NODE) (integer_zerop (BINFO_OFFSET (NODE)))
2803#define BINFO_VTABLE(NODE) (TREE_BINFO_CHECK (NODE)->binfo.vtable)
2808#define BINFO_VIRTUALS(NODE) (TREE_BINFO_CHECK (NODE)->binfo.virtuals)
2816#define BINFO_BASE_BINFOS(NODE) (&TREE_BINFO_CHECK (NODE)->binfo.base_binfos)
2819#define BINFO_N_BASE_BINFOS(NODE) (BINFO_BASE_BINFOS (NODE)->length ())
2822#define BINFO_BASE_BINFO(NODE,N) \
2823 ((*BINFO_BASE_BINFOS (NODE))[(N)])
2824#define BINFO_BASE_ITERATE(NODE,N,B) \
2825 (BINFO_BASE_BINFOS (NODE)->iterate ((N), &(B)))
2826#define BINFO_BASE_APPEND(NODE,T) \
2827 (BINFO_BASE_BINFOS (NODE)->quick_push ((T)))
2834#define BINFO_VPTR_FIELD(NODE) (TREE_BINFO_CHECK (NODE)->binfo.vptr_field)
2844#define BINFO_BASE_ACCESSES(NODE) \
2845 (TREE_BINFO_CHECK (NODE)->binfo.base_accesses)
2847#define BINFO_BASE_ACCESS(NODE,N) \
2848 (*BINFO_BASE_ACCESSES (NODE))[(N)]
2849#define BINFO_BASE_ACCESS_APPEND(NODE,T) \
2850 BINFO_BASE_ACCESSES (NODE)->quick_push ((T))
2854#define BINFO_SUBVTT_INDEX(NODE) (TREE_BINFO_CHECK (NODE)->binfo.vtt_subvtt)
2858#define BINFO_VPTR_INDEX(NODE) (TREE_BINFO_CHECK (NODE)->binfo.vtt_vptr)
2864#define BINFO_INHERITANCE_CHAIN(NODE) \
2865 (TREE_BINFO_CHECK (NODE)->binfo.inheritance)
2872#define SSA_VAR_P(DECL) \
2873 (TREE_CODE (DECL) == VAR_DECL \
2874 || TREE_CODE (DECL) == PARM_DECL \
2875 || TREE_CODE (DECL) == RESULT_DECL \
2876 || TREE_CODE (DECL) == SSA_NAME)
2879#define DECL_CHAIN(NODE) (TREE_CHAIN (DECL_MINIMAL_CHECK (NODE)))
2883#define DECL_NAME(NODE) (DECL_MINIMAL_CHECK (NODE)->decl_minimal.name)
2886#define TYPE_IDENTIFIER(NODE) \
2887 (TYPE_NAME (NODE) && DECL_P (TYPE_NAME (NODE)) \
2888 ? DECL_NAME (TYPE_NAME (NODE)) : TYPE_NAME (NODE))
2891#define DECL_UID(NODE) (DECL_MINIMAL_CHECK (NODE)->decl_minimal.uid)
2895#define DEBUG_TEMP_UID(NODE) (-DECL_UID (TREE_CHECK ((NODE), DEBUG_EXPR_DECL)))
2899#define DECL_PT_UID(NODE) \
2900 (DECL_COMMON_CHECK (NODE)->decl_common.pt_uid == -1u \
2901 ? (NODE)->decl_minimal.uid : (NODE)->decl_common.pt_uid)
2903#define SET_DECL_PT_UID(NODE, UID) \
2904 (DECL_COMMON_CHECK (NODE)->decl_common.pt_uid = (UID))
2907#define DECL_PT_UID_SET_P(NODE) \
2908 (DECL_COMMON_CHECK (NODE)->decl_common.pt_uid != -1u)
2914#define DECL_SOURCE_LOCATION(NODE) \
2915 (DECL_MINIMAL_CHECK (NODE)->decl_minimal.locus)
2916#define DECL_SOURCE_FILE(NODE) LOCATION_FILE (DECL_SOURCE_LOCATION (NODE))
2917#define DECL_SOURCE_LINE(NODE) LOCATION_LINE (DECL_SOURCE_LOCATION (NODE))
2918#define DECL_SOURCE_COLUMN(NODE) LOCATION_COLUMN (DECL_SOURCE_LOCATION (NODE))
2923#define DECL_IS_UNDECLARED_BUILTIN(DECL) \
2924 (DECL_SOURCE_LOCATION (DECL) <= BUILTINS_LOCATION)
2935#define DECL_CONTEXT(NODE) (DECL_MINIMAL_CHECK (NODE)->decl_minimal.context)
2936#define DECL_FIELD_CONTEXT(NODE) \
2937 (FIELD_DECL_CHECK (NODE)->decl_minimal.context)
2940#define DECL_NAMELESS(NODE) (DECL_MINIMAL_CHECK (NODE)->base.u.bits.nameless_flag)
2948#define DECL_ABSTRACT_ORIGIN(NODE) \
2949 (DECL_COMMON_CHECK (NODE)->decl_common.abstract_origin)
2953#define DECL_ORIGIN(NODE) \
2954 (DECL_ABSTRACT_ORIGIN (NODE) ? DECL_ABSTRACT_ORIGIN (NODE) : (NODE))
2960#define DECL_FROM_INLINE(NODE) \
2961 (DECL_ABSTRACT_ORIGIN (NODE) != NULL_TREE \
2962 && DECL_ABSTRACT_ORIGIN (NODE) != (NODE))
2965#define DECL_ATTRIBUTES(NODE) \
2966 (DECL_COMMON_CHECK (NODE)->decl_common.attributes)
2978#define DECL_INITIAL(NODE) (DECL_COMMON_CHECK (NODE)->decl_common.initial)
2984#define DECL_SIZE(NODE) (DECL_COMMON_CHECK (NODE)->decl_common.size)
2986#define DECL_SIZE_UNIT(NODE) (DECL_COMMON_CHECK (NODE)->decl_common.size_unit)
2987#define DECL_ALIGN_RAW(NODE) (DECL_COMMON_CHECK (NODE)->decl_common.align)
2991#define DECL_ALIGN(NODE) \
2992 (DECL_ALIGN_RAW (NODE) \
2993 ? ((unsigned)1) << (DECL_ALIGN_RAW (NODE) - 1) : 0)
2995#define SET_DECL_ALIGN(NODE, X) \
2996 (DECL_ALIGN_RAW (NODE) = ffs_hwi (X))
3000#define DECL_WARN_IF_NOT_ALIGN_RAW(NODE) \
3001 (DECL_COMMON_CHECK (NODE)->decl_common.warn_if_not_align)
3002#define DECL_WARN_IF_NOT_ALIGN(NODE) \
3003 (DECL_WARN_IF_NOT_ALIGN_RAW (NODE) \
3004 ? ((unsigned)1) << (DECL_WARN_IF_NOT_ALIGN_RAW (NODE) - 1) : 0)
3007#define SET_DECL_WARN_IF_NOT_ALIGN(NODE, X) \
3008 (DECL_WARN_IF_NOT_ALIGN_RAW (NODE) = ffs_hwi (X))
3011#define DECL_ALIGN_UNIT(NODE) (DECL_ALIGN (NODE) / BITS_PER_UNIT)
3014#define DECL_USER_ALIGN(NODE) \
3015 (DECL_COMMON_CHECK (NODE)->base.u.bits.user_align)
3019#define DECL_MODE(NODE) (DECL_COMMON_CHECK (NODE)->decl_common.mode)
3020#define SET_DECL_MODE(NODE, MODE) \
3021 (DECL_COMMON_CHECK (NODE)->decl_common.mode = (MODE))
3027#define DECL_UNCHECKED_FUNCTION_CODE(NODE) \
3028 (FUNCTION_DECL_CHECK (NODE)->function_decl.function_code)
3031#define ALLOCA_FUNCTION_CODE_P(FCODE) \
3032 ((FCODE) == BUILT_IN_ALLOCA \
3033 || (FCODE) == BUILT_IN_ALLOCA_WITH_ALIGN \
3034 || (FCODE) == BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX)
3037#define CASE_BUILT_IN_ALLOCA \
3038 case BUILT_IN_ALLOCA: \
3039 case BUILT_IN_ALLOCA_WITH_ALIGN: \
3040 case BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX
3042#define DECL_FUNCTION_PERSONALITY(NODE) \
3043 (FUNCTION_DECL_CHECK (NODE)->function_decl.personality)
3049#define DECL_IGNORED_P(NODE) \
3050 (DECL_COMMON_CHECK (NODE)->decl_common.ignored_flag)
3058#define DECL_ABSTRACT_P(NODE) \
3059 (DECL_COMMON_CHECK (NODE)->decl_common.abstract_flag)
3062#define DECL_LANG_SPECIFIC(NODE) \
3063 (DECL_COMMON_CHECK (NODE)->decl_common.lang_specific)
3072#define DECL_EXTERNAL(NODE) (DECL_COMMON_CHECK (NODE)->decl_common.decl_flag_1)
3081#define DECL_NONLOCAL(NODE) \
3082 (DECL_COMMON_CHECK (NODE)->decl_common.nonlocal_flag)
3087#define DECL_VIRTUAL_P(NODE) \
3088 (DECL_COMMON_CHECK (NODE)->decl_common.virtual_flag)
3091#define DECL_ARTIFICIAL(NODE) \
3092 (DECL_COMMON_CHECK (NODE)->decl_common.artificial_flag)
3095#define DECL_LANG_FLAG_0(NODE) \
3096 (DECL_COMMON_CHECK (NODE)->decl_common.lang_flag_0)
3097#define DECL_LANG_FLAG_1(NODE) \
3098 (DECL_COMMON_CHECK (NODE)->decl_common.lang_flag_1)
3099#define DECL_LANG_FLAG_2(NODE) \
3100 (DECL_COMMON_CHECK (NODE)->decl_common.lang_flag_2)
3101#define DECL_LANG_FLAG_3(NODE) \
3102 (DECL_COMMON_CHECK (NODE)->decl_common.lang_flag_3)
3103#define DECL_LANG_FLAG_4(NODE) \
3104 (DECL_COMMON_CHECK (NODE)->decl_common.lang_flag_4)
3105#define DECL_LANG_FLAG_5(NODE) \
3106 (DECL_COMMON_CHECK (NODE)->decl_common.lang_flag_5)
3107#define DECL_LANG_FLAG_6(NODE) \
3108 (DECL_COMMON_CHECK (NODE)->decl_common.lang_flag_6)
3109#define DECL_LANG_FLAG_7(NODE) \
3110 (DECL_COMMON_CHECK (NODE)->decl_common.lang_flag_7)
3111#define DECL_LANG_FLAG_8(NODE) \
3112 (DECL_COMMON_CHECK (NODE)->decl_common.lang_flag_8)
3115#define SCOPE_FILE_SCOPE_P(EXP) \
3116 (! (EXP) || TREE_CODE (EXP) == TRANSLATION_UNIT_DECL)
3118#define DECL_FILE_SCOPE_P(EXP) SCOPE_FILE_SCOPE_P (DECL_CONTEXT (EXP))
3120#define TYPE_FILE_SCOPE_P(EXP) SCOPE_FILE_SCOPE_P (TYPE_CONTEXT (EXP))
3124#define DECL_PRESERVE_P(DECL) \
3125 DECL_COMMON_CHECK (DECL)->decl_common.preserve_flag
3130#define DECL_NOINIT_P(DECL) \
3132 && (lookup_attribute ("noinit", DECL_ATTRIBUTES (DECL)) != NULL_TREE))
3137#define DECL_PERSISTENT_P(DECL) \
3139 && (lookup_attribute ("persistent", DECL_ATTRIBUTES (DECL)) != NULL_TREE))
3146#define DECL_NOT_GIMPLE_REG_P(DECL) \
3147 DECL_COMMON_CHECK (DECL)->decl_common.not_gimple_reg_flag
3155#define DECL_HAS_VALUE_EXPR_P(NODE) \
3156 (TREE_CHECK3 (NODE, VAR_DECL, PARM_DECL, RESULT_DECL) \
3157 ->decl_common.decl_flag_2)
3158#define DECL_VALUE_EXPR(NODE) \
3159 (decl_value_expr_lookup (DECL_WRTL_CHECK (NODE)))
3160#define SET_DECL_VALUE_EXPR(NODE, VAL) \
3161 (decl_value_expr_insert (DECL_WRTL_CHECK (NODE), VAL))
3166#define DECL_RTL(NODE) \
3167 (DECL_WRTL_CHECK (NODE)->decl_with_rtl.rtl \
3168 ? (NODE)->decl_with_rtl.rtl \
3169 : (make_decl_rtl (NODE), (NODE)->decl_with_rtl.rtl))
3172#define SET_DECL_RTL(NODE, RTL) set_decl_rtl (NODE, RTL)
3175#define HAS_RTL_P(NODE) (CODE_CONTAINS_STRUCT (TREE_CODE (NODE), TS_DECL_WRTL))
3178#define DECL_RTL_SET_P(NODE) \
3179 (HAS_RTL_P (NODE) && DECL_WRTL_CHECK (NODE)->decl_with_rtl.rtl != NULL)
3183#define COPY_DECL_RTL(SRC_DECL, DST_DECL) \
3184 (DECL_WRTL_CHECK (DST_DECL)->decl_with_rtl.rtl \
3185 = DECL_WRTL_CHECK (SRC_DECL)->decl_with_rtl.rtl)
3188#define DECL_RTL_IF_SET(NODE) (DECL_RTL_SET_P (NODE) ? DECL_RTL (NODE) : NULL)
3190#if (GCC_VERSION >= 2007)
3191#define DECL_RTL_KNOWN_SET(decl) __extension__ \
3192({ tree const __d = (decl); \
3193 gcc_checking_assert (DECL_RTL_SET_P (__d)); \
3196 &*DECL_RTL_IF_SET (__d); })
3198#define DECL_RTL_KNOWN_SET(decl) (&*DECL_RTL_IF_SET (decl))
3202#define DECL_REGISTER(NODE) (DECL_WRTL_CHECK (NODE)->decl_common.decl_flag_0)
3207#define DECL_FIELD_OFFSET(NODE) (FIELD_DECL_CHECK (NODE)->field_decl.offset)
3213#define DECL_FIELD_BIT_OFFSET(NODE) \
3214 (FIELD_DECL_CHECK (NODE)->field_decl.bit_offset)
3219#define DECL_BIT_FIELD_TYPE(NODE) \
3220 (FIELD_DECL_CHECK (NODE)->field_decl.bit_field_type)
3224#define DECL_BIT_FIELD_REPRESENTATIVE(NODE) \
3225 (FIELD_DECL_CHECK (NODE)->field_decl.qualifier)
3229#define DECL_QUALIFIER(NODE) (FIELD_DECL_CHECK (NODE)->field_decl.qualifier)
3235#define DECL_OFFSET_ALIGN(NODE) \
3236 (HOST_WIDE_INT_1U << FIELD_DECL_CHECK (NODE)->decl_common.off_align)
3239#define SET_DECL_OFFSET_ALIGN(NODE, X) \
3240 (FIELD_DECL_CHECK (NODE)->decl_common.off_align = ffs_hwi (X) - 1)
3245#define DECL_FCONTEXT(NODE) (FIELD_DECL_CHECK (NODE)->field_decl.fcontext)
3248#define DECL_PACKED(NODE) (FIELD_DECL_CHECK (NODE)->base.u.bits.packed_flag)
3252#define DECL_BIT_FIELD(NODE) (FIELD_DECL_CHECK (NODE)->decl_common.decl_flag_1)
3258#define DECL_FIELD_ABI_IGNORED(NODE) \
3259 (!DECL_BIT_FIELD (NODE) && (NODE)->decl_common.decl_flag_0)
3260#define SET_DECL_FIELD_ABI_IGNORED(NODE, VAL) \
3262 gcc_checking_assert (!DECL_BIT_FIELD (NODE)); \
3263 FIELD_DECL_CHECK (NODE)->decl_common.decl_flag_0 = (VAL); \
3271#define DECL_FIELD_CXX_ZERO_WIDTH_BIT_FIELD(NODE) \
3272 (DECL_BIT_FIELD (NODE) && (NODE)->decl_common.decl_flag_0)
3273#define SET_DECL_FIELD_CXX_ZERO_WIDTH_BIT_FIELD(NODE, VAL) \
3275 gcc_checking_assert (DECL_BIT_FIELD (NODE)); \
3276 FIELD_DECL_CHECK (NODE)->decl_common.decl_flag_0 = (VAL); \
3294#define DECL_NONADDRESSABLE_P(NODE) \
3295 (FIELD_DECL_CHECK (NODE)->decl_common.decl_flag_2)
3298#define DECL_PADDING_P(NODE) \
3299 (FIELD_DECL_CHECK (NODE)->decl_common.decl_flag_3)
3304#define DECL_NOT_FLEXARRAY(NODE) \
3305 (FIELD_DECL_CHECK (NODE)->decl_common.decl_not_flexarray)
3310#define LABEL_DECL_UID(NODE) \
3311 (LABEL_DECL_CHECK (NODE)->label_decl.label_decl_uid)
3315#define EH_LANDING_PAD_NR(NODE) \
3316 (LABEL_DECL_CHECK (NODE)->label_decl.eh_landing_pad_nr)
3320#define DECL_ARG_TYPE(NODE) (PARM_DECL_CHECK (NODE)->decl_common.initial)
3324#define DECL_INCOMING_RTL(NODE) \
3325 (PARM_DECL_CHECK (NODE)->parm_decl.incoming_rtl)
3329#define DECL_IN_SYSTEM_HEADER(NODE) \
3330 (in_system_header_at (DECL_SOURCE_LOCATION (NODE)))
3334#define DECL_DEFER_OUTPUT(NODE) \
3335 (DECL_WITH_VIS_CHECK (NODE)->decl_with_vis.defer_output)
3339#define DECL_IN_TEXT_SECTION(NODE) \
3340 (VAR_DECL_CHECK (NODE)->decl_with_vis.in_text_section)
3344#define DECL_IN_CONSTANT_POOL(NODE) \
3345 (VAR_DECL_CHECK (NODE)->decl_with_vis.in_constant_pool)
3350#define DECL_COMMON(NODE) \
3351 (DECL_WITH_VIS_CHECK (NODE)->decl_with_vis.common_flag)
3355#define DECL_HARD_REGISTER(NODE) \
3356 (VAR_DECL_CHECK (NODE)->decl_with_vis.hard_register)
3359#define DECL_WEAK(NODE) (DECL_WITH_VIS_CHECK (NODE)->decl_with_vis.weak_flag)
3362#define DECL_DLLIMPORT_P(NODE) \
3363 (DECL_WITH_VIS_CHECK (NODE)->decl_with_vis.dllimport_flag)
3374#define DECL_COMDAT(NODE) \
3375 (DECL_WITH_VIS_CHECK (NODE)->decl_with_vis.comdat_flag)
3377#define DECL_COMDAT_GROUP(NODE) \
3378 decl_comdat_group (NODE)
3382#define DECL_ONE_ONLY(NODE) (DECL_COMDAT_GROUP (NODE) != NULL_TREE \
3383 && (TREE_PUBLIC (NODE) || DECL_EXTERNAL (NODE)))
3392#define DECL_ASSEMBLER_NAME(NODE) decl_assembler_name (NODE)
3395#define DECL_ASSEMBLER_NAME_RAW(NODE) \
3396 (DECL_WITH_VIS_CHECK (NODE)->decl_with_vis.assembler_name)
3400#define HAS_DECL_ASSEMBLER_NAME_P(NODE) \
3401 (CODE_CONTAINS_STRUCT (TREE_CODE (NODE), TS_DECL_WITH_VIS))
3406#define DECL_ASSEMBLER_NAME_SET_P(NODE) \
3407 (DECL_ASSEMBLER_NAME_RAW (NODE) != NULL_TREE)
3410#define SET_DECL_ASSEMBLER_NAME(NODE, NAME) \
3411 overwrite_decl_assembler_name (NODE, NAME)
3424#define COPY_DECL_ASSEMBLER_NAME(SRC_DECL, DST_DECL) \
3425 SET_DECL_ASSEMBLER_NAME (DST_DECL, DECL_ASSEMBLER_NAME_RAW (SRC_DECL))
3429#define DECL_SECTION_NAME(NODE) decl_section_name (NODE)
3433#define DECL_SEEN_IN_BIND_EXPR_P(NODE) \
3434 (DECL_WITH_VIS_CHECK (NODE)->decl_with_vis.seen_in_bind_expr)
3437#define DECL_VISIBILITY(NODE) \
3438 (DECL_WITH_VIS_CHECK (NODE)->decl_with_vis.visibility)
3442#define DECL_VISIBILITY_SPECIFIED(NODE) \
3443 (DECL_WITH_VIS_CHECK (NODE)->decl_with_vis.visibility_specified)
3447#define DECL_TLS_MODEL(NODE) decl_tls_model (NODE)
3451#define DECL_THREAD_LOCAL_P(NODE) \
3452 ((TREE_STATIC (NODE) || DECL_EXTERNAL (NODE)) && decl_tls_model (NODE) >= TLS_MODEL_REAL)
3457#define DECL_HAS_INIT_PRIORITY_P(NODE) \
3458 (VAR_DECL_CHECK (NODE)->decl_with_vis.init_priority_p)
3464#define DECL_HAS_DEBUG_EXPR_P(NODE) \
3465 (VAR_DECL_CHECK (NODE)->decl_common.debug_expr_is_from)
3466#define DECL_DEBUG_EXPR(NODE) \
3467 (decl_debug_expr_lookup (VAR_DECL_CHECK (NODE)))
3469#define SET_DECL_DEBUG_EXPR(NODE, VAL) \
3470 (decl_debug_expr_insert (VAR_DECL_CHECK (NODE), VAL))
3479#define DECL_INIT_PRIORITY(NODE) \
3480 (decl_init_priority_lookup (NODE))
3482#define SET_DECL_INIT_PRIORITY(NODE, VAL) \
3483 (decl_init_priority_insert (NODE, VAL))
3486#define DECL_FINI_PRIORITY(NODE) \
3487 (decl_fini_priority_lookup (NODE))
3489#define SET_DECL_FINI_PRIORITY(NODE, VAL) \
3490 (decl_fini_priority_insert (NODE, VAL))
3494#define DEFAULT_INIT_PRIORITY 65535
3497#define MAX_INIT_PRIORITY 65535
3501#define MAX_RESERVED_INIT_PRIORITY 100
3504#define VAR_DECL_IS_VIRTUAL_OPERAND(NODE) \
3505 (VAR_DECL_CHECK (NODE)->base.u.bits.saturating_flag)
3508#define DECL_NONLOCAL_FRAME(NODE) \
3509 (VAR_DECL_CHECK (NODE)->base.default_def_flag)
3512#define DECL_NONALIASED(NODE) \
3513 (VAR_DECL_CHECK (NODE)->base.nothrow_flag)
3518#define DECL_MERGEABLE(NODE) \
3519 (VAR_DECL_CHECK (NODE)->decl_common.decl_flag_3)
3523#define DECL_RESULT_FLD(NODE) \
3524 (DECL_NON_COMMON_CHECK (NODE)->decl_non_common.result)
3533#define DECL_VINDEX(NODE) \
3534 (FUNCTION_DECL_CHECK (NODE)->function_decl.vindex)
3537#define DECL_RESULT(NODE) (FUNCTION_DECL_CHECK (NODE)->decl_non_common.result)
3540#define DECL_UNINLINABLE(NODE) \
3541 (FUNCTION_DECL_CHECK (NODE)->function_decl.uninlinable)
3545#define DECL_SAVED_TREE(NODE) \
3546 (FUNCTION_DECL_CHECK (NODE)->function_decl.saved_tree)
3551#define DECL_IS_MALLOC(NODE) \
3552 (FUNCTION_DECL_CHECK (NODE)->function_decl.malloc_flag)
3555#define FUNCTION_DECL_DECL_TYPE(NODE) \
3556 (NODE->function_decl.decl_type)
3576#define DECL_IS_REPLACEABLE_OPERATOR(NODE)\
3577 (FUNCTION_DECL_CHECK (NODE)->function_decl.replaceable_operator)
3582#define DECL_IS_OPERATOR_NEW_P(NODE) \
3583 (FUNCTION_DECL_DECL_TYPE (FUNCTION_DECL_CHECK (NODE)) \
3584 == function_decl_type::OPERATOR_NEW)
3586#define DECL_IS_REPLACEABLE_OPERATOR_NEW_P(NODE) \
3587 (DECL_IS_OPERATOR_NEW_P (NODE) && DECL_IS_REPLACEABLE_OPERATOR (NODE))
3589#define DECL_SET_IS_OPERATOR_NEW(NODE, VAL) \
3590 set_function_decl_type (FUNCTION_DECL_CHECK (NODE), \
3591 function_decl_type::OPERATOR_NEW, VAL)
3595#define DECL_IS_OPERATOR_DELETE_P(NODE) \
3596 (FUNCTION_DECL_DECL_TYPE (FUNCTION_DECL_CHECK (NODE)) \
3597 == function_decl_type::OPERATOR_DELETE)
3599#define DECL_SET_IS_OPERATOR_DELETE(NODE, VAL) \
3600 set_function_decl_type (FUNCTION_DECL_CHECK (NODE), \
3601 function_decl_type::OPERATOR_DELETE, VAL)
3605#define DECL_IS_RETURNS_TWICE(NODE) \
3606 (FUNCTION_DECL_CHECK (NODE)->function_decl.returns_twice_flag)
3613#define DECL_PURE_P(NODE) (FUNCTION_DECL_CHECK (NODE)->function_decl.pure_flag)
3621#define DECL_LOOPING_CONST_OR_PURE_P(NODE) \
3622 (FUNCTION_DECL_CHECK (NODE)->function_decl.looping_const_or_pure_flag)
3627#define DECL_IS_NOVOPS(NODE) \
3628 (FUNCTION_DECL_CHECK (NODE)->function_decl.novops_flag)
3632#define DECL_STATIC_CONSTRUCTOR(NODE) \
3633 (FUNCTION_DECL_CHECK (NODE)->function_decl.static_ctor_flag)
3635#define DECL_STATIC_DESTRUCTOR(NODE) \
3636(FUNCTION_DECL_CHECK (NODE)->function_decl.static_dtor_flag)
3640#define DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT(NODE) \
3641 (FUNCTION_DECL_CHECK (NODE)->function_decl.no_instrument_function_entry_exit)
3645#define DECL_NO_LIMIT_STACK(NODE) \
3646 (FUNCTION_DECL_CHECK (NODE)->function_decl.no_limit_stack)
3649#define DECL_STATIC_CHAIN(NODE) \
3650 (FUNCTION_DECL_CHECK (NODE)->decl_with_vis.regdecl_flag)
3655#define DECL_POSSIBLY_INLINED(DECL) \
3656 FUNCTION_DECL_CHECK (DECL)->function_decl.possibly_inlined
3661#define DECL_DECLARED_INLINE_P(NODE) \
3662 (FUNCTION_DECL_CHECK (NODE)->function_decl.declared_inline_flag)
3666#define DECL_NO_INLINE_WARNING_P(NODE) \
3667 (FUNCTION_DECL_CHECK (NODE)->function_decl.no_inline_warning_flag)
3670#define BUILTIN_TM_LOAD_STORE_P(FN) \
3671 ((FN) >= BUILT_IN_TM_STORE_1 && (FN) <= BUILT_IN_TM_LOAD_RFW_LDOUBLE)
3674#define BUILTIN_TM_LOAD_P(FN) \
3675 ((FN) >= BUILT_IN_TM_LOAD_1 && (FN) <= BUILT_IN_TM_LOAD_RFW_LDOUBLE)
3678#define BUILTIN_TM_STORE_P(FN) \
3679 ((FN) >= BUILT_IN_TM_STORE_1 && (FN) <= BUILT_IN_TM_STORE_WAW_LDOUBLE)
3681#define CASE_BUILT_IN_TM_LOAD(FN) \
3682 case BUILT_IN_TM_LOAD_##FN: \
3683 case BUILT_IN_TM_LOAD_RAR_##FN: \
3684 case BUILT_IN_TM_LOAD_RAW_##FN: \
3685 case BUILT_IN_TM_LOAD_RFW_##FN
3687#define CASE_BUILT_IN_TM_STORE(FN) \
3688 case BUILT_IN_TM_STORE_##FN: \
3689 case BUILT_IN_TM_STORE_WAR_##FN: \
3690 case BUILT_IN_TM_STORE_WAW_##FN
3696#define DECL_DISREGARD_INLINE_LIMITS(NODE) \
3697 (FUNCTION_DECL_CHECK (NODE)->function_decl.disregard_inline_limits)
3703#define DECL_HAS_DEBUG_ARGS_P(NODE) \
3704 (FUNCTION_DECL_CHECK (NODE)->function_decl.has_debug_args_flag)
3708#define DECL_STRUCT_FUNCTION(NODE) \
3709 (FUNCTION_DECL_CHECK (NODE)->function_decl.f)
3712#define DECL_BUILT_IN_CLASS(NODE) \
3713 ((built_in_class) FUNCTION_DECL_CHECK (NODE)->function_decl.built_in_class)
3716#define DECL_ARGUMENTS(NODE) \
3717 (FUNCTION_DECL_CHECK (NODE)->function_decl.arguments)
3721#define DECL_FUNCTION_SPECIFIC_TARGET(NODE) \
3722 (FUNCTION_DECL_CHECK (NODE)->function_decl.function_specific_target)
3726#define DECL_FUNCTION_SPECIFIC_OPTIMIZATION(NODE) \
3727 (FUNCTION_DECL_CHECK (NODE)->function_decl.function_specific_optimization)
3732#define DECL_FUNCTION_VERSIONED(NODE)\
3733 (FUNCTION_DECL_CHECK (NODE)->function_decl.versioned_function)
3739#define DECL_CXX_CONSTRUCTOR_P(NODE)\
3740 (FUNCTION_DECL_CHECK (NODE)->decl_with_vis.cxx_constructor)
3744#define DECL_CXX_DESTRUCTOR_P(NODE)\
3745 (FUNCTION_DECL_CHECK (NODE)->decl_with_vis.cxx_destructor)
3748#define DECL_LAMBDA_FUNCTION_P(NODE) \
3749 (FUNCTION_DECL_DECL_TYPE (FUNCTION_DECL_CHECK (NODE)) \
3750 == function_decl_type::LAMBDA_FUNCTION)
3752#define DECL_SET_LAMBDA_FUNCTION(NODE, VAL) \
3753 set_function_decl_type (FUNCTION_DECL_CHECK (NODE), \
3754 function_decl_type::LAMBDA_FUNCTION, VAL)
3758#define DECL_FINAL_P(NODE)\
3759 (FUNCTION_DECL_CHECK (NODE)->decl_with_vis.final)
3762#define TRANSLATION_UNIT_LANGUAGE(NODE) \
3763 (TRANSLATION_UNIT_DECL_CHECK (NODE)->translation_unit_decl.language)
3768#define DECL_ORIGINAL_TYPE(NODE) \
3769 (TYPE_DECL_CHECK (NODE)->decl_non_common.result)
3774#define TYPE_DECL_SUPPRESS_DEBUG(NODE) \
3775 (TYPE_DECL_CHECK (NODE)->decl_common.decl_flag_1)
3779#define IMPORTED_DECL_ASSOCIATED_DECL(NODE) \
3780(DECL_INITIAL (IMPORTED_DECL_CHECK (NODE)))
3784#define NAMELIST_DECL_ASSOCIATED_DECL(NODE) \
3785 (DECL_INITIAL (NODE))
3793#define STATEMENT_LIST_HEAD(NODE) \
3794 (STATEMENT_LIST_CHECK (NODE)->stmt_list.head)
3795#define STATEMENT_LIST_TAIL(NODE) \
3796 (STATEMENT_LIST_CHECK (NODE)->stmt_list.tail)
3798#define TREE_OPTIMIZATION(NODE) \
3799 (OPTIMIZATION_NODE_CHECK (NODE)->optimization.opts)
3801#define TREE_OPTIMIZATION_OPTABS(NODE) \
3802 (OPTIMIZATION_NODE_CHECK (NODE)->optimization.optabs)
3804#define TREE_OPTIMIZATION_BASE_OPTABS(NODE) \
3805 (OPTIMIZATION_NODE_CHECK (NODE)->optimization.base_optabs)
3810 struct gcc_options *opts_set);
3812#define TREE_TARGET_OPTION(NODE) \
3813 (TARGET_OPTION_NODE_CHECK (NODE)->target_option.opts)
3815#define TREE_TARGET_GLOBALS(NODE) \
3816 (TARGET_OPTION_NODE_CHECK (NODE)->target_option.globals)
3821 struct gcc_options *opts_set);
3825#if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
3828tree_check (
tree __t,
const char *__f,
int __l,
const char *__g,
tree_code __c)
3831 tree_check_failed (__t, __f, __l, __g, __c, 0);
3836tree_not_check (
tree __t,
const char *__f,
int __l,
const char *__g,
3840 tree_not_check_failed (__t, __f, __l, __g, __c, 0);
3845tree_check2 (
tree __t,
const char *__f,
int __l,
const char *__g,
3850 tree_check_failed (__t, __f, __l, __g, __c1, __c2, 0);
3855tree_not_check2 (
tree __t,
const char *__f,
int __l,
const char *__g,
3860 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, 0);
3865tree_check3 (
tree __t,
const char *__f,
int __l,
const char *__g,
3871 tree_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, 0);
3876tree_not_check3 (
tree __t,
const char *__f,
int __l,
const char *__g,
3882 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, 0);
3887tree_check4 (
tree __t,
const char *__f,
int __l,
const char *__g,
3895 tree_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, 0);
3900tree_not_check4 (
tree __t,
const char *__f,
int __l,
const char *__g,
3908 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, 0);
3913tree_check5 (
tree __t,
const char *__f,
int __l,
const char *__g,
3922 tree_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, __c5, 0);
3927tree_not_check5 (
tree __t,
const char *__f,
int __l,
const char *__g,
3936 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, __c5, 0);
3941tree_check6 (
tree __t,
const char *__f,
int __l,
const char *__g,
3951 tree_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, __c5, __c6,
3957tree_not_check6 (
tree __t,
const char *__f,
int __l,
const char *__g,
3967 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, __c5,
3974 const char *__f,
int __l,
const char *__g)
3977 tree_contains_struct_check_failed (__t, __s, __f, __l, __g);
3983 const char *__f,
int __l,
const char *__g)
3986 tree_class_check_failed (__t, __class, __f, __l, __g);
3991tree_range_check (
tree __t,
3993 const char *__f,
int __l,
const char *__g)
3996 tree_range_check_failed (__t, __f, __l, __g, __code1, __code2);
4002 const char *__f,
int __l,
const char *__g)
4005 tree_check_failed (__t, __f, __l, __g, OMP_CLAUSE, 0);
4006 if (__t->omp_clause.code != __code)
4007 omp_clause_check_failed (__t, __f, __l, __g, __code);
4012omp_clause_range_check (
tree __t,
4015 const char *__f,
int __l,
const char *__g)
4018 tree_check_failed (__t, __f, __l, __g, OMP_CLAUSE, 0);
4019 if ((
int) __t->omp_clause.code < (
int) __code1
4020 || (
int) __t->omp_clause.code > (
int) __code2)
4021 omp_clause_range_check_failed (__t, __f, __l, __g, __code1, __code2);
4028expr_check (
tree __t,
const char *__f,
int __l,
const char *__g)
4039non_type_check (
tree __t,
const char *__f,
int __l,
const char *__g)
4042 tree_not_class_check_failed (__t,
tcc_type, __f, __l, __g);
4046inline const HOST_WIDE_INT *
4047tree_int_cst_elt_check (
const_tree __t,
int __i,
4048 const char *__f,
int __l,
const char *__g)
4051 tree_check_failed (__t, __f, __l, __g, INTEGER_CST, 0);
4052 if (__i < 0 || __i >= __t->base.u.int_length.extended)
4053 tree_int_cst_elt_check_failed (__i, __t->base.u.int_length.extended,
4055 return &
const_cast<tree> (__t)->int_cst.val[__i];
4058inline HOST_WIDE_INT *
4059tree_int_cst_elt_check (
tree __t,
int __i,
4060 const char *__f,
int __l,
const char *__g)
4063 tree_check_failed (__t, __f, __l, __g, INTEGER_CST, 0);
4064 if (__i < 0 || __i >= __t->base.u.int_length.extended)
4065 tree_int_cst_elt_check_failed (__i, __t->base.u.int_length.extended,
4067 return &
const_cast<tree> (__t)->int_cst.val[__i];
4072# if GCC_VERSION >= 4006
4073#pragma GCC diagnostic push
4074#pragma GCC diagnostic ignored "-Wstrict-overflow"
4078tree_vec_elt_check (
tree __t,
int __i,
4079 const char *__f,
int __l,
const char *__g)
4082 tree_check_failed (__t, __f, __l, __g, TREE_VEC, 0);
4083 if (__i < 0 || __i >= __t->base.u.length)
4084 tree_vec_elt_check_failed (__i, __t->base.u.length, __f, __l, __g);
4085 return &
const_cast<tree> (__t)->
vec.a[__i];
4088# if GCC_VERSION >= 4006
4089#pragma GCC diagnostic pop
4093omp_clause_elt_check (
tree __t,
int __i,
4094 const char *__f,
int __l,
const char *__g)
4097 tree_check_failed (__t, __f, __l, __g, OMP_CLAUSE, 0);
4099 omp_clause_operand_check_failed (__i, __t, __f, __l, __g);
4100 return &__t->omp_clause.ops[__i];
4106any_integral_type_check (
tree __t,
const char *__f,
int __l,
const char *__g)
4109 tree_check_failed (__t, __f, __l, __g, BOOLEAN_TYPE, ENUMERAL_TYPE,
4110 INTEGER_TYPE, BITINT_TYPE, 0);
4115tree_check (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4119 tree_check_failed (__t, __f, __l, __g, __c, 0);
4124tree_not_check (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4128 tree_not_check_failed (__t, __f, __l, __g, __c, 0);
4133tree_check2 (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4138 tree_check_failed (__t, __f, __l, __g, __c1, __c2, 0);
4143tree_not_check2 (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4148 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, 0);
4153tree_check3 (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4159 tree_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, 0);
4164tree_not_check3 (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4170 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, 0);
4175tree_check4 (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4183 tree_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, 0);
4188tree_not_check4 (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4196 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, 0);
4201tree_check5 (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4210 tree_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, __c5, 0);
4215tree_not_check5 (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4224 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, __c5, 0);
4229tree_check6 (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4239 tree_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, __c5, __c6,
4245tree_not_check6 (
const_tree __t,
const char *__f,
int __l,
const char *__g,
4255 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, __c4, __c5,
4262 const char *__f,
int __l,
const char *__g)
4265 tree_contains_struct_check_failed (__t, __s, __f, __l, __g);
4271 const char *__f,
int __l,
const char *__g)
4274 tree_class_check_failed (__t, __class, __f, __l, __g);
4281 const char *__f,
int __l,
const char *__g)
4284 tree_range_check_failed (__t, __f, __l, __g, __code1, __code2);
4290 const char *__f,
int __l,
const char *__g)
4293 tree_check_failed (__t, __f, __l, __g, OMP_CLAUSE, 0);
4294 if (__t->omp_clause.code != __code)
4295 omp_clause_check_failed (__t, __f, __l, __g, __code);
4303 const char *__f,
int __l,
const char *__g)
4306 tree_check_failed (__t, __f, __l, __g, OMP_CLAUSE, 0);
4307 if ((
int) __t->omp_clause.code < (
int) __code1
4308 || (
int) __t->omp_clause.code > (
int) __code2)
4309 omp_clause_range_check_failed (__t, __f, __l, __g, __code1, __code2);
4314expr_check (
const_tree __t,
const char *__f,
int __l,
const char *__g)
4323non_type_check (
const_tree __t,
const char *__f,
int __l,
const char *__g)
4326 tree_not_class_check_failed (__t,
tcc_type, __f, __l, __g);
4330# if GCC_VERSION >= 4006
4331#pragma GCC diagnostic push
4332#pragma GCC diagnostic ignored "-Wstrict-overflow"
4337 const char *__f,
int __l,
const char *__g)
4340 tree_check_failed (__t, __f, __l, __g, TREE_VEC, 0);
4341 if (__i < 0 || __i >= __t->base.u.length)
4342 tree_vec_elt_check_failed (__i, __t->base.u.length, __f, __l, __g);
4343 return const_cast<const_tree *
> (&__t->vec.a[__i]);
4347# if GCC_VERSION >= 4006
4348#pragma GCC diagnostic pop
4352omp_clause_elt_check (
const_tree __t,
int __i,
4353 const char *__f,
int __l,
const char *__g)
4356 tree_check_failed (__t, __f, __l, __g, OMP_CLAUSE, 0);
4358 omp_clause_operand_check_failed (__i, __t, __f, __l, __g);
4359 return const_cast<const_tree *
> (&__t->omp_clause.ops[__i]);
4363any_integral_type_check (
const_tree __t,
const char *__f,
int __l,
4367 tree_check_failed (__t, __f, __l, __g, BOOLEAN_TYPE, ENUMERAL_TYPE,
4368 INTEGER_TYPE, BITINT_TYPE, 0);
4386#if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
4390tree_operand_check (
tree __t,
int __i,
4391 const char *__f,
int __l,
const char *__g)
4395 tree_operand_check_failed (__i, __u, __f, __l, __g);
4396 return &
const_cast<tree> (__u)->
exp.operands[__i];
4400tree_operand_check_code (
tree __t,
enum tree_code __code,
int __i,
4401 const char *__f,
int __l,
const char *__g)
4404 tree_check_failed (__t, __f, __l, __g, __code, 0);
4406 tree_operand_check_failed (__i, __t, __f, __l, __g);
4407 return &__t->exp.operands[__i];
4412 const char *__f,
int __l,
const char *__g)
4416 tree_operand_check_failed (__i, __u, __f, __l, __g);
4417 return const_cast<const_tree *
> (&__u->exp.operands[__i]);
4422 const char *__f,
int __l,
const char *__g)
4425 tree_check_failed (__t, __f, __l, __g, __code, 0);
4427 tree_operand_check_failed (__i, __t, __f, __l, __g);
4428 return const_cast<const_tree *
> (&__t->exp.operands[__i]);
4453 unsigned int precision = VECTOR_TYPE_CHECK (
node)->type_common.precision;
4460 if (precision & 0x100)
4475 unsigned HOST_WIDE_INT coeff0 = subparts.
coeffs[0];
4495 unsigned HOST_WIDE_INT coeff1 = subparts.
coeffs[1];
4496 gcc_assert (coeff1 == 0 || coeff1 == coeff0);
4497 VECTOR_TYPE_CHECK (
node)->type_common.precision
4498 = index + (coeff1 != 0 ? 0x100 : 0);
4501 VECTOR_TYPE_CHECK (
node)->type_common.precision = index;
4510 unsigned HOST_WIDE_INT coeff0 = subparts.
coeffs[0];
4515 unsigned HOST_WIDE_INT coeff1 = subparts.
coeffs[1];
4516 if (coeff1 != 0 && coeff1 != coeff0)
4527 const tree_function_decl &fndecl = FUNCTION_DECL_CHECK (
decl)->function_decl;
4538 const tree_function_decl &fndecl = FUNCTION_DECL_CHECK (
decl)->function_decl;
4540 return fndecl.function_code;
4549 const tree_function_decl &fndecl = FUNCTION_DECL_CHECK (
decl)->function_decl;
4551 return fndecl.function_code;
4560 tree_function_decl &fndecl = FUNCTION_DECL_CHECK (
decl)->function_decl;
4561 fndecl.built_in_class = fclass;
4562 fndecl.function_code = fcode;
4570 tree_function_decl &newfndecl = FUNCTION_DECL_CHECK (newdecl)->function_decl;
4571 const tree_function_decl &oldfndecl
4572 = FUNCTION_DECL_CHECK (olddecl)->function_decl;
4573 newfndecl.built_in_class = oldfndecl.built_in_class;
4574 newfndecl.function_code = oldfndecl.function_code;
4581#define EXPR_LOCATION_WRAPPER_P(NODE) \
4582 (TREE_CHECK2(NODE, NON_LVALUE_EXPR, VIEW_CONVERT_EXPR)->base.public_flag)
4616#define error_mark_node global_trees[TI_ERROR_MARK]
4618#define intQI_type_node global_trees[TI_INTQI_TYPE]
4619#define intHI_type_node global_trees[TI_INTHI_TYPE]
4620#define intSI_type_node global_trees[TI_INTSI_TYPE]
4621#define intDI_type_node global_trees[TI_INTDI_TYPE]
4622#define intTI_type_node global_trees[TI_INTTI_TYPE]
4624#define unsigned_intQI_type_node global_trees[TI_UINTQI_TYPE]
4625#define unsigned_intHI_type_node global_trees[TI_UINTHI_TYPE]
4626#define unsigned_intSI_type_node global_trees[TI_UINTSI_TYPE]
4627#define unsigned_intDI_type_node global_trees[TI_UINTDI_TYPE]
4628#define unsigned_intTI_type_node global_trees[TI_UINTTI_TYPE]
4630#define atomicQI_type_node global_trees[TI_ATOMICQI_TYPE]
4631#define atomicHI_type_node global_trees[TI_ATOMICHI_TYPE]
4632#define atomicSI_type_node global_trees[TI_ATOMICSI_TYPE]
4633#define atomicDI_type_node global_trees[TI_ATOMICDI_TYPE]
4634#define atomicTI_type_node global_trees[TI_ATOMICTI_TYPE]
4636#define uint16_type_node global_trees[TI_UINT16_TYPE]
4637#define uint32_type_node global_trees[TI_UINT32_TYPE]
4638#define uint64_type_node global_trees[TI_UINT64_TYPE]
4639#define uint128_type_node global_trees[TI_UINT128_TYPE]
4641#define void_node global_trees[TI_VOID]
4643#define integer_zero_node global_trees[TI_INTEGER_ZERO]
4644#define integer_one_node global_trees[TI_INTEGER_ONE]
4645#define integer_minus_one_node global_trees[TI_INTEGER_MINUS_ONE]
4646#define size_zero_node global_trees[TI_SIZE_ZERO]
4647#define size_one_node global_trees[TI_SIZE_ONE]
4648#define bitsize_zero_node global_trees[TI_BITSIZE_ZERO]
4649#define bitsize_one_node global_trees[TI_BITSIZE_ONE]
4650#define bitsize_unit_node global_trees[TI_BITSIZE_UNIT]
4653#define access_public_node global_trees[TI_PUBLIC]
4654#define access_protected_node global_trees[TI_PROTECTED]
4655#define access_private_node global_trees[TI_PRIVATE]
4657#define null_pointer_node global_trees[TI_NULL_POINTER]
4659#define float_type_node global_trees[TI_FLOAT_TYPE]
4660#define double_type_node global_trees[TI_DOUBLE_TYPE]
4661#define long_double_type_node global_trees[TI_LONG_DOUBLE_TYPE]
4662#define bfloat16_type_node global_trees[TI_BFLOAT16_TYPE]
4665#define FLOATN_TYPE_NODE(IDX) global_trees[TI_FLOATN_TYPE_FIRST + (IDX)]
4666#define FLOATN_NX_TYPE_NODE(IDX) global_trees[TI_FLOATN_NX_TYPE_FIRST + (IDX)]
4667#define FLOATNX_TYPE_NODE(IDX) global_trees[TI_FLOATNX_TYPE_FIRST + (IDX)]
4672#define float16_type_node global_trees[TI_FLOAT16_TYPE]
4673#define float32_type_node global_trees[TI_FLOAT32_TYPE]
4674#define float64_type_node global_trees[TI_FLOAT64_TYPE]
4675#define float128_type_node global_trees[TI_FLOAT128_TYPE]
4676#define float32x_type_node global_trees[TI_FLOAT32X_TYPE]
4677#define float64x_type_node global_trees[TI_FLOAT64X_TYPE]
4678#define float128x_type_node global_trees[TI_FLOAT128X_TYPE]
4682#define float128t_type_node global_trees[TI_FLOAT128T_TYPE]
4684#define float_ptr_type_node global_trees[TI_FLOAT_PTR_TYPE]
4685#define double_ptr_type_node global_trees[TI_DOUBLE_PTR_TYPE]
4686#define long_double_ptr_type_node global_trees[TI_LONG_DOUBLE_PTR_TYPE]
4687#define integer_ptr_type_node global_trees[TI_INTEGER_PTR_TYPE]
4689#define complex_integer_type_node global_trees[TI_COMPLEX_INTEGER_TYPE]
4690#define complex_float_type_node global_trees[TI_COMPLEX_FLOAT_TYPE]
4691#define complex_double_type_node global_trees[TI_COMPLEX_DOUBLE_TYPE]
4692#define complex_long_double_type_node global_trees[TI_COMPLEX_LONG_DOUBLE_TYPE]
4694#define COMPLEX_FLOATN_NX_TYPE_NODE(IDX) global_trees[TI_COMPLEX_FLOATN_NX_TYPE_FIRST + (IDX)]
4696#define void_type_node global_trees[TI_VOID_TYPE]
4698#define ptr_type_node global_trees[TI_PTR_TYPE]
4700#define const_ptr_type_node global_trees[TI_CONST_PTR_TYPE]
4702#define size_type_node global_trees[TI_SIZE_TYPE]
4703#define pid_type_node global_trees[TI_PID_TYPE]
4704#define ptrdiff_type_node global_trees[TI_PTRDIFF_TYPE]
4705#define va_list_type_node global_trees[TI_VA_LIST_TYPE]
4706#define va_list_gpr_counter_field global_trees[TI_VA_LIST_GPR_COUNTER_FIELD]
4707#define va_list_fpr_counter_field global_trees[TI_VA_LIST_FPR_COUNTER_FIELD]
4709#define fileptr_type_node global_trees[TI_FILEPTR_TYPE]
4711#define const_tm_ptr_type_node global_trees[TI_CONST_TM_PTR_TYPE]
4713#define fenv_t_ptr_type_node global_trees[TI_FENV_T_PTR_TYPE]
4714#define const_fenv_t_ptr_type_node global_trees[TI_CONST_FENV_T_PTR_TYPE]
4716#define fexcept_t_ptr_type_node global_trees[TI_FEXCEPT_T_PTR_TYPE]
4717#define const_fexcept_t_ptr_type_node global_trees[TI_CONST_FEXCEPT_T_PTR_TYPE]
4718#define pointer_sized_int_node global_trees[TI_POINTER_SIZED_TYPE]
4720#define boolean_type_node global_trees[TI_BOOLEAN_TYPE]
4721#define boolean_false_node global_trees[TI_BOOLEAN_FALSE]
4722#define boolean_true_node global_trees[TI_BOOLEAN_TRUE]
4725#define dfloat32_type_node global_trees[TI_DFLOAT32_TYPE]
4726#define dfloat64_type_node global_trees[TI_DFLOAT64_TYPE]
4727#define dfloat128_type_node global_trees[TI_DFLOAT128_TYPE]
4728#define dfloat64x_type_node global_trees[TI_DFLOAT64X_TYPE]
4731#define sat_short_fract_type_node global_trees[TI_SAT_SFRACT_TYPE]
4732#define sat_fract_type_node global_trees[TI_SAT_FRACT_TYPE]
4733#define sat_long_fract_type_node global_trees[TI_SAT_LFRACT_TYPE]
4734#define sat_long_long_fract_type_node global_trees[TI_SAT_LLFRACT_TYPE]
4735#define sat_unsigned_short_fract_type_node \
4736 global_trees[TI_SAT_USFRACT_TYPE]
4737#define sat_unsigned_fract_type_node global_trees[TI_SAT_UFRACT_TYPE]
4738#define sat_unsigned_long_fract_type_node \
4739 global_trees[TI_SAT_ULFRACT_TYPE]
4740#define sat_unsigned_long_long_fract_type_node \
4741 global_trees[TI_SAT_ULLFRACT_TYPE]
4742#define short_fract_type_node global_trees[TI_SFRACT_TYPE]
4743#define fract_type_node global_trees[TI_FRACT_TYPE]
4744#define long_fract_type_node global_trees[TI_LFRACT_TYPE]
4745#define long_long_fract_type_node global_trees[TI_LLFRACT_TYPE]
4746#define unsigned_short_fract_type_node global_trees[TI_USFRACT_TYPE]
4747#define unsigned_fract_type_node global_trees[TI_UFRACT_TYPE]
4748#define unsigned_long_fract_type_node global_trees[TI_ULFRACT_TYPE]
4749#define unsigned_long_long_fract_type_node \
4750 global_trees[TI_ULLFRACT_TYPE]
4751#define sat_short_accum_type_node global_trees[TI_SAT_SACCUM_TYPE]
4752#define sat_accum_type_node global_trees[TI_SAT_ACCUM_TYPE]
4753#define sat_long_accum_type_node global_trees[TI_SAT_LACCUM_TYPE]
4754#define sat_long_long_accum_type_node global_trees[TI_SAT_LLACCUM_TYPE]
4755#define sat_unsigned_short_accum_type_node \
4756 global_trees[TI_SAT_USACCUM_TYPE]
4757#define sat_unsigned_accum_type_node global_trees[TI_SAT_UACCUM_TYPE]
4758#define sat_unsigned_long_accum_type_node \
4759 global_trees[TI_SAT_ULACCUM_TYPE]
4760#define sat_unsigned_long_long_accum_type_node \
4761 global_trees[TI_SAT_ULLACCUM_TYPE]
4762#define short_accum_type_node global_trees[TI_SACCUM_TYPE]
4763#define accum_type_node global_trees[TI_ACCUM_TYPE]
4764#define long_accum_type_node global_trees[TI_LACCUM_TYPE]
4765#define long_long_accum_type_node global_trees[TI_LLACCUM_TYPE]
4766#define unsigned_short_accum_type_node global_trees[TI_USACCUM_TYPE]
4767#define unsigned_accum_type_node global_trees[TI_UACCUM_TYPE]
4768#define unsigned_long_accum_type_node global_trees[TI_ULACCUM_TYPE]
4769#define unsigned_long_long_accum_type_node \
4770 global_trees[TI_ULLACCUM_TYPE]
4771#define qq_type_node global_trees[TI_QQ_TYPE]
4772#define hq_type_node global_trees[TI_HQ_TYPE]
4773#define sq_type_node global_trees[TI_SQ_TYPE]
4774#define dq_type_node global_trees[TI_DQ_TYPE]
4775#define tq_type_node global_trees[TI_TQ_TYPE]
4776#define uqq_type_node global_trees[TI_UQQ_TYPE]
4777#define uhq_type_node global_trees[TI_UHQ_TYPE]
4778#define usq_type_node global_trees[TI_USQ_TYPE]
4779#define udq_type_node global_trees[TI_UDQ_TYPE]
4780#define utq_type_node global_trees[TI_UTQ_TYPE]
4781#define sat_qq_type_node global_trees[TI_SAT_QQ_TYPE]
4782#define sat_hq_type_node global_trees[TI_SAT_HQ_TYPE]
4783#define sat_sq_type_node global_trees[TI_SAT_SQ_TYPE]
4784#define sat_dq_type_node global_trees[TI_SAT_DQ_TYPE]
4785#define sat_tq_type_node global_trees[TI_SAT_TQ_TYPE]
4786#define sat_uqq_type_node global_trees[TI_SAT_UQQ_TYPE]
4787#define sat_uhq_type_node global_trees[TI_SAT_UHQ_TYPE]
4788#define sat_usq_type_node global_trees[TI_SAT_USQ_TYPE]
4789#define sat_udq_type_node global_trees[TI_SAT_UDQ_TYPE]
4790#define sat_utq_type_node global_trees[TI_SAT_UTQ_TYPE]
4791#define ha_type_node global_trees[TI_HA_TYPE]
4792#define sa_type_node global_trees[TI_SA_TYPE]
4793#define da_type_node global_trees[TI_DA_TYPE]
4794#define ta_type_node global_trees[TI_TA_TYPE]
4795#define uha_type_node global_trees[TI_UHA_TYPE]
4796#define usa_type_node global_trees[TI_USA_TYPE]
4797#define uda_type_node global_trees[TI_UDA_TYPE]
4798#define uta_type_node global_trees[TI_UTA_TYPE]
4799#define sat_ha_type_node global_trees[TI_SAT_HA_TYPE]
4800#define sat_sa_type_node global_trees[TI_SAT_SA_TYPE]
4801#define sat_da_type_node global_trees[TI_SAT_DA_TYPE]
4802#define sat_ta_type_node global_trees[TI_SAT_TA_TYPE]
4803#define sat_uha_type_node global_trees[TI_SAT_UHA_TYPE]
4804#define sat_usa_type_node global_trees[TI_SAT_USA_TYPE]
4805#define sat_uda_type_node global_trees[TI_SAT_UDA_TYPE]
4806#define sat_uta_type_node global_trees[TI_SAT_UTA_TYPE]
4813#define void_list_node global_trees[TI_VOID_LIST_NODE]
4815#define main_identifier_node global_trees[TI_MAIN_IDENTIFIER]
4816#define MAIN_NAME_P(NODE) \
4817 (IDENTIFIER_NODE_CHECK (NODE) == main_identifier_node)
4821#define optimization_default_node global_trees[TI_OPTIMIZATION_DEFAULT]
4822#define optimization_current_node global_trees[TI_OPTIMIZATION_CURRENT]
4825#define target_option_default_node global_trees[TI_TARGET_OPTION_DEFAULT]
4826#define target_option_current_node global_trees[TI_TARGET_OPTION_CURRENT]
4830#define current_target_pragma global_trees[TI_CURRENT_TARGET_PRAGMA]
4831#define current_optimize_pragma global_trees[TI_CURRENT_OPTIMIZE_PRAGMA]
4834#define chrec_not_analyzed_yet NULL_TREE
4835#define chrec_dont_know global_trees[TI_CHREC_DONT_KNOW]
4836#define chrec_known global_trees[TI_CHREC_KNOWN]
4838#define char_type_node integer_types[itk_char]
4839#define signed_char_type_node integer_types[itk_signed_char]
4840#define unsigned_char_type_node integer_types[itk_unsigned_char]
4841#define short_integer_type_node integer_types[itk_short]
4842#define short_unsigned_type_node integer_types[itk_unsigned_short]
4843#define integer_type_node integer_types[itk_int]
4844#define unsigned_type_node integer_types[itk_unsigned_int]
4845#define long_integer_type_node integer_types[itk_long]
4846#define long_unsigned_type_node integer_types[itk_unsigned_long]
4847#define long_long_integer_type_node integer_types[itk_long_long]
4848#define long_long_unsigned_type_node integer_types[itk_unsigned_long_long]
5070template <
typename ...T>
5073 std::initializer_list<tree> args_ = {args...};
5077#define build_call_array(T1,T2,N,T3)\
5078 build_call_array_loc (UNKNOWN_LOCATION, T1, T2, N, T3)
5129#define build_function_type_vec(RET, V) \
5130 build_function_type_array (RET, vec_safe_length (V), vec_safe_address (V))
5131#define build_varargs_function_type_vec(RET, V) \
5132 build_varargs_function_type_array (RET, vec_safe_length (V), \
5133 vec_safe_address (V))
5158 ATTRIBUTE_NONNULL (1) ATTRIBUTE_PURE;
5160 ATTRIBUTE_NONNULL (1) ATTRIBUTE_PURE;
5162 ATTRIBUTE_NONNULL (1) ATTRIBUTE_PURE;
5164 ATTRIBUTE_NONNULL (1) ATTRIBUTE_PURE;
5166 ATTRIBUTE_NONNULL (1) ATTRIBUTE_PURE;
5167#if !defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 4003)
5168extern inline __attribute__ ((__gnu_inline__)) HOST_WIDE_INT
5175extern inline __attribute__ ((__gnu_inline__))
unsigned HOST_WIDE_INT
5181#if NUM_POLY_INT_COEFFS == 1
5182extern inline __attribute__ ((__gnu_inline__))
poly_int64
5189extern inline __attribute__ ((__gnu_inline__))
poly_uint64
5306#define build_type_variant(TYPE, CONST_P, VOLATILE_P) \
5307 build_qualified_type ((TYPE), \
5308 ((CONST_P) ? TYPE_QUAL_CONST : 0) \
5309 | ((VOLATILE_P) ? TYPE_QUAL_VOLATILE : 0))
5340#define sizetype sizetype_tab[(int) stk_sizetype]
5341#define bitsizetype sizetype_tab[(int) stk_bitsizetype]
5342#define ssizetype sizetype_tab[(int) stk_ssizetype]
5343#define sbitsizetype sizetype_tab[(int) stk_sbitsizetype]
5344#define size_int(L) size_int_kind (L, stk_sizetype)
5345#define ssize_int(L) size_int_kind (L, stk_ssizetype)
5346#define bitsize_int(L) size_int_kind (L, stk_bitsizetype)
5347#define sbitsize_int(L) size_int_kind (L, stk_sbitsizetype)
5351#if BITS_PER_UNIT == 8
5352#define LOG2_BITS_PER_UNIT 3
5353#elif BITS_PER_UNIT == 16
5354#define LOG2_BITS_PER_UNIT 4
5356#error Unknown BITS_PER_UNIT
5516#define CONTAINS_PLACEHOLDER_P(EXP) \
5517 ((EXP) != 0 && ! TREE_CONSTANT (EXP) && contains_placeholder_p (EXP))
5537#define FIND_PLACEHOLDER_IN_EXPR(EXP, V) \
5539 if((EXP) && !TREE_CONSTANT (EXP)) \
5540 find_placeholder_in_expr (EXP, V); \
5555#define SUBSTITUTE_IN_EXPR(EXP, F, R) \
5556 ((EXP) == 0 || TREE_CONSTANT (EXP) ? (EXP) : substitute_in_expr (EXP, F, R))
5566#define SUBSTITUTE_PLACEHOLDER_IN_EXPR(EXP, OBJ) \
5567 ((EXP) == 0 || TREE_CONSTANT (EXP) ? (EXP) \
5568 : substitute_placeholder_in_expr (EXP, OBJ))
5601 case ARRAY_RANGE_REF:
5604 case VIEW_CONVERT_EXPR:
5639 case ARRAY_RANGE_REF:
5640 case VIEW_CONVERT_EXPR:
5739#define FOREACH_FUNCTION_ARGS_PTR(FNTYPE, PTR, ITER) \
5740 for (function_args_iter_init (&(ITER), (FNTYPE)); \
5741 (PTR = function_args_iter_cond_ptr (&(ITER))) != NULL; \
5742 function_args_iter_next (&(ITER)))
5747#define FOREACH_FUNCTION_ARGS(FNTYPE, TREE, ITER) \
5748 for (function_args_iter_init (&(ITER), (FNTYPE)); \
5749 (TREE = function_args_iter_cond (&(ITER))) != NULL_TREE; \
5750 function_args_iter_next (&(ITER)))
5822 const void *
const * x = (
const void *
const *)
a;
5823 const void *
const *
y = (
const void *
const *)
b;
5830 const void *
const * x = (
const void *
const *)
a;
5831 return (intptr_t)*x >> 4;
5844 return code == TRUNC_DIV_EXPR || code == EXACT_DIV_EXPR;
5851 switch (code.get_rep())
5853 case TRUNC_DIV_EXPR:
5855 case FLOOR_DIV_EXPR:
5856 case ROUND_DIV_EXPR:
5857 case EXACT_DIV_EXPR:
5858 case TRUNC_MOD_EXPR:
5859 case FLOOR_MOD_EXPR:
5861 case ROUND_MOD_EXPR:
5873 || code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
5874 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
5875 || code == TRUTH_XOR_EXPR || code == TRUTH_NOT_EXPR);
5931 ATTRIBUTE_NONNULL (1) ATTRIBUTE_NONNULL (2) ATTRIBUTE_PURE;
5932#ifndef GENERATOR_FILE
5954 return hstate.
end ();
5999#define walk_tree(a,b,c,d) \
6000 walk_tree_1 (a, b, c, d, NULL)
6001#define walk_tree_without_duplicates(a,b,c) \
6002 walk_tree_without_duplicates_1 (a, b, c, NULL)
6069 bool trust_type_canonical =
true);
6091 if (code == ENUMERAL_TYPE)
6092 return INTEGER_TYPE;
6098 if (code == REFERENCE_TYPE)
6099 return POINTER_TYPE;
6130#define tree_map_eq tree_map_base_eq
6132#define tree_map_marked_p tree_map_base_marked_p
6134#define tree_decl_map_eq tree_map_base_eq
6136#define tree_decl_map_marked_p tree_map_base_marked_p
6154#define tree_int_map_eq tree_map_base_eq
6155#define tree_int_map_hash tree_map_base_hash
6156#define tree_int_map_marked_p tree_map_base_marked_p
6158#define tree_vec_map_eq tree_map_base_eq
6159#define tree_vec_map_hash tree_decl_map_hash
6160#define tree_vec_map_marked_p tree_map_base_marked_p
6164 static hashval_t
hash (tree_vec_map *m) {
return DECL_UID (m->base.from); }
6169 return a->base.from ==
b->base.from;
6184 static inline hashval_t
hash (
tree);
6196 static inline hashval_t
hash (
tree);
6210 static inline hashval_t
hash (
tree);
6234struct tree_cache_traits
6240struct decl_tree_cache_traits
6246struct type_tree_cache_traits
6251struct decl_tree_traits
6258init_call_expr_arg_iterator (
tree exp, call_expr_arg_iterator *iter)
6266init_const_call_expr_arg_iterator (
const_tree exp, const_call_expr_arg_iterator *iter)
6276next_call_expr_arg (call_expr_arg_iterator *iter)
6279 if (iter->i >= iter->n)
6287next_const_call_expr_arg (const_call_expr_arg_iterator *iter)
6290 if (iter->i >= iter->n)
6304 init_call_expr_arg_iterator (
exp, iter);
6305 return next_call_expr_arg (iter);
6311 init_const_call_expr_arg_iterator (
exp, iter);
6312 return next_const_call_expr_arg (iter);
6320 return (iter->i < iter->n);
6325#define FOR_EACH_CALL_EXPR_ARG(arg, iter, call) \
6326 for ((arg) = first_call_expr_arg ((call), &(iter)); (arg); \
6327 (arg) = next_call_expr_arg (&(iter)))
6329#define FOR_EACH_CONST_CALL_EXPR_ARG(arg, iter, call) \
6330 for ((arg) = first_const_call_expr_arg ((call), &(iter)); (arg); \
6331 (arg) = next_const_call_expr_arg (&(iter)))
6341#define BUILTIN_VALID_P(FNCODE) \
6342 (IN_RANGE ((int)FNCODE, ((int)BUILT_IN_NONE) + 1, ((int) END_BUILTINS) - 1))
6348#define BUILTIN_ASM_NAME_PTR(BUILTIN) \
6349 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (builtin_decl_explicit (BUILTIN))))
6364 size_t uns_fncode = (size_t)fncode;
6384 size_t ufncode = (size_t)fncode;
6399 size_t uns_fncode = (size_t)fncode;
6412 size_t uns_fncode = (size_t)fncode;
6435 size_t uns_fncode = (size_t)fncode;
6447 size_t uns_fncode = (size_t)fncode;
6506inline struct cl_optimization *
6516inline cl_target_option *
6527#define opt_for_fn(fndecl, opt) (opts_for_fn (fndecl)->x_##opt)
6549 unsigned int get_len ()
const;
6557 static const bool host_dependent_precision =
false;
6558 static const bool is_sign_extended =
false;
6559 static const bool needs_write_val_arg =
false;
6573 const HOST_WIDE_INT *
get_val ()
const;
6574 unsigned int get_len ()
const;
6583 static const bool host_dependent_precision =
false;
6584 static const bool is_sign_extended =
true;
6585 static const bool needs_write_val_arg =
false;
6594 typedef const generic_wide_int<wide_int_ref_storage<false, false> >
6603 generic_wide_int <widest_extended_tree> >
6606 generic_wide_int <offset_extended_tree> >
6609 generic_wide_int <unextended_tree> >
6619 typedef generic_wide_int <extended_tree <N> > extended;
6620 static extended
zero (
const extended &);
6626 typedef generic_wide_int <extended_tree <N> > extended;
6627 static extended
zero (
const extended &);
6633 typedef generic_wide_int <unextended_tree> unextended;
6634 static unextended
zero (
const unextended &);
6640typedef generic_wide_int <wi::extended_tree <WIDEST_INT_MAX_PRECISION * 2> >
6764inline const HOST_WIDE_INT *
6799inline const HOST_WIDE_INT *
6816 poly_int <NUM_POLY_INT_COEFFS, generic_wide_int <wi::unextended_tree> > res;
6831 generic_wide_int <widest_extended_tree> > res;
6848 generic_wide_int <offset_extended_tree> > res;
6868inline generic_wide_int <wi::extended_tree <N> >
6869wi::ints_for <generic_wide_int <wi::extended_tree <N> >,
6876inline generic_wide_int <wi::extended_tree <N> >
6877wi::ints_for <generic_wide_int <wi::extended_tree <N> >,
6883inline generic_wide_int <wi::unextended_tree>
6884wi::ints_for <generic_wide_int <wi::unextended_tree>,
6892 template <
typename T>
6895 template <
typename T>
6900#ifndef GENERATOR_FILE
6905template <
typename T>
6914template <
typename T>
6986 tree *, machine_mode *,
int *,
int *,
int *);
7071class builtin_structptr_type
7093 return name0 == name1;
7098template <
typename... F>
7140template <
typename... F>
7190 location_t m_operator_loc;
7191 location_t m_combined_loc;
7194 op_location_t (location_t combined_loc)
7200 op_location_t (location_t operator_loc, location_t combined_loc)
7201 : m_operator_loc (operator_loc), m_combined_loc (combined_loc)
7205 operator location_t ()
const {
return m_combined_loc; }
7232 ATTRIBUTE_NONNULL (1);
void gt_pch_nx(bbitmap< N > *)
Definition bbitmap.h:226
void gt_ggc_mx(bbitmap< N > *)
Definition bbitmap.h:220
auto_suppress_location_wrappers()
Definition tree.h:1408
~auto_suppress_location_wrappers()
Definition tree.h:1409
tree & base
Definition tree.h:7006
const char * str
Definition tree.h:7007
code_helper(tree_code code)
Definition tree.h:85
tree_code safe_as_tree_code() const
Definition tree.h:113
bool is_internal_fn() const
Definition tree.h:138
code_helper()
Definition tree.h:84
bool operator!=(const code_helper &other)
Definition tree.h:100
code_helper(internal_fn fn)
Definition tree.h:87
bool is_fn_code() const
Definition tree.h:93
bool operator==(const code_helper &other)
Definition tree.h:99
int rep
Definition tree.h:105
code_helper(combined_fn fn)
Definition tree.h:86
int get_rep() const
Definition tree.h:96
bool is_tree_code() const
Definition tree.h:92
bool is_builtin_fn() const
Definition tree.h:144
combined_fn safe_as_fn_code() const
Definition tree.h:123
Definition genmatch.cc:1507
Definition wide-int.h:776
hashval_t end() const
Definition inchash.h:49
op_location_t(location_t operator_loc, location_t combined_loc)
Definition tree.h:7131
op_location_t(location_t combined_loc)
Definition tree.h:7125
location_t m_operator_loc
Definition tree.h:7121
location_t m_combined_loc
Definition tree.h:7122
Definition poly-int.h:378
C coeffs[N]
Definition poly-int.h:433
tree * end()
Definition tree.h:4938
tree v
Definition tree.h:4934
tree_vec_range(tree v)
Definition tree.h:4936
tree * begin()
Definition tree.h:4937
unsigned int get_precision() const
Definition tree.h:6689
const_tree m_t
Definition tree.h:6497
extended_tree(const_tree)
Definition tree.h:6681
const_tree get_tree() const
Definition tree.h:6506
extended_tree()
Definition tree.h:6500
const HOST_WIDE_INT * get_val() const
Definition tree.h:6696
unsigned int get_len() const
Definition tree.h:6703
Definition wide-int.h:707
const_tree get_tree() const
Definition tree.h:6481
unextended_tree()
Definition tree.h:6475
unsigned int get_len() const
Definition tree.h:6737
unextended_tree(const_tree t)
Definition tree.h:6476
unsigned int get_precision() const
Definition tree.h:6725
const HOST_WIDE_INT * get_val() const
Definition tree.h:6731
const_tree m_t
Definition tree.h:6472
static wide_int from(const wide_int_ref &, unsigned int, signop)
Definition wide-int.h:1289
struct rtx_def * rtx
Definition coretypes.h:57
tls_model
Definition coretypes.h:215
excess_precision_type
Definition coretypes.h:446
const union tree_node * const_tree
Definition coretypes.h:98
#define GTY(x)
Definition coretypes.h:41
void(* gt_pointer_operator)(void *, void *, void *)
Definition coretypes.h:469
class bitmap_head * bitmap
Definition coretypes.h:51
union tree_node * tree
Definition coretypes.h:97
void ATTRIBUTE_NORETURN
Definition diagnostic-core.h:76
scalar_int_mode word_mode
Definition emit-rtl.cc:78
void set_decl_rtl(tree t, rtx x)
Definition emit-rtl.cc:1462
tree get_inner_reference(tree exp, poly_int64 *pbitsize, poly_int64 *pbitpos, tree *poffset, machine_mode *pmode, int *punsignedp, int *preversep, int *pvolatilep)
Definition expr.cc:8522
bool complete_ctor_at_level_p(const_tree type, HOST_WIDE_INT num_elts, const_tree last_type)
Definition expr.cc:7384
tree build_personality_function(const char *lang)
Definition expr.cc:14375
uint64_t sanitize_code_type
Definition flag-types.h:359
void copy_warning(location_t to, location_t from)
Definition gcc-diagnostic-spec.cc:205
bool warning_suppressed_at(location_t loc, opt_code opt)
Definition gcc-diagnostic-spec.cc:125
bool suppress_warning_at(location_t loc, opt_code opt, bool supp)
Definition gcc-diagnostic-spec.cc:148
void put_warning_spec_at(location_t loc, unsigned bits)
Definition gcc-diagnostic-spec.cc:184
static vector< name_map > names
Definition gcov.cc:594
static type_p type(options_p *optsp, bool nested)
Definition gengtype-parse.cc:883
static struct token T
Definition gengtype-parse.cc:45
static class line_maps * line_table
Definition genmatch.cc:65
built_in_function
Definition genmatch.cc:1009
combined_fn
Definition genmatch.cc:1020
internal_fn
Definition genmatch.cc:1015
tree_code
Definition genmatch.cc:1002
#define NUM_POLY_INT_COEFFS
Definition genmodes.cc:859
#define N
Definition gensupport.cc:202
bool ggc_marked_p(const void *p)
Definition ggc-page.cc:1681
void suppress_warning(gimple *, opt_code=all_warnings, bool=true) ATTRIBUTE_NONNULL(1)
Definition warning-control.cc:173
bool warning_suppressed_p(const gimple *, opt_code=all_warnings) ATTRIBUTE_NONNULL(1)
Definition warning-control.cc:138
int exact_log2(unsigned HOST_WIDE_INT x)
Definition hwint.cc:75
bool pow2p_hwi(unsigned HOST_WIDE_INT x)
Definition hwint.h:179
#define HOST_WIDE_INT_M1U
Definition hwint.h:72
#define HOST_WIDE_INT_1U
Definition hwint.h:70
bool int_n_enabled_p[NUM_INT_N_ENTS]
Definition tree.cc:291
ALWAYS_INLINE poly_uint16 GET_MODE_PRECISION(machine_mode mode)
Definition machmode.h:710
Definition custom-sarif-properties/state-graphs.h:33
Definition fold-const.cc:4268
void add_expr(const_tree t, inchash::hash &hstate, unsigned int flags)
Definition fold-const.cc:4276
Definition double-int.h:439
precision_type
Definition wide-int.h:387
@ INL_CONST_PRECISION
Definition wide-int.h:398
@ VAR_PRECISION
Definition wide-int.h:394
@ CONST_PRECISION
Definition wide-int.h:402
wide_int min_value(machine_mode, signop)
Definition rtl.h:2375
const poly_int< NUM_POLY_INT_COEFFS, generic_wide_int< unextended_tree > > tree_to_poly_wide_ref
Definition tree.h:6541
tree_to_offset_ref to_offset(const_tree)
Definition tree.h:6634
tree_to_poly_offset_ref to_poly_offset(const_tree)
Definition tree.h:6774
int cmps(const T1 &, const T2 &)
Definition wide-int.h:2444
const generic_wide_int< widest_extended_tree > tree_to_widest_ref
Definition tree.h:6523
UNARY_FUNCTION zext(const T &, unsigned int)
extended_tree< ADDR_MAX_PRECISION > offset_extended_tree
Definition tree.h:6521
tree_to_poly_widest_ref to_poly_widest(const_tree)
Definition tree.h:6757
bool fits_to_tree_p(const T &x, const_tree)
Definition tree.h:6847
const generic_wide_int< wide_int_ref_storage< false, false > > tree_to_wide_ref
Definition tree.h:6526
const generic_wide_int< offset_extended_tree > tree_to_offset_ref
Definition tree.h:6524
hwi_with_prec zero(unsigned int)
Definition wide-int.h:2018
const poly_int< NUM_POLY_INT_COEFFS, generic_wide_int< offset_extended_tree > > tree_to_poly_offset_ref
Definition tree.h:6538
tree_to_widest_ref to_widest(const_tree)
Definition tree.h:6609
rtx_to_poly_wide_ref to_poly_wide(const_rtx, machine_mode)
Definition rtl.h:2420
Ca unsigned int precision
Definition poly-int.h:746
wide_int from_mpz(const_tree, mpz_t, bool)
Definition wide-int.cc:253
bool fits_to_boolean_p(const T &x, const_tree)
Definition tree.h:6838
wide_int max_value(machine_mode, signop)
Definition rtl.h:2383
extended_tree< WIDEST_INT_MAX_PRECISION > widest_extended_tree
Definition tree.h:6520
tree_to_wide_ref to_wide(const_tree)
Definition tree.h:6664
UNARY_FUNCTION sext(const T &, unsigned int)
const poly_int< NUM_POLY_INT_COEFFS, generic_wide_int< widest_extended_tree > > tree_to_poly_widest_ref
Definition tree.h:6535
i
Definition poly-int.h:750
poly_int< NUM_POLY_INT_COEFFS, unsigned HOST_WIDE_INT > poly_uint64
Definition poly-int-types.h:25
poly_int< NUM_POLY_INT_COEFFS, wide_int_ref > poly_wide_int_ref
Definition poly-int-types.h:28
poly_int< NUM_POLY_INT_COEFFS, HOST_WIDE_INT > poly_int64
Definition poly-int-types.h:24
i
Definition poly-int.h:776
Ca const poly_int< N, Cb > & b
Definition poly-int.h:771
Ca & a
Definition poly-int.h:770
signop
Definition signop.h:28
#define PASS_MEM_STAT
Definition statistics.h:54
#define CXX_MEM_STAT_INFO
Definition statistics.h:58
Definition tree-loop-distribution.cc:240
Definition lra-remat.cc:91
Definition genautomata.cc:499
Definition double-int.h:50
Definition hash-traits.h:328
Definition hash-traits.h:321
tree signed_type
Definition tree.h:6923
tree unsigned_type
Definition tree.h:6924
poly_coeff_traits< T >::int_type int_type
Definition poly-int.h:198
Definition hash-map-traits.h:104
Definition hash-map-traits.h:33
static hashval_t hash(tree)
Definition tree.h:6188
static bool equal(tree_decl_map *a, tree_decl_map *b)
Definition tree.h:6142
static hashval_t hash(tree_decl_map *m)
Definition tree.h:6140
static int keep_cache_entry(tree_decl_map *&m)
Definition tree.h:6148
static hashval_t hash(tree)
Definition tree.h:6226
Definition tree-core.h:1605
static hashval_t hash(tree)
Definition tree.h:6214
static hashval_t hash(tree)
Definition tree.h:6200
static hashval_t hash(tree_vec_map *m)
Definition tree.h:6164
static bool equal(tree_vec_map *a, tree_vec_map *b)
Definition tree.h:6167
static int keep_cache_entry(tree_vec_map *&m)
Definition tree.h:6173
Definition gengtype.h:252
static const bool is_sign_extended
Definition tree.h:6515
static const unsigned int precision
Definition tree.h:6517
static const bool needs_write_val_arg
Definition tree.h:6516
static const bool host_dependent_precision
Definition tree.h:6514
static enum precision_type precision_type
Definition tree.h:6513
static enum precision_type precision_type
Definition tree.h:6487
static const bool is_sign_extended
Definition tree.h:6489
static const bool needs_write_val_arg
Definition tree.h:6490
static const bool host_dependent_precision
Definition tree.h:6488
Definition wide-int.h:427
generic_wide_int< extended_tree< N > > extended
Definition tree.h:6557
static extended zero(const extended &)
static extended zero(const extended &)
generic_wide_int< extended_tree< N > > extended
Definition tree.h:6550
generic_wide_int< unextended_tree > unextended
Definition tree.h:6564
static unextended zero(const unextended &)
Definition wide-int.h:2043
static int zero(const T &)
Definition wide-int.h:2044
#define NULL
Definition system.h:50
#define gcc_assert(EXPR)
Definition system.h:820
#define gcc_unreachable()
Definition system.h:847
#define true
Definition system.h:893
#define WARN_UNUSED_RESULT
Definition system.h:839
#define STATIC_ASSERT(X)
Definition system.h:870
#define DEBUG_FUNCTION
Definition system.h:1192
#define gcc_checking_assert(EXPR)
Definition system.h:827
tree(* walk_tree_fn)(tree *, int *, void *)
Definition tree-core.h:1115
@ END_BUILTINS
Definition tree-core.h:3617
omp_clause_code
Definition tree-core.h:256
built_in_class
Definition tree-core.h:173
@ NOT_BUILT_IN
Definition tree-core.h:174
@ BUILT_IN_FRONTEND
Definition tree-core.h:175
@ BUILT_IN_NORMAL
Definition tree-core.h:177
@ BUILT_IN_MD
Definition tree-core.h:176
tree_code_class
Definition tree-core.h:232
@ tcc_comparison
Definition tree-core.h:239
@ tcc_expression
Definition tree-core.h:246
@ tcc_type
Definition tree-core.h:236
tree_node_structure_enum
Definition tree-core.h:616
unsigned short priority_type
Definition tree-core.h:1112
@ MAX_TREE_CODES
Definition tree-core.h:157
clobber_kind
Definition tree-core.h:1084
@ CLOBBER_UNDEF
Definition tree-core.h:1086
#define NUM_TREE_CODES
Definition tree-core.h:164
tree(* walk_tree_lh)(tree *, int *, tree(*)(tree *, int *, void *), void *, hash_set< tree > *)
Definition tree-core.h:1118
int suppress_location_wrappers
Definition tree.cc:15031
bool disjoint_version_decls(tree fn1, tree fn2)
Definition tree.cc:15635
string_slice get_target_version(const tree decl)
Definition tree.cc:15613
tree arg_size_in_bytes(const_tree type)
Definition tree.cc:15201
poly_int64 tree_to_poly_int64(const_tree t)
Definition tree.cc:3452
bool tree_fits_poly_int64_p(const_tree t)
Definition tree.cc:6614
bool flexible_array_type_p(const_tree type)
Definition tree.cc:15164
tree get_attr_nonstring_decl(tree expr, tree *ref)
Definition tree.cc:15510
bool tree_fits_uhwi_p(const_tree t)
Definition tree.cc:6633
unsigned const char omp_clause_num_ops[]
Definition tree.cc:297
tree build_zero_cst(tree type)
Definition tree.cc:2781
bool default_is_empty_record(const_tree type)
Definition tree.cc:15130
bool tree_fits_shwi_p(const_tree t)
Definition tree.cc:6603
bool nonnull_arg_p(const_tree arg)
Definition tree.cc:14886
tree make_tree_vec(int len MEM_STAT_DECL)
Definition tree.cc:2944
auto_vec< string_slice > get_clone_attr_versions(const tree arglist, int *default_count, bool filter)
Definition tree.cc:15565
location_t set_block(location_t loc, tree block)
Definition tree.cc:14949
tree unshare_expr(tree expr)
Definition tree.cc:16003
bool expr_type_first_operand_type_p(tree_code code)
Definition tree.cc:15210
const builtin_structptr_type builtin_structptr_types[6]
Definition tree.cc:15291
auto_vec< string_slice > get_clone_versions(const tree decl, int *default_count, bool filter)
Definition tree.cc:15599
HOST_WIDE_INT arg_int_size_in_bytes(const_tree type)
Definition tree.cc:15193
bool diagnose_versioned_decls(tree old_decl, tree new_decl)
Definition tree.cc:15760
bool is_empty_type(const_tree type)
Definition tree.cc:15108
bool tree_fits_poly_uint64_p(const_tree t)
Definition tree.cc:6644
location_t set_source_range(tree expr, location_t start, location_t finish)
Definition tree.cc:14959
void copy_if_shared(tree *tp, void *data)
Definition tree.cc:15993
unsigned HOST_WIDE_INT tree_to_uhwi(const_tree t)
Definition tree.cc:6687
struct int_n_trees_t int_n_trees[NUM_INT_N_ENTS]
Definition tree.cc:292
bool tree_contains_struct[MAX_TREE_CODES][64]
Definition tree.cc:294
poly_uint64 tree_to_poly_uint64(const_tree t)
Definition tree.cc:3461
tree unshare_expr_without_location(tree expr)
Definition tree.cc:16025
sanitize_code_type tree_to_sanitize_code_type(const_tree t)
Definition tree.cc:6698
unsigned fndecl_dealloc_argno(tree fndecl)
Definition tree.cc:15448
bool flexible_array_member_type_p(const_tree type)
Definition tree.cc:15148
HOST_WIDE_INT int_size_in_bytes(const_tree)
Definition tree.cc:3753
void decl_value_expr_insert(tree, tree)
Definition tree.cc:6138
int suppress_location_wrappers
Definition tree.cc:15031
void overwrite_decl_assembler_name(tree decl, tree name)
Definition tree.cc:864
void get_type_static_bounds(const_tree, mpz_t, mpz_t)
Definition tree.cc:8516
bool check_lang_type(const_tree cand, const_tree base)
Definition tree.cc:5691
special_array_member component_ref_sam_type(tree)
Definition tree.cc:13458
bool type_list_equal(const_tree, const_tree)
Definition tree.cc:6507
void build_common_tree_nodes(bool)
Definition tree.cc:9675
#define TYPE_NAME(NODE)
Definition tree.h:2443
bool is_lang_specific(const_tree t)
Definition tree.h:6266
tree strip_array_types(tree type)
Definition tree.h:5206
tree build_pointer_type(tree)
Definition tree.cc:7258
tree function_args_iter_cond(function_args_iterator *i)
Definition tree.h:5712
tree wide_int_to_tree(tree type, const poly_wide_int_ref &cst)
Definition tree.cc:2007
#define TREE_VALUE(NODE)
Definition tree.h:1252
poly_uint64 bit_field_offset(const_tree t)
Definition tree.h:5920
tree build4(enum tree_code, tree, tree, tree, tree, tree CXX_MEM_STAT_INFO)
tree build_vl_exp(enum tree_code, int CXX_MEM_STAT_INFO)
tree make_anon_name()
Definition tree.cc:9075
tree build3(enum tree_code, tree, tree, tree, tree CXX_MEM_STAT_INFO)
tree build_bitint_type(unsigned HOST_WIDE_INT, int)
Definition tree.cc:7416
tree build_constructor_from_vec(tree, const vec< tree, va_gc > *)
Definition tree.cc:2444
#define COMPLETE_TYPE_P(NODE)
Definition tree.h:721
unsigned int element_precision(const_tree)
Definition tree.cc:7026
const char * get_name(tree)
Definition tree.cc:12068
#define DECL_CONTEXT(NODE)
Definition tree.h:2935
bool operation_can_overflow(enum tree_code)
Definition tree.cc:7117
int allocate_decl_uid(void)
Definition tree.cc:1311
enum tree_code tree_code_for_canonical_type_merging(enum tree_code code)
Definition tree.h:6083
tree build_pointer_type_for_mode(tree, machine_mode, bool)
Definition tree.cc:7194
#define target_option_default_node
Definition tree.h:4825
tree make_omp_iterator(void)
Definition tree.h:7216
tree unsigned_type_for(tree)
Definition tree.cc:11467
#define DECL_ORIGINAL_TYPE(NODE)
Definition tree.h:3768
tree num_ending_zeros(const_tree)
Definition tree.cc:11630
tree signed_type_for(tree)
Definition tree.cc:11478
int tree_floor_log2(const_tree)
Definition tree.cc:3175
const char * prefix_for_internal_label(tree label)
Definition tree.cc:839
tree build_int_cst_type(tree, poly_int64)
Definition tree.cc:1664
bool operation_no_trapping_overflow(tree, enum tree_code)
Definition tree.cc:7147
tree make_tree(tree, rtx)
Definition expmed.cc:5494
tree build_block(tree, tree, tree, tree)
Definition tree.cc:5634
unsigned int tree_decl_map_hash(const void *)
Definition tree.cc:6001
tree max_object_size()
Definition tree.cc:15304
poly_uint64 TYPE_VECTOR_SUBPARTS(const_tree node)
Definition tree.h:4450
tree build_vector_type(tree, poly_int64)
Definition tree.cc:10507
#define optimization_default_node
Definition tree.h:4821
#define TREE_READONLY(NODE)
Definition tree.h:965
tree build_function_type_list(tree,...)
Definition tree.cc:7826
tree build_omp_clause(location_t, enum omp_clause_code)
Definition tree.cc:11012
#define DECL_FUNCTION_SPECIFIC_TARGET(NODE)
Definition tree.h:3721
tree build_minus_one_cst(tree)
Definition tree.cc:2740
tree size_in_bytes_loc(location_t, const_tree)
Definition tree.cc:3730
cst_size_error
Definition tree.h:5227
@ cst_size_too_big
Definition tree.h:5231
@ cst_size_not_constant
Definition tree.h:5229
@ cst_size_ok
Definition tree.h:5228
@ cst_size_overflow
Definition tree.h:5232
@ cst_size_negative
Definition tree.h:5230
tree get_containing_scope(const_tree)
Definition tree.cc:8713
tree build_vec_series(tree, tree, tree)
Definition tree.cc:2283
#define call_expr_nargs(NODE)
Definition tree.h:1520
tree build_nonstandard_integer_type(unsigned HOST_WIDE_INT, int)
Definition tree.cc:7352
tree get_narrower(tree, int *)
Definition tree.cc:8306
#define DECL_FIELD_BIT_OFFSET(NODE)
Definition tree.h:3213
tree obj_type_ref_class(const_tree ref, bool=false)
Definition ipa-devirt.cc:1987
bool tree_int_cst_lt(const_tree t1, const_tree t2)
Definition tree.h:6880
tree build1(enum tree_code, tree, tree CXX_MEM_STAT_INFO)
bool real_zerop(const_tree)
Definition tree.cc:3299
built_in_function as_builtin_fn(combined_fn code)
Definition tree.h:55
bool really_constant_p(const_tree)
Definition tree.cc:3411
bool needs_to_live_in_memory(const_tree)
Definition tree.cc:11375
#define TYPE_PRECISION(NODE)
Definition tree.h:2440
tree build_method_type_directly(tree, tree, tree)
Definition tree.cc:7899
bool zerop(const_tree)
Definition tree.cc:2985
#define TREE_INT_CST_NUNITS(NODE)
Definition tree.h:1168
unsigned int vector_cst_encoded_nelts(const_tree t)
Definition tree.h:4862
built_in_function DECL_FUNCTION_CODE(const_tree decl)
Definition tree.h:4525
tree drop_tree_overflow(tree)
Definition tree.cc:13088
#define EXPR_CHECK(T)
Definition tree.h:501
tree build_offset_type(tree, tree)
Definition tree.cc:7975
tree build_alloca_call_expr(tree, unsigned int, HOST_WIDE_INT)
Definition tree.cc:11285
bool integer_all_onesp(const_tree)
Definition tree.cc:3061
#define TREE_OPERAND(NODE, I)
Definition tree.h:1336
tree maybe_build_call_expr_loc(location_t, combined_fn, tree, int,...)
Definition tree.cc:11246
unsigned crc32_unsigned_n(unsigned, unsigned, unsigned)
Definition tree.cc:9013
tree build_varargs_function_type_list(tree,...)
Definition tree.cc:7843
tree build_call_expr_loc_vec(location_t, tree, vec< tree, va_gc > *)
Definition tree.cc:11161
int tree_int_cst_sgn(const_tree)
Definition tree.cc:6719
poly_uint64 bit_field_size(const_tree t)
Definition tree.h:5911
bool poly_int_tree_p(const_tree t, poly_int64 *value)
Definition tree.h:5242
void free_node(tree)
Definition tree.cc:1435
#define DECL_NAME(NODE)
Definition tree.h:2883
bool canonical_type_used_p(const_tree t)
Definition tree.h:6113
tree build_optimization_node(struct gcc_options *opts, struct gcc_options *opts_set)
Definition tree.cc:12260
tree save_expr(tree)
Definition tree.cc:4128
tree build_constructor_from_list(tree, tree)
Definition tree.cc:2424
void protected_set_expr_location(tree, location_t)
Definition tree.cc:5651
const char * get_tree_code_name(enum tree_code)
Definition tree.cc:13069
tree make_expanded_omp_iterator(void)
Definition tree.h:7223
tree decl_function_context(const_tree)
Definition tree.cc:8737
priority_type decl_init_priority_lookup(tree)
Definition tree.cc:6009
void decl_init_priority_insert(tree, priority_type)
Definition tree.cc:6035
#define IS_EXPR_CODE_CLASS(CLASS)
Definition tree.h:294
void put_warning_spec(tree, unsigned)
Definition warning-control.cc:280
HOST_WIDE_INT max_int_size_in_bytes(const_tree)
Definition tree.cc:3773
tree build_reference_type(tree)
Definition tree.cc:7330
bool tree_invariant_p(tree)
Definition tree.cc:4099
tree tree_last(tree)
Definition tree.cc:3628
void recompute_constructor_flags(tree)
Definition tree.cc:2346
tree byte_position(const_tree)
Definition tree.cc:3816
tree build_vector_from_ctor(tree, const vec< constructor_elt, va_gc > *)
Definition tree.cc:2198
tree signed_or_unsigned_type_for(int, tree)
Definition tree.cc:11415
tree build4_loc(location_t loc, enum tree_code code, tree type, tree arg0, tree arg1, tree arg2, tree arg3 CXX_MEM_STAT_INFO)
Definition tree.h:4988
void decl_fini_priority_insert(tree, priority_type)
Definition tree.cc:6055
bool type_with_interoperable_signedness(const_tree)
Definition tree.cc:14055
tree build_call_valist(tree, tree, int, va_list)
Definition tree.cc:11080
tree build_replicated_int_cst(tree, unsigned, HOST_WIDE_INT)
tree build_truth_vector_type_for_mode(poly_uint64, machine_mode)
Definition tree.cc:10515
void DEBUG_FUNCTION verify_type(const_tree t)
Definition tree.cc:14428
tree build_debug_expr_decl(tree type)
Definition tree.cc:5588
bool block_may_fallthru(const_tree)
Definition tree.cc:12976
int struct_ptr_eq(const void *a, const void *b)
Definition tree.h:5820
bool contains_placeholder_p(const_tree)
Definition tree.cc:4284
#define DECL_FUNCTION_SPECIFIC_OPTIMIZATION(NODE)
Definition tree.h:3726
#define AGGREGATE_TYPE_P(TYPE)
Definition tree.h:706
int tree_map_base_eq(const void *, const void *)
Definition tree.cc:5965
#define sizetype
Definition tree.h:5340
bool maybe_special_function_p(const_tree fndecl)
Definition tree.h:6396
tree * function_args_iter_cond_ptr(function_args_iterator *i)
Definition tree.h:5703
#define TREE_VEC_BEGIN(NODE)
Definition tree.h:1262
tree build_array_type_nelts(tree, poly_uint64)
Definition tree.cc:7645
bool ptrofftype_p(tree type)
Definition tree.h:5881
tree first_call_expr_arg(tree exp, call_expr_arg_iterator *iter)
Definition tree.h:6233
bool address_invariant_p(tree)
Definition tree.cc:4040
void tree_set_block(tree, tree)
Definition tree.cc:12035
combined_fn get_call_combined_fn(const_tree)
Definition tree.cc:8900
enum tree_node_structure_enum tree_node_structure(const_tree)
Definition tree.cc:4244
bool int_divide_or_mod_p(const code_helper &code)
Definition tree.h:5849
tree ssa_uniform_vector_p(tree)
Definition tree.cc:10867
tree build_case_label(tree, tree, tree)
Definition tree.cc:2902
tree build2_loc(location_t loc, enum tree_code code, tree type, tree arg0, tree arg1 CXX_MEM_STAT_INFO)
Definition tree.h:4968
#define TREE_INT_CST_LOW(NODE)
Definition tree.h:1173
tree build_vector_type_for_mode(tree, machine_mode)
Definition tree.cc:10472
tree builtin_decl_unreachable()
Definition tree.cc:11313
int simple_cst_equal(const_tree, const_tree)
Definition tree.cc:6763
bitmap get_nonnull_args(const_tree)
Definition tree.cc:15053
enum tls_model decl_tls_model(const_tree)
Definition tree.cc:1059
tree array_type_nelts_top(tree)
Definition tree.cc:3873
bool tree_map_base_marked_p(const void *)
Definition tree.cc:5985
bool tree_zero_one_valued_p(tree)
unsigned int tree_int_cst_min_precision(tree, signop)
Definition tree.cc:6735
tree block_ultimate_origin(const_tree)
Definition tree.cc:12328
tree build3_loc(location_t loc, enum tree_code code, tree type, tree arg0, tree arg1, tree arg2 CXX_MEM_STAT_INFO)
Definition tree.h:4978
tree build_variant_type_copy(tree CXX_MEM_STAT_INFO)
#define TREE_OPTIMIZATION(NODE)
Definition tree.h:3798
tree build_nonshared_array_type(tree, tree)
Definition tree.cc:7636
bool warn_deprecated_use(tree, tree)
Definition tree.cc:12730
tree build_empty_stmt(location_t)
Definition tree.cc:11000
bool inlined_function_outer_scope_p(const_tree block)
Definition tree.h:5731
tree build_array_type_1(tree, tree, bool, bool, bool)
Definition tree.cc:7571
poly_int64 tree_to_poly_int64(const_tree) ATTRIBUTE_NONNULL(1) ATTRIBUTE_PURE
Definition tree.cc:3452
void function_args_iter_init(function_args_iterator *i, const_tree fntype)
Definition tree.h:5694
#define tree_decl_map_eq
Definition tree.h:6134
bool tree_fits_uhwi_p(const_tree) ATTRIBUTE_PURE
Definition tree.cc:6633
bool builtin_fn_p(combined_fn code)
Definition tree.h:46
bool commutative_ternary_tree_code(enum tree_code)
Definition genmatch.cc:1074
tree build_function_type_array(tree, int, tree *)
Definition tree.cc:7878
location_t * block_nonartificial_location(tree)
Definition tree.cc:12137
bool type_has_mode_precision_p(const_tree t)
Definition tree.h:7014
bool typedef_variant_p(const_tree type)
Definition tree.h:5810
ATTRIBUTE_WARN_UNUSED_RESULT tree protected_set_expr_location_unshare(tree, location_t)
Definition fold-const.cc:254
bool commutative_tree_code(enum tree_code)
Definition genmatch.cc:1037
bool integer_truep(const_tree)
Definition tree.cc:3138
tree create_artificial_label(location_t)
Definition tree.cc:12052
void assign_assembler_name_if_needed(tree)
Definition tree.cc:953
tree decl_value_expr_lookup(tree)
Definition tree.cc:6124
void function_args_iter_next(function_args_iterator *i)
Definition tree.h:5719
#define TREE_CODE_CLASS(CODE)
Definition tree.h:203
HOST_WIDE_INT int_bit_position(const_tree field)
Definition tree.h:6936
hashval_t struct_ptr_hash(const void *a)
Definition tree.h:5828
bool desired_pro_or_demotion_p(const_tree to_type, const_tree from_type)
Definition tree.h:6988
tree bit_position(const_tree)
Definition tree.cc:3806
bool decl_address_invariant_p(const_tree)
Definition tree.cc:3957
tree build_poly_int_cst(tree, const poly_wide_int_ref &)
Definition tree.cc:1981
unsigned crc32_string(unsigned, const char *)
Definition tree.cc:9043
tree build_tree_list(tree, tree CXX_MEM_STAT_INFO)
#define BLOCK_SOURCE_LOCATION(NODE)
Definition tree.h:2412
constexpr opt_code all_warnings
Definition tree.h:7143
bool real_minus_onep(const_tree)
Definition tree.cc:3358
unsigned HOST_WIDE_INT tree_to_uhwi(const_tree) ATTRIBUTE_NONNULL(1) ATTRIBUTE_PURE
Definition tree.cc:6687
vec< tree, va_gc > ** decl_debug_args_lookup(tree)
Definition tree.cc:6155
tree skip_simple_constant_arithmetic(tree)
Definition tree.cc:4216
void set_decl_tls_model(tree, enum tls_model)
Definition tree.cc:1069
bool valid_constant_size_p(const_tree, cst_size_error *=NULL)
Definition tree.cc:6978
#define DECL_UNCHECKED_FUNCTION_CODE(NODE)
Definition tree.h:3027
tree first_field(const_tree) ATTRIBUTE_NONNULL(1)
Definition tree.cc:3569
bool tree_fits_shwi_p(const_tree) ATTRIBUTE_PURE
Definition tree.cc:6603
void clean_symbol_name(char *)
Definition tree.cc:9055
void SET_TYPE_VECTOR_SUBPARTS(tree node, poly_uint64 subparts)
Definition tree.h:4472
const_tree get_ultimate_context(const_tree)
Definition tree.cc:8721
bool auto_var_p(const_tree)
Definition tree.cc:8545
tree stabilize_reference(tree)
Definition tree.cc:5015
void using_eh_for_cleanups(void)
Definition tree.cc:13055
tree tree_strip_any_location_wrapper(tree exp)
Definition tree.h:4608
tree build_fn_decl(const char *, tree)
Definition tree.cc:5600
bool error_operand_p(const_tree t)
Definition tree.h:4853
tree sign_mask_for(tree)
Definition tree.cc:2852
tree build5_loc(location_t loc, enum tree_code code, tree type, tree arg0, tree arg1, tree arg2, tree arg3, tree arg4 CXX_MEM_STAT_INFO)
Definition tree.h:4998
unsigned int tree_map_hash(const void *)
Definition tree.cc:5993
size_t tree_size(const_tree)
Definition tree.cc:1201
tree lhd_gcc_personality(void)
Definition tree.cc:12539
void set_decl_built_in_function(tree decl, built_in_class fclass, unsigned int fcode)
Definition tree.h:4557
tree vector_cst_elt(const_tree, unsigned int)
Definition tree.cc:10614
bool more_call_expr_args_p(const call_expr_arg_iterator *iter)
Definition tree.h:6249
bool integer_minus_onep(const_tree)
Definition tree.cc:3086
#define IDENTIFIER_LENGTH(NODE)
Definition tree.h:1236
bool tree_fits_sanitize_code_type_p(const_tree) ATTRIBUTE_PURE
Definition tree.cc:6663
bool built_in_function_equal_p(built_in_function name0, built_in_function name1)
Definition tree.h:7022
bool is_truth_type_for(tree, tree)
Definition tree.cc:11491
tree type_argument_type(const_tree, unsigned) ATTRIBUTE_NONNULL(1)
Definition tree.cc:6548
#define TYPE_UNSIGNED(NODE)
Definition tree.h:980
size_t tree_code_size(enum tree_code)
Definition tree.cc:1088
tree build_complex_type(tree, bool named=false)
Definition tree.cc:8021
#define TREE_CODE(NODE)
Definition tree.h:325
tree build_aligned_type(tree, unsigned int)
Definition tree.cc:5885
bool integer_each_onep(const_tree)
Definition tree.cc:3045
tree build_vector_from_val(tree, tree)
Definition tree.cc:2232
bool handled_component_p(const_tree t)
Definition tree.h:5594
#define TYPE_MODE(NODE)
Definition tree.h:2449
tree cache_integer_cst(tree, bool might_duplicate=false)
Definition tree.cc:2022
tree build_function_type(tree, tree, bool=false)
Definition tree.cc:7732
tree build_real_from_int_cst(tree, const_tree)
Definition tree.cc:2579
tree skip_simple_arithmetic(tree)
Definition tree.cc:4169
tree build_each_one_cst(tree)
Definition tree.cc:2672
tree uniform_vector_p(const_tree)
Definition tree.cc:10818
tree array_ref_up_bound(tree)
Definition tree.cc:13211
unsigned crc32_byte(unsigned chksum, char byte)
Definition tree.h:5761
bool integer_zerop(const_tree)
Definition tree.cc:2996
tree build_complex_inf(tree, bool)
Definition tree.cc:2659
tree tree_strip_sign_nop_conversions(tree)
Definition tree.cc:12438
tree decl_comdat_group_id(const_tree)
Definition tree.cc:991
tree build_clobber(tree, enum clobber_kind=CLOBBER_UNDEF)
Definition tree.cc:2478
tree build_string(unsigned, const char *=NULL)
Definition tree.cc:2612
#define TYPE_SIGN(NODE)
Definition tree.h:983
bool builtin_decl_declared_p(enum built_in_function fncode)
Definition tree.h:6376
generic_wide_int< wi::extended_tree< WIDEST_INT_MAX_PRECISION *2 > > widest2_int_cst
Definition tree.h:6572
tree component_ref_size(tree, special_array_member *=NULL)
Definition tree.cc:13531
tree make_node(enum tree_code CXX_MEM_STAT_INFO)
void build_common_builtin_nodes(void)
Definition tree.cc:10078
tree build_builtin_unreachable(location_t)
Definition tree.cc:11331
bool array_ref_flexible_size_p(tree, bool *=NULL)
Definition tree.cc:13245
const char * combined_fn_name(combined_fn)
Definition tree.cc:15036
bool truth_value_p(enum tree_code code)
Definition tree.h:5870
int DECL_FE_FUNCTION_CODE(const_tree decl)
Definition tree.h:4547
#define FUNCTION_DECL_DECL_TYPE(NODE)
Definition tree.h:3555
unsigned int tree_ctz(const_tree)
Definition tree.cc:3187
#define EXPR_LOCATION(NODE)
Definition tree.h:1361
int tree_int_cst_sign_bit(const_tree)
Definition tree.cc:6707
source_range get_expr_source_range(tree expr)
Definition tree.h:1386
#define POINTER_TYPE_P(TYPE)
Definition tree.h:713
tree build_vector_a_then_b(tree, unsigned int, tree, tree)
Definition tree.cc:2329
unsigned int tree_map_base_hash(const void *)
Definition tree.cc:5975
bool decl_address_ip_invariant_p(const_tree)
Definition tree.cc:3994
tree get_typenode_from_name(const char *)
Definition tree.cc:15252
#define CAN_HAVE_LOCATION_P(NODE)
Definition tree.h:1383
#define TREE_TARGET_OPTION(NODE)
Definition tree.h:3812
void find_placeholder_in_expr(tree, vec< tree > *)
Definition tree.cc:4486
#define SSA_NAME_VERSION(NODE)
Definition tree.h:2290
tree decl_type_context(const_tree)
Definition tree.cc:8773
#define TYPE_P(NODE)
Definition tree.h:227
location_t tree_inlined_location(tree, bool=true)
Definition tree.cc:12186
bool operand_equal_for_phi_arg_p(const_tree, const_tree)
Definition tree.cc:11618
tree component_ref_field_offset(tree)
Definition tree.cc:13403
hashval_t iterative_hash_expr(const_tree tree, hashval_t seed)
Definition tree.h:5950
tree upper_bound_in_type(tree, tree)
Definition tree.cc:11532
tree generate_internal_label(const char *)
Definition tree.cc:817
tree build_call_nary(tree return_type, tree fn, int nargs, T... args)
Definition tree.h:5071
tree uniform_integer_cst_p(tree)
Definition tree.cc:10893
void set_decl_section_name(tree, const char *)
Definition tree.cc:1013
const_tree first_const_call_expr_arg(const_tree exp, const_call_expr_arg_iterator *iter)
Definition tree.h:6240
void set_builtin_decl_implicit_p(enum built_in_function fncode, bool implicit_p)
Definition tree.h:6328
tree decl_comdat_group(const_tree)
Definition tree.cc:981
void recompute_tree_invariant_for_addr_expr(tree)
Definition tree.cc:5096
tree strip_float_extensions(tree)
Definition tree.cc:12447
unsigned get_warning_spec(const_tree)
Definition warning-control.cc:271
tree reconstruct_complex_type(tree, tree)
Definition tree.cc:10419
tree staticp(tree)
Definition tree.cc:3886
tree build_range_type(tree, tree, tree)
Definition tree.cc:7496
void tree_cc_finalize(void)
Definition tree.cc:16034
vec< tree, va_gc > ** decl_debug_args_insert(tree)
Definition tree.cc:6173
#define TREE_CHAIN(NODE)
Definition tree.h:512
bool variably_modified_type_p(tree, tree)
Definition tree.cc:8598
bool builtin_decl_implicit_p(enum built_in_function fncode)
Definition tree.h:6364
tree build_all_ones_cst(tree)
Definition tree.cc:2725
bool fndecl_built_in_p(const_tree node)
Definition tree.h:7043
tree build_call_expr_internal_loc_array(location_t, enum internal_fn, tree, int, const tree *)
bool initializer_zerop(const_tree, bool *=NULL)
Definition tree.cc:10645
tree builtin_decl_explicit(enum built_in_function fncode)
Definition tree.h:6284
bool vec_member(const_tree, vec< tree, va_gc > *)
Definition tree.cc:3502
tree strip_zero_offset_components(tree)
Definition tree.cc:12525
#define VL_EXP_CLASS_P(NODE)
Definition tree.h:278
bool stdarg_p(const_tree)
Definition tree.cc:12098
tree build_complex(tree, tree, tree)
Definition tree.cc:2640
location_t tree_nonartificial_location(tree)
Definition tree.cc:12170
tree build_constructor_va(tree, int,...)
Definition tree.cc:2458
bool tree_nop_conversion_p(const_tree, const_tree)
Definition tree.cc:12347
#define IDENTIFIER_POINTER(NODE)
Definition tree.h:1238
tree walk_tree_without_duplicates_1(tree *, walk_tree_fn, void *, walk_tree_lh)
Definition tree.cc:12012
tree value_member(tree, tree)
Definition tree.cc:3473
#define BUILTIN_VALID_P(FNCODE)
Definition tree.h:6272
tree grow_tree_vec(tree v, int CXX_MEM_STAT_INFO)
int type_num_arguments(const_tree)
Definition tree.cc:6527
bool valid_new_delete_pair_p(tree, tree, bool *=NULL)
Definition tree.cc:15351
constexpr opt_code no_warning
Definition tree.h:7141
#define POLY_INT_CST_P(NODE)
Definition tree.h:1178
void dump_tree_statistics(void)
Definition tree.cc:8945
#define TYPE_REVERSE_STORAGE_ORDER(NODE)
Definition tree.h:1119
tree vector_element_bits_tree(const_tree)
Definition tree.cc:13790
tree build_reference_type_for_mode(tree, machine_mode, bool)
Definition tree.cc:7266
#define TREE_STATIC(NODE)
Definition tree.h:785
int tree_int_cst_compare(const_tree t1, const_tree t2)
Definition tree.h:6899
tree builtin_decl_implicit(enum built_in_function fncode)
Definition tree.h:6293
bool integer_nonzerop(const_tree)
Definition tree.cc:3121
void set_call_expr_flags(tree, int)
Definition tree.cc:10007
#define CALL_EXPR_ARG(NODE, I)
Definition tree.h:1519
int DECL_MD_FUNCTION_CODE(const_tree decl)
Definition tree.h:4536
#define ANY_INTEGRAL_TYPE_P(TYPE)
Definition tree.h:630
tree build_opaque_vector_type(tree, poly_int64)
Definition tree.cc:10559
void set_builtin_decl(enum built_in_function fncode, tree decl, bool implicit_p)
Definition tree.h:6313
tree get_binfo_at_offset(tree, poly_int64, tree)
Definition tree.cc:12595
bool ptrdiff_tree_p(const_tree, poly_int64 *)
Definition tree.cc:3428
tree decl_assembler_name(tree)
Definition tree.cc:852
tree build_constructor_single(tree, tree, tree)
Definition tree.cc:2409
tree force_fit_type(tree, const poly_wide_int_ref &, int, bool)
Definition tree.cc:1695
#define TREE_INT_CST_ELT(NODE, I)
Definition tree.h:1172
tree tree_cons(tree, tree, tree CXX_MEM_STAT_INFO)
bool real_onep(const_tree)
Definition tree.cc:3332
bool initializer_each_zero_or_onep(const_tree)
Definition tree.cc:10779
#define DECL_EXTERNAL(NODE)
Definition tree.h:3072
bool builtin_decl_explicit_p(enum built_in_function fncode)
Definition tree.h:6355
tree size_in_bytes(const_tree t)
Definition tree.h:5327
tree build_nonstandard_boolean_type(unsigned HOST_WIDE_INT)
Definition tree.cc:7391
cl_target_option * target_opts_for_fn(const_tree fndecl)
Definition tree.h:6448
bool location_wrapper_p(const_tree exp)
Definition tree.h:4588
machine_mode element_mode(const_tree)
Definition tree.cc:13726
bool real_maybe_zerop(const_tree)
Definition tree.cc:3382
tree last_field(const_tree) ATTRIBUTE_NONNULL(1)
Definition tree.cc:3581
#define TREE_TYPE(NODE)
Definition tree.h:513
tree bitmask_inv_cst_vector_p(tree)
Definition tree.cc:10914
#define VL_EXP_OPERAND_LENGTH(NODE)
Definition tree.h:1343
#define INTEGRAL_TYPE_P(TYPE)
Definition tree.h:614
machine_mode vector_type_mode(const_tree)
Definition tree.cc:13745
bool fndecl_builtin_alloc_p(const_tree node)
Definition tree.h:7082
tree type_hash_canon(unsigned int, tree)
Definition tree.cc:6429
tree build0(enum tree_code, tree CXX_MEM_STAT_INFO)
void copy_decl_built_in_function(tree newdecl, const_tree olddecl)
Definition tree.h:4568
tree build_uniform_cst(tree, tree)
Definition tree.cc:2270
#define DECL_BUILT_IN_CLASS(NODE)
Definition tree.h:3712
tree nreverse(tree)
Definition tree.cc:3641
tree build_call_array_loc(location_t, tree, tree, int, const tree *)
Definition tree.cc:11114
tree array_type_nelts_minus_one(const_tree)
Definition tree.cc:3836
bool reverse_storage_order_for_component_p(tree t)
Definition tree.h:5615
#define TREE_CODE_LENGTH(CODE)
Definition tree.h:302
tree build_zero_cst(tree)
Definition tree.cc:2781
tree purpose_member(const_tree, tree)
Definition tree.cc:3488
bool find_tree(tree, tree)
Definition tree.cc:15340
tree build_call(tree, tree, std::initializer_list< tree >)
Definition tree.cc:11096
bool cst_and_fits_in_hwi(const_tree)
Definition tree.cc:2162
tree unsigned_integer_tree_node_for_type(const char *)
Definition tree.cc:9620
bool int_fits_type_p(const_tree, const_tree) ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_PURE
Definition tree.cc:8417
bool tree_fits_poly_uint64_p(const_tree) ATTRIBUTE_PURE
Definition tree.cc:6644
tree build_int_cst(tree, poly_int64)
Definition tree.cc:1644
unsigned int vector_element_bits(const_tree)
Definition tree.cc:13778
tree build_int_cstu(tree type, poly_uint64)
Definition tree.cc:1656
#define TREE_PUBLIC(NODE)
Definition tree.h:875
bool check_base_type(const_tree cand, const_tree base)
Definition tree.cc:5746
bool storage_order_barrier_p(const_tree t)
Definition tree.h:5653
tree chain_index(int, tree)
Definition tree.cc:3516
bool auto_var_in_fn_p(const_tree, const_tree)
Definition tree.cc:8556
int get_range_pos_neg(tree, gimple *=NULL)
Definition tree.cc:14804
tree build_index_type(tree)
Definition tree.cc:7519
bool associative_tree_code(enum tree_code)
Definition tree.cc:7040
tree build_call_expr_internal_loc(location_t, enum internal_fn, tree, int,...)
Definition tree.cc:11225
tree build_low_bits_mask(tree, unsigned)
Definition tree.cc:2150
tree build_call_expr_loc_array(location_t, tree, int, tree *)
Definition tree.cc:11148
#define TYPE_ARG_TYPES(NODE)
Definition tree.h:2724
bool integer_onep(const_tree)
Definition tree.cc:3020
HOST_WIDE_INT int_cst_value(const_tree)
Definition tree.cc:11387
bool complete_or_array_type_p(const_tree type)
Definition tree.h:5892
tree build_string_literal(unsigned, const char *=NULL, tree=char_type_node, unsigned HOST_WIDE_INT=HOST_WIDE_INT_M1U)
Definition tree.cc:11345
access_mode
Definition tree.h:6122
@ access_deferred
Definition tree.h:6127
@ access_none
Definition tree.h:6123
@ access_read_write
Definition tree.h:6126
@ access_write_only
Definition tree.h:6125
@ access_read_only
Definition tree.h:6124
tree get_qualified_type(tree, int)
Definition tree.cc:5804
wi::tree_to_poly_wide_ref poly_int_cst_value(const_tree x)
Definition tree.h:6745
bool is_access_with_size_p(const_tree)
Definition tree.cc:13702
#define EXPR_LOCATION_WRAPPER_P(NODE)
Definition tree.h:4581
bool internal_fn_p(combined_fn code)
Definition tree.h:64
#define DECL_UID(NODE)
Definition tree.h:2891
HOST_WIDE_INT tree_to_shwi(const_tree) ATTRIBUTE_NONNULL(1) ATTRIBUTE_PURE
Definition tree.cc:6676
unsigned crc32_unsigned(unsigned chksum, unsigned value)
Definition tree.h:5756
tree build_call_vec(tree, tree, const vec< tree, va_gc > *)
Definition tree.cc:11131
void init_ttree(void)
Definition tree.cc:768
tree tree_block(tree)
Definition tree.cc:12024
tree array_ref_low_bound(tree)
Definition tree.cc:13188
void decl_debug_expr_insert(tree, tree)
Definition tree.cc:6111
bool valid_vector_subparts_p(poly_uint64 subparts)
Definition tree.h:4508
tree tree_strip_nop_conversions(tree)
Definition tree.cc:12427
tree build1_loc(location_t loc, enum tree_code code, tree type, tree arg1 CXX_MEM_STAT_INFO)
Definition tree.h:4958
int tree_operand_length(const_tree node)
Definition tree.h:4378
hashval_t type_hash_canon_hash(tree)
Definition tree.cc:6198
bool type_with_alias_set_p(const_tree t)
Definition tree.h:6945
bool check_qualified_type(const_tree, const_tree, int)
Definition tree.cc:5773
tree make_int_cst(int, int CXX_MEM_STAT_INFO)
tree build_call_expr(tree, int,...)
Definition tree.cc:11190
#define REF_REVERSE_STORAGE_ORDER(NODE)
Definition tree.h:1137
bool tree_int_cst_le(const_tree t1, const_tree t2)
Definition tree.h:6889
tree build_distinct_type_copy(tree CXX_MEM_STAT_INFO)
bool types_same_for_odr(const_tree type1, const_tree type2)
Definition ipa-devirt.cc:437
tree build_varargs_function_type_array(tree, int, tree *)
Definition tree.cc:7888
tree build2(enum tree_code, tree, tree, tree CXX_MEM_STAT_INFO)
poly_uint64 tree_to_poly_uint64(const_tree) ATTRIBUTE_NONNULL(1) ATTRIBUTE_PURE
Definition tree.cc:3461
bool prototype_p(const_tree)
Definition tree.cc:12120
#define TREE_HASH(NODE)
Definition tree.h:551
tree copy_list(tree)
Definition tree.cc:1556
tree substitute_placeholder_in_expr(tree, tree)
Definition tree.cc:4752
#define ALLOCA_FUNCTION_CODE_P(FCODE)
Definition tree.h:3031
tree build_call_expr_loc(location_t, tree, int,...)
Definition tree.cc:11173
#define DECL_NONALIASED(NODE)
Definition tree.h:3512
bool trunc_or_exact_div_p(tree_code code)
Definition tree.h:5842
tree build5(enum tree_code, tree, tree, tree, tree, tree, tree CXX_MEM_STAT_INFO)
void prepare_target_option_nodes_for_pch(void)
Definition tree.cc:12317
struct cl_optimization * opts_for_fn(const_tree fndecl)
Definition tree.h:6438
bool type_contains_placeholder_p(tree)
Definition tree.cc:4440
#define VECTOR_CST_NPATTERNS(NODE)
Definition tree.h:1220
bool id_equal(const_tree id, const char *str)
Definition tree.h:4436
special_array_member
Definition tree.h:6037
@ none
Definition tree.h:6038
@ int_0
Definition tree.h:6039
@ trail_0
Definition tree.h:6040
@ trail_n
Definition tree.h:6042
@ trail_1
Definition tree.h:6041
@ int_n
Definition tree.h:6043
#define error_mark_node
Definition tree.h:4616
tree build_nt_call_vec(tree, vec< tree, va_gc > *)
Definition tree.cc:5540
bool fixed_zerop(const_tree)
Definition tree.cc:3151
tree decl_debug_expr_lookup(tree)
Definition tree.cc:6097
const_tree strip_pointer_types(const_tree type)
Definition tree.h:5217
tree build_array_type(tree, tree, bool=false)
Definition tree.cc:7627
#define TREE_VEC_END(NODE)
Definition tree.h:1263
void protected_set_expr_location_if_unset(tree, location_t)
Definition tree.cc:5667
tree build_real_from_wide(tree, const wide_int_ref &, signop)
Definition tree.cc:2594
tree build_decl(location_t, enum tree_code, tree, tree CXX_MEM_STAT_INFO)
tree truth_type_for(tree)
Definition tree.cc:11516
tree substitute_in_expr(tree, tree, tree)
Definition tree.cc:4560
tree get_unwidened(tree, tree)
Definition tree.cc:8222
bool tree_fits_poly_int64_p(const_tree) ATTRIBUTE_PURE
Definition tree.cc:6614
tree build_nt(enum tree_code,...)
Definition tree.cc:5515
tree make_tree_vec(int CXX_MEM_STAT_INFO)
#define TREE_ADDRESSABLE(NODE)
Definition tree.h:757
bool is_typedef_decl(const_tree x)
Definition tree.h:5801
bool subrange_type_for_debug_p(const_tree, tree *, tree *)
Definition tree.cc:7530
#define SET_EXPR_LOCATION(NODE, LOCUS)
Definition tree.h:1363
tree build_method_type(tree, tree)
Definition tree.cc:7961
tree make_vector(unsigned, unsigned CXX_MEM_STAT_INFO)
internal_fn as_internal_fn(combined_fn code)
Definition tree.h:73
WARN_UNUSED_RESULT tree maybe_wrap_with_location(tree, location_t)
Definition tree.cc:14993
int single_nonzero_element(const_tree)
Definition tree.cc:10969
HOST_WIDE_INT int_byte_position(const_tree)
Definition tree.cc:3827
void verify_constructor_flags(tree)
Definition tree.cc:2374
tree copy_node(tree CXX_MEM_STAT_INFO)
void error_unavailable_use(tree, tree)
Definition tree.cc:12817
bool chain_member(const_tree, const_tree)
Definition tree.cc:3526
bool using_eh_for_cleanups_p(void)
Definition tree.cc:13062
#define DECL_FIELD_OFFSET(NODE)
Definition tree.h:3207
#define VECTOR_CST_NELTS_PER_PATTERN(NODE)
Definition tree.h:1222
bool integer_pow2p(const_tree)
Definition tree.cc:3101
combined_fn as_combined_fn(built_in_function fn)
Definition tree.h:30
void set_function_decl_type(tree decl, function_decl_type t, bool set)
Definition tree.h:3562
vec< tree, va_gc > * ctor_to_vec(tree)
Definition tree.cc:3710
#define NULL_TREE
Definition tree.h:318
bool gimple_canonical_types_compatible_p(const_tree, const_tree, bool trust_type_canonical=true)
Definition tree.cc:14076
tree make_tree_binfo(unsigned CXX_MEM_STAT_INFO)
tree lower_bound_in_type(tree, tree)
Definition tree.cc:11585
tree get_base_address(tree t)
Definition tree.cc:13141
tree get_file_function_name(const char *)
Definition tree.cc:9110
priority_type decl_fini_priority_lookup(tree)
Definition tree.cc:6022
tree get_callee_fndecl(const_tree)
Definition tree.cc:8810
const_tree strip_invariant_refs(const_tree)
Definition tree.cc:12495
int list_length(const_tree)
Definition tree.cc:3543
tree build_translation_unit_decl(tree)
Definition tree.cc:5619
tree build_nonshared_range_type(tree, tree, tree)
Definition tree.cc:7504
tree double_int_to_tree(tree, double_int)
Definition tree.cc:1674
tree build_tree_list_vec(const vec< tree, va_gc > *CXX_MEM_STAT_INFO)
#define POLY_INT_CST_COEFF(NODE, I)
Definition tree.h:1182
#define VECTOR_TYPE_P(TYPE)
Definition tree.h:602
int tree_log2(const_tree)
Definition tree.cc:3163
int compare_tree_int(const_tree, unsigned HOST_WIDE_INT)
Definition tree.cc:6957
tree build_index_vector(tree, poly_uint64, poly_uint64)
Definition tree.cc:2307
tree get_ref_from_access_with_size(tree)
Definition tree.cc:13714
void set_builtin_decl_declared_p(enum built_in_function fncode, bool declared_p)
Definition tree.h:6341
tree build_target_option_node(struct gcc_options *opts, struct gcc_options *opts_set)
Definition tree.cc:12288
tree build_qualified_type(tree, int CXX_MEM_STAT_INFO)
bool is_global_var(const_tree t)
Definition tree.h:6414
#define TREE_INT_CST_EXT_NUNITS(NODE)
Definition tree.h:1170
tree build_constructor(tree, vec< constructor_elt, va_gc > *CXX_MEM_STAT_INFO)
tree array_ref_element_size(tree)
Definition tree.cc:13160
#define TYPE_UID(NODE)
Definition tree.h:2430
#define char_type_node
Definition tree.h:4838
#define TREE_OPERAND_LENGTH(NODE)
Definition tree.h:1335
tree chainon(tree, tree)
Definition tree.cc:3601
const char * decl_section_name(const_tree)
Definition tree.cc:1002
tree build_one_cst(tree)
Definition tree.cc:2687
tree walk_tree_1(tree *, walk_tree_fn, void *, hash_set< tree > *, walk_tree_lh)
Definition tree.cc:11732
bool virtual_method_call_p(const_tree, bool=false)
Definition tree.cc:12555
bool has_warning_spec(const_tree)
Definition warning-control.cc:262
bool tree_int_cst_equal(const_tree, const_tree)
Definition tree.cc:6580
bool contains_bitfld_component_ref_p(const_tree)
Definition tree.cc:12891
bool may_be_aliased(const_tree var)
Definition tree.h:6424
#define WIDEST_INT_MAX_PRECISION
Definition wide-int.h:257
generic_wide_int< wide_int_ref_storage< false > > wide_int_ref
Definition wide-int.h:353
#define OFFSET_INT_ELTS
Definition wide-int.h:281
#define ADDR_MAX_PRECISION
Definition wide-int.h:276
generic_wide_int< wide_int_storage > wide_int
Definition wide-int.h:343
const T2 & y
Definition wide-int.h:3870