|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/IR/DerivedTypes.h 459 static VectorType *get(Type *ElementType, ElementCount EC);
References
include/llvm/IR/DerivedTypes.h 462 return VectorType::get(ElementType, {NumElements, Scalable});
472 return VectorType::get(EltTy, VTy->getElementCount());
480 return VectorType::get(EltTy->getExtendedType(), VTy->getElementCount());
505 return VectorType::get(EltTy, VTy->getElementCount());
525 return VectorType::get(VTy->getElementType(), EltCnt/2);
534 return VectorType::get(VTy->getElementType(), EltCnt*2);
631 NewType = VectorType::get(NewType, getVectorElementCount());
include/llvm/IR/InstrTypes.h 977 return VectorType::get(Type::getInt1Ty(opnd_type->getContext()),
lib/IR/Function.cpp 1010 return VectorType::get(EltTy, VTy->getElementCount());
1042 return VectorType::get(Ty->getVectorElementType(),
lib/IR/Instructions.cpp 1792 : Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1809 : Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
unittests/CodeGen/ScalableVectorMVTsTest.cpp 93 VectorType *ScV8Int64Ty = VectorType::get(Int64Ty, {8, true});
unittests/IR/VectorTypesTest.cpp 30 VectorType *V8Int16Ty = VectorType::get(Int16Ty, {8, false});
36 VectorType *V4Int64Ty = VectorType::get(Int64Ty, EltCnt);
41 VectorType *V2Int64Ty = VectorType::get(Int64Ty, EltCnt/2);
46 VectorType *V8Int64Ty = VectorType::get(Int64Ty, EltCnt*2);
51 VectorType *V4Float64Ty = VectorType::get(Float64Ty, EltCnt);
104 VectorType *ScV8Int16Ty = VectorType::get(Int16Ty, {8, true});
110 VectorType *ScV4Int64Ty = VectorType::get(Int64Ty, EltCnt);
115 VectorType *ScV2Int64Ty = VectorType::get(Int64Ty, EltCnt/2);
120 VectorType *ScV8Int64Ty = VectorType::get(Int64Ty, EltCnt*2);
125 VectorType *ScV4Float64Ty = VectorType::get(Float64Ty, EltCnt);
221 VectorType *ScV2Int32Ty = VectorType::get(Int32Ty, {2, true});
222 VectorType *ScV4Int32Ty = VectorType::get(Int32Ty, {4, true});
224 VectorType *ScV2Int64Ty = VectorType::get(Int64Ty, {2, true});
263 VectorType *V4Int32Ty = VectorType::get(Int32Ty, {4, false});
264 VectorType *ScV4Int32Ty = VectorType::get(Int32Ty, {4, true});