Lines Matching defs:cond

1921                                          const Operand& rk, Condition cond) {
1923 switch (cond) {
2198 #define BRANCH_ARGS_CHECK(cond, rj, rk) \
2199 DCHECK((cond == cc_always && rj == zero_reg && rk.rm() == zero_reg) || \
2200 (cond != cc_always && (rj != zero_reg || rk.rm() != zero_reg)))
2211 void TurboAssembler::Branch(Label* L, Condition cond, Register rj,
2214 BRANCH_ARGS_CHECK(cond, rj, rk);
2215 if (!BranchShortOrFallback(L, cond, rj, rk, need_link)) {
2216 if (cond != cc_always) {
2218 Condition neg_cond = NegateCondition(cond);
2228 if (cond != cc_always) {
2230 Condition neg_cond = NegateCondition(cond);
2238 BranchShort(L, cond, rj, rk, need_link);
2243 void TurboAssembler::Branch(Label* L, Condition cond, Register rj,
2248 Branch(L, cond, rj, Operand(scratch));
2268 bool TurboAssembler::BranchShortOrFallback(Label* L, Condition cond,
2282 switch (cond) {
2499 void TurboAssembler::BranchShort(Label* L, Condition cond, Register rj,
2501 BRANCH_ARGS_CHECK(cond, rj, rk);
2502 bool result = BranchShortOrFallback(L, cond, rj, rk, need_link);
2530 void TurboAssembler::Jump(Register target, Condition cond, Register rj,
2533 if (cond == cc_always) {
2536 BRANCH_ARGS_CHECK(cond, rj, rk);
2538 Branch(&skip, NegateCondition(cond), rj, rk);
2545 Condition cond, Register rj, const Operand& rk) {
2547 if (cond != cc_always) {
2548 Branch(&skip, NegateCondition(cond), rj, rk);
2558 void TurboAssembler::Jump(Address target, RelocInfo::Mode rmode, Condition cond,
2561 Jump(static_cast<intptr_t>(target), rmode, cond, rj, rk);
2565 Condition cond, Register rj, const Operand& rk) {
2570 if (cond != cc_always) {
2571 BranchShort(&skip, NegateCondition(cond), rj, rk);
2614 void TurboAssembler::Call(Register target, Condition cond, Register rj,
2617 if (cond == cc_always) {
2620 BRANCH_ARGS_CHECK(cond, rj, rk);
2622 Branch(&skip, NegateCondition(cond), rj, rk);
2643 void TurboAssembler::Call(Address target, RelocInfo::Mode rmode, Condition cond,
2647 if (cond != cc_always) {
2648 BranchShort(&skip, NegateCondition(cond), rj, rk);
2664 Condition cond, Register rj, const Operand& rk) {
2667 if (cond != cc_always) {
2668 BranchShort(&skip, NegateCondition(cond), rj, rk);
2691 Call(t7, cond, rj, rk);
2699 Call(t7, cond, rj, rk);
2827 void TurboAssembler::Ret(Condition cond, Register rj, const Operand& rk) {
2828 Jump(ra, cond, rj, rk);
2831 void TurboAssembler::Drop(int count, Condition cond, Register reg,
2839 if (cond != al) {
2840 Branch(&skip, NegateCondition(cond), reg, op);
2845 if (cond != al) {