Home
last modified time | relevance | path

Searched refs:targ0 (Results 1 – 3 of 3) sorted by relevance

/openbsd/src/gnu/gcc/gcc/
Doptabs.c2049 expand_twoval_unop (optab unoptab, rtx op0, rtx targ0, rtx targ1, in expand_twoval_unop() argument
2052 enum machine_mode mode = GET_MODE (targ0 ? targ0 : targ1); in expand_twoval_unop()
2060 if (!targ0) in expand_twoval_unop()
2061 targ0 = gen_reg_rtx (mode); in expand_twoval_unop()
2085 gcc_assert (insn_data[icode].operand[0].predicate (targ0, mode)); in expand_twoval_unop()
2088 pat = GEN_FCN (icode) (targ0, targ1, xop0); in expand_twoval_unop()
2115 convert_move (targ0, t0, unsignedp); in expand_twoval_unop()
2142 expand_twoval_binop (optab binoptab, rtx op0, rtx op1, rtx targ0, rtx targ1, in expand_twoval_binop() argument
2145 enum machine_mode mode = GET_MODE (targ0 ? targ0 : targ1); in expand_twoval_binop()
2163 if (!targ0) in expand_twoval_binop()
[all …]
Dfold-const.c7771 tree targ0 = strip_float_extensions (arg0); in fold_unary() local
7772 if (targ0 != arg0) in fold_unary()
7774 TREE_TYPE (targ0), in fold_unary()
7775 targ0)); in fold_unary()
8058 tree targ0 = strip_float_extensions (arg0); in fold_comparison() local
8060 tree newtype = TREE_TYPE (targ0); in fold_comparison()
8067 return fold_build2 (code, type, fold_convert (newtype, targ0), in fold_comparison()
11357 tree targ0 = strip_float_extensions (arg0); in fold_binary() local
11359 tree newtype = TREE_TYPE (targ0); in fold_binary()
11365 return fold_build2 (code, type, fold_convert (newtype, targ0), in fold_binary()
/openbsd/src/gnu/usr.bin/gcc/gcc/
Doptabs.c2207 expand_twoval_binop (binoptab, op0, op1, targ0, targ1, unsignedp) in expand_twoval_binop() argument
2210 rtx targ0, targ1;
2213 enum machine_mode mode = GET_MODE (targ0 ? targ0 : targ1);
2240 if (targ0)
2241 targ0 = protect_from_queue (targ0, 1);
2243 targ0 = gen_reg_rtx (mode);
2289 if (! (*insn_data[icode].operand[0].predicate) (targ0, mode)
2293 pat = GEN_FCN (icode) (targ0, xop0, xop1, targ1);
2321 convert_move (targ0, t0, unsignedp);