/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
H A D | mir_builder.cpp | 172 return NewNode<ConstvalNode>(mirConst->GetType().GetPrimType(), mirConst); in CreateConstval() 179 return NewNode<ConstvalNode>(pty, mirConst); in CreateIntConst() 204 auto *node = NewNode<AddrofNode>(OP_dread, kPtyInvalid, symbol.GetStIdx(), fieldID); in CreateExprDread() 211 return NewNode<RegreadNode>(pty, regIdx); in CreateExprRegread() 227 return NewNode<IreadNode>(OP_iread, type, ptrType.GetTypeIndex(), fieldID, addr); in CreateExprIread() 232 return NewNode<UnaryNode>(opcode, type.GetPrimType(), opnd); 237 return NewNode<TypeCvtNode>(o, toPrimType, fromPrimType, &opnd); 248 return NewNode<ExtractbitsNode>(o, type, bOffset, bSize, opnd); 258 return NewNode<RetypeNode>(type.GetPrimType(), fromType, type.GetTypeIndex(), opnd); 263 return NewNode<BinaryNod [all...] |
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | list_test.cpp | 49 TestNode *NewNode(Args &&... args) in NewNode() function in ListTest 87 node = NewNode(1); in TEST_F() 97 list.PushFront(*NewNode(2)); in TEST_F() 104 list.InsertAfter(list.begin(), *NewNode(2)); in TEST_F() 107 list.PushFront(*NewNode(0)); in TEST_F() 115 it = list.InsertAfter(it, *NewNode(i + 2)); in TEST_F() 160 DTestNode *NewNode(Args &&... args) in NewNode() function in DListTest 220 auto *node = NewNode(i); in TEST_F() 244 auto *node = NewNode(i); in TEST_F()
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | list_test.cpp | 50 TestNode *NewNode(Args &&...args) in NewNode() function in ListTest 89 node = NewNode(1U); in TEST_F() 99 list.PushFront(*NewNode(2U)); in TEST_F() 106 list.InsertAfter(list.begin(), *NewNode(2U)); in TEST_F() 109 list.PushFront(*NewNode(0U)); in TEST_F() 117 it = list.InsertAfter(it, *NewNode(i + 2U)); in TEST_F() 163 DTestNode *NewNode(Args &&...args) in NewNode() function in DListTest 223 auto *node = NewNode(i); in TEST_F() 247 auto *node = NewNode(i); in TEST_F()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | ecma_global_storage.h | 242 inline T *NewNode(JSThread *thread, JSTaggedType value) in NewNode() function in panda::ecmascript::NodeList 548 S *node = (*storage)->NewNode(thread_, value); in NewGlobalHandleImplement() 575 S *node = (*storage)->NewNode(thread_, value); in NewGlobalHandleImplement()
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
H A D | heap_snapshot.cpp | 37 Node *Node::NewNode(Chunk *chunk, NodeId id, size_t index, const CString *name, NodeType type, size_t size, in NewNode() function in panda::ecmascript::Node 686 Node* node = Node::NewNode(chunk_, sequenceId, nodeCount_, GenerateNodeName(obj), GenerateNodeType(obj), in HandleBaseClassNode() 770 node = Node::NewNode(chunk_, sequenceId, nodeCount_, GetString(primitiveName), NodeType::HEAPNUMBER, 0, in GenerateNode() 952 Node *node = Node::NewNode(chunk_, sequenceId, nodeCount_, nodeName, NodeType::STRING, selfsize, in GenerateStringNode() 974 Node *node = Node::NewNode(chunk_, sequenceId, nodeCount_, GetString(strContent), NodeType::STRING, selfsize, in GeneratePrivateStringNode() 1000 Node *node = Node::NewNode(chunk_, sequenceId, nodeCount_, GetString("JSFunction"), NodeType::CLOSURE, selfsize, in GenerateFunctionNode() 1027 Node *node = Node::NewNode(chunk_, sequenceId, nodeCount_, GetString("Object"), NodeType::OBJECT, selfsize, in GenerateObjectNode() 1118 Node *missObj = Node::NewNode(chunk_, 1, nodeCount_, GetString(name), NodeType::OBJECT, 0, 0, 0); in FillEdgesForBinMod() 1164 Node *syntheticRoot = Node::NewNode(chunk_, 1, nodeCount_, GetString("SyntheticRoot"), in BuildSnapshotForBinMod() 1261 Node *syntheticRoot = Node::NewNode(chunk in AddSyntheticRoot() [all...] |
H A D | heap_snapshot.h | 152 static Node *NewNode(Chunk *chunk, NodeId id, size_t index, const CString *name, NodeType type, size_t size,
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
H A D | mir_builder.h | 239 T *NewNode(Arguments &&... args) in NewNode() function in maple::MIRBuilder
|