blob: 0f3641f4047d8c6ca7597736432cd47adc64e982 [file] [log] [blame]
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001//=====-- MipsSubtarget.h - Define Subtarget for the Mips -----*- C++ -*--====//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00007//
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
22namespace llvm {
23class Module;
24
25class MipsSubtarget : public TargetSubtarget {
Bruno Cardoso Lopes13d1b7b2007-08-18 01:52:27 +000026
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000027protected:
Bruno Cardoso Lopes13d1b7b2007-08-18 01:52:27 +000028
29 bool IsMipsIII;
30 InstrItineraryData InstrItins;
31
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000032public:
33 /// This constructor initializes the data members to match that
34 /// of the specified module.
35 ///
36 MipsSubtarget(const TargetMachine &TM, const Module &M,
37 const std::string &FS);
38
39 /// ParseSubtargetFeatures - Parses features string setting specified
40 /// subtarget options. Definition of function is auto generated by tblgen.
41 void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
42
Bruno Cardoso Lopes13d1b7b2007-08-18 01:52:27 +000043 /// isMipsIII - Return true if the selected CPU supports MipsIII ISA
44 /// support.
45 bool isMipsIII() const { return IsMipsIII; }
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000046};
47} // End llvm namespace
48
49#endif