Lines Matching defs:cc
66 void EmitJump(Condition cc, Label* target, Label::Distance near_jump) {
68 ASSERT(cc == carry || cc == not_carry);
70 __ j(cc, target, near_jump);
669 void FullCodeGenerator::Split(Condition cc,
674 __ j(cc, if_true);
676 __ j(NegateCondition(cc), if_false);
678 __ j(cc, if_true);
4514 Condition cc = CompareIC::ComputeCondition(op);
4525 Split(cc, if_true, if_false, NULL);
4537 Split(cc, if_true, if_false, fall_through);