Searched defs:LHSWidth (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp93 unsigned LHSWidth = SVI->getOperand(0)->getType()->getVectorNumElements(); local
97 if (InEl < (int)LHSWidth)
99 return FindScalarElement(SVI->getOperand(1), InEl - LHSWidth);
265 unsigned LHSWidth = local
270 if (SrcIdx < (int)LHSWidth)
273 SrcIdx -= LHSWidth;
903 unsigned LHSWidth = cast<VectorType>(LHS->getType())->getNumElements(); local
910 Value *Result = (VWidth == LHSWidth)
917 for (unsigned i = 0, e = LHSWidth; i != VWidth; ++i) {
940 if (VWidth == LHSWidth) {
[all...]
H A DInstCombineCasts.cpp1198 unsigned LHSWidth = LHSOrig->getType()->getFPMantissaWidth(); local
1200 unsigned SrcWidth = std::max(LHSWidth, RHSWidth);
1237 // LHSWidth + RHSWidth significant bits; if OpWidth is sufficient
1241 if (OpWidth >= LHSWidth + RHSWidth && DstWidth >= SrcWidth) {
1277 if (LHSWidth < SrcWidth)

Completed in 111 milliseconds