Home | History | Annotate | Download | only in Scalar

Lines Matching refs:VectorTy

289   /// VectorTy - This tracks the type that we should promote the vector to if
292 VectorType *VectorTy;
308 ScalarKind(Unknown), VectorTy(nullptr), HadNonMemTransferAccess(false),
344 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
355 assert(VectorTy && "Missing type for vector scalar.");
357 << *VectorTy << '\n');
358 NewTy = VectorTy; // Use the vector type.
387 /// (VectorTy) so far at the offset specified by Offset (which is specified in
397 VectorTy
426 (!VectorTy || EltSize == VectorTy->getElementType()
428 if (!VectorTy) {
430 VectorTy = VectorType::get(In, AllocaSize/EltSize);
451 if (!VectorTy)
452 VectorTy = VInTy;