Home
last modified time | relevance | path

Searched refs:FSHL (Results 1 – 25 of 32) sorted by relevance

12

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DISDOpcodes.h471 SHL, SRA, SRL, ROTL, ROTR, FSHL, FSHR, enumerator
/external/llvm-project/llvm/include/llvm/CodeGen/
DISDOpcodes.h611 FSHL, enumerator
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86TargetTransformInfo.cpp2329 { ISD::FSHL, MVT::i64, 4 } in getIntrinsicInstrCost()
2338 { ISD::FSHL, MVT::i32, 4 }, in getIntrinsicInstrCost()
2339 { ISD::FSHL, MVT::i16, 4 }, in getIntrinsicInstrCost()
2340 { ISD::FSHL, MVT::i8, 4 } in getIntrinsicInstrCost()
2348 ISD = ISD::FSHL; in getIntrinsicInstrCost()
2354 ISD = ISD::FSHL; in getIntrinsicInstrCost()
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp384 case ISD::FSHL: in LegalizeOp()
794 case ISD::FSHL: in Expand()
DSelectionDAGDumper.cpp250 case ISD::FSHL: return "fshl"; in getOperationName()
DLegalizeVectorTypes.cpp154 case ISD::FSHL: in ScalarizeVectorResult()
1007 case ISD::FSHL: in SplitVectorResult()
3009 case ISD::FSHL: in WidenVectorResult()
DTargetLowering.cpp1673 case ISD::FSHL: in SimplifyDemandedBits()
1678 bool IsFSHL = (Op.getOpcode() == ISD::FSHL); in SimplifyDemandedBits()
6242 bool IsFSHL = Node->getOpcode() == ISD::FSHL; in expandFunnelShift()
6248 unsigned RevOpcode = IsFSHL ? ISD::FSHR : ISD::FSHL; in expandFunnelShift()
DDAGCombiner.cpp1664 case ISD::FSHL: in visit()
6696 if (PosOpcode == ISD::FSHL && isPowerOf2_32(EltBits)) { in MatchFunnelPosNeg()
6709 TLI.isOperationLegalOrCustom(ISD::FSHL, VT)) { in MatchFunnelPosNeg()
6710 return DAG.getNode(ISD::FSHL, DL, VT, N0, N1.getOperand(0), Pos); in MatchFunnelPosNeg()
6749 bool HasFSHL = hasOperation(ISD::FSHL, VT); in MatchRotate()
6836 Res = DAG.getNode(HasFSHL ? ISD::FSHL : ISD::FSHR, DL, VT, LHSShiftArg, in MatchRotate()
6897 LExtOp0, RExtOp0, ISD::FSHL, ISD::FSHR, DL); in MatchRotate()
6903 RExtOp0, LExtOp0, ISD::FSHR, ISD::FSHL, DL); in MatchRotate()
8773 bool IsFSHL = N->getOpcode() == ISD::FSHL; in visitFunnelShift()
DLegalizeDAG.cpp1218 case ISD::FSHL: in LegalizeOp()
3533 case ISD::FSHL: in ExpandNode()
DLegalizeIntegerTypes.cpp220 case ISD::FSHL: in PromoteIntegerResult()
2171 case ISD::FSHL: in ExpandIntegerResult()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGDumper.cpp246 case ISD::FSHL: return "fshl"; in getOperationName()
DLegalizeVectorOps.cpp388 case ISD::FSHL: in LegalizeOp()
913 case ISD::FSHL: in Expand()
DTargetLowering.cpp1539 case ISD::FSHL: in SimplifyDemandedBits()
1544 bool IsFSHL = (Op.getOpcode() == ISD::FSHL); in SimplifyDemandedBits()
5949 bool IsFSHL = Node->getOpcode() == ISD::FSHL; in expandFunnelShift()
DLegalizeDAG.cpp1198 case ISD::FSHL: in LegalizeOp()
3400 case ISD::FSHL: in ExpandNode()
DSelectionDAG.cpp2921 case ISD::FSHL: in computeKnownBits()
2929 Known = computeKnownBits(Op.getOperand(Opcode == ISD::FSHL ? 0 : 1), in computeKnownBits()
2938 if (Opcode == ISD::FSHL) { in computeKnownBits()
/external/llvm-project/llvm/lib/Target/X86/
DX86TargetTransformInfo.cpp2950 { ISD::FSHL, MVT::i64, 4 } in getIntrinsicInstrCost()
2959 { ISD::FSHL, MVT::i32, 4 }, in getIntrinsicInstrCost()
2960 { ISD::FSHL, MVT::i16, 4 }, in getIntrinsicInstrCost()
2961 { ISD::FSHL, MVT::i8, 4 } in getIntrinsicInstrCost()
2972 ISD = ISD::FSHL; in getIntrinsicInstrCost()
2978 ISD = ISD::FSHL; in getIntrinsicInstrCost()
DX86ISelLowering.h38 FSHL, enumerator
/external/llvm-project/llvm/lib/Target/RISCV/
DRISCVISelLowering.cpp237 setOperationAction(ISD::FSHL, XLenVT, Legal); in RISCVTargetLowering()
241 setOperationAction(ISD::FSHL, MVT::i32, Custom); in RISCVTargetLowering()
1213 case ISD::FSHL: in ReplaceNodeResults()
1228 N->getOpcode() == ISD::FSHL ? RISCVISD::FSLW : RISCVISD::FSRW; in ReplaceNodeResults()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetLoweringBase.cpp651 setOperationAction(ISD::FSHL, VT, Expand); in initActions()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonISelLowering.cpp1422 setOperationAction(ISD::FSHL, MVT::i32, Legal); in HexagonTargetLowering()
1423 setOperationAction(ISD::FSHL, MVT::i64, Legal); in HexagonTargetLowering()
/external/llvm-project/llvm/lib/Target/Hexagon/
DHexagonISelLowering.cpp1555 setOperationAction(ISD::FSHL, MVT::i32, Legal); in HexagonTargetLowering()
1556 setOperationAction(ISD::FSHL, MVT::i64, Legal); in HexagonTargetLowering()
/external/llvm-project/llvm/lib/CodeGen/
DTargetLoweringBase.cpp761 setOperationAction(ISD::FSHL, VT, Expand); in initActions()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
DTargetSelectionDAG.td369 def fshl : SDNode<"ISD::FSHL" , SDTIntShiftDOp>;
/external/llvm-project/llvm/include/llvm/Target/
DTargetSelectionDAG.td372 def fshl : SDNode<"ISD::FSHL" , SDTIntShiftDOp>;
/external/llvm-project/llvm/lib/Target/PowerPC/
DPPCISelLowering.cpp685 setOperationAction(ISD::FSHL, MVT::i64, Custom); in PPCTargetLowering()
688 setOperationAction(ISD::FSHL, MVT::i32, Custom); in PPCTargetLowering()
9118 bool IsFSHL = Op.getOpcode() == ISD::FSHL; in LowerFunnelShift()
11057 case ISD::FSHL: return LowerFunnelShift(Op, DAG); in LowerOperation()
11153 case ISD::FSHL: in ReplaceNodeResults()

12