/art/libartbase/arch/ |
D | instruction_set.h | 84 constexpr PointerSize GetInstructionSetPointerSize(InstructionSet isa) { in GetInstructionSetPointerSize() 103 constexpr size_t GetInstructionSetInstructionAlignment(InstructionSet isa) { in GetInstructionSetInstructionAlignment() 122 constexpr bool IsValidInstructionSet(InstructionSet isa) { in IsValidInstructionSet() 139 constexpr bool Is64BitInstructionSet(InstructionSet isa) { in Is64BitInstructionSet() 156 constexpr PointerSize InstructionSetPointerSize(InstructionSet isa) { in InstructionSetPointerSize() 160 constexpr size_t GetBytesPerGprSpillLocation(InstructionSet isa) { in GetBytesPerGprSpillLocation() 179 constexpr size_t GetBytesPerFprSpillLocation(InstructionSet isa) { in GetBytesPerFprSpillLocation() 215 constexpr size_t GetStackOverflowReservedBytes(InstructionSet isa) { in GetStackOverflowReservedBytes()
|
D | instruction_set.cc | 25 void InstructionSetAbort(InstructionSet isa) { in InstructionSetAbort() 40 const char* GetInstructionSetString(InstructionSet isa) { in GetInstructionSetString() 74 size_t GetInstructionSetAlignment(InstructionSet isa) { in GetInstructionSetAlignment()
|
/art/compiler/jni/ |
D | jni_cfi_test.cc | 43 void TestImpl(InstructionSet isa, in TestImpl() 56 void TestImplSized(InstructionSet isa, in TestImplSized() 117 #define TEST_ISA(isa) \ argument
|
/art/compiler/optimizing/ |
D | optimizing_cfi_test.cc | 50 void SetUpFrame(InstructionSet isa) { in SetUpFrame() 94 void Check(InstructionSet isa, in Check() 111 void TestImpl(InstructionSet isa, const char* in TestImpl() 148 #define TEST_ISA(isa) \ argument
|
D | instruction_simplifier_shared.h | 41 inline bool HasShifterOperand(HInstruction* instr, InstructionSet isa) { in HasShifterOperand()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints_test.cc | 42 static ArtMethod* CreateCalleeSaveMethod(InstructionSet isa, CalleeSaveType type) in CreateCalleeSaveMethod() 57 static void CheckPCOffset(InstructionSet isa, CalleeSaveType type, size_t pc_offset) in CheckPCOffset()
|
/art/runtime/ |
D | nterp_helpers.cc | 88 static constexpr size_t NterpGetFrameEntrySize(InstructionSet isa) { in NterpGetFrameEntrySize() 119 size_t NterpGetFrameSize(ArtMethod* method, InstructionSet isa) { in NterpGetFrameSize() 190 bool CanMethodUseNterp(ArtMethod* method, InstructionSet isa) { in CanMethodUseNterp()
|
D | prebuilt_tools_test.cc | 30 static void CheckToolsExist(InstructionSet isa) { in CheckToolsExist()
|
D | oat_file_assistant.cc | 80 const InstructionSet isa, in OatFileAssistant() 95 const InstructionSet isa, in OatFileAssistant() 474 InstructionSet isa, in AnonymousDexVdexLocation() 520 InstructionSet isa, in DexLocationToOdexFilename() 559 InstructionSet isa, in DexLocationToOatFilename() 994 InstructionSet isa, in GetOptimizationStatus()
|
D | parsed_options_test.cc | 162 InstructionSet isa = map.GetOrDefault(Opt::ImageInstructionSet); in TEST_F() local 179 InstructionSet isa = map.GetOrDefault(Opt::ImageInstructionSet); in TEST_F() local
|
/art/compiler/debug/ |
D | elf_debug_loc_writer.h | 34 static Reg GetDwarfCoreReg(InstructionSet isa, int machine_reg) { in GetDwarfCoreReg() 51 static Reg GetDwarfFpReg(InstructionSet isa, int machine_reg) { in GetDwarfFpReg() 88 InstructionSet isa) { in GetVariableLocations() 174 InstructionSet isa, in WriteDebugLocEntry()
|
D | elf_debug_writer.cc | 115 InstructionSet isa, in MakeMiniDebugInfoInternal() 149 InstructionSet isa, in MakeMiniDebugInfo() 176 InstructionSet isa, in MakeElfFileForJIT() 238 const InstructionSet isa = kRuntimeISA; in PackElfFileForJIT() local 349 InstructionSet isa, in WriteDebugElfFileForClasses()
|
D | method_debug_info.h | 36 InstructionSet isa; member
|
D | elf_debug_frame_writer.h | 38 static void WriteCIE(InstructionSet isa, /*inout*/ std::vector<uint8_t>* buffer) { in WriteCIE()
|
/art/libartbase/base/ |
D | file_utils.cc | 424 static std::string GetApexDataDalvikCacheDirectory(InstructionSet isa) { in GetApexDataDalvikCacheDirectory() 432 InstructionSet isa, in GetApexDataDalvikCacheFilename() 457 std::string GetApexDataOatFilename(std::string_view location, InstructionSet isa) { in GetApexDataOatFilename() 461 std::string GetApexDataOdexFilename(std::string_view location, InstructionSet isa) { in GetApexDataOdexFilename() 480 InstructionSet isa, in GetApexDataDalvikCacheFilename() 490 static void InsertIsaDirectory(const InstructionSet isa, std::string* filename) { in InsertIsaDirectory() 499 std::string GetSystemImageFilename(const char* location, const InstructionSet isa) { in GetSystemImageFilename()
|
D | file_utils_test.cc | 217 const InstructionSet isa = InstructionSet::kArm64; in TEST_F() local 237 const InstructionSet isa = InstructionSet::kX86_64; in TEST_F() local
|
/art/compiler/utils/ |
D | assembler_test_base.h | 77 InstructionSet isa = GetIsa(); in Driver() local 138 InstructionSet isa = GetIsa(); in GetAssemblerCommand() local 211 void WriteElf(const std::string& filename, InstructionSet isa, const std::vector<uint8_t>& code) { in WriteElf()
|
D | jni_macro_assembler.h | 285 explicit JNIMacroLabel(InstructionSet isa) : isa_(isa) {} in JNIMacroLabel()
|
/art/runtime/arch/ |
D | instruction_set_features.cc | 37 InstructionSet isa, const std::string& variant, std::string* error_msg) { in FromVariant() 56 std::unique_ptr<const InstructionSetFeatures> InstructionSetFeatures::FromBitmap(InstructionSet isa, in FromBitmap()
|
/art/odrefresh/ |
D | odrefresh.cc | 468 WARN_UNUSED bool BootExtensionArtifactsExistOnData(const InstructionSet isa, in BootExtensionArtifactsExistOnData() 633 auto cleanup_boot_extensions_return = [this](ExitCode exit_code, InstructionSet isa) { in CheckArtifactsAreUpToDate() 637 for (const InstructionSet isa : config_.GetBootExtensionIsas()) { in CheckArtifactsAreUpToDate() local 688 InstructionSet isa) { in AddDex2OatInstructionSet() 851 WARN_UNUSED bool VerifyBootExtensionArtifactsAreUpToDate(const InstructionSet isa, in VerifyBootExtensionArtifactsAreUpToDate() 926 for (const InstructionSet isa : config_.GetBootExtensionIsas()) { in VerifyArtifactsAreUpToDate() local 1012 WARN_UNUSED bool CompileBootExtensionArtifacts(const InstructionSet isa, in CompileBootExtensionArtifacts() 1130 const InstructionSet isa = config_.GetSystemServerIsa(); in CompileSystemServerArtifacts() local 1296 for (const InstructionSet isa : bcp_instruction_sets) { in Compile() local
|
/art/runtime/base/ |
D | quasi_atomic.h | 151 static bool LongAtomicsUseMutexes(InstructionSet isa) { in LongAtomicsUseMutexes()
|
/art/compiler/trampolines/ |
D | trampoline_compiler.cc | 172 std::unique_ptr<const std::vector<uint8_t>> CreateTrampoline64(InstructionSet isa, in CreateTrampoline64() 194 std::unique_ptr<const std::vector<uint8_t>> CreateTrampoline32(InstructionSet isa, in CreateTrampoline32()
|
/art/runtime/metrics/ |
D | statsd.cc | 189 constexpr int32_t EncodeInstructionSet(InstructionSet isa) { in EncodeInstructionSet()
|
/art/tools/checker/match/ |
D | test.py | 104 def assertMatches(self, checker_string, c1_string, isa=None, instruction_set_features=None): argument 150 def assertDoesNotMatch(self, checker_string, c1_string, isa=None, instruction_set_features=None): argument
|
/art/compiler/ |
D | cfi_test.h | 37 void GenerateExpected(FILE* f, InstructionSet isa, const char* isa_str, in GenerateExpected()
|