blob: 5300a81254ab33a9b942af1aaff68131faf69126 [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
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000029 enum MipsArchEnum {
30 Mips1, Mips2, Mips3, Mips4, Mips32, Mips32r2
31 };
32
33 enum MipsABIEnum {
34 O32, EABI
35 };
36
37 // Mips architecture version
38 MipsArchEnum MipsArchVersion;
39
40 // Mips supported ABIs
41 MipsABIEnum MipsABI;
42
43 // IsLittle - The target is Little Endian
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000044 bool IsLittle;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000045
46 // IsSingleFloat - The target only supports single precision float
47 // point operations. This enable the target to use all 32 32-bit
48 // float point registers instead of only using even ones.
49 bool IsSingleFloat;
50
51 // IsFP64bit - The target processor has 64-bit float point registers.
52 bool IsFP64bit;
53
54 // IsFP64bit - General-purpose registers are 64 bits wide
55 bool IsGP64bit;
56
57 // HasAllegrexVFPU - Allegrex processor has a vector float point unit.
58 bool HasAllegrexVFPU;
59
60 // IsAllegrex - The target processor is a Allegrex core.
61 bool IsAllegrex;
62
Bruno Cardoso Lopes13d1b7b2007-08-18 01:52:27 +000063 InstrItineraryData InstrItins;
64
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000065public:
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000066
67 /// Only O32 and EABI supported right now.
68 bool isABI_EABI() const { return MipsABI == EABI; }
69 bool isABI_O32() const { return MipsABI == O32; }
70
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000071 /// This constructor initializes the data members to match that
72 /// of the specified module.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000073 MipsSubtarget(const TargetMachine &TM, const Module &M,
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000074 const std::string &FS, bool little);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000075
76 /// ParseSubtargetFeatures - Parses features string setting specified
77 /// subtarget options. Definition of function is auto generated by tblgen.
78 void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
79
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000080 bool hasMips2Ops() const { return MipsArchVersion >= Mips2; }
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000081
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000082 bool isLittle() const { return IsLittle; }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000083 bool isFP64bit() const { return IsFP64bit; };
84 bool isGP64bit() const { return IsGP64bit; };
85 bool isGP32bit() const { return !IsGP64bit; };
86 bool isSingleFloat() const { return IsSingleFloat; };
87 bool isNotSingleFloat() const { return !IsSingleFloat; };
88 bool hasAllegrexVFPU() const { return HasAllegrexVFPU; };
89 bool isAllegrex() const { return IsAllegrex; };
90
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000091};
92} // End llvm namespace
93
94#endif