Home
last modified time | relevance | path

Searched refs:RightShift (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp611 Value *RightShift = Signed ? IC.Builder.CreateAShr(Shl, IntSize - Width) in instCombineIntrinsic() local
613 RightShift->takeName(&II); in instCombineIntrinsic()
614 return IC.replaceInstUsesWith(II, RightShift); in instCombineIntrinsic()
617 Value *RightShift = Signed ? IC.Builder.CreateAShr(Src, Offset) in instCombineIntrinsic() local
620 RightShift->takeName(&II); in instCombineIntrinsic()
621 return IC.replaceInstUsesWith(II, RightShift); in instCombineIntrinsic()
/llvm-project-15.0.7/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h122 RightShift, // ?5 # operator>> enumerator
/llvm-project-15.0.7/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp260 OUTPUT_ENUM_CLASS_VALUE(IntrinsicFunctionKind, RightShift, "operator>>"); in output()
H A DMicrosoftDemangle.cpp543 IFK::RightShift, // ?5 # operator>> in translateIntrinsicFunctionCode()
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp5031 bool RightShift = Opc == PPC::SRW || Opc == PPC::SRW_rec || Opc == PPC::SRD || in transformToImmFormFedByLI() local
5062 uint64_t SH = ShAmt == 0 ? 0 : RightShift ? 32 - ShAmt : ShAmt; in transformToImmFormFedByLI()
5063 uint64_t MB = RightShift ? ShAmt : 0; in transformToImmFormFedByLI()
5064 uint64_t ME = RightShift ? 31 : 31 - ShAmt; in transformToImmFormFedByLI()
5072 uint64_t SH = ShAmt == 0 ? 0 : RightShift ? 64 - ShAmt : ShAmt; in transformToImmFormFedByLI()
5073 uint64_t ME = RightShift ? ShAmt : 63 - ShAmt; in transformToImmFormFedByLI()
H A DPPCISelLowering.cpp15284 SDNode *RightShift = *UI; in PerformDAGCombine() local
15286 std::swap(Trunc, RightShift); in PerformDAGCombine()
15292 if (RightShift->getOpcode() != ISD::SRL || in PerformDAGCombine()
15293 !isa<ConstantSDNode>(RightShift->getOperand(1)) || in PerformDAGCombine()
15294 RightShift->getConstantOperandVal(1) != 32 || in PerformDAGCombine()
15295 !RightShift->hasOneUse()) in PerformDAGCombine()
15298 SDNode *Trunc2 = *RightShift->use_begin(); in PerformDAGCombine()