Home
last modified time | relevance | path

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

12

/external/llvm-project/compiler-rt/lib/xray/tests/unit/
Dfunction_call_trie_test.cpp171 ASSERT_FALSE(F1.Callees.empty()); in TEST()
173 const auto &F2 = *F1.Callees[0].NodePtr; in TEST()
175 ASSERT_FALSE(F2.Callees.empty()); in TEST()
177 const auto &F3 = *F2.Callees[0].NodePtr; in TEST()
179 ASSERT_TRUE(F3.Callees.empty()); in TEST()
209 if (F->Callees.empty() && i != 31) in TEST()
212 F = F->Callees[0].NodePtr; in TEST()
242 ASSERT_EQ(R0Orig.Callees.size(), 2u); in TEST()
243 ASSERT_EQ(R0Copy.Callees.size(), 2u); in TEST()
246 *R0Orig.Callees in TEST()
[all …]
/external/llvm-project/llvm/tools/llvm-xray/
Dtrie-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()
Dxray-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()
573 for (const auto *C : Top->Callees) in printAll()
651 for (const auto *C : Top->Callees) in print()
Dxray-converter.cpp196 for (auto node_iter : ParentSibling->Callees) in findSiblings()
213 Parent == nullptr ? StackRootsByThreadId[TId] : Parent->Callees; in findOrCreateStackNode()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DStackSafetyAnalysis.cpp506 SmallVector<const GlobalValue *, 16> Callees; in runDataFlow() local
508 Callees.clear(); in runDataFlow()
512 Callees.push_back(CS.Callee); in runDataFlow()
515 Callees.push_back(CS.Callee); in runDataFlow()
517 llvm::sort(Callees); in runDataFlow()
518 Callees.erase(std::unique(Callees.begin(), Callees.end()), Callees.end()); in runDataFlow()
520 for (auto &Callee : Callees) in runDataFlow()
/external/llvm-project/compiler-rt/lib/xray/
Dxray_function_call_trie.h113 NodeIdPairArray Callees; member
396 auto* Callee = TopNode->Callees.find_element( in enterFunction()
411 TopNode->Callees.AppendEmplace(NewNode, FId); in enterFunction()
517 for (const auto Callee : NP.Node->Callees) { in deepCopyInto()
524 if (UNLIKELY(NP.NewNode->Callees.AppendEmplace(NewNode, Callee.FId) == in deepCopyInto()
578 for (const auto Callee : NT.OrigNode->Callees) { in mergeInto()
579 auto TargetCallee = NT.TargetNode->Callees.find_element( in mergeInto()
592 NT.TargetNode->Callees.AppendEmplace(NewTargetNode, Callee.FId); in mergeInto()
Dxray_profile_collector.cpp191 for (const auto C : Node->Callees) in populateRecords()
/external/llvm-project/llvm/lib/Analysis/
DStackSafetyAnalysis.cpp571 SmallVector<const CalleeTy *, 16> Callees; in runDataFlow() local
573 Callees.clear(); in runDataFlow()
577 Callees.push_back(CS.first.Callee); in runDataFlow()
579 llvm::sort(Callees); in runDataFlow()
580 Callees.erase(std::unique(Callees.begin(), Callees.end()), Callees.end()); in runDataFlow()
582 for (auto &Callee : Callees) in runDataFlow()
DLazyCallGraph.cpp81 SmallPtrSet<Function *, 4> Callees; in populateSlow() local
105 if (Callees.insert(Callee).second) { in populateSlow()
/external/llvm-project/llvm/unittests/DebugInfo/CodeView/
DTypeIndexDiscoveryTest.cpp564 CallerSym Callees(SymbolRecordKind::CalleeSym); in TEST_F() local
565 Callees.Indices.push_back(TypeIndex(1)); in TEST_F()
566 Callees.Indices.push_back(TypeIndex(2)); in TEST_F()
567 Callees.Indices.push_back(TypeIndex(3)); in TEST_F()
576 writeSymbolRecords(Callees, Callers, Inlinees); in TEST_F()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
DProfile.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()
/external/llvm-project/llvm/lib/XRay/
DProfile.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()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
DProfile.h119 std::vector<TrieNode *> Callees{};
/external/llvm-project/llvm/include/llvm/XRay/
DProfile.h119 std::vector<TrieNode *> Callees{};
/external/llvm-project/llvm/lib/Transforms/IPO/
DCalledValuePropagation.cpp392 MDNode *Callees = MDB.createCallees(LV.getFunctions()); in runCVP() local
393 C->setMetadata(LLVMContext::MD_callees, Callees); in runCVP()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DCalledValuePropagation.cpp397 MDNode *Callees = MDB.createCallees(LV.getFunctions()); in runCVP() local
398 C->setMetadata(LLVMContext::MD_callees, Callees); in runCVP()
/external/llvm-project/llvm/include/llvm/IR/
DMDBuilder.h95 MDNode *createCallees(ArrayRef<Function *> Callees);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DMDBuilder.h99 MDNode *createCallees(ArrayRef<Function *> Callees);
/external/llvm-project/llvm/lib/IR/
DMDBuilder.cpp100 MDNode *MDBuilder::createCallees(ArrayRef<Function *> Callees) { in createCallees() argument
102 for (Function *F : Callees) in createCallees()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DMDBuilder.cpp100 MDNode *MDBuilder::createCallees(ArrayRef<Function *> Callees) { in createCallees() argument
102 for (Function *F : Callees) in createCallees()
/external/llvm-project/llvm/test/CodeGen/AMDGPU/
Dcall-constexpr.ll122 ; Callees appears last in source file to test that we still lower their
/external/llvm/lib/Target/X86/
DREADME-X86-64.txt60 which would often require a callee-saved register. Callees usually
/external/llvm-project/llvm/lib/Target/X86/
DREADME-X86-64.txt60 which would often require a callee-saved register. Callees usually
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DREADME-X86-64.txt60 which would often require a callee-saved register. Callees usually
/external/llvm/lib/Analysis/
DLazyCallGraph.cpp67 SmallPtrSet<Function *, 4> Callees; in Node() local
79 if (Callees.insert(Callee).second) { in Node()

12