HomeSort by: relevance | last modified time | path
    Searched defs:VecType (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ScalarizeMaskedMemIntrin.cpp 153 VectorType *VecType = cast<FixedVectorType>(CI->getType());
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());
297 Type *EltTy = VecType->getElementType();
318 unsigned VectorWidth = cast<FixedVectorType>(VecType)->getNumElements();
422 auto *VecType = cast<FixedVectorType>(CI->getType());
423 Type *EltTy = VecType->getElementType()
    [all...]
LowerMatrixIntrinsics.cpp 153 auto *VecType = FixedVectorType::get(EltType, NumElements);
154 Type *VecPtrType = PointerType::get(VecType, AS);
  /src/external/gpl3/binutils/dist/gprofng/src/
vec.h 59 enum VecType
181 virtual VecType
203 template<> VecType Vector<int>::type ();
204 template<> VecType Vector<unsigned>::type ();
205 template<> VecType Vector<char>::type ();
206 template<> VecType Vector<bool>::type ();
207 template<> VecType Vector<double>::type ();
208 template<> VecType Vector<long long>::type ();
209 template<> VecType Vector<uint64_t>::type ();
210 template<> VecType Vector<void*>::type ()
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
vec.h 59 enum VecType
181 virtual VecType
203 template<> VecType Vector<int>::type ();
204 template<> VecType Vector<unsigned>::type ();
205 template<> VecType Vector<char>::type ();
206 template<> VecType Vector<bool>::type ();
207 template<> VecType Vector<double>::type ();
208 template<> VecType Vector<long long>::type ();
209 template<> VecType Vector<uint64_t>::type ();
210 template<> VecType Vector<void*>::type ()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTX.h 121 enum VecType {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp 1807 QualType VecType;
1812 VecType = SemaRef.Context.getExtVectorType(elementType, numIElts);
1814 VecType = SemaRef.Context.getVectorType(elementType, numIElts,
1816 CheckSubElementType(ElementEntity, IList, VecType, Index,
SemaTemplateDeduction.cpp 5876 const auto *VecType = cast<DependentVectorType>(T);
5877 MarkUsedTemplateParameters(Ctx, VecType->getElementType(), OnlyDeduced,
5879 MarkUsedTemplateParameters(Ctx, VecType->getSizeExpr(), OnlyDeduced, Depth,
5884 const DependentSizedExtVectorType *VecType
5886 MarkUsedTemplateParameters(Ctx, VecType->getElementType(), OnlyDeduced,
5888 MarkUsedTemplateParameters(Ctx, VecType->getSizeExpr(), OnlyDeduced,
SemaExpr.cpp 7307 if (const VectorType *vecType = type->getAs<VectorType>()) {
7308 len = vecType->getNumElements();
7309 eltType = vecType->getElementType();
9186 const VectorType *VecType = RHSType->getAs<VectorType>();
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() =
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 1922 MVT VecType = Op.getOperand(0).getSimpleValueType();
1923 assert(VecType.is128BitVector() && "Unexpected shuffle vector type");
1924 size_t LaneBytes = VecType.getVectorElementType().getSizeInBits() / 8;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp 8752 MVT VecType = MVT::getVectorVT(SimpleVT, 2);
8754 SDValue NewOld = DAG.getBuildVector(VecType, DL, {New, Old});

Completed in 74 milliseconds