2009-06-02 17:52:33 +00:00
|
|
|
//===-- TargetSelect.cpp - Target Chooser Code ----------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2012-04-14 13:54:10 +00:00
|
|
|
// This just asks the TargetRegistry for the appropriate target to use, and
|
|
|
|
// allows the user to specify a specific one on the commandline with -march=x,
|
|
|
|
// -mcpu=y, and -mattr=a,-b,+c. Clients should initialize targets prior to
|
|
|
|
// calling selectTarget().
|
2009-06-02 17:52:33 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-10-14 17:57:32 +00:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2016-07-23 20:41:05 +00:00
|
|
|
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/IR/Module.h"
|
2011-07-17 15:36:56 +00:00
|
|
|
#include "llvm/MC/SubtargetFeature.h"
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "llvm/Support/Host.h"
|
2011-10-20 21:10:27 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2012-04-14 13:54:10 +00:00
|
|
|
|
2009-06-02 17:52:33 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
TargetMachine *EngineBuilder::selectTarget() {
|
2012-12-02 13:10:19 +00:00
|
|
|
Triple TT;
|
|
|
|
|
|
|
|
// MCJIT can generate code for remote targets, but the old JIT and Interpreter
|
|
|
|
// must use the host architecture.
|
2015-01-18 16:17:27 +00:00
|
|
|
if (WhichEngine != EngineKind::Interpreter && M)
|
2012-12-02 13:10:19 +00:00
|
|
|
TT.setTriple(M->getTargetTriple());
|
2013-04-08 18:41:23 +00:00
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
return selectTarget(TT, MArch, MCPU, MAttrs);
|
|
|
|
}
|
|
|
|
|
2009-10-14 17:57:32 +00:00
|
|
|
/// selectTarget - Pick a target either via -march or by guessing the native
|
|
|
|
/// arch. Add any CPU features specified via -mcpu or -mattr.
|
2012-04-14 13:54:10 +00:00
|
|
|
TargetMachine *EngineBuilder::selectTarget(const Triple &TargetTriple,
|
2011-06-12 15:42:51 +00:00
|
|
|
StringRef MArch,
|
|
|
|
StringRef MCPU,
|
2012-04-14 13:54:10 +00:00
|
|
|
const SmallVectorImpl<std::string>& MAttrs) {
|
|
|
|
Triple TheTriple(TargetTriple);
|
2009-10-14 17:57:32 +00:00
|
|
|
if (TheTriple.getTriple().empty())
|
2013-04-08 18:41:23 +00:00
|
|
|
TheTriple.setTriple(sys::getProcessTriple());
|
2009-10-14 17:57:32 +00:00
|
|
|
|
|
|
|
// Adjust the triple to match what the user requested.
|
2014-11-24 09:08:18 +00:00
|
|
|
const Target *TheTarget = nullptr;
|
2009-10-14 17:57:32 +00:00
|
|
|
if (!MArch.empty()) {
|
2017-01-02 19:17:04 +00:00
|
|
|
auto I = find_if(TargetRegistry::targets(),
|
|
|
|
[&](const Target &T) { return MArch == T.getName(); });
|
2009-10-14 17:57:32 +00:00
|
|
|
|
2015-05-27 18:44:32 +00:00
|
|
|
if (I == TargetRegistry::targets().end()) {
|
2012-08-15 19:34:23 +00:00
|
|
|
if (ErrorStr)
|
|
|
|
*ErrorStr = "No available targets are compatible with this -march, "
|
|
|
|
"see -version for the available targets.\n";
|
2014-11-24 09:08:18 +00:00
|
|
|
return nullptr;
|
2009-10-14 17:57:32 +00:00
|
|
|
}
|
|
|
|
|
2015-05-27 18:44:32 +00:00
|
|
|
TheTarget = &*I;
|
|
|
|
|
2009-10-14 17:57:32 +00:00
|
|
|
// Adjust the triple to match (if known), otherwise stick with the
|
2012-04-14 13:54:10 +00:00
|
|
|
// requested/host triple.
|
2009-10-14 17:57:32 +00:00
|
|
|
Triple::ArchType Type = Triple::getArchTypeForLLVMName(MArch);
|
|
|
|
if (Type != Triple::UnknownArch)
|
|
|
|
TheTriple.setArch(Type);
|
|
|
|
} else {
|
2009-06-02 17:52:33 +00:00
|
|
|
std::string Error;
|
2009-10-14 17:57:32 +00:00
|
|
|
TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
|
2014-11-24 09:08:18 +00:00
|
|
|
if (!TheTarget) {
|
2009-06-02 17:52:33 +00:00
|
|
|
if (ErrorStr)
|
|
|
|
*ErrorStr = Error;
|
2014-11-24 09:08:18 +00:00
|
|
|
return nullptr;
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
2009-10-14 17:57:32 +00:00
|
|
|
}
|
|
|
|
|
2009-06-02 17:52:33 +00:00
|
|
|
// Package up features to be passed to target/subtarget
|
|
|
|
std::string FeaturesStr;
|
2011-07-17 15:36:56 +00:00
|
|
|
if (!MAttrs.empty()) {
|
2009-06-02 17:52:33 +00:00
|
|
|
SubtargetFeatures Features;
|
|
|
|
for (unsigned i = 0; i != MAttrs.size(); ++i)
|
|
|
|
Features.AddFeature(MAttrs[i]);
|
|
|
|
FeaturesStr = Features.getString();
|
|
|
|
}
|
|
|
|
|
2013-12-22 00:04:03 +00:00
|
|
|
// FIXME: non-iOS ARM FastISel is broken with MCJIT.
|
2015-01-18 16:17:27 +00:00
|
|
|
if (TheTriple.getArch() == Triple::arm &&
|
2013-12-22 00:04:03 +00:00
|
|
|
!TheTriple.isiOS() &&
|
|
|
|
OptLevel == CodeGenOpt::None) {
|
|
|
|
OptLevel = CodeGenOpt::Less;
|
|
|
|
}
|
|
|
|
|
2009-06-02 17:52:33 +00:00
|
|
|
// Allocate a target...
|
2011-10-20 21:10:27 +00:00
|
|
|
TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
|
|
|
|
MCPU, FeaturesStr,
|
2012-04-14 13:54:10 +00:00
|
|
|
Options,
|
|
|
|
RelocModel, CMModel,
|
|
|
|
OptLevel);
|
2009-06-02 17:52:33 +00:00
|
|
|
assert(Target && "Could not allocate target machine!");
|
2009-10-14 17:57:32 +00:00
|
|
|
return Target;
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|