Searched refs:SrcBits (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/VMCore/
H A DInstructions.cpp2397 unsigned SrcBits = C->getType()->getScalarSizeInBits(); local
2400 (SrcBits == DstBits ? Instruction::BitCast :
2401 (SrcBits > DstBits ? Instruction::Trunc :
2411 unsigned SrcBits = C->getType()->getScalarSizeInBits(); local
2414 (SrcBits == DstBits ? Instruction::BitCast :
2415 (SrcBits > DstBits ? Instruction::Trunc :
2425 unsigned SrcBits = C->getType()->getScalarSizeInBits(); local
2428 (SrcBits == DstBits ? Instruction::BitCast :
2429 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
2438 unsigned SrcBits local
2464 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr local
2537 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr local
[all...]
H A DConstants.cpp1417 unsigned SrcBits = C->getType()->getScalarSizeInBits(); local
1420 (SrcBits == DstBits ? Instruction::BitCast :
1421 (SrcBits > DstBits ? Instruction::Trunc :
1429 unsigned SrcBits = C->getType()->getScalarSizeInBits(); local
1431 if (SrcBits == DstBits)
1434 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp786 uint32_t SrcBits = ZI->getOperand(0)->getType()->getScalarSizeInBits(); local
788 if (Op1C->getZExtValue() == DestBits-SrcBits)
H A DInstCombineCompares.cpp1031 SrcBits = LHSI->getOperand(0)->getType()->getPrimitiveSizeInBits(); local
1032 APInt KnownZero(SrcBits, 0), KnownOne(SrcBits, 0);
1036 if ((KnownZero|KnownOne).countLeadingOnes() >= SrcBits-DstBits) {
1038 APInt NewRHS = RHS->getValue().zext(SrcBits);
1039 NewRHS |= KnownOne & APInt::getHighBitsSet(SrcBits, SrcBits-DstBits);

Completed in 98 milliseconds