Lines Matching defs:cond
428 void bc(Condition cond, const MemOperand& opnd) {
429 bc(cond, opnd.getIndexRegister(), opnd.getBaseRegister(),
432 void bc(Condition cond, Register x2, Register b2, const Operand& d2) {
433 rx_format(BC, cond, x2.code(), b2.code(), d2.immediate());
461 void pfd(Condition cond, const MemOperand& opnd) {
462 pfd(cond, opnd.getIndexRegister(), opnd.getBaseRegister(),
465 void pfd(Condition cond, Register x2, Register b2, const Operand& d2) {
466 rxy_format(PFD, cond, x2.code(), b2.code(), d2.immediate());
953 void b(Condition cond, Label* l, Label::Distance dist = Label::kFar,
955 branchOnCond(cond, branch_offset(l),
959 void bc_short(Condition cond, Label* l, Label::Distance dist = Label::kFar) {
960 b(cond, l, Label::kNear);
962 void bc_long(Condition cond, Label* l) { b(cond, l, Label::kFar, true); }
980 void b(Condition cond, Register r) { bcr(cond, r); }
1077 void jump(Handle<Code> target, RelocInfo::Mode rmode, Condition cond);
1277 void stop(Condition cond = al, int32_t code = kDefaultStopCode,