Searched refs:PatchShiftImm (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/arm/ |
D | assembler-arm-inl.h | 613 instr_ptr[0] = PatchShiftImm(instr_ptr[0], immediate & kImm8Mask); in set_target_address_at() 614 instr_ptr[1] = PatchShiftImm(instr_ptr[1], immediate & (kImm8Mask << 8)); in set_target_address_at() 615 instr_ptr[2] = PatchShiftImm(instr_ptr[2], immediate & (kImm8Mask << 16)); in set_target_address_at() 616 instr_ptr[3] = PatchShiftImm(instr_ptr[3], immediate & (kImm8Mask << 24)); in set_target_address_at()
|
D | assembler-arm.cc | 3597 Instr Assembler::PatchShiftImm(Instr instr, int immed) { in PatchShiftImm() function in v8::internal::Assembler 4087 instr_at_put(pc, PatchShiftImm(instr, (offset & kImm8Mask))); in PatchConstantPoolAccessInstruction() 4089 PatchShiftImm(instr_2, (offset & (kImm8Mask << 8)))); in PatchConstantPoolAccessInstruction() 4091 PatchShiftImm(instr_3, (offset & (kImm8Mask << 16)))); in PatchConstantPoolAccessInstruction() 4093 PatchShiftImm(instr_4, (offset & (kImm8Mask << 24)))); in PatchConstantPoolAccessInstruction()
|
D | assembler-arm.h | 1430 static Instr PatchShiftImm(Instr instr, int immed);
|