Home
last modified time | relevance | path

Searched refs:ContainedTys (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DType.h113 Type * const *ContainedTys = nullptr; variable
325 subtype_iterator subtype_begin() const { return ContainedTys; } in subtype_begin()
326 subtype_iterator subtype_end() const { return &ContainedTys[NumContainedTys];} in subtype_end()
345 return ContainedTys[i]; in getContainedType()
372 return ContainedTys[0]; in getArrayElementType()
391 return ContainedTys[0]; in getNonOpaquePointerElementType()
H A DDerivedTypes.h124 Type *getReturnType() const { return ContainedTys[0]; } in getReturnType()
128 param_iterator param_begin() const { return ContainedTys + 1; } in param_begin()
129 param_iterator param_end() const { return &ContainedTys[NumContainedTys]; } in param_end()
135 Type *getParamType(unsigned i) const { return ContainedTys[i+1]; } in getParamType()
317 element_iterator element_begin() const { return ContainedTys; } in element_begin()
318 element_iterator element_end() const { return &ContainedTys[NumContainedTys];} in element_end()
330 return ContainedTys[N]; in getElementType()
/llvm-project-15.0.7/llvm/lib/IR/
H A DType.cpp356 ContainedTys = SubTys; in FunctionType()
455 ContainedTys = nullptr; in setBody()
459 ContainedTys = Elements.copy(getContext().pImpl->Alloc).data(); in setBody()
634 ContainedTys = &ContainedType; in ArrayType()
664 ContainedTys = &ContainedType; in VectorType()
764 ContainedTys = &PointeeTy; in PointerType()
/llvm-project-15.0.7/llvm/lib/Target/DirectX/
H A DDXILPointerType.cpp57 ContainedTys = &PointeeTy; in TypedPointerType()