Home
last modified time | relevance | path

Searched refs:target_config (Results 1 – 6 of 6) sorted by relevance

/art/test/testrunner/
Drun_build_test_target.py35 from target_config import target_config
50 for k in sorted(target_config.keys()):
55 if not target_config.get(options.build_target):
59 target = target_config[options.build_target]
Dtarget_config.py1 target_config = { variable
Dtestrunner.py80 from target_config import target_config
1065 options = setup_env_for_build_target(target_config[options['build_target']],
/art/compiler/optimizing/
Dcodegen_test.cc75 const CodegenTargetConfig target_config);
79 for (const CodegenTargetConfig& target_config : GetTargetConfigs()) { in TestCode() local
84 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TestCode()
85 RunCode(target_config, *compiler_options_, graph, [](HGraph*) {}, has_result, expected); in TestCode()
91 for (const CodegenTargetConfig& target_config : GetTargetConfigs()) { in TestCodeLong() local
96 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TestCodeLong()
97 RunCode(target_config, *compiler_options_, graph, [](HGraph*) {}, has_result, expected); in TestCodeLong()
412 for (CodegenTargetConfig target_config : GetTargetConfigs()) { in TEST_F() local
457 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TEST_F()
458 RunCode(target_config, *compiler_options_, graph, hook_before_codegen, true, 0); in TEST_F()
[all …]
Dscheduler_test.cc184 for (CodegenTargetConfig target_config : GetTargetConfigs()) { in CompileWithRandomSchedulerAndRun() local
188 HInstructionScheduling scheduling(graph, target_config.GetInstructionSet()); in CompileWithRandomSchedulerAndRun()
191 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in CompileWithRandomSchedulerAndRun()
192 RunCode(target_config, in CompileWithRandomSchedulerAndRun()
Dcodegen_test_utils.h304 static void RunCode(CodegenTargetConfig target_config, in RunCode() argument
310 std::unique_ptr<CodeGenerator> codegen(target_config.CreateCodeGenerator(graph, in RunCode()