Home
last modified time | relevance | path

Searched refs:allBBs (Results 1 - 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dloop.cpp121 std::queue<BB *> allBBs; in ProcessBB() local
122 allBBs.emplace(&entryBB); in ProcessBB()
123 while (!allBBs.empty()) { in ProcessBB()
124 BB *bb = allBBs.front(); in ProcessBB()
125 allBBs.pop(); in ProcessBB()
134 allBBs.emplace(cgFunc.GetBBFromID(domChildBBId)); in ProcessBB()
H A Dcg_cfg.cpp570 std::queue<BB *> allBBs; in FindWillExitBBs() local
571 allBBs.push(bb); in FindWillExitBBs()
572 while (!allBBs.empty()) { in FindWillExitBBs()
573 BB *curBB = allBBs.front(); in FindWillExitBBs()
574 allBBs.pop(); in FindWillExitBBs()
580 allBBs.push(predBB); in FindWillExitBBs()

Completed in 2 milliseconds