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

  /external/llvm/utils/TableGen/
CodeGenRegisters.h 226 std::vector<Record*> SubRegIndices;
259 const std::vector<Record*> &getSubRegIndices() { return SubRegIndices; }
RegisterInfoEmitter.cpp 433 const std::vector<Record*> &SubRegIndices = RegBank.getSubRegIndices();
434 if (!SubRegIndices.empty()) {
436 std::string Namespace = SubRegIndices[0]->getValueAsString("Namespace");
441 OS << " " << SubRegIndices[i]->getName() << ",\t// " << i+1 << "\n";
442 OS << " NUM_TARGET_NAMED_SUBREGS = " << SubRegIndices.size()+1 << "\n";
692 const std::vector<Record*> &SubRegIndices = RegBank.getSubRegIndices();
695 for (unsigned i = 0, e = SubRegIndices.size(); i != e; ++i) {
696 OS << SubRegIndices[i]->getName();
703 if (SubRegIndices.size() > NamedIndices) {
705 for (unsigned i = NamedIndices, e = SubRegIndices.size(); i != e; ++i)
    [all...]

Completed in 45 milliseconds