forked from OSchip/llvm-project
- Move CodeModel from a TargetMachine global option to MCCodeGenInfo.
- Introduce JITDefault code model. This tells targets to set different default code model for JIT. This eliminates the ugly hack in TargetMachine where code model is changed after construction. llvm-svn: 135580
This commit is contained in:
parent
d2b92d6544
commit
efd9b4240f
|
@ -480,7 +480,7 @@ private:
|
||||||
JMM = NULL;
|
JMM = NULL;
|
||||||
AllocateGVsWithCode = false;
|
AllocateGVsWithCode = false;
|
||||||
RelocModel = Reloc::Default;
|
RelocModel = Reloc::Default;
|
||||||
CMModel = CodeModel::Default;
|
CMModel = CodeModel::JITDefault;
|
||||||
UseMCJIT = false;
|
UseMCJIT = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -529,7 +529,8 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// setCodeModel - Set the CodeModel that the ExecutionEngine target
|
/// setCodeModel - Set the CodeModel that the ExecutionEngine target
|
||||||
/// data is using. Defaults to target specific default "CodeModel::Default".
|
/// data is using. Defaults to target specific default
|
||||||
|
/// "CodeModel::JITDefault".
|
||||||
EngineBuilder &setCodeModel(CodeModel::Model M) {
|
EngineBuilder &setCodeModel(CodeModel::Model M) {
|
||||||
CMModel = M;
|
CMModel = M;
|
||||||
return *this;
|
return *this;
|
||||||
|
@ -581,6 +582,7 @@ public:
|
||||||
StringRef MCPU,
|
StringRef MCPU,
|
||||||
const SmallVectorImpl<std::string>& MAttrs,
|
const SmallVectorImpl<std::string>& MAttrs,
|
||||||
Reloc::Model RM,
|
Reloc::Model RM,
|
||||||
|
CodeModel::Model CM,
|
||||||
std::string *Err);
|
std::string *Err);
|
||||||
|
|
||||||
ExecutionEngine *create();
|
ExecutionEngine *create();
|
||||||
|
|
|
@ -16,20 +16,33 @@
|
||||||
#define LLVM_MC_MCCODEGENINFO_H
|
#define LLVM_MC_MCCODEGENINFO_H
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
// Relocation model types.
|
// Relocation model types.
|
||||||
namespace Reloc {
|
namespace Reloc {
|
||||||
enum Model { Default, Static, PIC_, DynamicNoPIC };
|
enum Model { Default, Static, PIC_, DynamicNoPIC };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Code model types.
|
||||||
|
namespace CodeModel {
|
||||||
|
enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
|
||||||
|
}
|
||||||
|
|
||||||
class MCCodeGenInfo {
|
class MCCodeGenInfo {
|
||||||
/// RelocationModel - Relocation model: statcic, pic, etc.
|
/// RelocationModel - Relocation model: statcic, pic, etc.
|
||||||
///
|
///
|
||||||
Reloc::Model RelocationModel;
|
Reloc::Model RelocationModel;
|
||||||
|
|
||||||
|
/// CMModel - Code model.
|
||||||
|
///
|
||||||
|
CodeModel::Model CMModel;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void InitMCCodeGenInfo(Reloc::Model RM = Reloc::Default);
|
void InitMCCodeGenInfo(Reloc::Model RM = Reloc::Default,
|
||||||
|
CodeModel::Model CM = CodeModel::Default);
|
||||||
|
|
||||||
Reloc::Model getRelocationModel() const { return RelocationModel; }
|
Reloc::Model getRelocationModel() const { return RelocationModel; }
|
||||||
|
|
||||||
|
CodeModel::Model getCodeModel() const { return CMModel; }
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
} // namespace llvm
|
||||||
|
|
||||||
|
|
|
@ -43,17 +43,6 @@ class TargetSubtargetInfo;
|
||||||
class formatted_raw_ostream;
|
class formatted_raw_ostream;
|
||||||
class raw_ostream;
|
class raw_ostream;
|
||||||
|
|
||||||
// Code model types.
|
|
||||||
namespace CodeModel {
|
|
||||||
enum Model {
|
|
||||||
Default,
|
|
||||||
Small,
|
|
||||||
Kernel,
|
|
||||||
Medium,
|
|
||||||
Large
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// Code generation optimization level.
|
// Code generation optimization level.
|
||||||
namespace CodeGenOpt {
|
namespace CodeGenOpt {
|
||||||
enum Level {
|
enum Level {
|
||||||
|
@ -101,7 +90,6 @@ protected: // Can only create subclasses.
|
||||||
std::string TargetFS;
|
std::string TargetFS;
|
||||||
|
|
||||||
/// CodeGenInfo - Low level target information such as relocation model.
|
/// CodeGenInfo - Low level target information such as relocation model.
|
||||||
///
|
|
||||||
const MCCodeGenInfo *CodeGenInfo;
|
const MCCodeGenInfo *CodeGenInfo;
|
||||||
|
|
||||||
/// AsmInfo - Contains target specific asm information.
|
/// AsmInfo - Contains target specific asm information.
|
||||||
|
@ -214,11 +202,7 @@ public:
|
||||||
|
|
||||||
/// getCodeModel - Returns the code model. The choices are small, kernel,
|
/// getCodeModel - Returns the code model. The choices are small, kernel,
|
||||||
/// medium, large, and target default.
|
/// medium, large, and target default.
|
||||||
static CodeModel::Model getCodeModel();
|
CodeModel::Model getCodeModel() const;
|
||||||
|
|
||||||
/// setCodeModel - Sets the code model.
|
|
||||||
///
|
|
||||||
static void setCodeModel(CodeModel::Model Model);
|
|
||||||
|
|
||||||
/// getAsmVerbosityDefault - Returns the default value of asm verbosity.
|
/// getAsmVerbosityDefault - Returns the default value of asm verbosity.
|
||||||
///
|
///
|
||||||
|
@ -301,7 +285,8 @@ public:
|
||||||
class LLVMTargetMachine : public TargetMachine {
|
class LLVMTargetMachine : public TargetMachine {
|
||||||
protected: // Can only create subclasses.
|
protected: // Can only create subclasses.
|
||||||
LLVMTargetMachine(const Target &T, StringRef TargetTriple,
|
LLVMTargetMachine(const Target &T, StringRef TargetTriple,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// addCommonCodeGenPasses - Add standard LLVM codegen passes used for
|
/// addCommonCodeGenPasses - Add standard LLVM codegen passes used for
|
||||||
|
@ -310,9 +295,6 @@ private:
|
||||||
bool addCommonCodeGenPasses(PassManagerBase &, CodeGenOpt::Level,
|
bool addCommonCodeGenPasses(PassManagerBase &, CodeGenOpt::Level,
|
||||||
bool DisableVerify, MCContext *&OutCtx);
|
bool DisableVerify, MCContext *&OutCtx);
|
||||||
|
|
||||||
virtual void setCodeModelForJIT();
|
|
||||||
virtual void setCodeModelForStatic();
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/// addPassesToEmitFile - Add passes to the specified pass manager to get the
|
/// addPassesToEmitFile - Add passes to the specified pass manager to get the
|
||||||
/// specified file emitted. Typically this will involve several steps of code
|
/// specified file emitted. Typically this will involve several steps of code
|
||||||
|
|
|
@ -70,7 +70,9 @@ namespace llvm {
|
||||||
|
|
||||||
typedef MCAsmInfo *(*MCAsmInfoCtorFnTy)(const Target &T,
|
typedef MCAsmInfo *(*MCAsmInfoCtorFnTy)(const Target &T,
|
||||||
StringRef TT);
|
StringRef TT);
|
||||||
typedef MCCodeGenInfo *(*MCCodeGenInfoCtorFnTy)(StringRef TT, Reloc::Model M);
|
typedef MCCodeGenInfo *(*MCCodeGenInfoCtorFnTy)(StringRef TT,
|
||||||
|
Reloc::Model RM,
|
||||||
|
CodeModel::Model CM);
|
||||||
typedef MCInstrInfo *(*MCInstrInfoCtorFnTy)(void);
|
typedef MCInstrInfo *(*MCInstrInfoCtorFnTy)(void);
|
||||||
typedef MCRegisterInfo *(*MCRegInfoCtorFnTy)(StringRef TT);
|
typedef MCRegisterInfo *(*MCRegInfoCtorFnTy)(StringRef TT);
|
||||||
typedef MCSubtargetInfo *(*MCSubtargetInfoCtorFnTy)(StringRef TT,
|
typedef MCSubtargetInfo *(*MCSubtargetInfoCtorFnTy)(StringRef TT,
|
||||||
|
@ -80,7 +82,8 @@ namespace llvm {
|
||||||
StringRef TT,
|
StringRef TT,
|
||||||
StringRef CPU,
|
StringRef CPU,
|
||||||
StringRef Features,
|
StringRef Features,
|
||||||
Reloc::Model RM);
|
Reloc::Model RM,
|
||||||
|
CodeModel::Model CM);
|
||||||
typedef AsmPrinter *(*AsmPrinterCtorTy)(TargetMachine &TM,
|
typedef AsmPrinter *(*AsmPrinterCtorTy)(TargetMachine &TM,
|
||||||
MCStreamer &Streamer);
|
MCStreamer &Streamer);
|
||||||
typedef TargetAsmBackend *(*AsmBackendCtorTy)(const Target &T,
|
typedef TargetAsmBackend *(*AsmBackendCtorTy)(const Target &T,
|
||||||
|
@ -263,10 +266,11 @@ namespace llvm {
|
||||||
|
|
||||||
/// createMCCodeGenInfo - Create a MCCodeGenInfo implementation.
|
/// createMCCodeGenInfo - Create a MCCodeGenInfo implementation.
|
||||||
///
|
///
|
||||||
MCCodeGenInfo *createMCCodeGenInfo(StringRef Triple, Reloc::Model M) const {
|
MCCodeGenInfo *createMCCodeGenInfo(StringRef Triple, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) const {
|
||||||
if (!MCCodeGenInfoCtorFn)
|
if (!MCCodeGenInfoCtorFn)
|
||||||
return 0;
|
return 0;
|
||||||
return MCCodeGenInfoCtorFn(Triple, M);
|
return MCCodeGenInfoCtorFn(Triple, RM, CM);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// createMCInstrInfo - Create a MCInstrInfo implementation.
|
/// createMCInstrInfo - Create a MCInstrInfo implementation.
|
||||||
|
@ -310,10 +314,11 @@ namespace llvm {
|
||||||
/// host if that does not exist.
|
/// host if that does not exist.
|
||||||
TargetMachine *createTargetMachine(StringRef Triple, StringRef CPU,
|
TargetMachine *createTargetMachine(StringRef Triple, StringRef CPU,
|
||||||
StringRef Features,
|
StringRef Features,
|
||||||
Reloc::Model RM = Reloc::Default) const {
|
Reloc::Model RM = Reloc::Default,
|
||||||
|
CodeModel::Model CM = CodeModel::Default) const {
|
||||||
if (!TargetMachineCtorFn)
|
if (!TargetMachineCtorFn)
|
||||||
return 0;
|
return 0;
|
||||||
return TargetMachineCtorFn(*this, Triple, CPU, Features, RM);
|
return TargetMachineCtorFn(*this, Triple, CPU, Features, RM, CM);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// createAsmBackend - Create a target specific assembly parser.
|
/// createAsmBackend - Create a target specific assembly parser.
|
||||||
|
@ -802,7 +807,8 @@ namespace llvm {
|
||||||
TargetRegistry::RegisterMCCodeGenInfo(T, &Allocator);
|
TargetRegistry::RegisterMCCodeGenInfo(T, &Allocator);
|
||||||
}
|
}
|
||||||
private:
|
private:
|
||||||
static MCCodeGenInfo *Allocator(StringRef TT, Reloc::Model M) {
|
static MCCodeGenInfo *Allocator(StringRef TT,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM) {
|
||||||
return new MCCodeGenInfoImpl();
|
return new MCCodeGenInfoImpl();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -938,8 +944,9 @@ namespace llvm {
|
||||||
private:
|
private:
|
||||||
static TargetMachine *Allocator(const Target &T, StringRef TT,
|
static TargetMachine *Allocator(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM) {
|
Reloc::Model RM,
|
||||||
return new TargetMachineImpl(T, TT, CPU, FS, RM);
|
CodeModel::Model CM) {
|
||||||
|
return new TargetMachineImpl(T, TT, CPU, FS, RM, CM);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -105,23 +105,12 @@ EnableFastISelOption("fast-isel", cl::Hidden,
|
||||||
|
|
||||||
LLVMTargetMachine::LLVMTargetMachine(const Target &T, StringRef Triple,
|
LLVMTargetMachine::LLVMTargetMachine(const Target &T, StringRef Triple,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: TargetMachine(T, Triple, CPU, FS) {
|
: TargetMachine(T, Triple, CPU, FS) {
|
||||||
CodeGenInfo = T.createMCCodeGenInfo(Triple, RM);
|
CodeGenInfo = T.createMCCodeGenInfo(Triple, RM, CM);
|
||||||
AsmInfo = T.createMCAsmInfo(Triple);
|
AsmInfo = T.createMCAsmInfo(Triple);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the default code model for the JIT for a generic target.
|
|
||||||
// FIXME: Is small right here? or .is64Bit() ? Large : Small?
|
|
||||||
void LLVMTargetMachine::setCodeModelForJIT() {
|
|
||||||
setCodeModel(CodeModel::Small);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set the default code model for static compilation for a generic target.
|
|
||||||
void LLVMTargetMachine::setCodeModelForStatic() {
|
|
||||||
setCodeModel(CodeModel::Small);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
|
bool LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
|
||||||
formatted_raw_ostream &Out,
|
formatted_raw_ostream &Out,
|
||||||
CodeGenFileType FileType,
|
CodeGenFileType FileType,
|
||||||
|
@ -201,8 +190,6 @@ bool LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
|
||||||
|
|
||||||
PM.add(Printer);
|
PM.add(Printer);
|
||||||
|
|
||||||
// Make sure the code model is set.
|
|
||||||
setCodeModelForStatic();
|
|
||||||
PM.add(createGCInfoDeleter());
|
PM.add(createGCInfoDeleter());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -217,9 +204,6 @@ bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
|
||||||
JITCodeEmitter &JCE,
|
JITCodeEmitter &JCE,
|
||||||
CodeGenOpt::Level OptLevel,
|
CodeGenOpt::Level OptLevel,
|
||||||
bool DisableVerify) {
|
bool DisableVerify) {
|
||||||
// Make sure the code model is set.
|
|
||||||
setCodeModelForJIT();
|
|
||||||
|
|
||||||
// Add common CodeGen passes.
|
// Add common CodeGen passes.
|
||||||
MCContext *Ctx = 0;
|
MCContext *Ctx = 0;
|
||||||
if (addCommonCodeGenPasses(PM, OptLevel, DisableVerify, Ctx))
|
if (addCommonCodeGenPasses(PM, OptLevel, DisableVerify, Ctx))
|
||||||
|
@ -273,9 +257,6 @@ bool LLVMTargetMachine::addPassesToEmitMC(PassManagerBase &PM,
|
||||||
|
|
||||||
PM.add(Printer);
|
PM.add(Printer);
|
||||||
|
|
||||||
// Make sure the code model is set.
|
|
||||||
setCodeModelForJIT();
|
|
||||||
|
|
||||||
return false; // success!
|
return false; // success!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -437,9 +437,8 @@ ExecutionEngine *ExecutionEngine::createJIT(Module *M,
|
||||||
SmallVector<std::string, 1> MAttrs;
|
SmallVector<std::string, 1> MAttrs;
|
||||||
|
|
||||||
TargetMachine *TM =
|
TargetMachine *TM =
|
||||||
EngineBuilder::selectTarget(M, MArch, MCPU, MAttrs, RM, ErrorStr);
|
EngineBuilder::selectTarget(M, MArch, MCPU, MAttrs, RM, CMM, ErrorStr);
|
||||||
if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0;
|
if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0;
|
||||||
TM->setCodeModel(CMM);
|
|
||||||
|
|
||||||
return ExecutionEngine::JITCtor(M, ErrorStr, JMM, OptLevel, GVsWithCode, TM);
|
return ExecutionEngine::JITCtor(M, ErrorStr, JMM, OptLevel, GVsWithCode, TM);
|
||||||
}
|
}
|
||||||
|
@ -467,9 +466,8 @@ ExecutionEngine *EngineBuilder::create() {
|
||||||
// try making a JIT.
|
// try making a JIT.
|
||||||
if (WhichEngine & EngineKind::JIT) {
|
if (WhichEngine & EngineKind::JIT) {
|
||||||
if (TargetMachine *TM = EngineBuilder::selectTarget(M, MArch, MCPU, MAttrs,
|
if (TargetMachine *TM = EngineBuilder::selectTarget(M, MArch, MCPU, MAttrs,
|
||||||
RelocModel, ErrorStr)) {
|
RelocModel, CMModel,
|
||||||
TM->setCodeModel(CMModel);
|
ErrorStr)) {
|
||||||
|
|
||||||
if (UseMCJIT && ExecutionEngine::MCJITCtor) {
|
if (UseMCJIT && ExecutionEngine::MCJITCtor) {
|
||||||
ExecutionEngine *EE =
|
ExecutionEngine *EE =
|
||||||
ExecutionEngine::MCJITCtor(M, ErrorStr, JMM, OptLevel,
|
ExecutionEngine::MCJITCtor(M, ErrorStr, JMM, OptLevel,
|
||||||
|
|
|
@ -101,7 +101,7 @@ public:
|
||||||
CodeGenOpt::Default,
|
CodeGenOpt::Default,
|
||||||
bool GVsWithCode = true,
|
bool GVsWithCode = true,
|
||||||
Reloc::Model RM = Reloc::Default,
|
Reloc::Model RM = Reloc::Default,
|
||||||
CodeModel::Model CMM = CodeModel::Default) {
|
CodeModel::Model CMM = CodeModel::JITDefault) {
|
||||||
return ExecutionEngine::createJIT(M, Err, JMM, OptLevel, GVsWithCode,
|
return ExecutionEngine::createJIT(M, Err, JMM, OptLevel, GVsWithCode,
|
||||||
RM, CMM);
|
RM, CMM);
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,7 @@ TargetMachine *EngineBuilder::selectTarget(Module *Mod,
|
||||||
StringRef MCPU,
|
StringRef MCPU,
|
||||||
const SmallVectorImpl<std::string>& MAttrs,
|
const SmallVectorImpl<std::string>& MAttrs,
|
||||||
Reloc::Model RM,
|
Reloc::Model RM,
|
||||||
|
CodeModel::Model CM,
|
||||||
std::string *ErrorStr) {
|
std::string *ErrorStr) {
|
||||||
Triple TheTriple(Mod->getTargetTriple());
|
Triple TheTriple(Mod->getTargetTriple());
|
||||||
if (TheTriple.getTriple().empty())
|
if (TheTriple.getTriple().empty())
|
||||||
|
@ -85,7 +86,8 @@ TargetMachine *EngineBuilder::selectTarget(Module *Mod,
|
||||||
|
|
||||||
// Allocate a target...
|
// Allocate a target...
|
||||||
TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
|
TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
|
||||||
MCPU, FeaturesStr, RM);
|
MCPU, FeaturesStr,
|
||||||
|
RM, CM);
|
||||||
assert(Target && "Could not allocate target machine!");
|
assert(Target && "Could not allocate target machine!");
|
||||||
return Target;
|
return Target;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
#include "llvm/MC/MCCodeGenInfo.h"
|
#include "llvm/MC/MCCodeGenInfo.h"
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
void MCCodeGenInfo::InitMCCodeGenInfo(Reloc::Model RM) {
|
void MCCodeGenInfo::InitMCCodeGenInfo(Reloc::Model RM, CodeModel::Model CM) {
|
||||||
RelocationModel = RM;
|
RelocationModel = RM;
|
||||||
|
CMModel = CM;
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,8 +64,8 @@ extern "C" void LLVMInitializeARMTarget() {
|
||||||
///
|
///
|
||||||
ARMBaseTargetMachine::ARMBaseTargetMachine(const Target &T, StringRef TT,
|
ARMBaseTargetMachine::ARMBaseTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
Subtarget(TT, CPU, FS),
|
Subtarget(TT, CPU, FS),
|
||||||
JITInfo(),
|
JITInfo(),
|
||||||
InstrItins(Subtarget.getInstrItineraryData()) {
|
InstrItins(Subtarget.getInstrItineraryData()) {
|
||||||
|
@ -76,8 +76,8 @@ ARMBaseTargetMachine::ARMBaseTargetMachine(const Target &T, StringRef TT,
|
||||||
|
|
||||||
ARMTargetMachine::ARMTargetMachine(const Target &T, StringRef TT,
|
ARMTargetMachine::ARMTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: ARMBaseTargetMachine(T, TT, CPU, FS, RM), InstrInfo(Subtarget),
|
: ARMBaseTargetMachine(T, TT, CPU, FS, RM, CM), InstrInfo(Subtarget),
|
||||||
DataLayout(Subtarget.isAPCS_ABI() ?
|
DataLayout(Subtarget.isAPCS_ABI() ?
|
||||||
std::string("e-p:32:32-f64:32:64-i64:32:64-"
|
std::string("e-p:32:32-f64:32:64-i64:32:64-"
|
||||||
"v128:32:128-v64:32:64-n32") :
|
"v128:32:128-v64:32:64-n32") :
|
||||||
|
@ -94,8 +94,8 @@ ARMTargetMachine::ARMTargetMachine(const Target &T, StringRef TT,
|
||||||
|
|
||||||
ThumbTargetMachine::ThumbTargetMachine(const Target &T, StringRef TT,
|
ThumbTargetMachine::ThumbTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: ARMBaseTargetMachine(T, TT, CPU, FS, RM),
|
: ARMBaseTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
InstrInfo(Subtarget.hasThumb2()
|
InstrInfo(Subtarget.hasThumb2()
|
||||||
? ((ARMBaseInstrInfo*)new Thumb2InstrInfo(Subtarget))
|
? ((ARMBaseInstrInfo*)new Thumb2InstrInfo(Subtarget))
|
||||||
: ((ARMBaseInstrInfo*)new Thumb1InstrInfo(Subtarget))),
|
: ((ARMBaseInstrInfo*)new Thumb1InstrInfo(Subtarget))),
|
||||||
|
|
|
@ -40,7 +40,8 @@ private:
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ARMBaseTargetMachine(const Target &T, StringRef TT,
|
ARMBaseTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
virtual ARMJITInfo *getJITInfo() { return &JITInfo; }
|
virtual ARMJITInfo *getJITInfo() { return &JITInfo; }
|
||||||
virtual const ARMSubtarget *getSubtargetImpl() const { return &Subtarget; }
|
virtual const ARMSubtarget *getSubtargetImpl() const { return &Subtarget; }
|
||||||
|
@ -69,7 +70,8 @@ class ARMTargetMachine : public ARMBaseTargetMachine {
|
||||||
ARMFrameLowering FrameLowering;
|
ARMFrameLowering FrameLowering;
|
||||||
public:
|
public:
|
||||||
ARMTargetMachine(const Target &T, StringRef TT,
|
ARMTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
virtual const ARMRegisterInfo *getRegisterInfo() const {
|
virtual const ARMRegisterInfo *getRegisterInfo() const {
|
||||||
return &InstrInfo.getRegisterInfo();
|
return &InstrInfo.getRegisterInfo();
|
||||||
|
@ -108,7 +110,8 @@ class ThumbTargetMachine : public ARMBaseTargetMachine {
|
||||||
OwningPtr<ARMFrameLowering> FrameLowering;
|
OwningPtr<ARMFrameLowering> FrameLowering;
|
||||||
public:
|
public:
|
||||||
ThumbTargetMachine(const Target &T, StringRef TT,
|
ThumbTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
/// returns either Thumb1RegisterInfo or Thumb2RegisterInfo
|
/// returns either Thumb1RegisterInfo or Thumb2RegisterInfo
|
||||||
virtual const ARMBaseRegisterInfo *getRegisterInfo() const {
|
virtual const ARMBaseRegisterInfo *getRegisterInfo() const {
|
||||||
|
|
|
@ -143,11 +143,12 @@ extern "C" void LLVMInitializeARMMCAsmInfo() {
|
||||||
RegisterMCAsmInfoFn B(TheThumbTarget, createARMMCAsmInfo);
|
RegisterMCAsmInfoFn B(TheThumbTarget, createARMMCAsmInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createARMMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createARMMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
if (RM == Reloc::Default)
|
if (RM == Reloc::Default)
|
||||||
RM = Reloc::DynamicNoPIC;
|
RM = Reloc::DynamicNoPIC;
|
||||||
X->InitMCCodeGenInfo(RM);
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,9 +23,9 @@ extern "C" void LLVMInitializeAlphaTarget() {
|
||||||
}
|
}
|
||||||
|
|
||||||
AlphaTargetMachine::AlphaTargetMachine(const Target &T, StringRef TT,
|
AlphaTargetMachine::AlphaTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU,
|
StringRef CPU, StringRef FS,
|
||||||
StringRef FS, Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
DataLayout("e-f128:128:128-n64"),
|
DataLayout("e-f128:128:128-n64"),
|
||||||
FrameLowering(Subtarget),
|
FrameLowering(Subtarget),
|
||||||
Subtarget(TT, CPU, FS),
|
Subtarget(TT, CPU, FS),
|
||||||
|
|
|
@ -37,7 +37,8 @@ class AlphaTargetMachine : public LLVMTargetMachine {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
AlphaTargetMachine(const Target &T, StringRef TT,
|
AlphaTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
||||||
virtual const TargetFrameLowering *getFrameLowering() const {
|
virtual const TargetFrameLowering *getFrameLowering() const {
|
||||||
|
|
|
@ -66,9 +66,10 @@ extern "C" void LLVMInitializeAlphaMCAsmInfo() {
|
||||||
RegisterMCAsmInfo<AlphaMCAsmInfo> X(TheAlphaTarget);
|
RegisterMCAsmInfo<AlphaMCAsmInfo> X(TheAlphaTarget);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createAlphaMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createAlphaMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
X->InitMCCodeGenInfo(Reloc::PIC_);
|
X->InitMCCodeGenInfo(Reloc::PIC_, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,10 @@ extern "C" void LLVMInitializeBlackfinTarget() {
|
||||||
BlackfinTargetMachine::BlackfinTargetMachine(const Target &T,
|
BlackfinTargetMachine::BlackfinTargetMachine(const Target &T,
|
||||||
StringRef TT,
|
StringRef TT,
|
||||||
StringRef CPU,
|
StringRef CPU,
|
||||||
StringRef FS, Reloc::Model RM)
|
StringRef FS,
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
Reloc::Model RM,
|
||||||
|
CodeModel::Model CM)
|
||||||
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
DataLayout("e-p:32:32-i64:32-f64:32-n32"),
|
DataLayout("e-p:32:32-i64:32-f64:32-n32"),
|
||||||
Subtarget(TT, CPU, FS),
|
Subtarget(TT, CPU, FS),
|
||||||
TLInfo(*this),
|
TLInfo(*this),
|
||||||
|
|
|
@ -36,7 +36,8 @@ namespace llvm {
|
||||||
BlackfinIntrinsicInfo IntrinsicInfo;
|
BlackfinIntrinsicInfo IntrinsicInfo;
|
||||||
public:
|
public:
|
||||||
BlackfinTargetMachine(const Target &T, StringRef TT,
|
BlackfinTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
virtual const BlackfinInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
virtual const BlackfinInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
||||||
virtual const TargetFrameLowering *getFrameLowering() const {
|
virtual const TargetFrameLowering *getFrameLowering() const {
|
||||||
|
|
|
@ -69,9 +69,10 @@ extern "C" void LLVMInitializeBlackfinMCAsmInfo() {
|
||||||
RegisterMCAsmInfo<BlackfinMCAsmInfo> X(TheBlackfinTarget);
|
RegisterMCAsmInfo<BlackfinMCAsmInfo> X(TheBlackfinTarget);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createBlackfinMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createBlackfinMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
X->InitMCCodeGenInfo(RM);
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,8 @@ namespace llvm {
|
||||||
|
|
||||||
struct CTargetMachine : public TargetMachine {
|
struct CTargetMachine : public TargetMachine {
|
||||||
CTargetMachine(const Target &T, StringRef TT,
|
CTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM)
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: TargetMachine(T, TT, CPU, FS) {}
|
: TargetMachine(T, TT, CPU, FS) {}
|
||||||
|
|
||||||
virtual bool addPassesToEmitFile(PassManagerBase &PM,
|
virtual bool addPassesToEmitFile(PassManagerBase &PM,
|
||||||
|
|
|
@ -78,11 +78,12 @@ extern "C" void LLVMInitializeCellSPUMCAsmInfo() {
|
||||||
RegisterMCAsmInfoFn X(TheCellSPUTarget, createSPUMCAsmInfo);
|
RegisterMCAsmInfoFn X(TheCellSPUTarget, createSPUMCAsmInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createSPUMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createSPUMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
// For the time being, use static relocations, since there's really no
|
// For the time being, use static relocations, since there's really no
|
||||||
// support for PIC yet.
|
// support for PIC yet.
|
||||||
X->InitMCCodeGenInfo(Reloc::Static);
|
X->InitMCCodeGenInfo(Reloc::Static, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -32,8 +32,9 @@ SPUFrameLowering::getCalleeSaveSpillSlots(unsigned &NumEntries) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
SPUTargetMachine::SPUTargetMachine(const Target &T, StringRef TT,
|
SPUTargetMachine::SPUTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU,StringRef FS, Reloc::Model RM)
|
StringRef CPU, StringRef FS,
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
Subtarget(TT, CPU, FS),
|
Subtarget(TT, CPU, FS),
|
||||||
DataLayout(Subtarget.getTargetDataString()),
|
DataLayout(Subtarget.getTargetDataString()),
|
||||||
InstrInfo(*this),
|
InstrInfo(*this),
|
||||||
|
|
|
@ -39,7 +39,8 @@ class SPUTargetMachine : public LLVMTargetMachine {
|
||||||
InstrItineraryData InstrItins;
|
InstrItineraryData InstrItins;
|
||||||
public:
|
public:
|
||||||
SPUTargetMachine(const Target &T, StringRef TT,
|
SPUTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
/// Return the subtarget implementation object
|
/// Return the subtarget implementation object
|
||||||
virtual const SPUSubtarget *getSubtargetImpl() const {
|
virtual const SPUSubtarget *getSubtargetImpl() const {
|
||||||
|
|
|
@ -23,7 +23,8 @@ class formatted_raw_ostream;
|
||||||
|
|
||||||
struct CPPTargetMachine : public TargetMachine {
|
struct CPPTargetMachine : public TargetMachine {
|
||||||
CPPTargetMachine(const Target &T, StringRef TT,
|
CPPTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM)
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: TargetMachine(T, TT, CPU, FS) {}
|
: TargetMachine(T, TT, CPU, FS) {}
|
||||||
|
|
||||||
virtual bool addPassesToEmitFile(PassManagerBase &PM,
|
virtual bool addPassesToEmitFile(PassManagerBase &PM,
|
||||||
|
|
|
@ -68,16 +68,15 @@ extern "C" void LLVMInitializeMBlazeTarget() {
|
||||||
// an easier handling.
|
// an easier handling.
|
||||||
MBlazeTargetMachine::
|
MBlazeTargetMachine::
|
||||||
MBlazeTargetMachine(const Target &T, StringRef TT,
|
MBlazeTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM):
|
StringRef CPU, StringRef FS,
|
||||||
LLVMTargetMachine(T, TT, CPU, FS, RM),
|
Reloc::Model RM, CodeModel::Model CM):
|
||||||
|
LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
Subtarget(TT, CPU, FS),
|
Subtarget(TT, CPU, FS),
|
||||||
DataLayout("E-p:32:32:32-i8:8:8-i16:16:16"),
|
DataLayout("E-p:32:32:32-i8:8:8-i16:16:16"),
|
||||||
InstrInfo(*this),
|
InstrInfo(*this),
|
||||||
FrameLowering(Subtarget),
|
FrameLowering(Subtarget),
|
||||||
TLInfo(*this), TSInfo(*this), ELFWriterInfo(*this),
|
TLInfo(*this), TSInfo(*this), ELFWriterInfo(*this),
|
||||||
InstrItins(Subtarget.getInstrItineraryData()) {
|
InstrItins(Subtarget.getInstrItineraryData()) {
|
||||||
if (getCodeModel() == CodeModel::Default)
|
|
||||||
setCodeModel(CodeModel::Small);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Install an instruction selector pass using
|
// Install an instruction selector pass using
|
||||||
|
|
|
@ -42,7 +42,8 @@ namespace llvm {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
MBlazeTargetMachine(const Target &T, StringRef TT,
|
MBlazeTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
virtual const MBlazeInstrInfo *getInstrInfo() const
|
virtual const MBlazeInstrInfo *getInstrInfo() const
|
||||||
{ return &InstrInfo; }
|
{ return &InstrInfo; }
|
||||||
|
|
|
@ -75,11 +75,14 @@ extern "C" void LLVMInitializeMBlazeMCAsmInfo() {
|
||||||
RegisterMCAsmInfoFn X(TheMBlazeTarget, createMCAsmInfo);
|
RegisterMCAsmInfoFn X(TheMBlazeTarget, createMCAsmInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createMBlazeMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createMBlazeMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
if (RM == Reloc::Default)
|
if (RM == Reloc::Default)
|
||||||
RM = Reloc::Static;
|
RM = Reloc::Static;
|
||||||
X->InitMCCodeGenInfo(RM);
|
if (CM == CodeModel::Default)
|
||||||
|
CM = CodeModel::Small;
|
||||||
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -67,9 +67,10 @@ extern "C" void LLVMInitializeMSP430MCAsmInfo() {
|
||||||
RegisterMCAsmInfo<MSP430MCAsmInfo> X(TheMSP430Target);
|
RegisterMCAsmInfo<MSP430MCAsmInfo> X(TheMSP430Target);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createMSP430MCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createMSP430MCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
X->InitMCCodeGenInfo(RM);
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -27,8 +27,9 @@ extern "C" void LLVMInitializeMSP430Target() {
|
||||||
MSP430TargetMachine::MSP430TargetMachine(const Target &T,
|
MSP430TargetMachine::MSP430TargetMachine(const Target &T,
|
||||||
StringRef TT,
|
StringRef TT,
|
||||||
StringRef CPU,
|
StringRef CPU,
|
||||||
StringRef FS, Reloc::Model RM)
|
StringRef FS,
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
Subtarget(TT, CPU, FS),
|
Subtarget(TT, CPU, FS),
|
||||||
// FIXME: Check TargetData string.
|
// FIXME: Check TargetData string.
|
||||||
DataLayout("e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16"),
|
DataLayout("e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16"),
|
||||||
|
|
|
@ -39,7 +39,8 @@ class MSP430TargetMachine : public LLVMTargetMachine {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
MSP430TargetMachine(const Target &T, StringRef TT,
|
MSP430TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
virtual const TargetFrameLowering *getFrameLowering() const {
|
virtual const TargetFrameLowering *getFrameLowering() const {
|
||||||
return &FrameLowering;
|
return &FrameLowering;
|
||||||
|
|
|
@ -78,7 +78,8 @@ extern "C" void LLVMInitializeMipsMCAsmInfo() {
|
||||||
RegisterMCAsmInfoFn Y(TheMipselTarget, createMipsMCAsmInfo);
|
RegisterMCAsmInfoFn Y(TheMipselTarget, createMipsMCAsmInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createMipsMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createMipsMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
if (RM == Reloc::Default) {
|
if (RM == Reloc::Default) {
|
||||||
// Abicall enables PIC by default
|
// Abicall enables PIC by default
|
||||||
|
@ -88,7 +89,7 @@ MCCodeGenInfo *createMipsMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
||||||
else
|
else
|
||||||
RM = Reloc::PIC_;
|
RM = Reloc::PIC_;
|
||||||
}
|
}
|
||||||
X->InitMCCodeGenInfo(RM);
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -32,9 +32,10 @@ extern "C" void LLVMInitializeMipsTarget() {
|
||||||
// Using CodeModel::Large enables different CALL behavior.
|
// Using CodeModel::Large enables different CALL behavior.
|
||||||
MipsTargetMachine::
|
MipsTargetMachine::
|
||||||
MipsTargetMachine(const Target &T, StringRef TT,
|
MipsTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM,
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM,
|
||||||
bool isLittle=false):
|
bool isLittle=false):
|
||||||
LLVMTargetMachine(T, TT, CPU, FS, RM),
|
LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
Subtarget(TT, CPU, FS, isLittle),
|
Subtarget(TT, CPU, FS, isLittle),
|
||||||
DataLayout(isLittle ?
|
DataLayout(isLittle ?
|
||||||
std::string("e-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32") :
|
std::string("e-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32") :
|
||||||
|
@ -46,8 +47,9 @@ MipsTargetMachine(const Target &T, StringRef TT,
|
||||||
|
|
||||||
MipselTargetMachine::
|
MipselTargetMachine::
|
||||||
MipselTargetMachine(const Target &T, StringRef TT,
|
MipselTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM) :
|
StringRef CPU, StringRef FS,
|
||||||
MipsTargetMachine(T, TT, CPU, FS, RM, true) {}
|
Reloc::Model RM, CodeModel::Model CM) :
|
||||||
|
MipsTargetMachine(T, TT, CPU, FS, RM, CM, true) {}
|
||||||
|
|
||||||
// Install an instruction selector pass using
|
// Install an instruction selector pass using
|
||||||
// the ISelDag to gen Mips code.
|
// the ISelDag to gen Mips code.
|
||||||
|
|
|
@ -36,7 +36,8 @@ namespace llvm {
|
||||||
public:
|
public:
|
||||||
MipsTargetMachine(const Target &T, StringRef TT,
|
MipsTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM, bool isLittle);
|
Reloc::Model RM, CodeModel::Model CM,
|
||||||
|
bool isLittle);
|
||||||
|
|
||||||
virtual const MipsInstrInfo *getInstrInfo() const
|
virtual const MipsInstrInfo *getInstrInfo() const
|
||||||
{ return &InstrInfo; }
|
{ return &InstrInfo; }
|
||||||
|
@ -74,7 +75,8 @@ namespace llvm {
|
||||||
class MipselTargetMachine : public MipsTargetMachine {
|
class MipselTargetMachine : public MipsTargetMachine {
|
||||||
public:
|
public:
|
||||||
MipselTargetMachine(const Target &T, StringRef TT,
|
MipselTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // End llvm namespace
|
} // End llvm namespace
|
||||||
|
|
|
@ -71,9 +71,10 @@ extern "C" void LLVMInitializePTXMCAsmInfo() {
|
||||||
RegisterMCAsmInfo<PTXMCAsmInfo> Y(ThePTX64Target);
|
RegisterMCAsmInfo<PTXMCAsmInfo> Y(ThePTX64Target);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createPTXMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createPTXMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
X->InitMCCodeGenInfo(RM);
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,11 +47,10 @@ namespace {
|
||||||
|
|
||||||
// DataLayout and FrameLowering are filled with dummy data
|
// DataLayout and FrameLowering are filled with dummy data
|
||||||
PTXTargetMachine::PTXTargetMachine(const Target &T,
|
PTXTargetMachine::PTXTargetMachine(const Target &T,
|
||||||
StringRef TT,
|
StringRef TT, StringRef CPU, StringRef FS,
|
||||||
StringRef CPU,
|
Reloc::Model RM, CodeModel::Model CM,
|
||||||
StringRef FS,
|
bool is64Bit)
|
||||||
Reloc::Model RM, bool is64Bit)
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
|
||||||
DataLayout(is64Bit ? DataLayout64 : DataLayout32),
|
DataLayout(is64Bit ? DataLayout64 : DataLayout32),
|
||||||
Subtarget(TT, CPU, FS, is64Bit),
|
Subtarget(TT, CPU, FS, is64Bit),
|
||||||
FrameLowering(Subtarget),
|
FrameLowering(Subtarget),
|
||||||
|
@ -61,14 +60,14 @@ PTXTargetMachine::PTXTargetMachine(const Target &T,
|
||||||
|
|
||||||
PTX32TargetMachine::PTX32TargetMachine(const Target &T, StringRef TT,
|
PTX32TargetMachine::PTX32TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: PTXTargetMachine(T, TT, CPU, FS, RM, false) {
|
: PTXTargetMachine(T, TT, CPU, FS, RM, CM, false) {
|
||||||
}
|
}
|
||||||
|
|
||||||
PTX64TargetMachine::PTX64TargetMachine(const Target &T, StringRef TT,
|
PTX64TargetMachine::PTX64TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: PTXTargetMachine(T, TT, CPU, FS, RM, true) {
|
: PTXTargetMachine(T, TT, CPU, FS, RM, CM, true) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PTXTargetMachine::addInstSelector(PassManagerBase &PM,
|
bool PTXTargetMachine::addInstSelector(PassManagerBase &PM,
|
||||||
|
|
|
@ -33,7 +33,8 @@ class PTXTargetMachine : public LLVMTargetMachine {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
PTXTargetMachine(const Target &T, StringRef TT,
|
PTXTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM,
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM,
|
||||||
bool is64Bit);
|
bool is64Bit);
|
||||||
|
|
||||||
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
||||||
|
@ -62,14 +63,16 @@ class PTX32TargetMachine : public PTXTargetMachine {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
PTX32TargetMachine(const Target &T, StringRef TT,
|
PTX32TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
}; // class PTX32TargetMachine
|
}; // class PTX32TargetMachine
|
||||||
|
|
||||||
class PTX64TargetMachine : public PTXTargetMachine {
|
class PTX64TargetMachine : public PTXTargetMachine {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
PTX64TargetMachine(const Target &T, StringRef TT,
|
PTX64TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
}; // class PTX32TargetMachine
|
}; // class PTX32TargetMachine
|
||||||
|
|
||||||
} // namespace llvm
|
} // namespace llvm
|
||||||
|
|
|
@ -94,7 +94,8 @@ extern "C" void LLVMInitializePowerPCMCAsmInfo() {
|
||||||
RegisterMCAsmInfoFn D(ThePPC64Target, createPPCMCAsmInfo);
|
RegisterMCAsmInfoFn D(ThePPC64Target, createPPCMCAsmInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createPPCMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createPPCMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
|
|
||||||
if (RM == Reloc::Default) {
|
if (RM == Reloc::Default) {
|
||||||
|
@ -104,7 +105,7 @@ MCCodeGenInfo *createPPCMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
||||||
else
|
else
|
||||||
RM = Reloc::Static;
|
RM = Reloc::Static;
|
||||||
}
|
}
|
||||||
X->InitMCCodeGenInfo(RM);
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,8 +54,9 @@ extern "C" void LLVMInitializePowerPCTarget() {
|
||||||
|
|
||||||
PPCTargetMachine::PPCTargetMachine(const Target &T, StringRef TT,
|
PPCTargetMachine::PPCTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM, bool is64Bit)
|
Reloc::Model RM, CodeModel::Model CM,
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
bool is64Bit)
|
||||||
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
Subtarget(TT, CPU, FS, is64Bit),
|
Subtarget(TT, CPU, FS, is64Bit),
|
||||||
DataLayout(Subtarget.getTargetDataString()), InstrInfo(*this),
|
DataLayout(Subtarget.getTargetDataString()), InstrInfo(*this),
|
||||||
FrameLowering(Subtarget), JITInfo(*this, is64Bit),
|
FrameLowering(Subtarget), JITInfo(*this, is64Bit),
|
||||||
|
@ -68,16 +69,16 @@ PPCTargetMachine::PPCTargetMachine(const Target &T, StringRef TT,
|
||||||
bool PPCTargetMachine::getEnableTailMergeDefault() const { return false; }
|
bool PPCTargetMachine::getEnableTailMergeDefault() const { return false; }
|
||||||
|
|
||||||
PPC32TargetMachine::PPC32TargetMachine(const Target &T, StringRef TT,
|
PPC32TargetMachine::PPC32TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU,
|
StringRef CPU, StringRef FS,
|
||||||
StringRef FS, Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: PPCTargetMachine(T, TT, CPU, FS, RM, false) {
|
: PPCTargetMachine(T, TT, CPU, FS, RM, CM, false) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
PPC64TargetMachine::PPC64TargetMachine(const Target &T, StringRef TT,
|
PPC64TargetMachine::PPC64TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU,
|
StringRef CPU, StringRef FS,
|
||||||
StringRef FS, Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: PPCTargetMachine(T, TT, CPU, FS, RM, true) {
|
: PPCTargetMachine(T, TT, CPU, FS, RM, CM, true) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ class PPCTargetMachine : public LLVMTargetMachine {
|
||||||
public:
|
public:
|
||||||
PPCTargetMachine(const Target &T, StringRef TT,
|
PPCTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM, bool is64Bit);
|
Reloc::Model RM, CodeModel::Model CM, bool is64Bit);
|
||||||
|
|
||||||
virtual const PPCInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
virtual const PPCInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
||||||
virtual const PPCFrameLowering *getFrameLowering() const {
|
virtual const PPCFrameLowering *getFrameLowering() const {
|
||||||
|
@ -78,7 +78,8 @@ public:
|
||||||
class PPC32TargetMachine : public PPCTargetMachine {
|
class PPC32TargetMachine : public PPCTargetMachine {
|
||||||
public:
|
public:
|
||||||
PPC32TargetMachine(const Target &T, StringRef TT,
|
PPC32TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
};
|
};
|
||||||
|
|
||||||
/// PPC64TargetMachine - PowerPC 64-bit target machine.
|
/// PPC64TargetMachine - PowerPC 64-bit target machine.
|
||||||
|
@ -86,7 +87,8 @@ public:
|
||||||
class PPC64TargetMachine : public PPCTargetMachine {
|
class PPC64TargetMachine : public PPCTargetMachine {
|
||||||
public:
|
public:
|
||||||
PPC64TargetMachine(const Target &T, StringRef TT,
|
PPC64TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namespace llvm
|
} // end namespace llvm
|
||||||
|
|
|
@ -66,9 +66,10 @@ extern "C" void LLVMInitializeSparcMCAsmInfo() {
|
||||||
RegisterMCAsmInfo<SparcELFMCAsmInfo> Y(TheSparcV9Target);
|
RegisterMCAsmInfo<SparcELFMCAsmInfo> Y(TheSparcV9Target);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createSparcMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createSparcMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
X->InitMCCodeGenInfo(RM);
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,8 +26,9 @@ extern "C" void LLVMInitializeSparcTarget() {
|
||||||
///
|
///
|
||||||
SparcTargetMachine::SparcTargetMachine(const Target &T, StringRef TT,
|
SparcTargetMachine::SparcTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM, bool is64bit)
|
Reloc::Model RM, CodeModel::Model CM,
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
bool is64bit)
|
||||||
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
Subtarget(TT, CPU, FS, is64bit),
|
Subtarget(TT, CPU, FS, is64bit),
|
||||||
DataLayout(Subtarget.getDataLayout()),
|
DataLayout(Subtarget.getDataLayout()),
|
||||||
TLInfo(*this), TSInfo(*this), InstrInfo(Subtarget),
|
TLInfo(*this), TSInfo(*this), InstrInfo(Subtarget),
|
||||||
|
@ -51,15 +52,15 @@ bool SparcTargetMachine::addPreEmitPass(PassManagerBase &PM,
|
||||||
}
|
}
|
||||||
|
|
||||||
SparcV8TargetMachine::SparcV8TargetMachine(const Target &T,
|
SparcV8TargetMachine::SparcV8TargetMachine(const Target &T,
|
||||||
StringRef TT,
|
StringRef TT, StringRef CPU,
|
||||||
StringRef CPU,
|
StringRef FS, Reloc::Model RM,
|
||||||
StringRef FS, Reloc::Model RM)
|
CodeModel::Model CM)
|
||||||
: SparcTargetMachine(T, TT, CPU, FS, RM, false) {
|
: SparcTargetMachine(T, TT, CPU, FS, RM, CM, false) {
|
||||||
}
|
}
|
||||||
|
|
||||||
SparcV9TargetMachine::SparcV9TargetMachine(const Target &T,
|
SparcV9TargetMachine::SparcV9TargetMachine(const Target &T,
|
||||||
StringRef TT,
|
StringRef TT, StringRef CPU,
|
||||||
StringRef CPU,
|
StringRef FS, Reloc::Model RM,
|
||||||
StringRef FS, Reloc::Model RM)
|
CodeModel::Model CM)
|
||||||
: SparcTargetMachine(T, TT, CPU, FS, RM, true) {
|
: SparcTargetMachine(T, TT, CPU, FS, RM, CM, true) {
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,7 @@ class SparcTargetMachine : public LLVMTargetMachine {
|
||||||
public:
|
public:
|
||||||
SparcTargetMachine(const Target &T, StringRef TT,
|
SparcTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM, bool is64bit);
|
Reloc::Model RM, CodeModel::Model CM, bool is64bit);
|
||||||
|
|
||||||
virtual const SparcInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
virtual const SparcInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
||||||
virtual const TargetFrameLowering *getFrameLowering() const {
|
virtual const TargetFrameLowering *getFrameLowering() const {
|
||||||
|
@ -63,7 +63,8 @@ public:
|
||||||
class SparcV8TargetMachine : public SparcTargetMachine {
|
class SparcV8TargetMachine : public SparcTargetMachine {
|
||||||
public:
|
public:
|
||||||
SparcV8TargetMachine(const Target &T, StringRef TT,
|
SparcV8TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
};
|
};
|
||||||
|
|
||||||
/// SparcV9TargetMachine - Sparc 64-bit target machine
|
/// SparcV9TargetMachine - Sparc 64-bit target machine
|
||||||
|
@ -71,7 +72,8 @@ public:
|
||||||
class SparcV9TargetMachine : public SparcTargetMachine {
|
class SparcV9TargetMachine : public SparcTargetMachine {
|
||||||
public:
|
public:
|
||||||
SparcV9TargetMachine(const Target &T, StringRef TT,
|
SparcV9TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namespace llvm
|
} // end namespace llvm
|
||||||
|
|
|
@ -68,11 +68,12 @@ extern "C" void LLVMInitializeSystemZMCAsmInfo() {
|
||||||
RegisterMCAsmInfo<SystemZMCAsmInfo> X(TheSystemZTarget);
|
RegisterMCAsmInfo<SystemZMCAsmInfo> X(TheSystemZTarget);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createSystemZMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createSystemZMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
if (RM == Reloc::Default)
|
if (RM == Reloc::Default)
|
||||||
RM = Reloc::Static;
|
RM = Reloc::Static;
|
||||||
X->InitMCCodeGenInfo(RM);
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,10 +21,10 @@ extern "C" void LLVMInitializeSystemZTarget() {
|
||||||
/// SystemZTargetMachine ctor - Create an ILP64 architecture model
|
/// SystemZTargetMachine ctor - Create an ILP64 architecture model
|
||||||
///
|
///
|
||||||
SystemZTargetMachine::SystemZTargetMachine(const Target &T,
|
SystemZTargetMachine::SystemZTargetMachine(const Target &T,
|
||||||
StringRef TT,
|
StringRef TT, StringRef CPU,
|
||||||
StringRef CPU,
|
StringRef FS, Reloc::Model RM,
|
||||||
StringRef FS, Reloc::Model RM)
|
CodeModel::Model CM)
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
Subtarget(TT, CPU, FS),
|
Subtarget(TT, CPU, FS),
|
||||||
DataLayout("E-p:64:64:64-i8:8:16-i16:16:16-i32:32:32-i64:64:64-f32:32:32"
|
DataLayout("E-p:64:64:64-i8:8:16-i16:16:16-i32:32:32-i64:64:64-f32:32:32"
|
||||||
"-f64:64:64-f128:128:128-a0:16:16-n32:64"),
|
"-f64:64:64-f128:128:128-a0:16:16-n32:64"),
|
||||||
|
|
|
@ -38,7 +38,8 @@ class SystemZTargetMachine : public LLVMTargetMachine {
|
||||||
SystemZFrameLowering FrameLowering;
|
SystemZFrameLowering FrameLowering;
|
||||||
public:
|
public:
|
||||||
SystemZTargetMachine(const Target &T, StringRef TT,
|
SystemZTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
virtual const TargetFrameLowering *getFrameLowering() const {
|
virtual const TargetFrameLowering *getFrameLowering() const {
|
||||||
return &FrameLowering;
|
return &FrameLowering;
|
||||||
|
|
|
@ -40,7 +40,6 @@ namespace llvm {
|
||||||
bool JITExceptionHandling;
|
bool JITExceptionHandling;
|
||||||
bool JITEmitDebugInfo;
|
bool JITEmitDebugInfo;
|
||||||
bool JITEmitDebugInfoToDisk;
|
bool JITEmitDebugInfoToDisk;
|
||||||
CodeModel::Model CMModel;
|
|
||||||
bool GuaranteedTailCallOpt;
|
bool GuaranteedTailCallOpt;
|
||||||
unsigned StackAlignmentOverride;
|
unsigned StackAlignmentOverride;
|
||||||
bool RealignStack;
|
bool RealignStack;
|
||||||
|
@ -142,23 +141,6 @@ EmitJitDebugInfoToDisk("jit-emit-debug-to-disk",
|
||||||
cl::location(JITEmitDebugInfoToDisk),
|
cl::location(JITEmitDebugInfoToDisk),
|
||||||
cl::init(false));
|
cl::init(false));
|
||||||
|
|
||||||
static cl::opt<llvm::CodeModel::Model, true>
|
|
||||||
DefCodeModel("code-model",
|
|
||||||
cl::desc("Choose code model"),
|
|
||||||
cl::location(CMModel),
|
|
||||||
cl::init(CodeModel::Default),
|
|
||||||
cl::values(
|
|
||||||
clEnumValN(CodeModel::Default, "default",
|
|
||||||
"Target default code model"),
|
|
||||||
clEnumValN(CodeModel::Small, "small",
|
|
||||||
"Small code model"),
|
|
||||||
clEnumValN(CodeModel::Kernel, "kernel",
|
|
||||||
"Kernel code model"),
|
|
||||||
clEnumValN(CodeModel::Medium, "medium",
|
|
||||||
"Medium code model"),
|
|
||||||
clEnumValN(CodeModel::Large, "large",
|
|
||||||
"Large code model"),
|
|
||||||
clEnumValEnd));
|
|
||||||
static cl::opt<bool, true>
|
static cl::opt<bool, true>
|
||||||
EnableGuaranteedTailCallOpt("tailcallopt",
|
EnableGuaranteedTailCallOpt("tailcallopt",
|
||||||
cl::desc("Turn fastcc calls into tail calls by (potentially) changing ABI."),
|
cl::desc("Turn fastcc calls into tail calls by (potentially) changing ABI."),
|
||||||
|
@ -230,13 +212,10 @@ Reloc::Model TargetMachine::getRelocationModel() const {
|
||||||
|
|
||||||
/// getCodeModel - Returns the code model. The choices are small, kernel,
|
/// getCodeModel - Returns the code model. The choices are small, kernel,
|
||||||
/// medium, large, and target default.
|
/// medium, large, and target default.
|
||||||
CodeModel::Model TargetMachine::getCodeModel() {
|
CodeModel::Model TargetMachine::getCodeModel() const {
|
||||||
return CMModel;
|
if (!CodeGenInfo)
|
||||||
}
|
return CodeModel::Default;
|
||||||
|
return CodeGenInfo->getCodeModel();
|
||||||
/// setCodeModel - Sets the code model.
|
|
||||||
void TargetMachine::setCodeModel(CodeModel::Model Model) {
|
|
||||||
CMModel = Model;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TargetMachine::getAsmVerbosityDefault() {
|
bool TargetMachine::getAsmVerbosityDefault() {
|
||||||
|
|
|
@ -339,7 +339,8 @@ extern "C" void LLVMInitializeX86MCAsmInfo() {
|
||||||
RegisterMCAsmInfoFn B(TheX86_64Target, createX86MCAsmInfo);
|
RegisterMCAsmInfoFn B(TheX86_64Target, createX86MCAsmInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createX86MCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createX86MCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
|
|
||||||
Triple T(TT);
|
Triple T(TT);
|
||||||
|
@ -376,7 +377,14 @@ MCCodeGenInfo *createX86MCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
||||||
if (RM == Reloc::Static && T.isOSDarwin() && is64Bit)
|
if (RM == Reloc::Static && T.isOSDarwin() && is64Bit)
|
||||||
RM = Reloc::PIC_;
|
RM = Reloc::PIC_;
|
||||||
|
|
||||||
X->InitMCCodeGenInfo(RM);
|
// For static codegen, if we're not already set, use Small codegen.
|
||||||
|
if (CM == CodeModel::Default)
|
||||||
|
CM = CodeModel::Small;
|
||||||
|
else if (CM == CodeModel::JITDefault)
|
||||||
|
// 64-bit JIT places everything in the same buffer except external funcs.
|
||||||
|
CM = is64Bit ? CodeModel::Large : CodeModel::Small;
|
||||||
|
|
||||||
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -67,8 +67,8 @@ extern "C" void LLVMInitializeX86Target() {
|
||||||
|
|
||||||
X86_32TargetMachine::X86_32TargetMachine(const Target &T, StringRef TT,
|
X86_32TargetMachine::X86_32TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: X86TargetMachine(T, TT, CPU, FS, RM, false),
|
: X86TargetMachine(T, TT, CPU, FS, RM, CM, false),
|
||||||
DataLayout(getSubtargetImpl()->isTargetDarwin() ?
|
DataLayout(getSubtargetImpl()->isTargetDarwin() ?
|
||||||
"e-p:32:32-f64:32:64-i64:32:64-f80:128:128-f128:128:128-n8:16:32" :
|
"e-p:32:32-f64:32:64-i64:32:64-f80:128:128-f128:128:128-n8:16:32" :
|
||||||
(getSubtargetImpl()->isTargetCygMing() ||
|
(getSubtargetImpl()->isTargetCygMing() ||
|
||||||
|
@ -84,8 +84,8 @@ X86_32TargetMachine::X86_32TargetMachine(const Target &T, StringRef TT,
|
||||||
|
|
||||||
X86_64TargetMachine::X86_64TargetMachine(const Target &T, StringRef TT,
|
X86_64TargetMachine::X86_64TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: X86TargetMachine(T, TT, CPU, FS, RM, true),
|
: X86TargetMachine(T, TT, CPU, FS, RM, CM, true),
|
||||||
DataLayout("e-p:64:64-s:64-f64:64:64-i64:64:64-f80:128:128-f128:128:128-n8:16:32:64"),
|
DataLayout("e-p:64:64-s:64-f64:64:64-i64:64:64-f80:128:128-f128:128:128-n8:16:32:64"),
|
||||||
InstrInfo(*this),
|
InstrInfo(*this),
|
||||||
TSInfo(*this),
|
TSInfo(*this),
|
||||||
|
@ -97,8 +97,9 @@ X86_64TargetMachine::X86_64TargetMachine(const Target &T, StringRef TT,
|
||||||
///
|
///
|
||||||
X86TargetMachine::X86TargetMachine(const Target &T, StringRef TT,
|
X86TargetMachine::X86TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM, bool is64Bit)
|
Reloc::Model RM, CodeModel::Model CM,
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
bool is64Bit)
|
||||||
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
Subtarget(TT, CPU, FS, StackAlignmentOverride, is64Bit),
|
Subtarget(TT, CPU, FS, StackAlignmentOverride, is64Bit),
|
||||||
FrameLowering(*this, Subtarget),
|
FrameLowering(*this, Subtarget),
|
||||||
ELFWriterInfo(is64Bit, true) {
|
ELFWriterInfo(is64Bit, true) {
|
||||||
|
@ -171,23 +172,3 @@ bool X86TargetMachine::addCodeEmitter(PassManagerBase &PM,
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void X86TargetMachine::setCodeModelForStatic() {
|
|
||||||
|
|
||||||
if (getCodeModel() != CodeModel::Default) return;
|
|
||||||
|
|
||||||
// For static codegen, if we're not already set, use Small codegen.
|
|
||||||
setCodeModel(CodeModel::Small);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void X86TargetMachine::setCodeModelForJIT() {
|
|
||||||
|
|
||||||
if (getCodeModel() != CodeModel::Default) return;
|
|
||||||
|
|
||||||
// 64-bit JIT places everything in the same buffer except external functions.
|
|
||||||
if (Subtarget.is64Bit())
|
|
||||||
setCodeModel(CodeModel::Large);
|
|
||||||
else
|
|
||||||
setCodeModel(CodeModel::Small);
|
|
||||||
}
|
|
||||||
|
|
|
@ -36,15 +36,11 @@ class X86TargetMachine : public LLVMTargetMachine {
|
||||||
X86FrameLowering FrameLowering;
|
X86FrameLowering FrameLowering;
|
||||||
X86ELFWriterInfo ELFWriterInfo;
|
X86ELFWriterInfo ELFWriterInfo;
|
||||||
|
|
||||||
private:
|
|
||||||
// We have specific defaults for X86.
|
|
||||||
virtual void setCodeModelForJIT();
|
|
||||||
virtual void setCodeModelForStatic();
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
X86TargetMachine(const Target &T, StringRef TT,
|
X86TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS,
|
StringRef CPU, StringRef FS,
|
||||||
Reloc::Model RM, bool is64Bit);
|
Reloc::Model RM, CodeModel::Model CM,
|
||||||
|
bool is64Bit);
|
||||||
|
|
||||||
virtual const X86InstrInfo *getInstrInfo() const {
|
virtual const X86InstrInfo *getInstrInfo() const {
|
||||||
llvm_unreachable("getInstrInfo not implemented");
|
llvm_unreachable("getInstrInfo not implemented");
|
||||||
|
@ -88,7 +84,8 @@ class X86_32TargetMachine : public X86TargetMachine {
|
||||||
X86JITInfo JITInfo;
|
X86JITInfo JITInfo;
|
||||||
public:
|
public:
|
||||||
X86_32TargetMachine(const Target &T, StringRef TT,
|
X86_32TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
||||||
virtual const X86TargetLowering *getTargetLowering() const {
|
virtual const X86TargetLowering *getTargetLowering() const {
|
||||||
return &TLInfo;
|
return &TLInfo;
|
||||||
|
@ -114,7 +111,8 @@ class X86_64TargetMachine : public X86TargetMachine {
|
||||||
X86JITInfo JITInfo;
|
X86JITInfo JITInfo;
|
||||||
public:
|
public:
|
||||||
X86_64TargetMachine(const Target &T, StringRef TT,
|
X86_64TargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
||||||
virtual const X86TargetLowering *getTargetLowering() const {
|
virtual const X86TargetLowering *getTargetLowering() const {
|
||||||
return &TLInfo;
|
return &TLInfo;
|
||||||
|
|
|
@ -76,9 +76,10 @@ extern "C" void LLVMInitializeXCoreMCAsmInfo() {
|
||||||
RegisterMCAsmInfoFn X(TheXCoreTarget, createXCoreMCAsmInfo);
|
RegisterMCAsmInfoFn X(TheXCoreTarget, createXCoreMCAsmInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
MCCodeGenInfo *createXCoreMCCodeGenInfo(StringRef TT, Reloc::Model RM) {
|
MCCodeGenInfo *createXCoreMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||||
|
CodeModel::Model CM) {
|
||||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||||
X->InitMCCodeGenInfo(RM);
|
X->InitMCCodeGenInfo(RM, CM);
|
||||||
return X;
|
return X;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,9 +20,9 @@ using namespace llvm;
|
||||||
/// XCoreTargetMachine ctor - Create an ILP32 architecture model
|
/// XCoreTargetMachine ctor - Create an ILP32 architecture model
|
||||||
///
|
///
|
||||||
XCoreTargetMachine::XCoreTargetMachine(const Target &T, StringRef TT,
|
XCoreTargetMachine::XCoreTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU,
|
StringRef CPU, StringRef FS,
|
||||||
StringRef FS, Reloc::Model RM)
|
Reloc::Model RM, CodeModel::Model CM)
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, RM),
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
||||||
Subtarget(TT, CPU, FS),
|
Subtarget(TT, CPU, FS),
|
||||||
DataLayout("e-p:32:32:32-a0:0:32-f32:32:32-f64:32:32-i1:8:32-i8:8:32-"
|
DataLayout("e-p:32:32:32-a0:0:32-f32:32:32-f64:32:32-i1:8:32-i8:8:32-"
|
||||||
"i16:16:32-i32:32:32-i64:32:32-n32"),
|
"i16:16:32-i32:32:32-i64:32:32-n32"),
|
||||||
|
|
|
@ -33,7 +33,8 @@ class XCoreTargetMachine : public LLVMTargetMachine {
|
||||||
XCoreSelectionDAGInfo TSInfo;
|
XCoreSelectionDAGInfo TSInfo;
|
||||||
public:
|
public:
|
||||||
XCoreTargetMachine(const Target &T, StringRef TT,
|
XCoreTargetMachine(const Target &T, StringRef TT,
|
||||||
StringRef CPU, StringRef FS, Reloc::Model RM);
|
StringRef CPU, StringRef FS,
|
||||||
|
Reloc::Model RM, CodeModel::Model CM);
|
||||||
|
|
||||||
virtual const XCoreInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
virtual const XCoreInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
||||||
virtual const XCoreFrameLowering *getFrameLowering() const {
|
virtual const XCoreFrameLowering *getFrameLowering() const {
|
||||||
|
|
|
@ -91,6 +91,22 @@ RelocModel("relocation-model",
|
||||||
"Relocatable external references, non-relocatable code"),
|
"Relocatable external references, non-relocatable code"),
|
||||||
clEnumValEnd));
|
clEnumValEnd));
|
||||||
|
|
||||||
|
static cl::opt<llvm::CodeModel::Model>
|
||||||
|
CMModel("code-model",
|
||||||
|
cl::desc("Choose code model"),
|
||||||
|
cl::init(CodeModel::Default),
|
||||||
|
cl::values(clEnumValN(CodeModel::Default, "default",
|
||||||
|
"Target default code model"),
|
||||||
|
clEnumValN(CodeModel::Small, "small",
|
||||||
|
"Small code model"),
|
||||||
|
clEnumValN(CodeModel::Kernel, "kernel",
|
||||||
|
"Kernel code model"),
|
||||||
|
clEnumValN(CodeModel::Medium, "medium",
|
||||||
|
"Medium code model"),
|
||||||
|
clEnumValN(CodeModel::Large, "large",
|
||||||
|
"Large code model"),
|
||||||
|
clEnumValEnd));
|
||||||
|
|
||||||
static cl::opt<bool>
|
static cl::opt<bool>
|
||||||
RelaxAll("mc-relax-all",
|
RelaxAll("mc-relax-all",
|
||||||
cl::desc("When used with filetype=obj, "
|
cl::desc("When used with filetype=obj, "
|
||||||
|
@ -287,8 +303,9 @@ int main(int argc, char **argv) {
|
||||||
}
|
}
|
||||||
|
|
||||||
std::auto_ptr<TargetMachine>
|
std::auto_ptr<TargetMachine>
|
||||||
target(TheTarget->createTargetMachine(TheTriple.getTriple(), MCPU,
|
target(TheTarget->createTargetMachine(TheTriple.getTriple(),
|
||||||
FeaturesStr, RelocModel));
|
MCPU, FeaturesStr,
|
||||||
|
RelocModel, CMModel));
|
||||||
assert(target.get() && "Could not allocate target machine!");
|
assert(target.get() && "Could not allocate target machine!");
|
||||||
TargetMachine &Target = *target.get();
|
TargetMachine &Target = *target.get();
|
||||||
|
|
||||||
|
|
|
@ -123,6 +123,23 @@ namespace {
|
||||||
clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
|
clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
|
||||||
"Relocatable external references, non-relocatable code"),
|
"Relocatable external references, non-relocatable code"),
|
||||||
clEnumValEnd));
|
clEnumValEnd));
|
||||||
|
|
||||||
|
cl::opt<llvm::CodeModel::Model>
|
||||||
|
CMModel("code-model",
|
||||||
|
cl::desc("Choose code model"),
|
||||||
|
cl::init(CodeModel::JITDefault),
|
||||||
|
cl::values(clEnumValN(CodeModel::JITDefault, "default",
|
||||||
|
"Target default JIT code model"),
|
||||||
|
clEnumValN(CodeModel::Small, "small",
|
||||||
|
"Small code model"),
|
||||||
|
clEnumValN(CodeModel::Kernel, "kernel",
|
||||||
|
"Kernel code model"),
|
||||||
|
clEnumValN(CodeModel::Medium, "medium",
|
||||||
|
"Medium code model"),
|
||||||
|
clEnumValN(CodeModel::Large, "large",
|
||||||
|
"Large code model"),
|
||||||
|
clEnumValEnd));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static ExecutionEngine *EE = 0;
|
static ExecutionEngine *EE = 0;
|
||||||
|
@ -180,6 +197,7 @@ int main(int argc, char **argv, char * const *envp) {
|
||||||
builder.setMCPU(MCPU);
|
builder.setMCPU(MCPU);
|
||||||
builder.setMAttrs(MAttrs);
|
builder.setMAttrs(MAttrs);
|
||||||
builder.setRelocationModel(RelocModel);
|
builder.setRelocationModel(RelocModel);
|
||||||
|
builder.setCodeModel(CMModel);
|
||||||
builder.setErrorStr(&ErrorMsg);
|
builder.setErrorStr(&ErrorMsg);
|
||||||
builder.setEngineKind(ForceInterpreter
|
builder.setEngineKind(ForceInterpreter
|
||||||
? EngineKind::Interpreter
|
? EngineKind::Interpreter
|
||||||
|
|
|
@ -128,6 +128,22 @@ RelocModel("relocation-model",
|
||||||
"Relocatable external references, non-relocatable code"),
|
"Relocatable external references, non-relocatable code"),
|
||||||
clEnumValEnd));
|
clEnumValEnd));
|
||||||
|
|
||||||
|
static cl::opt<llvm::CodeModel::Model>
|
||||||
|
CMModel("code-model",
|
||||||
|
cl::desc("Choose code model"),
|
||||||
|
cl::init(CodeModel::Default),
|
||||||
|
cl::values(clEnumValN(CodeModel::Default, "default",
|
||||||
|
"Target default code model"),
|
||||||
|
clEnumValN(CodeModel::Small, "small",
|
||||||
|
"Small code model"),
|
||||||
|
clEnumValN(CodeModel::Kernel, "kernel",
|
||||||
|
"Kernel code model"),
|
||||||
|
clEnumValN(CodeModel::Medium, "medium",
|
||||||
|
"Medium code model"),
|
||||||
|
clEnumValN(CodeModel::Large, "large",
|
||||||
|
"Large code model"),
|
||||||
|
clEnumValEnd));
|
||||||
|
|
||||||
static cl::opt<bool>
|
static cl::opt<bool>
|
||||||
NoInitialTextSection("n", cl::desc("Don't assume assembly file starts "
|
NoInitialTextSection("n", cl::desc("Don't assume assembly file starts "
|
||||||
"in the text section"));
|
"in the text section"));
|
||||||
|
@ -339,7 +355,8 @@ static int AssembleInput(const char *ProgName) {
|
||||||
OwningPtr<TargetMachine> TM(TheTarget->createTargetMachine(TripleName,
|
OwningPtr<TargetMachine> TM(TheTarget->createTargetMachine(TripleName,
|
||||||
MCPU,
|
MCPU,
|
||||||
FeaturesStr,
|
FeaturesStr,
|
||||||
RelocModel));
|
RelocModel,
|
||||||
|
CMModel));
|
||||||
|
|
||||||
if (!TM) {
|
if (!TM) {
|
||||||
errs() << ProgName << ": error: could not create target for triple '"
|
errs() << ProgName << ": error: could not create target for triple '"
|
||||||
|
|
Loading…
Reference in New Issue