2012-12-12 05:25:42 +08:00
|
|
|
//===-- AMDGPUTargetMachine.cpp - TargetMachine for hw codegen targets-----===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// \file
|
|
|
|
/// \brief The AMDGPU target machine contains all of the hardware specific
|
|
|
|
/// information needed to emit code for R600 and SI GPUs.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "AMDGPUTargetMachine.h"
|
2015-12-10 10:13:01 +08:00
|
|
|
#include "AMDGPUTargetObjectFile.h"
|
2012-12-12 05:25:42 +08:00
|
|
|
#include "AMDGPU.h"
|
2015-01-31 19:17:59 +08:00
|
|
|
#include "AMDGPUTargetTransformInfo.h"
|
2012-12-12 05:25:42 +08:00
|
|
|
#include "R600ISelLowering.h"
|
|
|
|
#include "R600InstrInfo.h"
|
2013-03-06 02:41:32 +08:00
|
|
|
#include "R600MachineScheduler.h"
|
2012-12-12 05:25:42 +08:00
|
|
|
#include "SIISelLowering.h"
|
|
|
|
#include "SIInstrInfo.h"
|
|
|
|
#include "llvm/Analysis/Passes.h"
|
2016-04-15 03:09:28 +08:00
|
|
|
#include "llvm/CodeGen/GlobalISel/IRTranslator.h"
|
2012-12-12 05:25:42 +08:00
|
|
|
#include "llvm/CodeGen/MachineFunctionAnalysis.h"
|
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2016-05-10 11:21:59 +08:00
|
|
|
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
|
|
|
|
#include "llvm/CodeGen/TargetPassConfig.h"
|
2014-01-13 17:26:24 +08:00
|
|
|
#include "llvm/IR/Verifier.h"
|
2012-12-12 05:25:42 +08:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2015-02-13 18:01:29 +08:00
|
|
|
#include "llvm/IR/LegacyPassManager.h"
|
2012-12-12 05:25:42 +08:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
#include "llvm/Support/raw_os_ostream.h"
|
|
|
|
#include "llvm/Transforms/IPO.h"
|
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2016-06-15 08:11:01 +08:00
|
|
|
#include "llvm/Transforms/Scalar/GVN.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2012-12-12 05:25:42 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2015-06-13 11:28:10 +08:00
|
|
|
extern "C" void LLVMInitializeAMDGPUTarget() {
|
2012-12-12 05:25:42 +08:00
|
|
|
// Register the target
|
2015-02-12 01:11:50 +08:00
|
|
|
RegisterTargetMachine<R600TargetMachine> X(TheAMDGPUTarget);
|
2015-01-07 02:00:21 +08:00
|
|
|
RegisterTargetMachine<GCNTargetMachine> Y(TheGCNTarget);
|
2015-10-02 06:10:03 +08:00
|
|
|
|
|
|
|
PassRegistry *PR = PassRegistry::getPassRegistry();
|
2015-10-13 01:43:59 +08:00
|
|
|
initializeSILowerI1CopiesPass(*PR);
|
2015-11-04 06:30:13 +08:00
|
|
|
initializeSIFixSGPRCopiesPass(*PR);
|
2015-10-13 01:43:59 +08:00
|
|
|
initializeSIFoldOperandsPass(*PR);
|
2016-06-10 07:18:47 +08:00
|
|
|
initializeSIShrinkInstructionsPass(*PR);
|
2015-10-07 08:42:53 +08:00
|
|
|
initializeSIFixControlFlowLiveIntervalsPass(*PR);
|
|
|
|
initializeSILoadStoreOptimizerPass(*PR);
|
2015-11-07 02:01:57 +08:00
|
|
|
initializeAMDGPUAnnotateKernelFeaturesPass(*PR);
|
2015-12-16 04:55:55 +08:00
|
|
|
initializeAMDGPUAnnotateUniformValuesPass(*PR);
|
2016-01-30 13:19:45 +08:00
|
|
|
initializeAMDGPUPromoteAllocaPass(*PR);
|
2016-01-20 23:48:27 +08:00
|
|
|
initializeSIAnnotateControlFlowPass(*PR);
|
2016-05-11 02:33:41 +08:00
|
|
|
initializeSIDebuggerInsertNopsPass(*PR);
|
2016-02-06 01:42:38 +08:00
|
|
|
initializeSIInsertWaitsPass(*PR);
|
2016-03-22 04:28:33 +08:00
|
|
|
initializeSIWholeQuadModePass(*PR);
|
2016-02-12 10:16:10 +08:00
|
|
|
initializeSILowerControlFlowPass(*PR);
|
2016-06-02 08:04:22 +08:00
|
|
|
initializeSIDebuggerInsertNopsPass(*PR);
|
2012-12-12 05:25:42 +08:00
|
|
|
}
|
|
|
|
|
2015-09-26 05:41:28 +08:00
|
|
|
static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
|
2015-12-10 10:13:01 +08:00
|
|
|
return make_unique<AMDGPUTargetObjectFile>();
|
2015-09-26 05:41:28 +08:00
|
|
|
}
|
|
|
|
|
2013-03-06 02:41:32 +08:00
|
|
|
static ScheduleDAGInstrs *createR600MachineScheduler(MachineSchedContext *C) {
|
2014-04-22 04:32:32 +08:00
|
|
|
return new ScheduleDAGMILive(C, make_unique<R600SchedStrategy>());
|
2013-03-06 02:41:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static MachineSchedRegistry
|
2016-01-14 00:10:10 +08:00
|
|
|
R600SchedRegistry("r600", "Run R600's custom scheduler",
|
|
|
|
createR600MachineScheduler);
|
|
|
|
|
|
|
|
static MachineSchedRegistry
|
|
|
|
SISchedRegistry("si", "Run SI's custom scheduler",
|
|
|
|
createSIMachineScheduler);
|
2013-03-06 02:41:32 +08:00
|
|
|
|
2016-06-01 00:57:45 +08:00
|
|
|
static StringRef computeDataLayout(const Triple &TT) {
|
|
|
|
if (TT.getArch() == Triple::r600) {
|
|
|
|
// 32-bit pointers.
|
|
|
|
return "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128"
|
|
|
|
"-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64";
|
2015-01-29 00:04:26 +08:00
|
|
|
}
|
|
|
|
|
2016-06-01 00:57:45 +08:00
|
|
|
// 32-bit private, local, and region pointers. 64-bit global, constant and
|
|
|
|
// flat.
|
|
|
|
return "e-p:32:32-p1:64:64-p2:64:64-p3:32:32-p4:64:64-p5:32:32"
|
|
|
|
"-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128"
|
|
|
|
"-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64";
|
2015-01-29 00:04:26 +08:00
|
|
|
}
|
|
|
|
|
2016-01-27 10:17:49 +08:00
|
|
|
LLVM_READNONE
|
|
|
|
static StringRef getGPUOrDefault(const Triple &TT, StringRef GPU) {
|
|
|
|
if (!GPU.empty())
|
|
|
|
return GPU;
|
|
|
|
|
|
|
|
// HSA only supports CI+, so change the default GPU to a CI for HSA.
|
|
|
|
if (TT.getArch() == Triple::amdgcn)
|
|
|
|
return (TT.getOS() == Triple::AMDHSA) ? "kaveri" : "tahiti";
|
|
|
|
|
2016-06-03 02:37:16 +08:00
|
|
|
return "r600";
|
2016-01-27 10:17:49 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 06:04:49 +08:00
|
|
|
static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
|
|
|
|
if (!RM.hasValue())
|
|
|
|
return Reloc::PIC_;
|
|
|
|
return *RM;
|
|
|
|
}
|
|
|
|
|
2015-06-12 03:41:26 +08:00
|
|
|
AMDGPUTargetMachine::AMDGPUTargetMachine(const Target &T, const Triple &TT,
|
2014-07-26 06:22:39 +08:00
|
|
|
StringRef CPU, StringRef FS,
|
2016-05-19 06:04:49 +08:00
|
|
|
TargetOptions Options,
|
|
|
|
Optional<Reloc::Model> RM,
|
2014-07-26 06:22:39 +08:00
|
|
|
CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OptLevel)
|
2016-05-19 06:04:49 +08:00
|
|
|
: LLVMTargetMachine(T, computeDataLayout(TT), TT, getGPUOrDefault(TT, CPU),
|
|
|
|
FS, Options, getEffectiveRelocModel(RM), CM, OptLevel),
|
2016-01-27 10:17:49 +08:00
|
|
|
TLOF(createTLOF(getTargetTriple())),
|
2016-05-19 06:04:49 +08:00
|
|
|
Subtarget(TT, getTargetCPU(), FS, *this), IntrinsicInfo() {
|
2013-12-07 09:49:19 +08:00
|
|
|
setRequiresStructuredCFG(true);
|
2013-05-13 09:16:13 +08:00
|
|
|
initAsmInfo();
|
2012-12-12 05:25:42 +08:00
|
|
|
}
|
|
|
|
|
2015-09-26 05:41:28 +08:00
|
|
|
AMDGPUTargetMachine::~AMDGPUTargetMachine() { }
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2015-02-12 01:11:50 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// R600 Target Machine (R600 -> Cayman)
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-06-12 03:41:26 +08:00
|
|
|
R600TargetMachine::R600TargetMachine(const Target &T, const Triple &TT,
|
2016-02-06 02:29:17 +08:00
|
|
|
StringRef CPU, StringRef FS,
|
2016-05-19 06:04:49 +08:00
|
|
|
TargetOptions Options,
|
|
|
|
Optional<Reloc::Model> RM,
|
2015-06-12 03:41:26 +08:00
|
|
|
CodeModel::Model CM, CodeGenOpt::Level OL)
|
2016-02-06 02:29:17 +08:00
|
|
|
: AMDGPUTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
|
2015-02-12 01:11:50 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GCN Target Machine (SI+)
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-06-12 03:41:26 +08:00
|
|
|
GCNTargetMachine::GCNTargetMachine(const Target &T, const Triple &TT,
|
2016-02-06 02:29:17 +08:00
|
|
|
StringRef CPU, StringRef FS,
|
2016-05-19 06:04:49 +08:00
|
|
|
TargetOptions Options,
|
|
|
|
Optional<Reloc::Model> RM,
|
2015-06-12 03:41:26 +08:00
|
|
|
CodeModel::Model CM, CodeGenOpt::Level OL)
|
2016-02-06 02:29:17 +08:00
|
|
|
: AMDGPUTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
|
2015-02-12 01:11:50 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AMDGPU Pass Setup
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
namespace {
|
2016-03-03 11:53:29 +08:00
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
class AMDGPUPassConfig : public TargetPassConfig {
|
|
|
|
public:
|
2015-02-12 01:11:51 +08:00
|
|
|
AMDGPUPassConfig(TargetMachine *TM, PassManagerBase &PM)
|
2015-09-26 01:41:20 +08:00
|
|
|
: TargetPassConfig(TM, PM) {
|
|
|
|
|
|
|
|
// Exceptions and StackMaps are not supported, so these passes will never do
|
|
|
|
// anything.
|
|
|
|
disablePass(&StackMapLivenessID);
|
|
|
|
disablePass(&FuncletLayoutID);
|
|
|
|
}
|
2012-12-12 05:25:42 +08:00
|
|
|
|
|
|
|
AMDGPUTargetMachine &getAMDGPUTargetMachine() const {
|
|
|
|
return getTM<AMDGPUTargetMachine>();
|
|
|
|
}
|
2013-09-20 13:14:41 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
ScheduleDAGInstrs *
|
|
|
|
createMachineScheduler(MachineSchedContext *C) const override {
|
2015-03-21 11:17:25 +08:00
|
|
|
const AMDGPUSubtarget &ST = *getAMDGPUTargetMachine().getSubtargetImpl();
|
2013-09-20 13:14:41 +08:00
|
|
|
if (ST.getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS)
|
|
|
|
return createR600MachineScheduler(C);
|
2016-01-21 12:28:34 +08:00
|
|
|
else if (ST.enableSIScheduler())
|
|
|
|
return createSIMachineScheduler(C);
|
2014-04-25 13:30:21 +08:00
|
|
|
return nullptr;
|
2013-09-20 13:14:41 +08:00
|
|
|
}
|
|
|
|
|
2016-06-15 08:11:01 +08:00
|
|
|
void addEarlyCSEOrGVNPass();
|
|
|
|
void addStraightLineScalarOptimizationPasses();
|
2014-11-04 03:49:05 +08:00
|
|
|
void addIRPasses() override;
|
2015-09-26 01:41:20 +08:00
|
|
|
bool addPreISel() override;
|
|
|
|
bool addInstSelector() override;
|
|
|
|
bool addGCPasses() override;
|
2015-02-12 01:11:51 +08:00
|
|
|
};
|
|
|
|
|
2016-03-11 16:00:27 +08:00
|
|
|
class R600PassConfig final : public AMDGPUPassConfig {
|
2015-02-12 01:11:51 +08:00
|
|
|
public:
|
|
|
|
R600PassConfig(TargetMachine *TM, PassManagerBase &PM)
|
|
|
|
: AMDGPUPassConfig(TM, PM) { }
|
|
|
|
|
|
|
|
bool addPreISel() override;
|
|
|
|
void addPreRegAlloc() override;
|
|
|
|
void addPreSched2() override;
|
|
|
|
void addPreEmitPass() override;
|
|
|
|
};
|
|
|
|
|
2016-03-11 16:00:27 +08:00
|
|
|
class GCNPassConfig final : public AMDGPUPassConfig {
|
2015-02-12 01:11:51 +08:00
|
|
|
public:
|
|
|
|
GCNPassConfig(TargetMachine *TM, PassManagerBase &PM)
|
|
|
|
: AMDGPUPassConfig(TM, PM) { }
|
2014-04-29 15:57:24 +08:00
|
|
|
bool addPreISel() override;
|
2016-04-15 05:58:24 +08:00
|
|
|
void addMachineSSAOptimization() override;
|
2014-04-29 15:57:24 +08:00
|
|
|
bool addInstSelector() override;
|
2016-04-15 03:09:28 +08:00
|
|
|
#ifdef LLVM_BUILD_GLOBAL_ISEL
|
|
|
|
bool addIRTranslator() override;
|
|
|
|
bool addRegBankSelect() override;
|
|
|
|
#endif
|
2015-10-02 06:10:03 +08:00
|
|
|
void addFastRegAlloc(FunctionPass *RegAllocPass) override;
|
|
|
|
void addOptimizedRegAlloc(FunctionPass *RegAllocPass) override;
|
2014-12-12 05:26:47 +08:00
|
|
|
void addPreRegAlloc() override;
|
|
|
|
void addPreSched2() override;
|
|
|
|
void addPreEmitPass() override;
|
2012-12-12 05:25:42 +08:00
|
|
|
};
|
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
} // End of anonymous namespace
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2015-02-01 21:20:00 +08:00
|
|
|
TargetIRAnalysis AMDGPUTargetMachine::getTargetIRAnalysis() {
|
2015-09-17 07:38:13 +08:00
|
|
|
return TargetIRAnalysis([this](const Function &F) {
|
2015-07-09 10:08:42 +08:00
|
|
|
return TargetTransformInfo(
|
|
|
|
AMDGPUTTIImpl(this, F.getParent()->getDataLayout()));
|
|
|
|
});
|
2013-07-27 08:01:07 +08:00
|
|
|
}
|
|
|
|
|
2016-06-15 08:11:01 +08:00
|
|
|
void AMDGPUPassConfig::addEarlyCSEOrGVNPass() {
|
|
|
|
if (getOptLevel() == CodeGenOpt::Aggressive)
|
|
|
|
addPass(createGVNPass());
|
|
|
|
else
|
|
|
|
addPass(createEarlyCSEPass());
|
|
|
|
}
|
|
|
|
|
|
|
|
void AMDGPUPassConfig::addStraightLineScalarOptimizationPasses() {
|
|
|
|
addPass(createSeparateConstOffsetFromGEPPass());
|
|
|
|
addPass(createSpeculativeExecutionPass());
|
|
|
|
// ReassociateGEPs exposes more opportunites for SLSR. See
|
|
|
|
// the example in reassociate-geps-and-slsr.ll.
|
|
|
|
addPass(createStraightLineStrengthReducePass());
|
|
|
|
// SeparateConstOffsetFromGEP and SLSR creates common expressions which GVN or
|
|
|
|
// EarlyCSE can reuse.
|
|
|
|
addEarlyCSEOrGVNPass();
|
|
|
|
// Run NaryReassociate after EarlyCSE/GVN to be more effective.
|
|
|
|
addPass(createNaryReassociatePass());
|
|
|
|
// NaryReassociate on GEPs creates redundant common expressions, so run
|
|
|
|
// EarlyCSE after it.
|
|
|
|
addPass(createEarlyCSEPass());
|
|
|
|
}
|
|
|
|
|
2014-11-04 03:49:05 +08:00
|
|
|
void AMDGPUPassConfig::addIRPasses() {
|
2016-05-18 23:41:07 +08:00
|
|
|
// There is no reason to run these.
|
|
|
|
disablePass(&StackMapLivenessID);
|
|
|
|
disablePass(&FuncletLayoutID);
|
|
|
|
disablePass(&PatchableFunctionID);
|
|
|
|
|
2014-11-04 03:49:05 +08:00
|
|
|
// Function calls are not supported, so make sure we inline everything.
|
|
|
|
addPass(createAMDGPUAlwaysInlinePass());
|
|
|
|
addPass(createAlwaysInlinerPass());
|
|
|
|
// We need to add the barrier noop pass, otherwise adding the function
|
|
|
|
// inlining pass will cause all of the PassConfigs passes to be run
|
|
|
|
// one function at a time, which means if we have a nodule with two
|
|
|
|
// functions, then we will generate code for the first function
|
|
|
|
// without ever running any passes on the second.
|
|
|
|
addPass(createBarrierNoopPass());
|
2015-11-07 02:01:57 +08:00
|
|
|
|
2015-08-08 07:19:30 +08:00
|
|
|
// Handle uses of OpenCL image2d_t, image3d_t and sampler_t arguments.
|
|
|
|
addPass(createAMDGPUOpenCLImageTypeLoweringPass());
|
2015-11-07 02:01:57 +08:00
|
|
|
|
2016-01-30 13:19:45 +08:00
|
|
|
const AMDGPUTargetMachine &TM = getAMDGPUTargetMachine();
|
|
|
|
const AMDGPUSubtarget &ST = *TM.getSubtargetImpl();
|
2016-02-03 03:32:42 +08:00
|
|
|
if (TM.getOptLevel() > CodeGenOpt::None && ST.isPromoteAllocaEnabled()) {
|
2016-01-30 13:19:45 +08:00
|
|
|
addPass(createAMDGPUPromoteAlloca(&TM));
|
2014-07-13 10:08:26 +08:00
|
|
|
addPass(createSROAPass());
|
|
|
|
}
|
2016-06-15 08:11:01 +08:00
|
|
|
|
|
|
|
addStraightLineScalarOptimizationPasses();
|
|
|
|
|
|
|
|
TargetPassConfig::addIRPasses();
|
|
|
|
|
|
|
|
// EarlyCSE is not always strong enough to clean up what LSR produces. For
|
|
|
|
// example, GVN can combine
|
|
|
|
//
|
|
|
|
// %0 = add %a, %b
|
|
|
|
// %1 = add %b, %a
|
|
|
|
//
|
|
|
|
// and
|
|
|
|
//
|
|
|
|
// %0 = shl nsw %a, 2
|
|
|
|
// %1 = shl %a, 2
|
|
|
|
//
|
|
|
|
// but EarlyCSE can do neither of them.
|
|
|
|
if (getOptLevel() != CodeGenOpt::None)
|
|
|
|
addEarlyCSEOrGVNPass();
|
2014-06-18 00:53:14 +08:00
|
|
|
}
|
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
bool
|
|
|
|
AMDGPUPassConfig::addPreISel() {
|
2013-08-06 10:43:45 +08:00
|
|
|
addPass(createFlattenCFGPass());
|
2012-12-12 05:25:42 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AMDGPUPassConfig::addInstSelector() {
|
|
|
|
addPass(createAMDGPUISelDag(getAMDGPUTargetMachine()));
|
2015-02-12 01:11:51 +08:00
|
|
|
return false;
|
|
|
|
}
|
2014-11-19 05:06:58 +08:00
|
|
|
|
2015-09-26 01:41:20 +08:00
|
|
|
bool AMDGPUPassConfig::addGCPasses() {
|
|
|
|
// Do nothing. GC is not supported.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// R600 Pass Setup
|
|
|
|
//===----------------------------------------------------------------------===//
|
2014-11-19 05:06:58 +08:00
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
bool R600PassConfig::addPreISel() {
|
|
|
|
AMDGPUPassConfig::addPreISel();
|
2016-02-13 07:45:29 +08:00
|
|
|
const AMDGPUSubtarget &ST = *getAMDGPUTargetMachine().getSubtargetImpl();
|
|
|
|
if (ST.IsIRStructurizerEnabled())
|
|
|
|
addPass(createStructurizeCFGPass());
|
2015-02-12 01:11:51 +08:00
|
|
|
addPass(createR600TextureIntrinsicsReplacer());
|
2012-12-12 05:25:42 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
void R600PassConfig::addPreRegAlloc() {
|
|
|
|
addPass(createR600VectorRegMerger(*TM));
|
2012-12-12 05:25:42 +08:00
|
|
|
}
|
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
void R600PassConfig::addPreSched2() {
|
2015-03-21 11:17:25 +08:00
|
|
|
const AMDGPUSubtarget &ST = *getAMDGPUTargetMachine().getSubtargetImpl();
|
2015-02-12 01:11:51 +08:00
|
|
|
addPass(createR600EmitClauseMarkers(), false);
|
|
|
|
if (ST.isIfCvtEnabled())
|
|
|
|
addPass(&IfConverterID, false);
|
|
|
|
addPass(createR600ClauseMergePass(*TM), false);
|
|
|
|
}
|
2013-01-19 05:15:53 +08:00
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
void R600PassConfig::addPreEmitPass() {
|
|
|
|
addPass(createAMDGPUCFGStructurizerPass(), false);
|
|
|
|
addPass(createR600ExpandSpecialInstrsPass(*TM), false);
|
|
|
|
addPass(&FinalizeMachineBundlesID, false);
|
|
|
|
addPass(createR600Packetizer(*TM), false);
|
|
|
|
addPass(createR600ControlFlowFinalizer(*TM), false);
|
2012-12-12 05:25:42 +08:00
|
|
|
}
|
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
TargetPassConfig *R600TargetMachine::createPassConfig(PassManagerBase &PM) {
|
|
|
|
return new R600PassConfig(this, PM);
|
|
|
|
}
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GCN Pass Setup
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
bool GCNPassConfig::addPreISel() {
|
|
|
|
AMDGPUPassConfig::addPreISel();
|
2015-11-07 02:01:57 +08:00
|
|
|
|
|
|
|
// FIXME: We need to run a pass to propagate the attributes when calls are
|
|
|
|
// supported.
|
|
|
|
addPass(&AMDGPUAnnotateKernelFeaturesID);
|
2016-02-13 07:45:29 +08:00
|
|
|
addPass(createStructurizeCFGPass(true)); // true -> SkipUniformRegions
|
2015-02-12 01:11:51 +08:00
|
|
|
addPass(createSinkingPass());
|
|
|
|
addPass(createSITypeRewriter());
|
2015-12-16 04:55:55 +08:00
|
|
|
addPass(createAMDGPUAnnotateUniformValues());
|
2016-02-13 07:45:29 +08:00
|
|
|
addPass(createSIAnnotateControlFlowPass());
|
2015-12-16 04:55:55 +08:00
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-15 05:58:24 +08:00
|
|
|
void GCNPassConfig::addMachineSSAOptimization() {
|
|
|
|
TargetPassConfig::addMachineSSAOptimization();
|
|
|
|
|
|
|
|
// We want to fold operands after PeepholeOptimizer has run (or as part of
|
|
|
|
// it), because it will eliminate extra copies making it easier to fold the
|
|
|
|
// real source operand. We want to eliminate dead instructions after, so that
|
|
|
|
// we see fewer uses of the copies. We then need to clean up the dead
|
|
|
|
// instructions leftover after the operands are folded as well.
|
|
|
|
//
|
|
|
|
// XXX - Can we get away without running DeadMachineInstructionElim again?
|
|
|
|
addPass(&SIFoldOperandsID);
|
|
|
|
addPass(&DeadMachineInstructionElimID);
|
|
|
|
}
|
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
bool GCNPassConfig::addInstSelector() {
|
|
|
|
AMDGPUPassConfig::addInstSelector();
|
|
|
|
addPass(createSILowerI1CopiesPass());
|
2015-11-04 06:30:13 +08:00
|
|
|
addPass(&SIFixSGPRCopiesID);
|
2015-02-12 01:11:51 +08:00
|
|
|
return false;
|
2012-12-12 05:25:42 +08:00
|
|
|
}
|
|
|
|
|
2016-04-15 03:09:28 +08:00
|
|
|
#ifdef LLVM_BUILD_GLOBAL_ISEL
|
|
|
|
bool GCNPassConfig::addIRTranslator() {
|
|
|
|
addPass(new IRTranslator());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GCNPassConfig::addRegBankSelect() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
void GCNPassConfig::addPreRegAlloc() {
|
2015-03-21 11:17:25 +08:00
|
|
|
const AMDGPUSubtarget &ST = *getAMDGPUTargetMachine().getSubtargetImpl();
|
2015-05-13 01:13:02 +08:00
|
|
|
|
|
|
|
// This needs to be run directly before register allocation because
|
|
|
|
// earlier passes might recompute live intervals.
|
|
|
|
// TODO: handle CodeGenOpt::None; fast RA ignores spill weights set by the pass
|
|
|
|
if (getOptLevel() > CodeGenOpt::None) {
|
|
|
|
insertPass(&MachineSchedulerID, &SIFixControlFlowLiveIntervalsID);
|
|
|
|
}
|
|
|
|
|
2015-02-12 01:11:51 +08:00
|
|
|
if (getOptLevel() > CodeGenOpt::None && ST.loadStoreOptEnabled()) {
|
2015-03-21 11:17:25 +08:00
|
|
|
// Don't do this with no optimizations since it throws away debug info by
|
|
|
|
// merging nonadjacent loads.
|
2015-02-12 01:11:51 +08:00
|
|
|
|
2015-03-21 11:17:25 +08:00
|
|
|
// This should be run after scheduling, but before register allocation. It
|
|
|
|
// also need extra copies to the address operand to be eliminated.
|
|
|
|
insertPass(&MachineSchedulerID, &SILoadStoreOptimizerID);
|
2015-07-15 01:57:36 +08:00
|
|
|
insertPass(&MachineSchedulerID, &RegisterCoalescerID);
|
2012-12-12 05:25:42 +08:00
|
|
|
}
|
2015-02-12 01:11:51 +08:00
|
|
|
addPass(createSIShrinkInstructionsPass(), false);
|
2016-03-22 04:28:33 +08:00
|
|
|
addPass(createSIWholeQuadModePass());
|
2015-10-02 06:10:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void GCNPassConfig::addFastRegAlloc(FunctionPass *RegAllocPass) {
|
|
|
|
TargetPassConfig::addFastRegAlloc(RegAllocPass);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GCNPassConfig::addOptimizedRegAlloc(FunctionPass *RegAllocPass) {
|
|
|
|
TargetPassConfig::addOptimizedRegAlloc(RegAllocPass);
|
2015-02-12 01:11:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void GCNPassConfig::addPreSched2() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void GCNPassConfig::addPreEmitPass() {
|
2016-04-30 08:23:06 +08:00
|
|
|
|
|
|
|
// The hazard recognizer that runs as part of the post-ra scheduler does not
|
|
|
|
// gaurantee to be able handle all hazards correctly. This is because
|
|
|
|
// if there are multiple scheduling regions in a basic block, the regions
|
|
|
|
// are scheduled bottom up, so when we begin to schedule a region we don't
|
|
|
|
// know what instructions were emitted directly before it.
|
|
|
|
//
|
|
|
|
// Here we add a stand-alone hazard recognizer pass which can handle all cases.
|
|
|
|
// hazard recognizer pass.
|
|
|
|
addPass(&PostRAHazardRecognizerID);
|
|
|
|
|
2016-06-10 07:19:14 +08:00
|
|
|
addPass(createSIInsertWaitsPass());
|
2016-04-30 04:23:42 +08:00
|
|
|
addPass(createSIShrinkInstructionsPass());
|
2016-06-23 04:15:28 +08:00
|
|
|
addPass(createSILowerControlFlowPass());
|
|
|
|
addPass(createSIDebuggerInsertNopsPass());
|
2015-02-12 01:11:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TargetPassConfig *GCNTargetMachine::createPassConfig(PassManagerBase &PM) {
|
|
|
|
return new GCNPassConfig(this, PM);
|
2012-12-12 05:25:42 +08:00
|
|
|
}
|