Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- PPCInstrInfo.td - The PowerPC Instruction Set -------*- tablegen -*-===// |
| 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 | // This file describes the subset of the 32-bit PowerPC instruction set, as used |
| 11 | // by the PowerPC instruction selector. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | include "PPCInstrFormats.td" |
| 16 | |
| 17 | //===----------------------------------------------------------------------===// |
| 18 | // PowerPC specific type constraints. |
| 19 | // |
| 20 | def SDT_PPCstfiwx : SDTypeProfile<0, 2, [ // stfiwx |
| 21 | SDTCisVT<0, f64>, SDTCisPtrTy<1> |
| 22 | ]>; |
| 23 | def SDT_PPCShiftOp : SDTypeProfile<1, 2, [ // PPCshl, PPCsra, PPCsrl |
| 24 | SDTCisVT<0, i32>, SDTCisVT<1, i32>, SDTCisVT<2, i32> |
| 25 | ]>; |
| 26 | def SDT_PPCCallSeq : SDTypeProfile<0, 1, [ SDTCisVT<0, i32> ]>; |
| 27 | |
| 28 | def SDT_PPCvperm : SDTypeProfile<1, 3, [ |
| 29 | SDTCisVT<3, v16i8>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2> |
| 30 | ]>; |
| 31 | |
| 32 | def SDT_PPCvcmp : SDTypeProfile<1, 3, [ |
| 33 | SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>, SDTCisVT<3, i32> |
| 34 | ]>; |
| 35 | |
| 36 | def SDT_PPCcondbr : SDTypeProfile<0, 3, [ |
| 37 | SDTCisVT<0, i32>, SDTCisVT<2, OtherVT> |
| 38 | ]>; |
| 39 | |
| 40 | def SDT_PPClbrx : SDTypeProfile<1, 3, [ |
| 41 | SDTCisVT<0, i32>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT> |
| 42 | ]>; |
| 43 | def SDT_PPCstbrx : SDTypeProfile<0, 4, [ |
| 44 | SDTCisVT<0, i32>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT> |
| 45 | ]>; |
| 46 | |
| 47 | //===----------------------------------------------------------------------===// |
| 48 | // PowerPC specific DAG Nodes. |
| 49 | // |
| 50 | |
| 51 | def PPCfcfid : SDNode<"PPCISD::FCFID" , SDTFPUnaryOp, []>; |
| 52 | def PPCfctidz : SDNode<"PPCISD::FCTIDZ", SDTFPUnaryOp, []>; |
| 53 | def PPCfctiwz : SDNode<"PPCISD::FCTIWZ", SDTFPUnaryOp, []>; |
| 54 | def PPCstfiwx : SDNode<"PPCISD::STFIWX", SDT_PPCstfiwx, [SDNPHasChain]>; |
| 55 | |
Dale Johannesen | 3d8578b | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 56 | // This sequence is used for long double->int conversions. It changes the |
| 57 | // bits in the FPSCR which is not modelled. |
| 58 | def PPCmffs : SDNode<"PPCISD::MFFS", SDTypeProfile<1, 0, [SDTCisVT<0, f64>]>, |
| 59 | [SDNPOutFlag]>; |
| 60 | def PPCmtfsb0 : SDNode<"PPCISD::MTFSB0", SDTypeProfile<0, 1, [SDTCisInt<0>]>, |
| 61 | [SDNPInFlag, SDNPOutFlag]>; |
| 62 | def PPCmtfsb1 : SDNode<"PPCISD::MTFSB1", SDTypeProfile<0, 1, [SDTCisInt<0>]>, |
| 63 | [SDNPInFlag, SDNPOutFlag]>; |
| 64 | def PPCfaddrtz: SDNode<"PPCISD::FADDRTZ", SDTFPBinOp, |
| 65 | [SDNPInFlag, SDNPOutFlag]>; |
| 66 | def PPCmtfsf : SDNode<"PPCISD::MTFSF", SDTypeProfile<1, 3, |
| 67 | [SDTCisVT<0, f64>, SDTCisInt<1>, SDTCisVT<2, f64>, |
| 68 | SDTCisVT<3, f64>]>, |
| 69 | [SDNPInFlag]>; |
| 70 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 71 | def PPCfsel : SDNode<"PPCISD::FSEL", |
| 72 | // Type constraint for fsel. |
| 73 | SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>, |
| 74 | SDTCisFP<0>, SDTCisVT<1, f64>]>, []>; |
| 75 | |
| 76 | def PPChi : SDNode<"PPCISD::Hi", SDTIntBinOp, []>; |
| 77 | def PPClo : SDNode<"PPCISD::Lo", SDTIntBinOp, []>; |
| 78 | def PPCvmaddfp : SDNode<"PPCISD::VMADDFP", SDTFPTernaryOp, []>; |
| 79 | def PPCvnmsubfp : SDNode<"PPCISD::VNMSUBFP", SDTFPTernaryOp, []>; |
| 80 | |
| 81 | def PPCvperm : SDNode<"PPCISD::VPERM", SDT_PPCvperm, []>; |
| 82 | |
| 83 | // These nodes represent the 32-bit PPC shifts that operate on 6-bit shift |
| 84 | // amounts. These nodes are generated by the multi-precision shift code. |
| 85 | def PPCsrl : SDNode<"PPCISD::SRL" , SDT_PPCShiftOp>; |
| 86 | def PPCsra : SDNode<"PPCISD::SRA" , SDT_PPCShiftOp>; |
| 87 | def PPCshl : SDNode<"PPCISD::SHL" , SDT_PPCShiftOp>; |
| 88 | |
| 89 | def PPCextsw_32 : SDNode<"PPCISD::EXTSW_32" , SDTIntUnaryOp>; |
| 90 | def PPCstd_32 : SDNode<"PPCISD::STD_32" , SDTStore, [SDNPHasChain]>; |
| 91 | |
| 92 | // These are target-independent nodes, but have target-specific formats. |
| 93 | def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_PPCCallSeq, |
| 94 | [SDNPHasChain, SDNPOutFlag]>; |
| 95 | def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_PPCCallSeq, |
| 96 | [SDNPHasChain, SDNPOutFlag]>; |
| 97 | |
| 98 | def SDT_PPCCall : SDTypeProfile<0, -1, [SDTCisInt<0>]>; |
| 99 | def PPCcall_Macho : SDNode<"PPCISD::CALL_Macho", SDT_PPCCall, |
| 100 | [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>; |
| 101 | def PPCcall_ELF : SDNode<"PPCISD::CALL_ELF", SDT_PPCCall, |
| 102 | [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>; |
| 103 | def PPCmtctr : SDNode<"PPCISD::MTCTR", SDT_PPCCall, |
| 104 | [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>; |
| 105 | def PPCbctrl_Macho : SDNode<"PPCISD::BCTRL_Macho", SDTRet, |
| 106 | [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>; |
| 107 | |
| 108 | def PPCbctrl_ELF : SDNode<"PPCISD::BCTRL_ELF", SDTRet, |
| 109 | [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>; |
| 110 | |
| 111 | def retflag : SDNode<"PPCISD::RET_FLAG", SDTRet, |
| 112 | [SDNPHasChain, SDNPOptInFlag]>; |
| 113 | |
| 114 | def PPCvcmp : SDNode<"PPCISD::VCMP" , SDT_PPCvcmp, []>; |
| 115 | def PPCvcmp_o : SDNode<"PPCISD::VCMPo", SDT_PPCvcmp, [SDNPOutFlag]>; |
| 116 | |
| 117 | def PPCcondbranch : SDNode<"PPCISD::COND_BRANCH", SDT_PPCcondbr, |
| 118 | [SDNPHasChain, SDNPOptInFlag]>; |
| 119 | |
| 120 | def PPClbrx : SDNode<"PPCISD::LBRX", SDT_PPClbrx, [SDNPHasChain]>; |
| 121 | def PPCstbrx : SDNode<"PPCISD::STBRX", SDT_PPCstbrx, [SDNPHasChain]>; |
| 122 | |
| 123 | // Instructions to support dynamic alloca. |
| 124 | def SDTDynOp : SDTypeProfile<1, 2, []>; |
| 125 | def PPCdynalloc : SDNode<"PPCISD::DYNALLOC", SDTDynOp, [SDNPHasChain]>; |
| 126 | |
| 127 | //===----------------------------------------------------------------------===// |
| 128 | // PowerPC specific transformation functions and pattern fragments. |
| 129 | // |
| 130 | |
| 131 | def SHL32 : SDNodeXForm<imm, [{ |
| 132 | // Transformation function: 31 - imm |
| 133 | return getI32Imm(31 - N->getValue()); |
| 134 | }]>; |
| 135 | |
| 136 | def SRL32 : SDNodeXForm<imm, [{ |
| 137 | // Transformation function: 32 - imm |
| 138 | return N->getValue() ? getI32Imm(32 - N->getValue()) : getI32Imm(0); |
| 139 | }]>; |
| 140 | |
| 141 | def LO16 : SDNodeXForm<imm, [{ |
| 142 | // Transformation function: get the low 16 bits. |
| 143 | return getI32Imm((unsigned short)N->getValue()); |
| 144 | }]>; |
| 145 | |
| 146 | def HI16 : SDNodeXForm<imm, [{ |
| 147 | // Transformation function: shift the immediate value down into the low bits. |
| 148 | return getI32Imm((unsigned)N->getValue() >> 16); |
| 149 | }]>; |
| 150 | |
| 151 | def HA16 : SDNodeXForm<imm, [{ |
| 152 | // Transformation function: shift the immediate value down into the low bits. |
| 153 | signed int Val = N->getValue(); |
| 154 | return getI32Imm((Val - (signed short)Val) >> 16); |
| 155 | }]>; |
| 156 | def MB : SDNodeXForm<imm, [{ |
| 157 | // Transformation function: get the start bit of a mask |
| 158 | unsigned mb, me; |
| 159 | (void)isRunOfOnes((unsigned)N->getValue(), mb, me); |
| 160 | return getI32Imm(mb); |
| 161 | }]>; |
| 162 | |
| 163 | def ME : SDNodeXForm<imm, [{ |
| 164 | // Transformation function: get the end bit of a mask |
| 165 | unsigned mb, me; |
| 166 | (void)isRunOfOnes((unsigned)N->getValue(), mb, me); |
| 167 | return getI32Imm(me); |
| 168 | }]>; |
| 169 | def maskimm32 : PatLeaf<(imm), [{ |
| 170 | // maskImm predicate - True if immediate is a run of ones. |
| 171 | unsigned mb, me; |
| 172 | if (N->getValueType(0) == MVT::i32) |
| 173 | return isRunOfOnes((unsigned)N->getValue(), mb, me); |
| 174 | else |
| 175 | return false; |
| 176 | }]>; |
| 177 | |
| 178 | def immSExt16 : PatLeaf<(imm), [{ |
| 179 | // immSExt16 predicate - True if the immediate fits in a 16-bit sign extended |
| 180 | // field. Used by instructions like 'addi'. |
| 181 | if (N->getValueType(0) == MVT::i32) |
| 182 | return (int32_t)N->getValue() == (short)N->getValue(); |
| 183 | else |
| 184 | return (int64_t)N->getValue() == (short)N->getValue(); |
| 185 | }]>; |
| 186 | def immZExt16 : PatLeaf<(imm), [{ |
| 187 | // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended |
| 188 | // field. Used by instructions like 'ori'. |
| 189 | return (uint64_t)N->getValue() == (unsigned short)N->getValue(); |
| 190 | }], LO16>; |
| 191 | |
| 192 | // imm16Shifted* - These match immediates where the low 16-bits are zero. There |
| 193 | // are two forms: imm16ShiftedSExt and imm16ShiftedZExt. These two forms are |
| 194 | // identical in 32-bit mode, but in 64-bit mode, they return true if the |
| 195 | // immediate fits into a sign/zero extended 32-bit immediate (with the low bits |
| 196 | // clear). |
| 197 | def imm16ShiftedZExt : PatLeaf<(imm), [{ |
| 198 | // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the |
| 199 | // immediate are set. Used by instructions like 'xoris'. |
| 200 | return (N->getValue() & ~uint64_t(0xFFFF0000)) == 0; |
| 201 | }], HI16>; |
| 202 | |
| 203 | def imm16ShiftedSExt : PatLeaf<(imm), [{ |
| 204 | // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the |
| 205 | // immediate are set. Used by instructions like 'addis'. Identical to |
| 206 | // imm16ShiftedZExt in 32-bit mode. |
| 207 | if (N->getValue() & 0xFFFF) return false; |
| 208 | if (N->getValueType(0) == MVT::i32) |
| 209 | return true; |
| 210 | // For 64-bit, make sure it is sext right. |
| 211 | return N->getValue() == (uint64_t)(int)N->getValue(); |
| 212 | }], HI16>; |
| 213 | |
| 214 | |
| 215 | //===----------------------------------------------------------------------===// |
| 216 | // PowerPC Flag Definitions. |
| 217 | |
| 218 | class isPPC64 { bit PPC64 = 1; } |
| 219 | class isDOT { |
| 220 | list<Register> Defs = [CR0]; |
| 221 | bit RC = 1; |
| 222 | } |
| 223 | |
| 224 | class RegConstraint<string C> { |
| 225 | string Constraints = C; |
| 226 | } |
| 227 | class NoEncode<string E> { |
| 228 | string DisableEncoding = E; |
| 229 | } |
| 230 | |
| 231 | |
| 232 | //===----------------------------------------------------------------------===// |
| 233 | // PowerPC Operand Definitions. |
| 234 | |
| 235 | def s5imm : Operand<i32> { |
| 236 | let PrintMethod = "printS5ImmOperand"; |
| 237 | } |
| 238 | def u5imm : Operand<i32> { |
| 239 | let PrintMethod = "printU5ImmOperand"; |
| 240 | } |
| 241 | def u6imm : Operand<i32> { |
| 242 | let PrintMethod = "printU6ImmOperand"; |
| 243 | } |
| 244 | def s16imm : Operand<i32> { |
| 245 | let PrintMethod = "printS16ImmOperand"; |
| 246 | } |
| 247 | def u16imm : Operand<i32> { |
| 248 | let PrintMethod = "printU16ImmOperand"; |
| 249 | } |
| 250 | def s16immX4 : Operand<i32> { // Multiply imm by 4 before printing. |
| 251 | let PrintMethod = "printS16X4ImmOperand"; |
| 252 | } |
| 253 | def target : Operand<OtherVT> { |
| 254 | let PrintMethod = "printBranchOperand"; |
| 255 | } |
| 256 | def calltarget : Operand<iPTR> { |
| 257 | let PrintMethod = "printCallOperand"; |
| 258 | } |
| 259 | def aaddr : Operand<iPTR> { |
| 260 | let PrintMethod = "printAbsAddrOperand"; |
| 261 | } |
| 262 | def piclabel: Operand<iPTR> { |
| 263 | let PrintMethod = "printPICLabel"; |
| 264 | } |
| 265 | def symbolHi: Operand<i32> { |
| 266 | let PrintMethod = "printSymbolHi"; |
| 267 | } |
| 268 | def symbolLo: Operand<i32> { |
| 269 | let PrintMethod = "printSymbolLo"; |
| 270 | } |
| 271 | def crbitm: Operand<i8> { |
| 272 | let PrintMethod = "printcrbitm"; |
| 273 | } |
| 274 | // Address operands |
| 275 | def memri : Operand<iPTR> { |
| 276 | let PrintMethod = "printMemRegImm"; |
| 277 | let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg); |
| 278 | } |
| 279 | def memrr : Operand<iPTR> { |
| 280 | let PrintMethod = "printMemRegReg"; |
| 281 | let MIOperandInfo = (ops ptr_rc, ptr_rc); |
| 282 | } |
| 283 | def memrix : Operand<iPTR> { // memri where the imm is shifted 2 bits. |
| 284 | let PrintMethod = "printMemRegImmShifted"; |
| 285 | let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg); |
| 286 | } |
| 287 | |
| 288 | // PowerPC Predicate operand. 20 = (0<<5)|20 = always, CR0 is a dummy reg |
| 289 | // that doesn't matter. |
| 290 | def pred : PredicateOperand<OtherVT, (ops imm, CRRC), |
| 291 | (ops (i32 20), CR0)> { |
| 292 | let PrintMethod = "printPredicateOperand"; |
| 293 | } |
| 294 | |
| 295 | // Define PowerPC specific addressing mode. |
| 296 | def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>; |
| 297 | def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>; |
| 298 | def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>; |
| 299 | def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmShift", [], []>; // "std" |
| 300 | |
| 301 | /// This is just the offset part of iaddr, used for preinc. |
| 302 | def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>; |
| 303 | |
| 304 | //===----------------------------------------------------------------------===// |
| 305 | // PowerPC Instruction Predicate Definitions. |
| 306 | def FPContractions : Predicate<"!NoExcessFPPrecision">; |
Evan Cheng | 9d99c5e | 2007-10-23 06:42:42 +0000 | [diff] [blame^] | 307 | def In32BitMode : Predicate<"!PPCSubTarget.isPPC64()">; |
| 308 | def In64BitMode : Predicate<"PPCSubTarget.isPPC64()">; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 309 | |
| 310 | |
| 311 | //===----------------------------------------------------------------------===// |
| 312 | // PowerPC Instruction Definitions. |
| 313 | |
| 314 | // Pseudo-instructions: |
| 315 | |
| 316 | let hasCtrlDep = 1 in { |
Evan Cheng | 6e4d1d9 | 2007-09-11 19:55:27 +0000 | [diff] [blame] | 317 | let Defs = [R1], Uses = [R1] in { |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 318 | def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 319 | "${:comment} ADJCALLSTACKDOWN", |
Evan Cheng | 6e4d1d9 | 2007-09-11 19:55:27 +0000 | [diff] [blame] | 320 | [(callseq_start imm:$amt)]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 321 | def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 322 | "${:comment} ADJCALLSTACKUP", |
Evan Cheng | 6e4d1d9 | 2007-09-11 19:55:27 +0000 | [diff] [blame] | 323 | [(callseq_end imm:$amt)]>; |
| 324 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 325 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 326 | def UPDATE_VRSAVE : Pseudo<(outs GPRC:$rD), (ins GPRC:$rS), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 327 | "UPDATE_VRSAVE $rD, $rS", []>; |
| 328 | } |
| 329 | |
Evan Cheng | 6e4d1d9 | 2007-09-11 19:55:27 +0000 | [diff] [blame] | 330 | let Defs = [R1], Uses = [R1] in |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 331 | def DYNALLOC : Pseudo<(outs GPRC:$result), (ins GPRC:$negsize, memri:$fpsi), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 332 | "${:comment} DYNALLOC $result, $negsize, $fpsi", |
| 333 | [(set GPRC:$result, |
Evan Cheng | 6e4d1d9 | 2007-09-11 19:55:27 +0000 | [diff] [blame] | 334 | (PPCdynalloc GPRC:$negsize, iaddr:$fpsi))]>; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 335 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 336 | def IMPLICIT_DEF_GPRC: Pseudo<(outs GPRC:$rD), (ins), |
| 337 | "${:comment}IMPLICIT_DEF_GPRC $rD", |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 338 | [(set GPRC:$rD, (undef))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 339 | def IMPLICIT_DEF_F8 : Pseudo<(outs F8RC:$rD), (ins), |
| 340 | "${:comment} IMPLICIT_DEF_F8 $rD", |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 341 | [(set F8RC:$rD, (undef))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 342 | def IMPLICIT_DEF_F4 : Pseudo<(outs F4RC:$rD), (ins), |
| 343 | "${:comment} IMPLICIT_DEF_F4 $rD", |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 344 | [(set F4RC:$rD, (undef))]>; |
| 345 | |
| 346 | // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded by the |
| 347 | // scheduler into a branch sequence. |
| 348 | let usesCustomDAGSchedInserter = 1, // Expanded by the scheduler. |
| 349 | PPC970_Single = 1 in { |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 350 | def SELECT_CC_I4 : Pseudo<(outs GPRC:$dst), (ins CRRC:$cond, GPRC:$T, GPRC:$F, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 351 | i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!", |
| 352 | []>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 353 | def SELECT_CC_I8 : Pseudo<(outs G8RC:$dst), (ins CRRC:$cond, G8RC:$T, G8RC:$F, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 354 | i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!", |
| 355 | []>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 356 | def SELECT_CC_F4 : Pseudo<(outs F4RC:$dst), (ins CRRC:$cond, F4RC:$T, F4RC:$F, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 357 | i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!", |
| 358 | []>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 359 | def SELECT_CC_F8 : Pseudo<(outs F8RC:$dst), (ins CRRC:$cond, F8RC:$T, F8RC:$F, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 360 | i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!", |
| 361 | []>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 362 | def SELECT_CC_VRRC: Pseudo<(outs VRRC:$dst), (ins CRRC:$cond, VRRC:$T, VRRC:$F, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 363 | i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!", |
| 364 | []>; |
| 365 | } |
| 366 | |
Evan Cheng | 37e7c75 | 2007-07-21 00:34:19 +0000 | [diff] [blame] | 367 | let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 368 | let isReturn = 1 in |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 369 | def BLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$p), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 370 | "b${p:cc}lr ${p:reg}", BrB, |
| 371 | [(retflag)]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 372 | def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | |
| 376 | |
| 377 | let Defs = [LR] in |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 378 | def MovePCtoLR : Pseudo<(outs), (ins piclabel:$label), "bl $label", []>, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 379 | PPC970_Unit_BRU; |
| 380 | |
Evan Cheng | 37e7c75 | 2007-07-21 00:34:19 +0000 | [diff] [blame] | 381 | let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 382 | let isBarrier = 1 in { |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 383 | def B : IForm<18, 0, 0, (outs), (ins target:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 384 | "b $dst", BrB, |
| 385 | [(br bb:$dst)]>; |
| 386 | } |
| 387 | |
| 388 | // BCC represents an arbitrary conditional branch on a predicate. |
| 389 | // FIXME: should be able to write a pattern for PPCcondbranch, but can't use |
| 390 | // a two-value operand where a dag node expects two operands. :( |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 391 | def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, target:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 392 | "b${cond:cc} ${cond:reg}, $dst" |
| 393 | /*[(PPCcondbranch CRRC:$crS, imm:$opc, bb:$dst)]*/>; |
| 394 | } |
| 395 | |
| 396 | // Macho ABI Calls. |
Evan Cheng | 37e7c75 | 2007-07-21 00:34:19 +0000 | [diff] [blame] | 397 | let isCall = 1, PPC970_Unit = 7, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 398 | // All calls clobber the non-callee saved registers... |
| 399 | Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12, |
| 400 | F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13, |
| 401 | V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19, |
| 402 | LR,CTR, |
| 403 | CR0,CR1,CR5,CR6,CR7] in { |
| 404 | // Convenient aliases for call instructions |
| 405 | def BL_Macho : IForm<18, 0, 1, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 406 | (outs), (ins calltarget:$func, variable_ops), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 407 | "bl $func", BrB, []>; // See Pat patterns below. |
| 408 | def BLA_Macho : IForm<18, 1, 1, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 409 | (outs), (ins aaddr:$func, variable_ops), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 410 | "bla $func", BrB, [(PPCcall_Macho (i32 imm:$func))]>; |
| 411 | def BCTRL_Macho : XLForm_2_ext<19, 528, 20, 0, 1, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 412 | (outs), (ins variable_ops), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 413 | "bctrl", BrB, |
Evan Cheng | 9d99c5e | 2007-10-23 06:42:42 +0000 | [diff] [blame^] | 414 | [(PPCbctrl_Macho)]>, Requires<[In32BitMode]>; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | // ELF ABI Calls. |
Evan Cheng | 37e7c75 | 2007-07-21 00:34:19 +0000 | [diff] [blame] | 418 | let isCall = 1, PPC970_Unit = 7, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 419 | // All calls clobber the non-callee saved registers... |
| 420 | Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12, |
| 421 | F0,F1,F2,F3,F4,F5,F6,F7,F8, |
| 422 | V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19, |
| 423 | LR,CTR, |
| 424 | CR0,CR1,CR5,CR6,CR7] in { |
| 425 | // Convenient aliases for call instructions |
| 426 | def BL_ELF : IForm<18, 0, 1, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 427 | (outs), (ins calltarget:$func, variable_ops), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 428 | "bl $func", BrB, []>; // See Pat patterns below. |
| 429 | def BLA_ELF : IForm<18, 1, 1, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 430 | (outs), (ins aaddr:$func, variable_ops), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 431 | "bla $func", BrB, |
| 432 | [(PPCcall_ELF (i32 imm:$func))]>; |
| 433 | def BCTRL_ELF : XLForm_2_ext<19, 528, 20, 0, 1, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 434 | (outs), (ins variable_ops), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 435 | "bctrl", BrB, |
Evan Cheng | 9d99c5e | 2007-10-23 06:42:42 +0000 | [diff] [blame^] | 436 | [(PPCbctrl_ELF)]>, Requires<[In32BitMode]>; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | // DCB* instructions. |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 440 | def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 441 | "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>, |
| 442 | PPC970_DGroup_Single; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 443 | def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 444 | "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>, |
| 445 | PPC970_DGroup_Single; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 446 | def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 447 | "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>, |
| 448 | PPC970_DGroup_Single; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 449 | def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 450 | "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>, |
| 451 | PPC970_DGroup_Single; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 452 | def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 453 | "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>, |
| 454 | PPC970_DGroup_Single; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 455 | def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 456 | "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>, |
| 457 | PPC970_DGroup_Single; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 458 | def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 459 | "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>, |
| 460 | PPC970_DGroup_Single; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 461 | def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 462 | "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>, |
| 463 | PPC970_DGroup_Single; |
| 464 | |
| 465 | //===----------------------------------------------------------------------===// |
| 466 | // PPC32 Load Instructions. |
| 467 | // |
| 468 | |
| 469 | // Unindexed (r+i) Loads. |
| 470 | let isLoad = 1, PPC970_Unit = 2 in { |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 471 | def LBZ : DForm_1<34, (outs GPRC:$rD), (ins memri:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 472 | "lbz $rD, $src", LdStGeneral, |
| 473 | [(set GPRC:$rD, (zextloadi8 iaddr:$src))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 474 | def LHA : DForm_1<42, (outs GPRC:$rD), (ins memri:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 475 | "lha $rD, $src", LdStLHA, |
| 476 | [(set GPRC:$rD, (sextloadi16 iaddr:$src))]>, |
| 477 | PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 478 | def LHZ : DForm_1<40, (outs GPRC:$rD), (ins memri:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 479 | "lhz $rD, $src", LdStGeneral, |
| 480 | [(set GPRC:$rD, (zextloadi16 iaddr:$src))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 481 | def LWZ : DForm_1<32, (outs GPRC:$rD), (ins memri:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 482 | "lwz $rD, $src", LdStGeneral, |
| 483 | [(set GPRC:$rD, (load iaddr:$src))]>; |
| 484 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 485 | def LFS : DForm_1<48, (outs F4RC:$rD), (ins memri:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 486 | "lfs $rD, $src", LdStLFDU, |
| 487 | [(set F4RC:$rD, (load iaddr:$src))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 488 | def LFD : DForm_1<50, (outs F8RC:$rD), (ins memri:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 489 | "lfd $rD, $src", LdStLFD, |
| 490 | [(set F8RC:$rD, (load iaddr:$src))]>; |
| 491 | |
| 492 | |
| 493 | // Unindexed (r+i) Loads with Update (preinc). |
Evan Cheng | dcfb5cb | 2007-08-01 23:07:38 +0000 | [diff] [blame] | 494 | def LBZU : DForm_1<35, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 495 | "lbzu $rD, $addr", LdStGeneral, |
| 496 | []>, RegConstraint<"$addr.reg = $ea_result">, |
| 497 | NoEncode<"$ea_result">; |
| 498 | |
Evan Cheng | dcfb5cb | 2007-08-01 23:07:38 +0000 | [diff] [blame] | 499 | def LHAU : DForm_1<43, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 500 | "lhau $rD, $addr", LdStGeneral, |
| 501 | []>, RegConstraint<"$addr.reg = $ea_result">, |
| 502 | NoEncode<"$ea_result">; |
| 503 | |
Evan Cheng | dcfb5cb | 2007-08-01 23:07:38 +0000 | [diff] [blame] | 504 | def LHZU : DForm_1<41, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 505 | "lhzu $rD, $addr", LdStGeneral, |
| 506 | []>, RegConstraint<"$addr.reg = $ea_result">, |
| 507 | NoEncode<"$ea_result">; |
| 508 | |
Evan Cheng | dcfb5cb | 2007-08-01 23:07:38 +0000 | [diff] [blame] | 509 | def LWZU : DForm_1<33, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 510 | "lwzu $rD, $addr", LdStGeneral, |
| 511 | []>, RegConstraint<"$addr.reg = $ea_result">, |
| 512 | NoEncode<"$ea_result">; |
| 513 | |
Evan Cheng | dcfb5cb | 2007-08-01 23:07:38 +0000 | [diff] [blame] | 514 | def LFSU : DForm_1<49, (outs F4RC:$rD, ptr_rc:$ea_result), (ins memri:$addr), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 515 | "lfs $rD, $addr", LdStLFDU, |
| 516 | []>, RegConstraint<"$addr.reg = $ea_result">, |
| 517 | NoEncode<"$ea_result">; |
| 518 | |
Evan Cheng | dcfb5cb | 2007-08-01 23:07:38 +0000 | [diff] [blame] | 519 | def LFDU : DForm_1<51, (outs F8RC:$rD, ptr_rc:$ea_result), (ins memri:$addr), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 520 | "lfd $rD, $addr", LdStLFD, |
| 521 | []>, RegConstraint<"$addr.reg = $ea_result">, |
| 522 | NoEncode<"$ea_result">; |
| 523 | } |
| 524 | |
| 525 | // Indexed (r+r) Loads. |
| 526 | // |
| 527 | let isLoad = 1, PPC970_Unit = 2 in { |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 528 | def LBZX : XForm_1<31, 87, (outs GPRC:$rD), (ins memrr:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 529 | "lbzx $rD, $src", LdStGeneral, |
| 530 | [(set GPRC:$rD, (zextloadi8 xaddr:$src))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 531 | def LHAX : XForm_1<31, 343, (outs GPRC:$rD), (ins memrr:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 532 | "lhax $rD, $src", LdStLHA, |
| 533 | [(set GPRC:$rD, (sextloadi16 xaddr:$src))]>, |
| 534 | PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 535 | def LHZX : XForm_1<31, 279, (outs GPRC:$rD), (ins memrr:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 536 | "lhzx $rD, $src", LdStGeneral, |
| 537 | [(set GPRC:$rD, (zextloadi16 xaddr:$src))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 538 | def LWZX : XForm_1<31, 23, (outs GPRC:$rD), (ins memrr:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 539 | "lwzx $rD, $src", LdStGeneral, |
| 540 | [(set GPRC:$rD, (load xaddr:$src))]>; |
| 541 | |
| 542 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 543 | def LHBRX : XForm_1<31, 790, (outs GPRC:$rD), (ins memrr:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 544 | "lhbrx $rD, $src", LdStGeneral, |
| 545 | [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i16))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 546 | def LWBRX : XForm_1<31, 534, (outs GPRC:$rD), (ins memrr:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 547 | "lwbrx $rD, $src", LdStGeneral, |
| 548 | [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i32))]>; |
| 549 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 550 | def LFSX : XForm_25<31, 535, (outs F4RC:$frD), (ins memrr:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 551 | "lfsx $frD, $src", LdStLFDU, |
| 552 | [(set F4RC:$frD, (load xaddr:$src))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 553 | def LFDX : XForm_25<31, 599, (outs F8RC:$frD), (ins memrr:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 554 | "lfdx $frD, $src", LdStLFDU, |
| 555 | [(set F8RC:$frD, (load xaddr:$src))]>; |
| 556 | } |
| 557 | |
| 558 | //===----------------------------------------------------------------------===// |
| 559 | // PPC32 Store Instructions. |
| 560 | // |
| 561 | |
| 562 | // Unindexed (r+i) Stores. |
Evan Cheng | 37e7c75 | 2007-07-21 00:34:19 +0000 | [diff] [blame] | 563 | let isStore = 1, PPC970_Unit = 2 in { |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 564 | def STB : DForm_1<38, (outs), (ins GPRC:$rS, memri:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 565 | "stb $rS, $src", LdStGeneral, |
| 566 | [(truncstorei8 GPRC:$rS, iaddr:$src)]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 567 | def STH : DForm_1<44, (outs), (ins GPRC:$rS, memri:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 568 | "sth $rS, $src", LdStGeneral, |
| 569 | [(truncstorei16 GPRC:$rS, iaddr:$src)]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 570 | def STW : DForm_1<36, (outs), (ins GPRC:$rS, memri:$src), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 571 | "stw $rS, $src", LdStGeneral, |
| 572 | [(store GPRC:$rS, iaddr:$src)]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 573 | def STFS : DForm_1<52, (outs), (ins F4RC:$rS, memri:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 574 | "stfs $rS, $dst", LdStUX, |
| 575 | [(store F4RC:$rS, iaddr:$dst)]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 576 | def STFD : DForm_1<54, (outs), (ins F8RC:$rS, memri:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 577 | "stfd $rS, $dst", LdStUX, |
| 578 | [(store F8RC:$rS, iaddr:$dst)]>; |
| 579 | } |
| 580 | |
| 581 | // Unindexed (r+i) Stores with Update (preinc). |
| 582 | let isStore = 1, PPC970_Unit = 2 in { |
Evan Cheng | eface71 | 2007-07-20 00:20:46 +0000 | [diff] [blame] | 583 | def STBU : DForm_1<39, (outs ptr_rc:$ea_res), (ins GPRC:$rS, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 584 | symbolLo:$ptroff, ptr_rc:$ptrreg), |
| 585 | "stbu $rS, $ptroff($ptrreg)", LdStGeneral, |
| 586 | [(set ptr_rc:$ea_res, |
| 587 | (pre_truncsti8 GPRC:$rS, ptr_rc:$ptrreg, |
| 588 | iaddroff:$ptroff))]>, |
| 589 | RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">; |
Evan Cheng | eface71 | 2007-07-20 00:20:46 +0000 | [diff] [blame] | 590 | def STHU : DForm_1<45, (outs ptr_rc:$ea_res), (ins GPRC:$rS, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 591 | symbolLo:$ptroff, ptr_rc:$ptrreg), |
| 592 | "sthu $rS, $ptroff($ptrreg)", LdStGeneral, |
| 593 | [(set ptr_rc:$ea_res, |
| 594 | (pre_truncsti16 GPRC:$rS, ptr_rc:$ptrreg, |
| 595 | iaddroff:$ptroff))]>, |
| 596 | RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">; |
Evan Cheng | eface71 | 2007-07-20 00:20:46 +0000 | [diff] [blame] | 597 | def STWU : DForm_1<37, (outs ptr_rc:$ea_res), (ins GPRC:$rS, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 598 | symbolLo:$ptroff, ptr_rc:$ptrreg), |
| 599 | "stwu $rS, $ptroff($ptrreg)", LdStGeneral, |
| 600 | [(set ptr_rc:$ea_res, (pre_store GPRC:$rS, ptr_rc:$ptrreg, |
| 601 | iaddroff:$ptroff))]>, |
| 602 | RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">; |
Evan Cheng | eface71 | 2007-07-20 00:20:46 +0000 | [diff] [blame] | 603 | def STFSU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F4RC:$rS, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 604 | symbolLo:$ptroff, ptr_rc:$ptrreg), |
| 605 | "stfsu $rS, $ptroff($ptrreg)", LdStGeneral, |
| 606 | [(set ptr_rc:$ea_res, (pre_store F4RC:$rS, ptr_rc:$ptrreg, |
| 607 | iaddroff:$ptroff))]>, |
| 608 | RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">; |
Evan Cheng | eface71 | 2007-07-20 00:20:46 +0000 | [diff] [blame] | 609 | def STFDU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F8RC:$rS, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 610 | symbolLo:$ptroff, ptr_rc:$ptrreg), |
| 611 | "stfdu $rS, $ptroff($ptrreg)", LdStGeneral, |
| 612 | [(set ptr_rc:$ea_res, (pre_store F8RC:$rS, ptr_rc:$ptrreg, |
| 613 | iaddroff:$ptroff))]>, |
| 614 | RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">; |
| 615 | } |
| 616 | |
| 617 | |
| 618 | // Indexed (r+r) Stores. |
| 619 | // |
Evan Cheng | 37e7c75 | 2007-07-21 00:34:19 +0000 | [diff] [blame] | 620 | let isStore = 1, PPC970_Unit = 2 in { |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 621 | def STBX : XForm_8<31, 215, (outs), (ins GPRC:$rS, memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 622 | "stbx $rS, $dst", LdStGeneral, |
| 623 | [(truncstorei8 GPRC:$rS, xaddr:$dst)]>, |
| 624 | PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 625 | def STHX : XForm_8<31, 407, (outs), (ins GPRC:$rS, memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 626 | "sthx $rS, $dst", LdStGeneral, |
| 627 | [(truncstorei16 GPRC:$rS, xaddr:$dst)]>, |
| 628 | PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 629 | def STWX : XForm_8<31, 151, (outs), (ins GPRC:$rS, memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 630 | "stwx $rS, $dst", LdStGeneral, |
| 631 | [(store GPRC:$rS, xaddr:$dst)]>, |
| 632 | PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 633 | def STWUX : XForm_8<31, 183, (outs), (ins GPRC:$rS, GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 634 | "stwux $rS, $rA, $rB", LdStGeneral, |
| 635 | []>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 636 | def STHBRX: XForm_8<31, 918, (outs), (ins GPRC:$rS, memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 637 | "sthbrx $rS, $dst", LdStGeneral, |
| 638 | [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i16)]>, |
| 639 | PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 640 | def STWBRX: XForm_8<31, 662, (outs), (ins GPRC:$rS, memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 641 | "stwbrx $rS, $dst", LdStGeneral, |
| 642 | [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i32)]>, |
| 643 | PPC970_DGroup_Cracked; |
| 644 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 645 | def STFIWX: XForm_28<31, 983, (outs), (ins F8RC:$frS, memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 646 | "stfiwx $frS, $dst", LdStUX, |
| 647 | [(PPCstfiwx F8RC:$frS, xoaddr:$dst)]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 648 | def STFSX : XForm_28<31, 663, (outs), (ins F4RC:$frS, memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 649 | "stfsx $frS, $dst", LdStUX, |
| 650 | [(store F4RC:$frS, xaddr:$dst)]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 651 | def STFDX : XForm_28<31, 727, (outs), (ins F8RC:$frS, memrr:$dst), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 652 | "stfdx $frS, $dst", LdStUX, |
| 653 | [(store F8RC:$frS, xaddr:$dst)]>; |
| 654 | } |
| 655 | |
| 656 | |
| 657 | //===----------------------------------------------------------------------===// |
| 658 | // PPC32 Arithmetic Instructions. |
| 659 | // |
| 660 | |
| 661 | let PPC970_Unit = 1 in { // FXU Operations. |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 662 | def ADDI : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 663 | "addi $rD, $rA, $imm", IntGeneral, |
| 664 | [(set GPRC:$rD, (add GPRC:$rA, immSExt16:$imm))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 665 | def ADDIC : DForm_2<12, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 666 | "addic $rD, $rA, $imm", IntGeneral, |
| 667 | [(set GPRC:$rD, (addc GPRC:$rA, immSExt16:$imm))]>, |
| 668 | PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 669 | def ADDICo : DForm_2<13, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 670 | "addic. $rD, $rA, $imm", IntGeneral, |
| 671 | []>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 672 | def ADDIS : DForm_2<15, (outs GPRC:$rD), (ins GPRC:$rA, symbolHi:$imm), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 673 | "addis $rD, $rA, $imm", IntGeneral, |
| 674 | [(set GPRC:$rD, (add GPRC:$rA, imm16ShiftedSExt:$imm))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 675 | def LA : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, symbolLo:$sym), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 676 | "la $rD, $sym($rA)", IntGeneral, |
| 677 | [(set GPRC:$rD, (add GPRC:$rA, |
| 678 | (PPClo tglobaladdr:$sym, 0)))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 679 | def MULLI : DForm_2< 7, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 680 | "mulli $rD, $rA, $imm", IntMulLI, |
| 681 | [(set GPRC:$rD, (mul GPRC:$rA, immSExt16:$imm))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 682 | def SUBFIC : DForm_2< 8, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 683 | "subfic $rD, $rA, $imm", IntGeneral, |
| 684 | [(set GPRC:$rD, (subc immSExt16:$imm, GPRC:$rA))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 685 | def LI : DForm_2_r0<14, (outs GPRC:$rD), (ins symbolLo:$imm), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 686 | "li $rD, $imm", IntGeneral, |
| 687 | [(set GPRC:$rD, immSExt16:$imm)]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 688 | def LIS : DForm_2_r0<15, (outs GPRC:$rD), (ins symbolHi:$imm), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 689 | "lis $rD, $imm", IntGeneral, |
| 690 | [(set GPRC:$rD, imm16ShiftedSExt:$imm)]>; |
| 691 | } |
| 692 | |
| 693 | let PPC970_Unit = 1 in { // FXU Operations. |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 694 | def ANDIo : DForm_4<28, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 695 | "andi. $dst, $src1, $src2", IntGeneral, |
| 696 | [(set GPRC:$dst, (and GPRC:$src1, immZExt16:$src2))]>, |
| 697 | isDOT; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 698 | def ANDISo : DForm_4<29, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 699 | "andis. $dst, $src1, $src2", IntGeneral, |
| 700 | [(set GPRC:$dst, (and GPRC:$src1,imm16ShiftedZExt:$src2))]>, |
| 701 | isDOT; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 702 | def ORI : DForm_4<24, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 703 | "ori $dst, $src1, $src2", IntGeneral, |
| 704 | [(set GPRC:$dst, (or GPRC:$src1, immZExt16:$src2))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 705 | def ORIS : DForm_4<25, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 706 | "oris $dst, $src1, $src2", IntGeneral, |
| 707 | [(set GPRC:$dst, (or GPRC:$src1, imm16ShiftedZExt:$src2))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 708 | def XORI : DForm_4<26, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 709 | "xori $dst, $src1, $src2", IntGeneral, |
| 710 | [(set GPRC:$dst, (xor GPRC:$src1, immZExt16:$src2))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 711 | def XORIS : DForm_4<27, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 712 | "xoris $dst, $src1, $src2", IntGeneral, |
| 713 | [(set GPRC:$dst, (xor GPRC:$src1,imm16ShiftedZExt:$src2))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 714 | def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntGeneral, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 715 | []>; |
Evan Cheng | dcfb5cb | 2007-08-01 23:07:38 +0000 | [diff] [blame] | 716 | def CMPWI : DForm_5_ext<11, (outs CRRC:$crD), (ins GPRC:$rA, s16imm:$imm), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 717 | "cmpwi $crD, $rA, $imm", IntCompare>; |
Evan Cheng | dcfb5cb | 2007-08-01 23:07:38 +0000 | [diff] [blame] | 718 | def CMPLWI : DForm_6_ext<10, (outs CRRC:$dst), (ins GPRC:$src1, u16imm:$src2), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 719 | "cmplwi $dst, $src1, $src2", IntCompare>; |
| 720 | } |
| 721 | |
| 722 | |
| 723 | let PPC970_Unit = 1 in { // FXU Operations. |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 724 | def NAND : XForm_6<31, 476, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 725 | "nand $rA, $rS, $rB", IntGeneral, |
| 726 | [(set GPRC:$rA, (not (and GPRC:$rS, GPRC:$rB)))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 727 | def AND : XForm_6<31, 28, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 728 | "and $rA, $rS, $rB", IntGeneral, |
| 729 | [(set GPRC:$rA, (and GPRC:$rS, GPRC:$rB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 730 | def ANDC : XForm_6<31, 60, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 731 | "andc $rA, $rS, $rB", IntGeneral, |
| 732 | [(set GPRC:$rA, (and GPRC:$rS, (not GPRC:$rB)))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 733 | def OR : XForm_6<31, 444, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 734 | "or $rA, $rS, $rB", IntGeneral, |
| 735 | [(set GPRC:$rA, (or GPRC:$rS, GPRC:$rB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 736 | def NOR : XForm_6<31, 124, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 737 | "nor $rA, $rS, $rB", IntGeneral, |
| 738 | [(set GPRC:$rA, (not (or GPRC:$rS, GPRC:$rB)))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 739 | def ORC : XForm_6<31, 412, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 740 | "orc $rA, $rS, $rB", IntGeneral, |
| 741 | [(set GPRC:$rA, (or GPRC:$rS, (not GPRC:$rB)))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 742 | def EQV : XForm_6<31, 284, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 743 | "eqv $rA, $rS, $rB", IntGeneral, |
| 744 | [(set GPRC:$rA, (not (xor GPRC:$rS, GPRC:$rB)))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 745 | def XOR : XForm_6<31, 316, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 746 | "xor $rA, $rS, $rB", IntGeneral, |
| 747 | [(set GPRC:$rA, (xor GPRC:$rS, GPRC:$rB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 748 | def SLW : XForm_6<31, 24, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 749 | "slw $rA, $rS, $rB", IntGeneral, |
| 750 | [(set GPRC:$rA, (PPCshl GPRC:$rS, GPRC:$rB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 751 | def SRW : XForm_6<31, 536, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 752 | "srw $rA, $rS, $rB", IntGeneral, |
| 753 | [(set GPRC:$rA, (PPCsrl GPRC:$rS, GPRC:$rB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 754 | def SRAW : XForm_6<31, 792, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 755 | "sraw $rA, $rS, $rB", IntShift, |
| 756 | [(set GPRC:$rA, (PPCsra GPRC:$rS, GPRC:$rB))]>; |
| 757 | } |
| 758 | |
| 759 | let PPC970_Unit = 1 in { // FXU Operations. |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 760 | def SRAWI : XForm_10<31, 824, (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 761 | "srawi $rA, $rS, $SH", IntShift, |
| 762 | [(set GPRC:$rA, (sra GPRC:$rS, (i32 imm:$SH)))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 763 | def CNTLZW : XForm_11<31, 26, (outs GPRC:$rA), (ins GPRC:$rS), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 764 | "cntlzw $rA, $rS", IntGeneral, |
| 765 | [(set GPRC:$rA, (ctlz GPRC:$rS))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 766 | def EXTSB : XForm_11<31, 954, (outs GPRC:$rA), (ins GPRC:$rS), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 767 | "extsb $rA, $rS", IntGeneral, |
| 768 | [(set GPRC:$rA, (sext_inreg GPRC:$rS, i8))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 769 | def EXTSH : XForm_11<31, 922, (outs GPRC:$rA), (ins GPRC:$rS), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 770 | "extsh $rA, $rS", IntGeneral, |
| 771 | [(set GPRC:$rA, (sext_inreg GPRC:$rS, i16))]>; |
| 772 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 773 | def CMPW : XForm_16_ext<31, 0, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 774 | "cmpw $crD, $rA, $rB", IntCompare>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 775 | def CMPLW : XForm_16_ext<31, 32, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 776 | "cmplw $crD, $rA, $rB", IntCompare>; |
| 777 | } |
| 778 | let PPC970_Unit = 3 in { // FPU Operations. |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 779 | //def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 780 | // "fcmpo $crD, $fA, $fB", FPCompare>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 781 | def FCMPUS : XForm_17<63, 0, (outs CRRC:$crD), (ins F4RC:$fA, F4RC:$fB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 782 | "fcmpu $crD, $fA, $fB", FPCompare>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 783 | def FCMPUD : XForm_17<63, 0, (outs CRRC:$crD), (ins F8RC:$fA, F8RC:$fB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 784 | "fcmpu $crD, $fA, $fB", FPCompare>; |
| 785 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 786 | def FCTIWZ : XForm_26<63, 15, (outs F8RC:$frD), (ins F8RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 787 | "fctiwz $frD, $frB", FPGeneral, |
| 788 | [(set F8RC:$frD, (PPCfctiwz F8RC:$frB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 789 | def FRSP : XForm_26<63, 12, (outs F4RC:$frD), (ins F8RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 790 | "frsp $frD, $frB", FPGeneral, |
| 791 | [(set F4RC:$frD, (fround F8RC:$frB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 792 | def FSQRT : XForm_26<63, 22, (outs F8RC:$frD), (ins F8RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 793 | "fsqrt $frD, $frB", FPSqrt, |
| 794 | [(set F8RC:$frD, (fsqrt F8RC:$frB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 795 | def FSQRTS : XForm_26<59, 22, (outs F4RC:$frD), (ins F4RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 796 | "fsqrts $frD, $frB", FPSqrt, |
| 797 | [(set F4RC:$frD, (fsqrt F4RC:$frB))]>; |
| 798 | } |
| 799 | |
| 800 | /// FMR is split into 3 versions, one for 4/8 byte FP, and one for extending. |
| 801 | /// |
| 802 | /// Note that these are defined as pseudo-ops on the PPC970 because they are |
| 803 | /// often coalesced away and we don't want the dispatch group builder to think |
| 804 | /// that they will fill slots (which could cause the load of a LSU reject to |
| 805 | /// sneak into a d-group with a store). |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 806 | def FMRS : XForm_26<63, 72, (outs F4RC:$frD), (ins F4RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 807 | "fmr $frD, $frB", FPGeneral, |
| 808 | []>, // (set F4RC:$frD, F4RC:$frB) |
| 809 | PPC970_Unit_Pseudo; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 810 | def FMRD : XForm_26<63, 72, (outs F8RC:$frD), (ins F8RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 811 | "fmr $frD, $frB", FPGeneral, |
| 812 | []>, // (set F8RC:$frD, F8RC:$frB) |
| 813 | PPC970_Unit_Pseudo; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 814 | def FMRSD : XForm_26<63, 72, (outs F8RC:$frD), (ins F4RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 815 | "fmr $frD, $frB", FPGeneral, |
| 816 | [(set F8RC:$frD, (fextend F4RC:$frB))]>, |
| 817 | PPC970_Unit_Pseudo; |
| 818 | |
| 819 | let PPC970_Unit = 3 in { // FPU Operations. |
| 820 | // These are artificially split into two different forms, for 4/8 byte FP. |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 821 | def FABSS : XForm_26<63, 264, (outs F4RC:$frD), (ins F4RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 822 | "fabs $frD, $frB", FPGeneral, |
| 823 | [(set F4RC:$frD, (fabs F4RC:$frB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 824 | def FABSD : XForm_26<63, 264, (outs F8RC:$frD), (ins F8RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 825 | "fabs $frD, $frB", FPGeneral, |
| 826 | [(set F8RC:$frD, (fabs F8RC:$frB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 827 | def FNABSS : XForm_26<63, 136, (outs F4RC:$frD), (ins F4RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 828 | "fnabs $frD, $frB", FPGeneral, |
| 829 | [(set F4RC:$frD, (fneg (fabs F4RC:$frB)))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 830 | def FNABSD : XForm_26<63, 136, (outs F8RC:$frD), (ins F8RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 831 | "fnabs $frD, $frB", FPGeneral, |
| 832 | [(set F8RC:$frD, (fneg (fabs F8RC:$frB)))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 833 | def FNEGS : XForm_26<63, 40, (outs F4RC:$frD), (ins F4RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 834 | "fneg $frD, $frB", FPGeneral, |
| 835 | [(set F4RC:$frD, (fneg F4RC:$frB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 836 | def FNEGD : XForm_26<63, 40, (outs F8RC:$frD), (ins F8RC:$frB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 837 | "fneg $frD, $frB", FPGeneral, |
| 838 | [(set F8RC:$frD, (fneg F8RC:$frB))]>; |
| 839 | } |
| 840 | |
| 841 | |
| 842 | // XL-Form instructions. condition register logical ops. |
| 843 | // |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 844 | def MCRF : XLForm_3<19, 0, (outs CRRC:$BF), (ins CRRC:$BFA), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 845 | "mcrf $BF, $BFA", BrMCR>, |
| 846 | PPC970_DGroup_First, PPC970_Unit_CRU; |
| 847 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 848 | def CREQV : XLForm_1<19, 289, (outs CRRC:$CRD), (ins CRRC:$CRA, CRRC:$CRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 849 | "creqv $CRD, $CRA, $CRB", BrCR, |
| 850 | []>; |
| 851 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 852 | def SETCR : XLForm_1_ext<19, 289, (outs CRRC:$dst), (ins), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 853 | "creqv $dst, $dst, $dst", BrCR, |
| 854 | []>; |
| 855 | |
| 856 | // XFX-Form instructions. Instructions that deal with SPRs. |
| 857 | // |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 858 | def MFCTR : XFXForm_1_ext<31, 339, 9, (outs GPRC:$rT), (ins), |
| 859 | "mfctr $rT", SprMFSPR>, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 860 | PPC970_DGroup_First, PPC970_Unit_FXU; |
| 861 | let Pattern = [(PPCmtctr GPRC:$rS)] in { |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 862 | def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins GPRC:$rS), |
| 863 | "mtctr $rS", SprMTSPR>, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 864 | PPC970_DGroup_First, PPC970_Unit_FXU; |
| 865 | } |
| 866 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 867 | def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins GPRC:$rS), |
| 868 | "mtlr $rS", SprMTSPR>, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 869 | PPC970_DGroup_First, PPC970_Unit_FXU; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 870 | def MFLR : XFXForm_1_ext<31, 339, 8, (outs GPRC:$rT), (ins), |
| 871 | "mflr $rT", SprMFSPR>, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 872 | PPC970_DGroup_First, PPC970_Unit_FXU; |
| 873 | |
| 874 | // Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like |
| 875 | // a GPR on the PPC970. As such, copies in and out have the same performance |
| 876 | // characteristics as an OR instruction. |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 877 | def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins GPRC:$rS), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 878 | "mtspr 256, $rS", IntGeneral>, |
| 879 | PPC970_DGroup_Single, PPC970_Unit_FXU; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 880 | def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs GPRC:$rT), (ins), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 881 | "mfspr $rT, 256", IntGeneral>, |
| 882 | PPC970_DGroup_First, PPC970_Unit_FXU; |
| 883 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 884 | def MTCRF : XFXForm_5<31, 144, (outs), (ins crbitm:$FXM, GPRC:$rS), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 885 | "mtcrf $FXM, $rS", BrMCRX>, |
| 886 | PPC970_MicroCode, PPC970_Unit_CRU; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 887 | def MFCR : XFXForm_3<31, 19, (outs GPRC:$rT), (ins), "mfcr $rT", SprMFCR>, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 888 | PPC970_MicroCode, PPC970_Unit_CRU; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 889 | def MFOCRF: XFXForm_5a<31, 19, (outs GPRC:$rT), (ins crbitm:$FXM), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 890 | "mfcr $rT, $FXM", SprMFCR>, |
| 891 | PPC970_DGroup_First, PPC970_Unit_CRU; |
| 892 | |
Dale Johannesen | 3d8578b | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 893 | // Instructions to manipulate FPSCR. Only long double handling uses these. |
| 894 | // FPSCR is not modelled; we use the SDNode Flag to keep things in order. |
| 895 | |
| 896 | def MFFS : XForm_42<63, 583, (outs F8RC:$rT), (ins), |
| 897 | "mffs $rT", IntMFFS, |
| 898 | [(set F8RC:$rT, (PPCmffs))]>, |
| 899 | PPC970_DGroup_Single, PPC970_Unit_FPU; |
| 900 | def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM), |
| 901 | "mtfsb0 $FM", IntMTFSB0, |
| 902 | [(PPCmtfsb0 (i32 imm:$FM))]>, |
| 903 | PPC970_DGroup_Single, PPC970_Unit_FPU; |
| 904 | def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM), |
| 905 | "mtfsb1 $FM", IntMTFSB0, |
| 906 | [(PPCmtfsb1 (i32 imm:$FM))]>, |
| 907 | PPC970_DGroup_Single, PPC970_Unit_FPU; |
| 908 | def FADDrtz: AForm_2<63, 21, |
| 909 | (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB), |
| 910 | "fadd $FRT, $FRA, $FRB", FPGeneral, |
| 911 | [(set F8RC:$FRT, (PPCfaddrtz F8RC:$FRA, F8RC:$FRB))]>, |
| 912 | PPC970_DGroup_Single, PPC970_Unit_FPU; |
| 913 | // MTFSF does not actually produce an FP result. We pretend it copies |
| 914 | // input reg B to the output. If we didn't do this it would look like the |
| 915 | // instruction had no outputs (because we aren't modelling the FPSCR) and |
| 916 | // it would be deleted. |
| 917 | def MTFSF : XFLForm<63, 711, (outs F8RC:$FRA), |
| 918 | (ins i32imm:$FM, F8RC:$rT, F8RC:$FRB), |
| 919 | "mtfsf $FM, $rT", "$FRB = $FRA", IntMTFSB0, |
| 920 | [(set F8RC:$FRA, (PPCmtfsf (i32 imm:$FM), |
| 921 | F8RC:$rT, F8RC:$FRB))]>, |
| 922 | PPC970_DGroup_Single, PPC970_Unit_FPU; |
| 923 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 924 | let PPC970_Unit = 1 in { // FXU Operations. |
| 925 | |
| 926 | // XO-Form instructions. Arithmetic instructions that can set overflow bit |
| 927 | // |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 928 | def ADD4 : XOForm_1<31, 266, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 929 | "add $rT, $rA, $rB", IntGeneral, |
| 930 | [(set GPRC:$rT, (add GPRC:$rA, GPRC:$rB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 931 | def ADDC : XOForm_1<31, 10, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 932 | "addc $rT, $rA, $rB", IntGeneral, |
| 933 | [(set GPRC:$rT, (addc GPRC:$rA, GPRC:$rB))]>, |
| 934 | PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 935 | def ADDE : XOForm_1<31, 138, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 936 | "adde $rT, $rA, $rB", IntGeneral, |
| 937 | [(set GPRC:$rT, (adde GPRC:$rA, GPRC:$rB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 938 | def DIVW : XOForm_1<31, 491, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 939 | "divw $rT, $rA, $rB", IntDivW, |
| 940 | [(set GPRC:$rT, (sdiv GPRC:$rA, GPRC:$rB))]>, |
| 941 | PPC970_DGroup_First, PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 942 | def DIVWU : XOForm_1<31, 459, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 943 | "divwu $rT, $rA, $rB", IntDivW, |
| 944 | [(set GPRC:$rT, (udiv GPRC:$rA, GPRC:$rB))]>, |
| 945 | PPC970_DGroup_First, PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 946 | def MULHW : XOForm_1<31, 75, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 947 | "mulhw $rT, $rA, $rB", IntMulHW, |
| 948 | [(set GPRC:$rT, (mulhs GPRC:$rA, GPRC:$rB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 949 | def MULHWU : XOForm_1<31, 11, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 950 | "mulhwu $rT, $rA, $rB", IntMulHWU, |
| 951 | [(set GPRC:$rT, (mulhu GPRC:$rA, GPRC:$rB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 952 | def MULLW : XOForm_1<31, 235, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 953 | "mullw $rT, $rA, $rB", IntMulHW, |
| 954 | [(set GPRC:$rT, (mul GPRC:$rA, GPRC:$rB))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 955 | def SUBF : XOForm_1<31, 40, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 956 | "subf $rT, $rA, $rB", IntGeneral, |
| 957 | [(set GPRC:$rT, (sub GPRC:$rB, GPRC:$rA))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 958 | def SUBFC : XOForm_1<31, 8, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 959 | "subfc $rT, $rA, $rB", IntGeneral, |
| 960 | [(set GPRC:$rT, (subc GPRC:$rB, GPRC:$rA))]>, |
| 961 | PPC970_DGroup_Cracked; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 962 | def SUBFE : XOForm_1<31, 136, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 963 | "subfe $rT, $rA, $rB", IntGeneral, |
| 964 | [(set GPRC:$rT, (sube GPRC:$rB, GPRC:$rA))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 965 | def ADDME : XOForm_3<31, 234, 0, (outs GPRC:$rT), (ins GPRC:$rA), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 966 | "addme $rT, $rA", IntGeneral, |
| 967 | [(set GPRC:$rT, (adde GPRC:$rA, immAllOnes))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 968 | def ADDZE : XOForm_3<31, 202, 0, (outs GPRC:$rT), (ins GPRC:$rA), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 969 | "addze $rT, $rA", IntGeneral, |
| 970 | [(set GPRC:$rT, (adde GPRC:$rA, 0))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 971 | def NEG : XOForm_3<31, 104, 0, (outs GPRC:$rT), (ins GPRC:$rA), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 972 | "neg $rT, $rA", IntGeneral, |
| 973 | [(set GPRC:$rT, (ineg GPRC:$rA))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 974 | def SUBFME : XOForm_3<31, 232, 0, (outs GPRC:$rT), (ins GPRC:$rA), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 975 | "subfme $rT, $rA", IntGeneral, |
| 976 | [(set GPRC:$rT, (sube immAllOnes, GPRC:$rA))]>; |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 977 | def SUBFZE : XOForm_3<31, 200, 0, (outs GPRC:$rT), (ins GPRC:$rA), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 978 | "subfze $rT, $rA", IntGeneral, |
| 979 | [(set GPRC:$rT, (sube 0, GPRC:$rA))]>; |
| 980 | } |
| 981 | |
| 982 | // A-Form instructions. Most of the instructions executed in the FPU are of |
| 983 | // this type. |
| 984 | // |
| 985 | let PPC970_Unit = 3 in { // FPU Operations. |
| 986 | def FMADD : AForm_1<63, 29, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 987 | (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 988 | "fmadd $FRT, $FRA, $FRC, $FRB", FPFused, |
| 989 | [(set F8RC:$FRT, (fadd (fmul F8RC:$FRA, F8RC:$FRC), |
| 990 | F8RC:$FRB))]>, |
| 991 | Requires<[FPContractions]>; |
| 992 | def FMADDS : AForm_1<59, 29, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 993 | (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 994 | "fmadds $FRT, $FRA, $FRC, $FRB", FPGeneral, |
| 995 | [(set F4RC:$FRT, (fadd (fmul F4RC:$FRA, F4RC:$FRC), |
| 996 | F4RC:$FRB))]>, |
| 997 | Requires<[FPContractions]>; |
| 998 | def FMSUB : AForm_1<63, 28, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 999 | (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1000 | "fmsub $FRT, $FRA, $FRC, $FRB", FPFused, |
| 1001 | [(set F8RC:$FRT, (fsub (fmul F8RC:$FRA, F8RC:$FRC), |
| 1002 | F8RC:$FRB))]>, |
| 1003 | Requires<[FPContractions]>; |
| 1004 | def FMSUBS : AForm_1<59, 28, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1005 | (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1006 | "fmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral, |
| 1007 | [(set F4RC:$FRT, (fsub (fmul F4RC:$FRA, F4RC:$FRC), |
| 1008 | F4RC:$FRB))]>, |
| 1009 | Requires<[FPContractions]>; |
| 1010 | def FNMADD : AForm_1<63, 31, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1011 | (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1012 | "fnmadd $FRT, $FRA, $FRC, $FRB", FPFused, |
| 1013 | [(set F8RC:$FRT, (fneg (fadd (fmul F8RC:$FRA, F8RC:$FRC), |
| 1014 | F8RC:$FRB)))]>, |
| 1015 | Requires<[FPContractions]>; |
| 1016 | def FNMADDS : AForm_1<59, 31, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1017 | (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1018 | "fnmadds $FRT, $FRA, $FRC, $FRB", FPGeneral, |
| 1019 | [(set F4RC:$FRT, (fneg (fadd (fmul F4RC:$FRA, F4RC:$FRC), |
| 1020 | F4RC:$FRB)))]>, |
| 1021 | Requires<[FPContractions]>; |
| 1022 | def FNMSUB : AForm_1<63, 30, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1023 | (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1024 | "fnmsub $FRT, $FRA, $FRC, $FRB", FPFused, |
| 1025 | [(set F8RC:$FRT, (fneg (fsub (fmul F8RC:$FRA, F8RC:$FRC), |
| 1026 | F8RC:$FRB)))]>, |
| 1027 | Requires<[FPContractions]>; |
| 1028 | def FNMSUBS : AForm_1<59, 30, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1029 | (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1030 | "fnmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral, |
| 1031 | [(set F4RC:$FRT, (fneg (fsub (fmul F4RC:$FRA, F4RC:$FRC), |
| 1032 | F4RC:$FRB)))]>, |
| 1033 | Requires<[FPContractions]>; |
| 1034 | // FSEL is artificially split into 4 and 8-byte forms for the result. To avoid |
| 1035 | // having 4 of these, force the comparison to always be an 8-byte double (code |
| 1036 | // should use an FMRSD if the input comparison value really wants to be a float) |
| 1037 | // and 4/8 byte forms for the result and operand type.. |
| 1038 | def FSELD : AForm_1<63, 23, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1039 | (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1040 | "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral, |
| 1041 | [(set F8RC:$FRT, (PPCfsel F8RC:$FRA,F8RC:$FRC,F8RC:$FRB))]>; |
| 1042 | def FSELS : AForm_1<63, 23, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1043 | (outs F4RC:$FRT), (ins F8RC:$FRA, F4RC:$FRC, F4RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1044 | "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral, |
| 1045 | [(set F4RC:$FRT, (PPCfsel F8RC:$FRA,F4RC:$FRC,F4RC:$FRB))]>; |
| 1046 | def FADD : AForm_2<63, 21, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1047 | (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1048 | "fadd $FRT, $FRA, $FRB", FPGeneral, |
| 1049 | [(set F8RC:$FRT, (fadd F8RC:$FRA, F8RC:$FRB))]>; |
| 1050 | def FADDS : AForm_2<59, 21, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1051 | (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1052 | "fadds $FRT, $FRA, $FRB", FPGeneral, |
| 1053 | [(set F4RC:$FRT, (fadd F4RC:$FRA, F4RC:$FRB))]>; |
| 1054 | def FDIV : AForm_2<63, 18, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1055 | (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1056 | "fdiv $FRT, $FRA, $FRB", FPDivD, |
| 1057 | [(set F8RC:$FRT, (fdiv F8RC:$FRA, F8RC:$FRB))]>; |
| 1058 | def FDIVS : AForm_2<59, 18, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1059 | (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1060 | "fdivs $FRT, $FRA, $FRB", FPDivS, |
| 1061 | [(set F4RC:$FRT, (fdiv F4RC:$FRA, F4RC:$FRB))]>; |
| 1062 | def FMUL : AForm_3<63, 25, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1063 | (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1064 | "fmul $FRT, $FRA, $FRB", FPFused, |
| 1065 | [(set F8RC:$FRT, (fmul F8RC:$FRA, F8RC:$FRB))]>; |
| 1066 | def FMULS : AForm_3<59, 25, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1067 | (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1068 | "fmuls $FRT, $FRA, $FRB", FPGeneral, |
| 1069 | [(set F4RC:$FRT, (fmul F4RC:$FRA, F4RC:$FRB))]>; |
| 1070 | def FSUB : AForm_2<63, 20, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1071 | (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1072 | "fsub $FRT, $FRA, $FRB", FPGeneral, |
| 1073 | [(set F8RC:$FRT, (fsub F8RC:$FRA, F8RC:$FRB))]>; |
| 1074 | def FSUBS : AForm_2<59, 20, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1075 | (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1076 | "fsubs $FRT, $FRA, $FRB", FPGeneral, |
| 1077 | [(set F4RC:$FRT, (fsub F4RC:$FRA, F4RC:$FRB))]>; |
| 1078 | } |
| 1079 | |
| 1080 | let PPC970_Unit = 1 in { // FXU Operations. |
| 1081 | // M-Form instructions. rotate and mask instructions. |
| 1082 | // |
| 1083 | let isCommutable = 1 in { |
| 1084 | // RLWIMI can be commuted if the rotate amount is zero. |
| 1085 | def RLWIMI : MForm_2<20, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1086 | (outs GPRC:$rA), (ins GPRC:$rSi, GPRC:$rS, u5imm:$SH, u5imm:$MB, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1087 | u5imm:$ME), "rlwimi $rA, $rS, $SH, $MB, $ME", IntRotate, |
| 1088 | []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">, |
| 1089 | NoEncode<"$rSi">; |
| 1090 | } |
| 1091 | def RLWINM : MForm_2<21, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1092 | (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1093 | "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral, |
| 1094 | []>; |
| 1095 | def RLWINMo : MForm_2<21, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1096 | (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1097 | "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral, |
| 1098 | []>, isDOT, PPC970_DGroup_Cracked; |
| 1099 | def RLWNM : MForm_2<23, |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1100 | (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB, u5imm:$MB, u5imm:$ME), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1101 | "rlwnm $rA, $rS, $rB, $MB, $ME", IntGeneral, |
| 1102 | []>; |
| 1103 | } |
| 1104 | |
| 1105 | |
| 1106 | //===----------------------------------------------------------------------===// |
| 1107 | // DWARF Pseudo Instructions |
| 1108 | // |
| 1109 | |
Evan Cheng | b783fa3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 1110 | def DWARF_LOC : Pseudo<(outs), (ins i32imm:$line, i32imm:$col, i32imm:$file), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1111 | "${:comment} .loc $file, $line, $col", |
| 1112 | [(dwarf_loc (i32 imm:$line), (i32 imm:$col), |
| 1113 | (i32 imm:$file))]>; |
| 1114 | |
| 1115 | //===----------------------------------------------------------------------===// |
| 1116 | // PowerPC Instruction Patterns |
| 1117 | // |
| 1118 | |
| 1119 | // Arbitrary immediate support. Implement in terms of LIS/ORI. |
| 1120 | def : Pat<(i32 imm:$imm), |
| 1121 | (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>; |
| 1122 | |
| 1123 | // Implement the 'not' operation with the NOR instruction. |
| 1124 | def NOT : Pat<(not GPRC:$in), |
| 1125 | (NOR GPRC:$in, GPRC:$in)>; |
| 1126 | |
| 1127 | // ADD an arbitrary immediate. |
| 1128 | def : Pat<(add GPRC:$in, imm:$imm), |
| 1129 | (ADDIS (ADDI GPRC:$in, (LO16 imm:$imm)), (HA16 imm:$imm))>; |
| 1130 | // OR an arbitrary immediate. |
| 1131 | def : Pat<(or GPRC:$in, imm:$imm), |
| 1132 | (ORIS (ORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>; |
| 1133 | // XOR an arbitrary immediate. |
| 1134 | def : Pat<(xor GPRC:$in, imm:$imm), |
| 1135 | (XORIS (XORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>; |
| 1136 | // SUBFIC |
| 1137 | def : Pat<(sub immSExt16:$imm, GPRC:$in), |
| 1138 | (SUBFIC GPRC:$in, imm:$imm)>; |
| 1139 | |
| 1140 | // SHL/SRL |
| 1141 | def : Pat<(shl GPRC:$in, (i32 imm:$imm)), |
| 1142 | (RLWINM GPRC:$in, imm:$imm, 0, (SHL32 imm:$imm))>; |
| 1143 | def : Pat<(srl GPRC:$in, (i32 imm:$imm)), |
| 1144 | (RLWINM GPRC:$in, (SRL32 imm:$imm), imm:$imm, 31)>; |
| 1145 | |
| 1146 | // ROTL |
| 1147 | def : Pat<(rotl GPRC:$in, GPRC:$sh), |
| 1148 | (RLWNM GPRC:$in, GPRC:$sh, 0, 31)>; |
| 1149 | def : Pat<(rotl GPRC:$in, (i32 imm:$imm)), |
| 1150 | (RLWINM GPRC:$in, imm:$imm, 0, 31)>; |
| 1151 | |
| 1152 | // RLWNM |
| 1153 | def : Pat<(and (rotl GPRC:$in, GPRC:$sh), maskimm32:$imm), |
| 1154 | (RLWNM GPRC:$in, GPRC:$sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>; |
| 1155 | |
| 1156 | // Calls |
| 1157 | def : Pat<(PPCcall_Macho (i32 tglobaladdr:$dst)), |
| 1158 | (BL_Macho tglobaladdr:$dst)>; |
| 1159 | def : Pat<(PPCcall_Macho (i32 texternalsym:$dst)), |
| 1160 | (BL_Macho texternalsym:$dst)>; |
| 1161 | def : Pat<(PPCcall_ELF (i32 tglobaladdr:$dst)), |
| 1162 | (BL_ELF tglobaladdr:$dst)>; |
| 1163 | def : Pat<(PPCcall_ELF (i32 texternalsym:$dst)), |
| 1164 | (BL_ELF texternalsym:$dst)>; |
| 1165 | |
| 1166 | // Hi and Lo for Darwin Global Addresses. |
| 1167 | def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>; |
| 1168 | def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>; |
| 1169 | def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>; |
| 1170 | def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>; |
| 1171 | def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>; |
| 1172 | def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>; |
| 1173 | def : Pat<(add GPRC:$in, (PPChi tglobaladdr:$g, 0)), |
| 1174 | (ADDIS GPRC:$in, tglobaladdr:$g)>; |
| 1175 | def : Pat<(add GPRC:$in, (PPChi tconstpool:$g, 0)), |
| 1176 | (ADDIS GPRC:$in, tconstpool:$g)>; |
| 1177 | def : Pat<(add GPRC:$in, (PPChi tjumptable:$g, 0)), |
| 1178 | (ADDIS GPRC:$in, tjumptable:$g)>; |
| 1179 | |
| 1180 | // Fused negative multiply subtract, alternate pattern |
| 1181 | def : Pat<(fsub F8RC:$B, (fmul F8RC:$A, F8RC:$C)), |
| 1182 | (FNMSUB F8RC:$A, F8RC:$C, F8RC:$B)>, |
| 1183 | Requires<[FPContractions]>; |
| 1184 | def : Pat<(fsub F4RC:$B, (fmul F4RC:$A, F4RC:$C)), |
| 1185 | (FNMSUBS F4RC:$A, F4RC:$C, F4RC:$B)>, |
| 1186 | Requires<[FPContractions]>; |
| 1187 | |
| 1188 | // Standard shifts. These are represented separately from the real shifts above |
| 1189 | // so that we can distinguish between shifts that allow 5-bit and 6-bit shift |
| 1190 | // amounts. |
| 1191 | def : Pat<(sra GPRC:$rS, GPRC:$rB), |
| 1192 | (SRAW GPRC:$rS, GPRC:$rB)>; |
| 1193 | def : Pat<(srl GPRC:$rS, GPRC:$rB), |
| 1194 | (SRW GPRC:$rS, GPRC:$rB)>; |
| 1195 | def : Pat<(shl GPRC:$rS, GPRC:$rB), |
| 1196 | (SLW GPRC:$rS, GPRC:$rB)>; |
| 1197 | |
| 1198 | def : Pat<(zextloadi1 iaddr:$src), |
| 1199 | (LBZ iaddr:$src)>; |
| 1200 | def : Pat<(zextloadi1 xaddr:$src), |
| 1201 | (LBZX xaddr:$src)>; |
| 1202 | def : Pat<(extloadi1 iaddr:$src), |
| 1203 | (LBZ iaddr:$src)>; |
| 1204 | def : Pat<(extloadi1 xaddr:$src), |
| 1205 | (LBZX xaddr:$src)>; |
| 1206 | def : Pat<(extloadi8 iaddr:$src), |
| 1207 | (LBZ iaddr:$src)>; |
| 1208 | def : Pat<(extloadi8 xaddr:$src), |
| 1209 | (LBZX xaddr:$src)>; |
| 1210 | def : Pat<(extloadi16 iaddr:$src), |
| 1211 | (LHZ iaddr:$src)>; |
| 1212 | def : Pat<(extloadi16 xaddr:$src), |
| 1213 | (LHZX xaddr:$src)>; |
| 1214 | def : Pat<(extloadf32 iaddr:$src), |
| 1215 | (FMRSD (LFS iaddr:$src))>; |
| 1216 | def : Pat<(extloadf32 xaddr:$src), |
| 1217 | (FMRSD (LFSX xaddr:$src))>; |
| 1218 | |
| 1219 | include "PPCInstrAltivec.td" |
| 1220 | include "PPCInstr64Bit.td" |