Searched defs:SubRegIndices (Results 1 - 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DRegisterInfoEmitter.cpp433 const std::vector<Record*> &SubRegIndices = RegBank.getSubRegIndices(); local
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(); local
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
[all...]
H A DCodeGenRegisters.h226 std::vector<Record*> SubRegIndices; member in class:llvm::CodeGenRegBank
259 const std::vector<Record*> &getSubRegIndices() { return SubRegIndices; }
/external/llvm/include/llvm/MC/
H A DMCRegisterInfo.h110 // Offset into MCRI::SubRegIndices of a list of sub-register indices for each
112 uint32_t SubRegIndices; member in struct:llvm::MCRegisterDesc
168 const uint16_t *SubRegIndices; // Pointer to the subreg lookup member in class:llvm::MCRegisterInfo
270 SubRegIndices = SubIndices;
489 SRIndex = MCRI->SubRegIndices + MCRI->get(Reg).SubRegIndices;
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.h481 std::deque<CodeGenSubRegIndex> SubRegIndices; member in class:llvm::CodeGenRegBank
571 return SubRegIndices;
H A DRegisterInfoEmitter.cpp157 auto &SubRegIndices = Bank.getSubRegIndices(); local
158 if (!SubRegIndices.empty()) {
160 std::string Namespace = SubRegIndices.front().getNamespace();
165 for (const auto &Idx : SubRegIndices)
650 const auto &SubRegIndices = RegBank.getSubRegIndices(); local
666 std::distance(SubRegIndices.begin(), SubRegIndices.end());
667 for (const auto &Idx : SubRegIndices) {
721 const auto &SubRegIndices = RegBank.getSubRegIndices(); local
726 for (const auto &Idx : SubRegIndices) {
824 auto &SubRegIndices = RegBank.getSubRegIndices(); local
1175 const auto &SubRegIndices = RegBank.getSubRegIndices(); local
[all...]

Completed in 220 milliseconds