Searched refs:VTSize (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp152 unsigned VTSize = 4; local
190 DstPtrInfo = DstPtrInfo.getWithOffset(NumRegs * VTSize);
191 SrcPtrInfo = SrcPtrInfo.getWithOffset(NumRegs * VTSize);
211 VTSize = getRemainingSize(BytesLeft);
218 SrcOff += VTSize;
219 BytesLeft -= VTSize;
228 VTSize = getRemainingSize(BytesLeft);
234 DstOff += VTSize;
235 BytesLeft -= VTSize;
H A DARMCallLowering.cpp75 unsigned VTSize = VT.getSimpleVT().getSizeInBits(); local
77 if (VTSize == 64)
81 return VTSize == 1 || VTSize == 8 || VTSize == 16 || VTSize == 32;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp227 unsigned VTSize = VT.getSizeInBits() / 8; local
228 while (VTSize > Size) {
264 VTSize = Size;
267 VTSize = NewVTSize;
275 Size -= VTSize;
7194 unsigned VTSize = VT.getScalarSizeInBits();
7208 APInt MinVal = APInt::getSignedMinValue(VTSize);
7209 APInt MaxVal = APInt::getSignedMaxValue(VTSize);
7221 APInt MaxVal = APInt::getMaxValue(VTSize);
7227 assert(((Signed && Scale < VTSize) || (!Signe
[all...]
H A DLegalizeIntegerTypes.cpp3036 unsigned VTSize = VT.getScalarSizeInBits(); local
3057 APInt MinVal = APInt::getSignedMinValue(VTSize);
3058 APInt MaxVal = APInt::getSignedMaxValue(VTSize);
3068 APInt MaxVal = APInt::getMaxValue(VTSize);
3077 // For SMULFIX[SAT] we only expect to find Scale<VTSize, but this assert will
3079 assert(Scale <= VTSize && "Scale can't be larger than the value type size.");
3096 assert((VTSize == NVTSize * 2) && "Expected the new value type to be half "
3110 // |------VTSize-----|
3136 if (Scale == VTSize)
3141 // Unsigned overflow happened if the upper (VTSize
[all...]
H A DSelectionDAG.cpp5939 unsigned VTSize = VT.getSizeInBits() / 8;
5942 if (VTSize > Size) {
5946 SrcOff -= VTSize - Size;
5947 DstOff -= VTSize - Size;
5965 SubSlice.Length = VTSize;
5986 SrcPtrInfo.getWithOffset(SrcOff).isDereferenceable(VTSize, C, DL);
6002 SrcOff += VTSize;
6003 DstOff += VTSize;
6004 Size -= VTSize;
6112 unsigned VTSize
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp3136 uint64_t VTSize = DL.getTypeStoreSizeInBits(VectorType::get(EltTy, N));
3137 if (VTSize < MinVecRegSize || VTSize > MaxVecRegSize || VTSize != DL.getTypeStoreSizeInBits(T))

Completed in 295 milliseconds