Home | History | Annotate | Download | only in IR

Lines Matching defs:ArrayType

98   if (auto *ATy = dyn_cast<ArrayType>(this)) {
156 if (auto *ATy = dyn_cast<ArrayType>(this))
202 return cast<ArrayType>(this)->getNumElements();
672 // ArrayType Implementation
675 ArrayType::ArrayType(Type *ElType, uint64_t NumEl)
680 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) {
684 ArrayType *&Entry =
688 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
692 bool ArrayType::isValidElementType(Type *ElemTy) {