Home
last modified time | relevance | path

Searched refs:JsTryNode (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dir_safe_cast_traits.def151 instance_of<JsTryNode>(from) ||
166 REGISTER_SAFE_CAST(JsTryNode, from.GetOpCode() == OP_jstry);
Dopcodes.def104 OPCODE(jstry, JsTryNode, OPCODEISSTMT, 8)
Dmir_nodes.h1997 class JsTryNode : public StmtNode {
1999 JsTryNode() : StmtNode(OP_jstry) {} in JsTryNode() function
2001 JsTryNode(uint16 catchofst, uint16 finallyofset) in JsTryNode() function
2006 virtual ~JsTryNode() = default;
2010 JsTryNode *CloneTree(MapleAllocator &allocator) const override in CloneTree()
2012 auto *t = allocator.GetMemPool()->New<JsTryNode>(*this); in CloneTree()
Dmir_builder.h315 JsTryNode *CreateStmtJsTry(Opcode o, LabelIdx cLabIdx, LabelIdx fLabIdx);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dbin_func_export.cpp601 JsTryNode *tryNode = static_cast<JsTryNode *>(s); in OutputBlockNode()
Dbin_func_import.cpp808 JsTryNode *s = mod.CurFuncCodeMemPool()->New<JsTryNode>(); in ImportBlockNode()
Dmir_builder.cpp1224 JsTryNode *MIRBuilder::CreateStmtJsTry(Opcode, LabelIdx cLabIdx, LabelIdx fLabIdx) in CreateStmtJsTry()
1226 …return GetCurrentFuncCodeMp()->New<JsTryNode>(static_cast<uint16>(cLabIdx), static_cast<uint16>(fL… in CreateStmtJsTry()
Dmir_nodes.cpp958 void JsTryNode::Dump(int32 indent) const in Dump()
Dmir_parser.cpp1391 auto *tryNode = mod.CurFuncCodeMemPool()->New<JsTryNode>(); in ParseStmtJsTry()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/
Dme_ir.h3269 catchOffset(static_cast<const JsTryNode *>(stt)->GetCatchOffset()), in JsTryMeStmt()
3270 finallyOffset(static_cast<const JsTryNode *>(stt)->GetFinallyOffset()) in JsTryMeStmt()