Added MipsMachineFunction class, to hold Mips dinamic stack info when inserting Prolo...
[oota-llvm.git] / lib / Target / Mips / MipsSubtarget.h
1 //=====-- MipsSubtarget.h - Define Subtarget for the Mips -----*- C++ -*--====//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Bruno Cardoso Lopes and is distributed under the 
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the Mips specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef MIPSSUBTARGET_H
15 #define MIPSSUBTARGET_H
16
17 #include "llvm/Target/TargetSubtarget.h"
18 #include "llvm/Target/TargetMachine.h"
19
20 #include <string>
21
22 namespace llvm {
23 class Module;
24
25 class MipsSubtarget : public TargetSubtarget {
26 protected:
27   bool isR3000;
28 public:
29   /// This constructor initializes the data members to match that
30   /// of the specified module.
31   ///
32   MipsSubtarget(const TargetMachine &TM, const Module &M, 
33                 const std::string &FS);
34   
35   /// ParseSubtargetFeatures - Parses features string setting specified 
36   /// subtarget options.  Definition of function is auto generated by tblgen.
37   void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
38
39   bool IsR3000() const { return isR3000; }
40 };
41 } // End llvm namespace
42
43 #endif