mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
5f6c901f02
This provides a new way to access the TargetMachine through TargetPassConfig, as a dependency. The patterns replaced here are: * Passes handling a null TargetMachine call `getAnalysisIfAvailable<TargetPassConfig>`. * Passes not handling a null TargetMachine `addRequired<TargetPassConfig>` and call `getAnalysis<TargetPassConfig>`. * MachineFunctionPasses now use MF.getTarget(). * Remove all the TargetMachine constructors. * Remove INITIALIZE_TM_PASS. This fixes a crash when running `llc -start-before prologepilog`. PEI needs StackProtector, which gets constructed without a TargetMachine by the pass manager. The StackProtector pass doesn't handle the case where there is no TargetMachine, so it segfaults. Related to PR30324. Differential Revision: https://reviews.llvm.org/D33222 llvm-svn: 303360
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
//===----------------------------------------------------------------------===//
|
|
// Instruction Selector Subtarget Control
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// This file defines a pass used to change the subtarget for the
|
|
// Mips Instruction selector.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "Mips.h"
|
|
#include "MipsTargetMachine.h"
|
|
#include "llvm/CodeGen/TargetPassConfig.h"
|
|
#include "llvm/Support/Debug.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
#define DEBUG_TYPE "mips-isel"
|
|
|
|
namespace {
|
|
class MipsModuleDAGToDAGISel : public MachineFunctionPass {
|
|
public:
|
|
static char ID;
|
|
|
|
MipsModuleDAGToDAGISel() : MachineFunctionPass(ID) {}
|
|
|
|
// Pass Name
|
|
StringRef getPassName() const override {
|
|
return "MIPS DAG->DAG Pattern Instruction Selection";
|
|
}
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
|
AU.addRequired<TargetPassConfig>();
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
}
|
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override;
|
|
};
|
|
|
|
char MipsModuleDAGToDAGISel::ID = 0;
|
|
}
|
|
|
|
bool MipsModuleDAGToDAGISel::runOnMachineFunction(MachineFunction &MF) {
|
|
DEBUG(errs() << "In MipsModuleDAGToDAGISel::runMachineFunction\n");
|
|
auto &TPC = getAnalysis<TargetPassConfig>();
|
|
auto &TM = TPC.getTM<MipsTargetMachine>();
|
|
TM.resetSubtarget(&MF);
|
|
return false;
|
|
}
|
|
|
|
llvm::FunctionPass *llvm::createMipsModuleISelDagPass() {
|
|
return new MipsModuleDAGToDAGISel();
|
|
}
|