Home
last modified time | relevance | path

Searched refs:nodeId (Results 1 – 14 of 14) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/
Ddominance.h188 auto nodeId = node->GetID(); in DumpDoms() local
189 LogInfo::MapleLogger() << tag << "_postorder no " << postOrderIDVec[nodeId]; in DumpDoms()
190 LogInfo::MapleLogger() << " is node:" << nodeId; in DumpDoms()
191 LogInfo::MapleLogger() << " im_" << tag << " is node:" << doms.at(nodeId)->GetID(); in DumpDoms()
193 for (auto &id : domFrontier[nodeId]) { in DumpDoms()
197 for (auto &id : iterDomFrontier[nodeId]) { in DumpDoms()
201 for (auto &id : domChildren[nodeId]) { in DumpDoms()
419 auto nodeId = node->GetID(); in PostOrderWalk() local
420 if (nodeVec[nodeId] == nullptr) { in PostOrderWalk()
424 … DEBUG_ASSERT(nodeId < visitedMap.size() && nodeId < postOrderIDVec.size(), "index out of range"); in PostOrderWalk()
[all …]
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_sampling.h34 Sample(size_t size, uint32_t nodeId, uint64_t ordinal, unsigned int count) in Sample()
36 nodeId_(nodeId), in Sample()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dcg_dominance.cpp33 auto nodeId = node->GetId(); in PostOrderWalk() local
34 … DEBUG_ASSERT(nodeId < visitedMap.size() && nodeId < postOrderIDVec.size(), "index out of range"); in PostOrderWalk()
46 postOrderIDVec[nodeId] = pid++; in PostOrderWalk()
302 auto nodeId = node->GetId(); in PdomPostOrderWalk() local
303 if (bbVec[nodeId] == nullptr) { in PdomPostOrderWalk()
307 …DEBUG_ASSERT(nodeId < visitedMap.size() && nodeId < pdomPostOrderIDVec.size(), "index out of range… in PdomPostOrderWalk()
319 pdomPostOrderIDVec[nodeId] = pid++; in PdomPostOrderWalk()
Ddata_dep_analysis.cpp111 for (auto nodeId : cdgNode.GetTopoPredInRegion()) { in BuildSpecialInsnDependency() local
112 CDGNode *predNode = region.GetCDGNodeById(nodeId); in BuildSpecialInsnDependency()
153 for (const auto &nodeId : cdgNode.GetTopoPredInRegion()) { in UpdateReadyNodesInfo() local
154 succNode->InsertVisitedTopoPredInRegion(nodeId); in UpdateReadyNodesInfo()
/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/utils/
Dsp_mc_lock_free_queue.h336 auto nodeId = GetNodeId(popIndex); in Pop() local
343 if (UNLIKELY(currentHead->id > nodeId)) { in Pop()
361 if (UNLIKELY(currentHead->id < nodeId)) { in Pop()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/rawheap_translate/
Drawheap_translate.h33 uint64_t nodeId; // Range from 1 member
43 : nodeId(0), in Node()
Drawheap_translate.cpp223 syntheticRoot->nodeId = 1; // 1: means root node in ReadRootTable()
275 node->nodeId = item.id; in CreateNode()
296 if (hclass->nodeId == node->nodeId) { in FillNodesAndBuildEdges()
Dserializer.cpp145 writer->WriteNumber(node->nodeId); // 3. in SerializeNodes()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dcg_cdg.h416 void InsertVisitedTopoPredInRegion(CDGNodeId nodeId) const in InsertVisitedTopoPredInRegion() argument
418 topoPredInRegion->insert(nodeId); in InsertVisitedTopoPredInRegion()
686 CDGNode *GetCDGNodeById(CDGNodeId nodeId) in GetCDGNodeById() argument
689 if (cdgNode->GetNodeId() == nodeId) { in GetCDGNodeById()
/arkcompiler/ets_runtime/ecmascript/dfx/tracing/
Dtracing.cpp188 for (auto &nodeId : cpuProfileArg.nodes) { in TraceEventUpdateCpuProfiler() local
189 struct CpuProfileNode &nodeInfo = profileInfo->nodes[nodeId - 1]; in TraceEventUpdateCpuProfiler()
/arkcompiler/toolchain/tooling/test/
Ddebugger_types_test.cpp1702 "size":"Test","nodeId":"Test","ordinal":"Test"}})"; in HWTEST_F_L0()
1708 "size":{"xx":"yy"},"nodeId":{"xx":"yy"},"ordinal":{"xx":"yy"}}})"; in HWTEST_F_L0()
1713 …msg = std::string() + R"({"id":0,"method":"Debugger.Test","params":{"size":100,"nodeId":1,"ordinal… in HWTEST_F_L0()
1729 …msg = std::string() + R"({"id":0,"method":"Debugger.Test","params":{"size":100,"nodeId":1,"ordinal… in HWTEST_F_L0()
1877 "samples":[{"size":100, "nodeId":1, "ordinal":10}] in HWTEST_F_L0()
1926 "samples":[{"size":100, "nodeId":1, "ordinal":10}] in HWTEST_F_L0()
Dpt_types_test.cpp885 int32_t nodeId = sampData->data()->get()->GetNodeId(); in HWTEST_F_L0() local
886 ASSERT_TRUE(nodeId == sampleInfo.nodeId_); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/base/
Dpt_types.h1786 SamplingHeapProfileSample &SetNodeId(int32_t nodeId) in SetNodeId() argument
1788 nodeId_ = nodeId; in SetNodeId()
Dpt_types.cpp2116 int32_t nodeId; in Create() local
2117 ret = params.GetInt("nodeId", &nodeId); in Create()
2119 samplingHeapProfileSample->nodeId_ = nodeId; in Create()