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
|
|
|
|
2012-06-23 02:30:03 +02:00
|
|
|
#include "llvm/GlobalAlias.h"
|
2012-04-08 19:20:55 +02:00
|
|
|
#include "llvm/GlobalValue.h"
|
2012-06-23 02:30:03 +02:00
|
|
|
#include "llvm/GlobalVariable.h"
|
2009-08-22 22:48:53 +02:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2012-03-25 20:10:17 +02:00
|
|
|
#include "llvm/MC/MCCodeGenInfo.h"
|
2004-06-21 23:20:23 +02:00
|
|
|
#include "llvm/Target/TargetMachine.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 {
|
2011-04-07 02:58:44 +02:00
|
|
|
bool HasDivModLibcall;
|
2009-03-25 02:47:28 +01:00
|
|
|
bool AsmVerbosityDefault(false);
|
2006-05-24 19:04:05 +02:00
|
|
|
}
|
2004-06-21 23:08:45 +02:00
|
|
|
|
2010-04-13 02:36:43 +02:00
|
|
|
static cl::opt<bool>
|
|
|
|
DataSections("fdata-sections",
|
|
|
|
cl::desc("Emit data into separate sections"),
|
|
|
|
cl::init(false));
|
|
|
|
static cl::opt<bool>
|
|
|
|
FunctionSections("ffunction-sections",
|
|
|
|
cl::desc("Emit functions into separate sections"),
|
|
|
|
cl::init(false));
|
2012-01-13 07:30:30 +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
|
|
|
|
2011-07-08 03:53:10 +02:00
|
|
|
TargetMachine::TargetMachine(const Target &T,
|
2011-12-02 23:16:29 +01:00
|
|
|
StringRef TT, StringRef CPU, StringRef FS,
|
|
|
|
const TargetOptions &Options)
|
2011-07-20 03:27:58 +02:00
|
|
|
: TheTarget(T), TargetTriple(TT), TargetCPU(CPU), TargetFS(FS),
|
|
|
|
CodeGenInfo(0), AsmInfo(0),
|
2010-11-19 03:26:16 +01:00
|
|
|
MCRelaxAll(false),
|
2011-01-23 19:50:12 +01:00
|
|
|
MCNoExecStack(false),
|
2011-03-29 00:49:19 +02:00
|
|
|
MCSaveTempLabels(false),
|
2011-04-30 05:44:37 +02:00
|
|
|
MCUseLoc(true),
|
2011-10-18 01:05:28 +02:00
|
|
|
MCUseCFI(true),
|
2011-12-02 23:16:29 +01:00
|
|
|
MCUseDwarfDirectory(false),
|
|
|
|
Options(Options) {
|
2009-06-09 00:53:56 +02:00
|
|
|
}
|
|
|
|
|
2003-12-28 22:23:38 +01:00
|
|
|
TargetMachine::~TargetMachine() {
|
2011-07-20 03:27:58 +02:00
|
|
|
delete CodeGenInfo;
|
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.
|
2011-07-19 08:37:02 +02:00
|
|
|
Reloc::Model TargetMachine::getRelocationModel() const {
|
|
|
|
if (!CodeGenInfo)
|
|
|
|
return Reloc::Default;
|
|
|
|
return CodeGenInfo->getRelocationModel();
|
2006-02-22 21:19:42 +01:00
|
|
|
}
|
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.
|
2011-07-20 09:51:56 +02:00
|
|
|
CodeModel::Model TargetMachine::getCodeModel() const {
|
|
|
|
if (!CodeGenInfo)
|
|
|
|
return CodeModel::Default;
|
|
|
|
return CodeGenInfo->getCodeModel();
|
2006-07-06 03:53:36 +02:00
|
|
|
}
|
|
|
|
|
2012-06-23 13:37:03 +02:00
|
|
|
/// Get the IR-specified TLS model for Var.
|
|
|
|
static TLSModel::Model getSelectedTLSModel(const GlobalVariable *Var) {
|
|
|
|
switch (Var->getThreadLocalMode()) {
|
|
|
|
case GlobalVariable::NotThreadLocal:
|
|
|
|
llvm_unreachable("getSelectedTLSModel for non-TLS variable");
|
|
|
|
break;
|
|
|
|
case GlobalVariable::GeneralDynamicTLSModel:
|
|
|
|
return TLSModel::GeneralDynamic;
|
|
|
|
case GlobalVariable::LocalDynamicTLSModel:
|
|
|
|
return TLSModel::LocalDynamic;
|
|
|
|
case GlobalVariable::InitialExecTLSModel:
|
|
|
|
return TLSModel::InitialExec;
|
|
|
|
case GlobalVariable::LocalExecTLSModel:
|
|
|
|
return TLSModel::LocalExec;
|
|
|
|
}
|
|
|
|
llvm_unreachable("invalid TLS model");
|
|
|
|
}
|
|
|
|
|
2012-04-08 19:20:55 +02:00
|
|
|
TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
|
2012-06-23 02:30:03 +02:00
|
|
|
// If GV is an alias then use the aliasee for determining
|
|
|
|
// thread-localness.
|
|
|
|
if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
|
|
|
|
GV = GA->resolveAliasedGlobal(false);
|
|
|
|
const GlobalVariable *Var = cast<GlobalVariable>(GV);
|
|
|
|
|
|
|
|
bool isLocal = Var->hasLocalLinkage();
|
|
|
|
bool isDeclaration = Var->isDeclaration();
|
2012-06-23 13:37:03 +02:00
|
|
|
bool isPIC = getRelocationModel() == Reloc::PIC_;
|
|
|
|
bool isPIE = Options.PositionIndependentExecutable;
|
2012-04-08 19:20:55 +02:00
|
|
|
// FIXME: what should we do for protected and internal visibility?
|
|
|
|
// For variables, is internal different from hidden?
|
2012-06-23 02:30:03 +02:00
|
|
|
bool isHidden = Var->hasHiddenVisibility();
|
2012-04-08 19:20:55 +02:00
|
|
|
|
2012-06-23 13:37:03 +02:00
|
|
|
TLSModel::Model Model;
|
|
|
|
if (isPIC && !isPIE) {
|
2012-04-08 19:20:55 +02:00
|
|
|
if (isLocal || isHidden)
|
2012-06-23 13:37:03 +02:00
|
|
|
Model = TLSModel::LocalDynamic;
|
2012-04-08 19:20:55 +02:00
|
|
|
else
|
2012-06-23 13:37:03 +02:00
|
|
|
Model = TLSModel::GeneralDynamic;
|
2012-04-08 19:20:55 +02:00
|
|
|
} else {
|
|
|
|
if (!isDeclaration || isHidden)
|
2012-06-23 13:37:03 +02:00
|
|
|
Model = TLSModel::LocalExec;
|
2012-04-08 19:20:55 +02:00
|
|
|
else
|
2012-06-23 13:37:03 +02:00
|
|
|
Model = TLSModel::InitialExec;
|
2012-04-08 19:20:55 +02:00
|
|
|
}
|
2012-06-23 13:37:03 +02:00
|
|
|
|
|
|
|
// If the user specified a more specific model, use that.
|
|
|
|
TLSModel::Model SelectedModel = getSelectedTLSModel(Var);
|
|
|
|
if (SelectedModel > Model)
|
|
|
|
return SelectedModel;
|
|
|
|
|
|
|
|
return Model;
|
2012-04-08 19:20:55 +02:00
|
|
|
}
|
|
|
|
|
2011-11-16 09:38:26 +01:00
|
|
|
/// getOptLevel - Returns the optimization level: None, Less,
|
|
|
|
/// Default, or Aggressive.
|
|
|
|
CodeGenOpt::Level TargetMachine::getOptLevel() const {
|
|
|
|
if (!CodeGenInfo)
|
|
|
|
return CodeGenOpt::Default;
|
|
|
|
return CodeGenInfo->getOptLevel();
|
|
|
|
}
|
|
|
|
|
2009-03-25 02:47:28 +01:00
|
|
|
bool TargetMachine::getAsmVerbosityDefault() {
|
|
|
|
return AsmVerbosityDefault;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TargetMachine::setAsmVerbosityDefault(bool V) {
|
|
|
|
AsmVerbosityDefault = V;
|
|
|
|
}
|
|
|
|
|
2010-04-13 02:36:43 +02:00
|
|
|
bool TargetMachine::getFunctionSections() {
|
|
|
|
return FunctionSections;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TargetMachine::getDataSections() {
|
|
|
|
return DataSections;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TargetMachine::setFunctionSections(bool V) {
|
|
|
|
FunctionSections = V;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TargetMachine::setDataSections(bool V) {
|
|
|
|
DataSections = V;
|
|
|
|
}
|