Searched refs:LHSTy (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/ |
D | AVRISelLowering.h | 76 MVT getScalarShiftAmountTy(const DataLayout &, EVT LHSTy) const override { in getScalarShiftAmountTy() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | TargetLoweringBase.cpp | 775 EVT TargetLoweringBase::getShiftAmountTy(EVT LHSTy, const DataLayout &DL, in getShiftAmountTy() argument 777 assert(LHSTy.isInteger() && "Shift amount is not an integer type!"); in getShiftAmountTy() 778 if (LHSTy.isVector()) in getShiftAmountTy() 779 return LHSTy; in getShiftAmountTy() 780 return LegalTypes ? getScalarShiftAmountTy(DL, LHSTy) in getShiftAmountTy()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | SROA.cpp | 1937 auto RankVectorTypes = [&DL](VectorType *RHSTy, VectorType *LHSTy) { in isVectorPromotionViable() argument 1939 assert(DL.getTypeSizeInBits(RHSTy) == DL.getTypeSizeInBits(LHSTy) && in isVectorPromotionViable() 1943 assert(LHSTy->getElementType()->isIntegerTy() && in isVectorPromotionViable() 1945 return RHSTy->getNumElements() < LHSTy->getNumElements(); in isVectorPromotionViable()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 1194 SDValue getShiftAmountOperand(EVT LHSTy, SDValue Op);
|
D | TargetLowering.h | 277 EVT getShiftAmountTy(EVT LHSTy, const DataLayout &DL,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1926 SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) { in getShiftAmountOperand() argument 1928 EVT ShTy = TLI->getShiftAmountTy(LHSTy, getDataLayout()); in getShiftAmountOperand()
|
D | DAGCombiner.cpp | 700 EVT getShiftAmountTy(EVT LHSTy) { in getShiftAmountTy() argument 701 assert(LHSTy.isInteger() && "Shift amount is not an integer type!"); in getShiftAmountTy() 702 return TLI.getShiftAmountTy(LHSTy, DAG.getDataLayout(), LegalTypes); in getShiftAmountTy()
|