Searched refs:GetInsn (Results 1 – 2 of 2) sorted by relevance
/art/compiler/linker/arm64/ |
D | relative_patcher_arm64.cc | 158 DCHECK_EQ(GetInsn(code, literal_offset) & 0xfc000000u, 0x94000000u); in PatchCall() 170 uint32_t insn = GetInsn(code, literal_offset); in PatchPcRelativeReference() 221 uint32_t adrp = GetInsn(code, pc_insn_offset); in PatchPcRelativeReference() 233 adrp = GetInsn(¤t_method_thunks_, idx * kAdrpThunkSize); in PatchPcRelativeReference() 283 uint32_t adrp = GetInsn(code, literal_offset); in NeedsErratum843419Thunk() 286 uint32_t next_insn = GetInsn(code, literal_offset + 4u); in NeedsErratum843419Thunk() 338 uint32_t Arm64RelativePatcher::GetInsn(ArrayRef<const uint8_t> code, uint32_t offset) { in GetInsn() function in art::linker::Arm64RelativePatcher 350 uint32_t Arm64RelativePatcher::GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset) { in GetInsn() function in art::linker::Arm64RelativePatcher 351 return GetInsn(ArrayRef<const uint8_t>(*code), offset); in GetInsn()
|
D | relative_patcher_arm64.h | 52 static uint32_t GetInsn(ArrayRef<const uint8_t> code, uint32_t offset); 55 static uint32_t GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset);
|