Lines Matching defs:InitLoc
9808 SourceLocation InitLoc = IterSpaces[0].InitSrcRange.getBegin();
9817 VarDecl *LBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.lb");
9818 LB = buildDeclRefExpr(SemaRef, LBDecl, VType, InitLoc);
9820 SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
9824 VarDecl *UBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.ub");
9825 UB = buildDeclRefExpr(SemaRef, UBDecl, VType, InitLoc);
9832 VarDecl *ILDecl = buildVarDecl(SemaRef, InitLoc, Int32Ty, ".omp.is_last");
9833 IL = buildDeclRefExpr(SemaRef, ILDecl, Int32Ty, InitLoc);
9835 SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
9840 buildVarDecl(SemaRef, InitLoc, StrideVType, ".omp.stride");
9841 ST = buildDeclRefExpr(SemaRef, STDecl, StrideVType, InitLoc);
9843 SemaRef.ActOnIntegerConstant(InitLoc, 1).get(),
9848 ExprResult IsUBGreater = SemaRef.BuildBinOp(CurScope, InitLoc, BO_GT,
9851 LastIteration.get()->getExprLoc(), InitLoc, IsUBGreater.get(),
9853 EUB = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, UB.get(),
9864 buildVarDecl(SemaRef, InitLoc, VType, ".omp.comb.lb");
9865 CombLB = buildDeclRefExpr(SemaRef, CombLBDecl, VType, InitLoc);
9867 CombLBDecl, SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
9872 buildVarDecl(SemaRef, InitLoc, VType, ".omp.comb.ub");
9873 CombUB = buildDeclRefExpr(SemaRef, CombUBDecl, VType, InitLoc);
9878 CurScope, InitLoc, BO_GT, CombUB.get(), LastIteration.get());
9880 SemaRef.ActOnConditionalOp(InitLoc, InitLoc, CombIsUBGreater.get(),
9882 CombEUB = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, CombUB.get(),
9901 buildDeclRefExpr(SemaRef, PrevLBDecl, PrevLBDecl->getType(), InitLoc);
9903 buildDeclRefExpr(SemaRef, PrevUBDecl, PrevUBDecl->getType(), InitLoc);
9911 VarDecl *IVDecl = buildVarDecl(SemaRef, InitLoc, RealVType, ".omp.iv");
9912 IV = buildDeclRefExpr(SemaRef, IVDecl, RealVType, InitLoc);
9920 Init = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, IV.get(), RHS);
9932 SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, IV.get(), CombRHS);