reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/CodeGen/PBQP/Graph.h
   80       void removeAdjEdgeId(Graph &G, NodeId ThisNId, AdjEdgeIdx Idx) {
  111       void connectToN(Graph &G, EdgeId ThisEdgeId, unsigned NIdx) {
  118       void connect(Graph &G, EdgeId ThisEdgeId) {
  132       void disconnectFromN(Graph &G, unsigned NIdx) {
  140       void disconnectFrom(Graph &G, NodeId NId) {
  176     Graph(const Graph &Other) {}
  225     void operator=(const Graph &Other) {}
  238       NodeItr(NodeId CurNId, const Graph &G)
  262       EdgeItr(EdgeId CurEId, const Graph &G)
  286       NodeIdSet(const Graph &G) : G(G) {}
  298       const Graph& G;
  303       EdgeIdSet(const Graph &G) : G(G) {}
  315       const Graph& G;
include/llvm/CodeGen/RegAllocPBQP.h
  285   using Graph = PBQP::Graph<RegAllocSolverImpl>;
  500 class PBQPRAGraph : public PBQP::Graph<RegAllocSolverImpl> {
  502   using BaseT = PBQP::Graph<RegAllocSolverImpl>;