Searched refs:ASize (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp469 // ASize < MidSize and MidSize > ResultSize, but don't know the relation
470 // between ASize and ResultSize.
471 unsigned ASize = A->getType()->getPrimitiveSizeInBits(); local
475 if (Cst->getZExtValue() >= ASize)
479 // amount is smaller than ASize, it is always safe to do the shift in A's
H A DInstCombineCompares.cpp2610 unsigned ASize =cast<IntegerType>(A->getType())->getPrimitiveSizeInBits(); local
2612 if (ShAmt < ASize) {
2614 APInt::getLowBitsSet(ASize, Op0->getType()->getPrimitiveSizeInBits());
2617 APInt CmpV = Cst1->getValue().zext(ASize);

Completed in 815 milliseconds