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

References

lib/Transforms/InstCombine/InstructionCombining.cpp
 1095   if (!Ty->isSized())
 1103   if (int64_t TySize = DL.getTypeAllocSize(Ty)) {
 1121     if (uint64_t(Offset * 8) >= DL.getTypeSizeInBits(Ty))
 1124     if (StructType *STy = dyn_cast<StructType>(Ty)) {
 1130       NewIndices.push_back(ConstantInt::get(Type::getInt32Ty(Ty->getContext()),
 1134       Ty = STy->getElementType(Elt);
 1135     } else if (ArrayType *AT = dyn_cast<ArrayType>(Ty)) {
 1140       Ty = AT->getElementType();
 1147   return Ty;