/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | IntrinsicLowering.cpp | 194 Value *ShVal = ConstantInt::get(V->getType(), i); in LowerCTLZ() local 195 ShVal = Builder.CreateLShr(V, ShVal, "ctlz.sh"); in LowerCTLZ() 196 V = Builder.CreateOr(V, ShVal, "ctlz.step"); in LowerCTLZ()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | VNCoercion.cpp | 484 T *ShVal = Helper.CreateShl( in getMemInstValueForLoadHelper() local 486 Val = Helper.CreateOr(Val, ShVal); in getMemInstValueForLoadHelper() 492 T *ShVal = Helper.CreateShl(Val, ConstantInt::get(Val->getType(), 1 * 8)); in getMemInstValueForLoadHelper() local 493 Val = Helper.CreateOr(OneElt, ShVal); in getMemInstValueForLoadHelper()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonLoopIdiomRecognition.cpp | 1424 Value *ShAmt = CIV, *ShVal = Op; in convertShiftsToLeft() local 1425 auto *VTy = cast<IntegerType>(ShVal->getType()); in convertShiftsToLeft() 1428 ShVal = IRB.CreateShl(Op, ConstantInt::get(VTy, 1)); in convertShiftsToLeft() 1433 ShVal = upcast(CastMap, IRB, ShVal, ATy); in convertShiftsToLeft() 1438 W = IRB.CreateShl(ShVal, ShAmt); in convertShiftsToLeft()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 514 Value *ShVal, *ShAmt0, *ShAmt1; in narrowRotate() local 515 if (!match(Or0, m_OneUse(m_LogicalShift(m_Value(ShVal), m_Value(ShAmt0)))) || in narrowRotate() 516 !match(Or1, m_OneUse(m_LogicalShift(m_Specific(ShVal), m_Value(ShAmt1))))) in narrowRotate() 561 if (!MaskedValueIsZero(ShVal, HiBitMask, 0, &Trunc)) in narrowRotate() 569 Value *X = Builder.CreateTrunc(ShVal, DestTy); in narrowRotate()
|
D | InstCombineAndOrXor.cpp | 2042 Value *ShVal, *ShAmt0, *ShAmt1; in matchRotate() local 2043 if (!match(Or0, m_OneUse(m_LogicalShift(m_Value(ShVal), m_Value(ShAmt0)))) || in matchRotate() 2044 !match(Or1, m_OneUse(m_LogicalShift(m_Specific(ShVal), m_Value(ShAmt1))))) in matchRotate() 2086 return IntrinsicInst::Create(F, { ShVal, ShVal, ShAmt }); in matchRotate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelDAGToDAG.cpp | 1988 SDValue ShVal = N.getOperand(0); in matchAddressRecursively() local 1993 if (CurDAG->isBaseWithConstantOffset(ShVal)) { in matchAddressRecursively() 1994 AM.IndexReg = ShVal.getOperand(0); in matchAddressRecursively() 1995 ConstantSDNode *AddVal = cast<ConstantSDNode>(ShVal.getOperand(1)); in matchAddressRecursively() 2001 AM.IndexReg = ShVal; in matchAddressRecursively()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64ISelDAGToDAG.cpp | 353 unsigned ShVal = AArch64_AM::getShifterImm(AArch64_AM::LSL, ShiftAmt); in SelectArithImmed() local 356 Shift = CurDAG->getTargetConstant(ShVal, dl, MVT::i32); in SelectArithImmed() 474 unsigned ShVal = AArch64_AM::getShifterImm(ShType, Val); in SelectShiftedRegister() local 477 Shift = CurDAG->getTargetConstant(ShVal, SDLoc(N), MVT::i32); in SelectShiftedRegister()
|
D | AArch64InstructionSelector.cpp | 4210 unsigned ShVal = AArch64_AM::getShifterImm(AArch64_AM::LSL, ShiftAmt); in select12BitValueWithLeftShift() local 4213 [=](MachineInstrBuilder &MIB) { MIB.addImm(ShVal); }, in select12BitValueWithLeftShift()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 1817 uint64_t ShVal = ShAmtC->getZExtValue(); in SimplifyDemandedBits() local 1821 HighBits.lshrInPlace(ShVal); in SimplifyDemandedBits() 1828 ShAmt = TLO.DAG.getConstant(ShVal, dl, getShiftAmountTy(VT, DL)); in SimplifyDemandedBits() 1914 unsigned ShVal = Op.getValueSizeInBits() - 1; in SimplifyDemandedBits() local 1915 SDValue ShAmt = TLO.DAG.getConstant(ShVal, dl, VT); in SimplifyDemandedBits()
|