Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dscheduler_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()
60 for (const CodegenTargetConfig& test_config : test_config_candidates) { in GetTargetConfigs()
185 for (CodegenTargetConfig target_config : GetTargetConfigs()) { in CompileWithRandomSchedulerAndRun()
Dcodegen_test.cc40 static ::std::vector<CodegenTargetConfig> GetTargetConfigs() { in GetTargetConfigs()
41 ::std::vector<CodegenTargetConfig> v; in GetTargetConfigs()
42 ::std::vector<CodegenTargetConfig> test_config_candidates = { in GetTargetConfigs()
45 CodegenTargetConfig(InstructionSet::kArm, create_codegen_arm_vixl32), in GetTargetConfigs()
48 CodegenTargetConfig(InstructionSet::kArm64, create_codegen_arm64), in GetTargetConfigs()
51 CodegenTargetConfig(InstructionSet::kX86, create_codegen_x86), in GetTargetConfigs()
54 CodegenTargetConfig(InstructionSet::kX86_64, create_codegen_x86_64), in GetTargetConfigs()
58 for (const CodegenTargetConfig& test_config : test_config_candidates) { in GetTargetConfigs()
75 const CodegenTargetConfig target_config);
79 for (const CodegenTargetConfig& target_config : GetTargetConfigs()) { in TestCode()
[all …]
Dcodegen_test_utils.h55 class CodegenTargetConfig {
57 CodegenTargetConfig(InstructionSet isa, CreateCodegenFn create_codegen) in CodegenTargetConfig() function
289 static void RunCode(CodegenTargetConfig target_config, in RunCode()