Home
last modified time | relevance | path

Searched refs:getGraph (Results 1 – 10 of 10) sorted by relevance

/freebsd-9-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Heuristics/
DBriggs.h62 : s(&s), g(&s.getGraph()) {} in SpillCostComparator()
184 Graph &g = getGraph(); in preUpdateEdgeCosts()
191 subtractEdgeContributions(eId, getGraph().getEdgeNode1(eId)); in preUpdateEdgeCosts()
193 subtractEdgeContributions(eId, getGraph().getEdgeNode2(eId)); in preUpdateEdgeCosts()
214 Graph &g = getGraph(); in handleAddEdge()
313 Matrix &eCosts = getGraph().getEdgeCosts(eId); in computeEdgeContributions()
361 unsigned numRegs = getGraph().getNodeCosts(nId).getLength() - 1; in addEdgeContributions()
363 bool nIsNode1 = nId == getGraph().getEdgeNode1(eId); in addEdgeContributions()
388 unsigned numRegs = getGraph().getNodeCosts(nId).getLength() - 1; in subtractEdgeContributions()
390 bool nIsNode1 = nId == getGraph().getEdgeNode1(eId); in subtractEdgeContributions()
[all …]
/freebsd-9-stable/contrib/llvm/include/llvm/CodeGen/PBQP/
DHeuristicBase.h75 : s(solver), g(s.getGraph()) { } in HeuristicBase()
86 Graph& getGraph() { return g; } in getGraph() function
DHeuristicSolver.h125 Graph& getGraph() { return g; } in getGraph() function
/freebsd-9-stable/contrib/llvm/include/llvm/CodeGen/
DRegAllocPBQP.h44 PBQP::Graph& getGraph() { return graph; } in getGraph() function
46 const PBQP::Graph& getGraph() const { return graph; } in getGraph() function
/freebsd-9-stable/contrib/llvm/lib/CodeGen/
DRegAllocPBQP.cpp198 PBQP::Graph &g = p->getGraph(); in build()
319 PBQP::Graph &g = p->getGraph(); in build()
475 const PBQP::Graph &g = problem.getGraph(); in mapPBQPToRegAlloc()
602 problem->getGraph().dump(os); in runOnMachineFunction()
608 problem->getGraph()); in runOnMachineFunction()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporter.h494 ExplodedGraph &getGraph();
528 ExplodedGraph &getGraph() { return BR.getGraph(); }
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExprEngine.h160 ExplodedGraph& getGraph() { return G; } in getGraph() function
161 const ExplodedGraph& getGraph() const { return G; } in getGraph() function
DCoreEngine.h119 ExplodedGraph& getGraph() { return *G.get(); } in getGraph() function
/freebsd-9-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp2761 ExplodedGraph &GRBugReporter::getGraph() { return Eng.getGraph(); } in getGraph() function in GRBugReporter
3117 TrimmedGraph TrimG(&getGraph(), errorNodes); in generatePathDiagnostic()
DExprEngine.cpp65 G(Engine.getGraph()), in ExprEngine()