I don't see why this optimization isn't safe, but it isn't, so disable it
[oota-llvm.git] / lib / Target / Sparc / Sparc.td
1 //===- SparcV8.td - Describe the SparcV8 Target Machine ---------*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 //
11 //===----------------------------------------------------------------------===//
12
13 //===----------------------------------------------------------------------===//
14 // Target-independent interfaces which we are implementing
15 //===----------------------------------------------------------------------===//
16
17 include "../Target.td"
18
19 //===----------------------------------------------------------------------===//
20 // SPARC Subtarget features.
21 //
22  
23 def FeatureV9
24   : SubtargetFeature<"v9", "IsV9", "true",
25                      "Enable SPARC-V9 instructions">;
26 def FeatureV8Deprecated
27   : SubtargetFeature<"deprecated-v8", "V8DeprecatedInsts", "true",
28                      "Enable deprecated V8 instructions in V9 mode">;
29 def FeatureVIS
30   : SubtargetFeature<"vis", "IsVIS", "true",
31                      "Enable UltraSPARC Visual Instruction Set extensions">;
32
33 //===----------------------------------------------------------------------===//
34 // Register File Description
35 //===----------------------------------------------------------------------===//
36
37 include "SparcV8RegisterInfo.td"
38
39 //===----------------------------------------------------------------------===//
40 // Instruction Descriptions
41 //===----------------------------------------------------------------------===//
42
43 include "SparcV8InstrInfo.td"
44
45 def SparcV8InstrInfo : InstrInfo {
46   // Define how we want to layout our target-specific information field.
47   let TSFlagsFields = [];
48   let TSFlagsShifts = [];
49 }
50
51 //===----------------------------------------------------------------------===//
52 // SPARC processors supported.
53 //===----------------------------------------------------------------------===//
54
55 class Proc<string Name, list<SubtargetFeature> Features>
56  : Processor<Name, NoItineraries, Features>;
57
58 def : Proc<"generic",         []>;
59 def : Proc<"v8",              []>;
60 def : Proc<"supersparc",      []>;
61 def : Proc<"sparclite",       []>;
62 def : Proc<"f934",            []>;
63 def : Proc<"hypersparc",      []>;
64 def : Proc<"sparclite86x",    []>;
65 def : Proc<"sparclet",        []>;
66 def : Proc<"tsc701",          []>;
67 def : Proc<"v9",              [FeatureV9]>;
68 def : Proc<"ultrasparc",      [FeatureV9, FeatureV8Deprecated]>;
69 def : Proc<"ultrasparc3",     [FeatureV9, FeatureV8Deprecated]>;
70 def : Proc<"ultrasparc3-vis", [FeatureV9, FeatureV8Deprecated, FeatureVIS]>;
71
72
73 //===----------------------------------------------------------------------===//
74 // Declare the target which we are implementing
75 //===----------------------------------------------------------------------===//
76
77 def SparcV8 : Target {
78   // Pointers are 32-bits in size.
79   let PointerType = i32;
80
81   // FIXME: Specify callee-saved registers
82   let CalleeSavedRegisters = [];
83
84   // Pull in Instruction Info:
85   let InstructionSet = SparcV8InstrInfo;
86 }