Searched refs:MINUS (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-10.1-release/usr.bin/xlint/lint1/
H A Dop.h78 MINUS, enumerator in enum:__anon11896
H A Dtree.c129 { MINUS, { 1,0,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,
623 case MINUS:
889 case MINUS:
2336 * Create a node for operators PLUS and MINUS.
2366 if (ln->tn_type->t_tspec != PTR || op != MINUS)
2697 case MINUS:
2866 case MINUS:
3503 case MINUS:
3697 * The expression can consist of PLUS, MINUS, AMPER, NAME, STRING and
3709 case MINUS
[all...]
H A Dscan.l135 "-" return (operator(T_ADDOP, MINUS));
/freebsd-10.1-release/usr.bin/at/
H A Dparsetime.c67 NUMBER, PLUS, MINUS, DOT, SLASH, ID, JUNK, enumerator in enum:__anon11756
250 return sc_tokid = MINUS;
408 if ((sc_tokid == EOF || sc_tokid == PLUS || sc_tokid == MINUS) &&
486 case MINUS:
621 /* MINUS is different from PLUS in that NOW is not
624 case MINUS:
/freebsd-10.1-release/contrib/one-true-awk/
H A Dmaketab.c60 { MINUS, "arith", " - " },
H A Dawkgram.y57 %token <i> ADD MINUS MULT DIVIDE MOD
354 | term '-' term { $$ = op2(MINUS, $1, $3); }
/freebsd-10.1-release/contrib/gcc/
H A Dloop-iv.c531 if (op == MINUS
628 case MINUS:
729 case MINUS:
875 iv->base = simplify_gen_binary (MINUS, outer_mode, def, outer_step);
944 case MINUS:
995 case MINUS:
1308 else if (GET_CODE (niter) == MINUS)
1367 case MINUS:
1495 && simplify_gen_binary (MINUS, mode, opb0, op0) == const1_rtx)
2096 iv0.step = simplify_gen_binary (MINUS, comp_mod
[all...]
H A Dsimplify-rtx.c531 if (GET_CODE (op) == MINUS
534 return simplify_gen_binary (MINUS, mode, XEXP (op, 1), XEXP (op, 0));
546 return simplify_gen_binary (MINUS, mode, temp, XEXP (op, 0));
551 return simplify_gen_binary (MINUS, mode, temp, XEXP (op, 1));
813 becomes just the MINUS if its mode is MODE. This allows
818 && GET_CODE (XEXP (op, 0)) == MINUS
1516 return simplify_gen_binary (MINUS, mode, op1, XEXP (op0, 0));
1518 return simplify_gen_binary (MINUS, mode, op0, XEXP (op1, 0));
1632 return simplify_gen_binary (MINUS, mode, op1,
1647 /* If one of the operands is a PLUS or a MINUS, se
[all...]
H A Dexplow.c297 else if (GET_CODE (x) == PLUS || GET_CODE (x) == MINUS
467 else if (GET_CODE (x) == MULT || GET_CODE (x) == MINUS)
1351 #define STACK_GROW_OP MINUS
1539 case MINUS:
H A Drtl.def66 an rtx code for a non-commutative binary operation (e.g., MINUS, DIV)
437 DEF_RTL_EXPR(MINUS, "minus", "ee", RTX_BIN_ARITH)
H A Dalias.c848 if (GET_CODE (src) != PLUS && GET_CODE (src) != MINUS)
854 case MINUS:
1038 case MINUS:
1415 if (GET_CODE (x) != PLUS && GET_CODE (x) != MINUS)
1420 case MINUS:
H A Dcse.c4002 /* NEG of PLUS could be converted into MINUS, but that causes
4004 (CONST (MINUS (CONST_INT) (SYMBOL_REF)))
4240 /* If the second operand is a LABEL_REF, see if the first is a MINUS
4242 the first operand of that MINUS. This handles switches with an
4247 = GET_CODE (folded_arg0) == MINUS ? folded_arg0
4248 : lookup_as_function (folded_arg0, MINUS);
4254 /* Now try for a CONST of a MINUS like the above. */
4257 && GET_CODE (XEXP (y, 0)) == MINUS
4267 = GET_CODE (folded_arg1) == MINUS ? folded_arg1
4268 : lookup_as_function (folded_arg1, MINUS);
[all...]
H A Dloop-unroll.c1149 simplify_gen_binary (MINUS, desc->mode, desc->niter_expr, const1_rtx);
1565 && GET_CODE (src) != MINUS
1992 if (ve->op == PLUS || ve->op == MINUS)
2035 if (ve->op == PLUS || ve->op == MINUS)
H A Dregmove.c1811 code = MINUS;
1878 if (code == MINUS)
1919 if (! overlap && (code == PLUS || code == MINUS))
1967 && (code == PLUS || code == MINUS) && insn_const
1976 If code is MINUS, this was already tried. */
H A Dcombine.c4338 if (code == PLUS || code == MINUS
4349 if ((code == PLUS || code == MINUS || code == MULT || code == DIV
4370 inner = simplify_binary_operation (code == MINUS ? PLUS
4602 case MINUS:
5054 if ((GET_CODE (t) == PLUS || GET_CODE (t) == MINUS
5069 || GET_CODE (XEXP (t, 0)) == MINUS
5105 || GET_CODE (XEXP (t, 0)) == MINUS
5871 else if (GET_CODE (pos) == MINUS
5878 pos = simplify_gen_binary (MINUS, GET_MODE (pos),
6458 next_code = (code == MEM || code == PLUS || code == MINUS
[all...]
H A Drtlanal.c458 if (GET_CODE (x) == MINUS
480 else if (GET_CODE (x) == MINUS
3632 case PLUS: case MINUS:
3665 case MINUS:
3711 && (code == PLUS || code == MINUS)
4136 case PLUS: case MINUS:
4162 && (code == PLUS || code == MINUS)
H A Dsched-vis.c106 case MINUS:
H A Dvmsdbgout.c513 case MINUS:
517 if (GET_CODE (x) != MINUS)
H A Doptabs.c5227 sub_optab = init_optab (MINUS);
5228 subv_optab = init_optabv (MINUS);
6040 case MINUS:
6139 case MINUS:
6179 && (code == PLUS || code == MINUS || code == XOR))
6210 code = MINUS;
6211 else if (code == MINUS)
/freebsd-10.1-release/crypto/heimdal/lib/asn1/
H A Dlex.l114 MINUS-INFINITY { return kw_MINUS_INFINITY; }
/freebsd-10.1-release/contrib/gcc/config/sparc/
H A Dsparc.h2128 is a PLUS, MINUS, NEG, or ASHIFT. CCmode should be used when no special
2451 else if (GET_CODE (addr) == MINUS \
2470 && GET_CODE (XEXP (addr, 0)) == MINUS \
2472 && GET_CODE (XEXP (XEXP (XEXP (addr, 0), 1), 0)) == MINUS \
/freebsd-10.1-release/usr.bin/bc/
H A Dbc.y166 %left PLUS MINUS
599 | MINUS expression %prec UMINUS
608 | expression MINUS expression
/freebsd-10.1-release/contrib/gcclibs/libcpp/include/
H A Dcpplib.h65 OP(MINUS, "-") \
/freebsd-10.1-release/contrib/gcc/config/arm/
H A Darm.c1651 case MINUS: /* Should only occur with (MINUS I reg) => rsb */
1666 IOR, AND, XOR, MINUS;
1716 /* For MINUS, the value is subtracted from, since we never
1718 if (code == MINUS)
1869 case MINUS:
1870 /* We treat MINUS as (val - source), since (source - val) is always
2365 if (code == SET || code == MINUS)
2368 if (can_invert && code != MINUS)
2388 else if (code == MINUS)
[all...]
/freebsd-10.1-release/contrib/gcc/config/s390/
H A Ds390.c528 if ((GET_CODE (op0) == PLUS || GET_CODE (op0) == MINUS
609 if (GET_CODE (op0) == MINUS
1152 addr_delta = simplify_binary_operation (MINUS, Pmode, addr2, addr1);
1190 addr_delta = simplify_binary_operation (MINUS, Pmode, addr2, addr1);
1768 && GET_CODE (disp) == MINUS
2138 case MINUS:
2282 || outer_code == PLUS || outer_code == MINUS
2489 case MINUS:
4145 ac->shift = expand_simple_binop (SImode, MINUS, ac->shift, byteoffset,
4260 if (code == PLUS || code == MINUS)
[all...]

Completed in 430 milliseconds

123