[Alignment] Move OffsetToAlignment to Alignment.h
[llvm-complete.git] / lib / Target / Mips / MipsModuleISelDAGToDAG.cpp
bloba2b55e8bddcd3c91aea62e42edd1de44df8be4df
1 //===----------------------------------------------------------------------===//
2 // Instruction Selector Subtarget Control
3 //===----------------------------------------------------------------------===//
5 //===----------------------------------------------------------------------===//
6 // This file defines a pass used to change the subtarget for the
7 // Mips Instruction selector.
8 //
9 //===----------------------------------------------------------------------===//
11 #include "Mips.h"
12 #include "MipsTargetMachine.h"
13 #include "llvm/CodeGen/TargetPassConfig.h"
14 #include "llvm/CodeGen/StackProtector.h"
15 #include "llvm/Support/Debug.h"
16 #include "llvm/Support/raw_ostream.h"
18 using namespace llvm;
20 #define DEBUG_TYPE "mips-isel"
22 namespace {
23 class MipsModuleDAGToDAGISel : public MachineFunctionPass {
24 public:
25 static char ID;
27 MipsModuleDAGToDAGISel() : MachineFunctionPass(ID) {}
29 // Pass Name
30 StringRef getPassName() const override {
31 return "MIPS DAG->DAG Pattern Instruction Selection";
34 void getAnalysisUsage(AnalysisUsage &AU) const override {
35 AU.addRequired<TargetPassConfig>();
36 AU.addPreserved<StackProtector>();
37 MachineFunctionPass::getAnalysisUsage(AU);
40 bool runOnMachineFunction(MachineFunction &MF) override;
43 char MipsModuleDAGToDAGISel::ID = 0;
46 bool MipsModuleDAGToDAGISel::runOnMachineFunction(MachineFunction &MF) {
47 LLVM_DEBUG(errs() << "In MipsModuleDAGToDAGISel::runMachineFunction\n");
48 auto &TPC = getAnalysis<TargetPassConfig>();
49 auto &TM = TPC.getTM<MipsTargetMachine>();
50 TM.resetSubtarget(&MF);
51 return false;
54 llvm::FunctionPass *llvm::createMipsModuleISelDagPass() {
55 return new MipsModuleDAGToDAGISel();