Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp568 [&](const Node *N, bool FirstNode) { in elimMitigatedEdgesAndNodes() argument
569 if (!FirstNode) in elimMitigatedEdgesAndNodes()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp295 TreeNode *FirstNode = FirstIt->second.get(); in cleanUpManifests() local
301 " in " + InputFilenames[FirstNode->Origin] + " and " + Twine(LastLang) + in cleanUpManifests()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp1168 ContextNode *FirstNode = getNodeForStackId(Ids[0]); in assignStackNodesPostOrder() local
1169 assert(FirstNode); in assignStackNodesPostOrder()
1177 set_intersect(SavedContextIds, FirstNode->ContextIds); in assignStackNodesPostOrder()
1216 connectNewNode(NewNode, FirstNode, /*TowardsCallee=*/true); in assignStackNodesPostOrder()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp366 std::unique_ptr<RematNode> FirstNode = std::make_unique<RematNode>(I); in RematGraph() local
367 EntryNode = FirstNode.get(); in RematGraph()
369 addNode(std::move(FirstNode), WorkList, cast<User>(I)); in RematGraph()