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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp397 unsigned VWidth = cast<VectorType>(VecOp->getType())->getNumElements(); local
398 APInt UndefElts(VWidth, 0);
399 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
421 unsigned VWidth = cast<VectorType>(SVI.getType())->getNumElements(); local
423 APInt UndefElts(VWidth, 0);
424 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
440 Value* result = (VWidth == LHSWidth)
447 for (unsigned i = 0, e = LHSWidth; i != VWidth; ++i) {
471 if (VWidth == LHSWidth) {
596 for (unsigned i = 0; i < VWidth;
[all...]
H A DInstCombineMulDivRem.cpp702 unsigned VWidth = C->getType()->getVectorNumElements(); local
706 for (unsigned i = 0; i != VWidth; ++i) {
719 SmallVector<Constant *, 16> Elts(VWidth);
720 for (unsigned i = 0; i != VWidth; ++i) {
H A DInstCombineSelect.cpp907 unsigned VWidth = VecTy->getNumElements(); local
908 APInt UndefElts(VWidth, 0);
909 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
H A DInstCombineSimplifyDemanded.cpp815 unsigned VWidth = cast<VectorType>(V->getType())->getNumElements(); local
816 APInt EltMask(APInt::getAllOnesValue(VWidth));
843 for (unsigned i = 0; i != VWidth; ++i) {
889 APInt UndefElts2(VWidth, 0);
910 if (IdxNo >= VWidth || !DemandedElts[IdxNo]) {
932 for (unsigned i = 0; i < VWidth; i++) {
957 for (unsigned i = 0; i < VWidth; i++) {
980 for (unsigned i = 0; i < VWidth; ++i) {
995 for (unsigned i = 0; i < VWidth; i++) {
1023 if (VWidth
[all...]
H A DInstCombineCalls.cpp514 unsigned VWidth = local
516 APInt DemandedElts(VWidth, 1);
517 APInt UndefElts(VWidth, 0);
534 unsigned VWidth = local
536 unsigned LowHalfElts = VWidth / 2;
537 APInt InputDemandedElts(APInt::getBitsSet(VWidth, 0, LowHalfElts));
538 APInt UndefElts(VWidth, 0);

Completed in 384 milliseconds