Home | History | Annotate | Download | only in ia32

Lines Matching defs:cc

66   void EmitJump(Condition cc, Label* target, Label::Distance distance) {
68 ASSERT(cc == carry || cc == not_carry);
70 __ j(cc, target, distance);
648 void FullCodeGenerator::Split(Condition cc,
653 __ j(cc, if_true);
655 __ j(NegateCondition(cc), if_false);
657 __ 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);