Home
last modified time | relevance | path

Searched refs:CommentNode (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dmir_nodes.h4232 class CommentNode : public StmtNode {
4234 …explicit CommentNode(const MapleAllocator &allocator) : StmtNode(OP_comment), comment(allocator.Ge… in CommentNode() function
4236 explicit CommentNode(const MIRModule &mod) : CommentNode(mod.GetCurFuncCodeMPAllocator()) {} in CommentNode() function
4238 CommentNode(const MapleAllocator &allocator, const std::string &cmt) in CommentNode() function
4243CommentNode(const MIRModule &mod, const std::string &cmt) : CommentNode(mod.GetCurFuncCodeMPAlloca… in CommentNode() function
4245 CommentNode(const MapleAllocator &allocator, const CommentNode &node) in CommentNode() function
4250CommentNode(const MIRModule &mod, const CommentNode &node) : CommentNode(mod.GetCurFuncCodeMPAlloc… in CommentNode() function
4252 CommentNode(CommentNode &node) = delete;
4253 CommentNode &operator=(const CommentNode &node) = delete;
4254 virtual ~CommentNode() = default;
[all …]
Dir_safe_cast_traits.def162 instance_of<CommentNode>(from));
246 REGISTER_SAFE_CAST(CommentNode, from.GetOpCode() == OP_comment);
Dopcodes.def32 OPCODE(comment, CommentNode, (OPCODEISSTMT | OPCODENOTMMPL), 0)
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dbin_func_import.cpp834 CommentNode *s = mod.CurFuncCodeMemPool()->New<CommentNode>(mod); in ImportBlockNode()
Dbin_func_export.cpp624 string str(static_cast<CommentNode *>(s)->GetComment().c_str()); in OutputBlockNode()
Dmir_builder.cpp1246 return GetCurrentFuncCodeMp()->New<CommentNode>(*GetCurrentFuncCodeMpAllocator(), cmnt); in CreateStmtComment()
Dmir_nodes.cpp1492 void CommentNode::Dump(int32 indent) const in Dump()
Dmir_parser.cpp1996 auto *cmnt = mod.CurFuncCodeMemPool()->New<CommentNode>(mod); in ParseStmtBlockForSeenComment()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/
Dx64_cgfunc.h94 void SelectComment(CommentNode &comment) override;
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
Dx64_cgfunc.cpp256 void X64CGFunc::SelectComment(CommentNode &comment) in SelectComment()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dcgfunc.h251 virtual void SelectComment(CommentNode &comment) = 0;
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
Daarch64_cgfunc.h177 void SelectComment(CommentNode &comment) override;
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/
Dme_ir.h3383 comment = static_cast<const CommentNode *>(stt)->GetComment(); in CommentMeStmt()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
Dlower.cpp1272 CommentNode *cmnt = mirModule.CurFuncCodeMemPool()->New<CommentNode>(mirModule); in GenBlockNode()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dcgfunc.cpp1548 cgFunc.SelectComment(static_cast<CommentNode &>(stmt)); in HandleComment()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_cgfunc.cpp9197 void AArch64CGFunc::SelectComment(CommentNode &comment) in SelectComment()