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
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and 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
|
|
|
|
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"
|
2002-10-28 23:55:33 +00:00
|
|
|
#include "llvm/Type.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 {
|
|
|
|
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;
|
2006-02-22 20:19:42 +00:00
|
|
|
Reloc::Model RelocationModel;
|
2006-05-24 17:04:05 +00:00
|
|
|
}
|
2004-03-04 19:16:23 +00:00
|
|
|
namespace {
|
|
|
|
cl::opt<bool, true> PrintCode("print-machineinstrs",
|
|
|
|
cl::desc("Print generated machine code"),
|
|
|
|
cl::location(PrintMachineCode), cl::init(false));
|
2004-06-21 21:08:45 +00:00
|
|
|
|
2005-04-21 22:55:34 +00:00
|
|
|
cl::opt<bool, true>
|
2004-06-21 21:08:45 +00:00
|
|
|
DisableFPElim("disable-fp-elim",
|
|
|
|
cl::desc("Disable frame pointer elimination optimization"),
|
2004-06-21 21:17:44 +00:00
|
|
|
cl::location(NoFramePointerElim),
|
|
|
|
cl::init(false));
|
2005-01-15 06:00:32 +00:00
|
|
|
cl::opt<bool, true>
|
|
|
|
DisableExcessPrecision("disable-excess-fp-precision",
|
2005-04-15 22:12:16 +00:00
|
|
|
cl::desc("Disable optimizations that may increase FP precision"),
|
|
|
|
cl::location(NoExcessFPPrecision),
|
|
|
|
cl::init(false));
|
2005-04-30 04:09:52 +00: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 06:39:12 +00:00
|
|
|
cl::opt<bool, true>
|
|
|
|
EnableFiniteOnltFPMath("enable-finite-only-fp-math",
|
|
|
|
cl::desc("Enable optimizations that assumes non- NaNs / +-Infs"),
|
2006-05-23 18:18:46 +00:00
|
|
|
cl::location(FiniteOnlyFPMathOption),
|
2006-05-23 06:39:12 +00:00
|
|
|
cl::init(false));
|
2006-02-22 20:19:42 +00: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",
|
|
|
|
"Target default relocation model"),
|
|
|
|
clEnumValN(Reloc::Static, "static",
|
|
|
|
"Non-relocatable code"),
|
|
|
|
clEnumValN(Reloc::PIC, "pic",
|
|
|
|
"Fully relocatable, position independent code"),
|
|
|
|
clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
|
|
|
|
"Relocatable external references, non-relocatable code"),
|
|
|
|
clEnumValEnd));
|
2006-05-24 17:04:05 +00:00
|
|
|
}
|
2004-03-04 19:16:23 +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
|
|
|
|
2006-03-23 05:43:16 +00:00
|
|
|
TargetMachine::TargetMachine(const std::string &name, const Module &M)
|
2006-05-03 01:29:57 +00:00
|
|
|
: Name(name) {
|
2004-03-03 02:12:47 +00:00
|
|
|
}
|
2003-12-28 21:23:38 +00:00
|
|
|
|
|
|
|
TargetMachine::~TargetMachine() {
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
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; }
|
|
|
|
};
|