Searched refs:arch (Results 1 – 17 of 17) sorted by relevance
/art/build/ |
D | codegen.go | 61 var arch *codegenArchProperties 64 arch = &c.Codegen.Arm 66 arch = &c.Codegen.Arm64 68 arch = &c.Codegen.Mips 70 arch = &c.Codegen.Mips64 72 arch = &c.Codegen.X86 74 arch = &c.Codegen.X86_64 83 p.Target.Host = &arch.CodegenCommonArchProperties 84 l.Target.Host = &arch.CodegenLibraryArchProperties 86 p.Target.Android = &arch.CodegenCommonArchProperties [all …]
|
/art/runtime/ |
D | Android.bp | 221 "arch/context.cc", 222 "arch/instruction_set.cc", 223 "arch/instruction_set_features.cc", 224 "arch/memcmp16.cc", 225 "arch/arm/instruction_set_features_arm.cc", 226 "arch/arm/registers_arm.cc", 227 "arch/arm64/instruction_set_features_arm64.cc", 228 "arch/arm64/registers_arm64.cc", 229 "arch/mips/instruction_set_features_mips.cc", 230 "arch/mips/registers_mips.cc", [all …]
|
/art/runtime/interpreter/mterp/ |
D | rebuild.sh | 23 for arch in arm x86 mips arm64 x86_64 mips64; do TARGET_ARCH_EXT=$arch make -f Makefile_mterp; done
|
D | Makefile_mterp | 26 # for arch in arm arm64 x86 x86_64 mips mips64 28 # TARGET_ARCH_EXT=$arch make -f Makefile-mterp
|
D | config_arm | 28 # arch-specific entry point to interpreter
|
D | config_arm64 | 26 # arch-specific entry point to interpreter
|
D | config_mips | 28 # arch-specific entry point to interpreter
|
D | config_mips64 | 28 # arch-specific entry point to interpreter
|
D | config_x86 | 32 # arch-specific entry point to interpreter
|
D | config_x86_64 | 32 # arch-specific entry point to interpreter
|
/art/tools/checker/file_format/checker/ |
D | parser.py | 25 def __extractLine(prefix, line, arch = None, debuggable = False): argument 32 arch_specifier = r"-%s" % arch if arch is not None else r"" 61 for arch in [None] + archs_list: 62 startLine = __extractLine(prefix + "-START", line, arch, debuggable) 64 return None, startLine, (arch, debuggable)
|
D | test.py | 315 for arch in [None] + archs_list: 330 for arch in archs_list: 331 checkerText = self.arch_block.format(test_arch = arch) 334 self.assertEqual(len(checkerFile.testCasesForArch(arch)), 1)
|
/art/runtime/arch/ |
D | arch_test.cc | 137 #define TEST_ARCH(Arch, arch) \ argument 141 arch::kFrameSizeSaveAllCalleeSaves); \ 144 arch::kFrameSizeSaveRefsOnly); \ 147 arch::kFrameSizeSaveRefsAndArgs); \ 150 arch::kFrameSizeSaveEverything); \
|
/art/runtime/arch/arm/ |
D | asm_support_arm.S | 30 .arch armv7-a
|
/art/tools/checker/ |
D | checker.py | 108 RunTests(args.check_prefix, args.source_path, args.tested_file, args.arch, args.debuggable)
|
D | README | 71 A group of check lines can be made architecture-specific by inserting '-<arch>'
|
/art/tools/common/ |
D | common.py | 136 return ('{0}/dalvik-cache/{1}'.format(android_data_path, arch) 137 for arch in DALVIK_CACHE_ARCHS)
|