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

/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp195 unsigned DestWidth = DestType.getSizeInBits(); local
203 if (A64Imms::isMOVZImm(DestWidth, BitPat, UImm16, Shift)) {
205 MOVOpcode = DestWidth == 64 ? AArch64::MOVZxii : AArch64::MOVZwii;
206 } else if (A64Imms::isMOVNImm(DestWidth, BitPat, UImm16, Shift)) {
208 MOVOpcode = DestWidth == 64 ? AArch64::MOVNxii : AArch64::MOVNwii;
209 } else if (DestWidth == 64 && A64Imms::isMOVNImm(32, BitPat, UImm16, Shift)) {
214 } else if (A64Imms::isLogicalImm(DestWidth, BitPat, LogicalBits)) {
215 MOVOpcode = DestWidth == 64 ? AArch64::ORRxxi : AArch64::ORRwwi;
216 uint16_t ZR = DestWidth == 64 ? AArch64::XZR : AArch64::WZR;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1636 unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); local
1638 if (VecTy->getPrimitiveSizeInBits() % DestWidth == 0) {
1643 VecTy->getPrimitiveSizeInBits() / DestWidth);
1649 Elt = VecTy->getPrimitiveSizeInBits() / DestWidth - 1;
1660 unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); local
1661 if (VecTy->getPrimitiveSizeInBits() % DestWidth == 0 &&
1662 ShAmt->getZExtValue() % DestWidth == 0) {
1667 VecTy->getPrimitiveSizeInBits() / DestWidth);
1671 unsigned Elt = ShAmt->getZExtValue() / DestWidth;
1673 Elt = VecTy->getPrimitiveSizeInBits() / DestWidth
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp960 unsigned DestWidth = TD.getTypeSizeInBits(AllocaType); local
977 SrcWidth = DestWidth;
997 APInt Mask(APInt::getLowBitsSet(DestWidth, SrcWidth));
998 if (ShAmt > 0 && (unsigned)ShAmt < DestWidth) {
1001 } else if (ShAmt < 0 && (unsigned)-ShAmt < DestWidth) {
1008 if (SrcWidth != DestWidth) {
1009 assert(DestWidth > SrcWidth);
/external/clang/lib/AST/
H A DExprConstant.cpp1342 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); local
1346 Result = APSInt(DestWidth, !DestSigned);
1369 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); local
1373 Result = Result.extOrTrunc(DestWidth);
8344 unsigned DestWidth = Ctx.getIntWidth(E->getType());
8346 APSInt IgnoredVal(DestWidth, !DestSigned);
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp3528 unsigned DestWidth = 0; local
3534 case 'Q': DestWidth = 8; break;
3535 case 'H': DestWidth = 16; break;
3536 case 'S': DestWidth = 32; break;
3537 case 'D': DestWidth = 64; break;
3538 case 'X': DestWidth = 96; break;
3539 case 'T': DestWidth = 128; break;
3547 DestWidth = 0;
3554 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
3556 DestWidth
[all...]

Completed in 159 milliseconds