Home | History | Annotate | Download | only in Scalar

Lines Matching refs:VectorTy

294   /// VectorTy - This tracks the type that we should promote the vector to if
297 VectorType *VectorTy;
313 ScalarKind(Unknown), VectorTy(nullptr), HadNonMemTransferAccess(false),
349 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
360 assert(VectorTy && "Missing type for vector scalar.");
362 << *VectorTy << '\n');
363 NewTy = VectorTy; // Use the vector type.
392 /// (VectorTy) so far at the offset specified by Offset (which is specified in
402 /// and stores would mutate the memory. We mark this by setting VectorTy
431 (!VectorTy || EltSize == VectorTy->getElementType()
433 if (!VectorTy) {
435 VectorTy = VectorType::get(In, AllocaSize/EltSize);
456 if (!VectorTy)
457 VectorTy = VInTy;