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 | |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 23 | def FeatureV9 |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 24 | : SubtargetFeature<"v9", "IsV9", "true", |
| 25 | "Enable SPARC-V9 instructions">; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 26 | def FeatureV8Deprecated |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 27 | : SubtargetFeature<"deprecated-v8", "V8DeprecatedInsts", "true", |
| 28 | "Enable deprecated V8 instructions in V9 mode">; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 29 | def FeatureVIS |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 30 | : SubtargetFeature<"vis", "IsVIS", "true", |
| 31 | "Enable UltraSPARC Visual Instruction Set extensions">; |
Venkatraman Govindaraju | f9a202a | 2014-03-02 19:31:21 +0000 | [diff] [blame] | 32 | def FeatureVIS2 |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 33 | : SubtargetFeature<"vis2", "IsVIS2", "true", |
| 34 | "Enable Visual Instruction Set extensions II">; |
Venkatraman Govindaraju | f9a202a | 2014-03-02 19:31:21 +0000 | [diff] [blame] | 35 | def FeatureVIS3 |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 36 | : SubtargetFeature<"vis3", "IsVIS3", "true", |
| 37 | "Enable Visual Instruction Set extensions III">; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 38 | def FeatureLeon |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 39 | : SubtargetFeature<"leon", "IsLeon", "true", |
| 40 | "Enable LEON extensions">; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 41 | |
Venkatraman Govindaraju | 35e0c38 | 2013-08-25 18:30:06 +0000 | [diff] [blame] | 42 | def FeatureHardQuad |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 43 | : SubtargetFeature<"hard-quad-float", "HasHardQuad", "true", |
| 44 | "Enable quad-word floating point instructions">; |
Venkatraman Govindaraju | 35e0c38 | 2013-08-25 18:30:06 +0000 | [diff] [blame] | 45 | |
Jakob Stoklund Olesen | ead3b3d | 2014-01-26 06:09:59 +0000 | [diff] [blame] | 46 | def UsePopc : SubtargetFeature<"popc", "UsePopc", "true", |
| 47 | "Use the popc (population count) instruction">; |
| 48 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 49 | def FeatureSoftFloat : SubtargetFeature<"soft-float", "UseSoftFloat", "true", |
| 50 | "Use software emulation for floating point">; |
Chris Dewhurst | 68388a0 | 2016-05-18 09:14:13 +0000 | [diff] [blame] | 51 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 52 | //==== Features added predmoninantly for LEON subtarget support |
Chris Dewhurst | e3b8645 | 2016-05-09 11:55:15 +0000 | [diff] [blame] | 53 | include "LeonFeatures.td" |
| 54 | |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 55 | //===----------------------------------------------------------------------===// |
Chris Lattner | 49b269d | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 56 | // Register File, Calling Conv, Instruction Descriptions |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 57 | //===----------------------------------------------------------------------===// |
| 58 | |
| 59 | include "SparcRegisterInfo.td" |
Chris Lattner | 49b269d | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 60 | include "SparcCallingConv.td" |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 61 | include "SparcSchedule.td" |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 62 | include "SparcInstrInfo.td" |
| 63 | |
Jakob Stoklund Olesen | b93331f | 2010-04-05 03:10:20 +0000 | [diff] [blame] | 64 | def SparcInstrInfo : InstrInfo; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 65 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 66 | def SparcAsmParser : AsmParser { |
| 67 | bit ShouldEmitMatchRegisterName = 0; |
| 68 | } |
Venkatraman Govindaraju | c2dee7d | 2014-01-04 11:30:13 +0000 | [diff] [blame] | 69 | |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 70 | //===----------------------------------------------------------------------===// |
| 71 | // SPARC processors supported. |
| 72 | //===----------------------------------------------------------------------===// |
| 73 | |
| 74 | class Proc<string Name, list<SubtargetFeature> Features> |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 75 | : Processor<Name, NoItineraries, Features>; |
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 : Proc<"generic", []>; |
| 78 | def : Proc<"v7", []>; |
| 79 | def : Proc<"v8", []>; |
| 80 | def : Proc<"supersparc", []>; |
| 81 | def : Proc<"sparclite", []>; |
| 82 | def : Proc<"f934", []>; |
| 83 | def : Proc<"hypersparc", []>; |
| 84 | def : Proc<"sparclite86x", []>; |
| 85 | def : Proc<"sparclet", []>; |
| 86 | def : Proc<"tsc701", []>; |
| 87 | def : Proc<"myriad2", []>; |
| 88 | def : Proc<"myriad2.1", []>; |
| 89 | def : Proc<"myriad2.2", []>; |
| 90 | def : Proc<"v9", [FeatureV9]>; |
| 91 | def : Proc<"ultrasparc", [FeatureV9, FeatureV8Deprecated, FeatureVIS]>; |
| 92 | def : Proc<"ultrasparc3", [FeatureV9, FeatureV8Deprecated, FeatureVIS, |
| 93 | FeatureVIS2]>; |
| 94 | def : Proc<"niagara", [FeatureV9, FeatureV8Deprecated, FeatureVIS, |
| 95 | FeatureVIS2]>; |
| 96 | def : Proc<"niagara2", [FeatureV9, FeatureV8Deprecated, UsePopc, |
| 97 | FeatureVIS, FeatureVIS2]>; |
| 98 | def : Proc<"niagara3", [FeatureV9, FeatureV8Deprecated, UsePopc, |
| 99 | FeatureVIS, FeatureVIS2]>; |
| 100 | def : Proc<"niagara4", [FeatureV9, FeatureV8Deprecated, UsePopc, |
| 101 | FeatureVIS, FeatureVIS2, FeatureVIS3]>; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 102 | |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 103 | // LEON 2 FT generic |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 104 | def : Processor<"leon2", LEON2Itineraries, |
| 105 | [FeatureLeon]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 106 | |
| 107 | // LEON 2 FT (AT697E) |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 108 | // TO DO: Place-holder: Processor specific features will be added *very* soon here. |
| 109 | def : Processor<"at697e", LEON2Itineraries, |
| 110 | [FeatureLeon, InsertNOPLoad]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 111 | |
| 112 | // LEON 2 FT (AT697F) |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 113 | // 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] | 114 | def : Processor<"at697f", LEON2Itineraries, |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 115 | [FeatureLeon, InsertNOPLoad]>; |
| 116 | |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 117 | |
| 118 | // LEON 3 FT generic |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 119 | def : Processor<"leon3", LEON3Itineraries, |
| 120 | [FeatureLeon, UMACSMACSupport]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 121 | |
Chris Dewhurst | 7d8412f | 2016-05-16 11:02:00 +0000 | [diff] [blame] | 122 | // LEON 3 FT (UT699). Provides features for the UT699 processor |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 123 | // - covers all the erratum fixes for LEON3, but does not support the CASA instruction. |
| 124 | def : Processor<"ut699", LEON3Itineraries, |
| 125 | [FeatureLeon, InsertNOPLoad, FixFSMULD, ReplaceFMULS, FixAllFDIVSQRT]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 126 | |
Chris Dewhurst | 7d8412f | 2016-05-16 11:02:00 +0000 | [diff] [blame] | 127 | // LEON3 FT (GR712RC). Provides features for the GR712RC processor. |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 128 | // - 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] | 129 | def : Processor<"gr712rc", LEON3Itineraries, |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 130 | [FeatureLeon, LeonCASA]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 131 | |
| 132 | // LEON 4 FT generic |
| 133 | def : Processor<"leon4", LEON4Itineraries, |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 134 | [FeatureLeon, UMACSMACSupport, LeonCASA]>; |
Chris Dewhurst | 6019702 | 2016-04-22 08:17:17 +0000 | [diff] [blame] | 135 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 136 | // LEON 4 FT (GR740) |
| 137 | // TO DO: Place-holder: Processor specific features will be added *very* soon here. |
| 138 | def : Processor<"gr740", LEON4Itineraries, |
| 139 | [FeatureLeon, UMACSMACSupport, LeonCASA]>; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 140 | |
| 141 | //===----------------------------------------------------------------------===// |
| 142 | // Declare the target which we are implementing |
| 143 | //===----------------------------------------------------------------------===// |
| 144 | |
Akira Hatanaka | 725657b | 2015-03-28 04:03:51 +0000 | [diff] [blame] | 145 | def SparcAsmWriter : AsmWriter { |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 146 | string AsmWriterClassName = "InstPrinter"; |
Akira Hatanaka | 725657b | 2015-03-28 04:03:51 +0000 | [diff] [blame] | 147 | int PassSubtarget = 1; |
| 148 | int Variant = 0; |
| 149 | } |
| 150 | |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 151 | def Sparc : Target { |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 152 | // Pull in Instruction Info: |
| 153 | let InstructionSet = SparcInstrInfo; |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame^] | 154 | let AssemblyParsers = [SparcAsmParser]; |
| 155 | let AssemblyWriters = [SparcAsmWriter]; |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 156 | } |