Home
last modified time | relevance | path

Searched refs:suspend_checks_in_loops_ (Results 1 – 4 of 4) sorted by relevance

/art/compiler/dex/
Dmir_graph.h1038 if (suspend_checks_in_loops_ == nullptr) { in IsSuspendCheckEdge()
1043 return (suspend_checks_in_loops_[branch_bb->id] & (1u << (target_depth - 1u))) == 0; in IsSuspendCheckEdge()
1469 uint32_t* suspend_checks_in_loops_; variable
Dmir_optimization.cc1735 suspend_checks_in_loops_ = arena_->AllocArray<uint32_t>(GetNumBlocks(), kArenaAllocMisc); in EliminateSuspendChecksGate()
1746 DCHECK_EQ(suspend_checks_in_loops_[bb->id], 0u); // The array was zero-initialized. in EliminateSuspendChecks()
1777 uint32_t pred_loops_without_checks = pred_mask & ~suspend_checks_in_loops_[pred_id]; in EliminateSuspendChecks()
1787 suspend_checks_in_loops_[bb->id] = suspend_checks_in_loops; in EliminateSuspendChecks()
Dmir_optimization_test.cc476 cu_.mir_graph->suspend_checks_in_loops_ = in PerformSuspendCheckElimination()
Dmir_graph.cc139 suspend_checks_in_loops_(nullptr) { in MIRGraph()