Home | History | Annotate | Download | only in Scalar

Lines Matching defs:VectorTy

288   /// VectorTy - This tracks the type that we should promote the vector to if
291 VectorType *VectorTy;
307 ScalarKind(Unknown), VectorTy(0), HadNonMemTransferAccess(false),
343 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
354 assert(VectorTy && "Missing type for vector scalar.");
356 << *VectorTy << '\n');
357 NewTy = VectorTy; // Use the vector type.
385 /// (VectorTy) so far at the offset specified by Offset (which is specified in
395 /// and stores would mutate the memory. We mark this by setting VectorTy
424 (!VectorTy || EltSize == VectorTy->getElementType()
426 if (!VectorTy) {
428 VectorTy = VectorType::get(In, AllocaSize/EltSize);
449 if (!VectorTy)
450 VectorTy = VInTy;