| /netbsd-src/external/gpl3/binutils/dist/gprofng/src/ |
| H A D | vec.h | 58 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 D | Dbe.cc | 69 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 D | ipcio.cc | 518 VecType type = ((Vector<void*>*)ptr)->type (); in sendAVal()
|
| /netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/ |
| H A D | vec.h | 58 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 D | Dbe.cc | 69 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 D | ipcio.cc | 525 VecType type = ((Vector<void*>*)ptr)->type (); in sendAVal()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | ScalarizeMaskedMemIntrin.cpp | 153 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 D | LowerMatrixIntrinsics.cpp | 153 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 D | NVPTX.h | 121 enum VecType { enum
|
| H A D | NVPTXISelDAGToDAG.cpp | 1046 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 D | InstCombineCasts.cpp | 495 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 D | SemaTemplateDeduction.cpp | 5876 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 D | SemaExpr.cpp | 9186 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 D | SemaInit.cpp | 1807 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 D | WebAssemblyISelLowering.cpp | 1922 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 D | ASTContext.cpp | 3939 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 D | SIISelLowering.cpp | 8752 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 D | CGBuiltin.cpp | 17761 llvm::Type *VecType = ConvertType(E->getArg(0)->getType()); in EmitHexagonBuiltinExpr() local 17763 EmitPointerWithAlignment(E->getArg(2)), VecType->getPointerTo(0)); in EmitHexagonBuiltinExpr()
|