[llvm] r202554 - Jumped the gun with r202551 and broke some bots that weren't yet C++11ified.

Lang Hames lhames at gmail.com
Fri Feb 28 14:44:45 PST 2014


Author: lhames
Date: Fri Feb 28 16:44:44 2014
New Revision: 202554

URL: http://llvm.org/viewvc/llvm-project?rev=202554&view=rev
Log:
Jumped the gun with r202551 and broke some bots that weren't yet C++11ified.

Reverting until the C++11 switch is complete.


Added:
    llvm/trunk/include/llvm/CodeGen/PBQP/HeuristicBase.h
      - copied unchanged from r202550, llvm/trunk/include/llvm/CodeGen/PBQP/HeuristicBase.h
    llvm/trunk/include/llvm/CodeGen/PBQP/HeuristicSolver.h
      - copied unchanged from r202550, llvm/trunk/include/llvm/CodeGen/PBQP/HeuristicSolver.h
    llvm/trunk/include/llvm/CodeGen/PBQP/Heuristics/
      - copied from r202550, llvm/trunk/include/llvm/CodeGen/PBQP/Heuristics/
Removed:
    llvm/trunk/include/llvm/CodeGen/PBQP/CostAllocator.h
    llvm/trunk/include/llvm/CodeGen/PBQP/ReductionRules.h
    llvm/trunk/include/llvm/CodeGen/PBQP/RegAllocSolver.h
Modified:
    llvm/trunk/include/llvm/CodeGen/PBQP/Graph.h
    llvm/trunk/include/llvm/CodeGen/PBQP/Math.h
    llvm/trunk/include/llvm/CodeGen/PBQP/Solution.h
    llvm/trunk/include/llvm/CodeGen/RegAllocPBQP.h
    llvm/trunk/lib/CodeGen/RegAllocPBQP.cpp

Removed: llvm/trunk/include/llvm/CodeGen/PBQP/CostAllocator.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/PBQP/CostAllocator.h?rev=202553&view=auto
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/PBQP/CostAllocator.h (original)
+++ llvm/trunk/include/llvm/CodeGen/PBQP/CostAllocator.h (removed)
@@ -1,147 +0,0 @@
-//===---------- CostAllocator.h - PBQP Cost Allocator -----------*- C++ -*-===//
-//
-//                     The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// Defines classes conforming to the PBQP cost value manager concept.
-//
-// Cost value managers are memory managers for PBQP cost values (vectors and
-// matrices). Since PBQP graphs can grow very large (E.g. hundreds of thousands
-// of edges on the largest function in SPEC2006).
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_COSTALLOCATOR_H
-#define LLVM_COSTALLOCATOR_H
-
-#include <set>
-#include <type_traits>
-
-namespace PBQP {
-
-template <typename CostT,
-          typename CostKeyTComparator>
-class CostPool {
-public:
-
-  class PoolEntry {
-  public:
-    template <typename CostKeyT>
-    PoolEntry(CostPool &pool, CostKeyT cost)
-      : pool(pool), cost(std::move(cost)), refCount(0) {}
-    ~PoolEntry() { pool.removeEntry(this); }
-    void incRef() { ++refCount; }
-    bool decRef() { --refCount; return (refCount == 0); }
-    CostT& getCost() { return cost; }
-    const CostT& getCost() const { return cost; }
-  private:
-    CostPool &pool;
-    CostT cost;
-    std::size_t refCount;
-  };
-
-  class PoolRef {
-  public:
-    PoolRef(PoolEntry *entry) : entry(entry) {
-      this->entry->incRef();
-    }
-    PoolRef(const PoolRef &r) {
-      entry = r.entry;
-      entry->incRef();
-    }
-    PoolRef& operator=(const PoolRef &r) {
-      assert(entry != 0 && "entry should not be null.");
-      PoolEntry *temp = r.entry;
-      temp->incRef();
-      entry->decRef();
-      entry = temp;
-      return *this;
-    }
-
-    ~PoolRef() {
-      if (entry->decRef())
-        delete entry;
-    }
-    void reset(PoolEntry *entry) {
-      entry->incRef();
-      this->entry->decRef();
-      this->entry = entry;
-    }
-    CostT& operator*() { return entry->getCost(); }
-    const CostT& operator*() const { return entry->getCost(); }
-    CostT* operator->() { return &entry->getCost(); }
-    const CostT* operator->() const { return &entry->getCost(); }
-  private:
-    PoolEntry *entry;
-  };
-
-private:
-  class EntryComparator {
-  public:
-    template <typename CostKeyT>
-    typename std::enable_if<
-               !std::is_same<PoolEntry*,
-                             typename std::remove_const<CostKeyT>::type>::value,
-               bool>::type
-    operator()(const PoolEntry* a, const CostKeyT &b) {
-      return compare(a->getCost(), b);
-    }
-    bool operator()(const PoolEntry* a, const PoolEntry* b) {
-      return compare(a->getCost(), b->getCost());
-    }
-  private:
-    CostKeyTComparator compare;
-  };
-
-  typedef std::set<PoolEntry*, EntryComparator> EntrySet;
-
-  EntrySet entrySet;
-
-  void removeEntry(PoolEntry *p) { entrySet.erase(p); }
-
-public:
-
-  template <typename CostKeyT>
-  PoolRef getCost(CostKeyT costKey) {
-    typename EntrySet::iterator itr =
-      std::lower_bound(entrySet.begin(), entrySet.end(), costKey,
-                       EntryComparator());
-
-    if (itr != entrySet.end() && costKey == (*itr)->getCost())
-      return PoolRef(*itr);
-
-    PoolEntry *p = new PoolEntry(*this, std::move(costKey));
-    entrySet.insert(itr, p);
-    return PoolRef(p);
-  }
-};
-
-template <typename VectorT, typename VectorTComparator,
-          typename MatrixT, typename MatrixTComparator>
-class PoolCostAllocator {
-private:
-  typedef CostPool<VectorT, VectorTComparator> VectorCostPool;
-  typedef CostPool<MatrixT, MatrixTComparator> MatrixCostPool;
-public:
-  typedef VectorT Vector;
-  typedef MatrixT Matrix;
-  typedef typename VectorCostPool::PoolRef VectorPtr;
-  typedef typename MatrixCostPool::PoolRef MatrixPtr;
-
-  template <typename VectorKeyT>
-  VectorPtr getVector(VectorKeyT v) { return vectorPool.getCost(std::move(v)); }
-
-  template <typename MatrixKeyT>
-  MatrixPtr getMatrix(MatrixKeyT m) { return matrixPool.getCost(std::move(m)); }
-private:
-  VectorCostPool vectorPool;
-  MatrixCostPool matrixPool;
-};
-
-}
-
-#endif // LLVM_COSTALLOCATOR_H

Modified: llvm/trunk/include/llvm/CodeGen/PBQP/Graph.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/PBQP/Graph.h?rev=202554&r1=202553&r2=202554&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/PBQP/Graph.h (original)
+++ llvm/trunk/include/llvm/CodeGen/PBQP/Graph.h Fri Feb 28 16:44:44 2014
@@ -15,526 +15,414 @@
 #ifndef LLVM_CODEGEN_PBQP_GRAPH_H
 #define LLVM_CODEGEN_PBQP_GRAPH_H
 
+#include "Math.h"
 #include "llvm/ADT/ilist.h"
 #include "llvm/ADT/ilist_node.h"
-#include "llvm/Support/Compiler.h"
 #include <list>
 #include <map>
 #include <set>
 
 namespace PBQP {
 
-  class GraphBase {
+  /// PBQP Graph class.
+  /// Instances of this class describe PBQP problems.
+  class Graph {
   public:
+
     typedef unsigned NodeId;
     typedef unsigned EdgeId;
-  };
 
-  /// PBQP Graph class.
-  /// Instances of this class describe PBQP problems.
-  ///
-  template <typename SolverT>
-  class Graph : public GraphBase {
   private:
-    typedef typename SolverT::CostAllocator CostAllocator;
+
+    typedef std::set<NodeId> AdjEdgeList;
+
   public:
-    typedef typename SolverT::RawVector RawVector;
-    typedef typename SolverT::RawMatrix RawMatrix;
-    typedef typename SolverT::Vector Vector;
-    typedef typename SolverT::Matrix Matrix;
-    typedef typename CostAllocator::VectorPtr VectorPtr;
-    typedef typename CostAllocator::MatrixPtr MatrixPtr;
-    typedef typename SolverT::NodeMetadata NodeMetadata;
-    typedef typename SolverT::EdgeMetadata EdgeMetadata;
+
+    typedef AdjEdgeList::iterator AdjEdgeItr;
 
   private:
 
     class NodeEntry {
+    private:
+      Vector costs;
+      AdjEdgeList adjEdges;
+      void *data;
+      NodeEntry() : costs(0, 0) {}
     public:
-      typedef std::set<NodeId> AdjEdgeList;
-      typedef AdjEdgeList::const_iterator AdjEdgeItr;
-      NodeEntry(VectorPtr Costs) : Costs(Costs) {}
-
-      VectorPtr Costs;
-      NodeMetadata Metadata;
-      AdjEdgeList AdjEdgeIds;
+      NodeEntry(const Vector &costs) : costs(costs), data(0) {}
+      Vector& getCosts() { return costs; }
+      const Vector& getCosts() const { return costs; }
+      unsigned getDegree() const { return adjEdges.size(); }
+      AdjEdgeItr edgesBegin() { return adjEdges.begin(); }
+      AdjEdgeItr edgesEnd() { return adjEdges.end(); }
+      AdjEdgeItr addEdge(EdgeId e) {
+        return adjEdges.insert(adjEdges.end(), e);
+      }
+      void removeEdge(AdjEdgeItr ae) {
+        adjEdges.erase(ae);
+      }
+      void setData(void *data) { this->data = data; }
+      void* getData() { return data; }
     };
 
     class EdgeEntry {
-    public:
-      EdgeEntry(NodeId N1Id, NodeId N2Id, MatrixPtr Costs)
-        : Costs(Costs), N1Id(N1Id), N2Id(N2Id) {}
-      void invalidate() {
-        N1Id = N2Id = Graph::invalidNodeId();
-        Costs = nullptr;
-      }
-      NodeId getN1Id() const { return N1Id; }
-      NodeId getN2Id() const { return N2Id; }
-      MatrixPtr Costs;
-      EdgeMetadata Metadata;
     private:
-      NodeId N1Id, N2Id;
+      NodeId node1, node2;
+      Matrix costs;
+      AdjEdgeItr node1AEItr, node2AEItr;
+      void *data;
+      EdgeEntry() : costs(0, 0, 0), data(0) {}
+    public:
+      EdgeEntry(NodeId node1, NodeId node2, const Matrix &costs)
+        : node1(node1), node2(node2), costs(costs) {}
+      NodeId getNode1() const { return node1; }
+      NodeId getNode2() const { return node2; }
+      Matrix& getCosts() { return costs; }
+      const Matrix& getCosts() const { return costs; }
+      void setNode1AEItr(AdjEdgeItr ae) { node1AEItr = ae; }
+      AdjEdgeItr getNode1AEItr() { return node1AEItr; }
+      void setNode2AEItr(AdjEdgeItr ae) { node2AEItr = ae; }
+      AdjEdgeItr getNode2AEItr() { return node2AEItr; }
+      void setData(void *data) { this->data = data; }
+      void *getData() { return data; }
     };
 
     // ----- MEMBERS -----
 
-    CostAllocator CostAlloc;
-    SolverT *Solver;
-
     typedef std::vector<NodeEntry> NodeVector;
     typedef std::vector<NodeId> FreeNodeVector;
-    NodeVector Nodes;
-    FreeNodeVector FreeNodeIds;
+    NodeVector nodes;
+    FreeNodeVector freeNodes;
 
     typedef std::vector<EdgeEntry> EdgeVector;
     typedef std::vector<EdgeId> FreeEdgeVector;
-    EdgeVector Edges;
-    FreeEdgeVector FreeEdgeIds;
+    EdgeVector edges;
+    FreeEdgeVector freeEdges;
 
     // ----- INTERNAL METHODS -----
 
-    NodeEntry& getNode(NodeId NId) { return Nodes[NId]; }
-    const NodeEntry& getNode(NodeId NId) const { return Nodes[NId]; }
+    NodeEntry& getNode(NodeId nId) { return nodes[nId]; }
+    const NodeEntry& getNode(NodeId nId) const { return nodes[nId]; }
 
-    EdgeEntry& getEdge(EdgeId EId) { return Edges[EId]; }
-    const EdgeEntry& getEdge(EdgeId EId) const { return Edges[EId]; }
+    EdgeEntry& getEdge(EdgeId eId) { return edges[eId]; }
+    const EdgeEntry& getEdge(EdgeId eId) const { return edges[eId]; }
 
-    NodeId addConstructedNode(const NodeEntry &N) {
-      NodeId NId = 0;
-      if (!FreeNodeIds.empty()) {
-        NId = FreeNodeIds.back();
-        FreeNodeIds.pop_back();
-        Nodes[NId] = std::move(N);
+    NodeId addConstructedNode(const NodeEntry &n) {
+      NodeId nodeId = 0;
+      if (!freeNodes.empty()) {
+        nodeId = freeNodes.back();
+        freeNodes.pop_back();
+        nodes[nodeId] = n;
       } else {
-        NId = Nodes.size();
-        Nodes.push_back(std::move(N));
+        nodeId = nodes.size();
+        nodes.push_back(n);
       }
-      return NId;
+      return nodeId;
     }
 
-    EdgeId addConstructedEdge(const EdgeEntry &E) {
-      assert(findEdge(E.getN1Id(), E.getN2Id()) == invalidEdgeId() &&
+    EdgeId addConstructedEdge(const EdgeEntry &e) {
+      assert(findEdge(e.getNode1(), e.getNode2()) == invalidEdgeId() &&
              "Attempt to add duplicate edge.");
-      EdgeId EId = 0;
-      if (!FreeEdgeIds.empty()) {
-        EId = FreeEdgeIds.back();
-        FreeEdgeIds.pop_back();
-        Edges[EId] = std::move(E);
+      EdgeId edgeId = 0;
+      if (!freeEdges.empty()) {
+        edgeId = freeEdges.back();
+        freeEdges.pop_back();
+        edges[edgeId] = e;
       } else {
-        EId = Edges.size();
-        Edges.push_back(std::move(E));
+        edgeId = edges.size();
+        edges.push_back(e);
       }
 
-      EdgeEntry &NE = getEdge(EId);
-      NodeEntry &N1 = getNode(NE.getN1Id());
-      NodeEntry &N2 = getNode(NE.getN2Id());
+      EdgeEntry &ne = getEdge(edgeId);
+      NodeEntry &n1 = getNode(ne.getNode1());
+      NodeEntry &n2 = getNode(ne.getNode2());
 
       // Sanity check on matrix dimensions:
-      assert((N1.Costs->getLength() == NE.Costs->getRows()) &&
-             (N2.Costs->getLength() == NE.Costs->getCols()) &&
+      assert((n1.getCosts().getLength() == ne.getCosts().getRows()) &&
+             (n2.getCosts().getLength() == ne.getCosts().getCols()) &&
              "Edge cost dimensions do not match node costs dimensions.");
 
-      N1.AdjEdgeIds.insert(EId);
-      N2.AdjEdgeIds.insert(EId);
-      return EId;
+      ne.setNode1AEItr(n1.addEdge(edgeId));
+      ne.setNode2AEItr(n2.addEdge(edgeId));
+      return edgeId;
     }
 
-    Graph(const Graph &Other) {}
-    void operator=(const Graph &Other) {}
+    Graph(const Graph &other) {}
+    void operator=(const Graph &other) {}
 
   public:
 
-    typedef typename NodeEntry::AdjEdgeItr AdjEdgeItr;
-
     class NodeItr {
     public:
-      NodeItr(NodeId CurNId, const Graph &G)
-        : CurNId(CurNId), EndNId(G.Nodes.size()), FreeNodeIds(G.FreeNodeIds) {
-        this->CurNId = findNextInUse(CurNId); // Move to first in-use node id
+      NodeItr(NodeId nodeId, const Graph &g)
+        : nodeId(nodeId), endNodeId(g.nodes.size()), freeNodes(g.freeNodes) {
+        this->nodeId = findNextInUse(nodeId); // Move to the first in-use nodeId
       }
 
-      bool operator==(const NodeItr &O) const { return CurNId == O.CurNId; }
-      bool operator!=(const NodeItr &O) const { return !(*this == O); }
-      NodeItr& operator++() { CurNId = findNextInUse(++CurNId); return *this; }
-      NodeId operator*() const { return CurNId; }
+      bool operator==(const NodeItr& n) const { return nodeId == n.nodeId; }
+      bool operator!=(const NodeItr& n) const { return !(*this == n); }
+      NodeItr& operator++() { nodeId = findNextInUse(++nodeId); return *this; }
+      NodeId operator*() const { return nodeId; }
 
     private:
-      NodeId findNextInUse(NodeId NId) const {
-        while (NId < EndNId &&
-               std::find(FreeNodeIds.begin(), FreeNodeIds.end(), NId) !=
-                 FreeNodeIds.end()) {
-          ++NId;
+      NodeId findNextInUse(NodeId n) const {
+        while (n < endNodeId &&
+               std::find(freeNodes.begin(), freeNodes.end(), n) !=
+                 freeNodes.end()) {
+          ++n;
         }
-        return NId;
+        return n;
       }
 
-      NodeId CurNId, EndNId;
-      const FreeNodeVector &FreeNodeIds;
+      NodeId nodeId, endNodeId;
+      const FreeNodeVector& freeNodes;
     };
 
     class EdgeItr {
     public:
-      EdgeItr(EdgeId CurEId, const Graph &G)
-        : CurEId(CurEId), EndEId(G.Edges.size()), FreeEdgeIds(G.FreeEdgeIds) {
-        this->CurEId = findNextInUse(CurEId); // Move to first in-use edge id
+      EdgeItr(EdgeId edgeId, const Graph &g)
+        : edgeId(edgeId), endEdgeId(g.edges.size()), freeEdges(g.freeEdges) {
+        this->edgeId = findNextInUse(edgeId); // Move to the first in-use edgeId
       }
 
-      bool operator==(const EdgeItr &O) const { return CurEId == O.CurEId; }
-      bool operator!=(const EdgeItr &O) const { return !(*this == O); }
-      EdgeItr& operator++() { CurEId = findNextInUse(++CurEId); return *this; }
-      EdgeId operator*() const { return CurEId; }
+      bool operator==(const EdgeItr& n) const { return edgeId == n.edgeId; }
+      bool operator!=(const EdgeItr& n) const { return !(*this == n); }
+      EdgeItr& operator++() { edgeId = findNextInUse(++edgeId); return *this; }
+      EdgeId operator*() const { return edgeId; }
 
     private:
-      EdgeId findNextInUse(EdgeId EId) const {
-        while (EId < EndEId &&
-               std::find(FreeEdgeIds.begin(), FreeEdgeIds.end(), EId) !=
-               FreeEdgeIds.end()) {
-          ++EId;
+      EdgeId findNextInUse(EdgeId n) const {
+        while (n < endEdgeId &&
+               std::find(freeEdges.begin(), freeEdges.end(), n) !=
+                 freeEdges.end()) {
+          ++n;
         }
-        return EId;
-      }
-
-      EdgeId CurEId, EndEId;
-      const FreeEdgeVector &FreeEdgeIds;
-    };
-
-    class NodeIdSet {
-    public:
-      NodeIdSet(const Graph &G) : G(G) { }
-      NodeItr begin() const { return NodeItr(0, G); }
-      NodeItr end() const { return NodeItr(G.Nodes.size(), G); }
-      bool empty() const { return G.Nodes.empty(); }
-      typename NodeVector::size_type size() const {
-        return G.Nodes.size() - G.FreeNodeIds.size();
+        return n;
       }
-    private:
-      const Graph& G;
-    };
 
-    class EdgeIdSet {
-    public:
-      EdgeIdSet(const Graph &G) : G(G) { }
-      EdgeItr begin() const { return EdgeItr(0, G); }
-      EdgeItr end() const { return EdgeItr(G.Edges.size(), G); }
-      bool empty() const { return G.Edges.empty(); }
-      typename NodeVector::size_type size() const {
-        return G.Edges.size() - G.FreeEdgeIds.size();
-      }
-    private:
-      const Graph& G;
-    };
-
-    class AdjEdgeIdSet {
-    public:
-      AdjEdgeIdSet(const NodeEntry &NE) : NE(NE) { }
-      typename NodeEntry::AdjEdgeItr begin() const {
-        return NE.AdjEdgeIds.begin();
-      }
-      typename NodeEntry::AdjEdgeItr end() const {
-        return NE.AdjEdgeIds.end();
-      }
-      bool empty() const { return NE.AdjEdges.empty(); }
-      typename NodeEntry::AdjEdgeList::size_type size() const {
-        return NE.AdjEdgeIds.size();
-      }
-    private:
-      const NodeEntry &NE;
+      EdgeId edgeId, endEdgeId;
+      const FreeEdgeVector& freeEdges;
     };
 
     /// \brief Construct an empty PBQP graph.
-    Graph() : Solver(nullptr) { }
-
-    /// \brief Lock this graph to the given solver instance in preparation
-    /// for running the solver. This method will call solver.handleAddNode for
-    /// each node in the graph, and handleAddEdge for each edge, to give the
-    /// solver an opportunity to set up any requried metadata.
-    void setSolver(SolverT &S) {
-      assert(Solver == nullptr && "Solver already set. Call unsetSolver().");
-      Solver = &S;
-      for (auto NId : nodeIds())
-        Solver->handleAddNode(NId);
-      for (auto EId : edgeIds())
-        Solver->handleAddEdge(EId);
-    }
-
-    /// \brief Release from solver instance.
-    void unsetSolver() {
-      assert(Solver != nullptr && "Solver not set.");
-      Solver = nullptr;
-    }
+    Graph() {}
 
     /// \brief Add a node with the given costs.
-    /// @param Costs Cost vector for the new node.
+    /// @param costs Cost vector for the new node.
     /// @return Node iterator for the added node.
-    template <typename OtherVectorT>
-    NodeId addNode(OtherVectorT Costs) {
-      // Get cost vector from the problem domain
-      VectorPtr AllocatedCosts = CostAlloc.getVector(std::move(Costs));
-      NodeId NId = addConstructedNode(NodeEntry(AllocatedCosts));
-      if (Solver)
-        Solver->handleAddNode(NId);
-      return NId;
+    NodeId addNode(const Vector &costs) {
+      return addConstructedNode(NodeEntry(costs));
     }
 
     /// \brief Add an edge between the given nodes with the given costs.
-    /// @param N1Id First node.
-    /// @param N2Id Second node.
+    /// @param n1Id First node.
+    /// @param n2Id Second node.
     /// @return Edge iterator for the added edge.
-    template <typename OtherVectorT>
-    EdgeId addEdge(NodeId N1Id, NodeId N2Id, OtherVectorT Costs) {
-      assert(getNodeCosts(N1Id).getLength() == Costs.getRows() &&
-             getNodeCosts(N2Id).getLength() == Costs.getCols() &&
+    EdgeId addEdge(NodeId n1Id, NodeId n2Id, const Matrix &costs) {
+      assert(getNodeCosts(n1Id).getLength() == costs.getRows() &&
+             getNodeCosts(n2Id).getLength() == costs.getCols() &&
              "Matrix dimensions mismatch.");
-      // Get cost matrix from the problem domain.
-      MatrixPtr AllocatedCosts = CostAlloc.getMatrix(std::move(Costs));
-      EdgeId EId = addConstructedEdge(EdgeEntry(N1Id, N2Id, AllocatedCosts));
-      if (Solver)
-        Solver->handleAddEdge(EId);
-      return EId;
+      return addConstructedEdge(EdgeEntry(n1Id, n2Id, costs));
     }
 
-    /// \brief Returns true if the graph is empty.
-    bool empty() const { return NodeIdSet(*this).empty(); }
-
-    NodeIdSet nodeIds() const { return NodeIdSet(*this); }
-    EdgeIdSet edgeIds() const { return EdgeIdSet(*this); }
-
-    AdjEdgeIdSet adjEdgeIds(NodeId NId) { return AdjEdgeIdSet(getNode(NId)); }
-
     /// \brief Get the number of nodes in the graph.
     /// @return Number of nodes in the graph.
-    unsigned getNumNodes() const { return NodeIdSet(*this).size(); }
+    unsigned getNumNodes() const { return nodes.size() - freeNodes.size(); }
 
     /// \brief Get the number of edges in the graph.
     /// @return Number of edges in the graph.
-    unsigned getNumEdges() const { return EdgeIdSet(*this).size(); }
+    unsigned getNumEdges() const { return edges.size() - freeEdges.size(); }
 
-    /// \brief Set a node's cost vector.
-    /// @param NId Node to update.
-    /// @param Costs New costs to set.
+    /// \brief Get a node's cost vector.
+    /// @param nId Node id.
     /// @return Node cost vector.
-    template <typename OtherVectorT>
-    void setNodeCosts(NodeId NId, OtherVectorT Costs) {
-      VectorPtr AllocatedCosts = CostAlloc.getVector(std::move(Costs));
-      if (Solver)
-        Solver->handleSetNodeCosts(NId, *AllocatedCosts);
-      getNode(NId).Costs = AllocatedCosts;
-    }
+    Vector& getNodeCosts(NodeId nId) { return getNode(nId).getCosts(); }
 
     /// \brief Get a node's cost vector (const version).
-    /// @param NId Node id.
+    /// @param nId Node id.
     /// @return Node cost vector.
-    const Vector& getNodeCosts(NodeId NId) const {
-      return *getNode(NId).Costs;
+    const Vector& getNodeCosts(NodeId nId) const {
+      return getNode(nId).getCosts();
     }
 
-    NodeMetadata& getNodeMetadata(NodeId NId) {
-      return getNode(NId).Metadata;
-    }
+    /// \brief Set a node's data pointer.
+    /// @param nId Node id.
+    /// @param data Pointer to node data.
+    ///
+    /// Typically used by a PBQP solver to attach data to aid in solution.
+    void setNodeData(NodeId nId, void *data) { getNode(nId).setData(data); }
 
-    const NodeMetadata& getNodeMetadata(NodeId NId) const {
-      return getNode(NId).Metadata;
-    }
+    /// \brief Get the node's data pointer.
+    /// @param nId Node id.
+    /// @return Pointer to node data.
+    void* getNodeData(NodeId nId) { return getNode(nId).getData(); }
 
-    typename NodeEntry::AdjEdgeList::size_type getNodeDegree(NodeId NId) const {
-      return getNode(NId).AdjEdgeIds.size();
+    /// \brief Get an edge's cost matrix.
+    /// @param eId Edge id.
+    /// @return Edge cost matrix.
+    Matrix& getEdgeCosts(EdgeId eId) { return getEdge(eId).getCosts(); }
+
+    /// \brief Get an edge's cost matrix (const version).
+    /// @param eId Edge id.
+    /// @return Edge cost matrix.
+    const Matrix& getEdgeCosts(EdgeId eId) const {
+      return getEdge(eId).getCosts();
     }
 
-    /// \brief Set an edge's cost matrix.
-    /// @param EId Edge id.
-    /// @param Costs New cost matrix.
-    template <typename OtherMatrixT>
-    void setEdgeCosts(EdgeId EId, OtherMatrixT Costs) {
-      MatrixPtr AllocatedCosts = CostAlloc.getMatrix(std::move(Costs));
-      if (Solver)
-        Solver->handleSetEdgeCosts(EId, *AllocatedCosts);
-      getEdge(EId).Costs = AllocatedCosts;
+    /// \brief Set an edge's data pointer.
+    /// @param eId Edge id.
+    /// @param data Pointer to edge data.
+    ///
+    /// Typically used by a PBQP solver to attach data to aid in solution.
+    void setEdgeData(EdgeId eId, void *data) { getEdge(eId).setData(data); }
+
+    /// \brief Get an edge's data pointer.
+    /// @param eId Edge id.
+    /// @return Pointer to edge data.
+    void* getEdgeData(EdgeId eId) { return getEdge(eId).getData(); }
+
+    /// \brief Get a node's degree.
+    /// @param nId Node id.
+    /// @return The degree of the node.
+    unsigned getNodeDegree(NodeId nId) const {
+      return getNode(nId).getDegree();
     }
 
-    /// \brief Get an edge's cost matrix (const version).
-    /// @param EId Edge id.
-    /// @return Edge cost matrix.
-    const Matrix& getEdgeCosts(EdgeId EId) const { return *getEdge(EId).Costs; }
+    /// \brief Begin iterator for node set.
+    NodeItr nodesBegin() const { return NodeItr(0, *this);  }
+
+    /// \brief End iterator for node set.
+    NodeItr nodesEnd() const { return NodeItr(nodes.size(), *this); }
+
+    /// \brief Begin iterator for edge set.
+    EdgeItr edgesBegin() const { return EdgeItr(0, *this); }
 
-    EdgeMetadata& getEdgeMetadata(EdgeId NId) {
-      return getEdge(NId).Metadata;
+    /// \brief End iterator for edge set.
+    EdgeItr edgesEnd() const { return EdgeItr(edges.size(), *this); }
+
+    /// \brief Get begin iterator for adjacent edge set.
+    /// @param nId Node id.
+    /// @return Begin iterator for the set of edges connected to the given node.
+    AdjEdgeItr adjEdgesBegin(NodeId nId) {
+      return getNode(nId).edgesBegin();
     }
 
-    const EdgeMetadata& getEdgeMetadata(EdgeId NId) const {
-      return getEdge(NId).Metadata;
+    /// \brief Get end iterator for adjacent edge set.
+    /// @param nId Node id.
+    /// @return End iterator for the set of edges connected to the given node.
+    AdjEdgeItr adjEdgesEnd(NodeId nId) {
+      return getNode(nId).edgesEnd();
     }
 
     /// \brief Get the first node connected to this edge.
-    /// @param EId Edge id.
+    /// @param eId Edge id.
     /// @return The first node connected to the given edge.
-    NodeId getEdgeNode1Id(EdgeId EId) {
-      return getEdge(EId).getN1Id();
+    NodeId getEdgeNode1(EdgeId eId) {
+      return getEdge(eId).getNode1();
     }
 
     /// \brief Get the second node connected to this edge.
-    /// @param EId Edge id.
+    /// @param eId Edge id.
     /// @return The second node connected to the given edge.
-    NodeId getEdgeNode2Id(EdgeId EId) {
-      return getEdge(EId).getN2Id();
+    NodeId getEdgeNode2(EdgeId eId) {
+      return getEdge(eId).getNode2();
     }
 
     /// \brief Get the "other" node connected to this edge.
-    /// @param EId Edge id.
-    /// @param NId Node id for the "given" node.
+    /// @param eId Edge id.
+    /// @param nId Node id for the "given" node.
     /// @return The iterator for the "other" node connected to this edge.
-    NodeId getEdgeOtherNodeId(EdgeId EId, NodeId NId) {
-      EdgeEntry &E = getEdge(EId);
-      if (E.getN1Id() == NId) {
-        return E.getN2Id();
+    NodeId getEdgeOtherNode(EdgeId eId, NodeId nId) {
+      EdgeEntry &e = getEdge(eId);
+      if (e.getNode1() == nId) {
+        return e.getNode2();
       } // else
-      return E.getN1Id();
+      return e.getNode1();
     }
 
-    /// \brief Returns a value representing an invalid (non-existant) node.
-    static NodeId invalidNodeId() {
-      return std::numeric_limits<NodeId>::max();
-    }
-
-    /// \brief Returns a value representing an invalid (non-existant) edge.
-    static EdgeId invalidEdgeId() {
+    EdgeId invalidEdgeId() const {
       return std::numeric_limits<EdgeId>::max();
     }
 
     /// \brief Get the edge connecting two nodes.
-    /// @param N1Id First node id.
-    /// @param N2Id Second node id.
-    /// @return An id for edge (N1Id, N2Id) if such an edge exists,
+    /// @param n1Id First node id.
+    /// @param n2Id Second node id.
+    /// @return An id for edge (n1Id, n2Id) if such an edge exists,
     ///         otherwise returns an invalid edge id.
-    EdgeId findEdge(NodeId N1Id, NodeId N2Id) {
-      for (auto AEId : adjEdgeIds(N1Id)) {
-        if ((getEdgeNode1Id(AEId) == N2Id) ||
-            (getEdgeNode2Id(AEId) == N2Id)) {
-          return AEId;
+    EdgeId findEdge(NodeId n1Id, NodeId n2Id) {
+      for (AdjEdgeItr aeItr = adjEdgesBegin(n1Id), aeEnd = adjEdgesEnd(n1Id);
+         aeItr != aeEnd; ++aeItr) {
+        if ((getEdgeNode1(*aeItr) == n2Id) ||
+            (getEdgeNode2(*aeItr) == n2Id)) {
+          return *aeItr;
         }
       }
       return invalidEdgeId();
     }
 
     /// \brief Remove a node from the graph.
-    /// @param NId Node id.
-    void removeNode(NodeId NId) {
-      if (Solver)
-        Solver->handleRemoveNode(NId);
-      NodeEntry &N = getNode(NId);
-      // TODO: Can this be for-each'd?
-      for (AdjEdgeItr AEItr = N.adjEdgesBegin(),
-                      AEEnd = N.adjEdgesEnd();
-           AEItr != AEEnd;) {
-        EdgeId EId = *AEItr;
-        ++AEItr;
-        removeEdge(EId);
+    /// @param nId Node id.
+    void removeNode(NodeId nId) {
+      NodeEntry &n = getNode(nId);
+      for (AdjEdgeItr itr = n.edgesBegin(), end = n.edgesEnd(); itr != end; ++itr) {
+        EdgeId eId = *itr;
+        removeEdge(eId);
       }
-      FreeNodeIds.push_back(NId);
-    }
-
-    /// \brief Disconnect an edge from the given node.
-    ///
-    /// Removes the given edge from the adjacency list of the given node.
-    /// This operation leaves the edge in an 'asymmetric' state: It will no
-    /// longer appear in an iteration over the given node's (NId's) edges, but
-    /// will appear in an iteration over the 'other', unnamed node's edges.
-    ///
-    /// This does not correspond to any normal graph operation, but exists to
-    /// support efficient PBQP graph-reduction based solvers. It is used to
-    /// 'effectively' remove the unnamed node from the graph while the solver
-    /// is performing the reduction. The solver will later call reconnectNode
-    /// to restore the edge in the named node's adjacency list.
-    ///
-    /// Since the degree of a node is the number of connected edges,
-    /// disconnecting an edge from a node 'u' will cause the degree of 'u' to
-    /// drop by 1.
-    ///
-    /// A disconnected edge WILL still appear in an iteration over the graph
-    /// edges.
-    ///
-    /// A disconnected edge should not be removed from the graph, it should be
-    /// reconnected first.
-    ///
-    /// A disconnected edge can be reconnected by calling the reconnectEdge
-    /// method.
-    void disconnectEdge(EdgeId EId, NodeId NId) {
-      if (Solver)
-        Solver->handleDisconnectEdge(EId, NId);
-      NodeEntry &N = getNode(NId);
-      N.AdjEdgeIds.erase(EId);
-    }
-
-    /// \brief Convenience method to disconnect all neighbours from the given
-    ///        node.
-    void disconnectAllNeighborsFromNode(NodeId NId) {
-      for (auto AEId : adjEdgeIds(NId))
-        disconnectEdge(AEId, getEdgeOtherNodeId(AEId, NId));
-    }
-
-    /// \brief Re-attach an edge to its nodes.
-    ///
-    /// Adds an edge that had been previously disconnected back into the
-    /// adjacency set of the nodes that the edge connects.
-    void reconnectEdge(EdgeId EId, NodeId NId) {
-      NodeEntry &N = getNode(NId);
-      N.addAdjEdge(EId);
-      if (Solver)
-        Solver->handleReconnectEdge(EId, NId);
+      freeNodes.push_back(nId);
     }
 
     /// \brief Remove an edge from the graph.
-    /// @param EId Edge id.
-    void removeEdge(EdgeId EId) {
-      if (Solver)
-        Solver->handleRemoveEdge(EId);
-      EdgeEntry &E = getEdge(EId);
-      NodeEntry &N1 = getNode(E.getNode1());
-      NodeEntry &N2 = getNode(E.getNode2());
-      N1.removeEdge(EId);
-      N2.removeEdge(EId);
-      FreeEdgeIds.push_back(EId);
-      Edges[EId].invalidate();
+    /// @param eId Edge id.
+    void removeEdge(EdgeId eId) {
+      EdgeEntry &e = getEdge(eId);
+      NodeEntry &n1 = getNode(e.getNode1());
+      NodeEntry &n2 = getNode(e.getNode2());
+      n1.removeEdge(e.getNode1AEItr());
+      n2.removeEdge(e.getNode2AEItr());
+      freeEdges.push_back(eId);
     }
 
     /// \brief Remove all nodes and edges from the graph.
     void clear() {
-      Nodes.clear();
-      FreeNodeIds.clear();
-      Edges.clear();
-      FreeEdgeIds.clear();
+      nodes.clear();
+      freeNodes.clear();
+      edges.clear();
+      freeEdges.clear();
     }
 
     /// \brief Dump a graph to an output stream.
     template <typename OStream>
-    void dump(OStream &OS) {
-      OS << nodeIds().size() << " " << edgeIds().size() << "\n";
+    void dump(OStream &os) {
+      os << getNumNodes() << " " << getNumEdges() << "\n";
 
-      for (auto NId : nodeIds()) {
-        const Vector& V = getNodeCosts(NId);
-        OS << "\n" << V.getLength() << "\n";
-        assert(V.getLength() != 0 && "Empty vector in graph.");
-        OS << V[0];
-        for (unsigned i = 1; i < V.getLength(); ++i) {
-          OS << " " << V[i];
+      for (NodeItr nodeItr = nodesBegin(), nodeEnd = nodesEnd();
+           nodeItr != nodeEnd; ++nodeItr) {
+        const Vector& v = getNodeCosts(*nodeItr);
+        os << "\n" << v.getLength() << "\n";
+        assert(v.getLength() != 0 && "Empty vector in graph.");
+        os << v[0];
+        for (unsigned i = 1; i < v.getLength(); ++i) {
+          os << " " << v[i];
         }
-        OS << "\n";
+        os << "\n";
       }
 
-      for (auto EId : edgeIds()) {
-        NodeId N1Id = getEdgeNode1Id(EId);
-        NodeId N2Id = getEdgeNode2Id(EId);
-        assert(N1Id != N2Id && "PBQP graphs shound not have self-edges.");
-        const Matrix& M = getEdgeCosts(EId);
-        OS << "\n" << N1Id << " " << N2Id << "\n"
-           << M.getRows() << " " << M.getCols() << "\n";
-        assert(M.getRows() != 0 && "No rows in matrix.");
-        assert(M.getCols() != 0 && "No cols in matrix.");
-        for (unsigned i = 0; i < M.getRows(); ++i) {
-          OS << M[i][0];
-          for (unsigned j = 1; j < M.getCols(); ++j) {
-            OS << " " << M[i][j];
+      for (EdgeItr edgeItr = edgesBegin(), edgeEnd = edgesEnd();
+           edgeItr != edgeEnd; ++edgeItr) {
+        NodeId n1 = getEdgeNode1(*edgeItr);
+        NodeId n2 = getEdgeNode2(*edgeItr);
+        assert(n1 != n2 && "PBQP graphs shound not have self-edges.");
+        const Matrix& m = getEdgeCosts(*edgeItr);
+        os << "\n" << n1 << " " << n2 << "\n"
+           << m.getRows() << " " << m.getCols() << "\n";
+        assert(m.getRows() != 0 && "No rows in matrix.");
+        assert(m.getCols() != 0 && "No cols in matrix.");
+        for (unsigned i = 0; i < m.getRows(); ++i) {
+          os << m[i][0];
+          for (unsigned j = 1; j < m.getCols(); ++j) {
+            os << " " << m[i][j];
           }
-          OS << "\n";
+          os << "\n";
         }
       }
     }
@@ -542,27 +430,49 @@ namespace PBQP {
     /// \brief Print a representation of this graph in DOT format.
     /// @param os Output stream to print on.
     template <typename OStream>
-    void printDot(OStream &OS) {
-      OS << "graph {\n";
-      for (auto NId : nodeIds()) {
-        OS << "  node" << NId << " [ label=\""
-           << NId << ": " << getNodeCosts(NId) << "\" ]\n";
-      }
-      OS << "  edge [ len=" << nodeIds().size() << " ]\n";
-      for (auto EId : edgeIds()) {
-        OS << "  node" << getEdgeNode1Id(EId)
-           << " -- node" << getEdgeNode2Id(EId)
+    void printDot(OStream &os) {
+
+      os << "graph {\n";
+
+      for (NodeItr nodeItr = nodesBegin(), nodeEnd = nodesEnd();
+           nodeItr != nodeEnd; ++nodeItr) {
+
+        os << "  node" << *nodeItr << " [ label=\""
+           << *nodeItr << ": " << getNodeCosts(*nodeItr) << "\" ]\n";
+      }
+
+      os << "  edge [ len=" << getNumNodes() << " ]\n";
+
+      for (EdgeItr edgeItr = edgesBegin(), edgeEnd = edgesEnd();
+           edgeItr != edgeEnd; ++edgeItr) {
+
+        os << "  node" << getEdgeNode1(*edgeItr)
+           << " -- node" << getEdgeNode2(*edgeItr)
            << " [ label=\"";
-        const Matrix &EdgeCosts = getEdgeCosts(EId);
-        for (unsigned i = 0; i < EdgeCosts.getRows(); ++i) {
-          OS << EdgeCosts.getRowAsVector(i) << "\\n";
+
+        const Matrix &edgeCosts = getEdgeCosts(*edgeItr);
+
+        for (unsigned i = 0; i < edgeCosts.getRows(); ++i) {
+          os << edgeCosts.getRowAsVector(i) << "\\n";
         }
-        OS << "\" ]\n";
+        os << "\" ]\n";
       }
-      OS << "}\n";
+      os << "}\n";
     }
+
   };
 
+//  void Graph::copyFrom(const Graph &other) {
+//     std::map<Graph::ConstNodeItr, Graph::NodeItr,
+//              NodeItrComparator> nodeMap;
+
+//      for (Graph::ConstNodeItr nItr = other.nodesBegin(),
+//                              nEnd = other.nodesEnd();
+//          nItr != nEnd; ++nItr) {
+//       nodeMap[nItr] = addNode(other.getNodeCosts(nItr));
+//     }
+//  }
+
 }
 
 #endif // LLVM_CODEGEN_PBQP_GRAPH_HPP

Modified: llvm/trunk/include/llvm/CodeGen/PBQP/Math.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/PBQP/Math.h?rev=202554&r1=202553&r2=202554&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/PBQP/Math.h (original)
+++ llvm/trunk/include/llvm/CodeGen/PBQP/Math.h Fri Feb 28 16:44:44 2014
@@ -20,418 +20,268 @@ typedef float PBQPNum;
 
 /// \brief PBQP Vector class.
 class Vector {
-  friend class VectorComparator;
-public:
+  public:
 
-  /// \brief Construct a PBQP vector of the given size.
-  explicit Vector(unsigned Length)
-    : Length(Length), Data(new PBQPNum[Length]) {
-    // llvm::dbgs() << "Constructing PBQP::Vector "
-    //              << this << " (length " << Length << ")\n";
-  }
-
-  /// \brief Construct a PBQP vector with initializer.
-  Vector(unsigned Length, PBQPNum InitVal)
-    : Length(Length), Data(new PBQPNum[Length]) {
-    // llvm::dbgs() << "Constructing PBQP::Vector "
-    //              << this << " (length " << Length << ", fill "
-    //              << InitVal << ")\n";
-    std::fill(Data, Data + Length, InitVal);
-  }
-
-  /// \brief Copy construct a PBQP vector.
-  Vector(const Vector &V)
-    : Length(V.Length), Data(new PBQPNum[Length]) {
-    // llvm::dbgs() << "Copy-constructing PBQP::Vector " << this
-    //              << " from PBQP::Vector " << &V << "\n";
-    std::copy(V.Data, V.Data + Length, Data);
-  }
-
-  /// \brief Move construct a PBQP vector.
-  Vector(Vector &&V)
-    : Length(V.Length), Data(V.Data) {
-    V.Length = 0;
-    V.Data = nullptr;
-  }
-
-  /// \brief Destroy this vector, return its memory.
-  ~Vector() {
-    // llvm::dbgs() << "Deleting PBQP::Vector " << this << "\n";
-    delete[] Data;
-  }
-
-  /// \brief Copy-assignment operator.
-  Vector& operator=(const Vector &V) {
-    // llvm::dbgs() << "Assigning to PBQP::Vector " << this
-    //              << " from PBQP::Vector " << &V << "\n";
-    delete[] Data;
-    Length = V.Length;
-    Data = new PBQPNum[Length];
-    std::copy(V.Data, V.Data + Length, Data);
-    return *this;
-  }
-
-  /// \brief Move-assignment operator.
-  Vector& operator=(Vector &&V) {
-    delete[] Data;
-    Length = V.Length;
-    Data = V.Data;
-    V.Length = 0;
-    V.Data = nullptr;
-    return *this;
-  }
-
-  /// \brief Comparison operator.
-  bool operator==(const Vector &V) const {
-    assert(Length != 0 && Data != nullptr && "Invalid vector");
-    if (Length != V.Length)
-      return false;
-    return std::equal(Data, Data + Length, V.Data);
-  }
-
-  /// \brief Return the length of the vector
-  unsigned getLength() const {
-    assert(Length != 0 && Data != nullptr && "Invalid vector");
-    return Length;
-  }
-
-  /// \brief Element access.
-  PBQPNum& operator[](unsigned Index) {
-    assert(Length != 0 && Data != nullptr && "Invalid vector");
-    assert(Index < Length && "Vector element access out of bounds.");
-    return Data[Index];
-  }
-
-  /// \brief Const element access.
-  const PBQPNum& operator[](unsigned Index) const {
-    assert(Length != 0 && Data != nullptr && "Invalid vector");
-    assert(Index < Length && "Vector element access out of bounds.");
-    return Data[Index];
-  }
-
-  /// \brief Add another vector to this one.
-  Vector& operator+=(const Vector &V) {
-    assert(Length != 0 && Data != nullptr && "Invalid vector");
-    assert(Length == V.Length && "Vector length mismatch.");
-    std::transform(Data, Data + Length, V.Data, Data, std::plus<PBQPNum>());
-    return *this;
-  }
-
-  /// \brief Subtract another vector from this one.
-  Vector& operator-=(const Vector &V) {
-    assert(Length != 0 && Data != nullptr && "Invalid vector");
-    assert(Length == V.Length && "Vector length mismatch.");
-    std::transform(Data, Data + Length, V.Data, Data, std::minus<PBQPNum>());
-    return *this;
-  }
-
-  /// \brief Returns the index of the minimum value in this vector
-  unsigned minIndex() const {
-    assert(Length != 0 && Data != nullptr && "Invalid vector");
-    return std::min_element(Data, Data + Length) - Data;
-  }
-
-private:
-  unsigned Length;
-  PBQPNum *Data;
-};
-
-class VectorComparator {
-public:
-  bool operator()(const Vector &A, const Vector &B) {
-    if (A.Length < B.Length)
-      return true;
-    if (B.Length < A.Length)
-      return false;
-    char *AData = reinterpret_cast<char*>(A.Data);
-    char *BData = reinterpret_cast<char*>(B.Data);
-    return std::lexicographical_compare(AData,
-                                        AData + A.Length * sizeof(PBQPNum),
-                                        BData,
-                                        BData + A.Length * sizeof(PBQPNum));
-  }
+    /// \brief Construct a PBQP vector of the given size.
+    explicit Vector(unsigned length) :
+      length(length), data(new PBQPNum[length]) {
+      }
+
+    /// \brief Construct a PBQP vector with initializer.
+    Vector(unsigned length, PBQPNum initVal) :
+      length(length), data(new PBQPNum[length]) {
+        std::fill(data, data + length, initVal);
+      }
+
+    /// \brief Copy construct a PBQP vector.
+    Vector(const Vector &v) :
+      length(v.length), data(new PBQPNum[length]) {
+        std::copy(v.data, v.data + length, data);
+      }
+
+    /// \brief Destroy this vector, return its memory.
+    ~Vector() { delete[] data; }
+
+    /// \brief Assignment operator.
+    Vector& operator=(const Vector &v) {
+      delete[] data;
+      length = v.length;
+      data = new PBQPNum[length];
+      std::copy(v.data, v.data + length, data);
+      return *this;
+    }
+
+    /// \brief Return the length of the vector
+    unsigned getLength() const {
+      return length;
+    }
+
+    /// \brief Element access.
+    PBQPNum& operator[](unsigned index) {
+      assert(index < length && "Vector element access out of bounds.");
+      return data[index];
+    }
+
+    /// \brief Const element access.
+    const PBQPNum& operator[](unsigned index) const {
+      assert(index < length && "Vector element access out of bounds.");
+      return data[index];
+    }
+
+    /// \brief Add another vector to this one.
+    Vector& operator+=(const Vector &v) {
+      assert(length == v.length && "Vector length mismatch.");
+      std::transform(data, data + length, v.data, data, std::plus<PBQPNum>()); 
+      return *this;
+    }
+
+    /// \brief Subtract another vector from this one.
+    Vector& operator-=(const Vector &v) {
+      assert(length == v.length && "Vector length mismatch.");
+      std::transform(data, data + length, v.data, data, std::minus<PBQPNum>()); 
+      return *this;
+    }
+
+    /// \brief Returns the index of the minimum value in this vector
+    unsigned minIndex() const {
+      return std::min_element(data, data + length) - data;
+    }
+
+  private:
+    unsigned length;
+    PBQPNum *data;
 };
 
 /// \brief Output a textual representation of the given vector on the given
 ///        output stream.
 template <typename OStream>
-OStream& operator<<(OStream &OS, const Vector &V) {
-  assert((V.getLength() != 0) && "Zero-length vector badness.");
+OStream& operator<<(OStream &os, const Vector &v) {
+  assert((v.getLength() != 0) && "Zero-length vector badness.");
 
-  OS << "[ " << V[0];
-  for (unsigned i = 1; i < V.getLength(); ++i)
-    OS << ", " << V[i];
-  OS << " ]";
+  os << "[ " << v[0];
+  for (unsigned i = 1; i < v.getLength(); ++i) {
+    os << ", " << v[i];
+  }
+  os << " ]";
 
-  return OS;
-}
+  return os;
+} 
 
 
 /// \brief PBQP Matrix class
 class Matrix {
-private:
-  friend class MatrixComparator;
-public:
-
-  /// \brief Construct a PBQP Matrix with the given dimensions.
-  Matrix(unsigned Rows, unsigned Cols) :
-    Rows(Rows), Cols(Cols), Data(new PBQPNum[Rows * Cols]) {
-  }
-
-  /// \brief Construct a PBQP Matrix with the given dimensions and initial
-  /// value.
-  Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal)
-    : Rows(Rows), Cols(Cols), Data(new PBQPNum[Rows * Cols]) {
-    std::fill(Data, Data + (Rows * Cols), InitVal);
-  }
-
-  /// \brief Copy construct a PBQP matrix.
-  Matrix(const Matrix &M)
-    : Rows(M.Rows), Cols(M.Cols), Data(new PBQPNum[Rows * Cols]) {
-    std::copy(M.Data, M.Data + (Rows * Cols), Data);
-  }
-
-  /// \brief Move construct a PBQP matrix.
-  Matrix(Matrix &&M)
-    : Rows(M.Rows), Cols(M.Cols), Data(M.Data) {
-    M.Rows = M.Cols = 0;
-    M.Data = nullptr;
-  }
-
-  /// \brief Destroy this matrix, return its memory.
-  ~Matrix() { delete[] Data; }
-
-  /// \brief Copy-assignment operator.
-  Matrix& operator=(const Matrix &M) {
-    delete[] Data;
-    Rows = M.Rows; Cols = M.Cols;
-    Data = new PBQPNum[Rows * Cols];
-    std::copy(M.Data, M.Data + (Rows * Cols), Data);
-    return *this;
-  }
-
-  /// \brief Move-assignment operator.
-  Matrix& operator=(Matrix &&M) {
-    delete[] Data;
-    Rows = M.Rows;
-    Cols = M.Cols;
-    Data = M.Data;
-    M.Rows = M.Cols = 0;
-    M.Data = nullptr;
-    return *this;
-  }
-
-  /// \brief Comparison operator.
-  bool operator==(const Matrix &M) const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    if (Rows != M.Rows || Cols != M.Cols)
-      return false;
-    return std::equal(Data, Data + (Rows * Cols), M.Data);
-  }
-
-  /// \brief Return the number of rows in this matrix.
-  unsigned getRows() const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    return Rows;
-  }
-
-  /// \brief Return the number of cols in this matrix.
-  unsigned getCols() const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    return Cols;
-  }
-
-  /// \brief Matrix element access.
-  PBQPNum* operator[](unsigned R) {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    assert(R < Rows && "Row out of bounds.");
-    return Data + (R * Cols);
-  }
-
-  /// \brief Matrix element access.
-  const PBQPNum* operator[](unsigned R) const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    assert(R < Rows && "Row out of bounds.");
-    return Data + (R * Cols);
-  }
-
-  /// \brief Returns the given row as a vector.
-  Vector getRowAsVector(unsigned R) const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    Vector V(Cols);
-    for (unsigned C = 0; C < Cols; ++C)
-      V[C] = (*this)[R][C];
-    return V;
-  }
-
-  /// \brief Returns the given column as a vector.
-  Vector getColAsVector(unsigned C) const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    Vector V(Rows);
-    for (unsigned R = 0; R < Rows; ++R)
-      V[R] = (*this)[R][C];
-    return V;
-  }
-
-  /// \brief Reset the matrix to the given value.
-  Matrix& reset(PBQPNum Val = 0) {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    std::fill(Data, Data + (Rows * Cols), Val);
-    return *this;
-  }
-
-  /// \brief Set a single row of this matrix to the given value.
-  Matrix& setRow(unsigned R, PBQPNum Val) {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    assert(R < Rows && "Row out of bounds.");
-    std::fill(Data + (R * Cols), Data + ((R + 1) * Cols), Val);
-    return *this;
-  }
-
-  /// \brief Set a single column of this matrix to the given value.
-  Matrix& setCol(unsigned C, PBQPNum Val) {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    assert(C < Cols && "Column out of bounds.");
-    for (unsigned R = 0; R < Rows; ++R)
-      (*this)[R][C] = Val;
-    return *this;
-  }
-
-  /// \brief Matrix transpose.
-  Matrix transpose() const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    Matrix M(Cols, Rows);
-    for (unsigned r = 0; r < Rows; ++r)
-      for (unsigned c = 0; c < Cols; ++c)
-        M[c][r] = (*this)[r][c];
-    return M;
-  }
-
-  /// \brief Returns the diagonal of the matrix as a vector.
-  ///
-  /// Matrix must be square.
-  Vector diagonalize() const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    assert(Rows == Cols && "Attempt to diagonalize non-square matrix.");
-    Vector V(Rows);
-    for (unsigned r = 0; r < Rows; ++r)
-      V[r] = (*this)[r][r];
-    return V;
-  }
+  public:
 
-  /// \brief Add the given matrix to this one.
-  Matrix& operator+=(const Matrix &M) {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    assert(Rows == M.Rows && Cols == M.Cols &&
-           "Matrix dimensions mismatch.");
-    std::transform(Data, Data + (Rows * Cols), M.Data, Data,
-                   std::plus<PBQPNum>());
-    return *this;
-  }
-
-  Matrix operator+(const Matrix &M) {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    Matrix Tmp(*this);
-    Tmp += M;
-    return Tmp;
-  }
-
-  /// \brief Returns the minimum of the given row
-  PBQPNum getRowMin(unsigned R) const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    assert(R < Rows && "Row out of bounds");
-    return *std::min_element(Data + (R * Cols), Data + ((R + 1) * Cols));
-  }
-
-  /// \brief Returns the minimum of the given column
-  PBQPNum getColMin(unsigned C) const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    PBQPNum MinElem = (*this)[0][C];
-    for (unsigned R = 1; R < Rows; ++R)
-      if ((*this)[R][C] < MinElem)
-        MinElem = (*this)[R][C];
-    return MinElem;
-  }
-
-  /// \brief Subtracts the given scalar from the elements of the given row.
-  Matrix& subFromRow(unsigned R, PBQPNum Val) {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    assert(R < Rows && "Row out of bounds");
-    std::transform(Data + (R * Cols), Data + ((R + 1) * Cols),
-                   Data + (R * Cols),
-                   std::bind2nd(std::minus<PBQPNum>(), Val));
-    return *this;
-  }
-
-  /// \brief Subtracts the given scalar from the elements of the given column.
-  Matrix& subFromCol(unsigned C, PBQPNum Val) {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    for (unsigned R = 0; R < Rows; ++R)
-      (*this)[R][C] -= Val;
-    return *this;
-  }
-
-  /// \brief Returns true if this is a zero matrix.
-  bool isZero() const {
-    assert(Rows != 0 && Cols != 0 && Data != nullptr && "Invalid matrix");
-    return find_if(Data, Data + (Rows * Cols),
-                   std::bind2nd(std::not_equal_to<PBQPNum>(), 0)) ==
-      Data + (Rows * Cols);
-  }
-
-private:
-  unsigned Rows, Cols;
-  PBQPNum *Data;
-};
-
-class MatrixComparator {
-public:
-  bool operator()(const Matrix &A, const Matrix &B) {
-    if (A.Rows < B.Rows)
-      return true;
-    if (B.Rows < A.Rows)
-      return false;
-    if (A.Cols < B.Cols)
-      return true;
-    if (B.Cols < A.Cols)
-      return false;
-    char *AData = reinterpret_cast<char*>(A.Data);
-    char *BData = reinterpret_cast<char*>(B.Data);
-    return std::lexicographical_compare(
-             AData, AData + (A.Rows * A.Cols * sizeof(PBQPNum)),
-             BData, BData + (A.Rows * A.Cols * sizeof(PBQPNum)));
-  }
+    /// \brief Construct a PBQP Matrix with the given dimensions.
+    Matrix(unsigned rows, unsigned cols) :
+      rows(rows), cols(cols), data(new PBQPNum[rows * cols]) {
+    }
+
+    /// \brief Construct a PBQP Matrix with the given dimensions and initial
+    /// value.
+    Matrix(unsigned rows, unsigned cols, PBQPNum initVal) :
+      rows(rows), cols(cols), data(new PBQPNum[rows * cols]) {
+        std::fill(data, data + (rows * cols), initVal);
+    }
+
+    /// \brief Copy construct a PBQP matrix.
+    Matrix(const Matrix &m) :
+      rows(m.rows), cols(m.cols), data(new PBQPNum[rows * cols]) {
+        std::copy(m.data, m.data + (rows * cols), data);  
+    }
+
+    /// \brief Destroy this matrix, return its memory.
+    ~Matrix() { delete[] data; }
+
+    /// \brief Assignment operator.
+    Matrix& operator=(const Matrix &m) {
+      delete[] data;
+      rows = m.rows; cols = m.cols;
+      data = new PBQPNum[rows * cols];
+      std::copy(m.data, m.data + (rows * cols), data);
+      return *this;
+    }
+
+    /// \brief Return the number of rows in this matrix.
+    unsigned getRows() const { return rows; }
+
+    /// \brief Return the number of cols in this matrix.
+    unsigned getCols() const { return cols; }
+
+    /// \brief Matrix element access.
+    PBQPNum* operator[](unsigned r) {
+      assert(r < rows && "Row out of bounds.");
+      return data + (r * cols);
+    }
+
+    /// \brief Matrix element access.
+    const PBQPNum* operator[](unsigned r) const {
+      assert(r < rows && "Row out of bounds.");
+      return data + (r * cols);
+    }
+
+    /// \brief Returns the given row as a vector.
+    Vector getRowAsVector(unsigned r) const {
+      Vector v(cols);
+      for (unsigned c = 0; c < cols; ++c)
+        v[c] = (*this)[r][c];
+      return v; 
+    }
+
+    /// \brief Returns the given column as a vector.
+    Vector getColAsVector(unsigned c) const {
+      Vector v(rows);
+      for (unsigned r = 0; r < rows; ++r)
+        v[r] = (*this)[r][c];
+      return v;
+    }
+
+    /// \brief Reset the matrix to the given value.
+    Matrix& reset(PBQPNum val = 0) {
+      std::fill(data, data + (rows * cols), val);
+      return *this;
+    }
+
+    /// \brief Set a single row of this matrix to the given value.
+    Matrix& setRow(unsigned r, PBQPNum val) {
+      assert(r < rows && "Row out of bounds.");
+      std::fill(data + (r * cols), data + ((r + 1) * cols), val);
+      return *this;
+    }
+
+    /// \brief Set a single column of this matrix to the given value.
+    Matrix& setCol(unsigned c, PBQPNum val) {
+      assert(c < cols && "Column out of bounds.");
+      for (unsigned r = 0; r < rows; ++r)
+        (*this)[r][c] = val;
+      return *this;
+    }
+
+    /// \brief Matrix transpose.
+    Matrix transpose() const {
+      Matrix m(cols, rows);
+      for (unsigned r = 0; r < rows; ++r)
+        for (unsigned c = 0; c < cols; ++c)
+          m[c][r] = (*this)[r][c];
+      return m;
+    }
+
+    /// \brief Returns the diagonal of the matrix as a vector.
+    ///
+    /// Matrix must be square.
+    Vector diagonalize() const {
+      assert(rows == cols && "Attempt to diagonalize non-square matrix.");
+
+      Vector v(rows);
+      for (unsigned r = 0; r < rows; ++r)
+        v[r] = (*this)[r][r];
+      return v;
+    } 
+
+    /// \brief Add the given matrix to this one.
+    Matrix& operator+=(const Matrix &m) {
+      assert(rows == m.rows && cols == m.cols &&
+          "Matrix dimensions mismatch.");
+      std::transform(data, data + (rows * cols), m.data, data,
+          std::plus<PBQPNum>());
+      return *this;
+    }
+
+    /// \brief Returns the minimum of the given row
+    PBQPNum getRowMin(unsigned r) const {
+      assert(r < rows && "Row out of bounds");
+      return *std::min_element(data + (r * cols), data + ((r + 1) * cols));
+    }
+
+    /// \brief Returns the minimum of the given column
+    PBQPNum getColMin(unsigned c) const {
+      PBQPNum minElem = (*this)[0][c];
+      for (unsigned r = 1; r < rows; ++r)
+        if ((*this)[r][c] < minElem) minElem = (*this)[r][c];
+      return minElem;
+    }
+
+    /// \brief Subtracts the given scalar from the elements of the given row.
+    Matrix& subFromRow(unsigned r, PBQPNum val) {
+      assert(r < rows && "Row out of bounds");
+      std::transform(data + (r * cols), data + ((r + 1) * cols),
+          data + (r * cols),
+          std::bind2nd(std::minus<PBQPNum>(), val));
+      return *this;
+    }
+
+    /// \brief Subtracts the given scalar from the elements of the given column.
+    Matrix& subFromCol(unsigned c, PBQPNum val) {
+      for (unsigned r = 0; r < rows; ++r)
+        (*this)[r][c] -= val;
+      return *this;
+    }
+
+    /// \brief Returns true if this is a zero matrix.
+    bool isZero() const {
+      return find_if(data, data + (rows * cols),
+          std::bind2nd(std::not_equal_to<PBQPNum>(), 0)) ==
+        data + (rows * cols);
+    }
+
+  private:
+    unsigned rows, cols;
+    PBQPNum *data;
 };
 
 /// \brief Output a textual representation of the given matrix on the given
 ///        output stream.
 template <typename OStream>
-OStream& operator<<(OStream &OS, const Matrix &M) {
-  assert((M.getRows() != 0) && "Zero-row matrix badness.");
-  for (unsigned i = 0; i < M.getRows(); ++i)
-    OS << M.getRowAsVector(i);
-  return OS;
-}
+OStream& operator<<(OStream &os, const Matrix &m) {
 
-template <typename Metadata>
-class MDVector : public Vector {
-public:
-  MDVector(const Vector &v) : Vector(v), md(*this) { }
-  MDVector(Vector &&v) : Vector(std::move(v)), md(*this) { }
-  const Metadata& getMetadata() const { return md; }
-private:
-  Metadata md;
-};
+  assert((m.getRows() != 0) && "Zero-row matrix badness.");
 
-template <typename Metadata>
-class MDMatrix : public Matrix {
-public:
-  MDMatrix(const Matrix &m) : Matrix(m), md(*this) { }
-  MDMatrix(Matrix &&m) : Matrix(std::move(m)), md(*this) { }
-  const Metadata& getMetadata() const { return md; }
-private:
-  Metadata md;
-};
+  for (unsigned i = 0; i < m.getRows(); ++i) {
+    os << m.getRowAsVector(i);
+  }
+
+  return os;
+}
 
 }
 

Removed: llvm/trunk/include/llvm/CodeGen/PBQP/ReductionRules.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/PBQP/ReductionRules.h?rev=202553&view=auto
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/PBQP/ReductionRules.h (original)
+++ llvm/trunk/include/llvm/CodeGen/PBQP/ReductionRules.h (removed)
@@ -1,194 +0,0 @@
-//===----------- ReductionRules.h - Reduction Rules -------------*- C++ -*-===//
-//
-//                     The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// Reduction Rules.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_REDUCTIONRULES_H
-#define LLVM_REDUCTIONRULES_H
-
-#include "Graph.h"
-#include "Math.h"
-#include "Solution.h"
-
-namespace PBQP {
-
-  /// \brief Reduce a node of degree one.
-  ///
-  /// Propagate costs from the given node, which must be of degree one, to its
-  /// neighbor. Notify the problem domain.
-  template <typename GraphT>
-  void applyR1(GraphT &G, typename GraphT::NodeId NId) {
-    typedef typename GraphT::NodeId NodeId;
-    typedef typename GraphT::EdgeId EdgeId;
-    typedef typename GraphT::Vector Vector;
-    typedef typename GraphT::Matrix Matrix;
-    typedef typename GraphT::RawVector RawVector;
-
-    assert(G.getNodeDegree(NId) == 1 &&
-           "R1 applied to node with degree != 1.");
-
-    EdgeId EId = *G.adjEdgeIds(NId).begin();
-    NodeId MId = G.getEdgeOtherNodeId(EId, NId);
-
-    const Matrix &ECosts = G.getEdgeCosts(EId);
-    const Vector &XCosts = G.getNodeCosts(NId);
-    RawVector YCosts = G.getNodeCosts(MId);
-
-    // Duplicate a little to avoid transposing matrices.
-    if (NId == G.getEdgeNode1Id(EId)) {
-      for (unsigned j = 0; j < YCosts.getLength(); ++j) {
-        PBQPNum Min = ECosts[0][j] + XCosts[0];
-        for (unsigned i = 1; i < XCosts.getLength(); ++i) {
-          PBQPNum C = ECosts[i][j] + XCosts[i];
-          if (C < Min)
-            Min = C;
-        }
-        YCosts[j] += Min;
-      }
-    } else {
-      for (unsigned i = 0; i < YCosts.getLength(); ++i) {
-        PBQPNum Min = ECosts[i][0] + XCosts[0];
-        for (unsigned j = 1; j < XCosts.getLength(); ++j) {
-          PBQPNum C = ECosts[i][j] + XCosts[j];
-          if (C < Min)
-            Min = C;
-        }
-        YCosts[i] += Min;
-      }
-    }
-    G.setNodeCosts(MId, YCosts);
-    G.disconnectEdge(EId, MId);
-  }
-
-  template <typename GraphT>
-  void applyR2(GraphT &G, typename GraphT::NodeId NId) {
-    typedef typename GraphT::NodeId NodeId;
-    typedef typename GraphT::EdgeId EdgeId;
-    typedef typename GraphT::Vector Vector;
-    typedef typename GraphT::Matrix Matrix;
-    typedef typename GraphT::RawMatrix RawMatrix;
-
-    assert(G.getNodeDegree(NId) == 2 &&
-           "R2 applied to node with degree != 2.");
-
-    const Vector &XCosts = G.getNodeCosts(NId);
-
-    typename GraphT::AdjEdgeItr AEItr = G.adjEdgeIds(NId).begin();
-    EdgeId YXEId = *AEItr,
-           ZXEId = *(++AEItr);
-
-    NodeId YNId = G.getEdgeOtherNodeId(YXEId, NId),
-           ZNId = G.getEdgeOtherNodeId(ZXEId, NId);
-
-    bool FlipEdge1 = (G.getEdgeNode1Id(YXEId) == NId),
-         FlipEdge2 = (G.getEdgeNode1Id(ZXEId) == NId);
-
-    const Matrix *YXECosts = FlipEdge1 ?
-      new Matrix(G.getEdgeCosts(YXEId).transpose()) :
-      &G.getEdgeCosts(YXEId);
-
-    const Matrix *ZXECosts = FlipEdge2 ?
-      new Matrix(G.getEdgeCosts(ZXEId).transpose()) :
-      &G.getEdgeCosts(ZXEId);
-
-    unsigned XLen = XCosts.getLength(),
-      YLen = YXECosts->getRows(),
-      ZLen = ZXECosts->getRows();
-
-    RawMatrix Delta(YLen, ZLen);
-
-    for (unsigned i = 0; i < YLen; ++i) {
-      for (unsigned j = 0; j < ZLen; ++j) {
-        PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0];
-        for (unsigned k = 1; k < XLen; ++k) {
-          PBQPNum C = (*YXECosts)[i][k] + (*ZXECosts)[j][k] + XCosts[k];
-          if (C < Min) {
-            Min = C;
-          }
-        }
-        Delta[i][j] = Min;
-      }
-    }
-
-    if (FlipEdge1)
-      delete YXECosts;
-
-    if (FlipEdge2)
-      delete ZXECosts;
-
-    EdgeId YZEId = G.findEdge(YNId, ZNId);
-    bool AddedEdge = false;
-
-    if (YZEId == G.invalidEdgeId()) {
-      YZEId = G.addEdge(YNId, ZNId, Delta);
-      AddedEdge = true;
-    } else {
-      const Matrix &YZECosts = G.getEdgeCosts(YZEId);
-      if (YNId == G.getEdgeNode1Id(YZEId)) {
-        G.setEdgeCosts(YZEId, Delta + YZECosts);
-      } else {
-        G.setEdgeCosts(YZEId, Delta.transpose() + YZECosts);
-      }
-    }
-
-    G.disconnectEdge(YXEId, YNId);
-    G.disconnectEdge(ZXEId, ZNId);
-
-    // TODO: Try to normalize newly added/modified edge.
-  }
-
-
-  // \brief Find a solution to a fully reduced graph by backpropagation.
-  //
-  // Given a graph and a reduction order, pop each node from the reduction
-  // order and greedily compute a minimum solution based on the node costs, and
-  // the dependent costs due to previously solved nodes.
-  //
-  // Note - This does not return the graph to its original (pre-reduction)
-  //        state: the existing solvers destructively alter the node and edge
-  //        costs. Given that, the backpropagate function doesn't attempt to
-  //        replace the edges either, but leaves the graph in its reduced
-  //        state.
-  template <typename GraphT, typename StackT>
-  Solution backpropagate(GraphT& G, StackT stack) {
-    typedef GraphBase::NodeId NodeId;
-    typedef GraphBase::EdgeId EdgeId;
-    typedef typename GraphT::Matrix Matrix;
-    typedef typename GraphT::RawVector RawVector;
-
-    Solution s;
-
-    while (!stack.empty()) {
-      NodeId NId = stack.back();
-      stack.pop_back();
-
-      RawVector v = G.getNodeCosts(NId);
-
-      for (auto EId : G.adjEdgeIds(NId)) {
-        const Matrix& edgeCosts = G.getEdgeCosts(EId);
-        if (NId == G.getEdgeNode1Id(EId)) {
-          NodeId mId = G.getEdgeNode2Id(EId);
-          v += edgeCosts.getColAsVector(s.getSelection(mId));
-        } else {
-          NodeId mId = G.getEdgeNode1Id(EId);
-          v += edgeCosts.getRowAsVector(s.getSelection(mId));
-        }
-      }
-
-      s.setSelection(NId, v.minIndex());
-    }
-
-    return s;
-  }
-
-}
-
-#endif // LLVM_REDUCTIONRULES_H

Removed: llvm/trunk/include/llvm/CodeGen/PBQP/RegAllocSolver.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/PBQP/RegAllocSolver.h?rev=202553&view=auto
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/PBQP/RegAllocSolver.h (original)
+++ llvm/trunk/include/llvm/CodeGen/PBQP/RegAllocSolver.h (removed)
@@ -1,359 +0,0 @@
-//===-- RegAllocSolver.h - Heuristic PBQP Solver for reg alloc --*- C++ -*-===//
-//
-//                     The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// Heuristic PBQP solver for register allocation problems. This solver uses a
-// graph reduction approach. Nodes of degree 0, 1 and 2 are eliminated with
-// optimality-preserving rules (see ReductionRules.h). When no low-degree (<3)
-// nodes are present, a heuristic derived from Brigg's graph coloring approach
-// is used.
-// 
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_CODEGEN_PBQP_REGALLOCSOLVER_H
-#define LLVM_CODEGEN_PBQP_REGALLOCSOLVER_H
-
-#include "CostAllocator.h"
-#include "Graph.h"
-#include "ReductionRules.h"
-#include "Solution.h"
-#include "llvm/Support/ErrorHandling.h"
-#include <limits>
-#include <vector>
-
-namespace PBQP {
-
-  namespace RegAlloc {
-
-    /// \brief Metadata to speed allocatability test.
-    ///
-    /// Keeps track of the number of infinities in each row and column.
-    class MatrixMetadata {
-    private:
-      MatrixMetadata(const MatrixMetadata&);
-      void operator=(const MatrixMetadata&);
-    public:
-      MatrixMetadata(const PBQP::Matrix& m)
-        : worstRow(0), worstCol(0),
-          unsafeRows(new bool[m.getRows() - 1]()),
-          unsafeCols(new bool[m.getCols() - 1]()) {
-
-        unsigned* colCounts = new unsigned[m.getCols() - 1]();
-
-        for (unsigned i = 1; i < m.getRows(); ++i) {
-          unsigned rowCount = 0;
-          for (unsigned j = 1; j < m.getCols(); ++j) {
-            if (m[i][j] == std::numeric_limits<PBQP::PBQPNum>::infinity()) {
-              ++rowCount;
-              ++colCounts[j - 1];
-              unsafeRows[i - 1] = true;
-              unsafeCols[j - 1] = true;
-            }
-          }
-          worstRow = std::max(worstRow, rowCount);
-        }
-        unsigned worstColCountForCurRow =
-          *std::max_element(colCounts, colCounts + m.getCols() - 1);
-        worstCol = std::max(worstCol, worstColCountForCurRow);
-        delete[] colCounts;
-      }
-
-      ~MatrixMetadata() {
-        delete[] unsafeRows;
-        delete[] unsafeCols;
-      }
-
-      unsigned getWorstRow() const { return worstRow; }
-      unsigned getWorstCol() const { return worstCol; }
-      const bool* getUnsafeRows() const { return unsafeRows; }
-      const bool* getUnsafeCols() const { return unsafeCols; }
-
-    private:
-      unsigned worstRow, worstCol;
-      bool* unsafeRows;
-      bool* unsafeCols;
-    };
-
-    class NodeMetadata {
-    public:
-      typedef enum { Unprocessed,
-                     OptimallyReducible,
-                     ConservativelyAllocatable,
-                     NotProvablyAllocatable } ReductionState;
-
-      NodeMetadata() : rs(Unprocessed), deniedOpts(0), optUnsafeEdges(0) {}
-      ~NodeMetadata() { delete[] optUnsafeEdges; }
-
-      void setup(const Vector& costs) {
-        numOpts = costs.getLength() - 1;
-        optUnsafeEdges = new unsigned[numOpts]();
-      }
-
-      ReductionState getReductionState() const { return rs; }
-      void setReductionState(ReductionState rs) { this->rs = rs; }
-
-      void handleAddEdge(const MatrixMetadata& md, bool transpose) {
-        deniedOpts += transpose ? md.getWorstCol() : md.getWorstRow();
-        const bool* unsafeOpts =
-          transpose ? md.getUnsafeCols() : md.getUnsafeRows();
-        for (unsigned i = 0; i < numOpts; ++i)
-          optUnsafeEdges[i] += unsafeOpts[i];
-      }
-
-      void handleRemoveEdge(const MatrixMetadata& md, bool transpose) {
-        deniedOpts -= transpose ? md.getWorstCol() : md.getWorstRow();
-        const bool* unsafeOpts =
-          transpose ? md.getUnsafeCols() : md.getUnsafeRows();
-        for (unsigned i = 0; i < numOpts; ++i)
-          optUnsafeEdges[i] -= unsafeOpts[i];
-      }
-
-      bool isConservativelyAllocatable() const {
-        return (deniedOpts < numOpts) ||
-               (std::find(optUnsafeEdges, optUnsafeEdges + numOpts, 0) !=
-                  optUnsafeEdges + numOpts);
-      }
-
-    private:
-      ReductionState rs;
-      unsigned numOpts;
-      unsigned deniedOpts;
-      unsigned* optUnsafeEdges;
-    };
-
-    class RegAllocSolverImpl {
-    private:
-      typedef PBQP::MDMatrix<MatrixMetadata> RAMatrix;
-    public:
-      typedef PBQP::Vector RawVector;
-      typedef PBQP::Matrix RawMatrix;
-      typedef PBQP::Vector Vector;
-      typedef RAMatrix     Matrix;
-      typedef PBQP::PoolCostAllocator<
-                Vector, PBQP::VectorComparator,
-                Matrix, PBQP::MatrixComparator> CostAllocator;
-
-      typedef PBQP::GraphBase::NodeId NodeId;
-      typedef PBQP::GraphBase::EdgeId EdgeId;
-
-      typedef RegAlloc::NodeMetadata NodeMetadata;
-
-      struct EdgeMetadata { };
-
-      typedef PBQP::Graph<RegAllocSolverImpl> Graph;
-
-      RegAllocSolverImpl(Graph &G) : G(G) {}
-
-      Solution solve() {
-        G.setSolver(*this);
-        Solution S;
-        setup();
-        S = backpropagate(G, reduce());
-        G.unsetSolver();
-        return S;
-      }
-
-      void handleAddNode(NodeId NId) {
-        G.getNodeMetadata(NId).setup(G.getNodeCosts(NId));
-      }
-      void handleRemoveNode(NodeId NId) {}
-      void handleSetNodeCosts(NodeId NId, const Vector& newCosts) {}
-
-      void handleAddEdge(EdgeId EId) {
-        handleReconnectEdge(EId, G.getEdgeNode1Id(EId));
-        handleReconnectEdge(EId, G.getEdgeNode2Id(EId));
-      }
-
-      void handleRemoveEdge(EdgeId EId) {
-        handleDisconnectEdge(EId, G.getEdgeNode1Id(EId));
-        handleDisconnectEdge(EId, G.getEdgeNode2Id(EId));
-      }
-
-      void handleDisconnectEdge(EdgeId EId, NodeId NId) {
-        NodeMetadata& nMd = G.getNodeMetadata(NId);
-        const MatrixMetadata& mMd = G.getEdgeCosts(EId).getMetadata();
-        nMd.handleRemoveEdge(mMd, NId == G.getEdgeNode2Id(EId));
-        if (G.getNodeDegree(NId) == 3) {
-          // This node is becoming optimally reducible.
-          moveToOptimallyReducibleNodes(NId);
-        } else if (nMd.getReductionState() ==
-                     NodeMetadata::NotProvablyAllocatable &&
-                   nMd.isConservativelyAllocatable()) {
-          // This node just became conservatively allocatable.
-          moveToConservativelyAllocatableNodes(NId);
-        }
-      }
-
-      void handleReconnectEdge(EdgeId EId, NodeId NId) {
-        NodeMetadata& nMd = G.getNodeMetadata(NId);
-        const MatrixMetadata& mMd = G.getEdgeCosts(EId).getMetadata();
-        nMd.handleAddEdge(mMd, NId == G.getEdgeNode2Id(EId));
-      }
-
-      void handleSetEdgeCosts(EdgeId EId, const Matrix& NewCosts) {
-        handleRemoveEdge(EId);
-
-        NodeId n1Id = G.getEdgeNode1Id(EId);
-        NodeId n2Id = G.getEdgeNode2Id(EId);
-        NodeMetadata& n1Md = G.getNodeMetadata(n1Id);
-        NodeMetadata& n2Md = G.getNodeMetadata(n2Id);
-        const MatrixMetadata& mMd = NewCosts.getMetadata();
-        n1Md.handleAddEdge(mMd, n1Id != G.getEdgeNode1Id(EId));
-        n2Md.handleAddEdge(mMd, n2Id != G.getEdgeNode1Id(EId));
-      }
-
-    private:
-
-      void removeFromCurrentSet(NodeId NId) {
-        switch (G.getNodeMetadata(NId).getReductionState()) {
-          case NodeMetadata::Unprocessed: break;
-          case NodeMetadata::OptimallyReducible:
-            assert(OptimallyReducibleNodes.find(NId) !=
-                     OptimallyReducibleNodes.end() &&
-                   "Node not in optimally reducible set.");
-            OptimallyReducibleNodes.erase(NId);
-            break;
-          case NodeMetadata::ConservativelyAllocatable:
-            assert(ConservativelyAllocatableNodes.find(NId) !=
-                     ConservativelyAllocatableNodes.end() &&
-                   "Node not in conservatively allocatable set.");
-            ConservativelyAllocatableNodes.erase(NId);
-            break;
-          case NodeMetadata::NotProvablyAllocatable:
-            assert(NotProvablyAllocatableNodes.find(NId) !=
-                     NotProvablyAllocatableNodes.end() &&
-                   "Node not in not-provably-allocatable set.");
-            NotProvablyAllocatableNodes.erase(NId);
-            break;
-        }
-      }
-
-      void moveToOptimallyReducibleNodes(NodeId NId) {
-        removeFromCurrentSet(NId);
-        OptimallyReducibleNodes.insert(NId);
-        G.getNodeMetadata(NId).setReductionState(
-          NodeMetadata::OptimallyReducible);
-      }
-
-      void moveToConservativelyAllocatableNodes(NodeId NId) {
-        removeFromCurrentSet(NId);
-        ConservativelyAllocatableNodes.insert(NId);
-        G.getNodeMetadata(NId).setReductionState(
-          NodeMetadata::ConservativelyAllocatable);
-      }
-
-      void moveToNotProvablyAllocatableNodes(NodeId NId) {
-        removeFromCurrentSet(NId);
-        NotProvablyAllocatableNodes.insert(NId);
-        G.getNodeMetadata(NId).setReductionState(
-          NodeMetadata::NotProvablyAllocatable);
-      }
-
-      void setup() {
-        // Set up worklists.
-        for (auto NId : G.nodeIds()) {
-          if (G.getNodeDegree(NId) < 3)
-            moveToOptimallyReducibleNodes(NId);
-          else if (G.getNodeMetadata(NId).isConservativelyAllocatable())
-            moveToConservativelyAllocatableNodes(NId);
-          else
-            moveToNotProvablyAllocatableNodes(NId);
-        }
-      }
-
-      // Compute a reduction order for the graph by iteratively applying PBQP
-      // reduction rules. Locally optimal rules are applied whenever possible (R0,
-      // R1, R2). If no locally-optimal rules apply then any conservatively
-      // allocatable node is reduced. Finally, if no conservatively allocatable
-      // node exists then the node with the lowest spill-cost:degree ratio is
-      // selected.
-      std::vector<GraphBase::NodeId> reduce() {
-        assert(!G.empty() && "Cannot reduce empty graph.");
-
-        typedef GraphBase::NodeId NodeId;
-        std::vector<NodeId> NodeStack;
-
-        // Consume worklists.
-        while (true) {
-          if (!OptimallyReducibleNodes.empty()) {
-            NodeSet::iterator nItr = OptimallyReducibleNodes.begin();
-            NodeId NId = *nItr;
-            OptimallyReducibleNodes.erase(nItr);
-            NodeStack.push_back(NId);
-            switch (G.getNodeDegree(NId)) {
-              case 0:
-                break;
-              case 1:
-                applyR1(G, NId);
-                break;
-              case 2:
-                applyR2(G, NId);
-                break;
-              default: llvm_unreachable("Not an optimally reducible node.");
-            }
-          } else if (!ConservativelyAllocatableNodes.empty()) {
-            // Conservatively allocatable nodes will never spill. For now just
-            // take the first node in the set and push it on the stack. When we
-            // start optimizing more heavily for register preferencing, it may
-            // would be better to push nodes with lower 'expected' or worst-case
-            // register costs first (since early nodes are the most
-            // constrained).
-            NodeSet::iterator nItr = ConservativelyAllocatableNodes.begin();
-            NodeId NId = *nItr;
-            ConservativelyAllocatableNodes.erase(nItr);
-            NodeStack.push_back(NId);
-            G.disconnectAllNeighborsFromNode(NId);
-
-          } else if (!NotProvablyAllocatableNodes.empty()) {
-            NodeSet::iterator nItr =
-              std::min_element(NotProvablyAllocatableNodes.begin(),
-                               NotProvablyAllocatableNodes.end(),
-                               SpillCostComparator(G));
-            NodeId NId = *nItr;
-            NotProvablyAllocatableNodes.erase(nItr);
-            NodeStack.push_back(NId);
-            G.disconnectAllNeighborsFromNode(NId);
-          } else
-            break;
-        }
-
-        return NodeStack;
-      }
-
-      class SpillCostComparator {
-      public:
-        SpillCostComparator(const Graph& G) : G(G) {}
-        bool operator()(NodeId N1Id, NodeId N2Id) {
-          PBQPNum N1SC = G.getNodeCosts(N1Id)[0] / G.getNodeDegree(N1Id);
-          PBQPNum N2SC = G.getNodeCosts(N2Id)[0] / G.getNodeDegree(N2Id);
-          return N1SC < N2SC;
-        }
-      private:
-        const Graph& G;
-      };
-
-      Graph& G;
-      typedef std::set<NodeId> NodeSet;
-      NodeSet OptimallyReducibleNodes;
-      NodeSet ConservativelyAllocatableNodes;
-      NodeSet NotProvablyAllocatableNodes;
-    };
-
-    typedef Graph<RegAllocSolverImpl> Graph;
-
-    Solution solve(Graph& G) {
-      if (G.empty())
-        return Solution();
-      RegAllocSolverImpl RegAllocSolver(G);
-      return RegAllocSolver.solve();
-    }
-
-  }
-}
-
-#endif // LLVM_CODEGEN_PBQP_REGALLOCSOLVER_H

Modified: llvm/trunk/include/llvm/CodeGen/PBQP/Solution.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/PBQP/Solution.h?rev=202554&r1=202553&r2=202554&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/PBQP/Solution.h (original)
+++ llvm/trunk/include/llvm/CodeGen/PBQP/Solution.h Fri Feb 28 16:44:44 2014
@@ -26,7 +26,7 @@ namespace PBQP {
   class Solution {
   private:
 
-    typedef std::map<GraphBase::NodeId, unsigned> SelectionsMap;
+    typedef std::map<Graph::NodeId, unsigned> SelectionsMap;
     SelectionsMap selections;
 
     unsigned r0Reductions, r1Reductions, r2Reductions, rNReductions;
@@ -72,14 +72,14 @@ namespace PBQP {
     /// \brief Set the selection for a given node.
     /// @param nodeId Node id.
     /// @param selection Selection for nodeId.
-    void setSelection(GraphBase::NodeId nodeId, unsigned selection) {
+    void setSelection(Graph::NodeId nodeId, unsigned selection) {
       selections[nodeId] = selection;
     }
 
     /// \brief Get a node's selection.
     /// @param nodeId Node id.
     /// @return The selection for nodeId;
-    unsigned getSelection(GraphBase::NodeId nodeId) const {
+    unsigned getSelection(Graph::NodeId nodeId) const {
       SelectionsMap::const_iterator sItr = selections.find(nodeId);
       assert(sItr != selections.end() && "No selection for node.");
       return sItr->second;

Modified: llvm/trunk/include/llvm/CodeGen/RegAllocPBQP.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/RegAllocPBQP.h?rev=202554&r1=202553&r2=202554&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/RegAllocPBQP.h (original)
+++ llvm/trunk/include/llvm/CodeGen/RegAllocPBQP.h Fri Feb 28 16:44:44 2014
@@ -17,9 +17,9 @@
 #define LLVM_CODEGEN_REGALLOCPBQP_H
 
 #include "llvm/ADT/DenseMap.h"
-#include "llvm/ADT/SmallVector.h"
 #include "llvm/CodeGen/MachineFunctionPass.h"
-#include "llvm/CodeGen/PBQP/RegAllocSolver.h"
+#include "llvm/CodeGen/PBQP/Graph.h"
+#include "llvm/CodeGen/PBQP/Solution.h"
 #include <map>
 #include <set>
 
@@ -31,29 +31,28 @@ namespace llvm {
   class TargetRegisterInfo;
   template<class T> class OwningPtr;
 
-  typedef PBQP::RegAlloc::Graph PBQPRAGraph;
-
   /// This class wraps up a PBQP instance representing a register allocation
   /// problem, plus the structures necessary to map back from the PBQP solution
   /// to a register allocation solution. (i.e. The PBQP-node <--> vreg map,
   /// and the PBQP option <--> storage location map).
+
   class PBQPRAProblem {
   public:
 
     typedef SmallVector<unsigned, 16> AllowedSet;
 
-    PBQPRAGraph& getGraph() { return graph; }
+    PBQP::Graph& getGraph() { return graph; }
 
-    const PBQPRAGraph& getGraph() const { return graph; }
+    const PBQP::Graph& getGraph() const { return graph; }
 
     /// Record the mapping between the given virtual register and PBQP node,
     /// and the set of allowed pregs for the vreg.
     ///
     /// If you are extending
     /// PBQPBuilder you are unlikely to need this: Nodes and options for all
-    /// vregs will already have been set up for you by the base class.
+    /// vregs will already have been set up for you by the base class. 
     template <typename AllowedRegsItr>
-    void recordVReg(unsigned vreg, PBQPRAGraph::NodeId nodeId,
+    void recordVReg(unsigned vreg, PBQP::Graph::NodeId nodeId,
                     AllowedRegsItr arBegin, AllowedRegsItr arEnd) {
       assert(node2VReg.find(nodeId) == node2VReg.end() && "Re-mapping node.");
       assert(vreg2Node.find(vreg) == vreg2Node.end() && "Re-mapping vreg.");
@@ -65,10 +64,10 @@ namespace llvm {
     }
 
     /// Get the virtual register corresponding to the given PBQP node.
-    unsigned getVRegForNode(PBQPRAGraph::NodeId nodeId) const;
+    unsigned getVRegForNode(PBQP::Graph::NodeId nodeId) const;
 
     /// Get the PBQP node corresponding to the given virtual register.
-    PBQPRAGraph::NodeId getNodeForVReg(unsigned vreg) const;
+    PBQP::Graph::NodeId getNodeForVReg(unsigned vreg) const;
 
     /// Returns true if the given PBQP option represents a physical register,
     /// false otherwise.
@@ -93,16 +92,16 @@ namespace llvm {
 
   private:
 
-    typedef std::map<PBQPRAGraph::NodeId, unsigned>  Node2VReg;
-    typedef DenseMap<unsigned, PBQPRAGraph::NodeId> VReg2Node;
+    typedef std::map<PBQP::Graph::NodeId, unsigned>  Node2VReg;
+    typedef DenseMap<unsigned, PBQP::Graph::NodeId> VReg2Node;
     typedef DenseMap<unsigned, AllowedSet> AllowedSetMap;
 
-    PBQPRAGraph graph;
+    PBQP::Graph graph;
     Node2VReg node2VReg;
     VReg2Node vreg2Node;
 
     AllowedSetMap allowedSets;
-
+    
   };
 
   /// Builds PBQP instances to represent register allocation problems. Includes
@@ -115,7 +114,7 @@ namespace llvm {
   public:
 
     typedef std::set<unsigned> RegSet;
-
+ 
     /// Default constructor.
     PBQPBuilder() {}
 
@@ -140,12 +139,12 @@ namespace llvm {
   /// Extended builder which adds coalescing constraints to a problem.
   class PBQPBuilderWithCoalescing : public PBQPBuilder {
   public:
-
+ 
     /// Build a PBQP instance to represent the register allocation problem for
     /// the given MachineFunction.
     virtual PBQPRAProblem *build(MachineFunction *mf, const LiveIntervals *lis,
                                  const MachineBlockFrequencyInfo *mbfi,
-                                 const RegSet &vregs);
+                                 const RegSet &vregs);   
 
   private:
 

Modified: llvm/trunk/lib/CodeGen/RegAllocPBQP.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/RegAllocPBQP.cpp?rev=202554&r1=202553&r2=202554&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/RegAllocPBQP.cpp (original)
+++ llvm/trunk/lib/CodeGen/RegAllocPBQP.cpp Fri Feb 28 16:44:44 2014
@@ -45,6 +45,9 @@
 #include "llvm/CodeGen/MachineFunctionPass.h"
 #include "llvm/CodeGen/MachineLoopInfo.h"
 #include "llvm/CodeGen/MachineRegisterInfo.h"
+#include "llvm/CodeGen/PBQP/Graph.h"
+#include "llvm/CodeGen/PBQP/HeuristicSolver.h"
+#include "llvm/CodeGen/PBQP/Heuristics/Briggs.h"
 #include "llvm/CodeGen/RegAllocRegistry.h"
 #include "llvm/CodeGen/VirtRegMap.h"
 #include "llvm/IR/Module.h"
@@ -154,13 +157,13 @@ char RegAllocPBQP::ID = 0;
 
 } // End anonymous namespace.
 
-unsigned PBQPRAProblem::getVRegForNode(PBQPRAGraph::NodeId node) const {
+unsigned PBQPRAProblem::getVRegForNode(PBQP::Graph::NodeId node) const {
   Node2VReg::const_iterator vregItr = node2VReg.find(node);
   assert(vregItr != node2VReg.end() && "No vreg for node.");
   return vregItr->second;
 }
 
-PBQPRAGraph::NodeId PBQPRAProblem::getNodeForVReg(unsigned vreg) const {
+PBQP::Graph::NodeId PBQPRAProblem::getNodeForVReg(unsigned vreg) const {
   VReg2Node::const_iterator nodeItr = vreg2Node.find(vreg);
   assert(nodeItr != vreg2Node.end() && "No node for vreg.");
   return nodeItr->second;
@@ -192,7 +195,7 @@ PBQPRAProblem *PBQPBuilder::build(Machin
   const TargetRegisterInfo *tri = mf->getTarget().getRegisterInfo();
 
   OwningPtr<PBQPRAProblem> p(new PBQPRAProblem());
-  PBQPRAGraph &g = p->getGraph();
+  PBQP::Graph &g = p->getGraph();
   RegSet pregs;
 
   // Collect the set of preg intervals, record that they're used in the MF.
@@ -242,19 +245,17 @@ PBQPRAProblem *PBQPBuilder::build(Machin
       vrAllowed.push_back(preg);
     }
 
-    PBQP::Vector nodeCosts(vrAllowed.size() + 1, 0);
-
-    PBQP::PBQPNum spillCost = (vregLI->weight != 0.0) ?
-        vregLI->weight : std::numeric_limits<PBQP::PBQPNum>::min();
-
-    addSpillCosts(nodeCosts, spillCost);
-
     // Construct the node.
-    PBQPRAGraph::NodeId nId = g.addNode(std::move(nodeCosts));
+    PBQP::Graph::NodeId node =
+      g.addNode(PBQP::Vector(vrAllowed.size() + 1, 0));
 
     // Record the mapping and allowed set in the problem.
-    p->recordVReg(vreg, nId, vrAllowed.begin(), vrAllowed.end());
+    p->recordVReg(vreg, node, vrAllowed.begin(), vrAllowed.end());
 
+    PBQP::PBQPNum spillCost = (vregLI->weight != 0.0) ?
+        vregLI->weight : std::numeric_limits<PBQP::PBQPNum>::min();
+
+    addSpillCosts(g.getNodeCosts(node), spillCost);
   }
 
   for (RegSet::const_iterator vr1Itr = vregs.begin(), vrEnd = vregs.end();
@@ -271,11 +272,11 @@ PBQPRAProblem *PBQPBuilder::build(Machin
 
       assert(!l2.empty() && "Empty interval in vreg set?");
       if (l1.overlaps(l2)) {
-        PBQP::Matrix edgeCosts(vr1Allowed.size()+1, vr2Allowed.size()+1, 0);
-        addInterferenceCosts(edgeCosts, vr1Allowed, vr2Allowed, tri);
+        PBQP::Graph::EdgeId edge =
+          g.addEdge(p->getNodeForVReg(vr1), p->getNodeForVReg(vr2),
+                    PBQP::Matrix(vr1Allowed.size()+1, vr2Allowed.size()+1, 0));
 
-        g.addEdge(p->getNodeForVReg(vr1), p->getNodeForVReg(vr2),
-                  std::move(edgeCosts));
+        addInterferenceCosts(g.getEdgeCosts(edge), vr1Allowed, vr2Allowed, tri);
       }
     }
   }
@@ -315,7 +316,7 @@ PBQPRAProblem *PBQPBuilderWithCoalescing
                                                 const RegSet &vregs) {
 
   OwningPtr<PBQPRAProblem> p(PBQPBuilder::build(mf, lis, mbfi, vregs));
-  PBQPRAGraph &g = p->getGraph();
+  PBQP::Graph &g = p->getGraph();
 
   const TargetMachine &tm = mf->getTarget();
   CoalescerPair cp(*tm.getRegisterInfo());
@@ -361,32 +362,28 @@ PBQPRAProblem *PBQPBuilderWithCoalescing
         }
         if (pregOpt < allowed.size()) {
           ++pregOpt; // +1 to account for spill option.
-          PBQPRAGraph::NodeId node = p->getNodeForVReg(src);
-          llvm::dbgs() << "Reading node costs for node " << node << "\n";
-          llvm::dbgs() << "Source node: " << &g.getNodeCosts(node) << "\n";
-          PBQP::Vector newCosts(g.getNodeCosts(node));
-          addPhysRegCoalesce(newCosts, pregOpt, cBenefit);
-          g.setNodeCosts(node, newCosts);
+          PBQP::Graph::NodeId node = p->getNodeForVReg(src);
+          addPhysRegCoalesce(g.getNodeCosts(node), pregOpt, cBenefit);
         }
       } else {
         const PBQPRAProblem::AllowedSet *allowed1 = &p->getAllowedSet(dst);
         const PBQPRAProblem::AllowedSet *allowed2 = &p->getAllowedSet(src);
-        PBQPRAGraph::NodeId node1 = p->getNodeForVReg(dst);
-        PBQPRAGraph::NodeId node2 = p->getNodeForVReg(src);
-        PBQPRAGraph::EdgeId edge = g.findEdge(node1, node2);
+        PBQP::Graph::NodeId node1 = p->getNodeForVReg(dst);
+        PBQP::Graph::NodeId node2 = p->getNodeForVReg(src);
+        PBQP::Graph::EdgeId edge = g.findEdge(node1, node2);
         if (edge == g.invalidEdgeId()) {
-          PBQP::Matrix costs(allowed1->size() + 1, allowed2->size() + 1, 0);
-          addVirtRegCoalesce(costs, *allowed1, *allowed2, cBenefit);
-          g.addEdge(node1, node2, costs);
+          edge = g.addEdge(node1, node2, PBQP::Matrix(allowed1->size() + 1,
+                                                      allowed2->size() + 1,
+                                                      0));
         } else {
-          if (g.getEdgeNode1Id(edge) == node2) {
+          if (g.getEdgeNode1(edge) == node2) {
             std::swap(node1, node2);
             std::swap(allowed1, allowed2);
           }
-          PBQP::Matrix costs(g.getEdgeCosts(edge));
-          addVirtRegCoalesce(costs, *allowed1, *allowed2, cBenefit);
-          g.setEdgeCosts(edge, costs);
         }
+
+        addVirtRegCoalesce(g.getEdgeCosts(edge), *allowed1, *allowed2,
+                           cBenefit);
       }
     }
   }
@@ -474,12 +471,14 @@ bool RegAllocPBQP::mapPBQPToRegAlloc(con
   // Clear the existing allocation.
   vrm->clearAllVirt();
 
-  const PBQPRAGraph &g = problem.getGraph();
+  const PBQP::Graph &g = problem.getGraph();
   // Iterate over the nodes mapping the PBQP solution to a register
   // assignment.
-  for (auto NId : g.nodeIds()) {
-    unsigned vreg = problem.getVRegForNode(NId);
-    unsigned alloc = solution.getSelection(NId);
+  for (PBQP::Graph::NodeItr nodeItr = g.nodesBegin(),
+                            nodeEnd = g.nodesEnd();
+       nodeItr != nodeEnd; ++nodeItr) {
+    unsigned vreg = problem.getVRegForNode(*nodeItr);
+    unsigned alloc = solution.getSelection(*nodeItr);
 
     if (problem.isPRegOption(vreg, alloc)) {
       unsigned preg = problem.getPRegForOption(vreg, alloc);
@@ -604,7 +603,8 @@ bool RegAllocPBQP::runOnMachineFunction(
 #endif
 
       PBQP::Solution solution =
-        PBQP::RegAlloc::solve(problem->getGraph());
+        PBQP::HeuristicSolver<PBQP::Heuristics::Briggs>::solve(
+          problem->getGraph());
 
       pbqpAllocComplete = mapPBQPToRegAlloc(*problem, solution);
 





More information about the llvm-commits mailing list