Searched refs:op1 (Results 101 - 125 of 314) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/iq2000/
H A Diq2000.c545 rtx op1 = operands[1];
547 enum rtx_code code1 = GET_CODE (op1);
565 subreg_offset1 += subreg_regno_offset (REGNO (SUBREG_REG (op1)),
566 GET_MODE (SUBREG_REG (op1)),
567 SUBREG_BYTE (op1),
568 GET_MODE (op1));
569 op1 = SUBREG_REG (op1);
570 code1 = GET_CODE (op1);
583 int regno1 = REGNO (op1)
538 rtx op1 = operands[1]; local
2334 const char *op1 = "%z2"; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-sccvn.c399 && expressions_equal_p (vro1->op1, vro2->op1)
411 if (vro1->op1)
412 result = iterative_hash_expr (vro1->op1, result);
505 temp.op1 = TMR_STEP (ref);
513 temp.op1 = TMR_ORIGINAL (ref);
542 temp.op1 = TREE_OPERAND (ref, 2);
550 temp.op1 = TREE_OPERAND (ref, 2);
556 && temp.op1 == NULL_TREE
568 temp.op1
1439 vn_nary_op_lookup_pieces(unsigned int length, enum tree_code code, tree type, tree op0, tree op1, tree op2, tree op3, vn_nary_op_t *vnresult) argument
1541 vn_nary_op_insert_pieces(unsigned int length, enum tree_code code, tree type, tree op0, tree op1, tree op2, tree op3, tree result, unsigned int value_id) argument
2335 tree op1 = gimple_assign_rhs2 (stmt); local
[all...]
H A Dcombine.c5391 rtx op1 = XEXP (x, 1);
5395 op1 = XEXP (op0, 1), op0 = XEXP (op0, 0);
5398 new_code = simplify_comparison (code, &op0, &op1);
5414 && op1 == const0_rtx
5422 && op1 == const0_rtx
5435 && op1 == const0_rtx
5447 && op1 == const0_rtx
5460 && op1 == const0_rtx
5468 && op1 == const0_rtx
5480 && op1
5373 rtx op1 = XEXP (x, 1); local
5941 rtx op0, op1, tmp; local
6250 rtx op1 = XEXP (x, 1); local
7460 rtx op0, op1, op2; local
7598 rtx op0, op1, temp; local
8218 rtx op1 = XEXP (XEXP (x, 1), 1); local
9206 merge_outer_ops(enum rtx_code *pop0, HOST_WIDE_INT *pconst0, enum rtx_code op1, HOST_WIDE_INT const1, enum machine_mode mode, int *pcomp_p) argument
10388 rtx op1 = *pop1; local
[all...]
H A Dipa-type-escape.c906 tree op1, tree *base, tree *offset,
921 tree op1type = TYPE_MAIN_VARIANT (TREE_TYPE (op1));
923 /* One of op0 and op1 is of pointer type and the other is numerical. */
927 *offset = op1;
931 *base = op1;
949 walk_use_def_chains (op1, is_cast_from_non_pointer,(void *)(&op1_cast),
955 *base = op1;
962 *offset = op1;
1432 okay_pointer_operation (enum tree_code code, tree op0, tree op1) argument
1451 && TREE_CODE (op1)
905 is_array_access_through_pointer_and_index(enum tree_code code, tree op0, tree op1, tree *base, tree *offset, gimple *offset_cast_stmt) argument
1501 tree op1 = gimple_assign_rhs2 (t); local
[all...]
H A Dtree-vrp.c2067 tree expr_type, tree op0, tree op1)
2097 tree const_op1 = op_with_constant_singleton_value_range (op1);
2102 const_op1 ? const_op1 : op1);
2124 if (TREE_CODE (op1) == SSA_NAME)
2125 vr1 = *(get_value_range (op1));
2126 else if (is_gimple_min_invariant (op1))
2127 set_value_range_to_value (&vr1, op1, NULL);
2169 || POINTER_TYPE_P (TREE_TYPE (op1)))
2256 op1 == -1 with their ranges both being ~[0,0], we would have
2257 op0 + op1
2065 extract_range_from_binary_expr(value_range_t *vr, enum tree_code code, tree expr_type, tree op0, tree op1) argument
3072 tree op0, op1; local
3104 extract_range_from_comparison(value_range_t *vr, enum tree_code code, tree type, tree op0, tree op1) argument
4340 tree op1 = gimple_assign_rhs2 (op_def); local
4432 tree op1 = gimple_assign_rhs2 (def_stmt); local
4454 tree op1 = gimple_assign_rhs2 (def_stmt); local
5666 vrp_evaluate_conditional_warnv_with_ops_using_ranges(enum tree_code code, tree op0, tree op1, bool * strict_overflow_p) argument
5688 vrp_evaluate_conditional_warnv_with_ops(enum tree_code code, tree op0, tree op1, bool use_equiv_p, bool *strict_overflow_p, bool *only_ranges) argument
5730 vrp_evaluate_conditional(enum tree_code code, tree op0, tree op1, gimple stmt) argument
6499 tree op0, op1; local
6642 tree op1 = gimple_assign_rhs2 (stmt); local
6773 test_for_singularity(enum tree_code cond_code, tree op0, tree op1, value_range_t *vr) argument
6838 tree op1 = gimple_cond_rhs (stmt); local
[all...]
H A Dmatrix-reorg.c660 tree op1, op2; local
671 op1 = gimple_assign_rhs1 (stmt);
674 if (op1 == a->ssa_var)
682 a->second_op = op1;
963 tree op1, op2, index; local
974 op1 = gimple_assign_rhs1 (def_stmt);
976 if (TREE_CODE (op1) != INTEGER_CST && TREE_CODE (op2) != INTEGER_CST)
978 index = (TREE_CODE (op1) == INTEGER_CST) ? op2 : op1;
1281 tree op1, op local
1450 tree op1, op2, res; local
[all...]
H A Dfold-const.c1227 tree op1 = TREE_OPERAND (t, 1);
1228 if (TREE_INT_CST_HIGH (op1) == 0
1230 == TREE_INT_CST_LOW (op1))
1425 tree op1 = TREE_OPERAND (t, 1);
1426 if (TREE_INT_CST_HIGH (op1) == 0
1428 == TREE_INT_CST_LOW (op1))
1434 temp = fold_build2_loc (loc, RSHIFT_EXPR, ntype, temp, op1);
1521 tree op1 = TREE_OPERAND (in, 1);
1529 else if (TREE_CODE (op1) == INTEGER_CST || TREE_CODE (op1)
1218 tree op1 = TREE_OPERAND (t, 1); local
1416 tree op1 = TREE_OPERAND (t, 1); local
1511 tree op1 = TREE_OPERAND (in, 1); local
5626 fold_range_test(location_t loc, enum tree_code code, tree type, tree op0, tree op1) argument
6218 optimize_minmax_comparison(location_t loc, enum tree_code code, tree type, tree op0, tree op1) argument
6369 tree op0 = NULL_TREE, op1 = NULL_TREE; local
6728 fold_binary_op_with_conditional_arg(location_t loc, enum tree_code code, tree type, tree op0, tree op1, tree cond, tree arg, int cond_first_p) argument
7551 try_move_mult_to_index(location_t loc, tree addr, tree op1) argument
9008 fold_minmax(location_t loc, enum tree_code code, tree type, tree op0, tree op1) argument
9258 fold_comparison(location_t loc, enum tree_code code, tree type, tree op0, tree op1) argument
10004 tree op0, op1; local
10057 fold_binary_loc(location_t loc, enum tree_code code, tree type, tree op0, tree op1) argument
10935 tree op1 = fold_convert_loc (loc, type, TREE_OPERAND (aref1, 1)); local
13742 fold_ternary_loc(location_t loc, enum tree_code code, tree type, tree op0, tree op1, tree op2) argument
14118 tree op0, op1, op2; local
14147 tree op1 = TREE_OPERAND (t, 1); local
14534 fold_build3_stat_loc(location_t loc, enum tree_code code, tree type, tree op0, tree op1, tree op2 MEM_STAT_DECL) argument
14693 fold_build2_initializer_loc(location_t loc, enum tree_code code, tree type, tree op0, tree op1) argument
14706 fold_build3_initializer_loc(location_t loc, enum tree_code code, tree type, tree op0, tree op1, tree op2) argument
14804 tree op1, t1; local
14937 tree_binary_nonnegative_warnv_p(enum tree_code code, tree type, tree op0, tree op1, bool *strict_overflow_p) argument
15434 tree_binary_nonzero_warnv_p(enum tree_code code, tree type, tree op0, tree op1, bool *strict_overflow_p) argument
15699 fold_binary_to_constant(enum tree_code code, tree type, tree op0, tree op1) argument
15892 fold_relational_const(enum tree_code code, tree type, tree op0, tree op1) argument
[all...]
H A Dexpr.c4064 tree op0, op1;
4081 op1 = TREE_OPERAND (src, 1);
4130 && (bitsize != 1 || TREE_CODE (op1) != INTEGER_CST))
4133 value = expand_expr (op1, NULL_RTX, str_mode, EXPAND_NORMAL);
4135 TYPE_MODE (TREE_TYPE (op1)), value,
4136 TYPE_UNSIGNED (TREE_TYPE (op1)));
4164 if (TREE_CODE (op1) != INTEGER_CST)
4166 value = expand_expr (op1, NULL_RTX, GET_MODE (str_rtx), EXPAND_NORMAL);
4168 TYPE_MODE (TREE_TYPE (op1)), value,
4169 TYPE_UNSIGNED (TREE_TYPE (op1)));
4052 tree op0, op1; local
6335 rtx op1, op2; local
6796 expand_operands(tree exp0, tree exp1, rtx target, rtx *op0, rtx *op1, enum expand_modifier modifier) argument
7220 rtx op0, op1, op2, temp; local
8302 rtx op0, op1, temp, decl_rtl; local
9916 rtx op0, op1; local
10080 rtx op1, op2, index; local
[all...]
H A Dtree-scalar-evolution.c1800 tree type = TREE_TYPE (expr), op0, op1;
1808 extract_ops_from_tree (expr, &code, &op0, &op1);
1811 op0, code, op1);
2235 tree op1;
2242 op1 = instantiate_scev_r (instantiate_below, evolution_loop,
2245 if (op1 == chrec_dont_know)
2249 || CHREC_RIGHT (chrec) != op1)
2259 || (tree_is_chrec (op1) && CHREC_VARIABLE (op1) > var))
2262 op1
1796 tree type = TREE_TYPE (expr), op0, op1; local
2230 tree op1; local
2284 tree op1; local
2438 tree op1, op2; local
2485 tree op1; local
[all...]
H A Dtree-ssa-pre.c960 if (vro->op1)
963 print_generic_expr (outfile, vro->op1, 0);
1595 tree oldop1 = operand->op1;
1598 tree op1 = oldop1; local
1620 if (op1 && TREE_CODE (op1) == SSA_NAME)
1622 unsigned int op_val_id = VN_INFO (op1)->value_id;
1630 op1 = name;
1636 else if (op1 && !is_gimple_min_invariant (op1))
2877 tree op1; local
3060 pre_expr op1 = get_or_alloc_expr_for (nary->op[0]); local
3087 pre_expr op1 = get_or_alloc_expr_for (nary->op[0]); local
4293 tree op1 = gimple_cond_rhs (stmt); local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/iq2000/
H A Diq2000.c520 rtx op1 = operands[1];
522 enum rtx_code code1 = GET_CODE (op1);
540 subreg_offset1 += subreg_regno_offset (REGNO (SUBREG_REG (op1)),
541 GET_MODE (SUBREG_REG (op1)),
542 SUBREG_BYTE (op1),
543 GET_MODE (op1));
544 op1 = SUBREG_REG (op1);
545 code1 = GET_CODE (op1);
558 int regno1 = REGNO (op1)
513 rtx op1 = operands[1]; local
2292 const char *op1 = "%z2"; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/mips/
H A Dmdmx.c373 unsigned64 op1,
387 result = qh_map_op(op1, QH_ELEM(op2, fmtsel), qh_func[op]);
390 result = qh_vector_op(op1, ValueFPR(vt, fmt_mdmx), qh_func[op]);
393 result = qh_map_op(op1, vt, qh_func[op]);
402 result = ob_map_op(op1, OB_ELEM(op2, fmtsel), ob_func[op]);
405 result = ob_vector_op(op1, ValueFPR(vt, fmt_mdmx), ob_func[op]);
408 result = ob_map_op(op1, vt, ob_func[op]);
848 unsigned64 op1,
861 qh_map_acc(ACC.qh, op1, QH_ELEM(op2, fmtsel), qh_acc[op]);
864 qh_vector_acc(ACC.qh, op1, ValueFP
370 mdmx_cpr_op(sim_cpu *cpu, address_word cia, int op, unsigned64 op1, int vt, MX_fmtsel fmtsel) argument
845 mdmx_acc_op(sim_cpu *cpu, address_word cia, int op, unsigned64 op1, int vt, MX_fmtsel fmtsel) argument
1411 mdmx_shuffle(sim_cpu *cpu, address_word cia, int shop, unsigned64 op1, unsigned64 op2) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dloop-unswitch.c92 compare_and_jump_seq (rtx op0, rtx op1, enum rtx_code comp, rtx label, int prob, argument
100 mode = GET_MODE (op1);
111 gcc_assert (rtx_equal_p (op1, XEXP (cond, 1)));
123 op1 = force_operand (op1, NULL_RTX);
124 do_compare_rtx_and_jump (op0, op1, comp, 0,
H A Dfold-const.c1019 tree op1 = TREE_OPERAND (t, 1);
1020 if (TREE_INT_CST_HIGH (op1) == 0
1022 == TREE_INT_CST_LOW (op1))
1168 tree op1 = TREE_OPERAND (t, 1);
1169 if (TREE_INT_CST_HIGH (op1) == 0
1171 == TREE_INT_CST_LOW (op1))
1177 temp = fold_build2 (RSHIFT_EXPR, ntype, temp, op1);
1237 tree op1 = TREE_OPERAND (in, 1);
1244 else if (TREE_CODE (op1) == INTEGER_CST || TREE_CODE (op1)
1011 tree op1 = TREE_OPERAND (t, 1); local
1160 tree op1 = TREE_OPERAND (t, 1); local
1228 tree op1 = TREE_OPERAND (in, 1); local
4576 fold_range_test(enum tree_code code, tree type, tree op0, tree op1) argument
5120 optimize_minmax_comparison(enum tree_code code, tree type, tree op0, tree op1) argument
5269 tree op0 = NULL_TREE, op1 = NULL_TREE; local
5638 fold_binary_op_with_conditional_arg(enum tree_code code, tree type, tree op0, tree op1, tree cond, tree arg, int cond_first_p) argument
6436 try_move_mult_to_index(enum tree_code code, tree addr, tree op1) argument
7043 fold_binary(enum tree_code code, tree type, tree op0, tree op1) argument
7789 tree op1 = fold_convert (type, TREE_OPERAND (aref1, 1)); local
9866 tree op1 = TREE_OPERAND (cref1, 0); local
10048 fold_ternary(enum tree_code code, tree type, tree op0, tree op1, tree op2) argument
10392 tree op0, op1, op2; local
10727 fold_build3_stat(enum tree_code code, tree type, tree op0, tree op1, tree op2 MEM_STAT_DECL) argument
10823 fold_build2_initializer(enum tree_code code, tree type, tree op0, tree op1) argument
10835 fold_build3_initializer(enum tree_code code, tree type, tree op0, tree op1, tree op2) argument
10920 tree op1, t1; local
11360 fold_binary_to_constant(enum tree_code code, tree type, tree op0, tree op1) argument
11542 fold_relational_const(enum tree_code code, tree type, tree op0, tree op1) argument
[all...]
H A Dc-typeck.c2589 pointer_diff (tree op0, tree op1)
2595 tree orig_op1 = op1;
2614 con1 = TREE_CODE (op1) == NOP_EXPR ? TREE_OPERAND (op1, 0) : op1;
2635 op1 = lit1;
2645 convert (restype, op1), 0);
2646 /* This generates an error if op1 is pointer to incomplete type. */
2651 op1 = c_size_in_bytes (target_type);
2654 return fold_build2 (EXACT_DIV_EXPR, restype, op0, convert (restype, op1));
2576 pointer_diff(tree op0, tree op1) argument
2934 tree op0 = fold_convert (argtype, fold_offsetof (arg)), op1; local
3114 build_conditional_expr(tree ifexp, tree op1, tree op2) argument
6873 tree op1 = TREE_OPERAND (inner, 1); local
7635 tree op0, op1; local
[all...]
H A Dcse.c3010 rtx op1 = XEXP (*loc, 1);
3054 p->exp, op1);
3415 rtx op1 = gen_lowpart_common (mode, XEXP (elt->exp, 1));
3423 if (op1 && !REG_P (op1) && ! CONSTANT_P (op1))
3424 op1 = fold_rtx (op1, NULL_RTX);
3426 if (op1)
3427 op1
2993 rtx op1 = XEXP (*loc, 1); local
3396 rtx op1 = gen_lowpart_common (mode, XEXP (elt->exp, 1)); local
4169 rtx op1 = const_arg1 ? const_arg1 : folded_arg1; local
4463 rtx op0, op1; local
4523 record_jump_cond(enum rtx_code code, enum machine_mode mode, rtx op0, rtx op1, int reversed_nonequality) argument
[all...]
H A Dtree-ssa-ccp.c900 tree op1 = TREE_OPERAND (rhs, 1); local
910 if (TREE_CODE (op1) == SSA_NAME)
912 prop_value_t *val = get_value (op1, true);
914 op1 = val->value;
917 return fold_binary (code, TREE_TYPE (rhs), op0, op1);
1824 tree op1 = TREE_OPERAND (expr, 1); local
1833 /* Canonicalize the integral operand to op1. */
1838 t = op0, op0 = op1, op1 = t;
1841 if (TREE_CODE (op1) !
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/i386/
H A Di386.c9790 rtx op0 = disp, op1;
9801 op1 = XEXP (XEXP (disp, 0), 1);
9802 if (!CONST_INT_P (op1)
9803 || INTVAL (op1) >= 16*1024*1024
9804 || INTVAL (op1) < -16*1024*1024)
10300 rtx op0 = XEXP (addr, 0), op1 = XEXP (addr, 1);
10305 && CONST_INT_P (op1))
10313 new_rtx = gen_rtx_PLUS (Pmode, new_rtx, op1);
10325 if (INTVAL (op1) < -16*1024*1024
10326 || INTVAL (op1) >
9768 rtx op0 = disp, op1; local
10277 rtx op0 = XEXP (addr, 0), op1 = XEXP (addr, 1); local
13013 rtx op0, op1; local
13139 rtx op0 = operands[0], op1 = operands[1]; local
13246 rtx op0, op1, m; local
14414 rtx dest, op0, op1, mask, nmask; local
14510 rtx dest, scratch, op0, op1, mask, nmask, x; local
14630 ix86_expand_int_compare(enum rtx_code code, rtx op0, rtx op1) argument
14663 ix86_cc_mode(enum rtx_code code, rtx op0, rtx op1) argument
14888 rtx op0 = *pop0, op1 = *pop1; local
15001 ix86_expand_fp_compare(enum rtx_code code, rtx op0, rtx op1, rtx scratch) argument
15168 rtx op0, op1, ret; local
15357 ix86_split_fp_branch(enum rtx_code code, rtx op1, rtx op2, rtx target1, rtx target2, rtx tmp, rtx pushed) argument
15401 ix86_expand_carry_flag_compare(enum rtx_code code, rtx op0, rtx op1, rtx *pop) argument
22881 rtx op1 = expand_normal (arg1); local
23115 rtx op1, op0 = expand_normal (arg0); local
23152 rtx op1 = expand_normal (arg1); local
23204 rtx op1 = expand_normal (arg1); local
23257 rtx op1 = expand_normal (arg1); local
23305 rtx op1 = expand_normal (arg1); local
23408 rtx op1 = expand_normal (arg1); local
24168 rtx op0, op1, target; local
24213 rtx op0, op1, op2, pat; local
25763 rtx op1 = XEXP (x, 1); local
26819 rtx target, op0, op1; member in struct:expand_vec_perm_d
27370 rtx op0, op1; local
27482 rtx ops[32], op0, op1; local
27724 rtx op0, op1; local
28240 ix86_emit_i387_log1p(rtx op0, rtx op1) argument
28528 ix86_expand_sse_compare_and_jump(enum rtx_code code, rtx op0, rtx op1, bool swap_operands) argument
28557 ix86_expand_sse_compare_mask(enum rtx_code code, rtx op0, rtx op1, bool swap_operands) argument
28598 ix86_expand_lround(rtx op0, rtx op1) argument
28628 ix86_expand_lfloorceil(rtx op0, rtx op1, bool do_floor) argument
29226 expand_vselect_vconcat(rtx target, rtx op0, rtx op1, const unsigned char *perm, unsigned nelt) argument
29245 rtx target, op0, op1, x; local
29395 rtx rperm[16], vperm, target, op0, op1; local
30262 ix86_expand_vec_extract_even_odd(rtx targ, rtx op0, rtx op1, unsigned odd) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/hppa/hppa/
H A Ddb_disasm.c1877 u_int op1, r1, fmt, t; local
1881 op1 = CoprExt1(w);
1883 fmt = (op1 >> 2) & 3; /* get precision of source */
1890 r1 = (op1 >> 11) & 0x3e;
1894 if (op1 & 2) { /* class 2 or 3 */
1898 r2 = (op1 >> 6) & 0x3e;
1902 if ((op1 & 1) == 0) { /* class 2 */
1904 switch((op1 >> 4) & 7) {
1924 switch((op1 >> 4) & 7) {
1934 } else if (op1
1980 fcoprDasm(union insn w, u_int op1, u_int op2) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/bfin/
H A Dbfin.c2199 rtx op0, op1;
2203 op1 = XEXP (op, 1);
2204 if (!insn_data[CODE_FOR_addsi3].operand[2].predicate (op1, mode))
2205 op1 = force_reg (mode, op1);
2208 emit_insn (gen_addsi3 (dest, op0, op1));
2823 rtx op0 = XEXP (cmp, 0), op1 = XEXP (cmp, 1);
2831 gcc_assert ((code == NE || code == EQ) && op1 == const0_rtx);
2852 gen_rtx_fmt_ee (code1, BImode, op0, op1)));
3114 rtx op0, op1;
2194 rtx op0, op1; local
2814 rtx op0 = XEXP (cmp, 0), op1 = XEXP (cmp, 1); local
3103 rtx op0, op1; local
6229 rtx op1 = expand_expr (arg1, NULL_RTX, VOIDmode, 0); local
6333 rtx op0, op1, op2, accvec, pat, tmp1, tmp2, a0reg, a1reg; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.misc-tests/
H A Ddectest.exp164 proc c-binary-expression {operation op1 op2} {
167 if [catch {set result "$op1 $operators($operation) $op2"}] {
170 set result "$libfuncs($operation) ($op1, $op2)"
264 proc make-c-test {testcase id operation result conditions op1 {op2 "NONE"}} {
277 if {[string index $op1 0] == "\#"} {
278 puts $outfd " static unsigned char fill\[[c-sizeof-decimal-type]\] = [transform-hex-constant $op1];"
289 if {[string index $op1 0] == "\#"} {
292 puts $outfd " u.d = [c-unary-expression $operation [c-operand $op1]];"
295 puts $outfd " u.d = [c-binary-expression $operation [c-operand $op1] [c-operand $op2]];"
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/tests/
H A Dtsi_op.c39 const char * op1; member in struct:__anon2794
108 mpfr_set_str (x, tab[i].op1, 16, MPFR_RNDN);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dformatted-ref.exp115 proc test_p_op1_equals_op2 {op1 op2} {
116 set test "print $op1 == $op2"
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/torture/
H A D20090706-1.C22 template <class T> static T combine(const T &op1, const T &op2);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/picochip/
H A Dpicochip.c2402 rtx op1 = XEXP (operand, 1);
2406 picochip_print_operand (file, op1, 0);
3687 rtx op0, op1, pat;
3696 op1 = expand_expr (arg1, NULL_RTX, VOIDmode, 0);
3707 if (!(*insn_data[icode].operand[2].predicate) (op1, mode1))
3708 op1 = copy_to_mode_reg (mode1, op1);
3717 pat = GEN_FCN (icode) (target, op0, op1);
3731 rtx op0, op1, pat;
3740 op1
2386 rtx op1 = XEXP (operand, 1); local
3669 rtx op0, op1, pat; local
3713 rtx op0, op1, pat; local
3750 rtx op0, op1, op2, pat; local
3794 rtx op0, op1, op2, op3, pat; local
3838 rtx op0, op1, op2, pat; local
[all...]

Completed in 612 milliseconds

1234567891011>>