Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp6804 bool IsLeft = MI.getOpcode() == TargetOpcode::G_ROTL; in lowerFPTRUNC_F64_TO_F16()
6805 unsigned RevRot = IsLeft ? TargetOpcode::G_ROTR : TargetOpcode::G_ROTL; in lowerFPTRUNC_F64_TO_F16()
6816 bool IsLeft = MI.getOpcode() == TargetOpcode::G_ROTL; in lowerFPTRUNC_F64_TO_F16()
6821 unsigned RevRot = IsLeft ? TargetOpcode::G_ROTR : TargetOpcode::G_ROTL; in lowerFPTRUNC_F64_TO_F16()
6827 unsigned FShOpc = IsLeft ? TargetOpcode::G_FSHL : TargetOpcode::G_FSHR; in lowerFPTRUNC_F64_TO_F16()
6828 unsigned RevFsh = !IsLeft ? TargetOpcode::G_FSHL : TargetOpcode::G_FSHR; in lowerFPTRUNC_F64_TO_F16()
6848 unsigned ShOpc = IsLeft ? TargetOpcode::G_SHL : TargetOpcode::G_LSHR; in lowerFPTRUNC_F64_TO_F16()
6849 unsigned RevShiftOpc = IsLeft ? TargetOpcode::G_LSHR : TargetOpcode::G_SHL; in lowerFPTRUNC_F64_TO_F16()
6438 bool IsLeft = MI.getOpcode() == TargetOpcode::G_ROTL; lowerRotateWithReverseRotate() local
6450 bool IsLeft = MI.getOpcode() == TargetOpcode::G_ROTL; lowerRotate() local
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp2088 bool IsLeft = Opc == ISD::FSHL; in LowerHvxFunnelShift() local
2110 DAG.getNode(HexagonISD::VASL, dl, InpTy, {A, IsLeft ? ModS : NegS}); in LowerHvxFunnelShift()
2112 DAG.getNode(HexagonISD::VLSR, dl, InpTy, {B, IsLeft ? NegS : ModS}); in LowerHvxFunnelShift()
2116 return DAG.getNode(ISD::SELECT, dl, InpTy, {IsZero, (IsLeft ? A : B), Or}); in LowerHvxFunnelShift()
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp8066 bool IsLeft = Node->getOpcode() == ISD::ROTL; in expandFP_TO_SINT()
8075 unsigned RevRot = IsLeft ? ISD::ROTR : ISD::ROTL; in expandFP_TO_SINT()
8090 unsigned ShOpc = IsLeft ? ISD::SHL : ISD::SRL; in expandFP_TO_SINT()
8091 unsigned HsOpc = IsLeft ? ISD::SRL : ISD::SHL; in expandFP_TO_SINT()
7926 bool IsLeft = Node->getOpcode() == ISD::ROTL; expandROT() local