/art/libdexfile/dex/ |
D | dex_instruction_utils.h | 92 constexpr bool IsInstructionIGet(Instruction::Code code) { in IsInstructionIGet() 96 constexpr bool IsInstructionIPut(Instruction::Code code) { in IsInstructionIPut() 100 constexpr bool IsInstructionSGet(Instruction::Code code) { in IsInstructionSGet() 104 constexpr bool IsInstructionSPut(Instruction::Code code) { in IsInstructionSPut() 108 constexpr bool IsInstructionAGet(Instruction::Code code) { in IsInstructionAGet() 112 constexpr bool IsInstructionAPut(Instruction::Code code) { in IsInstructionAPut() 116 constexpr bool IsInstructionIGetOrIPut(Instruction::Code code) { in IsInstructionIGetOrIPut() 120 constexpr bool IsInstructionIGetQuickOrIPutQuick(Instruction::Code code) { in IsInstructionIGetQuickOrIPutQuick() 125 constexpr bool IsInstructionSGetOrSPut(Instruction::Code code) { in IsInstructionSGetOrSPut() 129 constexpr bool IsInstructionAGetOrAPut(Instruction::Code code) { in IsInstructionAGetOrAPut() [all …]
|
D | dex_instruction_test.cc | 142 Instruction::Code code, in Build35c() 159 static std::string DumpInst35c(Instruction::Code code, in DumpInst35c()
|
/art/runtime/ |
D | oat_file-inl.h | 28 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetOatQuickMethodHeader() local 53 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetFrameSizeInBytes() local 61 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetCoreSpillMask() local 69 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetFpSpillMask() local 90 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetVmapTable() local 102 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetQuickCodeSize() local
|
/art/dex2oat/linker/arm/ |
D | relative_patcher_thumb2.cc | 57 void Thumb2RelativePatcher::PatchCall(std::vector<uint8_t>* code, in PatchCall() 85 void Thumb2RelativePatcher::PatchPcRelativeReference(std::vector<uint8_t>* code, in PatchPcRelativeReference() 105 void Thumb2RelativePatcher::PatchBakerReadBarrierBranch(std::vector<uint8_t>* code, in PatchBakerReadBarrierBranch() 145 void Thumb2RelativePatcher::SetInsn32(std::vector<uint8_t>* code, uint32_t offset, uint32_t value) { in SetInsn32() 155 uint32_t Thumb2RelativePatcher::GetInsn32(ArrayRef<const uint8_t> code, uint32_t offset) { in GetInsn32() 167 uint32_t Thumb2RelativePatcher::GetInsn32(Vector* code, uint32_t offset) { in GetInsn32() 172 uint32_t Thumb2RelativePatcher::GetInsn16(ArrayRef<const uint8_t> code, uint32_t offset) { in GetInsn16() 180 uint32_t Thumb2RelativePatcher::GetInsn16(Vector* code, uint32_t offset) { in GetInsn16()
|
D | relative_patcher_thumb2_test.cc | 76 void InsertInsn(std::vector<uint8_t>* code, size_t pos, uint32_t insn) { in InsertInsn() 97 void PushBackInsn(std::vector<uint8_t>* code, uint32_t insn) { in PushBackInsn() 215 ArenaVector<uint8_t> code(helper.GetAllocator()->Adapter()); in CompileThunk() local 222 const ArrayRef<const uint8_t>& code, in AddCompiledMethod() 685 ArrayRef<const uint8_t> code(raw_code); in TestBakerFieldWide() local 783 ArrayRef<const uint8_t> code(raw_code); in TestBakerFieldNarrow() local 1086 ArrayRef<const uint8_t> code(raw_code); in TEST_F() local 1163 ArrayRef<const uint8_t> code(raw_code); in TEST_F() local 1218 ArrayRef<const uint8_t> code(raw_code); in TEST_F() local 1261 std::vector<uint8_t> code; in TEST_F() local
|
/art/compiler/utils/arm64/ |
D | assembler_arm64.h | 123 static vixl::aarch64::Register reg_x(int code) { in reg_x() 133 static vixl::aarch64::Register reg_w(int code) { in reg_w() 143 static vixl::aarch64::FPRegister reg_d(int code) { in reg_d() 147 static vixl::aarch64::FPRegister reg_s(int code) { in reg_s()
|
/art/dex2oat/linker/arm64/ |
D | relative_patcher_arm64.cc | 124 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); in ReserveSpace() local 190 void Arm64RelativePatcher::PatchCall(std::vector<uint8_t>* code, in PatchCall() 210 void Arm64RelativePatcher::PatchPcRelativeReference(std::vector<uint8_t>* code, in PatchPcRelativeReference() 310 void Arm64RelativePatcher::PatchBakerReadBarrierBranch(std::vector<uint8_t>* code, in PatchBakerReadBarrierBranch() 360 bool Arm64RelativePatcher::NeedsErratum843419Thunk(ArrayRef<const uint8_t> code, in NeedsErratum843419Thunk() 410 void Arm64RelativePatcher::SetInsn(std::vector<uint8_t>* code, uint32_t offset, uint32_t value) { in SetInsn() 420 uint32_t Arm64RelativePatcher::GetInsn(ArrayRef<const uint8_t> code, uint32_t offset) { in GetInsn() 432 uint32_t Arm64RelativePatcher::GetInsn(std::vector<uint8_t, Alloc>* code, uint32_t offset) { in GetInsn()
|
/art/compiler/trampolines/ |
D | trampoline_compiler.cc | 88 MemoryRegion code(entry_stub->data(), entry_stub->size()); in CreateTrampoline() local 130 MemoryRegion code(entry_stub->data(), entry_stub->size()); in CreateTrampoline() local 162 MemoryRegion code(entry_stub->data(), entry_stub->size()); in CreateTrampoline() local 194 MemoryRegion code(entry_stub->data(), entry_stub->size()); in CreateTrampoline() local 215 MemoryRegion code(entry_stub->data(), entry_stub->size()); in CreateTrampoline() local 236 MemoryRegion code(entry_stub->data(), entry_stub->size()); in CreateTrampoline() local
|
/art/dex2oat/linker/ |
D | relative_patcher_test.h | 137 const auto code = compiled_method->GetQuickCode(); in Link() local 168 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); in Link() local 277 ArrayRef<const uint8_t> code, in SetThunkCode() 283 /*out*/ ArrayRef<const uint8_t>* code, in GetThunkCode() 329 ThunkValue(ArrayRef<const uint8_t> code, const std::string& debug_name) in ThunkValue()
|
D | multi_oat_relative_patcher.h | 98 void PatchCall(std::vector<uint8_t>* code, in PatchCall() 108 void PatchPcRelativeReference(std::vector<uint8_t>* code, in PatchPcRelativeReference() 117 void PatchBakerReadBarrierBranch(std::vector<uint8_t>* code, in PatchBakerReadBarrierBranch()
|
D | multi_oat_relative_patcher.cc | 29 /*out*/ ArrayRef<const uint8_t>* code, in GetThunkCode()
|
/art/compiler/driver/ |
D | compiled_method_storage.cc | 130 ThunkMapValue(std::vector<uint8_t, SwapAllocator<uint8_t>>&& code, in ThunkMapValue() 178 const ArrayRef<const uint8_t>& code) { in DeduplicateCode() 182 void CompiledMethodStorage::ReleaseCode(const LengthPrefixedArray<uint8_t>* code) { in ReleaseCode() 253 ArrayRef<const uint8_t> code, in SetThunkCode()
|
D | compiled_method_storage_test.cc | 32 ArrayRef<const uint8_t> code[] = { in TEST() local
|
/art/runtime/arch/x86_64/ |
D | thread_x86_64.cc | 37 static void arch_prctl(int code, void* val) { in arch_prctl()
|
/art/dex2oat/linker/x86_64/ |
D | relative_patcher_x86_64.cc | 25 void X86_64RelativePatcher::PatchPcRelativeReference(std::vector<uint8_t>* code, in PatchPcRelativeReference()
|
/art/dex2oat/linker/x86/ |
D | relative_patcher_x86.cc | 25 void X86RelativePatcher::PatchPcRelativeReference(std::vector<uint8_t>* code, in PatchPcRelativeReference()
|
D | relative_patcher_x86_test.cc | 122 ArrayRef<const uint8_t> code(raw_code); in TEST_F() local 154 ArrayRef<const uint8_t> code(raw_code); in TEST_F() local
|
D | relative_patcher_x86_base.cc | 44 void X86BaseRelativePatcher::PatchCall(std::vector<uint8_t>* code, in PatchCall()
|
/art/test/701-easy-div-rem/ |
D | genMain.py | 85 code = \ variable
|
/art/compiler/dex/ |
D | verified_method.cc | 71 const Instruction::Code code = inst.Opcode(); in GenerateSafeCastSet() local
|
/art/compiler/jni/quick/ |
D | jni_compiler.h | 34 std::vector<uint8_t>&& code, in JniCompiledMethod()
|
/art/compiler/jni/ |
D | jni_cfi_test.cc | 92 MemoryRegion code(&actual_asm[0], actual_asm.size()); in TestImplSized() local
|
/art/dex2oat/linker/mips/ |
D | relative_patcher_mips.cc | 48 void MipsRelativePatcher::PatchPcRelativeReference(std::vector<uint8_t>* code, in PatchPcRelativeReference()
|
/art/dex2oat/linker/mips64/ |
D | relative_patcher_mips64.cc | 48 void Mips64RelativePatcher::PatchPcRelativeReference(std::vector<uint8_t>* code, in PatchPcRelativeReference()
|
/art/compiler/optimizing/ |
D | common_arm64.h | 46 inline int VIXLRegCodeFromART(int code) { in VIXLRegCodeFromART() 56 inline int ARTRegCodeFromVIXL(int code) { in ARTRegCodeFromVIXL()
|