Home
last modified time | relevance | path

Searched refs:Callees (Results 1 – 16 of 16) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-xray/
HDtrie-node.h38 llvm::SmallVector<TrieNode<AssociatedData> *, 4> Callees; member
64 for (auto *Callee : Left.Callees) { in mergeTrieNodes()
72 for (auto *Callee : Right.Callees) { in mergeTrieNodes()
75 Node->Callees.push_back( in mergeTrieNodes()
79 Node->Callees.push_back(Callee); in mergeTrieNodes()
85 Node->Callees.push_back(MapPairIter.second); in mergeTrieNodes()
HDxray-stacks.cpp385 auto I = find_if(Top.first->Callees, in accountRecord()
387 if (I == Top.first->Callees.end()) { in accountRecord()
391 Top.first->Callees.emplace_back(N); in accountRecord()
568 for (const auto *C : Top->Callees) in printAll()
644 for (const auto *C : Top->Callees) in print()
HDxray-converter.cpp205 for (auto node_iter : ParentSibling->Callees) in findSiblings()
222 Parent == nullptr ? StackRootsByThreadId[TId] : Parent->Callees; in findOrCreateStackNode()
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
HDxray_function_call_trie.h113 NodeIdPairArray Callees; member
392 auto* Callee = TopNode->Callees.find_element( in enterFunction()
407 TopNode->Callees.AppendEmplace(NewNode, FId); in enterFunction()
513 for (const auto Callee : NP.Node->Callees) { in deepCopyInto()
520 if (UNLIKELY(NP.NewNode->Callees.AppendEmplace(NewNode, Callee.FId) == in deepCopyInto()
574 for (const auto Callee : NT.OrigNode->Callees) { in mergeInto()
575 auto TargetCallee = NT.TargetNode->Callees.find_element( in mergeInto()
588 NT.TargetNode->Callees.AppendEmplace(NewTargetNode, Callee.FId); in mergeInto()
HDxray_profile_collector.cpp188 for (const auto C : Node->Callees) in populateRecords()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
HDStackSafetyAnalysis.cpp684 SmallVector<const CalleeTy *, 16> Callees; in runDataFlow() local
686 Callees.clear(); in runDataFlow()
690 Callees.push_back(CS.first.Callee); in runDataFlow()
692 llvm::sort(Callees); in runDataFlow()
693 Callees.erase(llvm::unique(Callees), Callees.end()); in runDataFlow()
695 for (auto &Callee : Callees) in runDataFlow()
HDLazyCallGraph.cpp79 SmallPtrSet<Function *, 4> Callees; in populateSlow() local
103 if (Callees.insert(Callee).second) { in populateSlow()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/XRay/
HDProfile.cpp169 auto CalleeIt = find_if(Node->Callees, [NodeFuncID](TrieNode *N) { in internPath()
172 if (CalleeIt == Node->Callees.end()) { in internPath()
177 Node->Callees.push_back(NewNode); in internPath()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
HDCalledValuePropagation.cpp394 MDNode *Callees = MDB.createCallees(LV.getFunctions()); in runCVP() local
395 C->setMetadata(LLVMContext::MD_callees, Callees); in runCVP()
HDSampleProfileMatcher.cpp908 for (auto &Callees : in distributeIRToProfileLocationMap()
910 for (auto &FS : Callees.second) { in distributeIRToProfileLocationMap()
HDAttributor.cpp1748 const auto &Callees = CallEdgesAA->getOptimisticEdges(); in checkForAllCallees() local
1749 return Pred(Callees.getArrayRef()); in checkForAllCallees()
HDAttributorAttributes.cpp584 auto CalleePred = [&](ArrayRef<const Function *> Callees) { in updateImpl() argument
585 for (const Function *Callee : Callees) { in updateImpl()
12392 MDNode *Callees = MDB.createCallees(SkippedAssumedCallees); in manifest() local
12393 IndirectCB.setMetadata(LLVMContext::MD_callees, Callees); in manifest()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/XRay/
HDProfile.h119 std::vector<TrieNode *> Callees{};
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDMDBuilder.h118 MDNode *createCallees(ArrayRef<Function *> Callees);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
HDMDBuilder.cpp113 MDNode *MDBuilder::createCallees(ArrayRef<Function *> Callees) { in createCallees() argument
115 for (Function *F : Callees) in createCallees()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
HDAttributor.h2127 function_ref<bool(ArrayRef<const Function *> Callees)> Pred,