reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
 1097     LoadTy = cast<LoadInst>(V)->getType();
 1098     if (LoadTy->isIntOrIntVectorTy())
 1101     if (LoadTy->isPtrOrPtrVectorTy()) {
 1102       LoadTy = Type::getIntNTy(F.getParent()->getContext(),
 1103                                DL.getTypeSizeInBits(LoadTy));
 1107   assert(LoadTy && "Can't determine LoadInst type from chain");
 1109   unsigned Sz = DL.getTypeSizeInBits(LoadTy);
 1142   VectorType *VecLoadTy = dyn_cast<VectorType>(LoadTy);
 1144     VecTy = VectorType::get(LoadTy->getScalarType(),
 1147     VecTy = VectorType::get(LoadTy, Chain.size());