Home
last modified time | relevance | path

Searched refs:getEdgeCosts (Results 1 – 9 of 9) sorted by relevance

/external/llvm/include/llvm/CodeGen/PBQP/
DReductionRules.h42 const Matrix &ECosts = G.getEdgeCosts(EId); in applyR1()
96 new Matrix(G.getEdgeCosts(YXEId).transpose()) : in applyR2()
97 &G.getEdgeCosts(YXEId); in applyR2()
100 new Matrix(G.getEdgeCosts(ZXEId).transpose()) : in applyR2()
101 &G.getEdgeCosts(ZXEId); in applyR2()
133 const Matrix &YZECosts = G.getEdgeCosts(YZEId); in applyR2()
202 const Matrix& edgeCosts = G.getEdgeCosts(EId); in backpropagate()
DGraph.h537 const Matrix& getEdgeCosts(EdgeId EId) const { in getEdgeCosts() function
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/
DHeuristicSolver.h244 const Matrix &eCosts = g.getEdgeCosts(eItr); in applyR1()
304 new Matrix(g.getEdgeCosts(yxeItr).transpose()) : in applyR2()
305 &g.getEdgeCosts(yxeItr); in applyR2()
308 new Matrix(g.getEdgeCosts(zxeItr).transpose()) : in applyR2()
309 &g.getEdgeCosts(zxeItr); in applyR2()
343 Matrix &yzeCosts = g.getEdgeCosts(yzeItr); in applyR2()
457 g.getEdgeCosts(eItr).getRowAsVector(0); in disconnectTrivialNodes()
462 g.getEdgeCosts(eItr).getColAsVector(0); in disconnectTrivialNodes()
507 Matrix &edgeCosts = g.getEdgeCosts(eItr); in tryNormaliseEdgeMatrix()
569 Matrix &edgeCosts = g.getEdgeCosts(eItr); in computeSolution()
DGraph.h219 Matrix& getEdgeCosts(EdgeItr eItr) { return getEdge(eItr).getCosts(); } in getEdgeCosts() function
224 const Matrix& getEdgeCosts(ConstEdgeItr eItr) const { in getEdgeCosts() function
376 const Matrix &edgeCosts = getEdgeCosts(edgeItr); in printDot()
/external/llvm/include/llvm/CodeGen/
DRegAllocPBQP.h379 const MatrixMetadata& MMd = G.getEdgeCosts(EId).getMetadata(); in handleDisconnectEdge()
386 const MatrixMetadata& MMd = G.getEdgeCosts(EId).getMetadata(); in handleReconnectEdge()
399 const MatrixMetadata& OldMMd = G.getEdgeCosts(EId).getMetadata(); in handleUpdateCosts()
/external/llvm/lib/Target/AArch64/
DAArch64PBQPRegAlloc.cpp213 PBQPRAGraph::RawMatrix costs(G.getEdgeCosts(edge)); in addIntraChainConstraint()
290 PBQP::Matrix costs(G.getEdgeCosts(edge)); in addInterChainConstraint()
/external/llvm/lib/CodeGen/
DRegAllocPBQP.cpp469 PBQPRAGraph::RawMatrix Costs(G.getEdgeCosts(EId)); in apply()
852 const Matrix &M = getEdgeCosts(EId); in dump()
876 const Matrix &EdgeCosts = getEdgeCosts(EId); in printDot()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DRegAllocPBQP.cpp303 addInterferenceCosts(g.getEdgeCosts(edge), vr1Allowed, vr2Allowed, tri); in build()
411 addVirtRegCoalesce(g.getEdgeCosts(edge), *allowed1, *allowed2, in build()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/Heuristics/
DBriggs.h314 Matrix &eCosts = getGraph().getEdgeCosts(eItr); in computeEdgeContributions()