Searched refs:LHSs (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | Record.cpp | 820 if (StringInit *LHSs = dyn_cast<StringInit>(LHS)) in Fold() local 821 return StringInit::get(RK, LHSs->getValue().lower()); in Fold() 824 if (StringInit *LHSs = dyn_cast<StringInit>(LHS)) in Fold() local 825 return StringInit::get(RK, LHSs->getValue().upper()); in Fold() 829 if (StringInit *LHSs = dyn_cast<StringInit>(LHS)) in Fold() local 830 return LHSs; in Fold() 911 if (StringInit *LHSs = dyn_cast<StringInit>(LHS)) in Fold() local 912 return IntInit::get(RK, LHSs->getValue().size()); in Fold() 920 if (StringInit *LHSs = dyn_cast<StringInit>(LHS)) in Fold() local 921 return IntInit::get(RK, LHSs->getValue().empty()); in Fold() [all …]
|
H A D | TGParser.cpp | 1294 StringInit *LHSs = dyn_cast<StringInit>(LHS); in ParseOperation() local 1297 if (!LHSl && !LHSs && !LHSd && !LHSt) { in ParseOperation()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | SearchableTableEmitter.cpp | 285 std::string LHSs = primaryRepresentation(Index.Loc, Field, LHSI); in compareBy() local 289 LHSs = StringRef(LHSs).upper(); in compareBy() 293 int comp = LHSs.compare(RHSs); in compareBy()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmtOpenMP.cpp | 1227 SmallVector<const Expr *, 4> LHSs; in EmitOMPReductionClauseInit() local 1238 LHSs.append(C->lhs_exprs().begin(), C->lhs_exprs().end()); in EmitOMPReductionClauseInit() 1252 auto *ILHS = LHSs.begin(); in EmitOMPReductionClauseInit() 3643 SmallVector<const Expr *, 4> LHSs; in emitScanBasedDirectiveFinals() local 3652 LHSs.append(C->lhs_exprs().begin(), C->lhs_exprs().end()); in emitScanBasedDirectiveFinals() 3677 cast<VarDecl>(cast<DeclRefExpr>(LHSs[I])->getDecl()), in emitScanBasedDirectiveFinals() 3710 SmallVector<const Expr *, 4> LHSs; in emitScanBasedDirective() local 3718 LHSs.append(C->lhs_exprs().begin(), C->lhs_exprs().end()); in emitScanBasedDirective() 3736 auto &&CodeGen = [&S, OMPScanNumIterations, &LHSs, &RHSs, &CopyArrayElems, in emitScanBasedDirective() 3776 auto *ILHS = LHSs.begin(); in emitScanBasedDirective() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 18055 SmallVector<Expr *, 8> LHSs; member 18080 LHSs.reserve(Size); in ReductionData() 18097 LHSs.emplace_back(nullptr); in push() 18113 LHSs.emplace_back(LHS); in push() 18981 RD.Privates, RD.LHSs, RD.RHSs, RD.ReductionOps, RD.InscanCopyOps, in ActOnOpenMPReductionClause() 19002 RD.Privates, RD.LHSs, RD.RHSs, RD.ReductionOps, in ActOnOpenMPTaskReductionClause() 19022 RD.Privates, RD.LHSs, RD.RHSs, RD.ReductionOps, RD.TaskgroupDescriptors, in ActOnOpenMPInReductionClause()
|
H A D | SemaExpr.cpp | 17261 auto &LHSs = ExprEvalContexts.back().VolatileAssignmentLHSs; in CheckUnusedVolatileAssignment() local 17262 llvm::erase(LHSs, BO->getLHS()); in CheckUnusedVolatileAssignment()
|