Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- PPC.td - Describe the PowerPC Target Machine -------*- tablegen -*-===// |
| 2 | // |
Chris Lattner | 0921e3b | 2005-10-14 23:37:35 +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 | 0921e3b | 2005-10-14 23:37:35 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This is the top level entry point for the PowerPC target. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | // Get the target-independent interfaces which we are implementing. |
| 15 | // |
Evan Cheng | 977e7be | 2008-11-24 07:34:46 +0000 | [diff] [blame] | 16 | include "llvm/Target/Target.td" |
Chris Lattner | 0921e3b | 2005-10-14 23:37:35 +0000 | [diff] [blame] | 17 | |
| 18 | //===----------------------------------------------------------------------===// |
Jim Laskey | 13a1945 | 2005-10-22 08:04:24 +0000 | [diff] [blame] | 19 | // PowerPC Subtarget features. |
Jim Laskey | 74ab996 | 2005-10-19 19:51:16 +0000 | [diff] [blame] | 20 | // |
Nemanja Ivanovic | d384cd9 | 2015-03-04 17:09:12 +0000 | [diff] [blame] | 21 | |
Jim Laskey | 59e7a77 | 2006-12-12 20:57:08 +0000 | [diff] [blame] | 22 | //===----------------------------------------------------------------------===// |
| 23 | // CPU Directives // |
| 24 | //===----------------------------------------------------------------------===// |
| 25 | |
Hal Finkel | 6fa5697 | 2011-10-17 04:03:49 +0000 | [diff] [blame] | 26 | def Directive440 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_440", "">; |
Jim Laskey | 59e7a77 | 2006-12-12 20:57:08 +0000 | [diff] [blame] | 27 | def Directive601 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_601", "">; |
| 28 | def Directive602 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_602", "">; |
| 29 | def Directive603 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_603", "">; |
| 30 | def Directive604 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_603", "">; |
| 31 | def Directive620 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_603", "">; |
| 32 | def Directive7400: SubtargetFeature<"", "DarwinDirective", "PPC::DIR_7400", "">; |
| 33 | def Directive750 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_750", "">; |
| 34 | def Directive970 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_970", "">; |
| 35 | def Directive32 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_32", "">; |
| 36 | def Directive64 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_64", "">; |
Hal Finkel | 9f9f892 | 2012-04-01 19:22:40 +0000 | [diff] [blame] | 37 | def DirectiveA2 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_A2", "">; |
Hal Finkel | 742b535 | 2012-08-28 16:12:39 +0000 | [diff] [blame] | 38 | def DirectiveE500mc : SubtargetFeature<"", "DarwinDirective", |
| 39 | "PPC::DIR_E500mc", "">; |
| 40 | def DirectiveE5500 : SubtargetFeature<"", "DarwinDirective", |
| 41 | "PPC::DIR_E5500", "">; |
Bill Schmidt | 52742c2 | 2013-02-01 22:59:51 +0000 | [diff] [blame] | 42 | def DirectivePwr3: SubtargetFeature<"", "DarwinDirective", "PPC::DIR_PWR3", "">; |
| 43 | def DirectivePwr4: SubtargetFeature<"", "DarwinDirective", "PPC::DIR_PWR4", "">; |
| 44 | def DirectivePwr5: SubtargetFeature<"", "DarwinDirective", "PPC::DIR_PWR5", "">; |
| 45 | def DirectivePwr5x: SubtargetFeature<"", "DarwinDirective", "PPC::DIR_PWR5X", "">; |
Hal Finkel | f2b9c38 | 2012-06-11 15:43:08 +0000 | [diff] [blame] | 46 | def DirectivePwr6: SubtargetFeature<"", "DarwinDirective", "PPC::DIR_PWR6", "">; |
Bill Schmidt | 52742c2 | 2013-02-01 22:59:51 +0000 | [diff] [blame] | 47 | def DirectivePwr6x: SubtargetFeature<"", "DarwinDirective", "PPC::DIR_PWR6X", "">; |
Hal Finkel | f2b9c38 | 2012-06-11 15:43:08 +0000 | [diff] [blame] | 48 | def DirectivePwr7: SubtargetFeature<"", "DarwinDirective", "PPC::DIR_PWR7", "">; |
Will Schmidt | 970ff64 | 2014-06-26 13:36:19 +0000 | [diff] [blame] | 49 | def DirectivePwr8: SubtargetFeature<"", "DarwinDirective", "PPC::DIR_PWR8", "">; |
Jim Laskey | 59e7a77 | 2006-12-12 20:57:08 +0000 | [diff] [blame] | 50 | |
Chris Lattner | a35f306 | 2006-06-16 17:34:12 +0000 | [diff] [blame] | 51 | def Feature64Bit : SubtargetFeature<"64bit","Has64BitSupport", "true", |
Chris Lattner | 0d4923b | 2005-10-23 05:28:51 +0000 | [diff] [blame] | 52 | "Enable 64-bit instructions">; |
Chris Lattner | a35f306 | 2006-06-16 17:34:12 +0000 | [diff] [blame] | 53 | def Feature64BitRegs : SubtargetFeature<"64bitregs","Use64BitRegs", "true", |
| 54 | "Enable 64-bit registers usage for ppc32 [beta]">; |
Hal Finkel | 940ab93 | 2014-02-28 00:27:01 +0000 | [diff] [blame] | 55 | def FeatureCRBits : SubtargetFeature<"crbits", "UseCRBits", "true", |
| 56 | "Use condition-register bits individually">; |
Evan Cheng | d98701c | 2006-01-27 08:09:42 +0000 | [diff] [blame] | 57 | def FeatureAltivec : SubtargetFeature<"altivec","HasAltivec", "true", |
Chris Lattner | 0d4923b | 2005-10-23 05:28:51 +0000 | [diff] [blame] | 58 | "Enable Altivec instructions">; |
Joerg Sonnenberger | 39f095a | 2014-08-07 12:18:21 +0000 | [diff] [blame] | 59 | def FeatureSPE : SubtargetFeature<"spe","HasSPE", "true", |
| 60 | "Enable SPE instructions">; |
Hal Finkel | bfd3d08 | 2012-06-11 19:57:01 +0000 | [diff] [blame] | 61 | def FeatureMFOCRF : SubtargetFeature<"mfocrf","HasMFOCRF", "true", |
| 62 | "Enable the MFOCRF instruction">; |
Evan Cheng | d98701c | 2006-01-27 08:09:42 +0000 | [diff] [blame] | 63 | def FeatureFSqrt : SubtargetFeature<"fsqrt","HasFSQRT", "true", |
Hal Finkel | 4903379 | 2011-10-14 18:54:13 +0000 | [diff] [blame] | 64 | "Enable the fsqrt instruction">; |
Hal Finkel | dbc78e1 | 2013-08-19 05:01:02 +0000 | [diff] [blame] | 65 | def FeatureFCPSGN : SubtargetFeature<"fcpsgn", "HasFCPSGN", "true", |
| 66 | "Enable the fcpsgn instruction">; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 67 | def FeatureFRE : SubtargetFeature<"fre", "HasFRE", "true", |
| 68 | "Enable the fre instruction">; |
| 69 | def FeatureFRES : SubtargetFeature<"fres", "HasFRES", "true", |
| 70 | "Enable the fres instruction">; |
| 71 | def FeatureFRSQRTE : SubtargetFeature<"frsqrte", "HasFRSQRTE", "true", |
| 72 | "Enable the frsqrte instruction">; |
| 73 | def FeatureFRSQRTES : SubtargetFeature<"frsqrtes", "HasFRSQRTES", "true", |
| 74 | "Enable the frsqrtes instruction">; |
| 75 | def FeatureRecipPrec : SubtargetFeature<"recipprec", "HasRecipPrec", "true", |
| 76 | "Assume higher precision reciprocal estimates">; |
Chris Lattner | b9f35f0 | 2006-02-28 07:08:22 +0000 | [diff] [blame] | 77 | def FeatureSTFIWX : SubtargetFeature<"stfiwx","HasSTFIWX", "true", |
Hal Finkel | 4903379 | 2011-10-14 18:54:13 +0000 | [diff] [blame] | 78 | "Enable the stfiwx instruction">; |
Hal Finkel | beb296b | 2013-03-31 10:12:51 +0000 | [diff] [blame] | 79 | def FeatureLFIWAX : SubtargetFeature<"lfiwax","HasLFIWAX", "true", |
| 80 | "Enable the lfiwax instruction">; |
Hal Finkel | c20a08d | 2013-03-29 08:57:48 +0000 | [diff] [blame] | 81 | def FeatureFPRND : SubtargetFeature<"fprnd", "HasFPRND", "true", |
| 82 | "Enable the fri[mnpz] instructions">; |
Hal Finkel | f6d45f2 | 2013-04-01 17:52:07 +0000 | [diff] [blame] | 83 | def FeatureFPCVT : SubtargetFeature<"fpcvt", "HasFPCVT", "true", |
| 84 | "Enable fc[ft]* (unsigned and single-precision) and lfiwzx instructions">; |
Hal Finkel | 460e94d | 2012-06-22 23:10:08 +0000 | [diff] [blame] | 85 | def FeatureISEL : SubtargetFeature<"isel","HasISEL", "true", |
| 86 | "Enable the isel instruction">; |
Hal Finkel | a4d0748 | 2013-03-28 13:29:47 +0000 | [diff] [blame] | 87 | def FeaturePOPCNTD : SubtargetFeature<"popcntd","HasPOPCNTD", "true", |
| 88 | "Enable the popcnt[dw] instructions">; |
Nemanja Ivanovic | c090479 | 2015-04-09 23:54:37 +0000 | [diff] [blame] | 89 | def FeatureBPERMD : SubtargetFeature<"bpermd", "HasBPERMD", "true", |
| 90 | "Enable the bpermd instruction">; |
| 91 | def FeatureExtDiv : SubtargetFeature<"extdiv", "HasExtDiv", "true", |
| 92 | "Enable extended divide instructions">; |
Hal Finkel | 31d2956 | 2013-03-28 19:25:55 +0000 | [diff] [blame] | 93 | def FeatureLDBRX : SubtargetFeature<"ldbrx","HasLDBRX", "true", |
| 94 | "Enable the ldbrx instruction">; |
Hal Finkel | 4edc66b | 2015-01-03 01:16:37 +0000 | [diff] [blame] | 95 | def FeatureCMPB : SubtargetFeature<"cmpb", "HasCMPB", "true", |
| 96 | "Enable the cmpb instruction">; |
Bill Schmidt | 082cfc0 | 2015-01-14 20:17:10 +0000 | [diff] [blame] | 97 | def FeatureICBT : SubtargetFeature<"icbt","HasICBT", "true", |
| 98 | "Enable icbt instruction">; |
Hal Finkel | 6fa5697 | 2011-10-17 04:03:49 +0000 | [diff] [blame] | 99 | def FeatureBookE : SubtargetFeature<"booke", "IsBookE", "true", |
Bill Schmidt | 082cfc0 | 2015-01-14 20:17:10 +0000 | [diff] [blame] | 100 | "Enable Book E instructions", |
| 101 | [FeatureICBT]>; |
Hal Finkel | fe3368c | 2014-10-02 22:34:22 +0000 | [diff] [blame] | 102 | def FeatureMSYNC : SubtargetFeature<"msync", "HasOnlyMSYNC", "true", |
| 103 | "Has only the msync instruction instead of sync", |
| 104 | [FeatureBookE]>; |
Joerg Sonnenberger | 6ae087a | 2014-08-07 12:31:28 +0000 | [diff] [blame] | 105 | def FeatureE500 : SubtargetFeature<"e500", "IsE500", "true", |
Joerg Sonnenberger | 0b2ebcb | 2014-08-04 15:47:38 +0000 | [diff] [blame] | 106 | "Enable E500/E500mc instructions">; |
| 107 | def FeaturePPC4xx : SubtargetFeature<"ppc4xx", "IsPPC4xx", "true", |
| 108 | "Enable PPC 4xx instructions">; |
Joerg Sonnenberger | 7405210 | 2014-08-04 17:07:41 +0000 | [diff] [blame] | 109 | def FeaturePPC6xx : SubtargetFeature<"ppc6xx", "IsPPC6xx", "true", |
| 110 | "Enable PPC 6xx instructions">; |
Hal Finkel | efb305e | 2013-01-30 21:17:42 +0000 | [diff] [blame] | 111 | def FeatureQPX : SubtargetFeature<"qpx","HasQPX", "true", |
| 112 | "Enable QPX instructions">; |
Eric Christopher | 081efcc | 2013-10-16 20:38:58 +0000 | [diff] [blame] | 113 | def FeatureVSX : SubtargetFeature<"vsx","HasVSX", "true", |
Hal Finkel | 27774d9 | 2014-03-13 07:58:58 +0000 | [diff] [blame] | 114 | "Enable VSX instructions", |
| 115 | [FeatureAltivec]>; |
Bill Schmidt | fe88b18 | 2015-02-03 21:58:23 +0000 | [diff] [blame] | 116 | def FeatureP8Altivec : SubtargetFeature<"power8-altivec", "HasP8Altivec", "true", |
| 117 | "Enable POWER8 Altivec instructions", |
| 118 | [FeatureAltivec]>; |
Nemanja Ivanovic | e8effe1 | 2015-03-04 20:44:33 +0000 | [diff] [blame] | 119 | def FeatureP8Crypto : SubtargetFeature<"crypto", "HasP8Crypto", "true", |
Nemanja Ivanovic | 0adf26b | 2015-03-10 20:51:07 +0000 | [diff] [blame] | 120 | "Enable POWER8 Crypto instructions", |
| 121 | [FeatureP8Altivec]>; |
NAKAMURA Takumi | cc4487e | 2014-12-09 01:03:27 +0000 | [diff] [blame] | 122 | def FeatureP8Vector : SubtargetFeature<"power8-vector", "HasP8Vector", "true", |
| 123 | "Enable POWER8 vector instructions", |
Bill Schmidt | fe88b18 | 2015-02-03 21:58:23 +0000 | [diff] [blame] | 124 | [FeatureVSX, FeatureP8Altivec]>; |
Nemanja Ivanovic | c38b531 | 2015-04-11 10:40:42 +0000 | [diff] [blame] | 125 | def FeatureDirectMove : |
| 126 | SubtargetFeature<"direct-move", "HasDirectMove", "true", |
| 127 | "Enable Power8 direct move instructions", |
| 128 | [FeatureVSX]>; |
Nemanja Ivanovic | 0adf26b | 2015-03-10 20:51:07 +0000 | [diff] [blame] | 129 | def FeaturePartwordAtomic : SubtargetFeature<"partword-atomics", |
| 130 | "HasPartwordAtomics", "true", |
| 131 | "Enable l[bh]arx and st[bh]cx.">; |
Hal Finkel | e2ab0f1 | 2015-01-15 21:17:34 +0000 | [diff] [blame] | 132 | def FeatureInvariantFunctionDescriptors : |
| 133 | SubtargetFeature<"invariant-function-descriptors", |
| 134 | "HasInvariantFunctionDescriptors", "true", |
| 135 | "Assume function descriptors are invariant">; |
Kit Barton | 535e69d | 2015-03-25 19:36:23 +0000 | [diff] [blame] | 136 | def FeatureHTM : SubtargetFeature<"htm", "HasHTM", "true", |
| 137 | "Enable Hardware Transactional Memory instructions">; |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 138 | def FeatureMFTB : SubtargetFeature<"", "FeatureMFTB", "true", |
| 139 | "Implement mftb using the mfspr instruction">; |
Hal Finkel | e2ab0f1 | 2015-01-15 21:17:34 +0000 | [diff] [blame] | 140 | |
Hal Finkel | 0096dbd | 2013-09-12 14:40:06 +0000 | [diff] [blame] | 141 | def DeprecatedDST : SubtargetFeature<"", "DeprecatedDST", "true", |
| 142 | "Treat vector data stream cache control instructions as deprecated">; |
| 143 | |
Nemanja Ivanovic | c090479 | 2015-04-09 23:54:37 +0000 | [diff] [blame] | 144 | /* Since new processors generally contain a superset of features of those that |
| 145 | came before them, the idea is to make implementations of new processors |
| 146 | less error prone and easier to read. |
| 147 | Namely: |
| 148 | list<SubtargetFeature> Power8FeatureList = ... |
| 149 | list<SubtargetFeature> FutureProcessorSpecificFeatureList = |
| 150 | [ features that Power8 does not support ] |
| 151 | list<SubtargetFeature> FutureProcessorFeatureList = |
| 152 | !listconcat(Power8FeatureList, FutureProcessorSpecificFeatureList) |
| 153 | |
| 154 | Makes it explicit and obvious what is new in FutureProcesor vs. Power8 as |
| 155 | well as providing a single point of definition if the feature set will be |
| 156 | used elsewhere. |
| 157 | */ |
| 158 | def ProcessorFeatures { |
| 159 | list<SubtargetFeature> Power7FeatureList = |
| 160 | [DirectivePwr7, FeatureAltivec, FeatureVSX, |
| 161 | FeatureMFOCRF, FeatureFCPSGN, FeatureFSqrt, FeatureFRE, |
| 162 | FeatureFRES, FeatureFRSQRTE, FeatureFRSQRTES, |
| 163 | FeatureRecipPrec, FeatureSTFIWX, FeatureLFIWAX, |
| 164 | FeatureFPRND, FeatureFPCVT, FeatureISEL, |
| 165 | FeaturePOPCNTD, FeatureCMPB, FeatureLDBRX, |
Hal Finkel | 58f5f9c | 2015-04-11 13:40:36 +0000 | [diff] [blame] | 166 | Feature64Bit /*, Feature64BitRegs */, |
Nemanja Ivanovic | c090479 | 2015-04-09 23:54:37 +0000 | [diff] [blame] | 167 | FeatureBPERMD, FeatureExtDiv, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 168 | FeatureMFTB, DeprecatedDST]; |
Nemanja Ivanovic | c090479 | 2015-04-09 23:54:37 +0000 | [diff] [blame] | 169 | list<SubtargetFeature> Power8SpecificFeatures = |
| 170 | [DirectivePwr8, FeatureP8Altivec, FeatureP8Vector, FeatureP8Crypto, |
Hal Finkel | 58f5f9c | 2015-04-11 13:40:36 +0000 | [diff] [blame] | 171 | FeatureHTM, FeatureDirectMove, FeatureICBT, FeaturePartwordAtomic]; |
Nemanja Ivanovic | c090479 | 2015-04-09 23:54:37 +0000 | [diff] [blame] | 172 | list<SubtargetFeature> Power8FeatureList = |
| 173 | !listconcat(Power7FeatureList, Power8SpecificFeatures); |
| 174 | } |
| 175 | |
Bill Schmidt | cc99a2f | 2013-02-01 23:10:09 +0000 | [diff] [blame] | 176 | // Note: Future features to add when support is extended to more |
| 177 | // recent ISA levels: |
| 178 | // |
Bill Schmidt | cc99a2f | 2013-02-01 23:10:09 +0000 | [diff] [blame] | 179 | // DFP p6, p6x, p7 decimal floating-point instructions |
Bill Schmidt | cc99a2f | 2013-02-01 23:10:09 +0000 | [diff] [blame] | 180 | // POPCNTB p5 through p7 popcntb and related instructions |
Bill Schmidt | cc99a2f | 2013-02-01 23:10:09 +0000 | [diff] [blame] | 181 | |
Jim Laskey | 74ab996 | 2005-10-19 19:51:16 +0000 | [diff] [blame] | 182 | //===----------------------------------------------------------------------===// |
Hal Finkel | 654d43b | 2013-04-12 02:18:09 +0000 | [diff] [blame] | 183 | // Classes used for relation maps. |
| 184 | //===----------------------------------------------------------------------===// |
| 185 | // RecFormRel - Filter class used to relate non-record-form instructions with |
| 186 | // their record-form variants. |
| 187 | class RecFormRel; |
| 188 | |
Hal Finkel | 25e0454 | 2014-03-25 18:55:11 +0000 | [diff] [blame] | 189 | // AltVSXFMARel - Filter class used to relate the primary addend-killing VSX |
| 190 | // FMA instruction forms with their corresponding factor-killing forms. |
| 191 | class AltVSXFMARel { |
| 192 | bit IsVSXFMAAlt = 0; |
| 193 | } |
| 194 | |
Hal Finkel | 654d43b | 2013-04-12 02:18:09 +0000 | [diff] [blame] | 195 | //===----------------------------------------------------------------------===// |
| 196 | // Relation Map Definitions. |
| 197 | //===----------------------------------------------------------------------===// |
| 198 | |
| 199 | def getRecordFormOpcode : InstrMapping { |
| 200 | let FilterClass = "RecFormRel"; |
| 201 | // Instructions with the same BaseName and Interpretation64Bit values |
| 202 | // form a row. |
| 203 | let RowFields = ["BaseName", "Interpretation64Bit"]; |
| 204 | // Instructions with the same RC value form a column. |
| 205 | let ColFields = ["RC"]; |
| 206 | // The key column are the non-record-form instructions. |
| 207 | let KeyCol = ["0"]; |
| 208 | // Value columns RC=1 |
| 209 | let ValueCols = [["1"]]; |
| 210 | } |
| 211 | |
| 212 | def getNonRecordFormOpcode : InstrMapping { |
| 213 | let FilterClass = "RecFormRel"; |
| 214 | // Instructions with the same BaseName and Interpretation64Bit values |
| 215 | // form a row. |
| 216 | let RowFields = ["BaseName", "Interpretation64Bit"]; |
| 217 | // Instructions with the same RC value form a column. |
| 218 | let ColFields = ["RC"]; |
| 219 | // The key column are the record-form instructions. |
| 220 | let KeyCol = ["1"]; |
| 221 | // Value columns are RC=0 |
| 222 | let ValueCols = [["0"]]; |
| 223 | } |
| 224 | |
Hal Finkel | 25e0454 | 2014-03-25 18:55:11 +0000 | [diff] [blame] | 225 | def getAltVSXFMAOpcode : InstrMapping { |
| 226 | let FilterClass = "AltVSXFMARel"; |
| 227 | // Instructions with the same BaseName and Interpretation64Bit values |
| 228 | // form a row. |
| 229 | let RowFields = ["BaseName"]; |
| 230 | // Instructions with the same RC value form a column. |
| 231 | let ColFields = ["IsVSXFMAAlt"]; |
| 232 | // The key column are the (default) addend-killing instructions. |
| 233 | let KeyCol = ["0"]; |
| 234 | // Value columns IsVSXFMAAlt=1 |
| 235 | let ValueCols = [["1"]]; |
| 236 | } |
| 237 | |
Hal Finkel | 654d43b | 2013-04-12 02:18:09 +0000 | [diff] [blame] | 238 | //===----------------------------------------------------------------------===// |
Chris Lattner | a389f0d | 2005-10-23 22:08:13 +0000 | [diff] [blame] | 239 | // Register File Description |
| 240 | //===----------------------------------------------------------------------===// |
| 241 | |
| 242 | include "PPCRegisterInfo.td" |
| 243 | include "PPCSchedule.td" |
| 244 | include "PPCInstrInfo.td" |
| 245 | |
| 246 | //===----------------------------------------------------------------------===// |
| 247 | // PowerPC processors supported. |
Jim Laskey | 74ab996 | 2005-10-19 19:51:16 +0000 | [diff] [blame] | 248 | // |
| 249 | |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 250 | def : Processor<"generic", G3Itineraries, [Directive32, FeatureMFTB]>; |
Hal Finkel | 5a7162f | 2013-11-29 06:32:17 +0000 | [diff] [blame] | 251 | def : ProcessorModel<"440", PPC440Model, [Directive440, FeatureISEL, |
| 252 | FeatureFRES, FeatureFRSQRTE, |
Bill Schmidt | 082cfc0 | 2015-01-14 20:17:10 +0000 | [diff] [blame] | 253 | FeatureICBT, FeatureBookE, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 254 | FeatureMSYNC, FeatureMFTB]>; |
Hal Finkel | 5a7162f | 2013-11-29 06:32:17 +0000 | [diff] [blame] | 255 | def : ProcessorModel<"450", PPC440Model, [Directive440, FeatureISEL, |
| 256 | FeatureFRES, FeatureFRSQRTE, |
Bill Schmidt | 082cfc0 | 2015-01-14 20:17:10 +0000 | [diff] [blame] | 257 | FeatureICBT, FeatureBookE, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 258 | FeatureMSYNC, FeatureMFTB]>; |
Jim Laskey | 59e7a77 | 2006-12-12 20:57:08 +0000 | [diff] [blame] | 259 | def : Processor<"601", G3Itineraries, [Directive601]>; |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 260 | def : Processor<"602", G3Itineraries, [Directive602, |
| 261 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 262 | def : Processor<"603", G3Itineraries, [Directive603, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 263 | FeatureFRES, FeatureFRSQRTE, |
| 264 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 265 | def : Processor<"603e", G3Itineraries, [Directive603, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 266 | FeatureFRES, FeatureFRSQRTE, |
| 267 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 268 | def : Processor<"603ev", G3Itineraries, [Directive603, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 269 | FeatureFRES, FeatureFRSQRTE, |
| 270 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 271 | def : Processor<"604", G3Itineraries, [Directive604, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 272 | FeatureFRES, FeatureFRSQRTE, |
| 273 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 274 | def : Processor<"604e", G3Itineraries, [Directive604, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 275 | FeatureFRES, FeatureFRSQRTE, |
| 276 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 277 | def : Processor<"620", G3Itineraries, [Directive620, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 278 | FeatureFRES, FeatureFRSQRTE, |
| 279 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 280 | def : Processor<"750", G4Itineraries, [Directive750, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 281 | FeatureFRES, FeatureFRSQRTE, |
| 282 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 283 | def : Processor<"g3", G3Itineraries, [Directive750, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 284 | FeatureFRES, FeatureFRSQRTE, |
| 285 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 286 | def : Processor<"7400", G4Itineraries, [Directive7400, FeatureAltivec, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 287 | FeatureFRES, FeatureFRSQRTE, |
| 288 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 289 | def : Processor<"g4", G4Itineraries, [Directive7400, FeatureAltivec, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 290 | FeatureFRES, FeatureFRSQRTE, |
| 291 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 292 | def : Processor<"7450", G4PlusItineraries, [Directive7400, FeatureAltivec, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 293 | FeatureFRES, FeatureFRSQRTE, |
| 294 | FeatureMFTB]>; |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 295 | def : Processor<"g4+", G4PlusItineraries, [Directive7400, FeatureAltivec, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 296 | FeatureFRES, FeatureFRSQRTE, |
| 297 | FeatureMFTB]>; |
Bill Schmidt | 279cabb | 2015-01-25 18:05:42 +0000 | [diff] [blame] | 298 | |
Hal Finkel | 1a958cf | 2013-04-05 05:49:18 +0000 | [diff] [blame] | 299 | def : ProcessorModel<"970", G5Model, |
Jim Laskey | 59e7a77 | 2006-12-12 20:57:08 +0000 | [diff] [blame] | 300 | [Directive970, FeatureAltivec, |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 301 | FeatureMFOCRF, FeatureFSqrt, |
| 302 | FeatureFRES, FeatureFRSQRTE, FeatureSTFIWX, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 303 | Feature64Bit /*, Feature64BitRegs */, |
| 304 | FeatureMFTB]>; |
Hal Finkel | 1a958cf | 2013-04-05 05:49:18 +0000 | [diff] [blame] | 305 | def : ProcessorModel<"g5", G5Model, |
Jim Laskey | 59e7a77 | 2006-12-12 20:57:08 +0000 | [diff] [blame] | 306 | [Directive970, FeatureAltivec, |
Hal Finkel | bfd3d08 | 2012-06-11 19:57:01 +0000 | [diff] [blame] | 307 | FeatureMFOCRF, FeatureFSqrt, FeatureSTFIWX, |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 308 | FeatureFRES, FeatureFRSQRTE, |
Hal Finkel | 0096dbd | 2013-09-12 14:40:06 +0000 | [diff] [blame] | 309 | Feature64Bit /*, Feature64BitRegs */, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 310 | FeatureMFTB, DeprecatedDST]>; |
Hal Finkel | 742b535 | 2012-08-28 16:12:39 +0000 | [diff] [blame] | 311 | def : ProcessorModel<"e500mc", PPCE500mcModel, |
| 312 | [DirectiveE500mc, FeatureMFOCRF, |
Bill Schmidt | 082cfc0 | 2015-01-14 20:17:10 +0000 | [diff] [blame] | 313 | FeatureSTFIWX, FeatureICBT, FeatureBookE, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 314 | FeatureISEL, FeatureMFTB]>; |
Hal Finkel | 742b535 | 2012-08-28 16:12:39 +0000 | [diff] [blame] | 315 | def : ProcessorModel<"e5500", PPCE5500Model, |
| 316 | [DirectiveE5500, FeatureMFOCRF, Feature64Bit, |
Bill Schmidt | 082cfc0 | 2015-01-14 20:17:10 +0000 | [diff] [blame] | 317 | FeatureSTFIWX, FeatureICBT, FeatureBookE, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 318 | FeatureISEL, FeatureMFTB]>; |
Hal Finkel | 5fde1b0 | 2013-04-05 05:34:08 +0000 | [diff] [blame] | 319 | def : ProcessorModel<"a2", PPCA2Model, |
Bill Schmidt | 082cfc0 | 2015-01-14 20:17:10 +0000 | [diff] [blame] | 320 | [DirectiveA2, FeatureICBT, FeatureBookE, FeatureMFOCRF, |
Hal Finkel | dbc78e1 | 2013-08-19 05:01:02 +0000 | [diff] [blame] | 321 | FeatureFCPSGN, FeatureFSqrt, FeatureFRE, FeatureFRES, |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 322 | FeatureFRSQRTE, FeatureFRSQRTES, FeatureRecipPrec, |
| 323 | FeatureSTFIWX, FeatureLFIWAX, |
Hal Finkel | f6d45f2 | 2013-04-01 17:52:07 +0000 | [diff] [blame] | 324 | FeatureFPRND, FeatureFPCVT, FeatureISEL, |
Hal Finkel | 4edc66b | 2015-01-03 01:16:37 +0000 | [diff] [blame] | 325 | FeaturePOPCNTD, FeatureCMPB, FeatureLDBRX, Feature64Bit |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 326 | /*, Feature64BitRegs */, FeatureMFTB]>; |
Hal Finkel | 5fde1b0 | 2013-04-05 05:34:08 +0000 | [diff] [blame] | 327 | def : ProcessorModel<"a2q", PPCA2Model, |
Bill Schmidt | 082cfc0 | 2015-01-14 20:17:10 +0000 | [diff] [blame] | 328 | [DirectiveA2, FeatureICBT, FeatureBookE, FeatureMFOCRF, |
Hal Finkel | dbc78e1 | 2013-08-19 05:01:02 +0000 | [diff] [blame] | 329 | FeatureFCPSGN, FeatureFSqrt, FeatureFRE, FeatureFRES, |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 330 | FeatureFRSQRTE, FeatureFRSQRTES, FeatureRecipPrec, |
| 331 | FeatureSTFIWX, FeatureLFIWAX, |
Hal Finkel | f6d45f2 | 2013-04-01 17:52:07 +0000 | [diff] [blame] | 332 | FeatureFPRND, FeatureFPCVT, FeatureISEL, |
Hal Finkel | 4edc66b | 2015-01-03 01:16:37 +0000 | [diff] [blame] | 333 | FeaturePOPCNTD, FeatureCMPB, FeatureLDBRX, Feature64Bit |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 334 | /*, Feature64BitRegs */, FeatureQPX, FeatureMFTB]>; |
Hal Finkel | 1a958cf | 2013-04-05 05:49:18 +0000 | [diff] [blame] | 335 | def : ProcessorModel<"pwr3", G5Model, |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 336 | [DirectivePwr3, FeatureAltivec, |
| 337 | FeatureFRES, FeatureFRSQRTE, FeatureMFOCRF, |
Bill Schmidt | 52742c2 | 2013-02-01 22:59:51 +0000 | [diff] [blame] | 338 | FeatureSTFIWX, Feature64Bit]>; |
Hal Finkel | 1a958cf | 2013-04-05 05:49:18 +0000 | [diff] [blame] | 339 | def : ProcessorModel<"pwr4", G5Model, |
Bill Schmidt | 52742c2 | 2013-02-01 22:59:51 +0000 | [diff] [blame] | 340 | [DirectivePwr4, FeatureAltivec, FeatureMFOCRF, |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 341 | FeatureFSqrt, FeatureFRES, FeatureFRSQRTE, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 342 | FeatureSTFIWX, Feature64Bit, FeatureMFTB]>; |
Hal Finkel | 1a958cf | 2013-04-05 05:49:18 +0000 | [diff] [blame] | 343 | def : ProcessorModel<"pwr5", G5Model, |
Bill Schmidt | 52742c2 | 2013-02-01 22:59:51 +0000 | [diff] [blame] | 344 | [DirectivePwr5, FeatureAltivec, FeatureMFOCRF, |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 345 | FeatureFSqrt, FeatureFRE, FeatureFRES, |
| 346 | FeatureFRSQRTE, FeatureFRSQRTES, |
Hal Finkel | 0096dbd | 2013-09-12 14:40:06 +0000 | [diff] [blame] | 347 | FeatureSTFIWX, Feature64Bit, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 348 | FeatureMFTB, DeprecatedDST]>; |
Hal Finkel | 1a958cf | 2013-04-05 05:49:18 +0000 | [diff] [blame] | 349 | def : ProcessorModel<"pwr5x", G5Model, |
Bill Schmidt | 52742c2 | 2013-02-01 22:59:51 +0000 | [diff] [blame] | 350 | [DirectivePwr5x, FeatureAltivec, FeatureMFOCRF, |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 351 | FeatureFSqrt, FeatureFRE, FeatureFRES, |
| 352 | FeatureFRSQRTE, FeatureFRSQRTES, |
Hal Finkel | 0096dbd | 2013-09-12 14:40:06 +0000 | [diff] [blame] | 353 | FeatureSTFIWX, FeatureFPRND, Feature64Bit, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 354 | FeatureMFTB, DeprecatedDST]>; |
Hal Finkel | 1a958cf | 2013-04-05 05:49:18 +0000 | [diff] [blame] | 355 | def : ProcessorModel<"pwr6", G5Model, |
Hal Finkel | f2b9c38 | 2012-06-11 15:43:08 +0000 | [diff] [blame] | 356 | [DirectivePwr6, FeatureAltivec, |
Hal Finkel | dbc78e1 | 2013-08-19 05:01:02 +0000 | [diff] [blame] | 357 | FeatureMFOCRF, FeatureFCPSGN, FeatureFSqrt, FeatureFRE, |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 358 | FeatureFRES, FeatureFRSQRTE, FeatureFRSQRTES, |
Hal Finkel | 4edc66b | 2015-01-03 01:16:37 +0000 | [diff] [blame] | 359 | FeatureRecipPrec, FeatureSTFIWX, FeatureLFIWAX, FeatureCMPB, |
Hal Finkel | 0096dbd | 2013-09-12 14:40:06 +0000 | [diff] [blame] | 360 | FeatureFPRND, Feature64Bit /*, Feature64BitRegs */, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 361 | FeatureMFTB, DeprecatedDST]>; |
Hal Finkel | 1a958cf | 2013-04-05 05:49:18 +0000 | [diff] [blame] | 362 | def : ProcessorModel<"pwr6x", G5Model, |
Bill Schmidt | 52742c2 | 2013-02-01 22:59:51 +0000 | [diff] [blame] | 363 | [DirectivePwr5x, FeatureAltivec, FeatureMFOCRF, |
Hal Finkel | dbc78e1 | 2013-08-19 05:01:02 +0000 | [diff] [blame] | 364 | FeatureFCPSGN, FeatureFSqrt, FeatureFRE, FeatureFRES, |
Hal Finkel | 2e10331 | 2013-04-03 04:01:11 +0000 | [diff] [blame] | 365 | FeatureFRSQRTE, FeatureFRSQRTES, FeatureRecipPrec, |
Hal Finkel | 4edc66b | 2015-01-03 01:16:37 +0000 | [diff] [blame] | 366 | FeatureSTFIWX, FeatureLFIWAX, FeatureCMPB, |
Hal Finkel | 0096dbd | 2013-09-12 14:40:06 +0000 | [diff] [blame] | 367 | FeatureFPRND, Feature64Bit, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 368 | FeatureMFTB, DeprecatedDST]>; |
Nemanja Ivanovic | c090479 | 2015-04-09 23:54:37 +0000 | [diff] [blame] | 369 | def : ProcessorModel<"pwr7", P7Model, ProcessorFeatures.Power7FeatureList>; |
Bill Schmidt | 279cabb | 2015-01-25 18:05:42 +0000 | [diff] [blame] | 370 | def : ProcessorModel<"pwr8", P8Model, ProcessorFeatures.Power8FeatureList>; |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 371 | def : Processor<"ppc", G3Itineraries, [Directive32, FeatureMFTB]>; |
Hal Finkel | 1a958cf | 2013-04-05 05:49:18 +0000 | [diff] [blame] | 372 | def : ProcessorModel<"ppc64", G5Model, |
Jim Laskey | 59e7a77 | 2006-12-12 20:57:08 +0000 | [diff] [blame] | 373 | [Directive64, FeatureAltivec, |
Hal Finkel | 7ac4592 | 2013-04-03 14:40:18 +0000 | [diff] [blame] | 374 | FeatureMFOCRF, FeatureFSqrt, FeatureFRES, |
| 375 | FeatureFRSQRTE, FeatureSTFIWX, |
Kit Barton | 4f79f96 | 2015-06-16 16:01:15 +0000 | [diff] [blame^] | 376 | Feature64Bit /*, Feature64BitRegs */, |
| 377 | FeatureMFTB]>; |
Bill Schmidt | 279cabb | 2015-01-25 18:05:42 +0000 | [diff] [blame] | 378 | def : ProcessorModel<"ppc64le", P8Model, ProcessorFeatures.Power8FeatureList>; |
Jim Laskey | 74ab996 | 2005-10-19 19:51:16 +0000 | [diff] [blame] | 379 | |
Chris Lattner | 4f2e4e0 | 2007-03-06 00:59:59 +0000 | [diff] [blame] | 380 | //===----------------------------------------------------------------------===// |
| 381 | // Calling Conventions |
| 382 | //===----------------------------------------------------------------------===// |
| 383 | |
| 384 | include "PPCCallingConv.td" |
| 385 | |
Chris Lattner | 51348c5 | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 386 | def PPCInstrInfo : InstrInfo { |
Chris Lattner | 51348c5 | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 387 | let isLittleEndianEncoding = 1; |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 388 | |
| 389 | // FIXME: Unset this when no longer needed! |
| 390 | let decodePositionallyEncodedOperands = 1; |
Hal Finkel | 5457bd0 | 2014-03-13 07:57:54 +0000 | [diff] [blame] | 391 | |
| 392 | let noNamedPositionallyEncodedOperands = 1; |
Chris Lattner | 51348c5 | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 393 | } |
| 394 | |
Ulrich Weigand | 640192d | 2013-05-03 19:49:39 +0000 | [diff] [blame] | 395 | def PPCAsmParser : AsmParser { |
| 396 | let ShouldEmitMatchRegisterName = 0; |
| 397 | } |
| 398 | |
Ulrich Weigand | c0944b5 | 2013-07-08 14:49:37 +0000 | [diff] [blame] | 399 | def PPCAsmParserVariant : AsmParserVariant { |
| 400 | int Variant = 0; |
| 401 | |
| 402 | // We do not use hard coded registers in asm strings. However, some |
| 403 | // InstAlias definitions use immediate literals. Set RegisterPrefix |
| 404 | // so that those are not misinterpreted as registers. |
| 405 | string RegisterPrefix = "%"; |
| 406 | } |
| 407 | |
Chris Lattner | 0921e3b | 2005-10-14 23:37:35 +0000 | [diff] [blame] | 408 | def PPC : Target { |
Chris Lattner | 51348c5 | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 409 | // Information about the instructions. |
| 410 | let InstructionSet = PPCInstrInfo; |
Rafael Espindola | 50712a4 | 2013-12-02 04:55:42 +0000 | [diff] [blame] | 411 | |
Ulrich Weigand | 640192d | 2013-05-03 19:49:39 +0000 | [diff] [blame] | 412 | let AssemblyParsers = [PPCAsmParser]; |
Ulrich Weigand | c0944b5 | 2013-07-08 14:49:37 +0000 | [diff] [blame] | 413 | let AssemblyParserVariants = [PPCAsmParserVariant]; |
Chris Lattner | 0921e3b | 2005-10-14 23:37:35 +0000 | [diff] [blame] | 414 | } |