Home | History | Annotate | Download | only in x87

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);
647 void FullCodeGenerator::Split(Condition cc,
652 __ j(cc, if_true);
654 __ j(NegateCondition(cc), if_false);
656 __ j(cc, if_true);
4507 Condition cc = CompareIC::ComputeCondition(op);
4518 Split(cc, if_true, if_false, NULL);
4530 Split(cc, if_true, if_false, fall_through);