Home
last modified time | relevance | path

Searched defs:Edge (Results 1 – 25 of 53) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSampleProfileInference.cpp114 for (auto &Edge : Edges[Src]) { in run() local
164 for (const auto &Edge : Edges[Src]) { in getFlow() local
174 for (const auto &Edge : Edges[Src]) { in getFlow() local
221 auto &Edge = Edges[Pred][Nodes[Now].ParentEdgeIndex]; in computeAugmentingPathCapacity() local
271 auto &Edge = Edges[Src][EdgeIdx]; in findAugmentingPath() local
299 auto &Edge = Edges[Pred][Nodes[Now].ParentEdgeIndex]; in augmentFlowAlongPath() local
347 auto &Edge = Edges[NodeIdx][EdgeIdx]; in findAugmentingDAG() local
387 for (auto &Edge : Edges[Src]) { in findAugmentingDAG() local
410 for (auto &Edge : AugmentingEdges[Src]) { in augmentFlowAlongDAG() local
423 for (auto &Edge : AugmentingEdges[Src]) { in augmentFlowAlongDAG() local
[all …]
/freebsd/contrib/llvm-project/lld/MachO/
H A DExportTrie.cpp52 struct Edge { struct
53 Edge(StringRef s, TrieNode *node) : substring(s), child(node) {} in Edge() function
55 StringRef substring;
56 struct TrieNode *child;
H A DSectionPriorities.cpp43 struct Edge { struct
44 int from;
45 uint64_t weight;
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector.h390 struct Edge { struct
404 Edge edges_[BV::kSize * 32]; argument
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp178 struct Edge { struct
190 Edge(const BasicBlock *Src, const BasicBlock *Dest, uint64_t W = 1) in Edge() argument
706 static BasicBlock *getInstrBB(CFGMST<Edge, BBInfo> &MST, Edge &E, in getInstrBB() argument
751 static void dumpEdges(CFGMST<Edge, BBInfo> &MST, GCOVFunction &GF) { in dumpEdges() argument
181 SrcBB__anon09913f2a0211::Edge global() argument
182 DestBB__anon09913f2a0211::Edge global() argument
183 Weight__anon09913f2a0211::Edge global() argument
184 Place__anon09913f2a0211::Edge global() argument
185 DstNumber__anon09913f2a0211::Edge global() argument
186 InMST__anon09913f2a0211::Edge global() argument
187 Removed__anon09913f2a0211::Edge global() argument
188 IsCritical__anon09913f2a0211::Edge global() argument
194 infoString__anon09913f2a0211::Edge infoString() argument
[all...]
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DSummaryBasedOptimizations.cpp53 auto GetCallSiteRelFreq = [](FunctionSummary::EdgeTy &Edge) { in computeSyntheticCounts()
76 auto GetProfileCount = [&](ValueInfo V, FunctionSummary::EdgeTy &Edge) { in computeSyntheticCounts()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp416 friend raw_ostream &operator<<(raw_ostream &OS, const ContextEdge &Edge) { in operator <<()
883 for (auto &Edge : CallerEdges) { in addOrUpdateCallerEdge() local
890 std::shared_ptr<ContextEdge> Edge = std::make_shared<ContextEdge>( in addOrUpdateCallerEdge() local
900 auto Edge = *EI; in removeNoneTypeCalleeEdges() local
914 for (const auto &Edge : CalleeEdges) in findEdgeFromCallee() local
924 for (const auto &Edge : CallerEdges) in findEdgeFromCaller() local
932 eraseCalleeEdge(const ContextEdge *Edge) { in eraseCalleeEdge()
943 eraseCallerEdge(const ContextEdge *Edge) { in eraseCallerEdge()
1113 for (const auto &Edge : Node->CallerEdges) { in propagateDuplicateContextIds() local
1145 auto Edge = *EI; in connectNewNode() local
[all …]
H A DSyntheticCountsPropagation.cpp103 const CallGraphNode::CallRecord &Edge) { in run() argument
/freebsd/contrib/llvm-project/lld/ELF/
H A DCallGraphSort.cpp56 struct Edge { global() struct
57 from__anon14bfe4470111::Edge global() argument
58 weight__anon14bfe4470111::Edge global() argument
/freebsd/contrib/llvm-project/lld/COFF/
H A DCallGraphSort.cpp28 struct Edge { struct
29 int from;
30 uint64_t weight;
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp395 struct Edge { struct
396 uint64_t SrcMod;
397 int Hotness;
398 GlobalValue::GUID Src;
399 GlobalValue::GUID Dst;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDDGPrinter.cpp130 const DDGNode *Src, const DDGEdge *Edge, const DataDependenceGraph *G) { in getSimpleEdgeAttributes()
139 const DDGNode *Src, const DDGEdge *Edge, const DataDependenceGraph *G) { in getVerboseEdgeAttributes()
H A DDependenceGraphBuilder.cpp397 EdgeType &Edge = N->back(); in simplify() local
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSuffixTree.cpp59 unsigned StartIdx, unsigned Edge) { in insertLeaf()
70 unsigned Edge) { in insertInternalNode()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSCCIterator.h276 bool unionGroups(const EdgeType *Edge) { in unionGroups()
351 for (const auto *Edge : MSTEdges) in scc_member_iterator() local
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DGenericDomTreeUpdaterImpl.h87 auto Edge = std::make_pair(U.getFrom(), U.getTo()); in applyUpdatesPermissive() local
H A DBranchProbabilityInfo.h328 using Edge = std::pair<const BasicBlock *, unsigned>; variable
H A DSparsePropagation.h131 using Edge = std::pair<BasicBlock *, BasicBlock *>; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h287 void addSrcEdge(GCOVArc *Edge) { pred.push_back(Edge); } in addSrcEdge() argument
289 void addDstEdge(GCOVArc *Edge) { succ.push_back(Edge); } in addDstEdge() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSampleProfileInference.h124 using Edge = std::pair<const BasicBlockT *, const BasicBlockT *>; variable
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSimplifyCFGPass.cpp236 for (const auto &Edge : Edges) in iterativelySimplifyCFG() local
/freebsd/contrib/llvm-project/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp178 for (const auto &Edge : CFGProfile->operands()) { in emitCGProfileMetadata() local
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp120 using Edge = typename GraphT::Edge; typedef
151 using Edge = MachineGadgetGraph::Edge; typedef in __anond4b80a110111::X86LoadValueInjectionLoadHardeningPass
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp446 for (const GCOVArc *Edge : pred) in print() local
452 for (const GCOVArc *Edge : succ) { in print() local
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp554 if (const SDep *Edge = CriticalPathStep(CriticalPathSU)) { in BreakAntiDependencies() local

123