Home
last modified time | relevance | path

Searched refs:VType (Results 1 – 4 of 4) sorted by relevance

/NextBSD/contrib/llvm/lib/Transforms/Vectorize/
HDBBVectorize.cpp989 Type *VType = getVecTypeForPair(aTypeI, aTypeJ); in areInstsCompatible() local
996 unsigned VecAlignment = DL.getPrefTypeAlignment(VType); in areInstsCompatible()
1006 unsigned VCost = TTI->getMemoryOpCost(I->getOpcode(), VType, in areInstsCompatible()
1012 VCost += TTI->getAddressComputationCost(VType); in areInstsCompatible()
1020 unsigned VParts = TTI->getNumberOfParts(VType); in areInstsCompatible()
2816 VectorType *VType = getVecTypeForPair(IType, JType); in replaceOutputsOfPair() local
2817 unsigned numElem = VType->getNumElements(); in replaceOutputsOfPair()
2829 K1 = new ShuffleVectorInst(K, UndefValue::get(VType), in replaceOutputsOfPair()
2845 K2 = new ShuffleVectorInst(K, UndefValue::get(VType), in replaceOutputsOfPair()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOpenMP.cpp3254 QualType VType = LastIteration.get()->getType(); in CheckOpenMPLoop() local
3259 VarDecl *LBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.lb"); in CheckOpenMPLoop()
3260 LB = buildDeclRefExpr(SemaRef, LBDecl, VType, InitLoc); in CheckOpenMPLoop()
3266 VarDecl *UBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.ub"); in CheckOpenMPLoop()
3267 UB = buildDeclRefExpr(SemaRef, UBDecl, VType, InitLoc); in CheckOpenMPLoop()
3282 VarDecl *STDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.stride"); in CheckOpenMPLoop()
3283 ST = buildDeclRefExpr(SemaRef, STDecl, VType, InitLoc); in CheckOpenMPLoop()
3303 VarDecl *IVDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.iv"); in CheckOpenMPLoop()
3304 IV = buildDeclRefExpr(SemaRef, IVDecl, VType, InitLoc); in CheckOpenMPLoop()
HDSemaInit.cpp634 } else if (const VectorType *VType = ILE->getType()->getAs<VectorType>()) { in FillInEmptyInitializations() local
635 ElementType = VType->getElementType(); in FillInEmptyInitializations()
636 NumElements = VType->getNumElements(); in FillInEmptyInitializations()
2581 } else if (const VectorType *VType = CurrentObjectType->getAs<VectorType>()) in getStructuredSubobjectInit() local
2582 NumElements = VType->getNumElements(); in getStructuredSubobjectInit()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGExprScalar.cpp1188 llvm::VectorType *VType = in VisitInitListExpr() local
1191 if (!VType) { in VisitInitListExpr()
1200 unsigned ResElts = VType->getNumElements(); in VisitInitListExpr()
1209 llvm::Value *V = llvm::UndefValue::get(VType); in VisitInitListExpr()
1326 llvm::Type *EltTy = VType->getElementType(); in VisitInitListExpr()