Searched refs:DstBits (Results 1 - 8 of 8) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstructions.cpp2373 unsigned DstBits = Ty->getScalarSizeInBits(); local
2375 (SrcBits == DstBits ? Instruction::BitCast :
2376 (SrcBits > DstBits ? Instruction::Trunc :
2387 unsigned DstBits = Ty->getScalarSizeInBits(); local
2389 (SrcBits == DstBits ? Instruction::BitCast :
2390 (SrcBits > DstBits ? Instruction::Trunc :
2401 unsigned DstBits = Ty->getScalarSizeInBits(); local
2403 (SrcBits == DstBits ? Instruction::BitCast :
2404 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
2414 unsigned DstBits local
[all...]
H A DConstants.cpp1288 unsigned DstBits = Ty->getScalarSizeInBits(); local
1290 (SrcBits == DstBits ? Instruction::BitCast :
1291 (SrcBits > DstBits ? Instruction::Trunc :
1300 unsigned DstBits = Ty->getScalarSizeInBits(); local
1301 if (SrcBits == DstBits)
1304 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
/external/llvm/lib/IR/
H A DInstructions.cpp2816 unsigned DstBits = Ty->getScalarSizeInBits();
2818 (SrcBits == DstBits ? Instruction::BitCast :
2819 (SrcBits > DstBits ? Instruction::Trunc :
2830 unsigned DstBits = Ty->getScalarSizeInBits();
2832 (SrcBits == DstBits ? Instruction::BitCast :
2833 (SrcBits > DstBits ? Instruction::Trunc :
2844 unsigned DstBits = Ty->getScalarSizeInBits();
2846 (SrcBits == DstBits ? Instruction::BitCast :
2847 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
2857 unsigned DstBits
[all...]
H A DConstants.cpp1544 unsigned DstBits = Ty->getScalarSizeInBits(); local
1546 (SrcBits == DstBits ? Instruction::BitCast :
1547 (SrcBits > DstBits ? Instruction::Trunc :
1556 unsigned DstBits = Ty->getScalarSizeInBits(); local
1557 if (SrcBits == DstBits)
1560 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
/external/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp3947 unsigned DstBits = RetVT.getSizeInBits(); local
3965 if (Shift >= DstBits)
3995 unsigned ImmS = std::min<unsigned>(SrcBits - 1, DstBits - 1 - Shift);
4054 unsigned DstBits = RetVT.getSizeInBits(); local
4072 if (Shift >= DstBits)
4175 unsigned DstBits = RetVT.getSizeInBits(); local
4193 if (Shift >= DstBits)
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp2047 unsigned DstBits = SE.getTypeSizeInBits(AR->getType()); local
2066 ConstantInt::get(Loc->getContext(), APInt::getNullValue(DstBits));
2103 auto MaxVal = APInt::getMaxValue(DstBits).zext(SrcBits);
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1002 unsigned DstBits = LHSI->getType()->getPrimitiveSizeInBits(), local
1004 APInt Mask(APInt::getHighBitsSet(SrcBits, SrcBits-DstBits));
1009 if ((KnownZero|KnownOne).countLeadingOnes() >= SrcBits-DstBits) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1556 unsigned DstBits = LHSI->getType()->getPrimitiveSizeInBits(), local
1562 if ((KnownZero|KnownOne).countLeadingOnes() >= SrcBits-DstBits) {
1565 NewRHS |= KnownOne & APInt::getHighBitsSet(SrcBits, SrcBits-DstBits);

Completed in 250 milliseconds