Home
last modified time | relevance | path

Searched refs:PatchShiftImm (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/arm/
Dassembler-arm-inl.h579 instr_ptr[0] = PatchShiftImm(instr_ptr[0], immediate & kImm8Mask); in set_target_address_at()
580 instr_ptr[1] = PatchShiftImm(instr_ptr[1], immediate & (kImm8Mask << 8)); in set_target_address_at()
581 instr_ptr[2] = PatchShiftImm(instr_ptr[2], immediate & (kImm8Mask << 16)); in set_target_address_at()
582 instr_ptr[3] = PatchShiftImm(instr_ptr[3], immediate & (kImm8Mask << 24)); in set_target_address_at()
Dassembler-arm.cc4735 Instr Assembler::PatchShiftImm(Instr instr, int immed) { in PatchShiftImm() function in v8::internal::Assembler
5207 instr_at_put(pc, PatchShiftImm(instr, (offset & kImm8Mask))); in PatchConstantPoolAccessInstruction()
5209 PatchShiftImm(instr_2, (offset & (kImm8Mask << 8)))); in PatchConstantPoolAccessInstruction()
5211 PatchShiftImm(instr_3, (offset & (kImm8Mask << 16)))); in PatchConstantPoolAccessInstruction()
5213 PatchShiftImm(instr_4, (offset & (kImm8Mask << 24)))); in PatchConstantPoolAccessInstruction()
Dassembler-arm.h1612 static Instr PatchShiftImm(Instr instr, int immed);