mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
[Targets] Don't automatically include the scheduler class enum from *GenInstrInfo.inc with GET_INSTRINFO_ENUM. Make targets request is separately.
Most of the targets don't need the scheduler class enum. I have an X86 scheduler model change that causes some names in the enum to become about 18000 characters long. This is because using instregex in scheduler models causes the scheduler class to get named with every instruction that matches the regex concatenated together. MSVC has a limit of 4096 characters for an identifier name. Rather than trying to come up with way to reduce the name length, I'm just going to sidestep the problem by not including the enum in X86. llvm-svn: 320552
This commit is contained in:
parent
3531d1e0a1
commit
8271064545
@ -60,7 +60,9 @@ createAMDGPUELFObjectWriter(bool Is64Bit, uint8_t OSABI,
|
||||
|
||||
#define GET_INSTRINFO_ENUM
|
||||
#define GET_INSTRINFO_OPERAND_ENUM
|
||||
#define GET_INSTRINFO_SCHED_ENUM
|
||||
#include "AMDGPUGenInstrInfo.inc"
|
||||
#undef GET_INSTRINFO_SCHED_ENUM
|
||||
#undef GET_INSTRINFO_OPERAND_ENUM
|
||||
#undef GET_INSTRINFO_ENUM
|
||||
|
||||
|
@ -82,6 +82,7 @@ unsigned HexagonGetLastSlot();
|
||||
// Defines symbolic names for the Hexagon instructions.
|
||||
//
|
||||
#define GET_INSTRINFO_ENUM
|
||||
#define GET_INSTRINFO_SCHED_ENUM
|
||||
#include "HexagonGenInstrInfo.inc"
|
||||
|
||||
#define GET_SUBTARGETINFO_ENUM
|
||||
|
@ -101,6 +101,7 @@ static inline bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
|
||||
// Defines symbolic names for the PowerPC instructions.
|
||||
//
|
||||
#define GET_INSTRINFO_ENUM
|
||||
#define GET_INSTRINFO_SCHED_ENUM
|
||||
#include "PPCGenInstrInfo.inc"
|
||||
|
||||
#define GET_SUBTARGETINFO_ENUM
|
||||
|
@ -588,6 +588,14 @@ void InstrInfoEmitter::emitEnums(raw_ostream &OS) {
|
||||
OS << " " << Inst->TheDef->getName() << "\t= " << Num++ << ",\n";
|
||||
OS << " INSTRUCTION_LIST_END = " << Num << "\n";
|
||||
OS << " };\n\n";
|
||||
OS << "} // end " << Namespace << " namespace\n";
|
||||
OS << "} // end llvm namespace\n";
|
||||
OS << "#endif // GET_INSTRINFO_ENUM\n\n";
|
||||
|
||||
OS << "#ifdef GET_INSTRINFO_SCHED_ENUM\n";
|
||||
OS << "#undef GET_INSTRINFO_SCHED_ENUM\n";
|
||||
OS << "namespace llvm {\n\n";
|
||||
OS << "namespace " << Namespace << " {\n";
|
||||
OS << "namespace Sched {\n";
|
||||
OS << " enum {\n";
|
||||
Num = 0;
|
||||
@ -599,7 +607,7 @@ void InstrInfoEmitter::emitEnums(raw_ostream &OS) {
|
||||
OS << "} // end " << Namespace << " namespace\n";
|
||||
OS << "} // end llvm namespace\n";
|
||||
|
||||
OS << "#endif // GET_INSTRINFO_ENUM\n\n";
|
||||
OS << "#endif // GET_INSTRINFO_SCHED_ENUM\n\n";
|
||||
}
|
||||
|
||||
namespace llvm {
|
||||
|
Loading…
Reference in New Issue
Block a user