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

  /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...]
Dbe.cc 69 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 Vector<Vector<int>*>::type (
    [all...]
ipcio.cc 515 VecType type = ((Vector<void*>*)ptr)->type ();
  /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...]
Dbe.cc 69 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 Vector<Vector<int>*>::type (
    [all...]
ipcio.cc 515 VecType type = ((Vector<void*>*)ptr)->type ();
  /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/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTX.h 121 enum VecType {
NVPTXISelDAGToDAG.cpp 892 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar;
924 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
937 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
956 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
975 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
1046 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)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 495 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");
  /src/external/apache2/llvm/dist/clang/lib/Sema/
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...]
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,
  /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/clang/lib/AST/
ASTContext.cpp 3909 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts,
3911 assert(vecType->isBuiltinType());
3915 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
3924 if (!vecType.isCanonical()) {
3925 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
3932 VectorType(vecType, NumElts, Canonical, VecKind);
3939 ASTContext::getDependentVectorType(QualType VecType, Expr *SizeExpr,
3943 DependentVectorType::Profile(ID, *this, getCanonicalType(VecType), SizeExpr,
3952 *this, VecType, QualType(Canon, 0), SizeExpr, AttrLoc, VecKind);
3954 QualType CanonVecTy = getCanonicalType(VecType);
    [all...]
  /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});
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp 17761 llvm::Type *VecType = ConvertType(E->getArg(0)->getType());
17763 EmitPointerWithAlignment(E->getArg(2)), VecType->getPointerTo(0));

Completed in 136 milliseconds