Home
last modified time | relevance | path

Searched refs:VecType (Results 1 – 18 of 18) sorted by relevance

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