Home | History | Annotate | Download | only in mips

Lines Matching full:cond

50 void MacroAssembler::Jump(Register target, Condition cond,
52 Jump(Operand(target), cond, r1, r2);
57 Condition cond, Register r1, const Operand& r2) {
58 Jump(Operand(target), cond, r1, r2);
63 Condition cond, Register r1, const Operand& r2) {
65 Jump(reinterpret_cast<intptr_t>(target), rmode, cond, r1, r2);
70 Condition cond, Register r1, const Operand& r2) {
72 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
77 Condition cond, Register r1, const Operand& r2) {
78 Call(Operand(target), cond, r1, r2);
83 Condition cond, Register r1, const Operand& r2) {
84 Call(Operand(target), cond, r1, r2);
89 Condition cond, Register r1, const Operand& r2) {
91 Call(reinterpret_cast<intptr_t>(target), rmode, cond, r1, r2);
96 Condition cond, Register r1, const Operand& r2) {
98 Call(reinterpret_cast<intptr_t>(code.location()), rmode, cond, r1, r2);
102 void MacroAssembler::Ret(Condition cond, Register r1, const Operand& r2) {
103 Jump(Operand(ra), cond, r1, r2);
114 Condition cond,
116 Branch(NegateCondition(cond), 2, src1, src2);
423 void MacroAssembler::Branch(Condition cond, int16_t offset, Register rs,
430 } else if (cond != cc_always) {
437 switch (cond) {
490 void MacroAssembler::Branch(Condition cond, Label* L, Register rs,
495 } else if (cond != cc_always) {
503 switch (cond) {
560 void MacroAssembler::BranchAndLink(Condition cond, int16_t offset, Register rs,
565 } else if (cond != cc_always) {
570 switch (cond) {
635 void MacroAssembler::BranchAndLink(Condition cond, Label* L, Register rs,
640 } else if (cond != cc_always) {
645 switch (cond) {
711 Condition cond, Register rs, const Operand& rt) {
713 if (cond == cc_always) {
716 Branch(NegateCondition(cond), 2, rs, rt);
722 if (cond == cc_always) {
725 Branch(NegateCondition(cond), 2, rs, rt);
731 if (cond == cc_always) {
734 Branch(NegateCondition(cond), 2, rs, rt);
744 Condition cond, Register rs, const Operand& rt) {
746 if (cond == cc_always) {
749 Branch(NegateCondition(cond), 2, rs, rt);
755 if (cond == cc_always) {
758 Branch(NegateCondition(cond), 2, rs, rt);
764 if (cond == cc_always) {
767 Branch(NegateCondition(cond), 2, rs, rt);
780 void MacroAssembler::Drop(int count, Condition cond) {
808 void MacroAssembler::CallStub(CodeStub* stub, Condition cond,