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

  /external/llvm/lib/MC/
MCRegisterInfo.cpp 29 // Get a pointer to the corresponding SubRegIndices list. This list has the
31 const uint16_t *SRI = SubRegIndices + get(Reg).SubRegIndices;
40 // Get a pointer to the corresponding SubRegIndices list. This list has the
42 const uint16_t *SRI = SubRegIndices + get(Reg).SubRegIndices;
  /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.cpp 112 std::vector<Record*> SRIs = TheDef->getValueAsListOfDefs("SubRegIndices");
117 "SubRegs and SubRegIndices must have the same size");
592 std::vector<Record*> Indices = Def->getValueAsListOfDefs("SubRegIndices");
596 PrintFatalError(Def->getLoc(), "SubRegIndices and SubRegs size mismatch");
671 if (Field == "SubRegIndices" ||
    [all...]
CodeGenRegisters.h 435 // SubRegIndices.
436 std::vector<CodeGenSubRegIndex*> SubRegIndices;
513 ArrayRef<CodeGenSubRegIndex*> getSubRegIndices() { return SubRegIndices; }
  /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;

Completed in 182 milliseconds