Searched refs:GetInsn (Results 1 – 5 of 5) sorted by relevance
/art/dex2oat/linker/riscv64/ |
D | relative_patcher_riscv64.cc | 69 uint32_t insn = GetInsn(code, literal_offset); in PatchPcRelativeReference() 84 DCHECK_EQ(GetInsn(code, pc_insn_offset) & 0x00000fffu, in PatchPcRelativeReference() 137 uint32_t Riscv64RelativePatcher::GetInsn(ArrayRef<const uint8_t> code, uint32_t offset) { in GetInsn() function in art::linker::Riscv64RelativePatcher 149 uint32_t Riscv64RelativePatcher::GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset) { in GetInsn() function in art::linker::Riscv64RelativePatcher 150 return GetInsn(ArrayRef<const uint8_t>(*code), offset); in GetInsn()
|
D | relative_patcher_riscv64.h | 59 static uint32_t GetInsn(ArrayRef<const uint8_t> code, uint32_t offset); 61 uint32_t GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset);
|
/art/dex2oat/linker/arm64/ |
D | relative_patcher_arm64.cc | 213 uint32_t insn = GetInsn(code, literal_offset); in PatchPcRelativeReference() 286 uint32_t adrp = GetInsn(code, pc_insn_offset); in PatchPcRelativeReference() 298 adrp = GetInsn(¤t_method_thunks_, idx * kAdrpThunkSize); in PatchPcRelativeReference() 327 uint32_t insn = GetInsn(code, literal_offset); in PatchBakerReadBarrierBranch() 381 DCHECK_EQ(GetInsn(code, literal_offset) & 0xfc000000u, 0x94000000u); in PatchBl() 391 uint32_t adrp = GetInsn(code, literal_offset); in NeedsErratum843419Thunk() 394 uint32_t next_insn = GetInsn(code, literal_offset + 4u); in NeedsErratum843419Thunk() 446 uint32_t Arm64RelativePatcher::GetInsn(ArrayRef<const uint8_t> code, uint32_t offset) { in GetInsn() function in art::linker::Arm64RelativePatcher 458 uint32_t Arm64RelativePatcher::GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset) { in GetInsn() function in art::linker::Arm64RelativePatcher 459 return GetInsn(ArrayRef<const uint8_t>(*code), offset); in GetInsn()
|
D | relative_patcher_arm64.h | 64 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/ |
D | code_generator_arm64.cc | 1083 auto GetInsn = [&code](uint32_t offset) { in Finalize() local 1099 uint32_t next_insn = GetInsn(literal_offset + 4u); in Finalize() 1114 uint32_t next_insn = GetInsn(literal_offset + 4u); in Finalize() 1125 uint32_t prev_insn = GetInsn(literal_offset - 4u); in Finalize()
|