| //===-- PPCInstrInfo.td - The PowerPC Instruction Set ------*- tablegen -*-===// |
| // |
| // The LLVM Compiler Infrastructure |
| // |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // |
| //===----------------------------------------------------------------------===// |
| // |
| // This file describes the subset of the 32-bit PowerPC instruction set, as used |
| // by the PowerPC instruction selector. |
| // |
| //===----------------------------------------------------------------------===// |
| |
| include "PPCInstrFormats.td" |
| |
| //===----------------------------------------------------------------------===// |
| // PowerPC specific type constraints. |
| // |
| def SDT_PPCstfiwx : SDTypeProfile<0, 2, [ // stfiwx |
| SDTCisVT<0, f64>, SDTCisPtrTy<1> |
| ]>; |
| def SDT_PPClfiwx : SDTypeProfile<1, 1, [ // lfiw[az]x |
| SDTCisVT<0, f64>, SDTCisPtrTy<1> |
| ]>; |
| def SDT_PPCLxsizx : SDTypeProfile<1, 2, [ |
| SDTCisVT<0, f64>, SDTCisPtrTy<1>, SDTCisPtrTy<2> |
| ]>; |
| def SDT_PPCstxsix : SDTypeProfile<0, 3, [ |
| SDTCisVT<0, f64>, SDTCisPtrTy<1>, SDTCisPtrTy<2> |
| ]>; |
| def SDT_PPCcv_fp_to_int : SDTypeProfile<1, 1, [ |
| SDTCisFP<0>, SDTCisFP<1> |
| ]>; |
| def SDT_PPCstore_scal_int_from_vsr : SDTypeProfile<0, 3, [ |
| SDTCisVT<0, f64>, SDTCisPtrTy<1>, SDTCisPtrTy<2> |
| ]>; |
| def SDT_PPCVexts : SDTypeProfile<1, 2, [ |
| SDTCisVT<0, f64>, SDTCisVT<1, f64>, SDTCisPtrTy<2> |
| ]>; |
| def SDT_PPCSExtVElems : SDTypeProfile<1, 1, [ |
| SDTCisVec<0>, SDTCisVec<1> |
| ]>; |
| |
| def SDT_PPCCallSeqStart : SDCallSeqStart<[ SDTCisVT<0, i32>, |
| SDTCisVT<1, i32> ]>; |
| def SDT_PPCCallSeqEnd : SDCallSeqEnd<[ SDTCisVT<0, i32>, |
| SDTCisVT<1, i32> ]>; |
| def SDT_PPCvperm : SDTypeProfile<1, 3, [ |
| SDTCisVT<3, v16i8>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2> |
| ]>; |
| |
| def SDT_PPCVecSplat : SDTypeProfile<1, 2, [ SDTCisVec<0>, |
| SDTCisVec<1>, SDTCisInt<2> |
| ]>; |
| |
| def SDT_PPCVecShift : SDTypeProfile<1, 3, [ SDTCisVec<0>, |
| SDTCisVec<1>, SDTCisVec<2>, SDTCisPtrTy<3> |
| ]>; |
| |
| def SDT_PPCVecInsert : SDTypeProfile<1, 3, [ SDTCisVec<0>, |
| SDTCisVec<1>, SDTCisVec<2>, SDTCisInt<3> |
| ]>; |
| |
| def SDT_PPCVecReverse: SDTypeProfile<1, 1, [ SDTCisVec<0>, |
| SDTCisVec<1> |
| ]>; |
| |
| def SDT_PPCxxpermdi: SDTypeProfile<1, 3, [ SDTCisVec<0>, |
| SDTCisVec<1>, SDTCisVec<2>, SDTCisInt<3> |
| ]>; |
| |
| def SDT_PPCvcmp : SDTypeProfile<1, 3, [ |
| SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>, SDTCisVT<3, i32> |
| ]>; |
| |
| def SDT_PPCcondbr : SDTypeProfile<0, 3, [ |
| SDTCisVT<0, i32>, SDTCisVT<2, OtherVT> |
| ]>; |
| |
| def SDT_PPClbrx : SDTypeProfile<1, 2, [ |
| SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT> |
| ]>; |
| def SDT_PPCstbrx : SDTypeProfile<0, 3, [ |
| SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT> |
| ]>; |
| |
| def SDT_PPCTC_ret : SDTypeProfile<0, 2, [ |
| SDTCisPtrTy<0>, SDTCisVT<1, i32> |
| ]>; |
| |
| def tocentry32 : Operand<iPTR> { |
| let MIOperandInfo = (ops i32imm:$imm); |
| } |
| |
| def SDT_PPCqvfperm : SDTypeProfile<1, 3, [ |
| SDTCisVec<0>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisVec<3> |
| ]>; |
| def SDT_PPCqvgpci : SDTypeProfile<1, 1, [ |
| SDTCisVec<0>, SDTCisInt<1> |
| ]>; |
| def SDT_PPCqvaligni : SDTypeProfile<1, 3, [ |
| SDTCisVec<0>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<3> |
| ]>; |
| def SDT_PPCqvesplati : SDTypeProfile<1, 2, [ |
| SDTCisVec<0>, SDTCisSameAs<0, 1>, SDTCisInt<2> |
| ]>; |
| |
| def SDT_PPCqbflt : SDTypeProfile<1, 1, [ |
| SDTCisVec<0>, SDTCisVec<1> |
| ]>; |
| |
| def SDT_PPCqvlfsb : SDTypeProfile<1, 1, [ |
| SDTCisVec<0>, SDTCisPtrTy<1> |
| ]>; |
| |
| //===----------------------------------------------------------------------===// |
| // PowerPC specific DAG Nodes. |
| // |
| |
| def PPCfre : SDNode<"PPCISD::FRE", SDTFPUnaryOp, []>; |
| def PPCfrsqrte: SDNode<"PPCISD::FRSQRTE", SDTFPUnaryOp, []>; |
| |
| def PPCfcfid : SDNode<"PPCISD::FCFID", SDTFPUnaryOp, []>; |
| def PPCfcfidu : SDNode<"PPCISD::FCFIDU", SDTFPUnaryOp, []>; |
| def PPCfcfids : SDNode<"PPCISD::FCFIDS", SDTFPRoundOp, []>; |
| def PPCfcfidus: SDNode<"PPCISD::FCFIDUS", SDTFPRoundOp, []>; |
| def PPCfctidz : SDNode<"PPCISD::FCTIDZ", SDTFPUnaryOp, []>; |
| def PPCfctiwz : SDNode<"PPCISD::FCTIWZ", SDTFPUnaryOp, []>; |
| def PPCfctiduz: SDNode<"PPCISD::FCTIDUZ",SDTFPUnaryOp, []>; |
| def PPCfctiwuz: SDNode<"PPCISD::FCTIWUZ",SDTFPUnaryOp, []>; |
| |
| def PPCcv_fp_to_uint_in_vsr: |
| SDNode<"PPCISD::FP_TO_UINT_IN_VSR", SDT_PPCcv_fp_to_int, []>; |
| def PPCcv_fp_to_sint_in_vsr: |
| SDNode<"PPCISD::FP_TO_SINT_IN_VSR", SDT_PPCcv_fp_to_int, []>; |
| def PPCstore_scal_int_from_vsr: |
| SDNode<"PPCISD::ST_VSR_SCAL_INT", SDT_PPCstore_scal_int_from_vsr, |
| [SDNPHasChain, SDNPMayStore]>; |
| def PPCstfiwx : SDNode<"PPCISD::STFIWX", SDT_PPCstfiwx, |
| [SDNPHasChain, SDNPMayStore]>; |
| def PPClfiwax : SDNode<"PPCISD::LFIWAX", SDT_PPClfiwx, |
| [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>; |
| def PPClfiwzx : SDNode<"PPCISD::LFIWZX", SDT_PPClfiwx, |
| [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>; |
| def PPClxsizx : SDNode<"PPCISD::LXSIZX", SDT_PPCLxsizx, |
| [SDNPHasChain, SDNPMayLoad]>; |
| def PPCstxsix : SDNode<"PPCISD::STXSIX", SDT_PPCstxsix, |
| [SDNPHasChain, SDNPMayStore]>; |
| def PPCVexts : SDNode<"PPCISD::VEXTS", SDT_PPCVexts, []>; |
| def PPCSExtVElems : SDNode<"PPCISD::SExtVElems", SDT_PPCSExtVElems, []>; |
| |
| // Extract FPSCR (not modeled at the DAG level). |
| def PPCmffs : SDNode<"PPCISD::MFFS", |
| SDTypeProfile<1, 0, [SDTCisVT<0, f64>]>, []>; |
| |
| // Perform FADD in round-to-zero mode. |
| def PPCfaddrtz: SDNode<"PPCISD::FADDRTZ", SDTFPBinOp, []>; |
| |
| |
| def PPCfsel : SDNode<"PPCISD::FSEL", |
| // Type constraint for fsel. |
| SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>, |
| SDTCisFP<0>, SDTCisVT<1, f64>]>, []>; |
| |
| def PPChi : SDNode<"PPCISD::Hi", SDTIntBinOp, []>; |
| def PPClo : SDNode<"PPCISD::Lo", SDTIntBinOp, []>; |
| def PPCtoc_entry: SDNode<"PPCISD::TOC_ENTRY", SDTIntBinOp, |
| [SDNPMayLoad, SDNPMemOperand]>; |
| def PPCvmaddfp : SDNode<"PPCISD::VMADDFP", SDTFPTernaryOp, []>; |
| def PPCvnmsubfp : SDNode<"PPCISD::VNMSUBFP", SDTFPTernaryOp, []>; |
| |
| def PPCppc32GOT : SDNode<"PPCISD::PPC32_GOT", SDTIntLeaf, []>; |
| |
| def PPCaddisGotTprelHA : SDNode<"PPCISD::ADDIS_GOT_TPREL_HA", SDTIntBinOp>; |
| def PPCldGotTprelL : SDNode<"PPCISD::LD_GOT_TPREL_L", SDTIntBinOp, |
| [SDNPMayLoad]>; |
| def PPCaddTls : SDNode<"PPCISD::ADD_TLS", SDTIntBinOp, []>; |
| def PPCaddisTlsgdHA : SDNode<"PPCISD::ADDIS_TLSGD_HA", SDTIntBinOp>; |
| def PPCaddiTlsgdL : SDNode<"PPCISD::ADDI_TLSGD_L", SDTIntBinOp>; |
| def PPCgetTlsAddr : SDNode<"PPCISD::GET_TLS_ADDR", SDTIntBinOp>; |
| def PPCaddiTlsgdLAddr : SDNode<"PPCISD::ADDI_TLSGD_L_ADDR", |
| SDTypeProfile<1, 3, [ |
| SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, |
| SDTCisSameAs<0, 3>, SDTCisInt<0> ]>>; |
| def PPCaddisTlsldHA : SDNode<"PPCISD::ADDIS_TLSLD_HA", SDTIntBinOp>; |
| def PPCaddiTlsldL : SDNode<"PPCISD::ADDI_TLSLD_L", SDTIntBinOp>; |
| def PPCgetTlsldAddr : SDNode<"PPCISD::GET_TLSLD_ADDR", SDTIntBinOp>; |
| def PPCaddiTlsldLAddr : SDNode<"PPCISD::ADDI_TLSLD_L_ADDR", |
| SDTypeProfile<1, 3, [ |
| SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, |
| SDTCisSameAs<0, 3>, SDTCisInt<0> ]>>; |
| def PPCaddisDtprelHA : SDNode<"PPCISD::ADDIS_DTPREL_HA", SDTIntBinOp>; |
| def PPCaddiDtprelL : SDNode<"PPCISD::ADDI_DTPREL_L", SDTIntBinOp>; |
| |
| def PPCvperm : SDNode<"PPCISD::VPERM", SDT_PPCvperm, []>; |
| def PPCxxsplt : SDNode<"PPCISD::XXSPLT", SDT_PPCVecSplat, []>; |
| def PPCvecinsert : SDNode<"PPCISD::VECINSERT", SDT_PPCVecInsert, []>; |
| def PPCxxreverse : SDNode<"PPCISD::XXREVERSE", SDT_PPCVecReverse, []>; |
| def PPCxxpermdi : SDNode<"PPCISD::XXPERMDI", SDT_PPCxxpermdi, []>; |
| def PPCvecshl : SDNode<"PPCISD::VECSHL", SDT_PPCVecShift, []>; |
| |
| def PPCqvfperm : SDNode<"PPCISD::QVFPERM", SDT_PPCqvfperm, []>; |
| def PPCqvgpci : SDNode<"PPCISD::QVGPCI", SDT_PPCqvgpci, []>; |
| def PPCqvaligni : SDNode<"PPCISD::QVALIGNI", SDT_PPCqvaligni, []>; |
| def PPCqvesplati : SDNode<"PPCISD::QVESPLATI", SDT_PPCqvesplati, []>; |
| |
| def PPCqbflt : SDNode<"PPCISD::QBFLT", SDT_PPCqbflt, []>; |
| |
| def PPCqvlfsb : SDNode<"PPCISD::QVLFSb", SDT_PPCqvlfsb, |
| [SDNPHasChain, SDNPMayLoad]>; |
| |
| def PPCcmpb : SDNode<"PPCISD::CMPB", SDTIntBinOp, []>; |
| |
| // These nodes represent the 32-bit PPC shifts that operate on 6-bit shift |
| // amounts. These nodes are generated by the multi-precision shift code. |
| def PPCsrl : SDNode<"PPCISD::SRL" , SDTIntShiftOp>; |
| def PPCsra : SDNode<"PPCISD::SRA" , SDTIntShiftOp>; |
| def PPCshl : SDNode<"PPCISD::SHL" , SDTIntShiftOp>; |
| |
| // Move 2 i64 values into a VSX register |
| def PPCbuild_fp128: SDNode<"PPCISD::BUILD_FP128", |
| SDTypeProfile<1, 2, |
| [SDTCisFP<0>, SDTCisSameSizeAs<1,2>, |
| SDTCisSameAs<1,2>]>, |
| []>; |
| |
| // These are target-independent nodes, but have target-specific formats. |
| def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_PPCCallSeqStart, |
| [SDNPHasChain, SDNPOutGlue]>; |
| def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_PPCCallSeqEnd, |
| [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>; |
| |
| def SDT_PPCCall : SDTypeProfile<0, -1, [SDTCisInt<0>]>; |
| def PPCcall : SDNode<"PPCISD::CALL", SDT_PPCCall, |
| [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue, |
| SDNPVariadic]>; |
| def PPCcall_nop : SDNode<"PPCISD::CALL_NOP", SDT_PPCCall, |
| [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue, |
| SDNPVariadic]>; |
| def PPCmtctr : SDNode<"PPCISD::MTCTR", SDT_PPCCall, |
| [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>; |
| def PPCbctrl : SDNode<"PPCISD::BCTRL", SDTNone, |
| [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue, |
| SDNPVariadic]>; |
| def PPCbctrl_load_toc : SDNode<"PPCISD::BCTRL_LOAD_TOC", |
| SDTypeProfile<0, 1, []>, |
| [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue, |
| SDNPVariadic]>; |
| |
| def retflag : SDNode<"PPCISD::RET_FLAG", SDTNone, |
| [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>; |
| |
| def PPCtc_return : SDNode<"PPCISD::TC_RETURN", SDT_PPCTC_ret, |
| [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>; |
| |
| def PPCeh_sjlj_setjmp : SDNode<"PPCISD::EH_SJLJ_SETJMP", |
| SDTypeProfile<1, 1, [SDTCisInt<0>, |
| SDTCisPtrTy<1>]>, |
| [SDNPHasChain, SDNPSideEffect]>; |
| def PPCeh_sjlj_longjmp : SDNode<"PPCISD::EH_SJLJ_LONGJMP", |
| SDTypeProfile<0, 1, [SDTCisPtrTy<0>]>, |
| [SDNPHasChain, SDNPSideEffect]>; |
| |
| def SDT_PPCsc : SDTypeProfile<0, 1, [SDTCisInt<0>]>; |
| def PPCsc : SDNode<"PPCISD::SC", SDT_PPCsc, |
| [SDNPHasChain, SDNPSideEffect]>; |
| |
| def PPCclrbhrb : SDNode<"PPCISD::CLRBHRB", SDTNone, |
| [SDNPHasChain, SDNPSideEffect]>; |
| def PPCmfbhrbe : SDNode<"PPCISD::MFBHRBE", SDTIntBinOp, [SDNPHasChain]>; |
| def PPCrfebb : SDNode<"PPCISD::RFEBB", SDT_PPCsc, |
| [SDNPHasChain, SDNPSideEffect]>; |
| |
| def PPCvcmp : SDNode<"PPCISD::VCMP" , SDT_PPCvcmp, []>; |
| def PPCvcmp_o : SDNode<"PPCISD::VCMPo", SDT_PPCvcmp, [SDNPOutGlue]>; |
| |
| def PPCcondbranch : SDNode<"PPCISD::COND_BRANCH", SDT_PPCcondbr, |
| [SDNPHasChain, SDNPOptInGlue]>; |
| |
| // PPC-specific atomic operations. |
| def PPCatomicCmpSwap_8 : |
| SDNode<"PPCISD::ATOMIC_CMP_SWAP_8", SDTAtomic3, |
| [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>; |
| def PPCatomicCmpSwap_16 : |
| SDNode<"PPCISD::ATOMIC_CMP_SWAP_16", SDTAtomic3, |
| [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>; |
| def PPClbrx : SDNode<"PPCISD::LBRX", SDT_PPClbrx, |
| [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>; |
| def PPCstbrx : SDNode<"PPCISD::STBRX", SDT_PPCstbrx, |
| [SDNPHasChain, SDNPMayStore]>; |
| |
| // Instructions to set/unset CR bit 6 for SVR4 vararg calls |
| def PPCcr6set : SDNode<"PPCISD::CR6SET", SDTNone, |
| [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>; |
| def PPCcr6unset : SDNode<"PPCISD::CR6UNSET", SDTNone, |
| [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>; |
| |
| // Instructions to support dynamic alloca. |
| def SDTDynOp : SDTypeProfile<1, 2, []>; |
| def SDTDynAreaOp : SDTypeProfile<1, 1, []>; |
| def PPCdynalloc : SDNode<"PPCISD::DYNALLOC", SDTDynOp, [SDNPHasChain]>; |
| def PPCdynareaoffset : SDNode<"PPCISD::DYNAREAOFFSET", SDTDynAreaOp, [SDNPHasChain]>; |
| |
| //===----------------------------------------------------------------------===// |
| // PowerPC specific transformation functions and pattern fragments. |
| // |
| |
| def SHL32 : SDNodeXForm<imm, [{ |
| // Transformation function: 31 - imm |
| return getI32Imm(31 - N->getZExtValue(), SDLoc(N)); |
| }]>; |
| |
| def SRL32 : SDNodeXForm<imm, [{ |
| // Transformation function: 32 - imm |
| return N->getZExtValue() ? getI32Imm(32 - N->getZExtValue(), SDLoc(N)) |
| : getI32Imm(0, SDLoc(N)); |
| }]>; |
| |
| def LO16 : SDNodeXForm<imm, [{ |
| // Transformation function: get the low 16 bits. |
| return getI32Imm((unsigned short)N->getZExtValue(), SDLoc(N)); |
| }]>; |
| |
| def HI16 : SDNodeXForm<imm, [{ |
| // Transformation function: shift the immediate value down into the low bits. |
| return getI32Imm((unsigned)N->getZExtValue() >> 16, SDLoc(N)); |
| }]>; |
| |
| def HA16 : SDNodeXForm<imm, [{ |
| // Transformation function: shift the immediate value down into the low bits. |
| long Val = N->getZExtValue(); |
| return getI32Imm((Val - (signed short)Val) >> 16, SDLoc(N)); |
| }]>; |
| def MB : SDNodeXForm<imm, [{ |
| // Transformation function: get the start bit of a mask |
| unsigned mb = 0, me; |
| (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me); |
| return getI32Imm(mb, SDLoc(N)); |
| }]>; |
| |
| def ME : SDNodeXForm<imm, [{ |
| // Transformation function: get the end bit of a mask |
| unsigned mb, me = 0; |
| (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me); |
| return getI32Imm(me, SDLoc(N)); |
| }]>; |
| def maskimm32 : PatLeaf<(imm), [{ |
| // maskImm predicate - True if immediate is a run of ones. |
| unsigned mb, me; |
| if (N->getValueType(0) == MVT::i32) |
| return isRunOfOnes((unsigned)N->getZExtValue(), mb, me); |
| else |
| return false; |
| }]>; |
| |
| def imm32SExt16 : Operand<i32>, ImmLeaf<i32, [{ |
| // imm32SExt16 predicate - True if the i32 immediate fits in a 16-bit |
| // sign extended field. Used by instructions like 'addi'. |
| return (int32_t)Imm == (short)Imm; |
| }]>; |
| def imm64SExt16 : Operand<i64>, ImmLeaf<i64, [{ |
| // imm64SExt16 predicate - True if the i64 immediate fits in a 16-bit |
| // sign extended field. Used by instructions like 'addi'. |
| return (int64_t)Imm == (short)Imm; |
| }]>; |
| def immZExt16 : PatLeaf<(imm), [{ |
| // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended |
| // field. Used by instructions like 'ori'. |
| return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue(); |
| }], LO16>; |
| def immAnyExt8 : ImmLeaf<i32, [{ return isInt<8>(Imm) || isUInt<8>(Imm); }]>; |
| def immSExt5NonZero : ImmLeaf<i32, [{ return Imm && isInt<5>(Imm); }]>; |
| |
| // imm16Shifted* - These match immediates where the low 16-bits are zero. There |
| // are two forms: imm16ShiftedSExt and imm16ShiftedZExt. These two forms are |
| // identical in 32-bit mode, but in 64-bit mode, they return true if the |
| // immediate fits into a sign/zero extended 32-bit immediate (with the low bits |
| // clear). |
| def imm16ShiftedZExt : PatLeaf<(imm), [{ |
| // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the |
| // immediate are set. Used by instructions like 'xoris'. |
| return (N->getZExtValue() & ~uint64_t(0xFFFF0000)) == 0; |
| }], HI16>; |
| |
| def imm16ShiftedSExt : PatLeaf<(imm), [{ |
| // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the |
| // immediate are set. Used by instructions like 'addis'. Identical to |
| // imm16ShiftedZExt in 32-bit mode. |
| if (N->getZExtValue() & 0xFFFF) return false; |
| if (N->getValueType(0) == MVT::i32) |
| return true; |
| // For 64-bit, make sure it is sext right. |
| return N->getZExtValue() == (uint64_t)(int)N->getZExtValue(); |
| }], HI16>; |
| |
| def imm64ZExt32 : Operand<i64>, ImmLeaf<i64, [{ |
| // imm64ZExt32 predicate - True if the i64 immediate fits in a 32-bit |
| // zero extended field. |
| return isUInt<32>(Imm); |
| }]>; |
| |
| // Some r+i load/store instructions (such as LD, STD, LDU, etc.) that require |
| // restricted memrix (4-aligned) constants are alignment sensitive. If these |
| // offsets are hidden behind TOC entries than the values of the lower-order |
| // bits cannot be checked directly. As a result, we need to also incorporate |
| // an alignment check into the relevant patterns. |
| |
| def aligned4load : PatFrag<(ops node:$ptr), (load node:$ptr), [{ |
| return cast<LoadSDNode>(N)->getAlignment() >= 4; |
| }]>; |
| def aligned4store : PatFrag<(ops node:$val, node:$ptr), |
| (store node:$val, node:$ptr), [{ |
| return cast<StoreSDNode>(N)->getAlignment() >= 4; |
| }]>; |
| def aligned4sextloadi32 : PatFrag<(ops node:$ptr), (sextloadi32 node:$ptr), [{ |
| return cast<LoadSDNode>(N)->getAlignment() >= 4; |
| }]>; |
| def aligned4pre_store : PatFrag< |
| (ops node:$val, node:$base, node:$offset), |
| (pre_store node:$val, node:$base, node:$offset), [{ |
| return cast<StoreSDNode>(N)->getAlignment() >= 4; |
| }]>; |
| |
| def unaligned4load : PatFrag<(ops node:$ptr), (load node:$ptr), [{ |
| return cast<LoadSDNode>(N)->getAlignment() < 4; |
| }]>; |
| def unaligned4store : PatFrag<(ops node:$val, node:$ptr), |
| (store node:$val, node:$ptr), [{ |
| return cast<StoreSDNode>(N)->getAlignment() < 4; |
| }]>; |
| def unaligned4sextloadi32 : PatFrag<(ops node:$ptr), (sextloadi32 node:$ptr), [{ |
| return cast<LoadSDNode>(N)->getAlignment() < 4; |
| }]>; |
| |
| // This is a somewhat weaker condition than actually checking for 16-byte |
| // alignment. It is simply checking that the displacement can be represented |
| // as an immediate that is a multiple of 16 (i.e. the requirements for DQ-Form |
| // instructions). |
| def quadwOffsetLoad : PatFrag<(ops node:$ptr), (load node:$ptr), [{ |
| return isOffsetMultipleOf(N, 16); |
| }]>; |
| def quadwOffsetStore : PatFrag<(ops node:$val, node:$ptr), |
| (store node:$val, node:$ptr), [{ |
| return isOffsetMultipleOf(N, 16); |
| }]>; |
| def nonQuadwOffsetLoad : PatFrag<(ops node:$ptr), (load node:$ptr), [{ |
| return !isOffsetMultipleOf(N, 16); |
| }]>; |
| def nonQuadwOffsetStore : PatFrag<(ops node:$val, node:$ptr), |
| (store node:$val, node:$ptr), [{ |
| return !isOffsetMultipleOf(N, 16); |
| }]>; |
| |
| //===----------------------------------------------------------------------===// |
| // PowerPC Flag Definitions. |
| |
| class isPPC64 { bit PPC64 = 1; } |
| class isDOT { bit RC = 1; } |
| |
| class RegConstraint<string C> { |
| string Constraints = C; |
| } |
| class NoEncode<string E> { |
| string DisableEncoding = E; |
| } |
| |
| |
| //===----------------------------------------------------------------------===// |
| // PowerPC Operand Definitions. |
| |
| // In the default PowerPC assembler syntax, registers are specified simply |
| // by number, so they cannot be distinguished from immediate values (without |
| // looking at the opcode). This means that the default operand matching logic |
| // for the asm parser does not work, and we need to specify custom matchers. |
| // Since those can only be specified with RegisterOperand classes and not |
| // directly on the RegisterClass, all instructions patterns used by the asm |
| // parser need to use a RegisterOperand (instead of a RegisterClass) for |
| // all their register operands. |
| // For this purpose, we define one RegisterOperand for each RegisterClass, |
| // using the same name as the class, just in lower case. |
| |
| def PPCRegGPRCAsmOperand : AsmOperandClass { |
| let Name = "RegGPRC"; let PredicateMethod = "isRegNumber"; |
| } |
| def gprc : RegisterOperand<GPRC> { |
| let ParserMatchClass = PPCRegGPRCAsmOperand; |
| } |
| def PPCRegG8RCAsmOperand : AsmOperandClass { |
| let Name = "RegG8RC"; let PredicateMethod = "isRegNumber"; |
| } |
| def g8rc : RegisterOperand<G8RC> { |
| let ParserMatchClass = PPCRegG8RCAsmOperand; |
| } |
| def PPCRegGPRCNoR0AsmOperand : AsmOperandClass { |
| let Name = "RegGPRCNoR0"; let PredicateMethod = "isRegNumber"; |
| } |
| def gprc_nor0 : RegisterOperand<GPRC_NOR0> { |
| let ParserMatchClass = PPCRegGPRCNoR0AsmOperand; |
| } |
| def PPCRegG8RCNoX0AsmOperand : AsmOperandClass { |
| let Name = "RegG8RCNoX0"; let PredicateMethod = "isRegNumber"; |
| } |
| def g8rc_nox0 : RegisterOperand<G8RC_NOX0> { |
| let ParserMatchClass = PPCRegG8RCNoX0AsmOperand; |
| } |
| def PPCRegF8RCAsmOperand : AsmOperandClass { |
| let Name = "RegF8RC"; let PredicateMethod = "isRegNumber"; |
| } |
| def f8rc : RegisterOperand<F8RC> { |
| let ParserMatchClass = PPCRegF8RCAsmOperand; |
| } |
| def PPCRegF4RCAsmOperand : AsmOperandClass { |
| let Name = "RegF4RC"; let PredicateMethod = "isRegNumber"; |
| } |
| def f4rc : RegisterOperand<F4RC> { |
| let ParserMatchClass = PPCRegF4RCAsmOperand; |
| } |
| def PPCRegVRRCAsmOperand : AsmOperandClass { |
| let Name = "RegVRRC"; let PredicateMethod = "isRegNumber"; |
| } |
| def vrrc : RegisterOperand<VRRC> { |
| let ParserMatchClass = PPCRegVRRCAsmOperand; |
| } |
| def PPCRegVFRCAsmOperand : AsmOperandClass { |
| let Name = "RegVFRC"; let PredicateMethod = "isRegNumber"; |
| } |
| def vfrc : RegisterOperand<VFRC> { |
| let ParserMatchClass = PPCRegVFRCAsmOperand; |
| } |
| def PPCRegCRBITRCAsmOperand : AsmOperandClass { |
| let Name = "RegCRBITRC"; let PredicateMethod = "isCRBitNumber"; |
| } |
| def crbitrc : RegisterOperand<CRBITRC> { |
| let ParserMatchClass = PPCRegCRBITRCAsmOperand; |
| } |
| def PPCRegCRRCAsmOperand : AsmOperandClass { |
| let Name = "RegCRRC"; let PredicateMethod = "isCCRegNumber"; |
| } |
| def crrc : RegisterOperand<CRRC> { |
| let ParserMatchClass = PPCRegCRRCAsmOperand; |
| } |
| def crrc0 : RegisterOperand<CRRC0> { |
| let ParserMatchClass = PPCRegCRRCAsmOperand; |
| } |
| |
| def PPCRegSPERCAsmOperand : AsmOperandClass { |
| let Name = "RegSPERC"; let PredicateMethod = "isRegNumber"; |
| } |
| def sperc : RegisterOperand<SPERC> { |
| let ParserMatchClass = PPCRegSPERCAsmOperand; |
| } |
| def PPCRegSPE4RCAsmOperand : AsmOperandClass { |
| let Name = "RegSPE4RC"; let PredicateMethod = "isRegNumber"; |
| } |
| def spe4rc : RegisterOperand<SPE4RC> { |
| let ParserMatchClass = PPCRegSPE4RCAsmOperand; |
| } |
| |
| def PPCU1ImmAsmOperand : AsmOperandClass { |
| let Name = "U1Imm"; let PredicateMethod = "isU1Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def u1imm : Operand<i32> { |
| let PrintMethod = "printU1ImmOperand"; |
| let ParserMatchClass = PPCU1ImmAsmOperand; |
| } |
| |
| def PPCU2ImmAsmOperand : AsmOperandClass { |
| let Name = "U2Imm"; let PredicateMethod = "isU2Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def u2imm : Operand<i32> { |
| let PrintMethod = "printU2ImmOperand"; |
| let ParserMatchClass = PPCU2ImmAsmOperand; |
| } |
| |
| def PPCATBitsAsHintAsmOperand : AsmOperandClass { |
| let Name = "ATBitsAsHint"; let PredicateMethod = "isATBitsAsHint"; |
| let RenderMethod = "addImmOperands"; // Irrelevant, predicate always fails. |
| } |
| def atimm : Operand<i32> { |
| let PrintMethod = "printATBitsAsHint"; |
| let ParserMatchClass = PPCATBitsAsHintAsmOperand; |
| } |
| |
| def PPCU3ImmAsmOperand : AsmOperandClass { |
| let Name = "U3Imm"; let PredicateMethod = "isU3Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def u3imm : Operand<i32> { |
| let PrintMethod = "printU3ImmOperand"; |
| let ParserMatchClass = PPCU3ImmAsmOperand; |
| } |
| |
| def PPCU4ImmAsmOperand : AsmOperandClass { |
| let Name = "U4Imm"; let PredicateMethod = "isU4Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def u4imm : Operand<i32> { |
| let PrintMethod = "printU4ImmOperand"; |
| let ParserMatchClass = PPCU4ImmAsmOperand; |
| } |
| def PPCS5ImmAsmOperand : AsmOperandClass { |
| let Name = "S5Imm"; let PredicateMethod = "isS5Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def s5imm : Operand<i32> { |
| let PrintMethod = "printS5ImmOperand"; |
| let ParserMatchClass = PPCS5ImmAsmOperand; |
| let DecoderMethod = "decodeSImmOperand<5>"; |
| } |
| def PPCU5ImmAsmOperand : AsmOperandClass { |
| let Name = "U5Imm"; let PredicateMethod = "isU5Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def u5imm : Operand<i32> { |
| let PrintMethod = "printU5ImmOperand"; |
| let ParserMatchClass = PPCU5ImmAsmOperand; |
| let DecoderMethod = "decodeUImmOperand<5>"; |
| } |
| def PPCU6ImmAsmOperand : AsmOperandClass { |
| let Name = "U6Imm"; let PredicateMethod = "isU6Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def u6imm : Operand<i32> { |
| let PrintMethod = "printU6ImmOperand"; |
| let ParserMatchClass = PPCU6ImmAsmOperand; |
| let DecoderMethod = "decodeUImmOperand<6>"; |
| } |
| def PPCU7ImmAsmOperand : AsmOperandClass { |
| let Name = "U7Imm"; let PredicateMethod = "isU7Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def u7imm : Operand<i32> { |
| let PrintMethod = "printU7ImmOperand"; |
| let ParserMatchClass = PPCU7ImmAsmOperand; |
| let DecoderMethod = "decodeUImmOperand<7>"; |
| } |
| def PPCU8ImmAsmOperand : AsmOperandClass { |
| let Name = "U8Imm"; let PredicateMethod = "isU8Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def u8imm : Operand<i32> { |
| let PrintMethod = "printU8ImmOperand"; |
| let ParserMatchClass = PPCU8ImmAsmOperand; |
| let DecoderMethod = "decodeUImmOperand<8>"; |
| } |
| def PPCU10ImmAsmOperand : AsmOperandClass { |
| let Name = "U10Imm"; let PredicateMethod = "isU10Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def u10imm : Operand<i32> { |
| let PrintMethod = "printU10ImmOperand"; |
| let ParserMatchClass = PPCU10ImmAsmOperand; |
| let DecoderMethod = "decodeUImmOperand<10>"; |
| } |
| def PPCU12ImmAsmOperand : AsmOperandClass { |
| let Name = "U12Imm"; let PredicateMethod = "isU12Imm"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def u12imm : Operand<i32> { |
| let PrintMethod = "printU12ImmOperand"; |
| let ParserMatchClass = PPCU12ImmAsmOperand; |
| let DecoderMethod = "decodeUImmOperand<12>"; |
| } |
| def PPCS16ImmAsmOperand : AsmOperandClass { |
| let Name = "S16Imm"; let PredicateMethod = "isS16Imm"; |
| let RenderMethod = "addS16ImmOperands"; |
| } |
| def s16imm : Operand<i32> { |
| let PrintMethod = "printS16ImmOperand"; |
| let EncoderMethod = "getImm16Encoding"; |
| let ParserMatchClass = PPCS16ImmAsmOperand; |
| let DecoderMethod = "decodeSImmOperand<16>"; |
| } |
| def PPCU16ImmAsmOperand : AsmOperandClass { |
| let Name = "U16Imm"; let PredicateMethod = "isU16Imm"; |
| let RenderMethod = "addU16ImmOperands"; |
| } |
| def u16imm : Operand<i32> { |
| let PrintMethod = "printU16ImmOperand"; |
| let EncoderMethod = "getImm16Encoding"; |
| let ParserMatchClass = PPCU16ImmAsmOperand; |
| let DecoderMethod = "decodeUImmOperand<16>"; |
| } |
| def PPCS17ImmAsmOperand : AsmOperandClass { |
| let Name = "S17Imm"; let PredicateMethod = "isS17Imm"; |
| let RenderMethod = "addS16ImmOperands"; |
| } |
| def s17imm : Operand<i32> { |
| // This operand type is used for addis/lis to allow the assembler parser |
| // to accept immediates in the range -65536..65535 for compatibility with |
| // the GNU assembler. The operand is treated as 16-bit otherwise. |
| let PrintMethod = "printS16ImmOperand"; |
| let EncoderMethod = "getImm16Encoding"; |
| let ParserMatchClass = PPCS17ImmAsmOperand; |
| let DecoderMethod = "decodeSImmOperand<16>"; |
| } |
| |
| def fpimm0 : PatLeaf<(fpimm), [{ return N->isExactlyValue(+0.0); }]>; |
| |
| def PPCDirectBrAsmOperand : AsmOperandClass { |
| let Name = "DirectBr"; let PredicateMethod = "isDirectBr"; |
| let RenderMethod = "addBranchTargetOperands"; |
| } |
| def directbrtarget : Operand<OtherVT> { |
| let PrintMethod = "printBranchOperand"; |
| let EncoderMethod = "getDirectBrEncoding"; |
| let ParserMatchClass = PPCDirectBrAsmOperand; |
| } |
| def absdirectbrtarget : Operand<OtherVT> { |
| let PrintMethod = "printAbsBranchOperand"; |
| let EncoderMethod = "getAbsDirectBrEncoding"; |
| let ParserMatchClass = PPCDirectBrAsmOperand; |
| } |
| def PPCCondBrAsmOperand : AsmOperandClass { |
| let Name = "CondBr"; let PredicateMethod = "isCondBr"; |
| let RenderMethod = "addBranchTargetOperands"; |
| } |
| def condbrtarget : Operand<OtherVT> { |
| let PrintMethod = "printBranchOperand"; |
| let EncoderMethod = "getCondBrEncoding"; |
| let ParserMatchClass = PPCCondBrAsmOperand; |
| } |
| def abscondbrtarget : Operand<OtherVT> { |
| let PrintMethod = "printAbsBranchOperand"; |
| let EncoderMethod = "getAbsCondBrEncoding"; |
| let ParserMatchClass = PPCCondBrAsmOperand; |
| } |
| def calltarget : Operand<iPTR> { |
| let PrintMethod = "printBranchOperand"; |
| let EncoderMethod = "getDirectBrEncoding"; |
| let ParserMatchClass = PPCDirectBrAsmOperand; |
| } |
| def abscalltarget : Operand<iPTR> { |
| let PrintMethod = "printAbsBranchOperand"; |
| let EncoderMethod = "getAbsDirectBrEncoding"; |
| let ParserMatchClass = PPCDirectBrAsmOperand; |
| } |
| def PPCCRBitMaskOperand : AsmOperandClass { |
| let Name = "CRBitMask"; let PredicateMethod = "isCRBitMask"; |
| } |
| def crbitm: Operand<i8> { |
| let PrintMethod = "printcrbitm"; |
| let EncoderMethod = "get_crbitm_encoding"; |
| let DecoderMethod = "decodeCRBitMOperand"; |
| let ParserMatchClass = PPCCRBitMaskOperand; |
| } |
| // Address operands |
| // A version of ptr_rc which excludes R0 (or X0 in 64-bit mode). |
| def PPCRegGxRCNoR0Operand : AsmOperandClass { |
| let Name = "RegGxRCNoR0"; let PredicateMethod = "isRegNumber"; |
| } |
| def ptr_rc_nor0 : Operand<iPTR>, PointerLikeRegClass<1> { |
| let ParserMatchClass = PPCRegGxRCNoR0Operand; |
| } |
| // A version of ptr_rc usable with the asm parser. |
| def PPCRegGxRCOperand : AsmOperandClass { |
| let Name = "RegGxRC"; let PredicateMethod = "isRegNumber"; |
| } |
| def ptr_rc_idx : Operand<iPTR>, PointerLikeRegClass<0> { |
| let ParserMatchClass = PPCRegGxRCOperand; |
| } |
| |
| def PPCDispRIOperand : AsmOperandClass { |
| let Name = "DispRI"; let PredicateMethod = "isS16Imm"; |
| let RenderMethod = "addS16ImmOperands"; |
| } |
| def dispRI : Operand<iPTR> { |
| let ParserMatchClass = PPCDispRIOperand; |
| } |
| def PPCDispRIXOperand : AsmOperandClass { |
| let Name = "DispRIX"; let PredicateMethod = "isS16ImmX4"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def dispRIX : Operand<iPTR> { |
| let ParserMatchClass = PPCDispRIXOperand; |
| } |
| def PPCDispRIX16Operand : AsmOperandClass { |
| let Name = "DispRIX16"; let PredicateMethod = "isS16ImmX16"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def dispRIX16 : Operand<iPTR> { |
| let ParserMatchClass = PPCDispRIX16Operand; |
| } |
| def PPCDispSPE8Operand : AsmOperandClass { |
| let Name = "DispSPE8"; let PredicateMethod = "isU8ImmX8"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def dispSPE8 : Operand<iPTR> { |
| let ParserMatchClass = PPCDispSPE8Operand; |
| } |
| def PPCDispSPE4Operand : AsmOperandClass { |
| let Name = "DispSPE4"; let PredicateMethod = "isU7ImmX4"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def dispSPE4 : Operand<iPTR> { |
| let ParserMatchClass = PPCDispSPE4Operand; |
| } |
| def PPCDispSPE2Operand : AsmOperandClass { |
| let Name = "DispSPE2"; let PredicateMethod = "isU6ImmX2"; |
| let RenderMethod = "addImmOperands"; |
| } |
| def dispSPE2 : Operand<iPTR> { |
| let ParserMatchClass = PPCDispSPE2Operand; |
| } |
| |
| def memri : Operand<iPTR> { |
| let PrintMethod = "printMemRegImm"; |
| let MIOperandInfo = (ops dispRI:$imm, ptr_rc_nor0:$reg); |
| let EncoderMethod = "getMemRIEncoding"; |
| let DecoderMethod = "decodeMemRIOperands"; |
| } |
| def memrr : Operand<iPTR> { |
| let PrintMethod = "printMemRegReg"; |
| let MIOperandInfo = (ops ptr_rc_nor0:$ptrreg, ptr_rc_idx:$offreg); |
| } |
| def memrix : Operand<iPTR> { // memri where the imm is 4-aligned. |
| let PrintMethod = "printMemRegImm"; |
| let MIOperandInfo = (ops dispRIX:$imm, ptr_rc_nor0:$reg); |
| let EncoderMethod = "getMemRIXEncoding"; |
| let DecoderMethod = "decodeMemRIXOperands"; |
| } |
| def memrix16 : Operand<iPTR> { // memri, imm is 16-aligned, 12-bit, Inst{16:27} |
| let PrintMethod = "printMemRegImm"; |
| let MIOperandInfo = (ops dispRIX16:$imm, ptr_rc_nor0:$reg); |
| let EncoderMethod = "getMemRIX16Encoding"; |
| let DecoderMethod = "decodeMemRIX16Operands"; |
| } |
| def spe8dis : Operand<iPTR> { // SPE displacement where the imm is 8-aligned. |
| let PrintMethod = "printMemRegImm"; |
| let MIOperandInfo = (ops dispSPE8:$imm, ptr_rc_nor0:$reg); |
| let EncoderMethod = "getSPE8DisEncoding"; |
| let DecoderMethod = "decodeSPE8Operands"; |
| } |
| def spe4dis : Operand<iPTR> { // SPE displacement where the imm is 4-aligned. |
| let PrintMethod = "printMemRegImm"; |
| let MIOperandInfo = (ops dispSPE4:$imm, ptr_rc_nor0:$reg); |
| let EncoderMethod = "getSPE4DisEncoding"; |
| let DecoderMethod = "decodeSPE4Operands"; |
| } |
| def spe2dis : Operand<iPTR> { // SPE displacement where the imm is 2-aligned. |
| let PrintMethod = "printMemRegImm"; |
| let MIOperandInfo = (ops dispSPE2:$imm, ptr_rc_nor0:$reg); |
| let EncoderMethod = "getSPE2DisEncoding"; |
| let DecoderMethod = "decodeSPE2Operands"; |
| } |
| |
| // A single-register address. This is used with the SjLj |
| // pseudo-instructions which tranlates to LD/LWZ. These instructions requires |
| // G8RC_NOX0 registers. |
| def memr : Operand<iPTR> { |
| let MIOperandInfo = (ops ptr_rc_nor0:$ptrreg); |
| } |
| def PPCTLSRegOperand : AsmOperandClass { |
| let Name = "TLSReg"; let PredicateMethod = "isTLSReg"; |
| let RenderMethod = "addTLSRegOperands"; |
| } |
| def tlsreg32 : Operand<i32> { |
| let EncoderMethod = "getTLSRegEncoding"; |
| let ParserMatchClass = PPCTLSRegOperand; |
| } |
| def tlsgd32 : Operand<i32> {} |
| def tlscall32 : Operand<i32> { |
| let PrintMethod = "printTLSCall"; |
| let MIOperandInfo = (ops calltarget:$func, tlsgd32:$sym); |
| let EncoderMethod = "getTLSCallEncoding"; |
| } |
| |
| // PowerPC Predicate operand. |
| def pred : Operand<OtherVT> { |
| let PrintMethod = "printPredicateOperand"; |
| let MIOperandInfo = (ops i32imm:$bibo, crrc:$reg); |
| } |
| |
| // Define PowerPC specific addressing mode. |
| def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>; |
| def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>; |
| def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>; |
| def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmX4", [], []>; // "std" |
| def iqaddr : ComplexPattern<iPTR, 2, "SelectAddrImmX16", [], []>; // "stxv" |
| |
| // The address in a single register. This is used with the SjLj |
| // pseudo-instructions. |
| def addr : ComplexPattern<iPTR, 1, "SelectAddr",[], []>; |
| |
| /// This is just the offset part of iaddr, used for preinc. |
| def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>; |
| |
| //===----------------------------------------------------------------------===// |
| // PowerPC Instruction Predicate Definitions. |
| def In32BitMode : Predicate<"!PPCSubTarget->isPPC64()">; |
| def In64BitMode : Predicate<"PPCSubTarget->isPPC64()">; |
| def IsBookE : Predicate<"PPCSubTarget->isBookE()">; |
| def IsNotBookE : Predicate<"!PPCSubTarget->isBookE()">; |
| def HasOnlyMSYNC : Predicate<"PPCSubTarget->hasOnlyMSYNC()">; |
| def HasSYNC : Predicate<"!PPCSubTarget->hasOnlyMSYNC()">; |
| def IsPPC4xx : Predicate<"PPCSubTarget->isPPC4xx()">; |
| def IsPPC6xx : Predicate<"PPCSubTarget->isPPC6xx()">; |
| def IsE500 : Predicate<"PPCSubTarget->isE500()">; |
| def HasSPE : Predicate<"PPCSubTarget->hasSPE()">; |
| def HasICBT : Predicate<"PPCSubTarget->hasICBT()">; |
| def HasPartwordAtomics : Predicate<"PPCSubTarget->hasPartwordAtomics()">; |
| def NoNaNsFPMath : Predicate<"TM.Options.NoNaNsFPMath">; |
| def NaNsFPMath : Predicate<"!TM.Options.NoNaNsFPMath">; |
| def HasBPERMD : Predicate<"PPCSubTarget->hasBPERMD()">; |
| def HasExtDiv : Predicate<"PPCSubTarget->hasExtDiv()">; |
| def IsISA3_0 : Predicate<"PPCSubTarget->isISA3_0()">; |
| def HasFPU : Predicate<"PPCSubTarget->hasFPU()">; |
| |
| //===----------------------------------------------------------------------===// |
| // PowerPC Multiclass Definitions. |
| |
| multiclass XForm_6r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : XForm_6<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR0] in |
| def o : XForm_6<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass XForm_6rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| let Defs = [CARRY] in |
| def NAME : XForm_6<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CARRY, CR0] in |
| def o : XForm_6<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass XForm_10rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| let Defs = [CARRY] in |
| def NAME : XForm_10<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CARRY, CR0] in |
| def o : XForm_10<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass XForm_11r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : XForm_11<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR0] in |
| def o : XForm_11<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass XOForm_1r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : XOForm_1<opcode, xo, oe, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR0] in |
| def o : XOForm_1<opcode, xo, oe, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| // Multiclass for instructions for which the non record form is not cracked |
| // and the record form is cracked (i.e. divw, mullw, etc.) |
| multiclass XOForm_1rcr<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : XOForm_1<opcode, xo, oe, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR0] in |
| def o : XOForm_1<opcode, xo, oe, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel, PPC970_DGroup_First, |
| PPC970_DGroup_Cracked; |
| } |
| } |
| |
| multiclass XOForm_1rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| let Defs = [CARRY] in |
| def NAME : XOForm_1<opcode, xo, oe, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CARRY, CR0] in |
| def o : XOForm_1<opcode, xo, oe, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass XOForm_3r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : XOForm_3<opcode, xo, oe, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR0] in |
| def o : XOForm_3<opcode, xo, oe, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass XOForm_3rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| let Defs = [CARRY] in |
| def NAME : XOForm_3<opcode, xo, oe, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CARRY, CR0] in |
| def o : XOForm_3<opcode, xo, oe, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass MForm_2r<bits<6> opcode, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : MForm_2<opcode, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR0] in |
| def o : MForm_2<opcode, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass MDForm_1r<bits<6> opcode, bits<3> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : MDForm_1<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR0] in |
| def o : MDForm_1<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass MDSForm_1r<bits<6> opcode, bits<4> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : MDSForm_1<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR0] in |
| def o : MDSForm_1<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass XSForm_1rc<bits<6> opcode, bits<9> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| let Defs = [CARRY] in |
| def NAME : XSForm_1<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CARRY, CR0] in |
| def o : XSForm_1<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass XSForm_1r<bits<6> opcode, bits<9> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : XSForm_1<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR0] in |
| def o : XSForm_1<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass XForm_26r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : XForm_26<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR1] in |
| def o : XForm_26<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass XForm_28r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : XForm_28<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR1] in |
| def o : XForm_28<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass AForm_1r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : AForm_1<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR1] in |
| def o : AForm_1<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass AForm_2r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : AForm_2<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR1] in |
| def o : AForm_2<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| multiclass AForm_3r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL, |
| string asmbase, string asmstr, InstrItinClass itin, |
| list<dag> pattern> { |
| let BaseName = asmbase in { |
| def NAME : AForm_3<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(" ", asmstr)), itin, |
| pattern>, RecFormRel; |
| let Defs = [CR1] in |
| def o : AForm_3<opcode, xo, OOL, IOL, |
| !strconcat(asmbase, !strconcat(". ", asmstr)), itin, |
| []>, isDOT, RecFormRel; |
| } |
| } |
| |
| //===----------------------------------------------------------------------===// |
| // PowerPC Instruction Definitions. |
| |
| // Pseudo-instructions: |
| |
| let hasCtrlDep = 1 in { |
| let Defs = [R1], Uses = [R1] in { |
| def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2), |
| "#ADJCALLSTACKDOWN $amt1 $amt2", |
| [(callseq_start timm:$amt1, timm:$amt2)]>; |
| def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2), |
| "#ADJCALLSTACKUP $amt1 $amt2", |
| [(callseq_end timm:$amt1, timm:$amt2)]>; |
| } |
| |
| def UPDATE_VRSAVE : Pseudo<(outs gprc:$rD), (ins gprc:$rS), |
| "UPDATE_VRSAVE $rD, $rS", []>; |
| } |
| |
| let Defs = [R1], Uses = [R1] in |
| def DYNALLOC : Pseudo<(outs gprc:$result), (ins gprc:$negsize, memri:$fpsi), "#DYNALLOC", |
| [(set i32:$result, |
| (PPCdynalloc i32:$negsize, iaddr:$fpsi))]>; |
| def DYNAREAOFFSET : Pseudo<(outs i32imm:$result), (ins memri:$fpsi), "#DYNAREAOFFSET", |
| [(set i32:$result, (PPCdynareaoffset iaddr:$fpsi))]>; |
| |
| // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after |
| // instruction selection into a branch sequence. |
| let usesCustomInserter = 1, // Expanded after instruction selection. |
| PPC970_Single = 1 in { |
| // Note that SELECT_CC_I4 and SELECT_CC_I8 use the no-r0 register classes |
| // because either operand might become the first operand in an isel, and |
| // that operand cannot be r0. |
| def SELECT_CC_I4 : Pseudo<(outs gprc:$dst), (ins crrc:$cond, |
| gprc_nor0:$T, gprc_nor0:$F, |
| i32imm:$BROPC), "#SELECT_CC_I4", |
| []>; |
| def SELECT_CC_I8 : Pseudo<(outs g8rc:$dst), (ins crrc:$cond, |
| g8rc_nox0:$T, g8rc_nox0:$F, |
| i32imm:$BROPC), "#SELECT_CC_I8", |
| []>; |
| def SELECT_CC_F4 : Pseudo<(outs f4rc:$dst), (ins crrc:$cond, f4rc:$T, f4rc:$F, |
| i32imm:$BROPC), "#SELECT_CC_F4", |
| []>; |
| def SELECT_CC_F8 : Pseudo<(outs f8rc:$dst), (ins crrc:$cond, f8rc:$T, f8rc:$F, |
| i32imm:$BROPC), "#SELECT_CC_F8", |
| []>; |
| def SELECT_CC_F16 : Pseudo<(outs vrrc:$dst), (ins crrc:$cond, vrrc:$T, vrrc:$F, |
| i32imm:$BROPC), "#SELECT_CC_F16", |
| []>; |
| def SELECT_CC_VRRC: Pseudo<(outs vrrc:$dst), (ins crrc:$cond, vrrc:$T, vrrc:$F, |
| i32imm:$BROPC), "#SELECT_CC_VRRC", |
| []>; |
| |
| // SELECT_* pseudo instructions, like SELECT_CC_* but taking condition |
| // register bit directly. |
| def SELECT_I4 : Pseudo<(outs gprc:$dst), (ins crbitrc:$cond, |
| gprc_nor0:$T, gprc_nor0:$F), "#SELECT_I4", |
| [(set i32:$dst, (select i1:$cond, i32:$T, i32:$F))]>; |
| def SELECT_I8 : Pseudo<(outs g8rc:$dst), (ins crbitrc:$cond, |
| g8rc_nox0:$T, g8rc_nox0:$F), "#SELECT_I8", |
| [(set i64:$dst, (select i1:$cond, i64:$T, i64:$F))]>; |
| let Predicates = [HasFPU] in { |
| def SELECT_F4 : Pseudo<(outs f4rc:$dst), (ins crbitrc:$cond, |
| f4rc:$T, f4rc:$F), "#SELECT_F4", |
| [(set f32:$dst, (select i1:$cond, f32:$T, f32:$F))]>; |
| def SELECT_F8 : Pseudo<(outs f8rc:$dst), (ins crbitrc:$cond, |
| f8rc:$T, f8rc:$F), "#SELECT_F8", |
| [(set f64:$dst, (select i1:$cond, f64:$T, f64:$F))]>; |
| def SELECT_F16 : Pseudo<(outs vrrc:$dst), (ins crbitrc:$cond, |
| vrrc:$T, vrrc:$F), "#SELECT_F16", |
| [(set f128:$dst, (select i1:$cond, f128:$T, f128:$F))]>; |
| } |
| def SELECT_VRRC: Pseudo<(outs vrrc:$dst), (ins crbitrc:$cond, |
| vrrc:$T, vrrc:$F), "#SELECT_VRRC", |
| [(set v4i32:$dst, |
| (select i1:$cond, v4i32:$T, v4i32:$F))]>; |
| } |
| |
| // SPILL_CR - Indicate that we're dumping the CR register, so we'll need to |
| // scavenge a register for it. |
| let mayStore = 1 in { |
| def SPILL_CR : Pseudo<(outs), (ins crrc:$cond, memri:$F), |
| "#SPILL_CR", []>; |
| def SPILL_CRBIT : Pseudo<(outs), (ins crbitrc:$cond, memri:$F), |
| "#SPILL_CRBIT", []>; |
| } |
| |
| // RESTORE_CR - Indicate that we're restoring the CR register (previously |
| // spilled), so we'll need to scavenge a register for it. |
| let mayLoad = 1 in { |
| def RESTORE_CR : Pseudo<(outs crrc:$cond), (ins memri:$F), |
| "#RESTORE_CR", []>; |
| def RESTORE_CRBIT : Pseudo<(outs crbitrc:$cond), (ins memri:$F), |
| "#RESTORE_CRBIT", []>; |
| } |
| |
| let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in { |
| let isReturn = 1, Uses = [LR, RM] in |
| def BLR : XLForm_2_ext<19, 16, 20, 0, 0, (outs), (ins), "blr", IIC_BrB, |
| [(retflag)]>, Requires<[In32BitMode]>; |
| let isBranch = 1, isIndirectBranch = 1, Uses = [CTR] in { |
| def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", IIC_BrB, |
| []>; |
| |
| let isCodeGenOnly = 1 in { |
| def BCCCTR : XLForm_2_br<19, 528, 0, (outs), (ins pred:$cond), |
| "b${cond:cc}ctr${cond:pm} ${cond:reg}", IIC_BrB, |
| []>; |
| |
| def BCCTR : XLForm_2_br2<19, 528, 12, 0, (outs), (ins crbitrc:$bi), |
| "bcctr 12, $bi, 0", IIC_BrB, []>; |
| def BCCTRn : XLForm_2_br2<19, 528, 4, 0, (outs), (ins crbitrc:$bi), |
| "bcctr 4, $bi, 0", IIC_BrB, []>; |
| } |
| } |
| } |
| |
| let Defs = [LR] in |
| def MovePCtoLR : Pseudo<(outs), (ins), "#MovePCtoLR", []>, |
| PPC970_Unit_BRU; |
| let Defs = [LR] in |
| def MoveGOTtoLR : Pseudo<(outs), (ins), "#MoveGOTtoLR", []>, |
| PPC970_Unit_BRU; |
| |
| let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in { |
| let isBarrier = 1 in { |
| def B : IForm<18, 0, 0, (outs), (ins directbrtarget:$dst), |
| "b $dst", IIC_BrB, |
| [(br bb:$dst)]>; |
| def BA : IForm<18, 1, 0, (outs), (ins absdirectbrtarget:$dst), |
| "ba $dst", IIC_BrB, []>; |
| } |
| |
| // BCC represents an arbitrary conditional branch on a predicate. |
| // FIXME: should be able to write a pattern for PPCcondbranch, but can't use |
| // a two-value operand where a dag node expects two operands. :( |
| let isCodeGenOnly = 1 in { |
| class BCC_class : BForm<16, 0, 0, (outs), (ins pred:$cond, condbrtarget:$dst), |
| "b${cond:cc}${cond:pm} ${cond:reg}, $dst" |
| /*[(PPCcondbranch crrc:$crS, imm:$opc, bb:$dst)]*/>; |
| def BCC : BCC_class; |
| |
| // The same as BCC, except that it's not a terminator. Used for introducing |
| // control flow dependency without creating new blocks. |
| let isTerminator = 0 in def CTRL_DEP : BCC_class; |
| |
| def BCCA : BForm<16, 1, 0, (outs), (ins pred:$cond, abscondbrtarget:$dst), |
| "b${cond:cc}a${cond:pm} ${cond:reg}, $dst">; |
| |
| let isReturn = 1, Uses = [LR, RM] in |
| def BCCLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$cond), |
| "b${cond:cc}lr${cond:pm} ${cond:reg}", IIC_BrB, []>; |
| } |
| |
| let isCodeGenOnly = 1 in { |
| let Pattern = [(brcond i1:$bi, bb:$dst)] in |
| def BC : BForm_4<16, 12, 0, 0, (outs), (ins crbitrc:$bi, condbrtarget:$dst), |
| "bc 12, $bi, $dst">; |
| |
| let Pattern = [(brcond (not i1:$bi), bb:$dst)] in |
| def BCn : BForm_4<16, 4, 0, 0, (outs), (ins crbitrc:$bi, condbrtarget:$dst), |
| "bc 4, $bi, $dst">; |
| |
| let isReturn = 1, Uses = [LR, RM] in |
| def BCLR : XLForm_2_br2<19, 16, 12, 0, (outs), (ins crbitrc:$bi), |
| "bclr 12, $bi, 0", IIC_BrB, []>; |
| def BCLRn : XLForm_2_br2<19, 16, 4, 0, (outs), (ins crbitrc:$bi), |
| "bclr 4, $bi, 0", IIC_BrB, []>; |
| } |
| |
| let isReturn = 1, Defs = [CTR], Uses = [CTR, LR, RM] in { |
| def BDZLR : XLForm_2_ext<19, 16, 18, 0, 0, (outs), (ins), |
| "bdzlr", IIC_BrB, []>; |
| def BDNZLR : XLForm_2_ext<19, 16, 16, 0, 0, (outs), (ins), |
| "bdnzlr", IIC_BrB, []>; |
| def BDZLRp : XLForm_2_ext<19, 16, 27, 0, 0, (outs), (ins), |
| "bdzlr+", IIC_BrB, []>; |
| def BDNZLRp: XLForm_2_ext<19, 16, 25, 0, 0, (outs), (ins), |
| "bdnzlr+", IIC_BrB, []>; |
| def BDZLRm : XLForm_2_ext<19, 16, 26, 0, 0, (outs), (ins), |
| "bdzlr-", IIC_BrB, []>; |
| def BDNZLRm: XLForm_2_ext<19, 16, 24, 0, 0, (outs), (ins), |
| "bdnzlr-", IIC_BrB, []>; |
| } |
| |
| let Defs = [CTR], Uses = [CTR] in { |
| def BDZ : BForm_1<16, 18, 0, 0, (outs), (ins condbrtarget:$dst), |
| "bdz $dst">; |
| def BDNZ : BForm_1<16, 16, 0, 0, (outs), (ins condbrtarget:$dst), |
| "bdnz $dst">; |
| def BDZA : BForm_1<16, 18, 1, 0, (outs), (ins abscondbrtarget:$dst), |
| "bdza $dst">; |
| def BDNZA : BForm_1<16, 16, 1, 0, (outs), (ins abscondbrtarget:$dst), |
| "bdnza $dst">; |
| def BDZp : BForm_1<16, 27, 0, 0, (outs), (ins condbrtarget:$dst), |
| "bdz+ $dst">; |
| def BDNZp: BForm_1<16, 25, 0, 0, (outs), (ins condbrtarget:$dst), |
| "bdnz+ $dst">; |
| def BDZAp : BForm_1<16, 27, 1, 0, (outs), (ins abscondbrtarget:$dst), |
| "bdza+ $dst">; |
| def BDNZAp: BForm_1<16, 25, 1, 0, (outs), (ins abscondbrtarget:$dst), |
| "bdnza+ $dst">; |
| def BDZm : BForm_1<16, 26, 0, 0, (outs), (ins condbrtarget:$dst), |
| "bdz- $dst">; |
| def BDNZm: BForm_1<16, 24, 0, 0, (outs), (ins condbrtarget:$dst), |
| "bdnz- $dst">; |
| def BDZAm : BForm_1<16, 26, 1, 0, (outs), (ins abscondbrtarget:$dst), |
| "bdza- $dst">; |
| def BDNZAm: BForm_1<16, 24, 1, 0, (outs), (ins abscondbrtarget:$dst), |
| "bdnza- $dst">; |
| } |
| } |
| |
| // The unconditional BCL used by the SjLj setjmp code. |
| let isCall = 1, hasCtrlDep = 1, isCodeGenOnly = 1, PPC970_Unit = 7 in { |
| let Defs = [LR], Uses = [RM] in { |
| def BCLalways : BForm_2<16, 20, 31, 0, 1, (outs), (ins condbrtarget:$dst), |
| "bcl 20, 31, $dst">; |
| } |
| } |
| |
| let isCall = 1, PPC970_Unit = 7, Defs = [LR] in { |
| // Convenient aliases for call instructions |
| let Uses = [RM] in { |
| def BL : IForm<18, 0, 1, (outs), (ins calltarget:$func), |
| "bl $func", IIC_BrB, []>; // See Pat patterns below. |
| def BLA : IForm<18, 1, 1, (outs), (ins abscalltarget:$func), |
| "bla $func", IIC_BrB, [(PPCcall (i32 imm:$func))]>; |
| |
| let isCodeGenOnly = 1 in { |
| def BL_TLS : IForm<18, 0, 1, (outs), (ins tlscall32:$func), |
| "bl $func", IIC_BrB, []>; |
| def BCCL : BForm<16, 0, 1, (outs), (ins pred:$cond, condbrtarget:$dst), |
| "b${cond:cc}l${cond:pm} ${cond:reg}, $dst">; |
| def BCCLA : BForm<16, 1, 1, (outs), (ins pred:$cond, abscondbrtarget:$dst), |
| "b${cond:cc}la${cond:pm} ${cond:reg}, $dst">; |
| |
| def BCL : BForm_4<16, 12, 0, 1, (outs), |
| (ins crbitrc:$bi, condbrtarget:$dst), |
| "bcl 12, $bi, $dst">; |
| def BCLn : BForm_4<16, 4, 0, 1, (outs), |
| (ins crbitrc:$bi, condbrtarget:$dst), |
| "bcl 4, $bi, $dst">; |
| } |
| } |
| let Uses = [CTR, RM] in { |
| def BCTRL : XLForm_2_ext<19, 528, 20, 0, 1, (outs), (ins), |
| "bctrl", IIC_BrB, [(PPCbctrl)]>, |
| Requires<[In32BitMode]>; |
| |
| let isCodeGenOnly = 1 in { |
| def BCCCTRL : XLForm_2_br<19, 528, 1, (outs), (ins pred:$cond), |
| "b${cond:cc}ctrl${cond:pm} ${cond:reg}", IIC_BrB, |
| []>; |
| |
| def BCCTRL : XLForm_2_br2<19, 528, 12, 1, (outs), (ins crbitrc:$bi), |
| "bcctrl 12, $bi, 0", IIC_BrB, []>; |
| def BCCTRLn : XLForm_2_br2<19, 528, 4, 1, (outs), (ins crbitrc:$bi), |
| "bcctrl 4, $bi, 0", IIC_BrB, []>; |
| } |
| } |
| let Uses = [LR, RM] in { |
| def BLRL : XLForm_2_ext<19, 16, 20, 0, 1, (outs), (ins), |
| "blrl", IIC_BrB, []>; |
| |
| let isCodeGenOnly = 1 in { |
| def BCCLRL : XLForm_2_br<19, 16, 1, (outs), (ins pred:$cond), |
| "b${cond:cc}lrl${cond:pm} ${cond:reg}", IIC_BrB, |
| []>; |
| |
| def BCLRL : XLForm_2_br2<19, 16, 12, 1, (outs), (ins crbitrc:$bi), |
| "bclrl 12, $bi, 0", IIC_BrB, []>; |
| def BCLRLn : XLForm_2_br2<19, 16, 4, 1, (outs), (ins crbitrc:$bi), |
| "bclrl 4, $bi, 0", IIC_BrB, []>; |
| } |
| } |
| let Defs = [CTR], Uses = [CTR, RM] in { |
| def BDZL : BForm_1<16, 18, 0, 1, (outs), (ins condbrtarget:$dst), |
| "bdzl $dst">; |
| def BDNZL : BForm_1<16, 16, 0, 1, (outs), (ins condbrtarget:$dst), |
| "bdnzl $dst">; |
| def BDZLA : BForm_1<16, 18, 1, 1, (outs), (ins abscondbrtarget:$dst), |
| "bdzla $dst">; |
| def BDNZLA : BForm_1<16, 16, 1, 1, (outs), (ins abscondbrtarget:$dst), |
| "bdnzla $dst">; |
| def BDZLp : BForm_1<16, 27, 0, 1, (outs), (ins condbrtarget:$dst), |
| "bdzl+ $dst">; |
| def BDNZLp: BForm_1<16, 25, 0, 1, (outs), (ins condbrtarget:$dst), |
| "bdnzl+ $dst">; |
| def BDZLAp : BForm_1<16, 27, 1, 1, (outs), (ins abscondbrtarget:$dst), |
| "bdzla+ $dst">; |
| def BDNZLAp: BForm_1<16, 25, 1, 1, (outs), (ins abscondbrtarget:$dst), |
| "bdnzla+ $dst">; |
| def BDZLm : BForm_1<16, 26, 0, 1, (outs), (ins condbrtarget:$dst), |
| "bdzl- $dst">; |
| def BDNZLm: BForm_1<16, 24, 0, 1, (outs), (ins condbrtarget:$dst), |
| "bdnzl- $dst">; |
| def BDZLAm : BForm_1<16, 26, 1, 1, (outs), (ins abscondbrtarget:$dst), |
| "bdzla- $dst">; |
| def BDNZLAm: BForm_1<16, 24, 1, 1, (outs), (ins abscondbrtarget:$dst), |
| "bdnzla- $dst">; |
| } |
| let Defs = [CTR], Uses = [CTR, LR, RM] in { |
| def BDZLRL : XLForm_2_ext<19, 16, 18, 0, 1, (outs), (ins), |
| "bdzlrl", IIC_BrB, []>; |
| def BDNZLRL : XLForm_2_ext<19, 16, 16, 0, 1, (outs), (ins), |
| "bdnzlrl", IIC_BrB, []>; |
| def BDZLRLp : XLForm_2_ext<19, 16, 27, 0, 1, (outs), (ins), |
| "bdzlrl+", IIC_BrB, []>; |
| def BDNZLRLp: XLForm_2_ext<19, 16, 25, 0, 1, (outs), (ins), |
| "bdnzlrl+", IIC_BrB, []>; |
| def BDZLRLm : XLForm_2_ext<19, 16, 26, 0, 1, (outs), (ins), |
| "bdzlrl-", IIC_BrB, []>; |
| def BDNZLRLm: XLForm_2_ext<19, 16, 24, 0, 1, (outs), (ins), |
| "bdnzlrl-", IIC_BrB, []>; |
| } |
| } |
| |
| let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in |
| def TCRETURNdi :Pseudo< (outs), |
| (ins calltarget:$dst, i32imm:$offset), |
| "#TC_RETURNd $dst $offset", |
| []>; |
| |
| |
| let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in |
| def TCRETURNai :Pseudo<(outs), (ins abscalltarget:$func, i32imm:$offset), |
| "#TC_RETURNa $func $offset", |
| [(PPCtc_return (i32 imm:$func), imm:$offset)]>; |
| |
| let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in |
| def TCRETURNri : Pseudo<(outs), (ins CTRRC:$dst, i32imm:$offset), |
| "#TC_RETURNr $dst $offset", |
| []>; |
| |
| |
| let isCodeGenOnly = 1 in { |
| |
| let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1, |
| isIndirectBranch = 1, isCall = 1, isReturn = 1, Uses = [CTR, RM] in |
| def TAILBCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", IIC_BrB, |
| []>, Requires<[In32BitMode]>; |
| |
| let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7, |
| isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in |
| def TAILB : IForm<18, 0, 0, (outs), (ins calltarget:$dst), |
| "b $dst", IIC_BrB, |
| []>; |
| |
| let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7, |
| isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in |
| def TAILBA : IForm<18, 0, 0, (outs), (ins abscalltarget:$dst), |
| "ba $dst", IIC_BrB, |
| []>; |
| |
| } |
| |
| let hasSideEffects = 1, isBarrier = 1, usesCustomInserter = 1 in { |
| let Defs = [CTR] in |
| def EH_SjLj_SetJmp32 : Pseudo<(outs gprc:$dst), (ins memr:$buf), |
| "#EH_SJLJ_SETJMP32", |
| [(set i32:$dst, (PPCeh_sjlj_setjmp addr:$buf))]>, |
| Requires<[In32BitMode]>; |
| let isTerminator = 1 in |
| def EH_SjLj_LongJmp32 : Pseudo<(outs), (ins memr:$buf), |
| "#EH_SJLJ_LONGJMP32", |
| [(PPCeh_sjlj_longjmp addr:$buf)]>, |
| Requires<[In32BitMode]>; |
| } |
| |
| // This pseudo is never removed from the function, as it serves as |
| // a terminator. Size is set to 0 to prevent the builtin assembler |
| // from emitting it. |
| let isBranch = 1, isTerminator = 1, Size = 0 in { |
| def EH_SjLj_Setup : Pseudo<(outs), (ins directbrtarget:$dst), |
| "#EH_SjLj_Setup\t$dst", []>; |
| } |
| |
| // System call. |
| let PPC970_Unit = 7 in { |
| def SC : SCForm<17, 1, (outs), (ins i32imm:$lev), |
| "sc $lev", IIC_BrB, [(PPCsc (i32 imm:$lev))]>; |
| } |
| |
| // Branch history rolling buffer. |
| def CLRBHRB : XForm_0<31, 430, (outs), (ins), "clrbhrb", IIC_BrB, |
| [(PPCclrbhrb)]>, |
| PPC970_DGroup_Single; |
| // The $dmy argument used for MFBHRBE is not needed; however, including |
| // it avoids automatic generation of PPCFastISel::fastEmit_i(), which |
| // interferes with necessary special handling (see PPCFastISel.cpp). |
| def MFBHRBE : XFXForm_3p<31, 302, (outs gprc:$rD), |
| (ins u10imm:$imm, u10imm:$dmy), |
| "mfbhrbe $rD, $imm", IIC_BrB, |
| [(set i32:$rD, |
| (PPCmfbhrbe imm:$imm, imm:$dmy))]>, |
| PPC970_DGroup_First; |
| |
| def RFEBB : XLForm_S<19, 146, (outs), (ins u1imm:$imm), "rfebb $imm", |
| IIC_BrB, [(PPCrfebb (i32 imm:$imm))]>, |
| PPC970_DGroup_Single; |
| |
| // DCB* instructions. |
| def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst), "dcba $dst", |
| IIC_LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>, |
| PPC970_DGroup_Single; |
| def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst), "dcbi $dst", |
| IIC_LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>, |
| PPC970_DGroup_Single; |
| def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst), "dcbst $dst", |
| IIC_LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>, |
| PPC970_DGroup_Single; |
| def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst), "dcbz $dst", |
| IIC_LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>, |
| PPC970_DGroup_Single; |
| def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst), "dcbzl $dst", |
| IIC_LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>, |
| PPC970_DGroup_Single; |
| |
| def DCBF : DCB_Form_hint<86, (outs), (ins u5imm:$TH, memrr:$dst), |
| "dcbf $dst, $TH", IIC_LdStDCBF, []>, |
| PPC970_DGroup_Single; |
| |
| let hasSideEffects = 0, mayLoad = 1, mayStore = 1 in { |
| def DCBT : DCB_Form_hint<278, (outs), (ins u5imm:$TH, memrr:$dst), |
| "dcbt $dst, $TH", IIC_LdStDCBF, []>, |
| PPC970_DGroup_Single; |
| def DCBTST : DCB_Form_hint<246, (outs), (ins u5imm:$TH, memrr:$dst), |
| "dcbtst $dst, $TH", IIC_LdStDCBF, []>, |
| PPC970_DGroup_Single; |
| } // hasSideEffects = 0 |
| |
| def ICBLC : XForm_icbt<31, 230, (outs), (ins u4imm:$CT, memrr:$src), |
| "icblc $CT, $src", IIC_LdStStore>, Requires<[HasICBT]>; |
| def ICBLQ : XForm_icbt<31, 198, (outs), (ins u4imm:$CT, memrr:$src), |
| "icblq. $CT, $src", IIC_LdStLoad>, Requires<[HasICBT]>; |
| def ICBT : XForm_icbt<31, 22, (outs), (ins u4imm:$CT, memrr:$src), |
| "icbt $CT, $src", IIC_LdStLoad>, Requires<[HasICBT]>; |
| def ICBTLS : XForm_icbt<31, 486, (outs), (ins u4imm:$CT, memrr:$src), |
| "icbtls $CT, $src", IIC_LdStLoad>, Requires<[HasICBT]>; |
| |
| def : Pat<(int_ppc_dcbt xoaddr:$dst), |
| (DCBT 0, xoaddr:$dst)>; |
| def : Pat<(int_ppc_dcbtst xoaddr:$dst), |
| (DCBTST 0, xoaddr:$dst)>; |
| def : Pat<(int_ppc_dcbf xoaddr:$dst), |
| (DCBF 0, xoaddr:$dst)>; |
| |
| def : Pat<(prefetch xoaddr:$dst, (i32 0), imm, (i32 1)), |
| (DCBT 0, xoaddr:$dst)>; // data prefetch for loads |
| def : Pat<(prefetch xoaddr:$dst, (i32 1), imm, (i32 1)), |
| (DCBTST 0, xoaddr:$dst)>; // data prefetch for stores |
| def : Pat<(prefetch xoaddr:$dst, (i32 0), imm, (i32 0)), |
| (ICBT 0, xoaddr:$dst)>, Requires<[HasICBT]>; // inst prefetch (for read) |
| |
| // Atomic operations |
| // FIXME: some of these might be used with constant operands. This will result |
| // in constant materialization instructions that may be redundant. We currently |
| // clean this up in PPCMIPeephole with calls to |
| // PPCInstrInfo::convertToImmediateForm() but we should probably not emit them |
| // in the first place. |
| let usesCustomInserter = 1 in { |
| let Defs = [CR0] in { |
| def ATOMIC_LOAD_ADD_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I8", |
| [(set i32:$dst, (atomic_load_add_8 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_SUB_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I8", |
| [(set i32:$dst, (atomic_load_sub_8 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_AND_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I8", |
| [(set i32:$dst, (atomic_load_and_8 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_OR_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I8", |
| [(set i32:$dst, (atomic_load_or_8 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_XOR_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "ATOMIC_LOAD_XOR_I8", |
| [(set i32:$dst, (atomic_load_xor_8 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_NAND_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I8", |
| [(set i32:$dst, (atomic_load_nand_8 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_MIN_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_MIN_I8", |
| [(set i32:$dst, (atomic_load_min_8 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_MAX_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_MAX_I8", |
| [(set i32:$dst, (atomic_load_max_8 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_UMIN_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_UMIN_I8", |
| [(set i32:$dst, (atomic_load_umin_8 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_UMAX_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_UMAX_I8", |
| [(set i32:$dst, (atomic_load_umax_8 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_ADD_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I16", |
| [(set i32:$dst, (atomic_load_add_16 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_SUB_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I16", |
| [(set i32:$dst, (atomic_load_sub_16 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_AND_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I16", |
| [(set i32:$dst, (atomic_load_and_16 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_OR_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I16", |
| [(set i32:$dst, (atomic_load_or_16 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_XOR_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I16", |
| [(set i32:$dst, (atomic_load_xor_16 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_NAND_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I16", |
| [(set i32:$dst, (atomic_load_nand_16 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_MIN_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_MIN_I16", |
| [(set i32:$dst, (atomic_load_min_16 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_MAX_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_MAX_I16", |
| [(set i32:$dst, (atomic_load_max_16 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_UMIN_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_UMIN_I16", |
| [(set i32:$dst, (atomic_load_umin_16 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_UMAX_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_UMAX_I16", |
| [(set i32:$dst, (atomic_load_umax_16 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_ADD_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I32", |
| [(set i32:$dst, (atomic_load_add_32 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_SUB_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I32", |
| [(set i32:$dst, (atomic_load_sub_32 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_AND_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I32", |
| [(set i32:$dst, (atomic_load_and_32 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_OR_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I32", |
| [(set i32:$dst, (atomic_load_or_32 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_XOR_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I32", |
| [(set i32:$dst, (atomic_load_xor_32 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_NAND_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I32", |
| [(set i32:$dst, (atomic_load_nand_32 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_MIN_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_MIN_I32", |
| [(set i32:$dst, (atomic_load_min_32 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_MAX_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_MAX_I32", |
| [(set i32:$dst, (atomic_load_max_32 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_UMIN_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_UMIN_I32", |
| [(set i32:$dst, (atomic_load_umin_32 xoaddr:$ptr, i32:$incr))]>; |
| def ATOMIC_LOAD_UMAX_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_UMAX_I32", |
| [(set i32:$dst, (atomic_load_umax_32 xoaddr:$ptr, i32:$incr))]>; |
| |
| def ATOMIC_CMP_SWAP_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I8", |
| [(set i32:$dst, (atomic_cmp_swap_8 xoaddr:$ptr, i32:$old, i32:$new))]>; |
| def ATOMIC_CMP_SWAP_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I16 $dst $ptr $old $new", |
| [(set i32:$dst, (atomic_cmp_swap_16 xoaddr:$ptr, i32:$old, i32:$new))]>; |
| def ATOMIC_CMP_SWAP_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I32 $dst $ptr $old $new", |
| [(set i32:$dst, (atomic_cmp_swap_32 xoaddr:$ptr, i32:$old, i32:$new))]>; |
| |
| def ATOMIC_SWAP_I8 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_i8", |
| [(set i32:$dst, (atomic_swap_8 xoaddr:$ptr, i32:$new))]>; |
| def ATOMIC_SWAP_I16 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I16", |
| [(set i32:$dst, (atomic_swap_16 xoaddr:$ptr, i32:$new))]>; |
| def ATOMIC_SWAP_I32 : Pseudo< |
| (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I32", |
| [(set i32:$dst, (atomic_swap_32 xoaddr:$ptr, i32:$new))]>; |
| } |
| } |
| |
| def : Pat<(PPCatomicCmpSwap_8 xoaddr:$ptr, i32:$old, i32:$new), |
| (ATOMIC_CMP_SWAP_I8 xoaddr:$ptr, i32:$old, i32:$new)>; |
| def : Pat<(PPCatomicCmpSwap_16 xoaddr:$ptr, i32:$old, i32:$new), |
| (ATOMIC_CMP_SWAP_I16 xoaddr:$ptr, i32:$old, i32:$new)>; |
| |
| // Instructions to support atomic operations |
| let mayLoad = 1, mayStore = 0, hasSideEffects = 0 in { |
| def LBARX : XForm_1_memOp<31, 52, (outs gprc:$rD), (ins memrr:$src), |
| "lbarx $rD, $src", IIC_LdStLWARX, []>, |
| Requires<[HasPartwordAtomics]>; |
| |
| def LHARX : XForm_1_memOp<31, 116, (outs gprc:$rD), (ins memrr:$src), |
| "lharx $rD, $src", IIC_LdStLWARX, []>, |
| Requires<[HasPartwordAtomics]>; |
| |
| def LWARX : XForm_1_memOp<31, 20, (outs gprc:$rD), (ins memrr:$src), |
| "lwarx $rD, $src", IIC_LdStLWARX, []>; |
| |
| // Instructions to support lock versions of atomics |
| // (EH=1 - see Power ISA 2.07 Book II 4.4.2) |
| def LBARXL : XForm_1_memOp<31, 52, (outs gprc:$rD), (ins memrr:$src), |
| "lbarx $rD, $src, 1", IIC_LdStLWARX, []>, isDOT, |
| Requires<[HasPartwordAtomics]>; |
| |
| def LHARXL : XForm_1_memOp<31, 116, (outs gprc:$rD), (ins memrr:$src), |
| "lharx $rD, $src, 1", IIC_LdStLWARX, []>, isDOT, |
| Requires<[HasPartwordAtomics]>; |
| |
| def LWARXL : XForm_1_memOp<31, 20, (outs gprc:$rD), (ins memrr:$src), |
| "lwarx $rD, $src, 1", IIC_LdStLWARX, []>, isDOT; |
| |
| // The atomic instructions use the destination register as well as the next one |
| // or two registers in order (modulo 31). |
| let hasExtraSrcRegAllocReq = 1 in |
| def LWAT : X_RD5_RS5_IM5<31, 582, (outs gprc:$rD), (ins gprc:$rA, u5imm:$FC), |
| "lwat $rD, $rA, $FC", IIC_LdStLoad>, |
| Requires<[IsISA3_0]>; |
| } |
| |
| let Defs = [CR0], mayStore = 1, mayLoad = 0, hasSideEffects = 0 in { |
| def STBCX : XForm_1_memOp<31, 694, (outs), (ins gprc:$rS, memrr:$dst), |
| "stbcx. $rS, $dst", IIC_LdStSTWCX, []>, |
| isDOT, Requires<[HasPartwordAtomics]>; |
| |
| def STHCX : XForm_1_memOp<31, 726, (outs), (ins gprc:$rS, memrr:$dst), |
| "sthcx. $rS, $dst", IIC_LdStSTWCX, []>, |
| isDOT, Requires<[HasPartwordAtomics]>; |
| |
| def STWCX : XForm_1_memOp<31, 150, (outs), (ins gprc:$rS, memrr:$dst), |
| "stwcx. $rS, $dst", IIC_LdStSTWCX, []>, isDOT; |
| } |
| |
| let mayStore = 1, mayLoad = 0, hasSideEffects = 0 in |
| def STWAT : X_RD5_RS5_IM5<31, 710, (outs), (ins gprc:$rS, gprc:$rA, u5imm:$FC), |
| "stwat $rS, $rA, $FC", IIC_LdStStore>, |
| Requires<[IsISA3_0]>; |
| |
| let isTerminator = 1, isBarrier = 1, hasCtrlDep = 1 in |
| def TRAP : XForm_24<31, 4, (outs), (ins), "trap", IIC_LdStLoad, [(trap)]>; |
| |
| def TWI : DForm_base<3, (outs), (ins u5imm:$to, gprc:$rA, s16imm:$imm), |
| "twi $to, $rA, $imm", IIC_IntTrapW, []>; |
| def TW : XForm_1<31, 4, (outs), (ins u5imm:$to, gprc:$rA, gprc:$rB), |
| "tw $to, $rA, $rB", IIC_IntTrapW, []>; |
| def TDI : DForm_base<2, (outs), (ins u5imm:$to, g8rc:$rA, s16imm:$imm), |
| "tdi $to, $rA, $imm", IIC_IntTrapD, []>; |
| def TD : XForm_1<31, 68, (outs), (ins u5imm:$to, g8rc:$rA, g8rc:$rB), |
| "td $to, $rA, $rB", IIC_IntTrapD, []>; |
| |
| //===----------------------------------------------------------------------===// |
| // PPC32 Load Instructions. |
| // |
| |
| // Unindexed (r+i) Loads. |
| let PPC970_Unit = 2 in { |
| def LBZ : DForm_1<34, (outs gprc:$rD), (ins memri:$src), |
| "lbz $rD, $src", IIC_LdStLoad, |
| [(set i32:$rD, (zextloadi8 iaddr:$src))]>; |
| def LHA : DForm_1<42, (outs gprc:$rD), (ins memri:$src), |
| "lha $rD, $src", IIC_LdStLHA, |
| [(set i32:$rD, (sextloadi16 iaddr:$src))]>, |
| PPC970_DGroup_Cracked; |
| def LHZ : DForm_1<40, (outs gprc:$rD), (ins memri:$src), |
| "lhz $rD, $src", IIC_LdStLoad, |
| [(set i32:$rD, (zextloadi16 iaddr:$src))]>; |
| def LWZ : DForm_1<32, (outs gprc:$rD), (ins memri:$src), |
| "lwz $rD, $src", IIC_LdStLoad, |
| [(set i32:$rD, (load iaddr:$src))]>; |
| |
| let Predicates = [HasFPU] in { |
| def LFS : DForm_1<48, (outs f4rc:$rD), (ins memri:$src), |
| "lfs $rD, $src", IIC_LdStLFD, |
| [(set f32:$rD, (load iaddr:$src))]>; |
| def LFD : DForm_1<50, (outs f8rc:$rD), (ins memri:$src), |
| "lfd $rD, $src", IIC_LdStLFD, |
| [(set f64:$rD, (load iaddr:$src))]>; |
| } |
| |
| |
| // Unindexed (r+i) Loads with Update (preinc). |
| let mayLoad = 1, mayStore = 0, hasSideEffects = 0 in { |
| def LBZU : DForm_1<35, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr), |
| "lbzu $rD, $addr", IIC_LdStLoadUpd, |
| []>, RegConstraint<"$addr.reg = $ea_result">, |
| NoEncode<"$ea_result">; |
| |
| def LHAU : DForm_1<43, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr), |
| "lhau $rD, $addr", IIC_LdStLHAU, |
| []>, RegConstraint<"$addr.reg = $ea_result">, |
| NoEncode<"$ea_result">; |
| |
| def LHZU : DForm_1<41, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr), |
| "lhzu $rD, $addr", IIC_LdStLoadUpd, |
| []>, RegConstraint<"$addr.reg = $ea_result">, |
| NoEncode<"$ea_result">; |
| |
| def LWZU : DForm_1<33, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr), |
| "lwzu $rD, $addr", IIC_LdStLoadUpd, |
| []>, RegConstraint<"$addr.reg = $ea_result">, |
| NoEncode<"$ea_result">; |
| |
| let Predicates = [HasFPU] in { |
| def LFSU : DForm_1<49, (outs f4rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr), |
| "lfsu $rD, $addr", IIC_LdStLFDU, |
| []>, RegConstraint<"$addr.reg = $ea_result">, |
| NoEncode<"$ea_result">; |
| |
| def LFDU : DForm_1<51, (outs f8rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr), |
| "lfdu $rD, $addr", IIC_LdStLFDU, |
| []>, RegConstraint<"$addr.reg = $ea_result">, |
| NoEncode<"$ea_result">; |
| } |
| |
| |
| // Indexed (r+r) Loads with Update (preinc). |
| def LBZUX : XForm_1_memOp<31, 119, (outs gprc:$rD, ptr_rc_nor0:$ea_result), |
| (ins memrr:$addr), |
| "lbzux $rD, $addr", IIC_LdStLoadUpdX, |
| []>, RegConstraint<"$addr.ptrreg = $ea_result">, |
| NoEncode<"$ea_result">; |
| |
| def LHAUX : XForm_1_memOp<31, 375, (outs gprc:$rD, ptr_rc_nor0:$ea_result), |
| (ins memrr:$addr), |
| "lhaux $rD, $addr", IIC_LdStLHAUX, |
| []>, RegConstraint<"$addr.ptrreg = $ea_result">, |
| NoEncode<"$ea_result">; |
| |
| def LHZUX : XForm_1_memOp<31, 311, (outs gprc:$rD, ptr_rc_nor0:$ea_result), |
| (ins memrr:$addr), |
| "lhzux $rD, $addr", IIC_LdStLoadUpdX, |
| []>, RegConstraint<"$addr.ptrreg = $ea_result">, |
| NoEncode<"$ea_result">; |
| |
| def LWZUX : XForm_1_memOp<31, 55, (outs gprc:$rD, ptr_rc_nor0:$ea_result), |
| (ins memrr:$addr), |
| "lwzux $rD, $addr", IIC_LdStLoadUpdX, |
| []>, RegConstraint<"$addr.ptrreg = $ea_result">, |
| NoEncode<"$ea_result">; |
| |
| let Predicates = [HasFPU] in { |
| def LFSUX : XForm_1_memOp<31, 567, (outs f4rc:$rD, ptr_rc_nor0:$ea_result), |
| (ins memrr:$addr), |
| "lfsux $rD, $addr", IIC_LdStLFDUX, |
| []>, RegConstraint<"$addr.ptrreg = $ea_result">, |
| NoEncode<"$ea_result">; |
| |
| def LFDUX : XForm_1_memOp<31, 631, (outs f8rc:$rD, ptr_rc_nor0:$ea_result), |
| (ins memrr:$addr), |
| "lfdux $rD, $addr", IIC_LdStLFDUX, |
| []>, RegConstraint<"$addr.ptrreg = $ea_result">, |
| NoEncode<"$ea_result">; |
| } |
| } |
| } |
| |
| // Indexed (r+r) Loads. |
| // |
| let PPC970_Unit = 2, mayLoad = 1, mayStore = 0 in { |
| def LBZX : XForm_1_memOp<31, 87, (outs gprc:$rD), (ins memrr:$src), |
| "lbzx $rD, $src", IIC_LdStLoad, |
| [(set i32:$rD, (zextloadi8 xaddr:$src))]>; |
| def LHAX : XForm_1_memOp<31, 343, (outs gprc:$rD), (ins memrr:$src), |
| "lhax $rD, $src", IIC_LdStLHA, |
| [(set i32:$rD, (sextloadi16 xaddr:$src))]>, |
| PPC970_DGroup_Cracked; |
| def LHZX : XForm_1_memOp<31, 279, (outs gprc:$rD), (ins memrr:$src), |
| "lhzx $rD, $src", IIC_LdStLoad, |
| [(set i32:$rD, (zextloadi16 xaddr:$src))]>; |
| def LWZX : XForm_1_memOp<31, 23, (outs gprc:$rD), (ins memrr:$src), |
| "lwzx $rD, $src", IIC_LdStLoad, |
| [(set i32:$rD, (load xaddr:$src))]>; |
| def LHBRX : XForm_1_memOp<31, 790, (outs gprc:$rD), (ins memrr:$src), |
| "lhbrx $rD, $src", IIC_LdStLoad, |
| [(set i32:$rD, (PPClbrx xoaddr:$src, i16))]>; |
| def LWBRX : XForm_1_memOp<31, 534, (outs gprc:$rD), (ins memrr:$src), |
| "lwbrx $rD, $src", IIC_LdStLoad, |
| [(set i32:$rD, (PPClbrx xoaddr:$src, i32))]>; |
| |
| let Predicates = [HasFPU] in { |
| def LFSX : XForm_25_memOp<31, 535, (outs f4rc:$frD), (ins memrr:$src), |
| "lfsx $frD, $src", IIC_LdStLFD, |
| [(set f32:$frD, (load xaddr:$src))]>; |
| def LFDX : XForm_25_memOp<31, 599, (outs f8rc:$frD), (ins memrr:$src), |
| "lfdx $frD, $src", IIC_LdStLFD, |
| [(set f64:$frD, (load xaddr:$src))]>; |
| |
| def LFIWAX : XForm_25_memOp<31, 855, (outs f8rc:$frD), (ins memrr:$src), |
| "lfiwax $frD, $src", IIC_LdStLFD, |
| [(set f64:$frD, (PPClfiwax xoaddr:$src))]>; |
| def LFIWZX : XForm_25_memOp<31, 887, (outs f8rc:$frD), (ins memrr:$src), |
| "lfiwzx $frD, $src", IIC_LdStLFD, |
| [(set f64:$frD, (PPClfiwzx xoaddr:$src))]>; |
| } |
| } |
| |
| // Load Multiple |
| def LMW : DForm_1<46, (outs gprc:$rD), (ins memri:$src), |
| "lmw $rD, $src", IIC_LdStLMW, []>; |
| |
| //===----------------------------------------------------------------------===// |
| // PPC32 Store Instructions. |
| // |
| |
| // Unindexed (r+i) Stores. |
| let PPC970_Unit = 2, mayStore = 1, mayLoad = 0 in { |
| def STB : DForm_1<38, (outs), (ins gprc:$rS, memri:$src), |
| "stb $rS, $src", IIC_LdStStore, |
| [(truncstorei8 i32:$rS, iaddr:$src)]>; |
| def STH : DForm_1<44, (outs), (ins gprc:$rS, memri:$src), |
| "sth $rS, $src", IIC_LdStStore, |
| [(truncstorei16 i32:$rS, iaddr:$src)]>; |
| def STW : DForm_1<36, (outs), (ins gprc:$rS, memri:$src), |
| "stw $rS, $src", IIC_LdStStore, |
| [(store i32:$rS, iaddr:$src)]>; |
| let Predicates = [HasFPU] in { |
| def STFS : DForm_1<52, (outs), (ins f4rc:$rS, memri:$dst), |
| "stfs $rS, $dst", IIC_LdStSTFD, |
| [(store f32:$rS, iaddr:$dst)]>; |
| def STFD : DForm_1<54, (outs), (ins f8rc:$rS, memri:$dst), |
| "stfd $rS, $dst", IIC_LdStSTFD, |
| [(store f64:$rS, iaddr:$dst)]>; |
| } |
| } |
| |
| // Unindexed (r+i) Stores with Update (preinc). |
| let PPC970_Unit = 2, mayStore = 1, mayLoad = 0 in { |
| def STBU : DForm_1<39, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst), |
| "stbu $rS, $dst", IIC_LdStStoreUpd, []>, |
| RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">; |
| def STHU : DForm_1<45, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst), |
| "sthu $rS, $dst", IIC_LdStStoreUpd, []>, |
| RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">; |
| def STWU : DForm_1<37, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst), |
| "stwu $rS, $dst", IIC_LdStStoreUpd, []>, |
| RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">; |
| let Predicates = [HasFPU] in { |
| def STFSU : DForm_1<53, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memri:$dst), |
| "stfsu $rS, $dst", IIC_LdStSTFDU, []>, |
| RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">; |
| def STFDU : DForm_1<55, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memri:$dst), |
| "stfdu $rS, $dst", IIC_LdStSTFDU, []>, |
| RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">; |
| } |
| } |
| |
| // Patterns to match the pre-inc stores. We can't put the patterns on |
| // the instruction definitions directly as ISel wants the address base |
| // and offset to be separate operands, not a single complex operand. |
| def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff), |
| (STBU $rS, iaddroff:$ptroff, $ptrreg)>; |
| def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff), |
| (STHU $rS, iaddroff:$ptroff, $ptrreg)>; |
| def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff), |
| (STWU $rS, iaddroff:$ptroff, $ptrreg)>; |
| def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iaddroff:$ptroff), |
| (STFSU $rS, iaddroff:$ptroff, $ptrreg)>; |
| def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iaddroff:$ptroff), |
| (STFDU $rS, iaddroff:$ptroff, $ptrreg)>; |
| |
| // Indexed (r+r) Stores. |
| let PPC970_Unit = 2 in { |
| def STBX : XForm_8_memOp<31, 215, (outs), (ins gprc:$rS, memrr:$dst), |
| "stbx $rS, $dst", IIC_LdStStore, |
| [(truncstorei8 i32:$rS, xaddr:$dst)]>, |
| PPC970_DGroup_Cracked; |
| def STHX : XForm_8_memOp<31, 407, (outs), (ins gprc:$rS, memrr:$dst), |
| "sthx $rS, $dst", IIC_LdStStore, |
| [(truncstorei16 i32:$rS, xaddr:$dst)]>, |
| PPC970_DGroup_Cracked; |
| def STWX : XForm_8_memOp<31, 151, (outs), (ins gprc:$rS, memrr:$dst), |
| "stwx $rS, $dst", IIC_LdStStore, |
| [(store i32:$rS, xaddr:$dst)]>, |
| PPC970_DGroup_Cracked; |
| |
| def STHBRX: XForm_8_memOp<31, 918, (outs), (ins gprc:$rS, memrr:$dst), |
| "sthbrx $rS, $dst", IIC_LdStStore, |
| [(PPCstbrx i32:$rS, xoaddr:$dst, i16)]>, |
| PPC970_DGroup_Cracked; |
| def STWBRX: XForm_8_memOp<31, 662, (outs), (ins gprc:$rS, memrr:$dst), |
| "stwbrx $rS, $dst", IIC_LdStStore, |
| [(PPCstbrx i32:$rS, xoaddr:$dst, i32)]>, |
| PPC970_DGroup_Cracked; |
| |
| let Predicates = [HasFPU] in { |
| def STFIWX: XForm_28_memOp<31, 983, (outs), (ins f8rc:$frS, memrr:$dst), |
| "stfiwx $frS, $dst", IIC_LdStSTFD, |
| [(PPCstfiwx f64:$frS, xoaddr:$dst)]>; |
| |
| def STFSX : XForm_28_memOp<31, 663, (outs), (ins f4rc:$frS, memrr:$dst), |
| "stfsx $frS, $dst", IIC_LdStSTFD, |
| [(store f32:$frS, xaddr:$dst)]>; |
| def STFDX : XForm_28_memOp<31, 727, (outs), (ins f8rc:$frS, memrr:$dst), |
| "stfdx $frS, $dst", IIC_LdStSTFD, |
| [(store f64:$frS, xaddr:$dst)]>; |
| } |
| } |
| |
| // Indexed (r+r) Stores with Update (preinc). |
| let PPC970_Unit = 2, mayStore = 1, mayLoad = 0 in { |
| def STBUX : XForm_8_memOp<31, 247, (outs ptr_rc_nor0:$ea_res), |
| (ins gprc:$rS, memrr:$dst), |
| "stbux $rS, $dst", IIC_LdStStoreUpd, []>, |
| RegConstraint<"$dst.ptrreg = $ea_res">, |
| NoEncode<"$ea_res">, |
| PPC970_DGroup_Cracked; |
| def STHUX : XForm_8_memOp<31, 439, (outs ptr_rc_nor0:$ea_res), |
| (ins gprc:$rS, memrr:$dst), |
| "sthux $rS, $dst", IIC_LdStStoreUpd, []>, |
| RegConstraint<"$dst.ptrreg = $ea_res">, |
| NoEncode<"$ea_res">, |
| PPC970_DGroup_Cracked; |
| def STWUX : XForm_8_memOp<31, 183, (outs ptr_rc_nor0:$ea_res), |
| (ins gprc:$rS, memrr:$dst), |
| "stwux $rS, $dst", IIC_LdStStoreUpd, []>, |
| RegConstraint<"$dst.ptrreg = $ea_res">, |
| NoEncode<"$ea_res">, |
| PPC970_DGroup_Cracked; |
| let Predicates = [HasFPU] in { |
| def STFSUX: XForm_8_memOp<31, 695, (outs ptr_rc_nor0:$ea_res), |
| (ins f4rc:$rS, memrr:$dst), |
| "stfsux $rS, $dst", IIC_LdStSTFDU, []>, |
| RegConstraint<"$dst.ptrreg = $ea_res">, |
| NoEncode<"$ea_res">, |
| PPC970_DGroup_Cracked; |
| def STFDUX: XForm_8_memOp<31, 759, (outs ptr_rc_nor0:$ea_res), |
| (ins f8rc:$rS, memrr:$dst), |
| "stfdux $rS, $dst", IIC_LdStSTFDU, []>, |
| RegConstraint<"$dst.ptrreg = $ea_res">, |
| NoEncode<"$ea_res">, |
| PPC970_DGroup_Cracked; |
| } |
| } |
| |
| // Patterns to match the pre-inc stores. We can't put the patterns on |
| // the instruction definitions directly as ISel wants the address base |
| // and offset to be separate operands, not a single complex operand. |
| def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff), |
| (STBUX $rS, $ptrreg, $ptroff)>; |
| def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff), |
| (STHUX $rS, $ptrreg, $ptroff)>; |
| def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iPTR:$ptroff), |
| (STWUX $rS, $ptrreg, $ptroff)>; |
| let Predicates = [HasFPU] in { |
| def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iPTR:$ptroff), |
| (STFSUX $rS, $ptrreg, $ptroff)>; |
| def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iPTR:$ptroff), |
| (STFDUX $rS, $ptrreg, $ptroff)>; |
| } |
| |
| // Store Multiple |
| def STMW : DForm_1<47, (outs), (ins gprc:$rS, memri:$dst), |
| "stmw $rS, $dst", IIC_LdStLMW, []>; |
| |
| def SYNC : XForm_24_sync<31, 598, (outs), (ins i32imm:$L), |
| "sync $L", IIC_LdStSync, []>; |
| |
| let isCodeGenOnly = 1 in { |
| def MSYNC : XForm_24_sync<31, 598, (outs), (ins), |
| "msync", IIC_LdStSync, []> { |
| let L = 0; |
| } |
| } |
| |
| def : Pat<(int_ppc_sync), (SYNC 0)>, Requires<[HasSYNC]>; |
| def : Pat<(int_ppc_lwsync), (SYNC 1)>, Requires<[HasSYNC]>; |
| def : Pat<(int_ppc_sync), (MSYNC)>, Requires<[HasOnlyMSYNC]>; |
| def : Pat<(int_ppc_lwsync), (MSYNC)>, Requires<[HasOnlyMSYNC]>; |
| |
| //===----------------------------------------------------------------------===// |
| // PPC32 Arithmetic Instructions. |
| // |
| |
| let PPC970_Unit = 1 in { // FXU Operations. |
| def ADDI : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, s16imm:$imm), |
| "addi $rD, $rA, $imm", IIC_IntSimple, |
| [(set i32:$rD, (add i32:$rA, imm32SExt16:$imm))]>; |
| let BaseName = "addic" in { |
| let Defs = [CARRY] in |
| def ADDIC : DForm_2<12, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm), |
| "addic $rD, $rA, $imm", IIC_IntGeneral, |
| [(set i32:$rD, (addc i32:$rA, imm32SExt16:$imm))]>, |
| RecFormRel, PPC970_DGroup_Cracked; |
| let Defs = [CARRY, CR0] in |
| def ADDICo : DForm_2<13, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm), |
| "addic. $rD, $rA, $imm", IIC_IntGeneral, |
| []>, isDOT, RecFormRel; |
| } |
| def ADDIS : DForm_2<15, (outs gprc:$rD), (ins gprc_nor0:$rA, s17imm:$imm), |
| "addis $rD, $rA, $imm", IIC_IntSimple, |
| [(set i32:$rD, (add i32:$rA, imm16ShiftedSExt:$imm))]>; |
| let isCodeGenOnly = 1 in |
| def LA : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, s16imm:$sym), |
| "la $rD, $sym($rA)", IIC_IntGeneral, |
| [(set i32:$rD, (add i32:$rA, |
| (PPClo tglobaladdr:$sym, 0)))]>; |
| def MULLI : DForm_2< 7, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm), |
| "mulli $rD, $rA, $imm", IIC_IntMulLI, |
| [(set i32:$rD, (mul i32:$rA, imm32SExt16:$imm))]>; |
| let Defs = [CARRY] in |
| def SUBFIC : DForm_2< 8, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm), |
| "subfic $rD, $rA, $imm", IIC_IntGeneral, |
| [(set i32:$rD, (subc imm32SExt16:$imm, i32:$rA))]>; |
| |
| let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in { |
| def LI : DForm_2_r0<14, (outs gprc:$rD), (ins s16imm:$imm), |
| "li $rD, $imm", IIC_IntSimple, |
| [(set i32:$rD, imm32SExt16:$imm)]>; |
| def LIS : DForm_2_r0<15, (outs gprc:$rD), (ins s17imm:$imm), |
| "lis $rD, $imm", IIC_IntSimple, |
| [(set i32:$rD, imm16ShiftedSExt:$imm)]>; |
| } |
| } |
| |
| let PPC970_Unit = 1 in { // FXU Operations. |
| let Defs = [CR0] in { |
| def ANDIo : DForm_4<28, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2), |
| "andi. $dst, $src1, $src2", IIC_IntGeneral, |
| [(set i32:$dst, (and i32:$src1, immZExt16:$src2))]>, |
| isDOT; |
| def ANDISo : DForm_4<29, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2), |
| "andis. $dst, $src1, $src2", IIC_IntGeneral, |
| [(set i32:$dst, (and i32:$src1, imm16ShiftedZExt:$src2))]>, |
| isDOT; |
| } |
| def ORI : DForm_4<24, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2), |
| "ori $dst, $src1, $src2", IIC_IntSimple, |
| [(set i32:$dst, (or i32:$src1, immZExt16:$src2))]>; |
| def ORIS : DForm_4<25, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2), |
| "oris $dst, $src1, $src2", IIC_IntSimple, |
| [(set i32:$dst, (or i32:$src1, imm16ShiftedZExt:$src2))]>; |
| def XORI : DForm_4<26, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2), |
| "xori $dst, $src1, $src2", IIC_IntSimple, |
| [(set i32:$dst, (xor i32:$src1, immZExt16:$src2))]>; |
| def XORIS : DForm_4<27, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2), |
| "xoris $dst, $src1, $src2", IIC_IntSimple, |
| [(set i32:$dst, (xor i32:$src1, imm16ShiftedZExt:$src2))]>; |
| |
| def NOP : DForm_4_zero<24, (outs), (ins), "nop", IIC_IntSimple, |
| []>; |
| let isCodeGenOnly = 1 in { |
| // The POWER6 and POWER7 have special group-terminating nops. |
| def NOP_GT_PWR6 : DForm_4_fixedreg_zero<24, 1, (outs), (ins), |
| "ori 1, 1, 0", IIC_IntSimple, []>; |
| def NOP_GT_PWR7 : DForm_4_fixedreg_zero<24, 2, (outs), (ins), |
| "ori 2, 2, 0", IIC_IntSimple, []>; |
| } |
|