• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/llvmCore-3425.0.34/utils/TableGen/

Lines Matching defs:TargetName

729   const std::string &TargetName = Target.getName();
732 OS << "extern const uint16_t " << TargetName << "RegDiffLists[] = {\n";
737 OS << "extern const uint16_t " << TargetName << "SubRegIdxLists[] = {\n";
743 OS << "extern const char " << TargetName << "RegStrings[] = {\n";
747 OS << "extern const MCRegisterDesc " << TargetName
765 OS << "extern const uint16_t " << TargetName << "RegUnitRoots[][2] = {\n";
814 OS << "extern const MCRegisterClass " << TargetName
843 OS << "extern const uint16_t " << TargetName;
860 OS << "static inline void Init" << TargetName
863 << " RI->InitMCRegisterInfo(" << TargetName << "RegDesc, "
864 << Regs.size()+1 << ", RA, " << TargetName << "MCRegisterClasses, "
866 << TargetName << "RegUnitRoots, "
868 << TargetName << "RegDiffLists, "
869 << TargetName << "RegStrings, "
870 << TargetName << "SubRegIdxLists, "
872 << " " << TargetName << "RegEncodingTable);\n\n";
890 const std::string &TargetName = Target.getName();
891 std::string ClassName = TargetName + "GenRegisterInfo";
930 OS << "} // end of namespace " << TargetName << "\n\n";
1139 const std::string &TargetName = Target.getName();
1141 << TargetName << "RegInfoDesc[] = { // Extra Descriptors\n";
1196 OS << "extern const MCRegisterDesc " << TargetName << "RegDesc[];\n";
1197 OS << "extern const uint16_t " << TargetName << "RegDiffLists[];\n";
1198 OS << "extern const char " << TargetName << "RegStrings[];\n";
1199 OS << "extern const uint16_t " << TargetName << "RegUnitRoots[][2];\n";
1200 OS << "extern const uint16_t " << TargetName << "SubRegIdxLists[];\n";
1201 OS << "extern const uint16_t " << TargetName << "RegEncodingTable[];\n";
1207 << " : TargetRegisterInfo(" << TargetName << "RegInfoDesc"
1210 << " InitMCRegisterInfo(" << TargetName << "RegDesc, "
1211 << Regs.size()+1 << ", RA,\n " << TargetName
1213 << " " << TargetName << "RegUnitRoots,\n"
1215 << " " << TargetName << "RegDiffLists,\n"
1216 << " " << TargetName << "RegStrings,\n"
1217 << " " << TargetName << "SubRegIdxLists,\n"
1219 << " " << TargetName << "RegEncodingTable);\n\n";