Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Row

1757       // Add the converter row for this instruction.
1808 // Add the operand entry to the instruction kind conversion row.
1856 // Add the operand entry to the instruction kind conversion row.
1888 // Add the operand entry to the instruction kind conversion row.
1913 // Save the signature. If we already have it, don't add a new row
1918 // Add the row to the table.
1953 for (unsigned Row = 0, ERow = ConversionTable.size(); Row != ERow; ++Row) {
1954 assert(ConversionTable[Row].size() % 2 == 0 && "bad conversion row!");
1955 OS << " // " << InstructionConversionKinds[Row] << "\n";
1957 for (unsigned i = 0, e = ConversionTable[Row].size(); i != e; i += 2)
1958 OS << OperandConversionKinds[ConversionTable[Row][i]] << ", "
1959 << (unsigned)(ConversionTable[Row][i + 1]) << ", ";