| /freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-xray/ |
| HD | trie-node.h | 38 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()
|
| HD | xray-stacks.cpp | 385 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()
|
| HD | xray-converter.cpp | 205 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/ |
| HD | xray_function_call_trie.h | 113 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()
|
| HD | xray_profile_collector.cpp | 188 for (const auto C : Node->Callees) in populateRecords()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| HD | StackSafetyAnalysis.cpp | 684 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()
|
| HD | LazyCallGraph.cpp | 79 SmallPtrSet<Function *, 4> Callees; in populateSlow() local 103 if (Callees.insert(Callee).second) { in populateSlow()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/XRay/ |
| HD | Profile.cpp | 169 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/ |
| HD | CalledValuePropagation.cpp | 394 MDNode *Callees = MDB.createCallees(LV.getFunctions()); in runCVP() local 395 C->setMetadata(LLVMContext::MD_callees, Callees); in runCVP()
|
| HD | SampleProfileMatcher.cpp | 908 for (auto &Callees : in distributeIRToProfileLocationMap() 910 for (auto &FS : Callees.second) { in distributeIRToProfileLocationMap()
|
| HD | Attributor.cpp | 1748 const auto &Callees = CallEdgesAA->getOptimisticEdges(); in checkForAllCallees() local 1749 return Pred(Callees.getArrayRef()); in checkForAllCallees()
|
| HD | AttributorAttributes.cpp | 584 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/ |
| HD | Profile.h | 119 std::vector<TrieNode *> Callees{};
|
| /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| HD | MDBuilder.h | 118 MDNode *createCallees(ArrayRef<Function *> Callees);
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/ |
| HD | MDBuilder.cpp | 113 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/ |
| HD | Attributor.h | 2127 function_ref<bool(ArrayRef<const Function *> Callees)> Pred,
|