blob: 281f3bb16753babd1b573e76757083e6d07a964b [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 {
Bruno Cardoso Lopes7728f7e2008-07-09 05:32:22 +000030 Mips1, Mips2, Mips3, Mips4, Mips32, Mips32r2, Mips64, Mips64r2
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000031 };
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
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +000048 // floating point registers instead of only using even ones.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000049 bool IsSingleFloat;
50
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +000051 // IsFP64bit - The target processor has 64-bit floating point registers.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000052 bool IsFP64bit;
53
54 // IsFP64bit - General-purpose registers are 64 bits wide
55 bool IsGP64bit;
56
Bruno Cardoso Lopes7728f7e2008-07-09 05:32:22 +000057 // HasVFPU - Processor has a vector floating point unit.
58 bool HasVFPU;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000059
Bruno Cardoso Lopes7728f7e2008-07-09 05:32:22 +000060 // HasSEInReg - Target has SEB and SEH (signext in register) instructions.
61 bool HasSEInReg;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000062
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; };
Bruno Cardoso Lopes7728f7e2008-07-09 05:32:22 +000088 bool hasVFPU() const { return HasVFPU; };
89 bool hasSEInReg() const { return HasSEInReg; };
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000090
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000091};
92} // End llvm namespace
93
94#endif