Searched refs:DepMatrix (Results 1 – 1 of 1) sorted by relevance
76 static void printDepMatrix(CharMatrix &DepMatrix) { in printDepMatrix() argument77 for (auto &Row : DepMatrix) { in printDepMatrix()85 static bool populateDependencyMatrix(CharMatrix &DepMatrix, unsigned Level, in populateDependencyMatrix() argument160 DepMatrix.push_back(Dep); in populateDependencyMatrix()161 if (DepMatrix.size() > MaxMemInstrCount) { in populateDependencyMatrix()175 static void interChangeDependencies(CharMatrix &DepMatrix, unsigned FromIndx, in interChangeDependencies() argument177 for (unsigned I = 0, E = DepMatrix.size(); I < E; ++I) in interChangeDependencies()178 std::swap(DepMatrix[I][ToIndx], DepMatrix[I][FromIndx]); in interChangeDependencies()196 static bool isLegalToInterChangeLoops(CharMatrix &DepMatrix, in isLegalToInterChangeLoops() argument199 unsigned NumRows = DepMatrix.size(); in isLegalToInterChangeLoops()[all …]