Home
last modified time | relevance | path

Searched refs:IsLeft (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.cpp401 const bool IsLeft = II->getIntrinsicID() == Intrinsic::nvvm_fshl_clamp; in convertNvvmIntrinsicToLlvm() local
403 return IC.replaceInstUsesWith(*II, II->getArgOperand(IsLeft ? 1 : 0)); in convertNvvmIntrinsicToLlvm()
405 const unsigned FshIID = IsLeft ? Intrinsic::fshl : Intrinsic::fshr; in convertNvvmIntrinsicToLlvm()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp2125 bool IsLeft = Opc == ISD::FSHL; in LowerHvxFunnelShift() local
2147 DAG.getNode(HexagonISD::VASL, dl, InpTy, {A, IsLeft ? ModS : NegS}); in LowerHvxFunnelShift()
2149 DAG.getNode(HexagonISD::VLSR, dl, InpTy, {B, IsLeft ? NegS : ModS}); in LowerHvxFunnelShift()
2153 return DAG.getNode(ISD::SELECT, dl, InpTy, {IsZero, (IsLeft ? A : B), Or}); in LowerHvxFunnelShift()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp7493 bool IsLeft = MI.getOpcode() == TargetOpcode::G_ROTL; in lowerRotateWithReverseRotate() local
7494 unsigned RevRot = IsLeft ? TargetOpcode::G_ROTR : TargetOpcode::G_ROTL; in lowerRotateWithReverseRotate()
7505 bool IsLeft = MI.getOpcode() == TargetOpcode::G_ROTL; in lowerRotate() local
7510 unsigned RevRot = IsLeft ? TargetOpcode::G_ROTR : TargetOpcode::G_ROTL; in lowerRotate()
7516 unsigned FShOpc = IsLeft ? TargetOpcode::G_FSHL : TargetOpcode::G_FSHR; in lowerRotate()
7517 unsigned RevFsh = !IsLeft ? TargetOpcode::G_FSHL : TargetOpcode::G_FSHR; in lowerRotate()
7537 unsigned ShOpc = IsLeft ? TargetOpcode::G_SHL : TargetOpcode::G_LSHR; in lowerRotate()
7538 unsigned RevShiftOpc = IsLeft ? TargetOpcode::G_LSHR : TargetOpcode::G_SHL; in lowerRotate()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp8284 bool IsLeft = Node->getOpcode() == ISD::ROTL; in expandROT() local
8293 unsigned RevRot = IsLeft ? ISD::ROTR : ISD::ROTL; in expandROT()
8308 unsigned ShOpc = IsLeft ? ISD::SHL : ISD::SRL; in expandROT()
8309 unsigned HsOpc = IsLeft ? ISD::SRL : ISD::SHL; in expandROT()