Lines Matching defs:cc
89 void EmitJump(Condition cc, Label* target, Label::Distance near_jump) {
91 ASSERT(cc == carry || cc == not_carry);
93 __ j(cc, target, near_jump);
662 void FullCodeGenerator::Split(Condition cc,
667 __ j(cc, if_true);
669 __ j(NegateCondition(cc), if_false);
671 __ j(cc, if_true);
4682 Condition cc = CompareIC::ComputeCondition(op);
4693 Split(cc, if_true, if_false, NULL);
4705 Split(cc, if_true, if_false, fall_through);