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

/external/clang/lib/CodeGen/
H A DCGCall.cpp701 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); local
712 if (SrcSize >= DstSize) {
713 // Generally SrcSize is never greater than DstSize, since this means we are
735 llvm::ConstantInt::get(CGF.IntPtrTy, SrcSize),
782 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); local
785 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF);
801 if (SrcSize <= DstSize) {
810 // Generally SrcSize is never greater than DstSize, since this means we are
1340 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(STy); local
1345 if (SrcSize <
2257 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(SrcTy); local
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp805 unsigned SrcSize = A->getType()->getScalarSizeInBits(); local
809 // SrcSize < DstSize: zext(a & mask)
810 // SrcSize == DstSize: a & mask
811 // SrcSize > DstSize: trunc(a) & mask
812 if (SrcSize < DstSize) {
813 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
819 if (SrcSize == DstSize) {
820 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
824 if (SrcSize > DstSize) {
H A DInstCombineShifts.cpp378 unsigned SrcSize = TrOp->getType()->getScalarSizeInBits(); local
380 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
H A DInstructionCombining.cpp1256 uint64_t SrcSize = TD->getTypeAllocSize(SrcElTy); local
1257 if (ResSize && SrcSize % ResSize == 0) {
1260 uint64_t Scale = SrcSize / ResSize;
/external/llvm/lib/IR/
H A DInstructions.cpp2241 unsigned SrcSize = SrcTy->getScalarSizeInBits(); local
2243 if (SrcSize == DstSize)
2245 else if (SrcSize < DstSize)
2269 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
2273 unsigned SrcSize = SrcTy->getScalarSizeInBits(); local
2275 if (SrcSize <= PtrSize && SrcSize == DstSize)
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1172 unsigned SrcSize = VA.getValVT().getSizeInBits(); local
1175 switch (SrcSize) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1698 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1708 if (SrcSize > SlotSize)
1712 assert(SrcSize == SlotSize && "Invalid store");

Completed in 146 milliseconds