HomeSort by relevance Sort by last modified time
    Searched defs:Costs (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/PBQP/
Graph.h 74 NodeEntry(VectorPtr Costs) : Costs(Costs) {}
96 VectorPtr Costs;
104 EdgeEntry(NodeId N1Id, NodeId N2Id, MatrixPtr Costs)
105 : Costs(Costs) {
116 Costs = nullptr;
168 MatrixPtr Costs;
377 /// @brief Add a node with the given costs
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocPBQP.cpp 152 /// @brief Set spill costs for each node in the PBQP reg-alloc graph.
158 // A minimum spill costs, so that register constraints can can be set
370 // Try looking the edge costs up in the IMatrixCache first.
452 PBQPRAGraph::RawMatrix Costs(Allowed1->size() + 1,
454 addVirtRegCoalesce(Costs, *Allowed1, *Allowed2, CBenefit);
455 G.addEdge(N1Id, N2Id, std::move(Costs));
461 PBQPRAGraph::RawMatrix Costs(G.getEdgeCosts(EId));
462 addVirtRegCoalesce(Costs, *Allowed1, *Allowed2, CBenefit);
463 G.updateEdgeCosts(EId, std::move(Costs));
838 const Vector &Costs = getNodeCosts(NId)
    [all...]

Completed in 541 milliseconds