Lines Matching defs:cond
230 bool is_near(Label* L, Condition cond);
687 void bc_short(Condition cond, Label* L, CRegister cr = cr7,
689 DCHECK(cond != al);
696 switch (cond) {
732 void bclr(Condition cond, CRegister cr = cr7, LKBit lk = LeaveLK) {
733 DCHECK(cond != al);
738 switch (cond) {
775 void isel(Condition cond, Register rt, Register ra, Register rb,
777 DCHECK(cond != al);
782 switch (cond) {
818 void b(Condition cond, Label* L, CRegister cr = cr7, LKBit lk = LeaveLK) {
819 if (cond == al) {
824 if ((L->is_bound() && is_near(L, cond)) || !is_trampoline_emitted()) {
825 bc_short(cond, L, cr, lk);
830 Condition neg_cond = NegateCondition(cond);
1033 void stop(Condition cond = al, int32_t code = kDefaultStopCode,