mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
df40ece177
Re-land r321234. It had to be reverted because it broke the shared library build. The shared library build broke because there was a missing LLVMBuild dependency from lib/Passes (which calls TargetMachine::getTargetIRAnalysis) to lib/Target. As far as I can tell, this problem was always there but was somehow masked before (perhaps because TargetMachine::getTargetIRAnalysis was a virtual function). Original commit message: This makes the TargetMachine interface a bit simpler. We still need the std::function in TargetIRAnalysis to avoid having to add a dependency from Analysis to Target. See discussion: http://lists.llvm.org/pipermail/llvm-dev/2017-December/119749.html I avoided adding all of the backend owners to this review since the change is simple, but let me know if you feel differently about this. Reviewers: echristo, MatzeB, hfinkel Reviewed By: hfinkel Subscribers: jholewinski, jfb, arsenm, dschuff, mcrosier, sdardis, nemanjai, nhaehnle, javed.absar, sbc100, jgravelle-google, aheejin, kbarton, llvm-commits Differential Revision: https://reviews.llvm.org/D41464 llvm-svn: 321375
121 lines
3.9 KiB
C++
121 lines
3.9 KiB
C++
//===-- LanaiTargetMachine.cpp - Define TargetMachine for Lanai ---------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Implements the info about Lanai target spec.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "LanaiTargetMachine.h"
|
|
|
|
#include "Lanai.h"
|
|
#include "LanaiTargetObjectFile.h"
|
|
#include "LanaiTargetTransformInfo.h"
|
|
#include "llvm/Analysis/TargetTransformInfo.h"
|
|
#include "llvm/CodeGen/Passes.h"
|
|
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
|
|
#include "llvm/CodeGen/TargetPassConfig.h"
|
|
#include "llvm/Support/FormattedStream.h"
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
using namespace llvm;
|
|
|
|
namespace llvm {
|
|
void initializeLanaiMemAluCombinerPass(PassRegistry &);
|
|
} // namespace llvm
|
|
|
|
extern "C" void LLVMInitializeLanaiTarget() {
|
|
// Register the target.
|
|
RegisterTargetMachine<LanaiTargetMachine> registered_target(
|
|
getTheLanaiTarget());
|
|
}
|
|
|
|
static std::string computeDataLayout() {
|
|
// Data layout (keep in sync with clang/lib/Basic/Targets.cpp)
|
|
return "E" // Big endian
|
|
"-m:e" // ELF name manging
|
|
"-p:32:32" // 32-bit pointers, 32 bit aligned
|
|
"-i64:64" // 64 bit integers, 64 bit aligned
|
|
"-a:0:32" // 32 bit alignment of objects of aggregate type
|
|
"-n32" // 32 bit native integer width
|
|
"-S64"; // 64 bit natural stack alignment
|
|
}
|
|
|
|
static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
|
|
if (!RM.hasValue())
|
|
return Reloc::PIC_;
|
|
return *RM;
|
|
}
|
|
|
|
static CodeModel::Model getEffectiveCodeModel(Optional<CodeModel::Model> CM) {
|
|
if (CM)
|
|
return *CM;
|
|
return CodeModel::Medium;
|
|
}
|
|
|
|
LanaiTargetMachine::LanaiTargetMachine(const Target &T, const Triple &TT,
|
|
StringRef Cpu, StringRef FeatureString,
|
|
const TargetOptions &Options,
|
|
Optional<Reloc::Model> RM,
|
|
Optional<CodeModel::Model> CodeModel,
|
|
CodeGenOpt::Level OptLevel, bool JIT)
|
|
: LLVMTargetMachine(T, computeDataLayout(), TT, Cpu, FeatureString, Options,
|
|
getEffectiveRelocModel(RM),
|
|
getEffectiveCodeModel(CodeModel), OptLevel),
|
|
Subtarget(TT, Cpu, FeatureString, *this, Options, getCodeModel(),
|
|
OptLevel),
|
|
TLOF(new LanaiTargetObjectFile()) {
|
|
initAsmInfo();
|
|
}
|
|
|
|
TargetTransformInfo
|
|
LanaiTargetMachine::getTargetTransformInfo(const Function &F) {
|
|
return TargetTransformInfo(LanaiTTIImpl(this, F));
|
|
}
|
|
|
|
namespace {
|
|
// Lanai Code Generator Pass Configuration Options.
|
|
class LanaiPassConfig : public TargetPassConfig {
|
|
public:
|
|
LanaiPassConfig(LanaiTargetMachine &TM, PassManagerBase *PassManager)
|
|
: TargetPassConfig(TM, *PassManager) {}
|
|
|
|
LanaiTargetMachine &getLanaiTargetMachine() const {
|
|
return getTM<LanaiTargetMachine>();
|
|
}
|
|
|
|
bool addInstSelector() override;
|
|
void addPreSched2() override;
|
|
void addPreEmitPass() override;
|
|
};
|
|
} // namespace
|
|
|
|
TargetPassConfig *
|
|
LanaiTargetMachine::createPassConfig(PassManagerBase &PassManager) {
|
|
return new LanaiPassConfig(*this, &PassManager);
|
|
}
|
|
|
|
// Install an instruction selector pass.
|
|
bool LanaiPassConfig::addInstSelector() {
|
|
addPass(createLanaiISelDag(getLanaiTargetMachine()));
|
|
return false;
|
|
}
|
|
|
|
// Implemented by targets that want to run passes immediately before
|
|
// machine code is emitted.
|
|
void LanaiPassConfig::addPreEmitPass() {
|
|
addPass(createLanaiDelaySlotFillerPass(getLanaiTargetMachine()));
|
|
}
|
|
|
|
// Run passes after prolog-epilog insertion and before the second instruction
|
|
// scheduling pass.
|
|
void LanaiPassConfig::addPreSched2() {
|
|
addPass(createLanaiMemAluCombinerPass());
|
|
}
|