Home
last modified time | relevance | path

Searched refs:ShOp (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h112 inline unsigned getSORegOpc(ShiftOpc ShOp, unsigned Imm) { in getSORegOpc() argument
113 return ShOp | (Imm << 3); in getSORegOpc()
H A DARMMCCodeEmitter.cpp1258 ARM_AM::ShiftOpc ShOp = ARM_AM::getAM2ShiftOpc(MO2.getImm()); in getLdStSORegOpValue() local
1259 unsigned SBits = getShiftOp(ShOp); in getLdStSORegOpValue()
1296 ARM_AM::ShiftOpc ShOp = ARM_AM::getAM2ShiftOpc(Imm); in getAddrMode2OffsetOpValue() local
1298 Binary |= getShiftOp(ShOp) << 5; // Shift type is bits [6:5] in getAddrMode2OffsetOpValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMInstrNEON.td2611 ValueType Ty, SDNode ShOp>
2616 (Ty (ShOp (Ty DPR:$Vn),
2623 string OpcodeStr, string Dt, ValueType Ty, SDNode ShOp>
2628 (Ty (ShOp (Ty DPR:$Vn),
2659 ValueType ResTy, ValueType OpTy, SDNode ShOp>
2664 (ResTy (ShOp (ResTy QPR:$Vn),
2672 ValueType ResTy, ValueType OpTy, SDNode ShOp>
2677 (ResTy (ShOp (ResTy QPR:$Vn),
2819 ValueType Ty, SDPatternOperator MulOp, SDPatternOperator ShOp>
2826 (Ty (ShOp (Ty DPR:$src1),
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp2058 CreateShiftExtend(AArch64_AM::ShiftExtendType ShOp, unsigned Val, in CreateShiftExtend() argument
2061 Op->ShiftExtend.Type = ShOp; in CreateShiftExtend()
2819 AArch64_AM::ShiftExtendType ShOp = in tryParseOptionalShiftExtend() local
2836 if (ShOp == AArch64_AM::InvalidShiftExtend) in tryParseOptionalShiftExtend()
2845 if (ShOp == AArch64_AM::LSL || ShOp == AArch64_AM::LSR || in tryParseOptionalShiftExtend()
2846 ShOp == AArch64_AM::ASR || ShOp == AArch64_AM::ROR || in tryParseOptionalShiftExtend()
2847 ShOp == AArch64_AM::MSL) { in tryParseOptionalShiftExtend()
2856 AArch64Operand::CreateShiftExtend(ShOp, 0, false, S, E, getContext())); in tryParseOptionalShiftExtend()
2882 ShOp, MCE->getValue(), true, S, E, getContext())); in tryParseOptionalShiftExtend()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp1959 ARM_AM::ShiftOpc ShOp = ARM_AM::lsl; in DecodeSORegMemOperand() local
1962 ShOp = ARM_AM::lsl; in DecodeSORegMemOperand()
1965 ShOp = ARM_AM::lsr; in DecodeSORegMemOperand()
1968 ShOp = ARM_AM::asr; in DecodeSORegMemOperand()
1971 ShOp = ARM_AM::ror; in DecodeSORegMemOperand()
1975 if (ShOp == ARM_AM::ror && imm == 0) in DecodeSORegMemOperand()
1976 ShOp = ARM_AM::rrx; in DecodeSORegMemOperand()
1984 shift = ARM_AM::getAM2Opc(ARM_AM::add, imm, ShOp); in DecodeSORegMemOperand()
1986 shift = ARM_AM::getAM2Opc(ARM_AM::sub, imm, ShOp); in DecodeSORegMemOperand()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1551 Value *ShOp; in foldICmpTruncConstant() local
1555 match(X, m_Shr(m_Value(ShOp), m_APInt(ShAmtC))) && in foldICmpTruncConstant()
1558 ? new ICmpInst(ICmpInst::ICMP_SLT, ShOp, in foldICmpTruncConstant()
1560 : new ICmpInst(ICmpInst::ICMP_SGT, ShOp, in foldICmpTruncConstant()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp4917 SDValue ShOp = N0.getOperand(1); in hoistLogicOpWithSameOpcodeHands() local
4918 if (LogicOpcode == ISD::XOR && !ShOp.isUndef()) in hoistLogicOpWithSameOpcodeHands()
4919 ShOp = tryFoldToZero(DL, TLI, VT, DAG, LegalOperations); in hoistLogicOpWithSameOpcodeHands()
4922 if (N0.getOperand(1) == N1.getOperand(1) && ShOp.getNode()) { in hoistLogicOpWithSameOpcodeHands()
4925 return DAG.getVectorShuffle(VT, DL, Logic, ShOp, SVN0->getMask()); in hoistLogicOpWithSameOpcodeHands()
4930 ShOp = N0.getOperand(0); in hoistLogicOpWithSameOpcodeHands()
4931 if (LogicOpcode == ISD::XOR && !ShOp.isUndef()) in hoistLogicOpWithSameOpcodeHands()
4932 ShOp = tryFoldToZero(DL, TLI, VT, DAG, LegalOperations); in hoistLogicOpWithSameOpcodeHands()
4935 if (N0.getOperand(0) == N1.getOperand(0) && ShOp.getNode()) { in hoistLogicOpWithSameOpcodeHands()
4938 return DAG.getVectorShuffle(VT, DL, ShOp, Logic, SVN0->getMask()); in hoistLogicOpWithSameOpcodeHands()
H A DLegalizeVectorTypes.cpp3738 SDValue ShOp = N->getOperand(1); in WidenVecRes_POWI() local
3739 return DAG.getNode(N->getOpcode(), SDLoc(N), WidenVT, InOp, ShOp); in WidenVecRes_POWI()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonPatterns.td1277 class OpshIRI_pat<InstHexagon MI, PatFrag Op, PatFrag ShOp,
1279 : Pat<(Op anyimm:$u8, (ShOp RegPred:$Rs, ImmPred:$U5)),