/external/llvm-project/compiler-rt/lib/xray/tests/unit/ |
D | function_call_trie_test.cpp | 171 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/ |
D | 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()
|
D | 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() 573 for (const auto *C : Top->Callees) in printAll() 651 for (const auto *C : Top->Callees) in print()
|
D | xray-converter.cpp | 196 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/ |
D | StackSafetyAnalysis.cpp | 506 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/ |
D | xray_function_call_trie.h | 113 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()
|
D | xray_profile_collector.cpp | 191 for (const auto C : Node->Callees) in populateRecords()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | StackSafetyAnalysis.cpp | 571 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()
|
D | LazyCallGraph.cpp | 81 SmallPtrSet<Function *, 4> Callees; in populateSlow() local 105 if (Callees.insert(Callee).second) { in populateSlow()
|
/external/llvm-project/llvm/unittests/DebugInfo/CodeView/ |
D | TypeIndexDiscoveryTest.cpp | 564 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/ |
D | 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()
|
/external/llvm-project/llvm/lib/XRay/ |
D | 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()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/ |
D | Profile.h | 119 std::vector<TrieNode *> Callees{};
|
/external/llvm-project/llvm/include/llvm/XRay/ |
D | Profile.h | 119 std::vector<TrieNode *> Callees{};
|
/external/llvm-project/llvm/lib/Transforms/IPO/ |
D | CalledValuePropagation.cpp | 392 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/ |
D | CalledValuePropagation.cpp | 397 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/ |
D | MDBuilder.h | 95 MDNode *createCallees(ArrayRef<Function *> Callees);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | MDBuilder.h | 99 MDNode *createCallees(ArrayRef<Function *> Callees);
|
/external/llvm-project/llvm/lib/IR/ |
D | MDBuilder.cpp | 100 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/ |
D | MDBuilder.cpp | 100 MDNode *MDBuilder::createCallees(ArrayRef<Function *> Callees) { in createCallees() argument 102 for (Function *F : Callees) in createCallees()
|
/external/llvm-project/llvm/test/CodeGen/AMDGPU/ |
D | call-constexpr.ll | 122 ; Callees appears last in source file to test that we still lower their
|
/external/llvm/lib/Target/X86/ |
D | README-X86-64.txt | 60 which would often require a callee-saved register. Callees usually
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | README-X86-64.txt | 60 which would often require a callee-saved register. Callees usually
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | README-X86-64.txt | 60 which would often require a callee-saved register. Callees usually
|
/external/llvm/lib/Analysis/ |
D | LazyCallGraph.cpp | 67 SmallPtrSet<Function *, 4> Callees; in Node() local 79 if (Callees.insert(Callee).second) { in Node()
|