Searched refs:VecType (Results 1 - 15 of 15) sorted by relevance

/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A Dvec.h58 enum VecType enum
173 virtual VecType
195 template<> VecType Vector<int>::type ();
196 template<> VecType Vector<unsigned>::type ();
197 template<> VecType Vector<char>::type ();
198 template<> VecType Vector<bool>::type ();
199 template<> VecType Vector<double>::type ();
200 template<> VecType Vector<long long>::type ();
201 template<> VecType Vector<uint64_t>::type ();
202 template<> VecType Vecto
[all...]
H A DDbe.cc69 template<> VecType Vector<int>::type ()
74 template<> VecType Vector<unsigned>::type ()
79 template<> VecType Vector<char>::type ()
84 template<> VecType Vector<bool>::type ()
89 template<> VecType Vector<double>::type ()
94 template<> VecType Vector<long long>::type ()
99 template<> VecType Vector<uint64_t>::type ()
104 template<> VecType Vector<void*>::type ()
109 template<> VecType Vector<char*>::type ()
114 template<> VecType Vecto
[all...]
H A Dipcio.cc525 VecType type = ((Vector<void*>*)ptr)->type ();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DScalarizeMaskedMemIntrin.cpp153 VectorType *VecType = cast<FixedVectorType>(CI->getType()); local
155 Type *EltTy = VecType->getElementType();
166 Value *NewI = Builder.CreateAlignedLoad(VecType, Ptr, AlignVal);
179 unsigned VectorWidth = cast<FixedVectorType>(VecType)->getNumElements();
249 PHINode *Phi = Builder.CreatePHI(VecType, 2, "res.phi.else");
295 auto *VecType = cast<VectorType>(Src->getType()); local
297 Type *EltTy = VecType->getElementType();
318 unsigned VectorWidth = cast<FixedVectorType>(VecType)->getNumElements();
422 auto *VecType = cast<FixedVectorType>(CI->getType()); local
423 Type *EltTy = VecType
641 auto *VecType = cast<FixedVectorType>(CI->getType()); local
769 auto *VecType = cast<FixedVectorType>(Src->getType()); local
[all...]
H A DLowerMatrixIntrinsics.cpp153 auto *VecType = FixedVectorType::get(EltType, NumElements); local
154 Type *VecPtrType = PointerType::get(VecType, AS);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTX.h121 enum VecType { enum in namespace:llvm::NVPTX::PTXLdStInstCode
H A DNVPTXISelDAGToDAG.cpp1046 unsigned VecType;
1050 VecType = NVPTX::PTXLdStInstCode::V2;
1053 VecType = NVPTX::PTXLdStInstCode::V4;
1093 getI32Imm(VecType, DL), getI32Imm(FromType, DL),
1120 getI32Imm(VecType, DL), getI32Imm(FromType, DL),
1169 getI32Imm(VecType, DL), getI32Imm(FromType, DL),
1218 getI32Imm(VecType, DL), getI32Imm(FromType, DL),
1912 unsigned VecType;
1916 VecType = NVPTX::PTXLdStInstCode::V2;
1922 VecType
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp495 VectorType *VecType = cast<VectorType>(VecInput->getType());
496 unsigned VecWidth = VecType->getPrimitiveSizeInBits();
506 if (VecType->getElementType() != DestType) {
507 VecType = FixedVectorType::get(DestType, NumVecElts);
508 VecInput = IC.Builder.CreateBitCast(VecInput, VecType, "bc");
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp5876 const auto *VecType = cast<DependentVectorType>(T); local
5877 MarkUsedTemplateParameters(Ctx, VecType->getElementType(), OnlyDeduced,
5879 MarkUsedTemplateParameters(Ctx, VecType->getSizeExpr(), OnlyDeduced, Depth,
5884 const DependentSizedExtVectorType *VecType local
5886 MarkUsedTemplateParameters(Ctx, VecType->getElementType(), OnlyDeduced,
5888 MarkUsedTemplateParameters(Ctx, VecType->getSizeExpr(), OnlyDeduced,
H A DSemaExpr.cpp9186 const VectorType *VecType = RHSType->getAs<VectorType>(); local
9187 if (VecType && VecType->getNumElements() == 1 &&
10042 const VectorType *VecType = SecondType->getAs<VectorType>();
10043 return FirstType->isSizelessBuiltinType() && VecType &&
10044 (VecType->getVectorKind() == VectorType::SveFixedLengthDataVector ||
10045 VecType->getVectorKind() ==
10107 QualType VecType = LHSVecType ? LHSType : RHSType; local
10111 if (isLaxVectorConversion(OtherType, VecType)) {
10116 *OtherExpr = ImpCastExprToType(OtherExpr->get(), VecType, CK_BitCas
[all...]
H A DSemaInit.cpp1807 QualType VecType; local
1812 VecType = SemaRef.Context.getExtVectorType(elementType, numIElts);
1814 VecType = SemaRef.Context.getVectorType(elementType, numIElts,
1816 CheckSubElementType(ElementEntity, IList, VecType, Index,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1922 MVT VecType = Op.getOperand(0).getSimpleValueType(); local
1923 assert(VecType.is128BitVector() && "Unexpected shuffle vector type");
1924 size_t LaneBytes = VecType.getVectorElementType().getSizeInBits() / 8;
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp3939 ASTContext::getDependentVectorType(QualType VecType, Expr *SizeExpr, argument
3943 DependentVectorType::Profile(ID, *this, getCanonicalType(VecType), SizeExpr,
3952 *this, VecType, QualType(Canon, 0), SizeExpr, AttrLoc, VecKind);
3954 QualType CanonVecTy = getCanonicalType(VecType);
3955 if (CanonVecTy == VecType) {
3957 *this, VecType, QualType(), SizeExpr, AttrLoc, VecKind);
3969 *this, VecType, CanonTy, SizeExpr, AttrLoc, VecKind);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp8752 MVT VecType = MVT::getVectorVT(SimpleVT, 2); local
8754 SDValue NewOld = DAG.getBuildVector(VecType, DL, {New, Old});
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGBuiltin.cpp17761 llvm::Type *VecType = ConvertType(E->getArg(0)->getType());
17763 EmitPointerWithAlignment(E->getArg(2)), VecType->getPointerTo(0));

Completed in 423 milliseconds