Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- Sparc.td - Describe the Sparc Target Machine -------*- tablegen -*-===// |
| 2 | // |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | // Target-independent interfaces which we are implementing |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Evan Cheng | 977e7be | 2008-11-24 07:34:46 +0000 | [diff] [blame] | 17 | include "llvm/Target/Target.td" |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 18 | |
| 19 | //===----------------------------------------------------------------------===// |
| 20 | // SPARC Subtarget features. |
| 21 | // |
Venkatraman Govindaraju | a54533ed | 2013-06-04 18:33:25 +0000 | [diff] [blame] | 22 | |
James Y Knight | dda87ca | 2017-07-18 19:08:38 +0000 | [diff] [blame] | 23 | def FeatureSoftMulDiv |
| 24 | : SubtargetFeature<"soft-mul-div", "UseSoftMulDiv", "true", |
| 25 | "Use software emulation for integer multiply and divide">; |
| 26 | |
James Y Knight | bb76d48 | 2017-07-20 20:09:11 +0000 | [diff] [blame] | 27 | def FeatureNoFSMULD |
| 28 | : SubtargetFeature<"no-fsmuld", "HasNoFSMULD", "true", |
| 29 | "Disable the fsmuld instruction.">; |
| 30 | def FeatureNoFMULS |
| 31 | : SubtargetFeature<"no-fmuls", "HasNoFMULS", "true", |
| 32 | "Disable the fmuls instruction.">; |
| 33 | |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 34 | def FeatureV9 |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 35 | : SubtargetFeature<"v9", "IsV9", "true", |
| 36 | "Enable SPARC-V9 instructions">; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 37 | def FeatureV8Deprecated |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 38 | : SubtargetFeature<"deprecated-v8", "V8DeprecatedInsts", "true", |
| 39 | "Enable deprecated V8 instructions in V9 mode">; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 40 | def FeatureVIS |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 41 | : SubtargetFeature<"vis", "IsVIS", "true", |
| 42 | "Enable UltraSPARC Visual Instruction Set extensions">; |
Venkatraman Govindaraju | f9a202a | 2014-03-02 19:31:21 +0000 | [diff] [blame] | 43 | def FeatureVIS2 |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 44 | : SubtargetFeature<"vis2", "IsVIS2", "true", |
| 45 | "Enable Visual Instruction Set extensions II">; |
Venkatraman Govindaraju | f9a202a | 2014-03-02 19:31:21 +0000 | [diff] [blame] | 46 | def FeatureVIS3 |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 47 | : SubtargetFeature<"vis3", "IsVIS3", "true", |
| 48 | "Enable Visual Instruction Set extensions III">; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 49 | def FeatureLeon |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 50 | : SubtargetFeature<"leon", "IsLeon", "true", |
| 51 | "Enable LEON extensions">; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 52 | |
Venkatraman Govindaraju | 35e0c38 | 2013-08-25 18:30:06 +0000 | [diff] [blame] | 53 | def FeatureHardQuad |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 54 | : SubtargetFeature<"hard-quad-float", "HasHardQuad", "true", |
| 55 | "Enable quad-word floating point instructions">; |
Venkatraman Govindaraju | 35e0c38 | 2013-08-25 18:30:06 +0000 | [diff] [blame] | 56 | |
Jakob Stoklund Olesen | ead3b3d | 2014-01-26 06:09:59 +0000 | [diff] [blame] | 57 | def UsePopc : SubtargetFeature<"popc", "UsePopc", "true", |
| 58 | "Use the popc (population count) instruction">; |
| 59 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 60 | def FeatureSoftFloat : SubtargetFeature<"soft-float", "UseSoftFloat", "true", |
James Y Knight | bb76d48 | 2017-07-20 20:09:11 +0000 | [diff] [blame] | 61 | "Use software emulation for floating point">; |
Chris Dewhurst | 68388a0 | 2016-05-18 09:14:13 +0000 | [diff] [blame] | 62 | |
James Y Knight | bb76d48 | 2017-07-20 20:09:11 +0000 | [diff] [blame] | 63 | //==== Features added predmoninantly for LEON subtarget support |
Chris Dewhurst | e3b8645 | 2016-05-09 11:55:15 +0000 | [diff] [blame] | 64 | include "LeonFeatures.td" |
| 65 | |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 66 | //===----------------------------------------------------------------------===// |
Chris Lattner | 49b269d | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 67 | // Register File, Calling Conv, Instruction Descriptions |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 68 | //===----------------------------------------------------------------------===// |
| 69 | |
| 70 | include "SparcRegisterInfo.td" |
Chris Lattner | 49b269d | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 71 | include "SparcCallingConv.td" |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 72 | include "SparcSchedule.td" |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 73 | include "SparcInstrInfo.td" |
| 74 | |
Jakob Stoklund Olesen | b93331f | 2010-04-05 03:10:20 +0000 | [diff] [blame] | 75 | def SparcInstrInfo : InstrInfo; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 76 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 77 | def SparcAsmParser : AsmParser { |
| 78 | bit ShouldEmitMatchRegisterName = 0; |
| 79 | } |
Venkatraman Govindaraju | c2dee7d | 2014-01-04 11:30:13 +0000 | [diff] [blame] | 80 | |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 81 | //===----------------------------------------------------------------------===// |
| 82 | // SPARC processors supported. |
| 83 | //===----------------------------------------------------------------------===// |
| 84 | |
| 85 | class Proc<string Name, list<SubtargetFeature> Features> |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 86 | : Processor<Name, NoItineraries, Features>; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 87 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 88 | def : Proc<"generic", []>; |
James Y Knight | bb76d48 | 2017-07-20 20:09:11 +0000 | [diff] [blame] | 89 | def : Proc<"v7", [FeatureSoftMulDiv, FeatureNoFSMULD]>; |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 90 | def : Proc<"v8", []>; |
| 91 | def : Proc<"supersparc", []>; |
| 92 | def : Proc<"sparclite", []>; |
| 93 | def : Proc<"f934", []>; |
| 94 | def : Proc<"hypersparc", []>; |
| 95 | def : Proc<"sparclite86x", []>; |
| 96 | def : Proc<"sparclet", []>; |
| 97 | def : Proc<"tsc701", []>; |
Douglas Katzman | 8ea02f4 | 2016-09-13 17:51:41 +0000 | [diff] [blame] | 98 | def : Proc<"myriad2", [FeatureLeon, LeonCASA]>; |
| 99 | def : Proc<"myriad2.1", [FeatureLeon, LeonCASA]>; |
| 100 | def : Proc<"myriad2.2", [FeatureLeon, LeonCASA]>; |
Walter Lee | 35b09cb | 2017-10-02 18:50:48 +0000 | [diff] [blame] | 101 | def : Proc<"myriad2.3", [FeatureLeon, LeonCASA]>; |
Douglas Katzman | 8ea02f4 | 2016-09-13 17:51:41 +0000 | [diff] [blame] | 102 | def : Proc<"ma2100", [FeatureLeon, LeonCASA]>; |
| 103 | def : Proc<"ma2150", [FeatureLeon, LeonCASA]>; |
Walter Lee | 35b09cb | 2017-10-02 18:50:48 +0000 | [diff] [blame] | 104 | def : Proc<"ma2155", [FeatureLeon, LeonCASA]>; |
Douglas Katzman | 8ea02f4 | 2016-09-13 17:51:41 +0000 | [diff] [blame] | 105 | def : Proc<"ma2450", [FeatureLeon, LeonCASA]>; |
Walter Lee | 35b09cb | 2017-10-02 18:50:48 +0000 | [diff] [blame] | 106 | def : Proc<"ma2455", [FeatureLeon, LeonCASA]>; |
| 107 | def : Proc<"ma2x5x", [FeatureLeon, LeonCASA]>; |
| 108 | def : Proc<"ma2080", [FeatureLeon, LeonCASA]>; |
| 109 | def : Proc<"ma2085", [FeatureLeon, LeonCASA]>; |
| 110 | def : Proc<"ma2480", [FeatureLeon, LeonCASA]>; |
| 111 | def : Proc<"ma2485", [FeatureLeon, LeonCASA]>; |
| 112 | def : Proc<"ma2x8x", [FeatureLeon, LeonCASA]>; |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 113 | def : Proc<"v9", [FeatureV9]>; |
| 114 | def : Proc<"ultrasparc", [FeatureV9, FeatureV8Deprecated, FeatureVIS]>; |
| 115 | def : Proc<"ultrasparc3", [FeatureV9, FeatureV8Deprecated, FeatureVIS, |
| 116 | FeatureVIS2]>; |
| 117 | def : Proc<"niagara", [FeatureV9, FeatureV8Deprecated, FeatureVIS, |
| 118 | FeatureVIS2]>; |
| 119 | def : Proc<"niagara2", [FeatureV9, FeatureV8Deprecated, UsePopc, |
| 120 | FeatureVIS, FeatureVIS2]>; |
| 121 | def : Proc<"niagara3", [FeatureV9, FeatureV8Deprecated, UsePopc, |
| 122 | FeatureVIS, FeatureVIS2]>; |
| 123 | def : Proc<"niagara4", [FeatureV9, FeatureV8Deprecated, UsePopc, |
| 124 | FeatureVIS, FeatureVIS2, FeatureVIS3]>; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 125 | |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 126 | // LEON 2 FT generic |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 127 | def : Processor<"leon2", LEON2Itineraries, |
| 128 | [FeatureLeon]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 129 | |
| 130 | // LEON 2 FT (AT697E) |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 131 | // TO DO: Place-holder: Processor specific features will be added *very* soon here. |
| 132 | def : Processor<"at697e", LEON2Itineraries, |
Chris Dewhurst | 8501312 | 2016-10-10 08:53:06 +0000 | [diff] [blame] | 133 | [FeatureLeon, ReplaceSDIV, InsertNOPLoad]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 134 | |
| 135 | // LEON 2 FT (AT697F) |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 136 | // TO DO: Place-holder: Processor specific features will be added *very* soon here. |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 137 | def : Processor<"at697f", LEON2Itineraries, |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 138 | [FeatureLeon, InsertNOPLoad]>; |
| 139 | |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 140 | |
| 141 | // LEON 3 FT generic |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 142 | def : Processor<"leon3", LEON3Itineraries, |
| 143 | [FeatureLeon, UMACSMACSupport]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 144 | |
Chris Dewhurst | 7d8412f | 2016-05-16 11:02:00 +0000 | [diff] [blame] | 145 | // LEON 3 FT (UT699). Provides features for the UT699 processor |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 146 | // - covers all the erratum fixes for LEON3, but does not support the CASA instruction. |
James Y Knight | bb76d48 | 2017-07-20 20:09:11 +0000 | [diff] [blame] | 147 | def : Processor<"ut699", LEON3Itineraries, |
| 148 | [FeatureLeon, InsertNOPLoad, FeatureNoFSMULD, FeatureNoFMULS, FixAllFDIVSQRT]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 149 | |
Chris Dewhurst | 7d8412f | 2016-05-16 11:02:00 +0000 | [diff] [blame] | 150 | // LEON3 FT (GR712RC). Provides features for the GR712RC processor. |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 151 | // - covers all the erratum fixed for LEON3 and support for the CASA instruction. |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 152 | def : Processor<"gr712rc", LEON3Itineraries, |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 153 | [FeatureLeon, LeonCASA]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 154 | |
| 155 | // LEON 4 FT generic |
| 156 | def : Processor<"leon4", LEON4Itineraries, |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 157 | [FeatureLeon, UMACSMACSupport, LeonCASA]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 158 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 159 | // LEON 4 FT (GR740) |
| 160 | // TO DO: Place-holder: Processor specific features will be added *very* soon here. |
| 161 | def : Processor<"gr740", LEON4Itineraries, |
| 162 | [FeatureLeon, UMACSMACSupport, LeonCASA]>; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 163 | |
| 164 | //===----------------------------------------------------------------------===// |
| 165 | // Declare the target which we are implementing |
| 166 | //===----------------------------------------------------------------------===// |
| 167 | |
Akira Hatanaka | 725657b | 2015-03-28 04:03:51 +0000 | [diff] [blame] | 168 | def SparcAsmWriter : AsmWriter { |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 169 | string AsmWriterClassName = "InstPrinter"; |
Akira Hatanaka | 725657b | 2015-03-28 04:03:51 +0000 | [diff] [blame] | 170 | int PassSubtarget = 1; |
| 171 | int Variant = 0; |
| 172 | } |
| 173 | |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 174 | def Sparc : Target { |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 175 | // Pull in Instruction Info: |
| 176 | let InstructionSet = SparcInstrInfo; |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 177 | let AssemblyParsers = [SparcAsmParser]; |
| 178 | let AssemblyWriters = [SparcAsmWriter]; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 179 | } |