HomeSort by relevance Sort by last modified time
    Searched defs:Callees (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
trie-node.h 38 /// The callees from this function.
39 llvm::SmallVector<TrieNode<AssociatedData> *, 4> Callees;
63 // Build a map of callees from the left side.
65 for (auto *Callee : Left.Callees) {
70 // directly adding to the Callees vector. The iteration also removes any
73 for (auto *Callee : Right.Callees) {
76 Node->Callees.push_back(
80 Node->Callees.push_back(Callee);
84 // Add any callees that weren't found in the right side.
86 Node->Callees.push_back(MapPairIter.second)
    [all...]
  /external/llvm/lib/Analysis/
LazyCallGraph.cpp 67 SmallPtrSet<Function *, 4> Callees;
79 if (Callees.insert(Callee).second) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
LazyCallGraph.cpp 82 SmallPtrSet<Function *, 4> Callees;
106 if (Callees.insert(Callee).second) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
CalledValuePropagation.cpp 10 // This file implements a transformation that attaches !callees metadata to
393 MDNode *Callees = MDB.createCallees(LV.getFunctions());
394 C->setMetadata(LLVMContext::MD_callees, Callees);

Completed in 845 milliseconds