Searched refs:CommentNode (Results 1 – 16 of 16) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
| D | mir_nodes.h | 4232 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 4243 …CommentNode(const MIRModule &mod, const std::string &cmt) : CommentNode(mod.GetCurFuncCodeMPAlloca… in CommentNode() function 4245 CommentNode(const MapleAllocator &allocator, const CommentNode &node) in CommentNode() function 4250 …CommentNode(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 …]
|
| D | ir_safe_cast_traits.def | 162 instance_of<CommentNode>(from)); 246 REGISTER_SAFE_CAST(CommentNode, from.GetOpCode() == OP_comment);
|
| D | opcodes.def | 32 OPCODE(comment, CommentNode, (OPCODEISSTMT | OPCODENOTMMPL), 0)
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
| D | bin_func_import.cpp | 834 CommentNode *s = mod.CurFuncCodeMemPool()->New<CommentNode>(mod); in ImportBlockNode()
|
| D | bin_func_export.cpp | 624 string str(static_cast<CommentNode *>(s)->GetComment().c_str()); in OutputBlockNode()
|
| D | mir_builder.cpp | 1246 return GetCurrentFuncCodeMp()->New<CommentNode>(*GetCurrentFuncCodeMpAllocator(), cmnt); in CreateStmtComment()
|
| D | mir_nodes.cpp | 1492 void CommentNode::Dump(int32 indent) const in Dump()
|
| D | mir_parser.cpp | 1996 auto *cmnt = mod.CurFuncCodeMemPool()->New<CommentNode>(mod); in ParseStmtBlockForSeenComment()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/ |
| D | x64_cgfunc.h | 94 void SelectComment(CommentNode &comment) override;
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
| D | x64_cgfunc.cpp | 256 void X64CGFunc::SelectComment(CommentNode &comment) in SelectComment()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
| D | cgfunc.h | 251 virtual void SelectComment(CommentNode &comment) = 0;
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/ |
| D | aarch64_cgfunc.h | 177 void SelectComment(CommentNode &comment) override;
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/ |
| D | me_ir.h | 3383 comment = static_cast<const CommentNode *>(stt)->GetComment(); in CommentMeStmt()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/ |
| D | lower.cpp | 1272 CommentNode *cmnt = mirModule.CurFuncCodeMemPool()->New<CommentNode>(mirModule); in GenBlockNode()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | cgfunc.cpp | 1548 cgFunc.SelectComment(static_cast<CommentNode &>(stmt)); in HandleComment()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
| D | aarch64_cgfunc.cpp | 9197 void AArch64CGFunc::SelectComment(CommentNode &comment) in SelectComment()
|