Home
last modified time | relevance | path

Searched refs:FirstNode (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DItaniumManglingCanonicalizer.cpp255 Node *FirstNode, *SecondNode; in addEquivalence() local
258 std::tie(FirstNode, FirstIsNew) = Parse(First); in addEquivalence()
259 if (!FirstNode) in addEquivalence()
262 Alloc.trackUsesOf(FirstNode); in addEquivalence()
268 if (FirstNode == SecondNode) in addEquivalence()
272 Alloc.addRemapping(FirstNode, SecondNode); in addEquivalence()
274 Alloc.addRemapping(SecondNode, FirstNode); in addEquivalence()
/freebsd/contrib/llvm-project/compiler-rt/lib/ctx_profile/
H A DCtxInstrProfiling.cpp251 Root->FirstNode = allocContextNode(M->tryBumpAllocate(Needed), Guid, in setupContext()
264 onContextEnter(*Root->FirstNode); in __llvm_ctx_profile_start_context()
265 return Root->FirstNode; in __llvm_ctx_profile_start_context()
291 resetContextNode(*Root->FirstNode); in __llvm_ctx_profile_start_collection()
310 if (!Writer(Data, *Root->FirstNode)) in __llvm_ctx_profile_fetch()
H A DCtxInstrProfiling.h80 ContextNode *FirstNode = nullptr; member
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h583 T *FirstNode = static_cast<T *>(Other.Last->Next.getPointer()); in takeNodes() local
584 T *IterNode = FirstNode; in takeNodes()
593 } while (IterNode != FirstNode); in takeNodes()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp567 [&](const Node *N, bool FirstNode) { in elimMitigatedEdgesAndNodes() argument
568 if (!FirstNode) in elimMitigatedEdgesAndNodes()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp296 TreeNode *FirstNode = FirstIt->second.get(); in cleanUpManifests() local
302 " in " + InputFilenames[FirstNode->Origin] + " and " + Twine(LastLang) + in cleanUpManifests()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp1297 ContextNode *FirstNode = getNodeForStackId(Ids[0]); in assignStackNodesPostOrder() local
1298 assert(FirstNode); in assignStackNodesPostOrder()
1306 set_intersect(SavedContextIds, FirstNode->getContextIds()); in assignStackNodesPostOrder()
1344 connectNewNode(NewNode, FirstNode, /*TowardsCallee=*/true, SavedContextIds); in assignStackNodesPostOrder()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp369 std::unique_ptr<RematNode> FirstNode = std::make_unique<RematNode>(I); in RematGraph() local
370 EntryNode = FirstNode.get(); in RematGraph()
372 addNode(std::move(FirstNode), WorkList, cast<User>(I)); in RematGraph()