Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dcgfunc.cpp288 auto &gotoNode = static_cast<GotoNode &>(stmt); in HandleGoto() local
290 cgFunc.SelectGoto(gotoNode); in HandleGoto()
291 cgFunc.SetCurBB(*cgFunc.StartNewBB(gotoNode)); in HandleGoto()
292 DEBUG_ASSERT(&stmt == &gotoNode, "stmt must be same as gotoNoe"); in HandleGoto()
294 if ((gotoNode.GetNext() != nullptr) && (gotoNode.GetNext()->GetOpCode() != OP_label)) { in HandleGoto()
H A Disel.cpp193 auto &gotoNode = static_cast<GotoNode &>(stmt); in HandleGoto() local
194 DEBUG_ASSERT(gotoNode.GetOpCode() == OP_goto, "expect goto"); in HandleGoto()
196 iSel.SelectGoto(gotoNode); in HandleGoto()
197 cgFunc->SetCurBB(*cgFunc->StartNewBB(gotoNode)); in HandleGoto()
198 DEBUG_ASSERT(&stmt == &gotoNode, "stmt must be same as gotoNoe"); in HandleGoto()
199 if ((gotoNode.GetNext() != nullptr) && (gotoNode.GetNext()->GetOpCode() != OP_label)) { in HandleGoto()

Completed in 5 milliseconds