Home
last modified time | relevance | path

Searched refs:IsCatchBegin (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/runtime_core/compiler/tests/
DirBuilder_tests.cpp162 EXPECT_TRUE(bb->GetSuccessor(1)->IsCatchBegin()); in __anon1538a8fc0302()
186 EXPECT_TRUE(!bb->GetSuccessor(0)->IsCatchBegin()); in __anon1538a8fc0302()
188 EXPECT_TRUE(bb->GetSuccessor(1)->IsCatchBegin()); in __anon1538a8fc0302()
194 if (bb->IsCatchBegin()) { in __anon1538a8fc0302()
204 if (bb->IsCatch() && !bb->IsCatchBegin()) { in __anon1538a8fc0302()
206 EXPECT_TRUE(bb->GetPredecessor(0)->IsCatchBegin()); in __anon1538a8fc0302()
305 EXPECT_TRUE(bb->GetSuccessor(1)->IsCatchBegin()); in __anon1538a8fc0402()
314 EXPECT_TRUE(bb->GetPredecessor(0)->IsCatchBegin()); in __anon1538a8fc0402()
360 EXPECT_TRUE(bb->GetSuccessor(1)->IsCatchBegin()); in __anon1538a8fc0402()
370 EXPECT_TRUE(bb->GetSuccessor(1)->IsCatchBegin()); in __anon1538a8fc0402()
[all …]
Ddominators_tree_new_test.cpp57 if (!bb->IsCatchBegin()) { in __anona6f8c39f0102()
92 if (!bb->IsCatchBegin()) { in __anona6f8c39f0202()
Dcompiler_basicblock_test.cpp60 if (!bb->IsCatchBegin()) { in __anon9f1e038e0102()
Ddump_test.cpp148 if (block->IsCatchBegin() || block->IsCatchEnd()) { in __anonb8e9e89d0202()
Dcompiler_regalloc_test.cpp980 EXPECT_TRUE(block->IsCatchBegin()); in __anon5d7559aa1502()
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_builder.h53 if (bb->IsCatchBegin()) {
Dinst_builder.cpp77 if (current_bb_->IsCatchBegin()) { in UpdateDefs()
Dir_builder.cpp537 if (succ->IsCatchBegin()) { in RestoreTryEnd()
/arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/
DREADME.md114 Assertion `catch_begin->IsCatchBegin()' failed.\n"
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_resolver.cpp256 if (!block->IsCatchBegin()) { in ResolveCatchPhis()
/arkcompiler/runtime_core/compiler/optimizer/analysis/
Dloop_analyzer.cpp339 return !IsRoot() && GetHeader()->IsCatchBegin(); in IsTryCatchLoop()
Dliveness_analyzer.cpp257 if (succ->IsCatchBegin()) { in GetInitInstLiveSet()
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dbasicblock.h446 bool IsCatchBegin() const in IsCatchBegin() function
532 while (!succ->IsCatchBegin()) { in EnumerateCatchHandlers()
Ddump.cpp485 if (block->IsCatchBegin()) { in BlockProps()
Dgraph_checker.cpp718 if (block->IsCatchBegin() && pred->IsTryBegin()) { in CheckObjectRec()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dcleanup.cpp29 …return bb == nullptr || bb->IsStartBlock() || bb->IsEndBlock() || bb->IsCatchBegin() || bb->IsTryE… in SkipBasicBlock()