Searched refs:bb2 (Results 1 - 10 of 10) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | cg_dominance.cpp | 69 BB *DomAnalysis::Intersect(BB &bb1, const BB &bb2) in Intersect() argument 72 auto *ptrBB2 = &bb2; in Intersect() 154 // bb1 is commonEntryBB, bb2 is entryBB, bb2 is domFrontier of bb3 and bb7. in ComputeDomFrontiers() 254 bool DomAnalysis::Dominate(const BB &bb1, const BB &bb2) in Dominate() argument 256 return dtDfn[bb1.GetId()] <= dtDfn[bb2.GetId()] && dtDfnOut[bb1.GetId()] >= dtDfnOut[bb2.GetId()]; in Dominate()
|
H A D | cfgo.cpp | 47 /* return true if insns in bb1 and bb2 are the same except the last goto insn. */ 48 bool ChainingPattern::DoSameThing(const BB &bb1, const Insn &last1, const BB &bb2, const Insn &last2) const in DoSameThing() argument 51 const Insn *insn2 = bb2.GetFirstMachineInsn(); in DoSameThing()
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | graph_comparator.h | 48 graph2->GetBlocksRPO().end(), [this](auto bb1, auto bb2) { return Compare(bb1, bb2); }); in Compare() 191 auto bb2 = bb_map_.at(bb1); in ComparePhiInputs() local 192 auto input2 = inst2->CastToPhi()->GetPhiInput(bb2); in ComparePhiInputs()
|
H A D | graph_cloner_new_test.cpp | 69 static bool CompareInstsOpcode(BasicBlock *bb1, BasicBlock *bb2) in CompareInstsOpcode() argument 72 EXPECT_TRUE(bb2 != nullptr); in CompareInstsOpcode() 74 auto insts2 = bb2->Insts(); in CompareInstsOpcode()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | cg_dominance.h | 91 bool Dominate(const BB &bb1, const BB &bb2); // true if bb1 dominates bb2 174 BB *Intersect(BB &bb1, const BB &bb2);
|
H A D | cfgo.h | 44 bool DoSameThing(const BB &bb1, const Insn &last1, const BB &bb2, const Insn &last2) const;
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | graph_comparator.h | 42 graph2->GetBlocksRPO().end(), [this](auto bb1, auto bb2) { return Compare(bb1, bb2); }); in Compare() 105 auto bb2 = bbMap_.at(bb1); in InstInitialCompare() local 106 auto input2 = inst2->CastToPhi()->GetPhiInput(bb2); in InstInitialCompare()
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
H A D | common.h | 283 graph2->GetBlocksRPO().end(), [this](auto bb1, auto bb2) { return Compare(bb1, bb2); }); in Compare()
|
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/ |
H A D | common.h | 292 graph2->GetBlocksRPO().end(), [this](auto bb1, auto bb2) { return Compare(bb1, bb2); }); in Compare()
|
/arkcompiler/runtime_core/libark_defect_scan_aux/tests/unittest/ |
H A D | defect_scan_aux_test.cpp | 519 auto bb2 = graph.GetEndBasicBlock(); in HWTEST() local 520 auto bb2_pred_bb = bb2.GetPredBlocks(); in HWTEST()
|
Completed in 8 milliseconds