| /dflybsd-src/contrib/gcc-8.0/gcc/ |
| H A D | gimple-ssa-warn-alloca.c | 161 enum tree_code cond_code = gimple_cond_code (last); in alloca_call_type_by_arg() local 165 cond_code = invert_tree_comparison (cond_code, false); in alloca_call_type_by_arg() 176 if ((cond_code == LE_EXPR in alloca_call_type_by_arg() 177 || cond_code == LT_EXPR in alloca_call_type_by_arg() 178 || cond_code == GT_EXPR in alloca_call_type_by_arg() 179 || cond_code == GE_EXPR) in alloca_call_type_by_arg() 187 if ((cond_code == LT_EXPR && tst == -1) in alloca_call_type_by_arg() 188 || (cond_code == LE_EXPR && (tst == -1 || tst == 0))) in alloca_call_type_by_arg() 195 if (cond_code == GT_EXPR || cond_code == GE_EXPR) in alloca_call_type_by_arg()
|
| H A D | tree-ssa-threadedge.c | 448 enum tree_code cond_code; in simplify_control_stmt_condition() local 452 cond_code = gimple_cond_code (stmt); in simplify_control_stmt_condition() 483 op0, cond_code, op1, in simplify_control_stmt_condition() 581 enum tree_code cond_code, in simplify_control_stmt_condition_1() argument 596 cond_code = swap_tree_comparison (cond_code); in simplify_control_stmt_condition_1() 604 if ((cond_code == EQ_EXPR || cond_code == NE_EXPR) in simplify_control_stmt_condition_1() 629 if (cond_code == NE_EXPR) in simplify_control_stmt_condition_1() 632 if (cond_code == EQ_EXPR) in simplify_control_stmt_condition_1() 638 if (cond_code == NE_EXPR) in simplify_control_stmt_condition_1() 641 if (cond_code == EQ_EXPR) in simplify_control_stmt_condition_1() [all …]
|
| H A D | omp-general.c | 61 omp_adjust_for_condition (location_t loc, enum tree_code *cond_code, tree *n2) in omp_adjust_for_condition() argument 63 switch (*cond_code) in omp_adjust_for_condition() 75 *cond_code = LT_EXPR; in omp_adjust_for_condition() 83 *cond_code = GT_EXPR; in omp_adjust_for_condition() 251 loop->cond_code = gimple_omp_for_cond (for_stmt, i); in omp_extract_for_data() 253 gcc_assert (loop->cond_code != NE_EXPR); in omp_extract_for_data() 254 omp_adjust_for_condition (loc, &loop->cond_code, &loop->n2); in omp_extract_for_data() 283 if (loop->cond_code == LT_EXPR) in omp_extract_for_data() 298 if (loop->cond_code == LT_EXPR) in omp_extract_for_data() 325 t = fold_binary (loop->cond_code, boolean_type_node, in omp_extract_for_data() [all …]
|
| H A D | tree-ssa-uninit.c | 616 enum tree_code cond_code; member 708 one_pred.cond_code = gimple_cond_code (cond_stmt); in convert_control_dep_chain_into_preds() 751 one_pred.cond_code = EQ_EXPR; in convert_control_dep_chain_into_preds() 930 fprintf (dump_file, " %s ", op_symbol_code (one_pred.cond_code)); in dump_pred_info() 1356 cmp_code = the_pred.cond_code; in use_pred_not_overlap_with_undef_path_pred() 1421 c1 = x1.cond_code; in pred_equal_p() 1423 && TREE_CODE_CLASS (x2.cond_code) == tcc_comparison) in pred_equal_p() 1424 c2 = invert_tree_comparison (x2.cond_code, false); in pred_equal_p() 1426 c2 = x2.cond_code; in pred_equal_p() 1437 return ((pred.cond_code == NE_EXPR && !pred.invert) in is_neq_relop_p() [all …]
|
| H A D | vr-values.c | 441 enum tree_code cond_code, in extract_range_for_var_from_comparison_expr() argument 452 if ((POINTER_TYPE_P (type) && cond_code != NE_EXPR && cond_code != EQ_EXPR) in extract_range_for_var_from_comparison_expr() 518 if (cond_code == LE_EXPR) in extract_range_for_var_from_comparison_expr() 521 else if (cond_code == GT_EXPR) in extract_range_for_var_from_comparison_expr() 527 else if (cond_code == EQ_EXPR) in extract_range_for_var_from_comparison_expr() 552 else if (cond_code == NE_EXPR) in extract_range_for_var_from_comparison_expr() 598 else if (cond_code == LE_EXPR || cond_code == LT_EXPR) in extract_range_for_var_from_comparison_expr() 615 if (cond_code == LT_EXPR in extract_range_for_var_from_comparison_expr() 621 if (cond_code == LT_EXPR) in extract_range_for_var_from_comparison_expr() 638 else if (cond_code == GE_EXPR || cond_code == GT_EXPR) in extract_range_for_var_from_comparison_expr() [all …]
|
| H A D | omp-general.h | 51 enum tree_code cond_code; member 75 extern void omp_adjust_for_condition (location_t loc, enum tree_code *cond_code,
|
| H A D | omp-grid.c | 509 (fd.loops[i].cond_code == LT_EXPR ? -1 : 1)); in grid_gfor_follows_tiling_pattern() 513 if (TYPE_UNSIGNED (itype) && fd.loops[i].cond_code == GT_EXPR) in grid_gfor_follows_tiling_pattern() 861 if (fd.loops[i].cond_code == GT_EXPR) in grid_target_follows_gridifiable_pattern() 1309 enum tree_code cond_code = gimple_omp_for_cond (inner_loop, i); in grid_attempt_target_gridification() local 1314 omp_adjust_for_condition (loc, &cond_code, &n2); in grid_attempt_target_gridification() 1318 tree cond = fold_build2 (cond_code, boolean_type_node, n1, n2); in grid_attempt_target_gridification() 1322 tree t = build_int_cst (itype, (cond_code == LT_EXPR ? -1 : 1)); in grid_attempt_target_gridification() 1326 if (TYPE_UNSIGNED (itype) && cond_code == GT_EXPR) in grid_attempt_target_gridification() 1335 if (cond_code == GT_EXPR) in grid_attempt_target_gridification()
|
| H A D | omp-expand.c | 785 if (fd.loop.cond_code == LT_EXPR) in expand_task_call() 1440 gcc_assert (loop->cond_code == fd->loop.cond_code); in expand_oacc_collapse_init() 1476 bool up = loop->cond_code == LT_EXPR; in expand_oacc_collapse_init() 1674 t = fold_binary (fd->loops[i].cond_code, boolean_type_node, in expand_omp_for_init_counts() 1691 && ((t = fold_binary (fd->loops[i].cond_code, boolean_type_node, in expand_omp_for_init_counts() 1704 cond_stmt = gimple_build_cond (fd->loops[i].cond_code, n1, n2, in expand_omp_for_init_counts() 1752 t = build_int_cst (itype, (fd->loops[i].cond_code == LT_EXPR in expand_omp_for_init_counts() 1765 if (TYPE_UNSIGNED (itype) && fd->loops[i].cond_code == GT_EXPR) in expand_omp_for_init_counts() 1957 t = fold_build2 (fd->loops[i].cond_code, boolean_type_node, v, t); in extract_omp_for_update_vars() 2018 gcc_assert (fd->loops[i].cond_code == LT_EXPR in expand_omp_ordered_sink() [all …]
|
| H A D | tree-ssa-phiopt.c | 1540 enum tree_code cond_code; in abs_replacement() local 1578 cond_code = gimple_cond_code (cond); in abs_replacement() 1579 if (cond_code != GT_EXPR && cond_code != GE_EXPR in abs_replacement() 1580 && cond_code != LT_EXPR && cond_code != LE_EXPR) in abs_replacement() 1601 if (cond_code == GT_EXPR || cond_code == GE_EXPR) in abs_replacement()
|
| H A D | tree-ssa-threadbackward.c | 320 enum tree_code cond_code = gimple_cond_code (stmt); in profitable_jump_thread_path() local 323 arg = fold_binary (cond_code, boolean_type_node, in profitable_jump_thread_path()
|
| H A D | tree-vrp.c | 2992 extract_code_and_val_from_cond_with_ops (tree name, enum tree_code cond_code, in extract_code_and_val_from_cond_with_ops() argument 3007 comp_code = swap_tree_comparison (cond_code); in extract_code_and_val_from_cond_with_ops() 3014 comp_code = cond_code; in extract_code_and_val_from_cond_with_ops() 3200 enum tree_code cond_code, in register_edge_assert_for_2() argument 3207 if (!extract_code_and_val_from_cond_with_ops (name, cond_code, in register_edge_assert_for_2() 3853 is_masked_range_test (tree name, tree valt, enum tree_code cond_code, in is_masked_range_test() argument 3881 bool is_range = cond_code == EQ_EXPR; in is_masked_range_test() 3923 enum tree_code cond_code, tree cond_op0, in register_edge_assert_for() argument 3935 if (!extract_code_and_val_from_cond_with_ops (name, cond_code, in register_edge_assert_for() 3942 register_edge_assert_for_2 (name, e, cond_code, cond_op0, in register_edge_assert_for()
|
| H A D | tree-vect-slp.c | 930 enum tree_code cond_code = TREE_CODE (cond_expr); in vect_build_slp_tree_1() local 936 else if (TREE_CODE_CLASS (cond_code) == tcc_comparison) in vect_build_slp_tree_1() 939 swap_code = swap_tree_comparison (cond_code); in vect_build_slp_tree_1() 940 invert_code = invert_tree_comparison (cond_code, honor_nans); in vect_build_slp_tree_1() 943 if (first_cond_code == cond_code) in vect_build_slp_tree_1()
|
| H A D | tree-vect-loop.c | 1227 enum tree_code cond_code = TREE_CODE (cond_expr); in ~_loop_vec_info() local 1229 if (TREE_CODE_CLASS (cond_code) == tcc_comparison) in ~_loop_vec_info() 1233 cond_code = invert_tree_comparison (cond_code, in ~_loop_vec_info() 1235 if (cond_code != ERROR_MARK) in ~_loop_vec_info() 1237 TREE_SET_CODE (cond_expr, cond_code); in ~_loop_vec_info() 3524 enum tree_code cond_code = TREE_CODE (cond_expr); in vect_is_simple_reduction() local 3526 if (TREE_CODE_CLASS (cond_code) == tcc_comparison) in vect_is_simple_reduction() 3529 invert_code = invert_tree_comparison (cond_code, honor_nans); in vect_is_simple_reduction()
|
| H A D | omp-low.c | 4279 && fd->loop.cond_code == GT_EXPR) in lower_rec_input_clauses() 6368 gcc_assert (fd.loops[i].cond_code == LT_EXPR in lower_omp_ordered_clauses() 6369 || fd.loops[i].cond_code == GT_EXPR); in lower_omp_ordered_clauses() 6370 bool forward = fd.loops[i].cond_code == LT_EXPR; in lower_omp_ordered_clauses() 6721 enum tree_code cond_code; in lower_omp_for_lastprivate() local 6724 cond_code = fd->loop.cond_code; in lower_omp_for_lastprivate() 6725 cond_code = cond_code == LT_EXPR ? GE_EXPR : LE_EXPR; in lower_omp_for_lastprivate() 6733 cond_code = EQ_EXPR; in lower_omp_for_lastprivate() 6793 cond = build2 (cond_code, boolean_type_node, fd->loop.v, n2); in lower_omp_for_lastprivate() 6806 if (cond_code == EQ_EXPR in lower_omp_for_lastprivate()
|
| H A D | tree-ssa-strlen.c | 3270 enum tree_code cond_code = TREE_CODE (cond); in strlen_check_and_optimize_stmt() local 3272 if (cond_code == EQ_EXPR || cond_code == NE_EXPR) in strlen_check_and_optimize_stmt()
|
| H A D | tree-vect-stmts.c | 8572 enum tree_code code, cond_code, bitop1 = NOP_EXPR, bitop2 = NOP_EXPR; in vectorizable_condition() local 8658 cond_code = TREE_CODE (cond_expr); in vectorizable_condition() 8673 switch (cond_code) in vectorizable_condition() 8703 cond_code = SSA_NAME; in vectorizable_condition() 8727 cond_code)) in vectorizable_condition() 8857 vec_compare = build2 (cond_code, vec_cmp_type, in vectorizable_condition()
|
| H A D | combine.c | 5756 enum rtx_code cond_code = simplify_comparison (NE, &cond, &cop1); in combine_simplify_rtx() local 5758 if (cond_code == NE && COMPARISON_P (cond)) in combine_simplify_rtx() 5781 x = simplify_gen_relational (cond_code, mode, VOIDmode, in combine_simplify_rtx() 5785 (cond_code, cond, cop1, NULL)) in combine_simplify_rtx() 5796 simplify_gen_relational (cond_code, in combine_simplify_rtx() 5804 (cond_code, cond, cop1, NULL)) in combine_simplify_rtx() 5813 simplify_gen_relational (cond_code, in combine_simplify_rtx()
|
| H A D | ifcvt.c | 3137 rtx_code cond_code = GET_CODE (cond); in noce_convert_multiple_sets() local 3221 rtx temp_dest = noce_emit_cmove (if_info, temp, cond_code, in noce_convert_multiple_sets()
|
| /dflybsd-src/contrib/gcc-4.7/gcc/ |
| H A D | tree-ssa-uninit.c | 1099 enum tree_code cond_code; member 1112 enum tree_code cond_code) in normalize_cond_1() argument 1134 norm_cond, cond_code); in normalize_cond_1() 1139 norm_cond, cond_code); in normalize_cond_1() 1147 && (cond_code == cur_cond_code || cond_code == ERROR_MARK) in normalize_cond_1() 1154 norm_cond->cond_code = cur_cond_code; in normalize_cond_1() 1166 enum tree_code cond_code; in normalize_cond() local 1168 norm_cond->cond_code = ERROR_MARK; in normalize_cond() 1172 cond_code = gimple_cond_code (cond); in normalize_cond() 1174 cond_code = invert_tree_comparison (cond_code, false); in normalize_cond() [all …]
|
| H A D | tree-ssa-threadedge.c | 464 enum tree_code cond_code; in simplify_control_stmt_condition() local 468 cond_code = gimple_cond_code (stmt); in simplify_control_stmt_condition() 504 cond_code = swap_tree_comparison (cond_code); in simplify_control_stmt_condition() 512 gimple_cond_set_code (dummy_cond, cond_code); in simplify_control_stmt_condition() 520 cached_lhs = fold_binary (cond_code, boolean_type_node, op0, op1); in simplify_control_stmt_condition()
|
| H A D | tree-vrp.c | 1472 enum tree_code cond_code; in extract_range_from_assert() local 1486 cond_code = TREE_CODE (cond); in extract_range_from_assert() 1495 cond_code = swap_tree_comparison (TREE_CODE (cond)); in extract_range_from_assert() 1507 if (POINTER_TYPE_P (type) && cond_code != NE_EXPR && cond_code != EQ_EXPR) in extract_range_from_assert() 1571 if (cond_code == LE_EXPR) in extract_range_from_assert() 1574 else if (cond_code == GT_EXPR) in extract_range_from_assert() 1580 else if (cond_code == EQ_EXPR) in extract_range_from_assert() 1605 else if (cond_code == NE_EXPR) in extract_range_from_assert() 1650 else if (cond_code == LE_EXPR || cond_code == LT_EXPR) in extract_range_from_assert() 1667 if ((cond_code == LT_EXPR in extract_range_from_assert() [all …]
|
| H A D | tree-ssa-phiopt.c | 997 enum tree_code cond_code; in abs_replacement() local 1035 cond_code = gimple_cond_code (cond); in abs_replacement() 1036 if (cond_code != GT_EXPR && cond_code != GE_EXPR in abs_replacement() 1037 && cond_code != LT_EXPR && cond_code != LE_EXPR) in abs_replacement() 1058 if (cond_code == GT_EXPR || cond_code == GE_EXPR) in abs_replacement()
|
| H A D | omp-low.c | 111 enum tree_code cond_code; member 305 loop->cond_code = gimple_omp_for_cond (for_stmt, i); in extract_omp_for_data() 307 switch (loop->cond_code) in extract_omp_for_data() 319 loop->cond_code = LT_EXPR; in extract_omp_for_data() 328 loop->cond_code = GT_EXPR; in extract_omp_for_data() 362 if (loop->cond_code == LT_EXPR) in extract_omp_for_data() 377 if (loop->cond_code == LT_EXPR) in extract_omp_for_data() 412 t = build_int_cst (itype, (loop->cond_code == LT_EXPR ? -1 : 1)); in extract_omp_for_data() 420 if (TYPE_UNSIGNED (itype) && loop->cond_code == GT_EXPR) in extract_omp_for_data() 470 fd->loop.cond_code = LT_EXPR; in extract_omp_for_data() [all …]
|
| H A D | combine.c | 5376 enum rtx_code cond_code = simplify_comparison (NE, &cond, &cop1); in combine_simplify_rtx() local 5378 if (cond_code == NE && COMPARISON_P (cond)) in combine_simplify_rtx() 5401 x = simplify_gen_relational (cond_code, mode, VOIDmode, in combine_simplify_rtx() 5405 (cond_code, cond, cop1, NULL)) in combine_simplify_rtx() 5416 simplify_gen_relational (cond_code, in combine_simplify_rtx() 5424 (cond_code, cond, cop1, NULL)) in combine_simplify_rtx() 5433 simplify_gen_relational (cond_code, in combine_simplify_rtx()
|
| /dflybsd-src/contrib/binutils-2.27/include/opcode/ |
| H A D | metag.h | 644 enum cond_code enum
|