Home
last modified time | relevance | path

Searched refs:blkNode (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Djava_eh_lower.h40 BaseNode *DoLowerRem(BinaryNode &expr, BlockNode &blkNode) in DoLowerRem() argument
42 return DoLowerDiv(expr, blkNode); in DoLowerRem()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/be/
Dlower.h148 …void LowerGCMalloc(const BaseNode &node, const GCMallocNode &gcNode, BlockNode &blkNode, bool perm…
160 BaseNode *SplitBinaryNodeOpnd1(BinaryNode &bNode, BlockNode &blkNode);
161 BaseNode *SplitTernaryNodeResult(TernaryNode &tNode, BaseNode &parent, BlockNode &blkNode);
164 BaseNode *LowerComplexSelect(const TernaryNode &tNode, BaseNode &parent, BlockNode &blkNode);
318 void ProcessArrayExpr(BaseNode &expr, BlockNode &blkNode);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
Dlower.cpp210 BaseNode *CGLowerer::SplitBinaryNodeOpnd1(BinaryNode &bNode, BlockNode &blkNode) in SplitBinaryNodeOpnd1() argument
224 blkNode.InsertAfter(blkNode.GetLast(), dnode); in SplitBinaryNodeOpnd1()
232 …seNode *CGLowerer::SplitTernaryNodeResult(TernaryNode &tNode, BaseNode &parent, BlockNode &blkNode) in SplitTernaryNodeResult() argument
245 blkNode.InsertAfter(blkNode.GetLast(), dassignNode); in SplitTernaryNodeResult()
300 …Node *CGLowerer::LowerComplexSelect(const TernaryNode &tNode, BaseNode &parent, BlockNode &blkNode) in LowerComplexSelect() argument
340 blkNode.InsertAfter(blkNode.GetLast(), brTargetStmt); in LowerComplexSelect()
354 blkNode.InsertAfter(blkNode.GetLast(), dassignTrue); in LowerComplexSelect()
361 blkNode.InsertAfter(blkNode.GetLast(), regassignTrue); in LowerComplexSelect()
370 blkNode.InsertAfter(blkNode.GetLast(), gotoStmt); in LowerComplexSelect()
376 blkNode.InsertAfter(blkNode.GetLast(), lableStmt); in LowerComplexSelect()
[all …]
Dswitch_lowerer.cpp361 …BlockNode *blkNode = BuildCodeForSwitchItems(0, static_cast<int>(switchItems.size()) - 1, false, f… in LowerSwitch() local
365 blkNode->AddStatement(gotoDft); in LowerSwitch()
368 return blkNode; in LowerSwitch()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Deh_func.cpp30 BlockNode *blkNode = mirFunc.GetBody(); in CollectEHInformation() local
31 CHECK_FATAL(blkNode != nullptr, "current function body is nullptr in CGFunc::BuildEHFunc"); in CollectEHInformation()
41 for (StmtNode *stmt = blkNode->GetFirst(); stmt != nullptr; stmt = nextStmt) { in CollectEHInformation()
532 void EHFunc::InsertDefaultLabelAndAbortFunc(BlockNode &blkNode, SwitchNode &switchNode, const StmtN… in InsertDefaultLabelAndAbortFunc() argument
538 blkNode.InsertAfter(&beforeEndLabel, dfLabStmt); in InsertDefaultLabelAndAbortFunc()
543 blkNode.InsertAfter(dfLabStmt, callExit); in InsertDefaultLabelAndAbortFunc()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Deh_func.h204 …void InsertDefaultLabelAndAbortFunc(BlockNode &blkNode, SwitchNode &switchNode, const StmtNode &be…