Home
last modified time | relevance | path

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

/art/dex2oat/linker/arm64/
Drelative_patcher_arm64.cc205 DCHECK_EQ(GetInsn(code, literal_offset) & 0xfc000000u, 0x94000000u); in PatchCall()
217 uint32_t insn = GetInsn(code, literal_offset); in PatchPcRelativeReference()
284 uint32_t adrp = GetInsn(code, pc_insn_offset); in PatchPcRelativeReference()
296 adrp = GetInsn(&current_method_thunks_, idx * kAdrpThunkSize); in PatchPcRelativeReference()
317 uint32_t insn = GetInsn(code, literal_offset); in PatchBakerReadBarrierBranch()
365 uint32_t adrp = GetInsn(code, literal_offset); in NeedsErratum843419Thunk()
368 uint32_t next_insn = GetInsn(code, literal_offset + 4u); in NeedsErratum843419Thunk()
420 uint32_t Arm64RelativePatcher::GetInsn(ArrayRef<const uint8_t> code, uint32_t offset) { in GetInsn() function in art::linker::Arm64RelativePatcher
432 uint32_t Arm64RelativePatcher::GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset) { in GetInsn() function in art::linker::Arm64RelativePatcher
433 return GetInsn(ArrayRef<const uint8_t>(*code), offset); in GetInsn()
Drelative_patcher_arm64.h64 static uint32_t GetInsn(ArrayRef<const uint8_t> code, uint32_t offset);
67 static uint32_t GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset);
/art/compiler/optimizing/
Dcode_generator_arm64.cc945 auto GetInsn = [&code](uint32_t offset) { in Finalize() local
961 uint32_t next_insn = GetInsn(literal_offset + 4u); in Finalize()
976 uint32_t next_insn = GetInsn(literal_offset + 4u); in Finalize()
987 uint32_t prev_insn = GetInsn(literal_offset - 4u); in Finalize()