mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Cleanup and remove a chunk of getARMSubtarget calls in the
ARM TargetMachine pass pipeline construction by pushing them down into the appropriate pass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231323 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
948b2db8a7
commit
b56d7b0316
@ -27,7 +27,9 @@
|
||||
#include "ARM.h"
|
||||
#include "ARMBaseInstrInfo.h"
|
||||
#include "ARMBaseRegisterInfo.h"
|
||||
#include "ARMSubtarget.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||
#include "llvm/CodeGen/MachineInstr.h"
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
@ -678,8 +680,13 @@ bool A15SDOptimizer::runOnInstruction(MachineInstr *MI) {
|
||||
}
|
||||
|
||||
bool A15SDOptimizer::runOnMachineFunction(MachineFunction &Fn) {
|
||||
TII = static_cast<const ARMBaseInstrInfo *>(Fn.getSubtarget().getInstrInfo());
|
||||
TRI = Fn.getSubtarget().getRegisterInfo();
|
||||
const ARMSubtarget &STI = Fn.getSubtarget<ARMSubtarget>();
|
||||
// Since the A15SDOptimizer pass can insert VDUP instructions, it can only be
|
||||
// enabled when NEON is available.
|
||||
if (!(STI.isCortexA15() && STI.hasNEON()))
|
||||
return false;
|
||||
TII = STI.getInstrInfo();
|
||||
TRI = STI.getRegisterInfo();
|
||||
MRI = &Fn.getRegInfo();
|
||||
bool Modified = false;
|
||||
|
||||
|
@ -146,6 +146,10 @@ namespace {
|
||||
return false;
|
||||
const ARMSubtarget &STI =
|
||||
static_cast<const ARMSubtarget &>(MF.getSubtarget());
|
||||
// Don't do this for Thumb1.
|
||||
if (STI.isThumb1Only())
|
||||
return false;
|
||||
|
||||
const TargetMachine &TM = MF.getTarget();
|
||||
if (TM.getRelocationModel() != Reloc::PIC_)
|
||||
return false;
|
||||
|
@ -339,8 +339,7 @@ bool ARMPassConfig::addPreISel() {
|
||||
bool ARMPassConfig::addInstSelector() {
|
||||
addPass(createARMISelDag(getARMTargetMachine(), getOptLevel()));
|
||||
|
||||
const ARMSubtarget *Subtarget = &getARMSubtarget();
|
||||
if (Subtarget->isTargetELF() && !Subtarget->isThumb1Only() &&
|
||||
if (Triple(TM->getTargetTriple()).isOSBinFormatELF() &&
|
||||
TM->Options.EnableFastISel)
|
||||
addPass(createARMGlobalBaseRegPass());
|
||||
return false;
|
||||
@ -349,12 +348,9 @@ bool ARMPassConfig::addInstSelector() {
|
||||
void ARMPassConfig::addPreRegAlloc() {
|
||||
if (getOptLevel() != CodeGenOpt::None)
|
||||
addPass(createARMLoadStoreOptimizationPass(true));
|
||||
if (getOptLevel() != CodeGenOpt::None && getARMSubtarget().isCortexA9())
|
||||
if (getOptLevel() != CodeGenOpt::None)
|
||||
addPass(createMLxExpansionPass());
|
||||
// Since the A15SDOptimizer pass can insert VDUP instructions, it can only be
|
||||
// enabled when NEON is available.
|
||||
if (getOptLevel() != CodeGenOpt::None && getARMSubtarget().isCortexA15() &&
|
||||
getARMSubtarget().hasNEON() && !DisableA15SDOptimization) {
|
||||
if (getOptLevel() != CodeGenOpt::None && !DisableA15SDOptimization) {
|
||||
addPass(createA15SDOptimizerPass());
|
||||
}
|
||||
}
|
||||
@ -372,26 +368,21 @@ void ARMPassConfig::addPreSched2() {
|
||||
addPass(createARMExpandPseudoPass());
|
||||
|
||||
if (getOptLevel() != CodeGenOpt::None) {
|
||||
if (!getARMSubtarget().isThumb1Only()) {
|
||||
// in v8, IfConversion depends on Thumb instruction widths
|
||||
if (getARMSubtarget().restrictIT() &&
|
||||
!getARMSubtarget().prefers32BitThumb())
|
||||
addPass(createThumb2SizeReductionPass());
|
||||
// in v8, IfConversion depends on Thumb instruction widths
|
||||
if (getARMSubtarget().restrictIT())
|
||||
addPass(createThumb2SizeReductionPass());
|
||||
if (!getARMSubtarget().isThumb1Only())
|
||||
addPass(&IfConverterID);
|
||||
}
|
||||
}
|
||||
if (getARMSubtarget().isThumb2())
|
||||
addPass(createThumb2ITBlockPass());
|
||||
}
|
||||
addPass(createThumb2ITBlockPass());
|
||||
}
|
||||
|
||||
void ARMPassConfig::addPreEmitPass() {
|
||||
if (getARMSubtarget().isThumb2()) {
|
||||
if (!getARMSubtarget().prefers32BitThumb())
|
||||
addPass(createThumb2SizeReductionPass());
|
||||
addPass(createThumb2SizeReductionPass());
|
||||
|
||||
// Constant island pass work on unbundled instructions.
|
||||
// Constant island pass work on unbundled instructions.
|
||||
if (getARMSubtarget().isThumb2())
|
||||
addPass(&UnpackMachineBundlesID);
|
||||
}
|
||||
|
||||
addPass(createARMOptimizeBarriersPass());
|
||||
addPass(createARMConstantIslandPass());
|
||||
|
@ -382,6 +382,9 @@ bool MLxExpansion::runOnMachineFunction(MachineFunction &Fn) {
|
||||
TRI = Fn.getSubtarget().getRegisterInfo();
|
||||
MRI = &Fn.getRegInfo();
|
||||
const ARMSubtarget *STI = &Fn.getSubtarget<ARMSubtarget>();
|
||||
// Only run this for CortexA9.
|
||||
if (!STI->isCortexA9())
|
||||
return false;
|
||||
isLikeA9 = STI->isLikeA9() || STI->isSwift();
|
||||
isSwift = STI->isSwift();
|
||||
|
||||
|
@ -255,6 +255,8 @@ bool Thumb2ITBlockPass::InsertITInstructions(MachineBasicBlock &MBB) {
|
||||
bool Thumb2ITBlockPass::runOnMachineFunction(MachineFunction &Fn) {
|
||||
const ARMSubtarget &STI =
|
||||
static_cast<const ARMSubtarget &>(Fn.getSubtarget());
|
||||
if (!STI.isThumb2())
|
||||
return false;
|
||||
AFI = Fn.getInfo<ARMFunctionInfo>();
|
||||
TII = static_cast<const Thumb2InstrInfo *>(STI.getInstrInfo());
|
||||
TRI = STI.getRegisterInfo();
|
||||
|
@ -1002,6 +1002,9 @@ bool Thumb2SizeReduce::ReduceMBB(MachineBasicBlock &MBB) {
|
||||
|
||||
bool Thumb2SizeReduce::runOnMachineFunction(MachineFunction &MF) {
|
||||
STI = &static_cast<const ARMSubtarget &>(MF.getSubtarget());
|
||||
if (STI->isThumb1Only() || STI->prefers32BitThumb())
|
||||
return false;
|
||||
|
||||
TII = static_cast<const Thumb2InstrInfo *>(STI->getInstrInfo());
|
||||
|
||||
// Optimizing / minimizing size?
|
||||
|
Loading…
x
Reference in New Issue
Block a user