Home | History | Annotate | Download | only in gcc

Lines Matching refs:cop

211 /* Build a cond stmt out of COP, LHS, RHS, insert it before *GSIP with
220 int flags, enum tree_code cop, tree lhs, tree rhs)
224 gcond *cond = gimple_build_cond (cop, lhs, rhs, NULL, NULL);
270 values (see detach_value above) for the COP compare. */
274 enum tree_code cop, tree lhs, tree rhs)
298 insert_check_and_trap (loc, &gsik, flags, cop, lhs, rhs);
325 l1': if (x' cop y') goto l1'trap; else goto l1;
327 l2': if (x' cop y') goto l2; else goto l2'trap;
330 where cop is a complementary boolean operation to op; l1', l1'trap,
341 enum tree_code cop = invert_tree_comparison (op, HONOR_NANS (lhs));
343 if (cop == ERROR_MARK)
347 insert_edge_check_and_trap (loc, EDGE_SUCC (bb, 0), cop, lhs, rhs);
348 insert_edge_check_and_trap (loc, EDGE_SUCC (bb, 1), cop, lhs, rhs);
409 z' = x' cop y';
412 where cop is a complementary boolean operation to op; and x'
420 enum tree_code cop;
438 cop = invert_tree_comparison (op,
442 if (cop == ERROR_MARK)
506 gassign *asgnck = gimple_build_assign (rhs, cop, op1, op2);