Lines Matching refs:adrp
226 uint32_t adrp = PatchAdrp(insn, adrp_disp); in PatchPcRelativeReference() local
241 SetInsn(¤t_method_thunks_, thunks_code_offset, adrp); in PatchPcRelativeReference()
283 uint32_t adrp = GetInsn(code, pc_insn_offset); in PatchPcRelativeReference() local
284 if ((adrp & 0x9f000000u) != 0x90000000u) { in PatchPcRelativeReference()
286 CHECK_EQ(adrp & 0xfc000000u, 0x14000000u); // B <thunk> in PatchPcRelativeReference()
295 adrp = GetInsn(¤t_method_thunks_, idx * kAdrpThunkSize); in PatchPcRelativeReference()
300 CHECK_EQ(adrp & 0x9f00001fu, // Check that pc_insn_offset points in PatchPcRelativeReference()
355 uint32_t Arm64RelativePatcher::PatchAdrp(uint32_t adrp, uint32_t disp) { in PatchAdrp() argument
356 return (adrp & 0x9f00001fu) | // Clear offset bits, keep ADRP with destination reg. in PatchAdrp()
388 uint32_t adrp = GetInsn(code, literal_offset); in NeedsErratum843419Thunk() local
389 DCHECK_EQ(adrp & 0x9f000000, 0x90000000); in NeedsErratum843419Thunk()
399 (((next_insn >> 5) ^ adrp) & 0x1f) == 0) { in NeedsErratum843419Thunk()
408 ((((next_insn >> 5) ^ adrp) & 0x1f) == 0 || ((next_insn ^ adrp) & 0x1f) != 0)) { in NeedsErratum843419Thunk()