• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/

Lines Matching refs:InitLoc

8251   SourceLocation InitLoc = IterSpaces[0].InitSrcRange.getBegin();
8258 VarDecl *LBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.lb");
8259 LB = buildDeclRefExpr(SemaRef, LBDecl, VType, InitLoc);
8261 SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
8265 VarDecl *UBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.ub");
8266 UB = buildDeclRefExpr(SemaRef, UBDecl, VType, InitLoc);
8273 VarDecl *ILDecl = buildVarDecl(SemaRef, InitLoc, Int32Ty, ".omp.is_last");
8274 IL = buildDeclRefExpr(SemaRef, ILDecl, Int32Ty, InitLoc);
8276 SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
8281 buildVarDecl(SemaRef, InitLoc, StrideVType, ".omp.stride");
8282 ST = buildDeclRefExpr(SemaRef, STDecl, StrideVType, InitLoc);
8284 SemaRef.ActOnIntegerConstant(InitLoc, 1).get(),
8289 ExprResult IsUBGreater = SemaRef.BuildBinOp(CurScope, InitLoc, BO_GT,
8292 LastIteration.get()->getExprLoc(), InitLoc, IsUBGreater.get(),
8294 EUB = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, UB.get(),
8305 buildVarDecl(SemaRef, InitLoc, VType, ".omp.comb.lb");
8306 CombLB = buildDeclRefExpr(SemaRef, CombLBDecl, VType, InitLoc);
8308 CombLBDecl, SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
8313 buildVarDecl(SemaRef, InitLoc, VType, ".omp.comb.ub");
8314 CombUB = buildDeclRefExpr(SemaRef, CombUBDecl, VType, InitLoc);
8319 CurScope, InitLoc, BO_GT, CombUB.get(), LastIteration.get());
8321 SemaRef.ActOnConditionalOp(InitLoc, InitLoc, CombIsUBGreater.get(),
8323 CombEUB = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, CombUB.get(),
8342 buildDeclRefExpr(SemaRef, PrevLBDecl, PrevLBDecl->getType(), InitLoc);
8344 buildDeclRefExpr(SemaRef, PrevUBDecl, PrevUBDecl->getType(), InitLoc);
8352 VarDecl *IVDecl = buildVarDecl(SemaRef, InitLoc, RealVType, ".omp.iv");
8353 IV = buildDeclRefExpr(SemaRef, IVDecl, RealVType, InitLoc);
8359 Init = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, IV.get(), RHS);
8370 SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, IV.get(), CombRHS);