Only generate the popc instruction for SPARC CPUs that implement it.
[oota-llvm.git] / lib / Target / Sparc / Sparc.td
1 //===-- Sparc.td - Describe the Sparc Target Machine -------*- tablegen -*-===//
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 //
10 //
11 //===----------------------------------------------------------------------===//
12
13 //===----------------------------------------------------------------------===//
14 // Target-independent interfaces which we are implementing
15 //===----------------------------------------------------------------------===//
16
17 include "llvm/Target/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 def FeatureHardQuad
34   : SubtargetFeature<"hard-quad-float", "HasHardQuad", "true",
35                      "Enable quad-word floating point instructions">;
36
37 def UsePopc : SubtargetFeature<"popc", "UsePopc", "true",
38                                "Use the popc (population count) instruction">;
39
40 //===----------------------------------------------------------------------===//
41 // Register File, Calling Conv, Instruction Descriptions
42 //===----------------------------------------------------------------------===//
43
44 include "SparcRegisterInfo.td"
45 include "SparcCallingConv.td"
46 include "SparcInstrInfo.td"
47
48 def SparcInstrInfo : InstrInfo;
49
50 def SparcAsmParser : AsmParser {
51   bit ShouldEmitMatchRegisterName = 0;
52 }
53
54 //===----------------------------------------------------------------------===//
55 // SPARC processors supported.
56 //===----------------------------------------------------------------------===//
57
58 class Proc<string Name, list<SubtargetFeature> Features>
59  : Processor<Name, NoItineraries, Features>;
60
61 def : Proc<"generic",         []>;
62 def : Proc<"v7",              []>;
63 def : Proc<"v8",              []>;
64 def : Proc<"supersparc",      []>;
65 def : Proc<"sparclite",       []>;
66 def : Proc<"f934",            []>;
67 def : Proc<"hypersparc",      []>;
68 def : Proc<"sparclite86x",    []>;
69 def : Proc<"sparclet",        []>;
70 def : Proc<"tsc701",          []>;
71 def : Proc<"v9",              [FeatureV9]>;
72 def : Proc<"ultrasparc",      [FeatureV9, FeatureV8Deprecated]>;
73 def : Proc<"ultrasparc3",     [FeatureV9, FeatureV8Deprecated]>;
74 def : Proc<"niagara",         [FeatureV9, FeatureV8Deprecated]>;
75 def : Proc<"niagara2",        [FeatureV9, FeatureV8Deprecated, UsePopc]>;
76 def : Proc<"niagara3",        [FeatureV9, FeatureV8Deprecated, UsePopc]>;
77 def : Proc<"niagara4",        [FeatureV9, FeatureV8Deprecated, UsePopc]>;
78
79
80 //===----------------------------------------------------------------------===//
81 // Declare the target which we are implementing
82 //===----------------------------------------------------------------------===//
83
84 def Sparc : Target {
85   // Pull in Instruction Info:
86   let InstructionSet = SparcInstrInfo;
87   let AssemblyParsers  = [SparcAsmParser];
88 }