Home
last modified time | relevance | path

Searched defs:head (Results 1 – 22 of 22) sorted by relevance

/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dadjust_arefs.cpp101 void AdjustRefs::WalkChainDown(Inst *inst, Inst *head) in WalkChainDown()
136 void AdjustRefs::ProcessChain(Inst *head) in ProcessChain()
/arkcompiler/ets_runtime/ecmascript/tests/
Dlinked_node_test.cpp69 JSHandle<LinkedNode> head(thread, JSTaggedValue::Hole()); in CreateLinkedList() local
98 JSHandle<LinkedNode> head = CreateLinkedList(); in HWTEST_F_L0() local
Drb_tree_node_test.cpp229 JSHandle<LinkedNode> head = RBTreeNode::Detreeing(thread, rootNode); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/mem/
Dchunk.cpp39 Area *head = currentArea_; in Expand() local
/arkcompiler/ets_runtime/ecmascript/stackmap/
Dark_stackmap_parser.cpp54 StackMapSecHead *head = reinterpret_cast<StackMapSecHead *>(stackmapAddr); in GetArkDeopt() local
110 StackMapSecHead *head = reinterpret_cast<StackMapSecHead *>(stackmapAddr); in IteratorStackMap() local
Dark_stackmap.h48 CallsiteHead head; member
Dllvm_stackmap_type.h129 struct StkMapRecordHeadTy head; member
172 struct Header head; member
Dllvm_stackmap_parser.cpp146 auto head = dataInfo_->Read<struct StkMapRecordHeadTy>(); in CalculateStackMap() local
/arkcompiler/ets_runtime/ecmascript/
Dtagged_node.cpp22 JSHandle<RBTreeNode> LinkedNode::Treeing(JSThread *thread, const JSHandle<LinkedNode> &head) in Treeing()
58 JSHandle<LinkedNode> &head, JSHandle<LinkedNode> &tail) in InOrderTraverse()
77 JSHandle<LinkedNode> head(thread, JSTaggedValue::Hole()); in Detreeing() local
Dtagged_hash_array.cpp229 LinkedNode *head = LinkedNode::Cast(node.GetTaggedObject()); in RemoveNode() local
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_hashset.cpp107 JSHandle<LinkedNode> head = RBTreeNode::Detreeing(thread, root); in Remove() local
Djs_api_hashmap.cpp238 JSHandle<LinkedNode> head = RBTreeNode::Detreeing(thread, root); in Remove() local
/arkcompiler/runtime_core/runtime/tooling/
Ddebug_inf.cpp123 auto *head = metaInfo->head_.load(std::memory_order_relaxed); in AddCodeMetaInfoImpl() local
/arkcompiler/runtime_core/runtime/mem/
Dfreelist_allocator-inl.h619 FreeListHeader *head = GetFirstBlock(index); in FindMemoryBlock() local
Drunslots_allocator-inl.h400 auto head = free_runslots_.GetHead(); in TrimUnsafe() local
/arkcompiler/runtime_core/compiler/optimizer/analysis/
Dliveness_analyzer.cpp681 for (auto head = this; head != nullptr; head = head->GetSibling()) { in FindSiblingAt() local
/arkcompiler/ets_runtime/ecmascript/compiler/
Dscheduler.cpp461 GateRef head = cfg->at(bbIdx).front(); in Print() local
Dcircuit_optimizer.cpp1425 void Partition::SetHead(std::shared_ptr<PartitionNode> head) in SetHead()
/arkcompiler/toolchain/tooling/test/
Ddebugger_types_test.cpp1874 SamplingHeapProfileNode *head = object->GetHead(); in HWTEST_F_L0() local
/arkcompiler/toolchain/tooling/base/
Dpt_types.h1702 SamplingHeapProfile &SetHead(std::unique_ptr<SamplingHeapProfileNode> head) in SetHead()
Dpt_types.cpp1940 std::unique_ptr<PtJson> head; in Create() local
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dinst.h562 explicit UserList(PointerType head) : head_(head) {} in UserList()