Lines Matching defs:TargetName

931   const std::string &TargetName = std::string(Target.getName());
934 OS << "extern const int16_t " << TargetName << "RegDiffLists[] = {\n";
939 OS << "extern const LaneBitmask " << TargetName << "LaneMaskLists[] = {\n";
944 OS << "extern const uint16_t " << TargetName << "SubRegIdxLists[] = {\n";
950 RegStrings.emitStringLiteralDef(OS, Twine("extern const char ") + TargetName +
953 OS << "extern const MCRegisterDesc " << TargetName
978 OS << "extern const MCPhysReg " << TargetName << "RegUnitRoots[][2] = {\n";
1030 OS, Twine("extern const char ") + TargetName + "RegClassStrings[]");
1032 OS << "extern const MCRegisterClass " << TargetName
1057 OS << "extern const uint16_t " << TargetName;
1074 OS << "static inline void Init" << TargetName
1078 << " RI->InitMCRegisterInfo(" << TargetName << "RegDesc, "
1079 << Regs.size() + 1 << ", RA, PC, " << TargetName << "MCRegisterClasses, "
1080 << RegisterClasses.size() << ", " << TargetName << "RegUnitRoots, "
1081 << RegBank.getNumNativeRegUnits() << ", " << TargetName << "RegDiffLists, "
1082 << TargetName << "LaneMaskLists, " << TargetName << "RegStrings, "
1083 << TargetName << "RegClassStrings, " << TargetName << "SubRegIdxLists, "
1085 << TargetName << "RegEncodingTable);\n\n";
1101 const std::string &TargetName = std::string(Target.getName());
1102 std::string ClassName = TargetName + "GenRegisterInfo";
1108 OS << "class " << TargetName << "FrameLowering;\n\n";
1149 << " static const " << TargetName << "FrameLowering *getFrameLowering(\n"
1427 const std::string &TargetName = std::string(Target.getName());
1469 OS << "\nstatic const TargetRegisterInfoDesc " << TargetName
1620 OS << "extern const MCRegisterDesc " << TargetName << "RegDesc[];\n";
1621 OS << "extern const int16_t " << TargetName << "RegDiffLists[];\n";
1622 OS << "extern const LaneBitmask " << TargetName << "LaneMaskLists[];\n";
1623 OS << "extern const char " << TargetName << "RegStrings[];\n";
1624 OS << "extern const char " << TargetName << "RegClassStrings[];\n";
1625 OS << "extern const MCPhysReg " << TargetName << "RegUnitRoots[][2];\n";
1626 OS << "extern const uint16_t " << TargetName << "SubRegIdxLists[];\n";
1627 OS << "extern const uint16_t " << TargetName << "RegEncodingTable[];\n";
1635 << " : TargetRegisterInfo(&" << TargetName << "RegInfoDesc"
1642 << " InitMCRegisterInfo(" << TargetName << "RegDesc, " << Regs.size() + 1
1643 << ", RA, PC,\n " << TargetName
1645 << " " << TargetName << "RegUnitRoots,\n"
1647 << " " << TargetName << "RegDiffLists,\n"
1648 << " " << TargetName << "LaneMaskLists,\n"
1649 << " " << TargetName << "RegStrings,\n"
1650 << " " << TargetName << "RegClassStrings,\n"
1651 << " " << TargetName << "SubRegIdxLists,\n"
1653 << " " << TargetName << "RegEncodingTable);\n\n";
1791 OS << "const " << TargetName << "FrameLowering *\n"
1792 << TargetName
1794 << " return static_cast<const " << TargetName << "FrameLowering *>(\n"