Home | History | Annotate | Download | only in mips

Lines Matching refs:pos

498   static void PatchBranchIntoNop(MacroAssembler* masm, int pos) {
499 const unsigned offset = masm->instr_at(pos) & kImm16Mask;
500 masm->instr_at_put(pos, BNE | (zero_reg.code() << kRsShift) |
502 ASSERT(Assembler::IsBne(masm->instr_at(pos)));
505 static void PatchNopIntoBranch(MacroAssembler* masm, int pos) {
506 const unsigned offset = masm->instr_at(pos) & kImm16Mask;
507 masm->instr_at_put(pos, BEQ | (zero_reg.code() << kRsShift) |
509 ASSERT(Assembler::IsBeq(masm->instr_at(pos)));