2001-09-14 05:34:53 +00:00
|
|
|
//===-- TargetMachine.cpp - General Target Information ---------------------==//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-09-14 05:34:53 +00:00
|
|
|
//
|
|
|
|
// This file describes the general parts of a Target machine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 12:42:08 +00:00
|
|
|
|
2006-09-07 22:06:40 +00:00
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
2004-06-21 21:20:23 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2006-02-22 20:19:42 +00:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2003-12-28 21:23:38 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2004-03-04 19:16:23 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Command-line options that tend to be useful on more than one back-end.
|
|
|
|
//
|
|
|
|
|
2004-06-21 21:44:12 +00:00
|
|
|
namespace llvm {
|
2009-03-20 05:06:58 +00:00
|
|
|
bool LessPreciseFPMADOption;
|
2004-06-21 21:44:12 +00:00
|
|
|
bool PrintMachineCode;
|
|
|
|
bool NoFramePointerElim;
|
2005-01-15 06:00:32 +00:00
|
|
|
bool NoExcessFPPrecision;
|
2005-04-30 04:09:52 +00:00
|
|
|
bool UnsafeFPMath;
|
2006-05-23 18:18:46 +00:00
|
|
|
bool FiniteOnlyFPMathOption;
|
2007-05-03 00:27:11 +00:00
|
|
|
bool HonorSignDependentRoundingFPMathOption;
|
2006-12-09 02:41:30 +00:00
|
|
|
bool UseSoftFloat;
|
2009-06-08 22:53:56 +00:00
|
|
|
FloatABI::ABIType FloatABIType;
|
2009-03-11 22:30:01 +00:00
|
|
|
bool NoImplicitFloat;
|
2007-01-17 10:33:08 +00:00
|
|
|
bool NoZerosInBSS;
|
2007-01-29 20:48:32 +00:00
|
|
|
bool ExceptionHandling;
|
2008-04-14 17:54:17 +00:00
|
|
|
bool UnwindTablesMandatory;
|
2006-02-22 20:19:42 +00:00
|
|
|
Reloc::Model RelocationModel;
|
2006-07-06 01:53:36 +00:00
|
|
|
CodeModel::Model CMModel;
|
2007-10-11 19:40:01 +00:00
|
|
|
bool PerformTailCallOpt;
|
2008-04-23 18:18:10 +00:00
|
|
|
unsigned StackAlignment;
|
2008-07-01 23:18:29 +00:00
|
|
|
bool RealignStack;
|
2008-07-31 18:13:12 +00:00
|
|
|
bool DisableJumpTables;
|
2008-10-07 20:22:28 +00:00
|
|
|
bool StrongPHIElim;
|
2009-03-25 01:47:28 +00:00
|
|
|
bool AsmVerbosityDefault(false);
|
2006-05-24 17:04:05 +00:00
|
|
|
}
|
2004-06-21 21:08:45 +00:00
|
|
|
|
2009-03-11 22:30:01 +00:00
|
|
|
static cl::opt<bool, true>
|
|
|
|
PrintCode("print-machineinstrs",
|
2008-05-13 00:00:25 +00:00
|
|
|
cl::desc("Print generated machine code"),
|
|
|
|
cl::location(PrintMachineCode), cl::init(false));
|
|
|
|
static cl::opt<bool, true>
|
2008-05-30 22:39:18 +00:00
|
|
|
DisableFPElim("disable-fp-elim",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Disable frame pointer elimination optimization"),
|
|
|
|
cl::location(NoFramePointerElim),
|
|
|
|
cl::init(false));
|
2008-05-13 00:00:25 +00:00
|
|
|
static cl::opt<bool, true>
|
|
|
|
DisableExcessPrecision("disable-excess-fp-precision",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Disable optimizations that may increase FP precision"),
|
|
|
|
cl::location(NoExcessFPPrecision),
|
|
|
|
cl::init(false));
|
2008-05-13 00:00:25 +00:00
|
|
|
static cl::opt<bool, true>
|
2009-03-20 05:06:58 +00:00
|
|
|
EnableFPMAD("enable-fp-mad",
|
|
|
|
cl::desc("Enable less precise MAD instructions to be generated"),
|
|
|
|
cl::location(LessPreciseFPMADOption),
|
|
|
|
cl::init(false));
|
|
|
|
static cl::opt<bool, true>
|
2008-05-13 00:00:25 +00:00
|
|
|
EnableUnsafeFPMath("enable-unsafe-fp-math",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Enable optimizations that may decrease FP precision"),
|
|
|
|
cl::location(UnsafeFPMath),
|
|
|
|
cl::init(false));
|
2008-05-13 00:00:25 +00:00
|
|
|
static cl::opt<bool, true>
|
|
|
|
EnableFiniteOnlyFPMath("enable-finite-only-fp-math",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Enable optimizations that assumes non- NaNs / +-Infs"),
|
|
|
|
cl::location(FiniteOnlyFPMathOption),
|
|
|
|
cl::init(false));
|
|
|
|
static cl::opt<bool, true>
|
|
|
|
EnableHonorSignDependentRoundingFPMath("enable-sign-dependent-rounding-fp-math",
|
|
|
|
cl::Hidden,
|
|
|
|
cl::desc("Force codegen to assume rounding mode can change dynamically"),
|
|
|
|
cl::location(HonorSignDependentRoundingFPMathOption),
|
|
|
|
cl::init(false));
|
2008-05-13 00:00:25 +00:00
|
|
|
static cl::opt<bool, true>
|
|
|
|
GenerateSoftFloatCalls("soft-float",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Generate software floating point library calls"),
|
|
|
|
cl::location(UseSoftFloat),
|
|
|
|
cl::init(false));
|
2009-06-08 22:53:56 +00:00
|
|
|
static cl::opt<llvm::FloatABI::ABIType, true>
|
|
|
|
FloatABIForCalls("float-abi",
|
|
|
|
cl::desc("Choose float ABI type"),
|
|
|
|
cl::location(FloatABIType),
|
|
|
|
cl::init(FloatABI::Default),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(FloatABI::Default, "default",
|
|
|
|
"Target default float ABI type"),
|
|
|
|
clEnumValN(FloatABI::Soft, "soft",
|
|
|
|
"Soft float ABI (implied by -soft-float)"),
|
|
|
|
clEnumValN(FloatABI::Hard, "hard",
|
|
|
|
"Hard float ABI (uses FP registers)"),
|
|
|
|
clEnumValEnd));
|
2009-03-11 22:30:01 +00:00
|
|
|
static cl::opt<bool, true>
|
2008-05-13 00:00:25 +00:00
|
|
|
DontPlaceZerosInBSS("nozero-initialized-in-bss",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Don't place zero-initialized symbols into bss section"),
|
|
|
|
cl::location(NoZerosInBSS),
|
|
|
|
cl::init(false));
|
2008-05-13 00:00:25 +00:00
|
|
|
static cl::opt<bool, true>
|
|
|
|
EnableExceptionHandling("enable-eh",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Emit DWARF exception handling (default if target supports)"),
|
|
|
|
cl::location(ExceptionHandling),
|
|
|
|
cl::init(false));
|
2008-05-13 00:00:25 +00:00
|
|
|
static cl::opt<bool, true>
|
|
|
|
EnableUnwindTables("unwind-tables",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Generate unwinding tables for all functions"),
|
|
|
|
cl::location(UnwindTablesMandatory),
|
|
|
|
cl::init(false));
|
2007-10-11 19:40:01 +00:00
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
static cl::opt<llvm::Reloc::Model, true>
|
2009-03-11 22:30:01 +00:00
|
|
|
DefRelocationModel("relocation-model",
|
2008-05-13 00:00:25 +00:00
|
|
|
cl::desc("Choose relocation model"),
|
|
|
|
cl::location(RelocationModel),
|
|
|
|
cl::init(Reloc::Default),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(Reloc::Default, "default",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Target default relocation model"),
|
2008-05-13 00:00:25 +00:00
|
|
|
clEnumValN(Reloc::Static, "static",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Non-relocatable code"),
|
2008-05-13 00:00:25 +00:00
|
|
|
clEnumValN(Reloc::PIC_, "pic",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Fully relocatable, position independent code"),
|
2008-05-13 00:00:25 +00:00
|
|
|
clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Relocatable external references, non-relocatable code"),
|
2008-05-13 00:00:25 +00:00
|
|
|
clEnumValEnd));
|
|
|
|
static cl::opt<llvm::CodeModel::Model, true>
|
2009-03-11 22:30:01 +00:00
|
|
|
DefCodeModel("code-model",
|
2008-05-13 00:00:25 +00:00
|
|
|
cl::desc("Choose code model"),
|
|
|
|
cl::location(CMModel),
|
|
|
|
cl::init(CodeModel::Default),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(CodeModel::Default, "default",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Target default code model"),
|
2008-05-13 00:00:25 +00:00
|
|
|
clEnumValN(CodeModel::Small, "small",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Small code model"),
|
2008-05-13 00:00:25 +00:00
|
|
|
clEnumValN(CodeModel::Kernel, "kernel",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Kernel code model"),
|
2008-05-13 00:00:25 +00:00
|
|
|
clEnumValN(CodeModel::Medium, "medium",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Medium code model"),
|
2008-05-13 00:00:25 +00:00
|
|
|
clEnumValN(CodeModel::Large, "large",
|
2008-10-14 20:25:08 +00:00
|
|
|
"Large code model"),
|
2008-05-13 00:00:25 +00:00
|
|
|
clEnumValEnd));
|
|
|
|
static cl::opt<bool, true>
|
|
|
|
EnablePerformTailCallOpt("tailcallopt",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Turn on tail call optimization."),
|
|
|
|
cl::location(PerformTailCallOpt),
|
|
|
|
cl::init(false));
|
2008-07-01 23:18:29 +00:00
|
|
|
static cl::opt<unsigned, true>
|
|
|
|
OverrideStackAlignment("stack-alignment",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Override default stack alignment"),
|
|
|
|
cl::location(StackAlignment),
|
|
|
|
cl::init(0));
|
2008-05-13 00:00:25 +00:00
|
|
|
static cl::opt<bool, true>
|
|
|
|
EnableRealignStack("realign-stack",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Realign stack if needed"),
|
|
|
|
cl::location(RealignStack),
|
|
|
|
cl::init(true));
|
2008-07-01 23:18:29 +00:00
|
|
|
static cl::opt<bool, true>
|
2008-07-31 18:13:12 +00:00
|
|
|
DisableSwitchTables(cl::Hidden, "disable-jump-tables",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Do not generate jump tables."),
|
|
|
|
cl::location(DisableJumpTables),
|
|
|
|
cl::init(false));
|
2008-10-07 20:22:28 +00:00
|
|
|
static cl::opt<bool, true>
|
|
|
|
EnableStrongPHIElim(cl::Hidden, "strong-phi-elim",
|
2009-03-11 22:30:01 +00:00
|
|
|
cl::desc("Use strong PHI elimination."),
|
|
|
|
cl::location(StrongPHIElim),
|
|
|
|
cl::init(false));
|
2009-01-26 22:22:31 +00:00
|
|
|
|
2001-07-21 12:42:08 +00:00
|
|
|
//---------------------------------------------------------------------------
|
2003-12-28 21:23:38 +00:00
|
|
|
// TargetMachine Class
|
|
|
|
//
|
2004-08-10 23:10:25 +00:00
|
|
|
|
2009-06-08 22:53:56 +00:00
|
|
|
TargetMachine::TargetMachine()
|
|
|
|
: AsmInfo(0) {
|
|
|
|
// Typically it will be subtargets that will adjust FloatABIType from Default
|
|
|
|
// to Soft or Hard.
|
|
|
|
if (UseSoftFloat)
|
|
|
|
FloatABIType = FloatABI::Soft;
|
|
|
|
}
|
|
|
|
|
2003-12-28 21:23:38 +00:00
|
|
|
TargetMachine::~TargetMachine() {
|
2006-09-07 23:39:26 +00:00
|
|
|
delete AsmInfo;
|
2003-12-28 21:23:38 +00:00
|
|
|
}
|
|
|
|
|
2006-02-22 20:19:42 +00:00
|
|
|
/// getRelocationModel - Returns the code generation relocation model. The
|
|
|
|
/// choices are static, PIC, and dynamic-no-pic, and target default.
|
|
|
|
Reloc::Model TargetMachine::getRelocationModel() {
|
|
|
|
return RelocationModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// setRelocationModel - Sets the code generation relocation model.
|
|
|
|
void TargetMachine::setRelocationModel(Reloc::Model Model) {
|
|
|
|
RelocationModel = Model;
|
|
|
|
}
|
2006-05-23 18:18:46 +00:00
|
|
|
|
2006-07-06 01:53:36 +00:00
|
|
|
/// getCodeModel - Returns the code model. The choices are small, kernel,
|
|
|
|
/// medium, large, and target default.
|
|
|
|
CodeModel::Model TargetMachine::getCodeModel() {
|
|
|
|
return CMModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// setCodeModel - Sets the code model.
|
|
|
|
void TargetMachine::setCodeModel(CodeModel::Model Model) {
|
|
|
|
CMModel = Model;
|
|
|
|
}
|
|
|
|
|
2009-03-25 01:47:28 +00:00
|
|
|
bool TargetMachine::getAsmVerbosityDefault() {
|
|
|
|
return AsmVerbosityDefault;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TargetMachine::setAsmVerbosityDefault(bool V) {
|
|
|
|
AsmVerbosityDefault = V;
|
|
|
|
}
|
|
|
|
|
2006-05-23 18:18:46 +00:00
|
|
|
namespace llvm {
|
2009-03-20 05:06:58 +00:00
|
|
|
/// LessPreciseFPMAD - This flag return true when -enable-fp-mad option
|
|
|
|
/// is specified on the command line. When this flag is off(default), the
|
|
|
|
/// code generator is not allowed to generate mad (multiply add) if the
|
|
|
|
/// result is "less precise" than doing those operations individually.
|
|
|
|
bool LessPreciseFPMAD() { return UnsafeFPMath || LessPreciseFPMADOption; }
|
|
|
|
|
2006-05-23 18:18:46 +00:00
|
|
|
/// FiniteOnlyFPMath - This returns true when the -enable-finite-only-fp-math
|
|
|
|
/// option is specified on the command line. If this returns false (default),
|
|
|
|
/// the code generator is not allowed to assume that FP arithmetic arguments
|
|
|
|
/// and results are never NaNs or +-Infs.
|
|
|
|
bool FiniteOnlyFPMath() { return UnsafeFPMath || FiniteOnlyFPMathOption; }
|
2007-05-03 00:16:07 +00:00
|
|
|
|
|
|
|
/// HonorSignDependentRoundingFPMath - Return true if the codegen must assume
|
|
|
|
/// that the rounding mode of the FPU can change from its default.
|
|
|
|
bool HonorSignDependentRoundingFPMath() {
|
|
|
|
return !UnsafeFPMath && HonorSignDependentRoundingFPMathOption;
|
|
|
|
}
|
2006-05-24 19:05:21 +00:00
|
|
|
}
|
2006-09-04 04:06:01 +00:00
|
|
|
|