Home
last modified time | relevance | path

Searched refs:CallAssertNonnullStmtNode (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dir_safe_cast_traits.def186 REGISTER_SAFE_CAST(CallAssertNonnullStmtNode, from.GetOpCode() == OP_callassertnonnull);
Dopcodes.def45 …OPCODE(callassertnonnull, CallAssertNonnullStmtNode, (OPCODEISSTMT | OPCODENOTMMPL | OPCODEASSERTN…
Dmir_builder.h257CallAssertNonnullStmtNode *CreateStmtCallAssertNonnull(Opcode op, BaseNode *rVal, GStrIdx callFunc…
Dmir_nodes.h3670 class CallAssertNonnullStmtNode : public UnaryStmtNode, public SafetyCallCheckStmtNode {
3672CallAssertNonnullStmtNode(Opcode o, GStrIdx callFuncNameIdx, size_t paramIndex, GStrIdx stmtFuncNa… in CallAssertNonnullStmtNode() function
3676 virtual ~CallAssertNonnullStmtNode() {} in ~CallAssertNonnullStmtNode()
3680 CallAssertNonnullStmtNode *CloneTree(MapleAllocator &allocator) const override in CloneTree()
3682 auto *node = allocator.GetMemPool()->New<CallAssertNonnullStmtNode>(*this); in CloneTree()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dmir_builder.cpp1164 CallAssertNonnullStmtNode *MIRBuilder::CreateStmtCallAssertNonnull(Opcode op, BaseNode *rVal, GStrI… in CreateStmtCallAssertNonnull()
1168 …GetCurrentFuncCodeMp()->New<CallAssertNonnullStmtNode>(op, callFuncNameIdx, paramIndex, stmtFuncNa… in CreateStmtCallAssertNonnull()
Dmir_nodes.cpp1177 void CallAssertNonnullStmtNode::Dump(int32 indent) const in Dump()
Dmir_parser.cpp1541 …stmt = mod.CurFuncCodeMemPool()->New<CallAssertNonnullStmtNode>(OP_callassertnonnull, stridx, inde… in ParseUnaryStmtCallAssertNonNull()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/
Dme_ir.h3122 explicit CallAssertNonnullMeStmt(const CallAssertNonnullStmtNode *stt) in CallAssertNonnullMeStmt()