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.py34 from target_config import target_config
49 for k in sorted(target_config.iterkeys()):
54 if not target_config.get(options.build_target):
58 target = target_config[options.build_target]
Dtarget_config.py1 target_config = { variable
Dtestrunner.py62 from target_config import target_config
960 options = setup_env_for_build_target(target_config[options['build_target']],
/art/compiler/optimizing/
Dcodegen_test.cc83 const CodegenTargetConfig target_config);
87 for (const CodegenTargetConfig& target_config : GetTargetConfigs()) { in TestCode() local
92 RunCode(target_config, graph, [](HGraph*) {}, has_result, expected); in TestCode()
98 for (const CodegenTargetConfig& target_config : GetTargetConfigs()) { in TestCodeLong() local
103 RunCode(target_config, graph, [](HGraph*) {}, has_result, expected); in TestCodeLong()
418 for (CodegenTargetConfig target_config : GetTargetConfigs()) { in TEST_F() local
463 RunCode(target_config, graph, hook_before_codegen, true, 0); in TEST_F()
468 for (CodegenTargetConfig target_config : GetTargetConfigs()) { in TEST_F() local
509 RunCode(target_config, graph, hook_before_codegen, true, lhs[i] < rhs[i]); in TEST_F()
515 for (CodegenTargetConfig target_config : GetTargetConfigs()) { in TEST_F() local
[all …]
Dscheduler_test.cc188 for (CodegenTargetConfig target_config : GetTargetConfigs()) { in CompileWithRandomSchedulerAndRun() local
192 HInstructionScheduling scheduling(graph, target_config.GetInstructionSet()); in CompileWithRandomSchedulerAndRun()
195 RunCode(target_config, in CompileWithRandomSchedulerAndRun()
Dcodegen_test_utils.h324 static void RunCode(CodegenTargetConfig target_config, in RunCode() argument
330 std::unique_ptr<CodeGenerator> codegen(target_config.CreateCodeGenerator(graph, in RunCode()