2001-09-14 07:34:53 +02:00
|
|
|
//===-- TargetMachine.cpp - General Target Information ---------------------==//
|
2005-04-22 00:55:34 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:55:34 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-09-14 07:34:53 +02:00
|
|
|
//
|
|
|
|
// This file describes the general parts of a Target machine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 14:42:08 +02:00
|
|
|
|
2006-09-08 00:06:40 +02:00
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
2004-06-21 23:20:23 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2006-02-22 21:19:42 +01:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2003-12-28 22:23:38 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2004-03-04 20:16:23 +01:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Command-line options that tend to be useful on more than one back-end.
|
|
|
|
//
|
|
|
|
|
2004-06-21 23:44:12 +02:00
|
|
|
namespace llvm {
|
|
|
|
bool PrintMachineCode;
|
|
|
|
bool NoFramePointerElim;
|
2005-01-15 07:00:32 +01:00
|
|
|
bool NoExcessFPPrecision;
|
2005-04-30 06:09:52 +02:00
|
|
|
bool UnsafeFPMath;
|
2006-05-23 20:18:46 +02:00
|
|
|
bool FiniteOnlyFPMathOption;
|
2007-05-03 02:27:11 +02:00
|
|
|
bool HonorSignDependentRoundingFPMathOption;
|
2006-12-09 03:41:30 +01:00
|
|
|
bool UseSoftFloat;
|
2007-01-17 11:33:08 +01:00
|
|
|
bool NoZerosInBSS;
|
2007-01-29 21:48:32 +01:00
|
|
|
bool ExceptionHandling;
|
2006-02-22 21:19:42 +01:00
|
|
|
Reloc::Model RelocationModel;
|
2006-07-06 03:53:36 +02:00
|
|
|
CodeModel::Model CMModel;
|
2007-10-11 21:40:01 +02:00
|
|
|
bool PerformTailCallOpt;
|
2006-05-24 19:04:05 +02:00
|
|
|
}
|
2004-03-04 20:16:23 +01:00
|
|
|
namespace {
|
|
|
|
cl::opt<bool, true> PrintCode("print-machineinstrs",
|
|
|
|
cl::desc("Print generated machine code"),
|
|
|
|
cl::location(PrintMachineCode), cl::init(false));
|
2004-06-21 23:08:45 +02:00
|
|
|
|
2005-04-22 00:55:34 +02:00
|
|
|
cl::opt<bool, true>
|
2004-06-21 23:08:45 +02:00
|
|
|
DisableFPElim("disable-fp-elim",
|
|
|
|
cl::desc("Disable frame pointer elimination optimization"),
|
2004-06-21 23:17:44 +02:00
|
|
|
cl::location(NoFramePointerElim),
|
|
|
|
cl::init(false));
|
2005-01-15 07:00:32 +01:00
|
|
|
cl::opt<bool, true>
|
|
|
|
DisableExcessPrecision("disable-excess-fp-precision",
|
2005-04-16 00:12:16 +02:00
|
|
|
cl::desc("Disable optimizations that may increase FP precision"),
|
|
|
|
cl::location(NoExcessFPPrecision),
|
|
|
|
cl::init(false));
|
2005-04-30 06:09:52 +02:00
|
|
|
cl::opt<bool, true>
|
|
|
|
EnableUnsafeFPMath("enable-unsafe-fp-math",
|
|
|
|
cl::desc("Enable optimizations that may decrease FP precision"),
|
|
|
|
cl::location(UnsafeFPMath),
|
|
|
|
cl::init(false));
|
2006-05-23 08:39:12 +02:00
|
|
|
cl::opt<bool, true>
|
2007-05-03 02:16:07 +02:00
|
|
|
EnableFiniteOnlyFPMath("enable-finite-only-fp-math",
|
2006-05-23 08:39:12 +02:00
|
|
|
cl::desc("Enable optimizations that assumes non- NaNs / +-Infs"),
|
2006-05-23 20:18:46 +02:00
|
|
|
cl::location(FiniteOnlyFPMathOption),
|
2006-05-23 08:39:12 +02:00
|
|
|
cl::init(false));
|
2006-12-09 03:41:30 +01:00
|
|
|
cl::opt<bool, true>
|
2007-05-03 02:16:07 +02:00
|
|
|
EnableHonorSignDependentRoundingFPMath(cl::Hidden,
|
|
|
|
"enable-sign-dependent-rounding-fp-math",
|
|
|
|
cl::desc("Force codegen to assume rounding mode can change dynamically"),
|
|
|
|
cl::location(HonorSignDependentRoundingFPMathOption),
|
|
|
|
cl::init(false));
|
|
|
|
|
|
|
|
cl::opt<bool, true>
|
2006-12-09 03:41:30 +01:00
|
|
|
GenerateSoftFloatCalls("soft-float",
|
|
|
|
cl::desc("Generate software floating point library calls"),
|
|
|
|
cl::location(UseSoftFloat),
|
|
|
|
cl::init(false));
|
2007-01-17 11:33:08 +01:00
|
|
|
cl::opt<bool, true>
|
|
|
|
DontPlaceZerosInBSS("nozero-initialized-in-bss",
|
2007-05-03 02:16:07 +02:00
|
|
|
cl::desc("Don't place zero-initialized symbols into bss section"),
|
|
|
|
cl::location(NoZerosInBSS),
|
|
|
|
cl::init(false));
|
2007-01-29 21:48:32 +01:00
|
|
|
cl::opt<bool, true>
|
2007-01-29 23:40:03 +01:00
|
|
|
EnableExceptionHandling("enable-eh",
|
2007-01-29 21:48:32 +01:00
|
|
|
cl::desc("Exception handling should be emitted."),
|
|
|
|
cl::location(ExceptionHandling),
|
|
|
|
cl::init(false));
|
2006-12-09 03:41:30 +01:00
|
|
|
|
2006-02-22 21:19:42 +01:00
|
|
|
cl::opt<llvm::Reloc::Model, true>
|
|
|
|
DefRelocationModel(
|
|
|
|
"relocation-model",
|
|
|
|
cl::desc("Choose relocation model"),
|
|
|
|
cl::location(RelocationModel),
|
|
|
|
cl::init(Reloc::Default),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(Reloc::Default, "default",
|
2006-08-29 17:13:10 +02:00
|
|
|
" Target default relocation model"),
|
2006-02-22 21:19:42 +01:00
|
|
|
clEnumValN(Reloc::Static, "static",
|
2006-08-29 17:13:10 +02:00
|
|
|
" Non-relocatable code"),
|
2006-07-26 23:12:04 +02:00
|
|
|
clEnumValN(Reloc::PIC_, "pic",
|
2006-08-29 17:13:10 +02:00
|
|
|
" Fully relocatable, position independent code"),
|
2006-02-22 21:19:42 +01:00
|
|
|
clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
|
2006-08-29 17:13:10 +02:00
|
|
|
" Relocatable external references, non-relocatable code"),
|
2006-02-22 21:19:42 +01:00
|
|
|
clEnumValEnd));
|
2006-07-06 03:53:36 +02:00
|
|
|
cl::opt<llvm::CodeModel::Model, true>
|
|
|
|
DefCodeModel(
|
|
|
|
"code-model",
|
2007-04-19 20:42:38 +02:00
|
|
|
cl::desc("Choose code model"),
|
2006-07-06 03:53:36 +02:00
|
|
|
cl::location(CMModel),
|
|
|
|
cl::init(CodeModel::Default),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(CodeModel::Default, "default",
|
2006-08-29 17:13:10 +02:00
|
|
|
" Target default code model"),
|
2006-07-06 03:53:36 +02:00
|
|
|
clEnumValN(CodeModel::Small, "small",
|
2006-08-29 17:13:10 +02:00
|
|
|
" Small code model"),
|
2006-07-06 03:53:36 +02:00
|
|
|
clEnumValN(CodeModel::Kernel, "kernel",
|
2006-08-29 17:13:10 +02:00
|
|
|
" Kernel code model"),
|
2006-07-06 03:53:36 +02:00
|
|
|
clEnumValN(CodeModel::Medium, "medium",
|
2006-08-29 17:13:10 +02:00
|
|
|
" Medium code model"),
|
2006-07-06 03:53:36 +02:00
|
|
|
clEnumValN(CodeModel::Large, "large",
|
2006-08-29 17:13:10 +02:00
|
|
|
" Large code model"),
|
2006-07-06 03:53:36 +02:00
|
|
|
clEnumValEnd));
|
2007-10-11 21:40:01 +02:00
|
|
|
|
|
|
|
cl::opt<bool, true>
|
|
|
|
EnablePerformTailCallOpt("tailcallopt",
|
|
|
|
cl::desc("Turn on tail call optimization."),
|
|
|
|
cl::location(PerformTailCallOpt),
|
|
|
|
cl::init(false));
|
2006-05-24 19:04:05 +02:00
|
|
|
}
|
2004-03-04 20:16:23 +01:00
|
|
|
|
2001-07-21 14:42:08 +02:00
|
|
|
//---------------------------------------------------------------------------
|
2003-12-28 22:23:38 +01:00
|
|
|
// TargetMachine Class
|
|
|
|
//
|
2004-08-11 01:10:25 +02:00
|
|
|
|
2003-12-28 22:23:38 +01:00
|
|
|
TargetMachine::~TargetMachine() {
|
2006-09-08 01:39:26 +02:00
|
|
|
delete AsmInfo;
|
2003-12-28 22:23:38 +01:00
|
|
|
}
|
|
|
|
|
2006-02-22 21:19:42 +01: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 20:18:46 +02:00
|
|
|
|
2006-07-06 03:53:36 +02: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;
|
|
|
|
}
|
|
|
|
|
2006-05-23 20:18:46 +02:00
|
|
|
namespace llvm {
|
|
|
|
/// 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 02:16:07 +02: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 21:05:21 +02:00
|
|
|
}
|
2006-09-04 06:06:01 +02:00
|
|
|
|