Lines Matching refs:Rows
712 SmallVector<SmallVector<CodeGenSubRegIndex*, 4>, 4> Rows; in emitComposeSubRegIndices() local
718 for (unsigned r = 0, re = Rows.size(); r != re; ++r) { in emitComposeSubRegIndices()
719 if (combine(&Idx, Rows[r])) { in emitComposeSubRegIndices()
725 Found = Rows.size(); in emitComposeSubRegIndices()
726 Rows.resize(Found + 1); in emitComposeSubRegIndices()
727 Rows.back().resize(SubRegIndicesSize); in emitComposeSubRegIndices()
728 combine(&Idx, Rows.back()); in emitComposeSubRegIndices()
734 if (Rows.size() > 1) { in emitComposeSubRegIndices()
735 OS << " static const " << getMinimalTypeForRange(Rows.size(), 32) in emitComposeSubRegIndices()
744 << " Rows[" << Rows.size() << "][" << SubRegIndicesSize << "] = {\n"; in emitComposeSubRegIndices()
745 for (unsigned r = 0, re = Rows.size(); r != re; ++r) { in emitComposeSubRegIndices()
748 if (Rows[r][i]) in emitComposeSubRegIndices()
749 OS << Rows[r][i]->getQualifiedName() << ", "; in emitComposeSubRegIndices()
758 if (Rows.size() > 1) in emitComposeSubRegIndices()