/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | tree-vect-patterns.c | 260 tree *orig_type, gimple **def_stmt, bool *promotion) in type_conversion_p() argument 268 def_stmt)) in type_conversion_p() 275 if (!*def_stmt) in type_conversion_p() 278 if (!is_gimple_assign (*def_stmt)) in type_conversion_p() 281 if (!CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (*def_stmt))) in type_conversion_p() 284 oprnd0 = gimple_assign_rhs1 (*def_stmt); in type_conversion_p() 392 gimple *def_stmt; variable 394 if (!vect_is_simple_use (op, vinfo, &dt, &def_stmt_info, &def_stmt)) 429 if (!def_stmt) 440 gassign *assign = dyn_cast <gassign *> (def_stmt); [all …]
|
H A D | gimple-ssa-isolate-paths.c | 452 gimple *def_stmt = SSA_NAME_DEF_STMT (exp); in is_addr_local() local 453 enum gimple_code code = gimple_code (def_stmt); in is_addr_local() 455 if (is_gimple_assign (def_stmt)) in is_addr_local() 457 tree type = TREE_TYPE (gimple_assign_lhs (def_stmt)); in is_addr_local() 460 tree_code code = gimple_assign_rhs_code (def_stmt); in is_addr_local() 470 ptr1 = gimple_assign_rhs2 (def_stmt); in is_addr_local() 471 ptr2 = gimple_assign_rhs3 (def_stmt); in is_addr_local() 476 ptr1 = gimple_assign_rhs1 (def_stmt); in is_addr_local() 477 ptr2 = gimple_assign_rhs2 (def_stmt); in is_addr_local() 484 ptr1 = gimple_assign_rhs1 (def_stmt); in is_addr_local() [all …]
|
H A D | tree-ssa-phiprop.c | 170 gimple *def_stmt = SSA_NAME_DEF_STMT (old_arg); in phiprop_insert_phi() local 171 old_arg = gimple_assign_rhs1 (def_stmt); in phiprop_insert_phi() 172 locus = gimple_location (def_stmt); in phiprop_insert_phi() 293 gimple *def_stmt = SSA_NAME_DEF_STMT (arg); in propagate_with_phi() local 294 if (!gimple_assign_single_p (def_stmt)) in propagate_with_phi() 296 arg = gimple_assign_rhs1 (def_stmt); in propagate_with_phi() 324 gimple *def_stmt; in propagate_with_phi() local 356 def_stmt = SSA_NAME_DEF_STMT (vuse); in propagate_with_phi() 358 && (gimple_bb (def_stmt) == bb in propagate_with_phi() 359 || (gimple_bb (def_stmt) in propagate_with_phi() [all …]
|
H A D | tree-ssa-threadbackward.c | 671 gimple *def_stmt = SSA_NAME_DEF_STMT (name); in fsm_find_control_statement_thread_paths() local 672 basic_block def_bb = gimple_bb (def_stmt); in fsm_find_control_statement_thread_paths() 679 if (gimple_code (def_stmt) != GIMPLE_PHI in fsm_find_control_statement_thread_paths() 680 && gimple_code (def_stmt) != GIMPLE_ASSIGN) in fsm_find_control_statement_thread_paths() 683 if (gimple_code (def_stmt) == GIMPLE_PHI in fsm_find_control_statement_thread_paths() 684 && (gimple_phi_num_args (def_stmt) in fsm_find_control_statement_thread_paths() 688 if (is_gimple_assign (def_stmt) in fsm_find_control_statement_thread_paths() 689 && ! handle_assignment_p (def_stmt)) in fsm_find_control_statement_thread_paths() 699 if (loop_containing_stmt (def_stmt)->header == gimple_bb (def_stmt)) in fsm_find_control_statement_thread_paths() 724 if (gimple_code (def_stmt) == GIMPLE_PHI) in fsm_find_control_statement_thread_paths() [all …]
|
H A D | tree-ssa-forwprop.c | 233 gimple *def_stmt = SSA_NAME_DEF_STMT (name); in get_prop_source_stmt() local 243 if (!is_gimple_assign (def_stmt)) in get_prop_source_stmt() 247 if (gimple_assign_rhs_code (def_stmt) == SSA_NAME) in get_prop_source_stmt() 248 name = gimple_assign_rhs1 (def_stmt); in get_prop_source_stmt() 254 return def_stmt; in get_prop_source_stmt() 263 can_propagate_from (gimple *def_stmt) in can_propagate_from() argument 265 gcc_assert (is_gimple_assign (def_stmt)); in can_propagate_from() 268 if (gimple_has_volatile_ops (def_stmt)) in can_propagate_from() 272 if (TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt)) == tcc_reference in can_propagate_from() 273 || TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt)) == tcc_declaration) in can_propagate_from() [all …]
|
H A D | tree-ssa-uninit.c | 207 gimple *def_stmt = SSA_NAME_DEF_STMT (vdef); in check_defs() local 209 if (gimple_clobber_p (def_stmt)) in check_defs() 211 if (stmt_kills_ref_p (def_stmt, ref)) in check_defs() 1641 gimple *def_stmt = SSA_NAME_DEF_STMT (a_pred->pred_lhs); in simplify_pred() local 1642 if (gimple_code (def_stmt) != GIMPLE_ASSIGN) in simplify_pred() 1644 if (gimple_assign_rhs_code (def_stmt) == BIT_IOR_EXPR) in simplify_pred() 1655 if (pred_expr_equal_p (*b_pred, gimple_assign_rhs1 (def_stmt)) in simplify_pred() 1656 || pred_expr_equal_p (*b_pred, gimple_assign_rhs2 (def_stmt))) in simplify_pred() 1830 gimple *def_stmt; in simplify_preds_4() local 1846 def_stmt = SSA_NAME_DEF_STMT (z.pred_lhs); in simplify_preds_4() [all …]
|
H A D | tree-ssa-dce.c | 490 gimple *def_stmt = SSA_NAME_DEF_STMT (vdef); in mark_aliased_reaching_defs_necessary_1() local 493 if (! gimple_clobber_p (def_stmt)) in mark_aliased_reaching_defs_necessary_1() 497 if (gimple_has_lhs (def_stmt) in mark_aliased_reaching_defs_necessary_1() 498 && TREE_CODE (gimple_get_lhs (def_stmt)) != SSA_NAME in mark_aliased_reaching_defs_necessary_1() 505 && !stmt_can_throw_internal (cfun, def_stmt)) in mark_aliased_reaching_defs_necessary_1() 507 tree base, lhs = gimple_get_lhs (def_stmt); in mark_aliased_reaching_defs_necessary_1() 532 && (basic_block) data != gimple_bb (def_stmt) in mark_aliased_reaching_defs_necessary_1() 534 gimple_bb (def_stmt)) in mark_aliased_reaching_defs_necessary_1() 573 gimple *def_stmt = SSA_NAME_DEF_STMT (vdef); in mark_all_reaching_defs_necessary_1() local 580 gcc_assert (gimple_nop_p (def_stmt) in mark_all_reaching_defs_necessary_1() [all …]
|
H A D | gimple-ssa-evrp-analyze.c | 373 gimple *def_stmt = SSA_NAME_DEF_STMT (t); in record_ranges_from_stmt() local 374 while (is_gimple_assign (def_stmt) in record_ranges_from_stmt() 375 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def_stmt)) in record_ranges_from_stmt() 377 (gimple_assign_rhs1 (def_stmt)) == SSA_NAME in record_ranges_from_stmt() 379 (TREE_TYPE (gimple_assign_rhs1 (def_stmt)))) in record_ranges_from_stmt() 381 t = gimple_assign_rhs1 (def_stmt); in record_ranges_from_stmt() 382 def_stmt = SSA_NAME_DEF_STMT (t); in record_ranges_from_stmt()
|
H A D | tree-ssa-threadedge.c | 608 gimple *def_stmt = SSA_NAME_DEF_STMT (op0); in simplify_control_stmt_condition_1() local 609 if (gimple_code (def_stmt) != GIMPLE_ASSIGN) in simplify_control_stmt_condition_1() 611 else if (gimple_assign_rhs_code (def_stmt) == BIT_AND_EXPR in simplify_control_stmt_condition_1() 612 || gimple_assign_rhs_code (def_stmt) == BIT_IOR_EXPR) in simplify_control_stmt_condition_1() 614 enum tree_code rhs_code = gimple_assign_rhs_code (def_stmt); in simplify_control_stmt_condition_1() 615 const tree rhs1 = gimple_assign_rhs1 (def_stmt); in simplify_control_stmt_condition_1() 616 const tree rhs2 = gimple_assign_rhs2 (def_stmt); in simplify_control_stmt_condition_1() 620 = simplify_control_stmt_condition_1 (e, def_stmt, avail_exprs_stack, in simplify_control_stmt_condition_1() 647 = simplify_control_stmt_condition_1 (e, def_stmt, avail_exprs_stack, in simplify_control_stmt_condition_1() 701 else if (TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt)) in simplify_control_stmt_condition_1() [all …]
|
H A D | tree-parloops.c | 518 if (gassign *def_stmt = dyn_cast <gassign *> (def_stmt_info->stmt)) in parloops_is_simple_reduction() local 520 name = gimple_assign_lhs (def_stmt); in parloops_is_simple_reduction() 523 else if (gphi *def_stmt = dyn_cast <gphi *> (def_stmt_info->stmt)) in parloops_is_simple_reduction() local 525 name = PHI_RESULT (def_stmt); in parloops_is_simple_reduction() 574 gphi *def_stmt = as_a <gphi *> (def_stmt_info->stmt); in parloops_is_simple_reduction() local 575 op1 = PHI_ARG_DEF (def_stmt, 0); in parloops_is_simple_reduction() 577 if (gimple_phi_num_args (def_stmt) != 1 in parloops_is_simple_reduction() 589 && flow_bb_inside_loop_p (loop, gimple_bb (def_stmt)) in parloops_is_simple_reduction() 597 report_ploop_op (MSG_NOTE, def_stmt, in parloops_is_simple_reduction() 627 gassign *def_stmt = as_a <gassign *> (def_stmt_info->stmt); in parloops_is_simple_reduction() local [all …]
|
H A D | tree-ssa-sccvn.c | 1275 gimple *def_stmt; in vn_reference_maybe_forwprop_address() local 1279 def_stmt = SSA_NAME_DEF_STMT (op->op0); in vn_reference_maybe_forwprop_address() 1280 if (!is_gimple_assign (def_stmt)) in vn_reference_maybe_forwprop_address() 1283 code = gimple_assign_rhs_code (def_stmt); in vn_reference_maybe_forwprop_address() 1298 addr = gimple_assign_rhs1 (def_stmt); in vn_reference_maybe_forwprop_address() 1347 ptr = gimple_assign_rhs1 (def_stmt); in vn_reference_maybe_forwprop_address() 1348 ptroff = gimple_assign_rhs2 (def_stmt); in vn_reference_maybe_forwprop_address() 2499 gimple *def_stmt = SSA_NAME_DEF_STMT (vuse); in vn_reference_lookup_3() local 2508 if (is_gimple_assign (def_stmt)) in vn_reference_lookup_3() 2510 tree lhs = gimple_assign_lhs (def_stmt); in vn_reference_lookup_3() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | tree-vect-patterns.cc | 268 tree *orig_type, gimple **def_stmt, bool *promotion) in type_conversion_p() argument 275 if (!vect_is_simple_use (name, vinfo, &dt, &def_stmt_info, def_stmt)) in type_conversion_p() 282 if (!*def_stmt) in type_conversion_p() 285 if (!is_gimple_assign (*def_stmt)) in type_conversion_p() 288 if (!CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (*def_stmt))) in type_conversion_p() 291 oprnd0 = gimple_assign_rhs1 (*def_stmt); in type_conversion_p() 399 gimple *def_stmt; in vect_look_through_possible_promotion() local 401 if (!vect_is_simple_use (op, vinfo, &dt, &def_stmt_info, &def_stmt)) in vect_look_through_possible_promotion() 436 if (!def_stmt) in vect_look_through_possible_promotion() 447 gassign *assign = dyn_cast <gassign *> (def_stmt); in vect_look_through_possible_promotion() [all …]
|
H A D | gimple-ssa-isolate-paths.cc | 457 gimple *def_stmt = SSA_NAME_DEF_STMT (exp); in is_addr_local() local 458 enum gimple_code code = gimple_code (def_stmt); in is_addr_local() 460 if (is_gimple_assign (def_stmt)) in is_addr_local() 462 tree type = TREE_TYPE (gimple_assign_lhs (def_stmt)); in is_addr_local() 465 tree_code code = gimple_assign_rhs_code (def_stmt); in is_addr_local() 475 ptr1 = gimple_assign_rhs2 (def_stmt); in is_addr_local() 476 ptr2 = gimple_assign_rhs3 (def_stmt); in is_addr_local() 481 ptr1 = gimple_assign_rhs1 (def_stmt); in is_addr_local() 482 ptr2 = gimple_assign_rhs2 (def_stmt); in is_addr_local() 489 ptr1 = gimple_assign_rhs1 (def_stmt); in is_addr_local() [all …]
|
H A D | tree-ssa-phiprop.cc | 170 gimple *def_stmt = SSA_NAME_DEF_STMT (old_arg); in phiprop_insert_phi() local 171 old_arg = gimple_assign_rhs1 (def_stmt); in phiprop_insert_phi() 172 locus = gimple_location (def_stmt); in phiprop_insert_phi() 293 gimple *def_stmt = SSA_NAME_DEF_STMT (arg); in propagate_with_phi() local 294 if (!gimple_assign_single_p (def_stmt)) in propagate_with_phi() 296 arg = gimple_assign_rhs1 (def_stmt); in propagate_with_phi() 324 gimple *def_stmt; in propagate_with_phi() local 356 def_stmt = SSA_NAME_DEF_STMT (vuse); in propagate_with_phi() 358 && (gimple_bb (def_stmt) == bb in propagate_with_phi() 359 || (gimple_bb (def_stmt) in propagate_with_phi() [all …]
|
H A D | gimple-predicate-analysis.cc | 1312 gimple *def_stmt = SSA_NAME_DEF_STMT (a_pred.pred_lhs); in simplify_1() local 1313 if (gimple_code (def_stmt) != GIMPLE_ASSIGN) in simplify_1() 1316 if (gimple_assign_rhs_code (def_stmt) != BIT_IOR_EXPR) in simplify_1() 1327 if (pred_expr_equal_p (b_pred, gimple_assign_rhs1 (def_stmt)) in simplify_1() 1328 || pred_expr_equal_p (b_pred, gimple_assign_rhs2 (def_stmt))) in simplify_1() 1498 gimple *def_stmt = SSA_NAME_DEF_STMT (z.pred_lhs); in simplify_4() local 1499 if (gimple_code (def_stmt) != GIMPLE_ASSIGN) in simplify_4() 1502 if (gimple_assign_rhs_code (def_stmt) != BIT_AND_EXPR) in simplify_4() 1519 if ((pred_expr_equal_p (x2, gimple_assign_rhs1 (def_stmt)) in simplify_4() 1520 && pred_expr_equal_p (y2, gimple_assign_rhs2 (def_stmt))) in simplify_4() [all …]
|
H A D | tree-ssa-uninit.cc | 454 gimple *def_stmt = SSA_NAME_DEF_STMT (vdef); in check_defs() local 458 if (gimple_call_internal_p (def_stmt, IFN_DEFERRED_INIT)) in check_defs() 466 if (is_gimple_assign (def_stmt) in check_defs() 467 && gimple_assign_rhs_code (def_stmt) == SSA_NAME) in check_defs() 469 tree tmp_var = gimple_assign_rhs1 (def_stmt); in check_defs() 476 if (is_gimple_call (def_stmt)) in check_defs() 479 if (gimple_call_internal_p (def_stmt) in check_defs() 480 && gimple_call_internal_fn (def_stmt) == IFN_ASAN_MARK) in check_defs() 483 if (tree fndecl = gimple_call_fndecl (def_stmt)) in check_defs() 499 if (gimple_call_builtin_p (def_stmt, BUILT_IN_STACK_RESTORE)) in check_defs() [all …]
|
H A D | tree-ssa-forwprop.cc | 234 gimple *def_stmt = SSA_NAME_DEF_STMT (name); in get_prop_source_stmt() local 244 if (!is_gimple_assign (def_stmt)) in get_prop_source_stmt() 248 if (gimple_assign_rhs_code (def_stmt) == SSA_NAME) in get_prop_source_stmt() 249 name = gimple_assign_rhs1 (def_stmt); in get_prop_source_stmt() 255 return def_stmt; in get_prop_source_stmt() 264 can_propagate_from (gimple *def_stmt) in can_propagate_from() argument 266 gcc_assert (is_gimple_assign (def_stmt)); in can_propagate_from() 269 if (gimple_has_volatile_ops (def_stmt)) in can_propagate_from() 273 if (TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt)) == tcc_reference in can_propagate_from() 274 || TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt)) == tcc_declaration) in can_propagate_from() [all …]
|
H A D | tree-ssa-dce.cc | 485 gimple *def_stmt = SSA_NAME_DEF_STMT (vdef); in mark_aliased_reaching_defs_necessary_1() local 488 if (! gimple_clobber_p (def_stmt)) in mark_aliased_reaching_defs_necessary_1() 492 if (gimple_has_lhs (def_stmt) in mark_aliased_reaching_defs_necessary_1() 493 && TREE_CODE (gimple_get_lhs (def_stmt)) != SSA_NAME in mark_aliased_reaching_defs_necessary_1() 500 && !stmt_can_throw_internal (cfun, def_stmt)) in mark_aliased_reaching_defs_necessary_1() 502 tree base, lhs = gimple_get_lhs (def_stmt); in mark_aliased_reaching_defs_necessary_1() 527 && (basic_block) data != gimple_bb (def_stmt) in mark_aliased_reaching_defs_necessary_1() 529 gimple_bb (def_stmt)) in mark_aliased_reaching_defs_necessary_1() 568 gimple *def_stmt = SSA_NAME_DEF_STMT (vdef); in mark_all_reaching_defs_necessary_1() local 575 gcc_assert (gimple_nop_p (def_stmt) in mark_all_reaching_defs_necessary_1() [all …]
|
H A D | tree-ssa-dom.cc | 170 gimple *def_stmt = SSA_NAME_DEF_STMT (name); in derive_equivalences() local 171 if (is_gimple_assign (def_stmt)) in derive_equivalences() 173 enum tree_code code = gimple_assign_rhs_code (def_stmt); in derive_equivalences() 180 tree rhs1 = gimple_assign_rhs1 (def_stmt); in derive_equivalences() 181 tree rhs2 = gimple_assign_rhs2 (def_stmt); in derive_equivalences() 194 tree rhs1 = gimple_assign_rhs1 (def_stmt); in derive_equivalences() 195 tree rhs2 = gimple_assign_rhs2 (def_stmt); in derive_equivalences() 226 tree rhs = gimple_assign_rhs1 (def_stmt); in derive_equivalences() 244 tree rhs1 = gimple_assign_rhs1 (def_stmt); in derive_equivalences() 245 tree rhs2 = gimple_assign_rhs2 (def_stmt); in derive_equivalences() [all …]
|
H A D | gimple-ssa-evrp-analyze.cc | 370 gimple *def_stmt = SSA_NAME_DEF_STMT (t); in record_ranges_from_stmt() local 371 while (is_gimple_assign (def_stmt) in record_ranges_from_stmt() 372 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def_stmt)) in record_ranges_from_stmt() 374 (gimple_assign_rhs1 (def_stmt)) == SSA_NAME in record_ranges_from_stmt() 376 (TREE_TYPE (gimple_assign_rhs1 (def_stmt)))) in record_ranges_from_stmt() 378 t = gimple_assign_rhs1 (def_stmt); in record_ranges_from_stmt() 379 def_stmt = SSA_NAME_DEF_STMT (t); in record_ranges_from_stmt()
|
H A D | tree-ssa.cc | 306 gimple *def_stmt = NULL; in insert_debug_temp_for_var_def() local 344 def_stmt = gsi_stmt (*gsi); in insert_debug_temp_for_var_def() 346 def_stmt = SSA_NAME_DEF_STMT (var); in insert_debug_temp_for_var_def() 351 if (gimple_code (def_stmt) == GIMPLE_PHI) in insert_debug_temp_for_var_def() 353 value = degenerate_phi_result (as_a <gphi *> (def_stmt)); in insert_debug_temp_for_var_def() 361 else if (gimple_clobber_p (def_stmt)) in insert_debug_temp_for_var_def() 366 else if (is_gimple_assign (def_stmt)) in insert_debug_temp_for_var_def() 402 if ((!gsi && !gimple_bb (def_stmt)) in insert_debug_temp_for_var_def() 403 || walk_gimple_op (def_stmt, find_released_ssa_name, &wi)) in insert_debug_temp_for_var_def() 408 value = gimple_assign_rhs_to_tree (def_stmt); in insert_debug_temp_for_var_def() [all …]
|
H A D | gimple-range-path.cc | 340 gimple *def_stmt = SSA_NAME_DEF_STMT (name); in range_defined_in_block() local 341 basic_block def_bb = gimple_bb (def_stmt); in range_defined_in_block() 349 if (gimple_code (def_stmt) == GIMPLE_PHI) in range_defined_in_block() 350 ssa_range_in_phi (r, as_a<gphi *> (def_stmt)); in range_defined_in_block() 356 if (!range_of_stmt (r, def_stmt, name)) in range_defined_in_block() 577 gimple *def_stmt = SSA_NAME_DEF_STMT (name); in compute_imports() local 579 if (is_gimple_assign (def_stmt)) in compute_imports() 581 add_to_imports (gimple_assign_rhs1 (def_stmt), imports); in compute_imports() 582 tree rhs = gimple_assign_rhs2 (def_stmt); in compute_imports() 585 rhs = gimple_assign_rhs3 (def_stmt); in compute_imports() [all …]
|
H A D | tree-parloops.cc | 518 if (gassign *def_stmt = dyn_cast <gassign *> (def_stmt_info->stmt)) in parloops_is_simple_reduction() local 520 name = gimple_assign_lhs (def_stmt); in parloops_is_simple_reduction() 523 else if (gphi *def_stmt = dyn_cast <gphi *> (def_stmt_info->stmt)) in parloops_is_simple_reduction() local 525 name = PHI_RESULT (def_stmt); in parloops_is_simple_reduction() 574 gphi *def_stmt = as_a <gphi *> (def_stmt_info->stmt); in parloops_is_simple_reduction() local 575 op1 = PHI_ARG_DEF (def_stmt, 0); in parloops_is_simple_reduction() 577 if (gimple_phi_num_args (def_stmt) != 1 in parloops_is_simple_reduction() 589 && flow_bb_inside_loop_p (loop, gimple_bb (def_stmt)) in parloops_is_simple_reduction() 597 report_ploop_op (MSG_NOTE, def_stmt, in parloops_is_simple_reduction() 627 gassign *def_stmt = as_a <gassign *> (def_stmt_info->stmt); in parloops_is_simple_reduction() local [all …]
|
H A D | tree-vrp.cc | 1454 gimple *def_stmt = SSA_NAME_DEF_STMT (name); in register_edge_assert_for_2() local 1458 if (is_gimple_assign (def_stmt) in register_edge_assert_for_2() 1459 && gimple_assign_rhs_code (def_stmt) == PLUS_EXPR) in register_edge_assert_for_2() 1461 name2 = gimple_assign_rhs1 (def_stmt); in register_edge_assert_for_2() 1462 cst2 = gimple_assign_rhs2 (def_stmt); in register_edge_assert_for_2() 1465 def_stmt = SSA_NAME_DEF_STMT (name2); in register_edge_assert_for_2() 1469 if (gassign *ass = dyn_cast <gassign *> (def_stmt)) in register_edge_assert_for_2() 1569 gimple *def_stmt = SSA_NAME_DEF_STMT (name); in register_edge_assert_for_2() local 1577 if (is_gimple_assign (def_stmt)) in register_edge_assert_for_2() 1578 rhs_code = gimple_assign_rhs_code (def_stmt); in register_edge_assert_for_2() [all …]
|
H A D | tree-ssa-threadedge.cc | 507 gimple *def_stmt = SSA_NAME_DEF_STMT (op0); in simplify_control_stmt_condition_1() local 508 if (gimple_code (def_stmt) != GIMPLE_ASSIGN) in simplify_control_stmt_condition_1() 510 else if (gimple_assign_rhs_code (def_stmt) == BIT_AND_EXPR in simplify_control_stmt_condition_1() 511 || gimple_assign_rhs_code (def_stmt) == BIT_IOR_EXPR) in simplify_control_stmt_condition_1() 513 enum tree_code rhs_code = gimple_assign_rhs_code (def_stmt); in simplify_control_stmt_condition_1() 514 const tree rhs1 = gimple_assign_rhs1 (def_stmt); in simplify_control_stmt_condition_1() 515 const tree rhs2 = gimple_assign_rhs2 (def_stmt); in simplify_control_stmt_condition_1() 519 = simplify_control_stmt_condition_1 (e, def_stmt, in simplify_control_stmt_condition_1() 545 = simplify_control_stmt_condition_1 (e, def_stmt, in simplify_control_stmt_condition_1() 598 else if (TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt)) in simplify_control_stmt_condition_1() [all …]
|