Searched defs:GetInsn (Results 1 - 1 of 1) sorted by relevance

/art/compiler/linker/arm64/
H A Drelative_patcher_arm64.cc146 DCHECK_EQ(GetInsn(code, literal_offset) & 0xfc000000u, 0x94000000u);
158 uint32_t insn = GetInsn(code, literal_offset);
202 uint32_t adrp = GetInsn(code, pc_insn_offset);
214 adrp = GetInsn(&current_method_thunks_, idx * kAdrpThunkSize);
262 uint32_t adrp = GetInsn(code, literal_offset);
265 uint32_t next_insn = GetInsn(code, literal_offset + 4u);
308 uint32_t Arm64RelativePatcher::GetInsn(ArrayRef<const uint8_t> code, uint32_t offset) { function in class:art::linker::Arm64RelativePatcher
320 uint32_t Arm64RelativePatcher::GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset) { function in class:art::linker::Arm64RelativePatcher
321 return GetInsn(ArrayRef<const uint8_t>(*code), offset);

Completed in 38 milliseconds