Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp80 static void printDepMatrix(CharMatrix &DepMatrix) { in printDepMatrix() argument
81 for (auto &Row : DepMatrix) { in printDepMatrix()
89 static bool populateDependencyMatrix(CharMatrix &DepMatrix, unsigned Level, in populateDependencyMatrix() argument
164 DepMatrix.push_back(Dep); in populateDependencyMatrix()
165 if (DepMatrix.size() > MaxMemInstrCount) { in populateDependencyMatrix()
179 static void interChangeDependencies(CharMatrix &DepMatrix, unsigned FromIndx, in interChangeDependencies() argument
181 for (unsigned I = 0, E = DepMatrix.size(); I < E; ++I) in interChangeDependencies()
182 std::swap(DepMatrix[I][ToIndx], DepMatrix[I][FromIndx]); in interChangeDependencies()
201 static bool isLegalToInterChangeLoops(CharMatrix &DepMatrix, in isLegalToInterChangeLoops() argument
204 unsigned NumRows = DepMatrix.size(); in isLegalToInterChangeLoops()
[all …]