Home
last modified time | relevance | path

Searched refs:InverseGraph (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DCFGDiff.h80 template <typename NodePtr, bool InverseGraph = false> class GraphDiff {
106 cfg::LegalizeUpdates<NodePtr>(Updates, LegalizedUpdates, InverseGraph); in GraphDiff()
120 (InverseEdge != InverseGraph) ? PredDelete : SuccDelete; in ignoreChild()
131 (InverseEdge != InverseGraph) ? PredInsert : SuccInsert; in getAddedChildren()
158 template <bool InverseGraph = false> struct CFGViewSuccessors {
159 using DataRef = const GraphDiff<BasicBlock *, InverseGraph> *;
212 template <bool InverseGraph = false> struct CFGViewPredecessors {
213 using DataRef = const GraphDiff<BasicBlock *, InverseGraph> *;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DCFGUpdate.h65 bool InverseGraph) { in LegalizeUpdates() argument
77 if (InverseGraph) in LegalizeUpdates()
101 if (!InverseGraph) in LegalizeUpdates()
/external/llvm-project/llvm/include/llvm/Support/
DCFGUpdate.h64 bool InverseGraph, bool ReverseResultOrder = false) {
76 if (InverseGraph)
100 if (!InverseGraph)
DCFGDiff.h57 template <typename NodePtr, bool InverseGraph = false> class GraphDiff {
97 cfg::LegalizeUpdates<NodePtr>(Updates, LegalizedUpdates, InverseGraph);
144 auto &Children = (InverseEdge != InverseGraph) ? Pred : Succ; in getChildren()