]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/llvm/lib/Target/Mips/MipsOs16.h
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / llvm / lib / Target / Mips / MipsOs16.h
1 //===---- MipsOs16.h for Mips Option -Os16                         --------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines an optimization phase for the MIPS target.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "MCTargetDesc/MipsMCTargetDesc.h"
15 #include "MipsTargetMachine.h"
16 #include "llvm/Pass.h"
17 #include "llvm/Target/TargetMachine.h"
18
19
20
21 #ifndef MIPSOS16_H
22 #define MIPSOS16_H
23
24 using namespace llvm;
25
26 namespace llvm {
27
28 class MipsOs16 : public ModulePass {
29
30 public:
31   static char ID;
32
33   MipsOs16() : ModulePass(ID) {
34
35   }
36
37   virtual const char *getPassName() const {
38     return "MIPS Os16 Optimization";
39   }
40
41   virtual bool runOnModule(Module &M);
42
43 };
44
45 ModulePass *createMipsOs16(MipsTargetMachine &TM);
46
47 }
48
49 #endif