Searched refs:vecType (Results 1 - 5 of 5) sorted by relevance

/freebsd-9.3-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp220 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar; local
224 vecType = NVPTX::PTXLdStInstCode::V2;
226 vecType = NVPTX::PTXLdStInstCode::V4;
280 getI32Imm(vecType), getI32Imm(fromType),
309 getI32Imm(vecType), getI32Imm(fromType),
363 getI32Imm(vecType), getI32Imm(fromType),
415 getI32Imm(vecType), getI32Imm(fromType),
1323 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar; local
1327 vecType = NVPTX::PTXLdStInstCode::V2;
1329 vecType
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp171 VectorType::VectorType(QualType vecType, unsigned nElements, QualType canonType, argument
173 : Type(Vector, canonType, vecType->isDependentType(),
174 vecType->isInstantiationDependentType(),
175 vecType->isVariablyModifiedType(),
176 vecType->containsUnexpandedParameterPack()),
177 ElementType(vecType)
183 VectorType::VectorType(TypeClass tc, QualType vecType, unsigned nElements, argument
185 : Type(tc, canonType, vecType->isDependentType(),
186 vecType->isInstantiationDependentType(),
187 vecType
[all...]
H A DASTContext.cpp2657 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts, argument
2659 assert(vecType->isBuiltinType());
2663 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
2672 if (!vecType.isCanonical()) {
2673 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
2680 VectorType(vecType, NumElts, Canonical, VecKind);
2689 ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const { argument
2690 assert(vecType->isBuiltinType() || vecType->isDependentType());
2694 VectorType::Profile(ID, vecType, NumElt
2718 getDependentSizedExtVectorType(QualType vecType, Expr *SizeExpr, SourceLocation AttrLoc) const argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprMember.cpp283 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); local
308 (Idx = vecType->getPointAccessorIdx(*compStr)) != -1) {
313 } while (*compStr && (Idx = vecType->getPointAccessorIdx(*compStr)) != -1);
316 while ((Idx = vecType->getNumericAccessorIdx(*compStr)) != -1) {
340 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
353 unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2
359 return vecType->getElementType();
363 QualType VT = S.Context.getExtVectorType(vecType->getElementType(), CompSize);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h2521 VectorType(QualType vecType, unsigned nElements, QualType canonType,
2524 VectorType(TypeClass tc, QualType vecType, unsigned nElements,
2568 ExtVectorType(QualType vecType, unsigned nElements, QualType canonType) : argument
2569 VectorType(ExtVector, vecType, nElements, canonType, GenericVector) {}

Completed in 113 milliseconds