Searched defs:VType (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp989 Type *VType = getVecTypeForPair(aTypeI, aTypeJ); local
996 unsigned VecAlignment = DL.getPrefTypeAlignment(VType);
1006 unsigned VCost = TTI->getMemoryOpCost(I->getOpcode(), VType,
1012 VCost += TTI->getAddressComputationCost(VType);
1020 unsigned VParts = TTI->getNumberOfParts(VType);
2816 VectorType *VType = getVecTypeForPair(IType, JType); local
2817 unsigned numElem = VType->getNumElements();
2829 K1 = new ShuffleVectorInst(K, UndefValue::get(VType),
2845 K2 = new ShuffleVectorInst(K, UndefValue::get(VType),
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1178 llvm::VectorType *VType = local
1181 if (!VType) {
1190 unsigned ResElts = VType->getNumElements();
1199 llvm::Value *V = llvm::UndefValue::get(VType);
1315 llvm::Type *EltTy = VType->getElementType();
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp2771 QualType VType = LastIteration.get()->getType(); local
2776 VarDecl *LBDecl = BuildVarDecl(SemaRef, InitLoc, VType, ".omp.lb");
2777 LB = SemaRef.BuildDeclRefExpr(LBDecl, VType, VK_LValue, InitLoc);
2783 VarDecl *UBDecl = BuildVarDecl(SemaRef, InitLoc, VType, ".omp.ub");
2784 UB = SemaRef.BuildDeclRefExpr(UBDecl, VType, VK_LValue, InitLoc);
2799 VarDecl *STDecl = BuildVarDecl(SemaRef, InitLoc, VType, ".omp.stride");
2800 ST = SemaRef.BuildDeclRefExpr(STDecl, VType, VK_LValue, InitLoc);
2820 VarDecl *IVDecl = BuildVarDecl(SemaRef, InitLoc, VType, ".omp.iv");
2821 IV = SemaRef.BuildDeclRefExpr(IVDecl, VType, VK_LValue, InitLoc);

Completed in 197 milliseconds