Home
last modified time | relevance | path

Searched refs:CodegenTargetConfig (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dscheduler_test.cc41 static ::std::vector<CodegenTargetConfig> GetTargetConfigs() { in GetTargetConfigs()
42 ::std::vector<CodegenTargetConfig> v; in GetTargetConfigs()
43 ::std::vector<CodegenTargetConfig> test_config_candidates = { in GetTargetConfigs()
46 CodegenTargetConfig(InstructionSet::kArm, create_codegen_arm_vixl32), in GetTargetConfigs()
49 CodegenTargetConfig(InstructionSet::kArm64, create_codegen_arm64), in GetTargetConfigs()
52 CodegenTargetConfig(InstructionSet::kX86, create_codegen_x86), in GetTargetConfigs()
55 CodegenTargetConfig(InstructionSet::kX86_64, create_codegen_x86_64), in GetTargetConfigs()
58 CodegenTargetConfig(InstructionSet::kMips, create_codegen_mips), in GetTargetConfigs()
61 CodegenTargetConfig(InstructionSet::kMips64, create_codegen_mips64) in GetTargetConfigs()
65 for (const CodegenTargetConfig& test_config : test_config_candidates) { in GetTargetConfigs()
[all …]
Dcodegen_test.cc42 static ::std::vector<CodegenTargetConfig> GetTargetConfigs() { in GetTargetConfigs()
43 ::std::vector<CodegenTargetConfig> v; in GetTargetConfigs()
44 ::std::vector<CodegenTargetConfig> test_config_candidates = { in GetTargetConfigs()
47 CodegenTargetConfig(InstructionSet::kArm, create_codegen_arm_vixl32), in GetTargetConfigs()
50 CodegenTargetConfig(InstructionSet::kArm64, create_codegen_arm64), in GetTargetConfigs()
53 CodegenTargetConfig(InstructionSet::kX86, create_codegen_x86), in GetTargetConfigs()
56 CodegenTargetConfig(InstructionSet::kX86_64, create_codegen_x86_64), in GetTargetConfigs()
59 CodegenTargetConfig(InstructionSet::kMips, create_codegen_mips), in GetTargetConfigs()
62 CodegenTargetConfig(InstructionSet::kMips64, create_codegen_mips64) in GetTargetConfigs()
66 for (const CodegenTargetConfig& test_config : test_config_candidates) { in GetTargetConfigs()
[all …]
Dcodegen_test_utils.h60 class CodegenTargetConfig {
62 CodegenTargetConfig(InstructionSet isa, CreateCodegenFn create_codegen) in CodegenTargetConfig() function
314 static void RunCode(CodegenTargetConfig target_config, in RunCode()