Lines Matching refs:code
135 enum tree_code code = TREE_CODE (t1); in gimple_tree_eq() local
137 if (TREE_CODE (t2) != code in gimple_tree_eq()
806 enum tree_code code = TREE_CODE (*tp); in mostly_copy_tree_r() local
808 if (TREE_CODE_CLASS (code) == tcc_type in mostly_copy_tree_r()
809 || TREE_CODE_CLASS (code) == tcc_declaration in mostly_copy_tree_r()
810 || TREE_CODE_CLASS (code) == tcc_constant in mostly_copy_tree_r()
811 || code == SAVE_EXPR || code == TARGET_EXPR in mostly_copy_tree_r()
815 || code == BLOCK) in mostly_copy_tree_r()
819 gcc_assert (code != BIND_EXPR); in mostly_copy_tree_r()
840 enum tree_code code = TREE_CODE (t); in copy_if_shared_r() local
846 if (TREE_CODE_CLASS (code) == tcc_type in copy_if_shared_r()
847 || TREE_CODE_CLASS (code) == tcc_declaration in copy_if_shared_r()
848 || TREE_CODE_CLASS (code) == tcc_constant) in copy_if_shared_r()
1896 enum tree_code code; in gimplify_self_mod_expr() local
1902 code = TREE_CODE (*expr_p); in gimplify_self_mod_expr()
1904 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR in gimplify_self_mod_expr()
1905 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR); in gimplify_self_mod_expr()
1908 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR) in gimplify_self_mod_expr()
1920 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR) in gimplify_self_mod_expr()
3350 enum tree_code code = TREE_CODE (*expr_p); in gimplify_modify_expr_rhs() local
3361 = build2 (code, void_type_node, result, in gimplify_modify_expr_rhs()
3365 = build2 (code, void_type_node, unshare_expr (result), in gimplify_modify_expr_rhs()
3476 enum tree_code code, ocode; in gimplify_modify_expr_complex_part() local
3481 code = TREE_CODE (lhs); in gimplify_modify_expr_complex_part()
3484 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR; in gimplify_modify_expr_complex_part()
3488 realpart = code == REALPART_EXPR ? rhs : other; in gimplify_modify_expr_complex_part()
3489 imagpart = code == REALPART_EXPR ? other : rhs; in gimplify_modify_expr_complex_part()
4145 enum tree_code code; in gimplify_cleanup_point_expr() local
4148 code = TRY_CATCH_EXPR; in gimplify_cleanup_point_expr()
4150 code = TRY_FINALLY_EXPR; in gimplify_cleanup_point_expr()
4153 tfe = build2 (code, void_type_node, sl, NULL_TREE); in gimplify_cleanup_point_expr()
4796 enum omp_clause_code code; in gimplify_adjust_omp_clauses_1() local
4814 code = OMP_CLAUSE_PRIVATE; in gimplify_adjust_omp_clauses_1()
4832 code = OMP_CLAUSE_SHARED; in gimplify_adjust_omp_clauses_1()
4835 code = OMP_CLAUSE_PRIVATE; in gimplify_adjust_omp_clauses_1()
4837 code = OMP_CLAUSE_FIRSTPRIVATE; in gimplify_adjust_omp_clauses_1()
4841 clause = build_omp_clause (code); in gimplify_adjust_omp_clauses_1()
5924 enum tree_code code = TREE_CODE (*expr_p); in gimplify_expr() local
5926 switch (code) in gimplify_expr()