HomeSort by relevance Sort by last modified time
    Searched defs:SubRegIndices (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 118 // Offset into MCRI::SubRegIndices of a list of sub-register indices for each
120 uint32_t SubRegIndices;
162 const uint16_t *SubRegIndices; // Pointer to the subreg lookup
255 SubRegIndices = SubIndices;
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 142 ArrayRef<CodeGenSubRegIndex*> SubRegIndices = Bank.getSubRegIndices();
143 if (!SubRegIndices.empty()) {
146 SubRegIndices[0]->getNamespace();
150 for (unsigned i = 0, e = SubRegIndices.size(); i != e; ++i)
151 OS << " " << SubRegIndices[i]->getName() << ",\t// " << i+1 << "\n";
629 ArrayRef<CodeGenSubRegIndex*> SubRegIndices = RegBank.getSubRegIndices();
644 for (unsigned i = 0, e = SubRegIndices.size(); i != e; ++i) {
647 if (combine(SubRegIndices[i], Rows[r])) {
655 Rows.back().resize(SubRegIndices.size());
656 combine(SubRegIndices[i], Rows.back())
    [all...]
CodeGenRegisters.h 435 // SubRegIndices.
436 std::vector<CodeGenSubRegIndex*> SubRegIndices;
513 ArrayRef<CodeGenSubRegIndex*> getSubRegIndices() { return SubRegIndices; }

Completed in 805 milliseconds