Several changes to Mips backend, experimental fp support being the most
[oota-llvm.git] / lib / Target / Mips / Mips.td
1 //===- Mips.td - Describe the Mips Target Machine ---------------*- C++ -*-===//
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 // This is the top level entry point for the Mips target.
10 //===----------------------------------------------------------------------===//
11
12 //===----------------------------------------------------------------------===//
13 // Target-independent interfaces
14 //===----------------------------------------------------------------------===//
15
16 include "../Target.td"
17
18 //===----------------------------------------------------------------------===//
19 // Register File, Calling Conv, Instruction Descriptions
20 //===----------------------------------------------------------------------===//
21
22 include "MipsRegisterInfo.td"
23 include "MipsSchedule.td"
24 include "MipsInstrInfo.td"
25 include "MipsCallingConv.td"
26
27 def MipsInstrInfo : InstrInfo {
28   let TSFlagsFields = [];
29   let TSFlagsShifts = [];
30 }
31
32 //===----------------------------------------------------------------------===//
33 // Mips Subtarget features                                                    //
34 //===----------------------------------------------------------------------===//
35
36 def FeatureGP64Bit      : SubtargetFeature<"gp64", "IsGP64bit", "true",
37                                 "General Purpose Registers are 64-bit wide.">;
38 def FeatureFP64Bit      : SubtargetFeature<"fp64", "IsFP64bit", "true",
39                                 "Support 64-bit FP registers.">;
40 def FeatureSingleFloat  : SubtargetFeature<"single-float", "IsSingleFloat",
41                                 "true", "Only supports single precision float">;
42 def FeatureAllegrexVFPU : SubtargetFeature<"allegrex-vfpu", "HasAllegrexVFPU", 
43                                 "true", "Enable Allegrex VFPU instructions.">;
44 def FeatureMips2        : SubtargetFeature<"mips2", "MipsArchVersion", "Mips2",
45                                 "Mips2 ISA Support">;
46 def FeatureO32          : SubtargetFeature<"o32", "MipsABI", "O32",
47                                 "Enable o32 ABI">;
48 def FeatureEABI         : SubtargetFeature<"eabi", "MipsABI", "EABI",
49                                 "Enable eabi ABI">;
50
51 //===----------------------------------------------------------------------===//
52 // Mips processors supported.
53 //===----------------------------------------------------------------------===//
54
55 class Proc<string Name, list<SubtargetFeature> Features>
56  : Processor<Name, MipsGenericItineraries, Features>;
57
58 def : Proc<"mips1", []>;
59 def : Proc<"r2000", []>;
60 def : Proc<"r3000", []>;
61
62 def : Proc<"mips2", [FeatureMips2]>;
63 def : Proc<"r6000", [FeatureMips2]>;
64
65 // Allegrex is a 32bit subset of r4000, both for interger and fp registers, 
66 // but much more similar to Mips2 than Mips3. 
67 def : Proc<"allegrex", [FeatureMips2, FeatureSingleFloat, FeatureAllegrexVFPU,
68                         FeatureEABI]>;
69
70 def Mips : Target {
71   let InstructionSet = MipsInstrInfo;
72 }