Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Index

143 static bit_value_t bitFromBits(const BitsInit &bits, unsigned index) {
144 if (BitInit *bit = dyn_cast<BitInit>(bits.getBit(index)))
152 for (unsigned index = bits.getNumBits(); index > 0; --index) {
153 switch (bitFromBits(bits, index - 1)) {
327 // Index of the best filter from Filters.
802 // Decoder index.
872 // input predicate index.
878 OS.indent(Indentation) << "default: llvm_unreachable(\"Invalid index!\");\n";
879 unsigned Index = 0;
881 OS.indent(Indentation) << "case " << Index++ << ":\n";
887 OS.indent(Indentation) << "llvm_unreachable(\"Invalid index!\");\n";
897 // input decoder index.
907 OS.indent(Indentation) << "default: llvm_unreachable(\"Invalid index!\");\n";
908 unsigned Index = 0;
910 OS.indent(Indentation) << "case " << Index++ << ":\n";
1132 // Now figure out the index for when we write out the table.
1207 // Now figure out the index for when we write out the table.
1227 // Figure out the index into the predicate table for the predicate just
1235 // Predicate index
1368 // Decoder index
2143 << " // Decode the Predicate Index value.\n"