Home
last modified time | relevance | path

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

/art/dex2oat/linker/arm64/
Drelative_patcher_arm64.cc211 uint32_t insn = GetInsn(code, literal_offset); in PatchPcRelativeReference()
283 uint32_t adrp = GetInsn(code, pc_insn_offset); in PatchPcRelativeReference()
295 adrp = GetInsn(&current_method_thunks_, idx * kAdrpThunkSize); in PatchPcRelativeReference()
324 uint32_t insn = GetInsn(code, literal_offset); in PatchBakerReadBarrierBranch()
378 DCHECK_EQ(GetInsn(code, literal_offset) & 0xfc000000u, 0x94000000u); in PatchBl()
388 uint32_t adrp = GetInsn(code, literal_offset); in NeedsErratum843419Thunk()
391 uint32_t next_insn = GetInsn(code, literal_offset + 4u); in NeedsErratum843419Thunk()
443 uint32_t Arm64RelativePatcher::GetInsn(ArrayRef<const uint8_t> code, uint32_t offset) { in GetInsn() function in art::linker::Arm64RelativePatcher
455 uint32_t Arm64RelativePatcher::GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset) { in GetInsn() function in art::linker::Arm64RelativePatcher
456 return GetInsn(ArrayRef<const uint8_t>(*code), offset); in GetInsn()
Drelative_patcher_arm64.h68 static uint32_t GetInsn(ArrayRef<const uint8_t> code, uint32_t offset);
71 static uint32_t GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset);
/art/compiler/optimizing/
Dcode_generator_arm64.cc991 auto GetInsn = [&code](uint32_t offset) { in Finalize() local
1007 uint32_t next_insn = GetInsn(literal_offset + 4u); in Finalize()
1022 uint32_t next_insn = GetInsn(literal_offset + 4u); in Finalize()
1033 uint32_t prev_insn = GetInsn(literal_offset - 4u); in Finalize()