Searched refs:DestSize (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp869 Value *DestSize = MemSet->getLength(); local
885 if (DestSize->getType() != SrcSize->getType()) {
886 if (DestSize->getType()->getIntegerBitWidth() >
888 SrcSize = Builder.CreateZExt(SrcSize, DestSize->getType());
890 DestSize = Builder.CreateZExt(DestSize, SrcSize->getType());
894 Builder.CreateSelect(Builder.CreateICmpULE(DestSize, SrcSize),
895 ConstantInt::getNullValue(DestSize->getType()),
896 Builder.CreateSub(DestSize, SrcSize));
/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h87 unsigned DestSize = Ty->getScalarSizeInBits(); local
88 if (DL.isLegalInteger(DestSize) &&
89 DestSize >= DL.getPointerTypeSizeInBits(OpTy))
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp509 unsigned DestSize = DestTy->getScalarType()->getPrimitiveSizeInBits(); variable
512 if ((Ran->Rand() & 1) && VSize == DestSize) {
520 if (VSize > DestSize) {
524 assert(VSize < DestSize && "Different int types with the same size?");
554 if (VSize > DestSize) {
557 } else if (VSize < DestSize) {
561 // If VSize == DestSize, then the two types must be fp128 and ppc_fp128,
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp1234 unsigned DestSize = DestVT.getSizeInBits(); local
1236 if (SrcSize > DestSize) {
1237 assert(SrcSize == 64 && DestSize == 32);
1246 if (DestSize > SrcSize) {
1247 assert(SrcSize == 32 && DestSize == 64);
1267 assert(SrcSize == 64 && DestSize == 64);
H A DAMDGPUISelLowering.cpp531 unsigned DestSize = Dest->getScalarSizeInBits(); local
533 return SrcSize == 32 && DestSize == 64;
/external/llvm/lib/Linker/
H A DLinkModules.cpp536 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType()); local
538 LinkFromSrc = SrcSize > DestSize;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1937 unsigned DestSize = DestVT.getSizeInBits();
1955 if (SlotSize == DestSize)
1959 assert(SlotSize < DestSize && "Unknown extension!");

Completed in 227 milliseconds