Home
last modified time | relevance | path

Searched refs:rhs3 (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgimple-ssa-backprop.c790 tree rhs2, tree rhs3) in replace_assign_rhs() argument
792 if (!rhs1 && !rhs2 && !rhs3) in replace_assign_rhs()
800 if (rhs3) in replace_assign_rhs()
801 gimple_assign_set_rhs3 (assign, rhs3); in replace_assign_rhs()
H A Dgimple-match-head.c996 tree rhs3 = gimple_assign_rhs3 (stmt); in gimple_simplify() local
999 rhs3 = do_valueize (rhs3, top_valueize, valueized); in gimple_simplify()
1000 res_op->set_op (code, type, rhs1, rhs2, rhs3); in gimple_simplify()
H A Dtree-vect-generic.c1642 tree rhs3 = gimple_assign_rhs3 (stmt); in expand_vector_scalar_condition() local
1649 new_rhs = expand_vector_parallel (gsi, do_cond, type, rhs2, rhs3, in expand_vector_scalar_condition()
1653 rhs2, rhs3, COND_EXPR); in expand_vector_scalar_condition()
H A Dtree-cfg.c4190 tree rhs3 = gimple_assign_rhs3 (stmt); in verify_gimple_assign_ternary() local
4191 tree rhs3_type = TREE_TYPE (rhs3); in verify_gimple_assign_ternary()
4202 || !is_gimple_val (rhs3)) in verify_gimple_assign_ternary()
4304 || (TREE_CODE (rhs3) != VECTOR_CST in verify_gimple_assign_ternary()
4368 && multiple_of_p (bitsizetype, rhs3, TYPE_SIZE (rhs2_type))))) in verify_gimple_assign_ternary()
4375 if (! tree_fits_uhwi_p (rhs3) in verify_gimple_assign_ternary()
4376 || ! types_compatible_p (bitsizetype, TREE_TYPE (rhs3)) in verify_gimple_assign_ternary()
4390 unsigned HOST_WIDE_INT bitpos = tree_to_uhwi (rhs3); in verify_gimple_assign_ternary()
4401 unsigned HOST_WIDE_INT bitpos = tree_to_uhwi (rhs3); in verify_gimple_assign_ternary()
H A Dhsa-gen.c3130 tree rhs3 = gimple_assign_rhs3 (assign); in gen_hsa_insns_for_operation_assignment() local
3323 hsa_op_with_type *op3 = hsa_reg_or_immed_for_gimple_op (rhs3, hbb); in gen_hsa_insns_for_operation_assignment()
3387 hsa_op_with_type *op3 = hsa_reg_or_immed_for_gimple_op (rhs3, hbb); in gen_hsa_insns_for_operation_assignment()
4487 tree rhs3 = gimple_call_arg (call, 2); in gen_hsa_fma() local
4492 hsa_op_with_type *op3 = hsa_reg_or_immed_for_gimple_op (rhs3, hbb); in gen_hsa_fma()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgimple-ssa-backprop.cc789 tree rhs2, tree rhs3) in replace_assign_rhs() argument
791 if (!rhs1 && !rhs2 && !rhs3) in replace_assign_rhs()
799 if (rhs3) in replace_assign_rhs()
800 gimple_assign_set_rhs3 (assign, rhs3); in replace_assign_rhs()
H A Dgimple-match-head.cc987 tree rhs3 = valueize_op (gimple_assign_rhs3 (stmt)); in gimple_extract() local
988 res_op->set_op (code, type, rhs1, rhs2, rhs3); in gimple_extract()
H A Dtree-ssa-phiopt.cc2460 tree rhs3 = rhs2; in spaceship_replacement() local
2522 rhs3 = gimple_cond_rhs (cond3); in spaceship_replacement()
2525 if (!operand_equal_p (rhs3, rhs1, 0)) in spaceship_replacement()
2530 if (rhs3 != lhs1) in spaceship_replacement()
H A Dtree-cfg.cc4234 tree rhs3 = gimple_assign_rhs3 (stmt); in verify_gimple_assign_ternary() local
4235 tree rhs3_type = TREE_TYPE (rhs3); in verify_gimple_assign_ternary()
4246 || !is_gimple_val (rhs3)) in verify_gimple_assign_ternary()
4350 || (TREE_CODE (rhs3) != VECTOR_CST in verify_gimple_assign_ternary()
4414 && multiple_p (wi::to_poly_offset (rhs3), in verify_gimple_assign_ternary()
4422 if (! tree_fits_uhwi_p (rhs3) in verify_gimple_assign_ternary()
4423 || ! types_compatible_p (bitsizetype, TREE_TYPE (rhs3)) in verify_gimple_assign_ternary()
4437 unsigned HOST_WIDE_INT bitpos = tree_to_uhwi (rhs3); in verify_gimple_assign_ternary()
4448 unsigned HOST_WIDE_INT bitpos = tree_to_uhwi (rhs3); in verify_gimple_assign_ternary()
H A Dtree-vect-generic.cc1795 tree rhs3 = gimple_assign_rhs3 (stmt); in expand_vector_scalar_condition() local
1802 new_rhs = expand_vector_parallel (gsi, do_cond, type, rhs2, rhs3, in expand_vector_scalar_condition()
1806 rhs2, rhs3, COND_EXPR, false); in expand_vector_scalar_condition()
H A DChangeLog11661 VEC_COND_EXPRs that use lhs not just in rhs1, but rhs2 or rhs3 too