/aosp_15_r20/art/runtime/oat/ |
H A D | oat_quick_method_header.h | 59 DCHECK(IsAlignedParam(code, GetInstructionSetCodeAlignment(kRuntimeQuickCodeISA)) || in FromCodePointer() 60 IsAlignedParam(header, GetInstructionSetCodeAlignment(kRuntimeQuickCodeISA))) in FromCodePointer() 71 GetInstructionSetCodeAlignment(kRuntimeQuickCodeISA)); in InstructionAlignedSize() 135 static_assert(kRuntimeQuickCodeISA != InstructionSet::kThumb2, in Contains() 137 if (kRuntimeQuickCodeISA == InstructionSet::kArm) { in Contains() 149 static_assert(kRuntimeQuickCodeISA != InstructionSet::kThumb2, in GetEntryPoint() 151 return (kRuntimeQuickCodeISA == InstructionSet::kArm) in GetEntryPoint() 175 POPCOUNT(frame_info.CoreSpillMask()) * GetBytesPerGprSpillLocation(kRuntimeQuickCodeISA); in GetShouldDeoptimizeFlagOffset() 177 POPCOUNT(frame_info.FpSpillMask()) * GetBytesPerFprSpillLocation(kRuntimeQuickCodeISA); in GetShouldDeoptimizeFlagOffset()
|
H A D | oat_quick_method_header.cc | 78 stack_map.GetNativePcOffset(kRuntimeQuickCodeISA); in ToNativeQuickPc() 106 stack_map.GetNativePcOffset(kRuntimeQuickCodeISA); in ToNativeQuickPcForCatchHandlers()
|
H A D | oat_file_manager.cc | 222 kRuntimeQuickCodeISA, in OpenDexFilesFromOat() 371 kRuntimeQuickCodeISA, in OpenDexFilesFromOat() 550 kRuntimeQuickCodeISA, in OpenDexFilesFromOat_Impl() 839 kRuntimeQuickCodeISA, in RunBackgroundVerification()
|
H A D | oat_file_assistant_context.cc | 66 boot_image_info_list_by_isa_[kRuntimeQuickCodeISA];
|
H A D | stack_map.h | 472 InstructionSet isa = kRuntimeQuickCodeISA) const;
|
H A D | elf_file.cc | 1119 if (elf_ISA != kRuntimeQuickCodeISA) { in Load() 1121 oss << "Expected ISA " << kRuntimeQuickCodeISA << " but found " << elf_ISA; in Load()
|
H A D | oat_file_assistant.cc | 147 if (load_executable_ && isa != kRuntimeQuickCodeISA) { in OatFileAssistant()
|
/aosp_15_r20/art/runtime/ |
H A D | nterp_helpers.cc | 184 return QuickMethodFrameInfo(NterpGetFrameSize(*frame, kRuntimeQuickCodeISA), in NterpFrameInfo() 197 const uint16_t out_regs = GetNumberOfOutRegs(*frame, kRuntimeQuickCodeISA); in NterpGetReferenceArray() 207 const uint16_t out_regs = GetNumberOfOutRegs(*frame, kRuntimeQuickCodeISA); in NterpGetDexPC()
|
H A D | thread-inl.h | 602 ? GetStackOverflowReservedBytes(kRuntimeQuickCodeISA) in GetStackEndForInterpreter() 609 end += GetStackOverflowReservedBytes(kRuntimeQuickCodeISA); in GetStackEndForInterpreter() 619 GetStackBegin<stack_type>() + GetStackOverflowReservedBytes(kRuntimeQuickCodeISA)); in ResetDefaultStackEnd() 629 << GetStackOverflowReservedBytes(kRuntimeQuickCodeISA) << ")?"; in SetStackEndForStackOverflow()
|
H A D | stack.cc | 139 code_info.Dump(&vios, /* code_offset= */ 0u, /* verbose= */ true, kRuntimeQuickCodeISA); in GetDexPc() 410 if (kRuntimeQuickCodeISA == InstructionSet::kX86 && is_float) { in GetRegisterIfAccessible() 422 const bool target64 = Is64BitInstructionSet(kRuntimeQuickCodeISA); in GetRegisterIfAccessible() 806 POPCOUNT(frame_info.CoreSpillMask()) * GetBytesPerGprSpillLocation(kRuntimeQuickCodeISA); in GetShouldDeoptimizeFlagAddr() 808 POPCOUNT(frame_info.FpSpillMask()) * GetBytesPerFprSpillLocation(kRuntimeQuickCodeISA); in GetShouldDeoptimizeFlagAddr()
|
H A D | nterp_helpers.h | 76 EXPORT bool CanMethodUseNterp(ArtMethod* method, InstructionSet isa = kRuntimeQuickCodeISA)
|
H A D | runtime-inl.h | 46 DCHECK_EQ(instruction_set_, kRuntimeQuickCodeISA); in GetRuntimeMethodFrameInfo()
|
H A D | fault_handler.cc | 245 CHECK_EQ(kRuntimeQuickCodeISA, InstructionSet::kArm64); in CheckForUnrecognizedImplicitSuspendCheckInBootImage() 304 } else if (kRuntimeQuickCodeISA == InstructionSet::kArm64) { in HandleSigsegvFault()
|
H A D | runtime_test.cc | 99 kRuntimeQuickCodeISA); in TEST_F()
|
H A D | quick_exception_handler.cc | 801 if (kRuntimeQuickCodeISA == InstructionSet::kX86 || in DeoptimizePartialFragmentFixup() 802 kRuntimeQuickCodeISA == InstructionSet::kX86_64) { in DeoptimizePartialFragmentFixup()
|
H A D | thread.cc | 145 GetStackOverflowReservedBytes(kRuntimeQuickCodeISA); 729 GetStackOverflowReservedBytes(kRuntimeQuickCodeISA); in FixStackSize() 734 stack_size += GetStackOverflowReservedBytes(kRuntimeQuickCodeISA); in FixStackSize() 1384 RoundUp(GetStackOverflowReservedBytes(kRuntimeQuickCodeISA) + 4 * KB, gPageSize); in InitStack()
|
H A D | runtime_image.cc | 1146 OatHeader::Create(kRuntimeQuickCodeISA, in WriteObjects() 1859 GetInstructionSetString(kRuntimeQuickCodeISA)); in GetRuntimeImagePath()
|
/aosp_15_r20/art/runtime/entrypoints/quick/ |
H A D | quick_trampoline_entrypoints.cc | 186 (fpr_double_index_ * GetBytesPerFprSpillLocation(kRuntimeQuickCodeISA)); in GetParamAddress() 189 return fpr_args_ + (fpr_index_ * GetBytesPerFprSpillLocation(kRuntimeQuickCodeISA)); in GetParamAddress() 201 if ((GetBytesPerGprSpillLocation(kRuntimeQuickCodeISA) == 4) || in IsSplitLongOrDouble() 202 (GetBytesPerFprSpillLocation(kRuntimeQuickCodeISA) == 4)) { in IsSplitLongOrDouble() 308 is_split_long_or_double_ = (GetBytesPerGprSpillLocation(kRuntimeQuickCodeISA) == 4) && in VisitArguments() 324 if (GetBytesPerGprSpillLocation(kRuntimeQuickCodeISA) == 4) { in VisitArguments() 331 is_split_long_or_double_ = (GetBytesPerFprSpillLocation(kRuntimeQuickCodeISA) == 4) && in VisitArguments() 350 if (GetBytesPerFprSpillLocation(kRuntimeQuickCodeISA) == 4) { in VisitArguments() 618 QuickArgumentVisitorImpl<detail::QAFISelector<kRuntimeQuickCodeISA>::type>;
|
H A D | callee_save_frame.h | 99 using RuntimeCalleeSaveFrame = detail::CSFSelector<kRuntimeQuickCodeISA>::type;
|
/aosp_15_r20/art/runtime/arch/ |
H A D | context-inl.h | 54 using RuntimeContextType = RuntimeContextTypeArch<kRuntimeQuickCodeISA>;
|
/aosp_15_r20/art/tools/cpp-define-generator/ |
H A D | globals.def | 85 GetStackOverflowReservedBytes(art::kRuntimeQuickCodeISA))
|
/aosp_15_r20/art/test/692-vdex-inmem-loader/ |
H A D | vdex_inmem_loader.cc | 98 kRuntimeQuickCodeISA, in Java_Main_hasVdexFile()
|
/aosp_15_r20/art/libartbase/arch/ |
H A D | instruction_set.h | 61 static constexpr InstructionSet kRuntimeQuickCodeISA = kRuntimeISA; variable
|
/aosp_15_r20/art/runtime/jit/ |
H A D | jit_code_cache.cc | 369 size_t alignment = GetInstructionSetCodeAlignment(kRuntimeQuickCodeISA); in FromCodeToAllocation() 374 size_t alignment = GetInstructionSetCodeAlignment(kRuntimeQuickCodeISA); in FromAllocationToCode() 534 GetInstructionSetInstructionAlignment(kRuntimeQuickCodeISA)); // Thumb-bit. in FreeAllMethodHeaders() 1377 static_assert(kRuntimeQuickCodeISA != InstructionSet::kThumb2, "kThumb2 cannot be a runtime ISA"); in LookupMethodHeader()
|
/aosp_15_r20/art/runtime/interpreter/mterp/ |
H A D | nterp.cc | 38 switch (kRuntimeQuickCodeISA) { in IsNterpSupported()
|