Lines Matching refs:pos
487 static void PatchBranchIntoNop(MacroAssembler* masm, int pos) {
488 masm->instr_at_put(pos, (masm->instr_at(pos) & ~B27) | (B24 | B20));
489 ASSERT(Assembler::IsTstImmediate(masm->instr_at(pos)));
492 static void PatchNopIntoBranch(MacroAssembler* masm, int pos) {
493 masm->instr_at_put(pos, (masm->instr_at(pos) & ~(B24 | B20)) | B27);
494 ASSERT(Assembler::IsBranch(masm->instr_at(pos)));