Searched refs:ShiftBits (Results 1 – 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCRegisterInfo.cpp | 716 unsigned ShiftBits = getEncodingValue(DestReg)*4; in lowerCRRestore() local 719 .addReg(Reg1, RegState::Kill).addImm(32-ShiftBits).addImm(0) in lowerCRRestore() 868 unsigned ShiftBits = getEncodingValue(DestReg); in lowerCRBitRestore() local 873 .addImm(ShiftBits ? 32 - ShiftBits : 0) in lowerCRBitRestore() 874 .addImm(ShiftBits) in lowerCRBitRestore() 875 .addImm(ShiftBits); in lowerCRBitRestore()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | BasicAliasAnalysis.cpp | 438 unsigned ShiftBits = Offset.getBitWidth() - PointerSize; in adjustToPointerSize() local 439 return (Offset << ShiftBits).ashr(ShiftBits); in adjustToPointerSize()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 3723 unsigned ShiftBits = AndRHSC.countTrailingZeros(); in SimplifySetCC() local 3724 if (!TLI.shouldAvoidTransformToShift(ShValTy, ShiftBits)) { in SimplifySetCC() 3727 DAG.getConstant(ShiftBits, dl, ShiftTy)); in SimplifySetCC() 3728 SDValue CmpRHS = DAG.getConstant(C1.lshr(ShiftBits), dl, ShValTy); in SimplifySetCC() 3740 unsigned ShiftBits; in SimplifySetCC() local 3744 ShiftBits = C1.countTrailingOnes(); in SimplifySetCC() 3748 ShiftBits = C1.countTrailingZeros(); in SimplifySetCC() 3750 NewC.lshrInPlace(ShiftBits); in SimplifySetCC() 3751 if (ShiftBits && NewC.getMinSignedBits() <= 64 && in SimplifySetCC() 3753 !TLI.shouldAvoidTransformToShift(ShValTy, ShiftBits)) { in SimplifySetCC() [all …]
|
D | DAGCombiner.cpp | 4724 unsigned ShiftBits = CShift->getZExtValue(); in visitANDLike() local 4727 if (ShiftBits == 0) in visitANDLike() 4736 (ShiftBits + MaskBits <= Size / 2) && in visitANDLike() 4756 SDValue ShiftK = DAG.getConstant(ShiftBits, SL, ShiftVT); in visitANDLike()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 4291 unsigned ShiftBits = countLeadingZeros(Mask); in getARMCmp() local 4292 if (RHSV && (RHSV > 255 || (RHSV << ShiftBits) <= 255)) { in getARMCmp() 4293 SDValue ShiftAmt = DAG.getConstant(ShiftBits, dl, MVT::i32); in getARMCmp() 4295 RHS = DAG.getConstant(RHSV << ShiftBits, dl, MVT::i32); in getARMCmp()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 5861 SDValue ShiftBits = DAG.getTargetConstant(SubVecNumElems, dl, MVT::i8); in insert1BitVector() local 5864 Vec = DAG.getNode(X86ISD::KSHIFTR, dl, WideOpVT, Vec, ShiftBits); in insert1BitVector() 5865 Vec = DAG.getNode(X86ISD::KSHIFTL, dl, WideOpVT, Vec, ShiftBits); in insert1BitVector() 5913 SDValue ShiftBits = DAG.getTargetConstant(NumElems - IdxVal, dl, MVT::i8); in insert1BitVector() local 5914 Vec = DAG.getNode(X86ISD::KSHIFTL, dl, WideOpVT, Vec, ShiftBits); in insert1BitVector() 5915 Vec = DAG.getNode(X86ISD::KSHIFTR, dl, WideOpVT, Vec, ShiftBits); in insert1BitVector()
|