Home
last modified time | relevance | path

Searched refs:stage (Results 1 – 10 of 10) sorted by relevance

/art/odrefresh/
Dodr_metrics.h125 void SetStage(Stage stage) { stage_ = stage; } in SetStage() argument
128 void SetDex2OatResult(Stage stage,
133 void SetBcpCompilationType(Stage stage, BcpCompilationType type);
193 std::ostream& operator<<(std::ostream& os, OdrMetrics::Stage stage);
Dodr_metrics.cc72 void OdrMetrics::SetDex2OatResult(Stage stage, in SetDex2OatResult() argument
75 switch (stage) { in SetDex2OatResult()
96 void OdrMetrics::SetBcpCompilationType(Stage stage, BcpCompilationType type) { in SetBcpCompilationType() argument
97 switch (stage) { in SetBcpCompilationType()
Dodrefresh.cc2065 OdrMetrics::Stage stage = (isa == bcp_instruction_sets.front()) ? in Compile() local
2070 metrics.SetDex2OatResult(stage, bcp_result.elapsed_time_ms, bcp_result.dex2oat_result); in Compile()
2071 metrics.SetBcpCompilationType(stage, boot_images_to_generate.GetTypeForMetrics()); in Compile()
2076 first_failure = first_failure.value_or(std::make_pair(stage, bcp_result.status)); in Compile()
2082 OdrMetrics::Stage stage = OdrMetrics::Stage::kSystemServerClasspath; in Compile() local
2085 metrics.SetDex2OatResult(stage, ss_result.elapsed_time_ms, ss_result.dex2oat_result); in Compile()
2087 first_failure = first_failure.value_or(std::make_pair(stage, ss_result.status)); in Compile()
/art/compiler/optimizing/
Dregister_allocator_graph_color.cc113 std::ostream& operator<<(std::ostream& os, const CoalesceStage& stage) { in operator <<() argument
114 return os << static_cast<typename std::underlying_type<CoalesceStage>::type>(stage); in operator <<()
126 stage(CoalesceStage::kWorklist), in CoalesceOpportunity()
141 CoalesceStage stage; member
158 std::ostream& operator<<(std::ostream& os, const NodeStage& stage) { in operator <<() argument
159 return os << static_cast<typename std::underlying_type<NodeStage>::type>(stage); in operator <<()
222 : stage(NodeStage::kInitial), in InterferenceNode()
240 DCHECK_NE(stage, NodeStage::kPruned); in AddInterference()
241 DCHECK_NE(other->stage, NodeStage::kPruned); in AddInterference()
261 DCHECK_EQ(other->stage, NodeStage::kPruned) << "Should only remove interferences when pruning"; in RemoveInterference()
[all …]
/art/dex2oat/
Ddex2oat_cts_test.cc52 if (res.stage != ForkAndExecResult::kFinished) { in Dex2Oat()
/art/libartbase/base/
Dcommon_art_test.h204 Stage stage; member
208 return stage == kFinished && WIFEXITED(status_code) && WEXITSTATUS(status_code) == 0; in StandardSuccess()
Dcommon_art_test.cc600 result.stage = ForkAndExecResult::kLink; in ForkAndExec()
620 result.stage = ForkAndExecResult::kFork; in ForkAndExec()
646 result.stage = ForkAndExecResult::kWaitpid; in ForkAndExec()
662 result.stage = ForkAndExecResult::kFinished; in ForkAndExec()
/art/oatdump/
Doatdump_test.h161 if (res.stage != ForkAndExecResult::kFinished) { in GenerateAppOdexFile()
337 if (res.stage != ForkAndExecResult::kFinished) {
/art/runtime/
Ddex2oat_environment_test.h229 if (res.stage != ForkAndExecResult::kFinished) { in Dex2Oat()
Dcommon_runtime_test.cc530 if (res.stage != ForkAndExecResult::kFinished) { in RunDex2Oat()