Searched defs:VWidth (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp983 unsigned VWidth = VecTy->getNumElements(); local
984 APInt UndefElts(VWidth, 0);
985 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
H A DInstCombineSimplifyDemanded.cpp915 unsigned VWidth = cast<VectorType>(V->getType())->getNumElements(); local
916 APInt EltMask(APInt::getAllOnesValue(VWidth));
943 for (unsigned i = 0; i != VWidth; ++i) {
989 APInt UndefElts2(VWidth, 0);
1010 if (IdxNo >= VWidth || !DemandedElts[IdxNo]) {
1032 for (unsigned i = 0; i < VWidth; i++) {
1057 for (unsigned i = 0; i < VWidth; i++) {
1080 for (unsigned i = 0; i < VWidth; ++i) {
1095 for (unsigned i = 0; i < VWidth; i++) {
1123 if (VWidth
[all...]
H A DInstCombineVectorOps.cpp485 unsigned VWidth = cast<VectorType>(VecOp->getType())->getNumElements(); local
486 APInt UndefElts(VWidth, 0);
487 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
757 unsigned VWidth = cast<VectorType>(SVI.getType())->getNumElements(); local
759 APInt UndefElts(VWidth, 0);
760 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
776 Value *Result = (VWidth == LHSWidth)
783 for (unsigned i = 0, e = LHSWidth; i != VWidth; ++i) {
807 if (VWidth == LHSWidth) {
937 for (unsigned i = 0; i < VWidth;
[all...]
H A DInstCombineCalls.cpp545 unsigned VWidth = local
547 APInt DemandedElts(VWidth, 1);
548 APInt UndefElts(VWidth, 0);
565 unsigned VWidth = local
567 unsigned LowHalfElts = VWidth / 2;
568 APInt InputDemandedElts(APInt::getBitsSet(VWidth, 0, LowHalfElts));
569 APInt UndefElts(VWidth, 0);
H A DInstCombineMulDivRem.cpp1209 unsigned VWidth = C->getType()->getVectorNumElements(); local
1213 for (unsigned i = 0; i != VWidth; ++i) {
1226 SmallVector<Constant *, 16> Elts(VWidth);
1227 for (unsigned i = 0; i != VWidth; ++i) {

Completed in 538 milliseconds