mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Delete mips64 target machine classes. mips target machines can be used in place
of them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161080 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1d53f1bbab
commit
b4f921b1f0
@ -22,8 +22,8 @@ extern "C" void LLVMInitializeMipsTarget() {
|
||||
// Register the target.
|
||||
RegisterTargetMachine<MipsebTargetMachine> X(TheMipsTarget);
|
||||
RegisterTargetMachine<MipselTargetMachine> Y(TheMipselTarget);
|
||||
RegisterTargetMachine<Mips64ebTargetMachine> A(TheMips64Target);
|
||||
RegisterTargetMachine<Mips64elTargetMachine> B(TheMips64elTarget);
|
||||
RegisterTargetMachine<MipsebTargetMachine> A(TheMips64Target);
|
||||
RegisterTargetMachine<MipselTargetMachine> B(TheMips64elTarget);
|
||||
}
|
||||
|
||||
// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
|
||||
@ -71,24 +71,6 @@ MipselTargetMachine(const Target &T, StringRef TT,
|
||||
CodeGenOpt::Level OL)
|
||||
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
|
||||
|
||||
void Mips64ebTargetMachine::anchor() { }
|
||||
|
||||
Mips64ebTargetMachine::
|
||||
Mips64ebTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
|
||||
|
||||
void Mips64elTargetMachine::anchor() { }
|
||||
|
||||
Mips64elTargetMachine::
|
||||
Mips64elTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
|
||||
|
||||
namespace {
|
||||
/// Mips Code Generator Pass Configuration Options.
|
||||
class MipsPassConfig : public TargetPassConfig {
|
||||
|
@ -27,52 +27,51 @@
|
||||
namespace llvm {
|
||||
class formatted_raw_ostream;
|
||||
|
||||
class MipsTargetMachine : public LLVMTargetMachine {
|
||||
MipsSubtarget Subtarget;
|
||||
const TargetData DataLayout; // Calculates type size & alignment
|
||||
MipsInstrInfo InstrInfo;
|
||||
MipsFrameLowering FrameLowering;
|
||||
MipsTargetLowering TLInfo;
|
||||
MipsSelectionDAGInfo TSInfo;
|
||||
MipsJITInfo JITInfo;
|
||||
class MipsTargetMachine : public LLVMTargetMachine {
|
||||
MipsSubtarget Subtarget;
|
||||
const TargetData DataLayout; // Calculates type size & alignment
|
||||
MipsInstrInfo InstrInfo;
|
||||
MipsFrameLowering FrameLowering;
|
||||
MipsTargetLowering TLInfo;
|
||||
MipsSelectionDAGInfo TSInfo;
|
||||
MipsJITInfo JITInfo;
|
||||
|
||||
public:
|
||||
MipsTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL,
|
||||
bool isLittle);
|
||||
public:
|
||||
MipsTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL,
|
||||
bool isLittle);
|
||||
|
||||
virtual const MipsInstrInfo *getInstrInfo() const
|
||||
{ return &InstrInfo; }
|
||||
virtual const TargetFrameLowering *getFrameLowering() const
|
||||
{ return &FrameLowering; }
|
||||
virtual const MipsSubtarget *getSubtargetImpl() const
|
||||
{ return &Subtarget; }
|
||||
virtual const TargetData *getTargetData() const
|
||||
{ return &DataLayout;}
|
||||
virtual MipsJITInfo *getJITInfo()
|
||||
{ return &JITInfo; }
|
||||
virtual const MipsInstrInfo *getInstrInfo() const
|
||||
{ return &InstrInfo; }
|
||||
virtual const TargetFrameLowering *getFrameLowering() const
|
||||
{ return &FrameLowering; }
|
||||
virtual const MipsSubtarget *getSubtargetImpl() const
|
||||
{ return &Subtarget; }
|
||||
virtual const TargetData *getTargetData() const
|
||||
{ return &DataLayout;}
|
||||
virtual MipsJITInfo *getJITInfo()
|
||||
{ return &JITInfo; }
|
||||
|
||||
virtual const MipsRegisterInfo *getRegisterInfo() const {
|
||||
return &InstrInfo.getRegisterInfo();
|
||||
}
|
||||
|
||||
virtual const MipsRegisterInfo *getRegisterInfo() const {
|
||||
return &InstrInfo.getRegisterInfo();
|
||||
}
|
||||
virtual const MipsTargetLowering *getTargetLowering() const {
|
||||
return &TLInfo;
|
||||
}
|
||||
|
||||
virtual const MipsTargetLowering *getTargetLowering() const {
|
||||
return &TLInfo;
|
||||
}
|
||||
virtual const MipsSelectionDAGInfo* getSelectionDAGInfo() const {
|
||||
return &TSInfo;
|
||||
}
|
||||
|
||||
virtual const MipsSelectionDAGInfo* getSelectionDAGInfo() const {
|
||||
return &TSInfo;
|
||||
}
|
||||
// Pass Pipeline Configuration
|
||||
virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
|
||||
virtual bool addCodeEmitter(PassManagerBase &PM, JITCodeEmitter &JCE);
|
||||
};
|
||||
|
||||
// Pass Pipeline Configuration
|
||||
virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
|
||||
virtual bool addCodeEmitter(PassManagerBase &PM, JITCodeEmitter &JCE);
|
||||
};
|
||||
|
||||
/// MipsebTargetMachine - Mips32 big endian target machine.
|
||||
/// MipsebTargetMachine - Mips32/64 big endian target machine.
|
||||
///
|
||||
class MipsebTargetMachine : public MipsTargetMachine {
|
||||
virtual void anchor();
|
||||
@ -83,7 +82,7 @@ public:
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
|
||||
/// MipselTargetMachine - Mips32 little endian target machine.
|
||||
/// MipselTargetMachine - Mips32/64 little endian target machine.
|
||||
///
|
||||
class MipselTargetMachine : public MipsTargetMachine {
|
||||
virtual void anchor();
|
||||
@ -94,29 +93,6 @@ public:
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
|
||||
/// Mips64ebTargetMachine - Mips64 big endian target machine.
|
||||
///
|
||||
class Mips64ebTargetMachine : public MipsTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
Mips64ebTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
|
||||
/// Mips64elTargetMachine - Mips64 little endian target machine.
|
||||
///
|
||||
class Mips64elTargetMachine : public MipsTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
Mips64elTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
} // End llvm namespace
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user