40#include "llvm/ADT/ArrayRef.h"
41#include "llvm/ADT/DenseMap.h"
42#include "llvm/ADT/STLExtras.h"
43#include "llvm/ADT/STLForwardCompat.h"
44#include "llvm/ADT/SmallPtrSet.h"
45#include "llvm/ADT/SmallString.h"
46#include "llvm/ADT/SmallVector.h"
47#include "llvm/ADT/StringExtras.h"
75 bool HasLeadingEmptyMacro) {
104 Diag(
decl->getLocation(), diag::err_non_variable_decl_in_for);
105 decl->setInvalidDecl();
111 var->setInit(
nullptr);
124 var->setType(
type.withConst());
125 var->setARCPseudoStrong(
true);
138 enum { Equality, Inequality, Relational, ThreeWay } Kind;
141 if (!Op->isComparisonOp())
144 if (Op->getOpcode() == BO_EQ)
146 else if (Op->getOpcode() == BO_NE)
148 else if (Op->getOpcode() == BO_Cmp)
151 assert(Op->isRelationalOp());
154 Loc = Op->getOperatorLoc();
155 CanAssign = Op->getLHS()->IgnoreParenImpCasts()->isLValue();
157 switch (Op->getOperator()) {
161 case OO_ExclaimEqual:
166 case OO_GreaterEqual:
177 Loc = Op->getOperatorLoc();
178 CanAssign = Op->getArg(0)->IgnoreParenImpCasts()->isLValue();
189 S.
Diag(
Loc, diag::warn_unused_comparison)
195 if (Kind == Inequality)
196 S.
Diag(
Loc, diag::note_inequality_comparison_to_or_assign)
198 else if (Kind == Equality)
199 S.
Diag(
Loc, diag::note_equality_comparison_to_assign)
211 StringRef Msg = A->getMessage();
215 return S.
Diag(
Loc, diag::warn_unused_constructor) << A << R1 << R2;
216 return S.
Diag(
Loc, diag::warn_unused_result) << A << R1 << R2;
220 return S.
Diag(
Loc, diag::warn_unused_constructor_msg) << A << Msg << R1
222 return S.
Diag(
Loc, diag::warn_unused_result_msg) << A << Msg << R1 << R2;
229 const Expr *
E = dyn_cast_or_null<Expr>(S);
244 bool ShouldSuppress =
248 const Expr *WarnExpr;
273 if (
const FullExpr *Temps = dyn_cast<FullExpr>(
E))
274 E = Temps->getSubExpr();
276 E = TempExpr->getSubExpr();
282 if (
const auto *Cast = dyn_cast<CastExpr>(
E))
283 if (Cast->getCastKind() == CK_NoOp ||
284 Cast->getCastKind() == CK_ConstructorConversion ||
285 Cast->getCastKind() == CK_IntegralCast)
286 E = Cast->getSubExpr()->IgnoreImpCasts();
288 if (
const CallExpr *CE = dyn_cast<CallExpr>(
E)) {
293 CE->getUnusedResultAttr(
Context)),
301 if (
const Decl *FD = CE->getCalleeDecl()) {
304 if (FD->hasAttr<PureAttr>()) {
305 Diag(
Loc, diag::warn_unused_call) << R1 << R2 <<
"pure";
308 if (FD->hasAttr<ConstAttr>()) {
309 Diag(
Loc, diag::warn_unused_call) << R1 << R2 <<
"const";
313 }
else if (
const auto *CE = dyn_cast<CXXConstructExpr>(
E)) {
315 const auto *A = Ctor->getAttr<WarnUnusedResultAttr>();
316 A = A ? A : Ctor->getParent()->getAttr<WarnUnusedResultAttr>();
320 }
else if (
const auto *ILE = dyn_cast<InitListExpr>(
E)) {
321 if (
const TagDecl *TD = ILE->getType()->getAsTagDecl()) {
327 }
else if (ShouldSuppress)
332 if (
getLangOpts().ObjCAutoRefCount && ME->isDelegateInitCall()) {
333 Diag(
Loc, diag::err_arc_unused_init_message) << R1;
343 const Expr *Source = POE->getSyntacticForm();
345 if (
LangOpts.OpenMP && isa<CallExpr>(Source) &&
346 POE->getNumSemanticExprs() == 1 &&
347 isa<CallExpr>(POE->getSemanticExpr(0)))
349 if (isa<ObjCSubscriptRefExpr>(Source))
350 DiagID = diag::warn_unused_container_subscript_expr;
351 else if (isa<ObjCPropertyRefExpr>(Source))
352 DiagID = diag::warn_unused_property_expr;
354 = dyn_cast<CXXFunctionalCastExpr>(
E)) {
355 const Expr *
E = FC->getSubExpr();
357 E = TE->getSubExpr();
358 if (isa<CXXTemporaryObjectExpr>(
E))
361 if (
const CXXRecordDecl *RD = CE->getType()->getAsCXXRecordDecl())
362 if (!RD->getAttr<WarnUnusedAttr>())
374 Diag(
Loc, diag::warn_unused_voidptr)
384 Diag(
Loc, diag::warn_unused_volatile) << R1 << R2;
391 if (DiagID != diag::warn_unused_comma_left_operand || !
isSFINAEContext())
393 PDiag(DiagID) << R1 << R2);
418 const unsigned NumElts = Elts.size();
423 const unsigned MixedDeclsCodeID =
getLangOpts().C99
424 ? diag::warn_mixed_decls_code
425 : diag::ext_mixed_decls_code;
430 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
434 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
438 Decl *
D = *cast<DeclStmt>(Elts[i])->decl_begin();
448 for (
unsigned i = 0; i != NumElts - 1; ++i)
484 auto CheckAndFinish = [&](
Expr *
E) {
491 llvm::APSInt TempVal;
511 if (Converted.
get() == Val.
get())
512 Converted = CheckAndFinish(Val.
get());
520 assert((LHSVal.
isInvalid() || LHSVal.
get()) &&
"missing LHS value");
523 "missing RHS value");
526 Diag(CaseLoc, diag::err_case_not_in_switch);
537 Diag(CaseLoc, diag::err_acc_branch_in_out_compute_construct)
543 CaseLoc, DotDotDotLoc, ColonLoc);
549 cast<CaseStmt>(S)->setSubStmt(SubStmt);
556 Diag(DefaultLoc, diag::err_default_not_in_switch);
562 Diag(DefaultLoc, diag::err_acc_branch_in_out_compute_construct)
577 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->
getDeclName();
585 Diag(IdentLoc, diag::warn_reserved_extern_symbol)
586 << TheDecl << static_cast<int>(Status);
590 if (
getCurScope()->isInOpenACCComputeConstructScope())
612 for (
const auto *A : Attrs) {
613 if (A->getKind() == attr::MustTail) {
628 if (!SemanticAttrs.empty())
644 if (!checkMustTailAttr(St, MTA))
650 auto IgnoreImplicitAsWritten = [](
Expr *
E) ->
Expr * {
661bool Sema::checkMustTailAttr(
const Stmt *St,
const Attr &MTA) {
663 "musttail cannot be checked from a dependent context");
666 auto IgnoreParenImplicitAsWritten = [](
const Expr *
E) ->
const Expr * {
672 const Expr *
E = cast<ReturnStmt>(St)->getRetValue();
673 const auto *CE = dyn_cast_or_null<CallExpr>(IgnoreParenImplicitAsWritten(
E));
680 if (
const auto *EWC = dyn_cast<ExprWithCleanups>(
E)) {
681 if (EWC->cleanupsHaveSideEffects()) {
682 Diag(St->
getBeginLoc(), diag::err_musttail_needs_trivial_args) << &MTA;
693 ft_non_static_member,
694 ft_pointer_to_member,
695 } MemberType = ft_non_member;
700 } CallerType, CalleeType;
703 bool IsCallee) ->
bool {
704 if (isa<CXXConstructorDecl, CXXDestructorDecl>(CMD)) {
706 << IsCallee << isa<CXXDestructorDecl>(CMD);
708 Diag(CMD->getBeginLoc(), diag::note_musttail_structors_forbidden)
709 << isa<CXXDestructorDecl>(CMD);
714 Type.MemberType = FuncType::ft_static_member;
716 Type.This = CMD->getFunctionObjectParameterType();
717 Type.MemberType = FuncType::ft_non_static_member;
723 const auto *CallerDecl = dyn_cast<FunctionDecl>(
CurContext);
734 Diag(St->
getBeginLoc(), diag::err_musttail_forbidden_from_this_context)
737 }
else if (
const auto *CMD = dyn_cast<CXXMethodDecl>(
CurContext)) {
739 if (!GetMethodType(CMD, CallerType,
false))
747 const auto *CalleeBinOp = dyn_cast<BinaryOperator>(CalleeExpr);
749 ? CE->getCalleeDecl()->getBeginLoc()
754 dyn_cast_or_null<CXXMethodDecl>(CE->getCalleeDecl())) {
756 if (!GetMethodType(CMD, CalleeType,
true))
758 }
else if (CalleeBinOp && CalleeBinOp->isPtrMemOp()) {
762 CalleeType.This =
QualType(MPT->getClass(), 0);
764 CalleeType.MemberType = FuncType::ft_pointer_to_member;
765 }
else if (isa<CXXPseudoDestructorExpr>(CalleeExpr)) {
777 if (!CalleeType.Func || !CallerType.Func) {
779 if (!CalleeType.Func && CE->getDirectCallee()) {
780 Diag(CE->getDirectCallee()->getBeginLoc(),
781 diag::note_musttail_fix_non_prototype);
783 if (!CallerType.Func)
784 Diag(CallerDecl->getBeginLoc(), diag::note_musttail_fix_non_prototype);
795 if (CallerType.Func->getCallConv() != CalleeType.Func->getCallConv()) {
796 if (
const auto *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl()))
798 <<
true << ND->getDeclName();
800 Diag(St->
getBeginLoc(), diag::err_musttail_callconv_mismatch) <<
false;
801 Diag(CalleeLoc, diag::note_musttail_callconv_mismatch)
808 if (CalleeType.Func->isVariadic() || CallerType.Func->isVariadic()) {
813 const auto *CalleeDecl = CE->getCalleeDecl();
814 if (CalleeDecl && CalleeDecl->hasAttr<CXX11NoReturnAttr>()) {
820 if (CallerType.This.isNull() != CalleeType.This.isNull()) {
821 if (
const auto *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) {
823 << CallerType.MemberType << CalleeType.MemberType <<
true
824 << ND->getDeclName();
825 Diag(CalleeLoc, diag::note_musttail_callee_defined_here)
826 << ND->getDeclName();
829 << CallerType.MemberType << CalleeType.MemberType <<
false;
834 auto CheckTypesMatch = [
this](FuncType CallerType, FuncType CalleeType,
844 unsigned Select) ->
bool {
852 if (!CallerType.This.isNull() &&
856 if (!DoTypesMatch(CallerType.Func->getReturnType(),
860 if (CallerType.Func->getNumParams() != CalleeType.Func->getNumParams()) {
862 << CalleeType.Func->getNumParams();
868 size_t N = CallerType.Func->getNumParams();
869 for (
size_t I = 0; I < N; I++) {
870 if (!DoTypesMatch(CalleeParams[I], CallerParams[I],
872 PD << static_cast<int>(I) + 1;
881 if (!CheckTypesMatch(CallerType, CalleeType, PD)) {
882 if (
const auto *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl()))
884 <<
true << ND->getDeclName();
900 CommaVisitor(
Sema &SemaRef) : Inherited(SemaRef.Context), SemaRef(SemaRef) {}
902 if (
E->getOpcode() == BO_Comma)
918 bool ConstevalOrNegatedConsteval =
922 Expr *CondExpr = Cond.
get().second;
923 assert((CondExpr || ConstevalOrNegatedConsteval) &&
924 "If statement: missing condition");
928 CommaVisitor(*this).Visit(CondExpr);
930 if (!ConstevalOrNegatedConsteval && !elseStmt)
933 if (ConstevalOrNegatedConsteval ||
935 auto DiagnoseLikelihood = [&](
const Stmt *S) {
938 diag::warn_attribute_has_no_effect_on_compile_time_if)
939 << A << ConstevalOrNegatedConsteval << A->getRange();
941 diag::note_attribute_has_no_effect_on_compile_time_if_here)
942 << ConstevalOrNegatedConsteval
949 DiagnoseLikelihood(thenStmt);
950 DiagnoseLikelihood(elseStmt);
952 std::tuple<bool, const Attr *, const Attr *> LHC =
954 if (std::get<0>(LHC)) {
955 const Attr *ThenAttr = std::get<1>(LHC);
956 const Attr *ElseAttr = std::get<2>(LHC);
958 diag::warn_attributes_likelihood_ifstmt_conflict)
959 << ThenAttr << ThenAttr->
getRange();
961 << ElseAttr << ElseAttr->
getRange();
965 if (ConstevalOrNegatedConsteval) {
971 if (FD && FD->isImmediateFunction())
975 Diags.
Report(IfLoc, diag::warn_consteval_if_always_true) << Immediate;
978 return BuildIfStmt(IfLoc, StatementKind, LParenLoc, InitStmt, Cond, RParenLoc,
979 thenStmt, ElseLoc, elseStmt);
992 isa<ObjCAvailabilityCheckExpr>(Cond.
get().second))
996 Cond.
get().first, Cond.
get().second, LParenLoc,
997 RParenLoc, thenStmt, ElseLoc, elseStmt);
1001 struct CaseCompareFunctor {
1002 bool operator()(
const std::pair<llvm::APSInt, CaseStmt*> &LHS,
1003 const llvm::APSInt &RHS) {
1004 return LHS.first < RHS;
1006 bool operator()(
const std::pair<llvm::APSInt, CaseStmt*> &LHS,
1007 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
1008 return LHS.first < RHS.first;
1010 bool operator()(
const llvm::APSInt &LHS,
1011 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
1012 return LHS < RHS.first;
1020 const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
1021 if (lhs.first < rhs.first)
1024 if (lhs.first == rhs.first &&
1025 lhs.second->getCaseLoc() < rhs.second->getCaseLoc())
1032static bool CmpEnumVals(
const std::pair<llvm::APSInt, EnumConstantDecl*>& lhs,
1033 const std::pair<llvm::APSInt, EnumConstantDecl*>& rhs)
1035 return lhs.first < rhs.first;
1040static bool EqEnumVals(
const std::pair<llvm::APSInt, EnumConstantDecl*>& lhs,
1041 const std::pair<llvm::APSInt, EnumConstantDecl*>& rhs)
1043 return lhs.first == rhs.first;
1049 if (
const auto *FE = dyn_cast<FullExpr>(
E))
1050 E = FE->getSubExpr();
1051 while (
const auto *ImpCast = dyn_cast<ImplicitCastExpr>(
E)) {
1052 if (ImpCast->getCastKind() != CK_IntegralCast)
break;
1053 E = ImpCast->getSubExpr();
1063 SwitchConvertDiagnoser(
Expr *Cond)
1069 return S.
Diag(
Loc, diag::err_typecheck_statement_requires_integer) <<
T;
1074 return S.
Diag(
Loc, diag::err_switch_incomplete_class_type)
1080 return S.
Diag(
Loc, diag::err_switch_explicit_conversion) <<
T << ConvTy;
1091 return S.
Diag(
Loc, diag::err_switch_multiple_conversions) <<
T;
1102 llvm_unreachable(
"conversion functions are permitted");
1104 } SwitchDiagnoser(Cond);
1113 Cond = CondResult.
get();
1126 Expr *CondExpr = Cond.
get().second;
1127 assert((Cond.
isInvalid() || CondExpr) &&
"switch with no condition");
1140 Diag(SwitchLoc, diag::warn_bool_switch_condition)
1148 LParenLoc, RParenLoc);
1154static void AdjustAPSInt(llvm::APSInt &Val,
unsigned BitWidth,
bool IsSigned) {
1155 Val = Val.extOrTrunc(BitWidth);
1156 Val.setIsSigned(IsSigned);
1162 unsigned UnpromotedWidth,
bool UnpromotedSign) {
1170 if (UnpromotedWidth < Val.getBitWidth()) {
1171 llvm::APSInt ConvVal(Val);
1172 AdjustAPSInt(ConvVal, UnpromotedWidth, UnpromotedSign);
1173 AdjustAPSInt(ConvVal, Val.getBitWidth(), Val.isSigned());
1189 const Expr *CaseExpr,
1190 EnumValsTy::iterator &EI,
1191 EnumValsTy::iterator &EIEnd,
1192 const llvm::APSInt &Val) {
1198 if (
const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
1207 if (ED->
hasAttr<FlagEnumAttr>())
1210 while (EI != EIEnd && EI->first < Val)
1213 if (EI != EIEnd && EI->first == Val)
1226 if (!CondEnumType || !CaseEnumType)
1233 if (!CaseEnumType->getDecl()->getIdentifier() &&
1234 !CaseEnumType->getDecl()->getTypedefNameForAnonDecl())
1240 S.
Diag(Case->
getExprLoc(), diag::warn_comparison_of_mixed_enum_types_switch)
1250 assert(SS ==
getCurFunction()->SwitchStack.back().getPointer() &&
1251 "switch stack missing push/pop!");
1256 SS->
setBody(BodyStmt, SwitchLoc);
1270 const Expr *CondExprBeforePromotion = CondExpr;
1276 bool HasDependentValue
1285 unsigned CondWidthBeforePromotion
1287 bool CondIsSignedBeforePromotion
1294 CaseValsTy CaseVals;
1297 typedef std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRangesTy;
1298 CaseRangesTy CaseRanges;
1302 bool CaseListIsErroneous =
false;
1310 if (
DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
1311 if (TheDefaultStmt) {
1312 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
1319 CaseListIsErroneous =
true;
1321 TheDefaultStmt = DS;
1329 HasDependentValue =
true;
1335 const Expr *LoBeforePromotion = Lo;
1342 CondIsSignedBeforePromotion);
1354 HasDependentValue =
true;
1357 CaseRanges.push_back(std::make_pair(LoVal, CS));
1359 CaseVals.push_back(std::make_pair(LoVal, CS));
1363 if (!HasDependentValue) {
1366 llvm::APSInt ConstantCondValue;
1367 bool HasConstantCond =
false;
1368 if (!TheDefaultStmt) {
1373 ConstantCondValue =
Result.Val.getInt();
1374 assert(!HasConstantCond ||
1375 (ConstantCondValue.getBitWidth() == CondWidth &&
1376 ConstantCondValue.isSigned() == CondIsSigned));
1377 Diag(SwitchLoc, diag::warn_switch_default);
1379 bool ShouldCheckConstantCond = HasConstantCond;
1384 if (!CaseVals.empty()) {
1385 for (
unsigned i = 0, e = CaseVals.size(); i != e; ++i) {
1386 if (ShouldCheckConstantCond &&
1387 CaseVals[i].first == ConstantCondValue)
1388 ShouldCheckConstantCond =
false;
1390 if (i != 0 && CaseVals[i].first == CaseVals[i-1].first) {
1393 StringRef PrevString, CurrString;
1396 if (
DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(PrevCase)) {
1397 PrevString = DeclRef->getDecl()->getName();
1399 if (
DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(CurrCase)) {
1400 CurrString = DeclRef->getDecl()->getName();
1403 CaseVals[i-1].first.toString(CaseValStr);
1405 if (PrevString == CurrString)
1406 Diag(CaseVals[i].second->getLHS()->getBeginLoc(),
1407 diag::err_duplicate_case)
1408 << (PrevString.empty() ? CaseValStr.str() : PrevString);
1410 Diag(CaseVals[i].second->getLHS()->getBeginLoc(),
1411 diag::err_duplicate_case_differing_expr)
1412 << (PrevString.empty() ? CaseValStr.str() : PrevString)
1413 << (CurrString.empty() ? CaseValStr.str() : CurrString)
1416 Diag(CaseVals[i - 1].second->getLHS()->getBeginLoc(),
1417 diag::note_duplicate_case_prev);
1420 CaseListIsErroneous =
true;
1427 if (!CaseRanges.empty()) {
1430 llvm::stable_sort(CaseRanges);
1433 std::vector<llvm::APSInt> HiVals;
1434 for (
unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
1435 llvm::APSInt &LoVal = CaseRanges[i].first;
1436 CaseStmt *CR = CaseRanges[i].second;
1439 const Expr *HiBeforePromotion = Hi;
1446 CondWidthBeforePromotion, CondIsSignedBeforePromotion);
1452 if (LoVal > HiVal) {
1455 CaseRanges.erase(CaseRanges.begin()+i);
1461 if (ShouldCheckConstantCond &&
1462 LoVal <= ConstantCondValue &&
1463 ConstantCondValue <= HiVal)
1464 ShouldCheckConstantCond =
false;
1466 HiVals.push_back(HiVal);
1472 for (
unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
1473 llvm::APSInt &CRLo = CaseRanges[i].first;
1474 llvm::APSInt &CRHi = HiVals[i];
1475 CaseStmt *CR = CaseRanges[i].second;
1480 llvm::APSInt OverlapVal(32);
1484 CaseValsTy::iterator I =
1485 llvm::lower_bound(CaseVals, CRLo, CaseCompareFunctor());
1486 if (I != CaseVals.end() && I->first < CRHi) {
1487 OverlapVal = I->first;
1488 OverlapStmt = I->second;
1492 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
1493 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
1494 OverlapVal = (I-1)->first;
1495 OverlapStmt = (I-1)->second;
1500 if (i && CRLo <= HiVals[i-1]) {
1501 OverlapVal = HiVals[i-1];
1502 OverlapStmt = CaseRanges[i-1].second;
1510 diag::note_duplicate_case_prev);
1513 CaseListIsErroneous =
true;
1519 if (!CaseListIsErroneous && !CaseListIsIncomplete &&
1520 ShouldCheckConstantCond) {
1523 Diag(CondExpr->
getExprLoc(), diag::warn_missing_case_for_condition)
1536 if (!CaseListIsErroneous && !CaseListIsIncomplete && !HasConstantCond &&
1545 llvm::APSInt Val = EDI->getInitVal();
1547 EnumVals.push_back(std::make_pair(Val, EDI));
1550 auto EI = EnumVals.begin(), EIEnd =
1551 std::unique(EnumVals.begin(), EnumVals.end(),
EqEnumVals);
1554 for (CaseValsTy::const_iterator CI = CaseVals.begin();
1555 CI != CaseVals.end(); CI++) {
1556 Expr *CaseExpr = CI->second->getLHS();
1560 << CondTypeBeforePromotion;
1564 EI = EnumVals.begin();
1565 for (CaseRangesTy::const_iterator RI = CaseRanges.begin();
1566 RI != CaseRanges.end(); RI++) {
1567 Expr *CaseExpr = RI->second->getLHS();
1571 << CondTypeBeforePromotion;
1574 RI->second->getRHS()->EvaluateKnownConstInt(
Context);
1577 CaseExpr = RI->second->getRHS();
1581 << CondTypeBeforePromotion;
1585 auto CI = CaseVals.begin();
1586 auto RI = CaseRanges.begin();
1587 bool hasCasesNotInSwitch =
false;
1591 for (EI = EnumVals.begin(); EI != EIEnd; EI++) {
1593 switch (EI->second->getAvailability()) {
1606 if (EI->second->hasAttr<UnusedAttr>())
1610 while (CI != CaseVals.end() && CI->first < EI->first)
1613 if (CI != CaseVals.end() && CI->first == EI->first)
1617 for (; RI != CaseRanges.end(); RI++) {
1619 RI->second->getRHS()->EvaluateKnownConstInt(
Context);
1621 if (EI->first <= Hi)
1625 if (RI == CaseRanges.end() || EI->first < RI->first) {
1626 hasCasesNotInSwitch =
true;
1627 UnhandledNames.push_back(EI->second->getDeclName());
1631 if (TheDefaultStmt && UnhandledNames.empty() && ED->
isClosedNonFlag())
1635 if (!UnhandledNames.empty()) {
1637 ? diag::warn_def_missing_case
1638 : diag::warn_missing_case)
1641 for (
size_t I = 0,
E = std::min(UnhandledNames.size(), (
size_t)3);
1643 DB << UnhandledNames[I];
1646 if (!hasCasesNotInSwitch)
1653 diag::warn_empty_switch_body);
1657 if (CaseListIsErroneous)
1680 const EnumDecl *ED = ET->getDecl();
1685 if (ED->
hasAttr<FlagEnumAttr>()) {
1697 llvm::APSInt Val = EDI->getInitVal();
1699 EnumVals.push_back(std::make_pair(Val, EDI));
1701 if (EnumVals.empty())
1704 EnumValsTy::iterator EIend =
1705 std::unique(EnumVals.begin(), EnumVals.end(),
EqEnumVals);
1708 EnumValsTy::const_iterator EI = EnumVals.begin();
1709 while (EI != EIend && EI->first < RhsVal)
1711 if (EI == EIend || EI->first != RhsVal) {
1726 auto CondVal = Cond.
get();
1727 CheckBreakContinueBinding(CondVal.second);
1729 if (CondVal.second &&
1730 !
Diags.
isIgnored(diag::warn_comma_operator, CondVal.second->getExprLoc()))
1731 CommaVisitor(*this).Visit(CondVal.second);
1733 if (isa<NullStmt>(Body))
1737 WhileLoc, LParenLoc, RParenLoc);
1744 assert(Cond &&
"ActOnDoStmt(): missing expression");
1746 CheckBreakContinueBinding(Cond);
1750 Cond = CondResult.
get();
1755 Cond = CondResult.
get();
1760 CommaVisitor(*this).Visit(Cond);
1762 return new (
Context)
DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen);
1773 DeclSetVector &Decls;
1779 DeclExtractor(
Sema &S, DeclSetVector &Decls,
1781 Inherited(S.Context),
1786 bool isSimple() {
return Simple; }
1795 void VisitStmt(
Stmt *S) { Simple =
false; }
1803 Visit(
E->getSubExpr());
1808 if (
E->getOpcode() == UO_Deref)
1811 Visit(
E->getSubExpr());
1815 Visit(
E->getCond());
1816 Visit(
E->getTrueExpr());
1817 Visit(
E->getFalseExpr());
1821 Visit(
E->getSubExpr());
1825 Visit(
E->getOpaqueValue()->getSourceExpr());
1826 Visit(
E->getFalseExpr());
1837 VarDecl *VD = dyn_cast<VarDecl>(
E->getDecl());
1854 DeclSetVector &Decls;
1860 DeclMatcher(
Sema &S, DeclSetVector &Decls,
Stmt *Statement) :
1861 Inherited(S.Context), Decls(Decls), FoundDecl(
false) {
1862 if (!Statement)
return;
1880 if (
E->getCastKind() == CK_LValueToRValue)
1881 CheckLValueToRValueCast(
E->getSubExpr());
1883 Visit(
E->getSubExpr());
1886 void CheckLValueToRValueCast(
Expr *
E) {
1889 if (isa<DeclRefExpr>(
E)) {
1894 Visit(CO->getCond());
1895 CheckLValueToRValueCast(CO->getTrueExpr());
1896 CheckLValueToRValueCast(CO->getFalseExpr());
1901 dyn_cast<BinaryConditionalOperator>(
E)) {
1902 CheckLValueToRValueCast(BCO->getOpaqueValue()->getSourceExpr());
1903 CheckLValueToRValueCast(BCO->getFalseExpr());
1911 if (
VarDecl *VD = dyn_cast<VarDecl>(
E->getDecl()))
1912 if (Decls.count(VD))
1920 if (
auto *OVE = dyn_cast<OpaqueValueExpr>(S))
1922 Visit(OVE->getSourceExpr());
1928 bool FoundDeclInUse() {
return FoundDecl; }
1932 void CheckForLoopConditionalStatement(
Sema &S,
Expr *Second,
1935 if (!Second)
return;
1942 DeclSetVector Decls;
1944 DeclExtractor DE(S, Decls, Ranges);
1948 if (!DE.isSimple())
return;
1951 if (Decls.size() == 0)
return;
1954 for (
auto *VD : Decls)
1958 if (DeclMatcher(S, Decls, Second).FoundDeclInUse() ||
1959 DeclMatcher(S, Decls, Third).FoundDeclInUse() ||
1960 DeclMatcher(S, Decls, Body).FoundDeclInUse())
1964 if (Decls.size() > 4) {
1968 for (
auto *VD : Decls)
1972 for (
auto Range : Ranges)
1975 S.
Diag(Ranges.begin()->getBegin(), PDiag);
1980 bool ProcessIterationStmt(
Sema &S,
Stmt* Statement,
bool &Increment,
1982 if (
auto Cleanups = dyn_cast<ExprWithCleanups>(Statement))
1983 if (!Cleanups->cleanupsHaveSideEffects())
1986 if (
UnaryOperator *UO = dyn_cast<UnaryOperator>(Statement)) {
1987 switch (UO->getOpcode()) {
1988 default:
return false;
1998 DRE = dyn_cast<DeclRefExpr>(UO->getSubExpr());
2006 default:
return false;
2014 DRE = dyn_cast<DeclRefExpr>(
Call->getArg(0));
2026 bool InSwitch =
false;
2029 BreakContinueFinder(
Sema &S,
const Stmt* Body) :
2030 Inherited(S.Context) {
2037 ContinueLoc =
E->getContinueLoc();
2042 BreakLoc =
E->getBreakLoc();
2046 if (
const Stmt *
Init = S->getInit())
2048 if (
const Stmt *CondVar = S->getConditionVariableDeclStmt())
2050 if (
const Stmt *Cond = S->getCond())
2055 if (
const Stmt *Body = S->getBody())
2060 void VisitForStmt(
const ForStmt *S) {
2063 if (
const Stmt *
Init = S->getInit())
2067 void VisitWhileStmt(
const WhileStmt *) {
2072 void VisitDoStmt(
const DoStmt *) {
2080 if (
const Stmt *
Init = S->getInit())
2082 if (
const Stmt *
Range = S->getRangeStmt())
2084 if (
const Stmt *
Begin = S->getBeginStmt())
2086 if (
const Stmt *End = S->getEndStmt())
2093 if (
const Stmt *Element = S->getElement())
2095 if (
const Stmt *Collection = S->getCollection())
2099 bool ContinueFound() {
return ContinueLoc.
isValid(); }
2100 bool BreakFound() {
return BreakLoc.
isValid(); }
2111 void CheckForRedundantIteration(
Sema &S,
Expr *Third,
Stmt *Body) {
2113 if (!Body || !Third)
return;
2123 if (!LastStmt)
return;
2125 bool LoopIncrement, LastIncrement;
2128 if (!ProcessIterationStmt(S, Third, LoopIncrement, LoopDRE))
return;
2129 if (!ProcessIterationStmt(S, LastStmt, LastIncrement, LastDRE))
return;
2133 if (LoopIncrement != LastIncrement ||
2136 if (BreakContinueFinder(S, Body).ContinueFound())
return;
2139 << LastDRE->
getDecl() << LastIncrement;
2147void Sema::CheckBreakContinueBinding(
Expr *
E) {
2150 BreakContinueFinder BCFinder(*
this,
E);
2152 if (BCFinder.BreakFound() && BreakParent) {
2154 Diag(BCFinder.GetBreakLoc(), diag::warn_break_binds_to_switch);
2156 Diag(BCFinder.GetBreakLoc(), diag::warn_loop_ctrl_binds_to_inner)
2160 Diag(BCFinder.GetContinueLoc(), diag::warn_loop_ctrl_binds_to_inner)
2177 const Decl *NonVarSeen =
nullptr;
2178 bool VarDeclSeen =
false;
2179 for (
auto *DI : DS->decls()) {
2180 if (
VarDecl *VD = dyn_cast<VarDecl>(DI)) {
2183 Diag(DI->getLocation(), diag::err_non_local_variable_decl_in_for);
2184 DI->setInvalidDecl();
2186 }
else if (!NonVarSeen) {
2196 if (NonVarSeen && !VarDeclSeen)
2201 CheckBreakContinueBinding(Second.
get().second);
2202 CheckBreakContinueBinding(third.
get());
2204 if (!Second.
get().first)
2205 CheckForLoopConditionalStatement(*
this, Second.
get().second, third.
get(),
2207 CheckForRedundantIteration(*
this, third.
get(), Body);
2209 if (Second.
get().second &&
2211 Second.
get().second->getExprLoc()))
2212 CommaVisitor(*this).Visit(Second.
get().second);
2215 if (isa<NullStmt>(Body))
2220 Body, ForLoc, LParenLoc, RParenLoc);
2240 if (
Decl->getType()->isUndeducedType()) {
2252 if (!isa<InitListExpr>(
Init) &&
Init->getType()->isVoidType()) {
2257 Decl->getTypeSourceInfo()->getTypeLoc(),
Init, InitType, Info);
2267 Decl->setType(InitType);
2285enum BeginEndFunction {
2294void NoteForRangeBeginEndFunction(
Sema &SemaRef,
Expr *
E,
2295 BeginEndFunction BEF) {
2304 std::string Description;
2305 bool IsTemplate =
false;
2308 FunTmpl->getTemplateParameters(), *
D->getTemplateSpecializationArgs());
2312 SemaRef.
Diag(
Loc, diag::note_for_range_begin_end)
2313 << BEF << IsTemplate << Description <<
E->
getType();
2347 return Diag(InitStmt->
getBeginLoc(), diag::err_objc_for_range_init_stmt)
2353 assert(DS &&
"first part of for range not a decl stmt");
2380 const auto DepthStr = std::to_string(S->getDepth() / 2);
2382 VarDecl *RangeVar = BuildForRangeVarDecl(*
this, RangeLoc,
2384 std::string(
"__range") + DepthStr);
2386 diag::err_for_range_deduction_failure)) {
2401 ForLoc, CoawaitLoc, InitStmt, ColonLoc, RangeDecl.
get(),
2403 nullptr,
nullptr, DS, RParenLoc, Kind,
2404 LifetimeExtendTemps);
2427 ExprResult *EndExpr, BeginEndFunction *BEF) {
2437 auto BuildBegin = [&] {
2441 BeginMemberLookup, CandidateSet,
2442 BeginRange, BeginExpr);
2447 << ColonLoc << BEF_begin << BeginRange->
getType();
2460 diag::err_for_range_iter_deduction_failure)) {
2461 NoteForRangeBeginEndFunction(SemaRef, BeginExpr->
get(), *BEF);
2467 auto BuildEnd = [&] {
2471 EndMemberLookup, CandidateSet,
2476 << ColonLoc << BEF_end << EndRange->
getType();
2480 diag::err_for_range_iter_deduction_failure)) {
2481 NoteForRangeBeginEndFunction(SemaRef, EndExpr->
get(), *BEF);
2501 if (BeginMemberLookup.
empty() != EndMemberLookup.
empty()) {
2506 auto BuildNonmember = [&](
2516 switch (BuildFound()) {
2523 SemaRef.
PDiag(diag::err_for_range_invalid)
2524 << BeginRange->
getType() << BEFFound),
2531 diag::note_for_range_member_begin_end_ignored)
2532 << BeginRange->
getType() << BEFFound;
2536 llvm_unreachable(
"unexpected ForRangeStatus");
2538 if (BeginMemberLookup.
empty())
2539 return BuildNonmember(BEF_end, EndMemberLookup, BuildEnd, BuildBegin);
2540 return BuildNonmember(BEF_begin, BeginMemberLookup, BuildBegin, BuildEnd);
2577 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc,
2586 SemaRef.
Diag(RangeLoc, diag::err_for_range_dereference)
2589 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc,
2610 DeclStmt *RangeDS = cast<DeclStmt>(RangeDecl);
2614 DeclStmt *LoopVarDS = cast<DeclStmt>(LoopVarDecl);
2628 if (
auto *DD = dyn_cast<DecompositionDecl>(LoopVar))
2629 for (
auto *Binding : DD->bindings())
2633 }
else if (!BeginDeclStmt.
get()) {
2655 diag::err_for_range_incomplete_type))
2662 for (
auto *MTE : LifetimeExtendTemps)
2668 const auto DepthStr = std::to_string(S->getDepth() / 2);
2670 std::string(
"__begin") + DepthStr);
2672 std::string(
"__end") + DepthStr);
2683 BeginExpr = BeginRangeRef;
2690 diag::err_for_range_iter_deduction_failure)) {
2691 NoteForRangeBeginEndFunction(*
this, BeginExpr.
get(), BEF_begin);
2701 dyn_cast<VariableArrayType>(UnqAT)) {
2728 VAT->desugar(), RangeLoc))
2739 VAT->getElementType(), RangeLoc))
2747 SizeOfVLAExprR.
get(), SizeOfEachElementExprR.
get());
2754 llvm_unreachable(
"Unexpected array type in for-range");
2758 EndExpr =
ActOnBinOp(S, ColonLoc, tok::plus, EndRangeRef.
get(),
2763 diag::err_for_range_iter_deduction_failure)) {
2764 NoteForRangeBeginEndFunction(*
this, EndExpr.
get(), BEF_end);
2770 BeginEndFunction BEFFailure;
2772 *
this, BeginRangeRef.
get(), EndRangeRef.
get(), RangeType, BeginVar,
2773 EndVar, ColonLoc, CoawaitLoc, &CandidateSet, &BeginExpr, &EndExpr,
2777 BEFFailure == BEF_begin) {
2782 QualType ArrayTy = PVD->getOriginalType();
2783 QualType PointerTy = PVD->getType();
2785 Diag(
Range->getBeginLoc(), diag::err_range_on_array_parameter)
2786 << RangeLoc << PVD << ArrayTy << PointerTy;
2787 Diag(PVD->getLocation(), diag::note_declared_at);
2796 CoawaitLoc, InitStmt,
2797 LoopVarDecl, ColonLoc,
2809 PDiag(diag::err_for_range_invalid)
2810 << RangeLoc <<
Range->getType()
2820 "invalid range expression in for loop");
2827 ? diag::warn_for_range_begin_end_types_differ
2828 : diag::ext_for_range_begin_end_types_differ)
2829 << BeginType << EndType;
2830 NoteForRangeBeginEndFunction(*
this, BeginExpr.
get(), BEF_begin);
2831 NoteForRangeBeginEndFunction(*
this, EndExpr.
get(), BEF_end);
2851 NotEqExpr =
ActOnBinOp(S, ColonLoc, tok::exclaimequal,
2852 BeginRef.
get(), EndRef.
get());
2859 Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2860 << RangeLoc << 0 << BeginRangeRef.
get()->
getType();
2861 NoteForRangeBeginEndFunction(*
this, BeginExpr.
get(), BEF_begin);
2863 NoteForRangeBeginEndFunction(*
this, EndExpr.
get(), BEF_end);
2874 if (!IncrExpr.isInvalid() && CoawaitLoc.
isValid())
2879 if (!IncrExpr.isInvalid())
2881 if (IncrExpr.isInvalid()) {
2882 Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2883 << RangeLoc << 2 << BeginRangeRef.
get()->
getType() ;
2884 NoteForRangeBeginEndFunction(*
this, BeginExpr.
get(), BEF_begin);
2896 Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2897 << RangeLoc << 1 << BeginRangeRef.
get()->
getType();
2898 NoteForRangeBeginEndFunction(*
this, BeginExpr.
get(), BEF_begin);
2908 NoteForRangeBeginEndFunction(*
this, BeginExpr.
get(), BEF_begin);
2923 InitStmt, RangeDS, cast_or_null<DeclStmt>(BeginDeclStmt.
get()),
2924 cast_or_null<DeclStmt>(EndDeclStmt.
get()), NotEqExpr.
get(),
2925 IncrExpr.get(), LoopVarDS,
nullptr, ForLoc, CoawaitLoc,
2926 ColonLoc, RParenLoc);
2945 if (
auto Cleanups = dyn_cast<ExprWithCleanups>(InitExpr))
2946 if (!Cleanups->cleanupsHaveSideEffects())
2947 InitExpr = Cleanups->getSubExpr();
2950 dyn_cast<MaterializeTemporaryExpr>(InitExpr);
2960 while (!isa<CXXOperatorCallExpr>(
E) && !isa<UnaryOperator>(
E)) {
2974 if (isa<UnaryOperator>(
E)) {
2981 ReferenceReturnType = ReturnType;
2984 if (!ReferenceReturnType.
isNull()) {
2989 diag::warn_for_range_const_ref_binds_temp_built_from_ref)
2990 << VD << VariableType << ReferenceReturnType;
3003 SemaRef.
Diag(VD->
getLocation(), diag::warn_for_range_ref_binds_ret_temp)
3004 << VD << RangeInitType;
3017 return RD->hasAttr<TrivialABIAttr>();
3034 if (!CE->getConstructor()->isCopyConstructor())
3036 }
else if (
const CastExpr *CE = dyn_cast<CastExpr>(InitExpr)) {
3037 if (CE->getCastKind() != CK_LValueToRValue)
3055 << VD << VariableType;
3076 diag::warn_for_range_const_ref_binds_temp_built_from_ref,
3103 ForStmt->getRangeInit()->getType());
3113 if (isa<ObjCForCollectionStmt>(S))
3120 diag::warn_empty_range_based_for_body);
3134 if (
getCurScope()->isInOpenACCComputeConstructScope())
3167 if (
getCurScope()->isInOpenACCComputeConstructScope())
3174 const Scope &DestScope) {
3177 S.
Diag(
Loc, diag::warn_jump_out_of_seh_finally);
3186 return StmtError(
Diag(ContinueLoc, diag::err_continue_not_in_loop));
3188 if (S->isConditionVarScope()) {
3192 return StmtError(
Diag(ContinueLoc, diag::err_continue_from_cond_var_init));
3198 if (S->isOpenACCComputeConstructScope())
3200 Diag(ContinueLoc, diag::err_acc_branch_in_out_compute_construct)
3213 return StmtError(
Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
3215 if (S->isOpenMPLoopScope())
3216 return StmtError(
Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt)
3226 if (S->isOpenACCComputeConstructScope() ||
3227 (S->isLoopScope() && S->getParent() &&
3228 S->getParent()->isOpenACCComputeConstructScope()))
3230 Diag(BreakLoc, diag::err_acc_branch_in_out_compute_construct)
3245 if (!DR || DR->refersToEnclosingVariableOrCapture())
3247 const auto *VD = dyn_cast<VarDecl>(DR->getDecl());
3270 if (VD->
getKind() == Decl::ParmVar)
3272 else if (VD->
getKind() != Decl::Var)
3285 if (VD->
hasAttr<BlocksAttr>())
3321 auto invalidNRVO = [&] {
3330 if ((ReturnType->
getTypeClass() == Type::TypeClass::Auto &&
3333 return invalidNRVO();
3339 return invalidNRVO();
3359 const auto *Step = llvm::find_if(
Seq.steps(), [](
const auto &Step) {
3360 return Step.Kind == InitializationSequence::SK_ConstructorInitialization ||
3361 Step.Kind == InitializationSequence::SK_UserConversion;
3363 if (Step !=
Seq.step_end()) {
3364 const auto *FD = Step->Function.Function;
3365 if (isa<CXXConstructorDecl>(FD)
3367 : cast<CXXMethodDecl>(FD)->getRefQualifier() ==
RQ_None)
3375 bool SupressSimplerImplicitMoves) {
3381 Expr *InitExpr = &AsRvalue;
3383 Value->getBeginLoc());
3385 auto Res =
Seq.getFailedOverloadResult();
3396 return Seq.Perform(*
this, Entity, Kind,
Value);
3416 bool SupressSimplerImplicitMoves) {
3424 bool HasDeducedReturnType =
3434 RetValExp = ER.
get();
3440 if (HasDeducedReturnType) {
3453 assert(AT &&
"lost auto type from lambda return type");
3465 if (RetValExp && !isa<InitListExpr>(RetValExp)) {
3469 RetValExp =
Result.get();
3484 Diag(ReturnLoc, diag::err_lambda_return_init_list)
3498 if (
auto *CurBlock = dyn_cast<BlockScopeInfo>(CurCap)) {
3500 Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr);
3503 }
else if (
auto *CurRegion = dyn_cast<CapturedRegionScopeInfo>(CurCap)) {
3504 Diag(ReturnLoc, diag::err_return_in_captured_stmt) << CurRegion->getRegionName();
3507 assert(CurLambda &&
"unknown kind of captured scope");
3511 Diag(ReturnLoc, diag::err_noreturn_lambda_has_return_expr);
3523 if (RetValExp && !isa<InitListExpr>(RetValExp) &&
3529 Diag(ReturnLoc, diag::ext_return_has_void_expr) <<
"literal" << 2;
3531 Diag(ReturnLoc, diag::err_return_block_has_expr);
3532 RetValExp =
nullptr;
3535 }
else if (!RetValExp) {
3536 return StmtError(
Diag(ReturnLoc, diag::err_block_return_missing_expr));
3549 Entity, NRInfo, RetValExp, SupressSimplerImplicitMoves);
3554 RetValExp = Res.
get();
3555 CheckReturnValExpr(RetValExp, FnRetType, ReturnLoc);
3563 RetValExp = ER.
get();
3577 if (
auto *CurBlock = dyn_cast<BlockScopeInfo>(CurCap);
3580 CurBlock->TheDecl->setInvalidDecl();
3598class LocalTypedefNameReferencer
3601 LocalTypedefNameReferencer(
Sema &S) : S(S) {}
3606bool LocalTypedefNameReferencer::VisitRecordType(
const RecordType *RT) {
3607 auto *R = dyn_cast<CXXRecordDecl>(RT->
getDecl());
3608 if (!R || !R->isLocalClass() || !R->isLocalClass()->isExternallyVisible() ||
3609 R->isDependentType())
3611 for (
auto *TmpD : R->decls())
3612 if (
auto *
T = dyn_cast<TypedefNameDecl>(TmpD))
3613 if (
T->getAccess() !=
AS_private || R->hasFriends())
3635 if (isa_and_nonnull<InitListExpr>(RetExpr)) {
3640 : diag::err_auto_fn_return_init_list)
3650 assert(AT->
isDeduced() &&
"should have deduced to dependent type");
3664 Diag(ReturnLoc, diag::err_auto_fn_return_void_but_not_auto)
3680 if (FindResult.Expression)
3681 TemplateSpecLoc = FindResult.Expression->getNameLoc();
3685 OrigResultType, RetExpr, Deduced, Info,
false,
3701 Diag(ReturnLoc, diag::err_typecheck_missing_return_type_incompatible)
3704 Diag(ReturnLoc, diag::err_auto_fn_different_deductions)
3719 LocalTypedefNameReferencer(*this).TraverseType(RetExpr->
getType());
3742 RetValExp,
nullptr,
true);
3746 if (
getCurScope()->isInOpenACCComputeConstructScope())
3748 Diag(ReturnLoc, diag::err_acc_branch_in_out_compute_construct)
3755 "first coroutine location not set");
3756 Diag(ReturnLoc, diag::err_return_in_coroutine);
3767 const_cast<VarDecl *
>(cast<ReturnStmt>(R.
get())->getNRVOCandidate());
3791 bool AllowRecovery) {
3799 bool SupressSimplerImplicitMoves =
3807 SupressSimplerImplicitMoves);
3811 const AttrVec *Attrs =
nullptr;
3812 bool isObjCMethod =
false;
3819 Diag(ReturnLoc, diag::warn_noreturn_function_has_return_expr) << FD;
3820 if (FD->
isMain() && RetValExp)
3821 if (isa<CXXBoolLiteralExpr>(RetValExp))
3822 Diag(ReturnLoc, diag::warn_main_returns_bool_literal)
3824 if (FD->
hasAttr<CmseNSEntryAttr>() && RetValExp) {
3831 FnRetType = MD->getReturnType();
3832 isObjCMethod =
true;
3834 Attrs = &MD->getAttrs();
3835 if (MD->hasRelatedResultType() && MD->getClassInterface()) {
3846 const auto *ATy = dyn_cast<ArrayType>(RetValExp->
getType());
3847 if (ATy && ATy->getElementType().isWebAssemblyReferenceType()) {
3848 Diag(ReturnLoc, diag::err_wasm_table_art) << 1;
3862 RetValExp = ER.
get();
3888 AT->isDeduced() ? FnRetType :
QualType());
3889 if (Recovery.isInvalid())
3891 RetValExp = Recovery.get();
3907 if (
auto *ILE = dyn_cast<InitListExpr>(RetValExp)) {
3912 int FunctionKind = 0;
3913 if (isa<ObjCMethodDecl>(CurDecl))
3915 else if (isa<CXXConstructorDecl>(CurDecl))
3917 else if (isa<CXXDestructorDecl>(CurDecl))
3920 Diag(ReturnLoc, diag::err_return_init_list)
3924 RetValExp = AllowRecovery
3926 ILE->getRBraceLoc(), ILE->inits())
3931 unsigned D = diag::ext_return_has_expr;
3934 if (isa<CXXConstructorDecl>(CurDecl) ||
3935 isa<CXXDestructorDecl>(CurDecl))
3936 D = diag::err_ctor_dtor_returns_void;
3938 D = diag::ext_return_has_void_expr;
3945 RetValExp =
Result.get();
3950 if (
D == diag::err_ctor_dtor_returns_void) {
3952 Diag(ReturnLoc,
D) << CurDecl << isa<CXXDestructorDecl>(CurDecl)
3956 else if (
D != diag::ext_return_has_void_expr ||
3960 int FunctionKind = 0;
3961 if (isa<ObjCMethodDecl>(CurDecl))
3963 else if (isa<CXXConstructorDecl>(CurDecl))
3965 else if (isa<CXXDestructorDecl>(CurDecl))
3978 RetValExp = ER.
get();
3984 }
else if (!RetValExp && !HasDependentReturnType) {
3991 Diag(ReturnLoc, diag::err_constexpr_return_missing_expr)
3997 unsigned DiagID =
getLangOpts().C99 ? diag::ext_return_missing_expr
3998 : diag::warn_return_missing_expr;
4002 "Not in a FunctionDecl or ObjCMethodDecl?");
4003 bool IsMethod = FD ==
nullptr;
4006 Diag(ReturnLoc, DiagID) << ND << IsMethod;
4012 assert(RetValExp || HasDependentReturnType);
4013 QualType RetType = RelatedRetType.
isNull() ? FnRetType : RelatedRetType;
4026 Entity, NRInfo, RetValExp, SupressSimplerImplicitMoves);
4029 RetValExp->
getEndLoc(), RetValExp, RetType);
4040 if (!RelatedRetType.
isNull()) {
4051 CheckReturnValExpr(RetValExp, FnRetType, ReturnLoc, isObjCMethod, Attrs,
4060 RetValExp = ER.
get();
4067 if (
Result->getNRVOCandidate())
4078 Stmt *HandlerBlock) {
4081 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock);
4085class CatchHandlerType {
4087 LLVM_PREFERRED_TYPE(
bool)
4088 unsigned IsPointer : 1;
4092 friend struct llvm::DenseMapInfo<CatchHandlerType>;
4093 enum Unique { ForDenseMap };
4094 CatchHandlerType(
QualType QT, Unique) : QT(QT), IsPointer(
false) {}
4112 CatchHandlerType(
QualType QT,
bool IsPointer)
4113 : QT(QT), IsPointer(IsPointer) {}
4115 QualType underlying()
const {
return QT; }
4116 bool isPointer()
const {
return IsPointer; }
4118 friend bool operator==(
const CatchHandlerType &LHS,
4119 const CatchHandlerType &RHS) {
4121 if (LHS.IsPointer != RHS.IsPointer)
4124 return LHS.QT == RHS.QT;
4130template <>
struct DenseMapInfo<CatchHandlerType> {
4132 return CatchHandlerType(DenseMapInfo<QualType>::getEmptyKey(),
4133 CatchHandlerType::ForDenseMap);
4137 return CatchHandlerType(DenseMapInfo<QualType>::getTombstoneKey(),
4138 CatchHandlerType::ForDenseMap);
4142 return DenseMapInfo<QualType>::getHashValue(
Base.underlying());
4146 const CatchHandlerType &RHS) {
4153class CatchTypePublicBases {
4154 const llvm::DenseMap<QualType, CXXCatchStmt *> &TypesToCheck;
4161 CatchTypePublicBases(
const llvm::DenseMap<QualType, CXXCatchStmt *> &
T,
4163 : TypesToCheck(
T), FoundHandler(nullptr), TestAgainstType(QT) {}
4165 CXXCatchStmt *getFoundHandler()
const {
return FoundHandler; }
4166 QualType getFoundHandlerType()
const {
return FoundHandlerType; }
4169 if (S->getAccessSpecifier() == AccessSpecifier::AS_public) {
4170 QualType Check = S->getType().getCanonicalType();
4171 const auto &M = TypesToCheck;
4172 auto I = M.find(Check);
4184 if (I->second->getCaughtType()->isPointerType() ==
4186 FoundHandler = I->second;
4187 FoundHandlerType = Check;
4200 const bool IsOpenMPGPUTarget =
4201 getLangOpts().OpenMPIsTargetDevice && (
T.isNVPTX() ||
T.isAMDGCN());
4204 if (!IsOpenMPGPUTarget && !
getLangOpts().CXXExceptions &&
4207 targetDiag(TryLoc, diag::err_exceptions_disabled) <<
"try";
4212 if (IsOpenMPGPUTarget)
4213 targetDiag(TryLoc, diag::warn_try_not_valid_on_target) <<
T.str();
4218 <<
"try" << llvm::to_underlying(
CUDA().CurrentTarget());
4221 Diag(TryLoc, diag::err_omp_simd_region_cannot_use_stmt) <<
"try";
4227 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try) << 0;
4231 const unsigned NumHandlers = Handlers.size();
4232 assert(!Handlers.empty() &&
4233 "The parser shouldn't call this if there are no handlers.");
4235 llvm::DenseMap<QualType, CXXCatchStmt *> HandledBaseTypes;
4236 llvm::DenseMap<CatchHandlerType, CXXCatchStmt *> HandledTypes;
4237 for (
unsigned i = 0; i < NumHandlers; ++i) {
4244 if (i < NumHandlers - 1)
4258 QualType Underlying = HandlerCHT.underlying();
4260 if (!RD->hasDefinition())
4268 Paths.setOrigin(RD);
4269 CatchTypePublicBases CTPB(HandledBaseTypes,
4271 if (RD->lookupInBases(CTPB, Paths)) {
4273 if (!Paths.isAmbiguous(
4276 diag::warn_exception_caught_by_earlier_handler)
4279 diag::note_previous_exception_handler)
4291 auto R = HandledTypes.insert(
4296 diag::warn_exception_caught_by_earlier_handler)
4299 diag::note_previous_exception_handler)
4312 assert(TryBlock && Handler);
4339 Diag(TryLoc, diag::err_seh_try_outside_functions);
4343 Diag(TryLoc, diag::err_seh_try_unsupported);
4350 assert(FilterExpr &&
Block);
4354 Diag(FilterExpr->
getExprLoc(), diag::err_filter_expression_integral)
4376 Scope *SEHTryParent = CurScope;
4378 SEHTryParent = SEHTryParent->
getParent();
4393 QualifierLoc, NameInfo,
4394 cast<CompoundStmt>(Nested));
4411 unsigned NumParams) {
4429 assert(NumParams > 0 &&
"CapturedStmt requires context parameter");
4473 CaptureInits.push_back(
Init.get());
4480 unsigned NumParams) {
4511 unsigned OpenMPCaptureLevel) {
4517 bool ContextIsFound =
false;
4518 unsigned ParamNum = 0;
4521 I !=
E; ++I, ++ParamNum) {
4522 if (I->second.isNull()) {
4523 assert(!ContextIsFound &&
4524 "null type has been found already for '__context' parameter");
4534 ContextIsFound =
true;
4544 assert(ContextIsFound &&
"no null type for '__context' parameter");
4545 if (!ContextIsFound) {
4601 Captures, CaptureInits, CD, RD);
Defines the clang::ASTContext interface.
This file provides some common utility functions for processing Lambda related AST Constructs.
Defines the clang::Expr interface and subclasses for C++ expressions.
llvm::MachO::Record Record
Defines the clang::Preprocessor interface.
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
This file declares semantic analysis for CUDA constructs.
This file declares semantic analysis for Objective-C.
This file declares semantic analysis for OpenMP constructs and clauses.
static bool CmpEnumVals(const std::pair< llvm::APSInt, EnumConstantDecl * > &lhs, const std::pair< llvm::APSInt, EnumConstantDecl * > &rhs)
CmpEnumVals - Comparison predicate for sorting enumeration values.
static bool FinishForRangeVarDecl(Sema &SemaRef, VarDecl *Decl, Expr *Init, SourceLocation Loc, int DiagID)
Finish building a variable declaration for a for-range statement.
static bool CmpCaseVals(const std::pair< llvm::APSInt, CaseStmt * > &lhs, const std::pair< llvm::APSInt, CaseStmt * > &rhs)
CmpCaseVals - Comparison predicate for sorting case values.
SmallVector< std::pair< llvm::APSInt, EnumConstantDecl * >, 64 > EnumValsTy
static bool ShouldDiagnoseSwitchCaseNotInEnum(const Sema &S, const EnumDecl *ED, const Expr *CaseExpr, EnumValsTy::iterator &EI, EnumValsTy::iterator &EIEnd, const llvm::APSInt &Val)
Returns true if we should emit a diagnostic about this case expression not being a part of the enum u...
static bool DiagnoseUnusedComparison(Sema &S, const Expr *E)
Diagnose unused comparisons, both builtin and overloaded operators.
static bool EqEnumVals(const std::pair< llvm::APSInt, EnumConstantDecl * > &lhs, const std::pair< llvm::APSInt, EnumConstantDecl * > &rhs)
EqEnumVals - Comparison preficate for uniqing enumeration values.
static bool hasDeducedReturnType(FunctionDecl *FD)
Determine whether the declared return type of the specified function contains 'auto'.
static bool ObjCEnumerationCollection(Expr *Collection)
static void DiagnoseForRangeConstVariableCopies(Sema &SemaRef, const VarDecl *VD)
static StmtResult RebuildForRangeWithDereference(Sema &SemaRef, Scope *S, SourceLocation ForLoc, SourceLocation CoawaitLoc, Stmt *InitStmt, Stmt *LoopVarDecl, SourceLocation ColonLoc, Expr *Range, SourceLocation RangeLoc, SourceLocation RParenLoc)
Speculatively attempt to dereference an invalid range expression.
static void checkEnumTypesInSwitchStmt(Sema &S, const Expr *Cond, const Expr *Case)
static void DiagnoseForRangeReferenceVariableCopies(Sema &SemaRef, const VarDecl *VD, QualType RangeInitType)
static void DiagnoseForRangeVariableCopies(Sema &SemaRef, const CXXForRangeStmt *ForStmt)
DiagnoseForRangeVariableCopies - Diagnose three cases and fixes for them.
static bool CheckSimplerImplicitMovesMSVCWorkaround(const Sema &S, const Expr *E)
static bool VerifyInitializationSequenceCXX98(const Sema &S, const InitializationSequence &Seq)
Verify that the initialization sequence that was picked for the first overload resolution is permissi...
static QualType GetTypeBeforeIntegralPromotion(const Expr *&E)
GetTypeBeforeIntegralPromotion - Returns the pre-promotion type of potentially integral-promoted expr...
static Sema::ForRangeStatus BuildNonArrayForRange(Sema &SemaRef, Expr *BeginRange, Expr *EndRange, QualType RangeType, VarDecl *BeginVar, VarDecl *EndVar, SourceLocation ColonLoc, SourceLocation CoawaitLoc, OverloadCandidateSet *CandidateSet, ExprResult *BeginExpr, ExprResult *EndExpr, BeginEndFunction *BEF)
Create the initialization, compare, and increment steps for the range-based for loop expression.
static bool DiagnoseNoDiscard(Sema &S, const WarnUnusedResultAttr *A, SourceLocation Loc, SourceRange R1, SourceRange R2, bool IsCtor)
static bool hasTrivialABIAttr(QualType VariableType)
Determines whether the VariableType's declaration is a record with the clang::trivial_abi attribute.
static void AdjustAPSInt(llvm::APSInt &Val, unsigned BitWidth, bool IsSigned)
static bool buildCapturedStmtCaptureList(Sema &S, CapturedRegionScopeInfo *RSI, SmallVectorImpl< CapturedStmt::Capture > &Captures, SmallVectorImpl< Expr * > &CaptureInits)
static void checkCaseValue(Sema &S, SourceLocation Loc, const llvm::APSInt &Val, unsigned UnpromotedWidth, bool UnpromotedSign)
Check the specified case value is in range for the given unpromoted switch type.
static void CheckJumpOutOfSEHFinally(Sema &S, SourceLocation Loc, const Scope &DestScope)
Defines the Objective-C statement AST node classes.
enum clang::format::@1291::AnnotatingParser::Context::@350 ContextType
Defines the clang::TypeLoc interface and its subclasses.
Allows QualTypes to be sorted and hence used in maps and sets.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
SourceManager & getSourceManager()
CharUnits getTypeAlignInChars(QualType T) const
Return the ABI-specified alignment of a (complete) type T, in characters.
unsigned getIntWidth(QualType T) const
bool hasSimilarType(QualType T1, QualType T2)
Determine if two types are similar, according to the C++ rules.
QualType getObjCInterfaceType(const ObjCInterfaceDecl *Decl, ObjCInterfaceDecl *PrevDecl=nullptr) const
getObjCInterfaceType - Return the unique reference to the type for the specified ObjC interface decl.
QualType getAutoRRefDeductType() const
C++11 deduction pattern for 'auto &&' type.
QualType getTagDeclType(const TagDecl *Decl) const
Return the unique reference to the type for the specified TagDecl (struct/union/class/enum) decl.
bool hasSameType(QualType T1, QualType T2) const
Determine whether the given types T1 and T2 are equivalent.
QualType getPointerType(QualType T) const
Return the uniqued reference to the type for a pointer to the specified type.
QualType getLValueReferenceType(QualType T, bool SpelledAsLValue=true) const
Return the uniqued reference to the type for an lvalue reference to the specified type.
QualType getTypeDeclType(const TypeDecl *Decl, const TypeDecl *PrevDecl=nullptr) const
Return the unique reference to the type for the specified type declaration.
QualType getPointerDiffType() const
Return the unique type for "ptrdiff_t" (C99 7.17) defined in <stddef.h>.
TypeSourceInfo * getTrivialTypeSourceInfo(QualType T, SourceLocation Loc=SourceLocation()) const
Allocate a TypeSourceInfo where all locations have been initialized to a given location,...
QualType getObjCObjectPointerType(QualType OIT) const
Return a ObjCObjectPointerType type for the given ObjCObjectType.
CharUnits getDeclAlign(const Decl *D, bool ForAlignof=false) const
Return a conservative estimate of the alignment of the specified decl D.
bool hasSameUnqualifiedType(QualType T1, QualType T2) const
Determine whether the given types are equivalent after cvr-qualifiers have been removed.
uint64_t getTypeSize(QualType T) const
Return the size of the specified (complete) type T, in bits.
const TargetInfo & getTargetInfo() const
QualType getAutoDeductType() const
C++11 deduction pattern for 'auto' type.
void adjustDeducedFunctionResultType(FunctionDecl *FD, QualType ResultType)
Change the result type of a function type once it is deduced.
Represents an array type, per C99 6.7.5.2 - Array Declarators.
Attr - This represents one attribute.
SourceLocation getLocation() const
SourceRange getRange() const
static AttributedStmt * Create(const ASTContext &C, SourceLocation Loc, ArrayRef< const Attr * > Attrs, Stmt *SubStmt)
Represents a C++11 auto or C++14 decltype(auto) type, possibly constrained by a type-constraint.
bool isDecltypeAuto() const
BinaryConditionalOperator - The GNU extension to the conditional operator which allows the middle ope...
A builtin binary operation expression such as "x + y" or "x <= y".
BreakStmt - This represents a break.
CStyleCastExpr - An explicit cast in C (C99 6.5.4) or a C-style cast in C++ (C++ [expr....
Represents a path from a specific derived class (which is not represented as part of the path) to a p...
BasePaths - Represents the set of paths from a derived class to one of its (direct or indirect) bases...
Represents a base class of a C++ class.
Represents binding an expression to a temporary.
A boolean literal, per ([C++ lex.bool] Boolean literals).
CXXCatchStmt - This represents a C++ catch block.
SourceLocation getBeginLoc() const LLVM_READONLY
VarDecl * getExceptionDecl() const
QualType getCaughtType() const
Represents a call to a C++ constructor.
Represents a C++ constructor within a class.
Represents a C++ conversion function within a class.
CXXForRangeStmt - This represents C++0x [stmt.ranged]'s ranged for statement, represented as 'for (ra...
Represents an explicit C++ type conversion that uses "functional" notation (C++ [expr....
Represents a call to a member function that may be written either with member call syntax (e....
Represents a static or instance method of a struct/union/class.
A call to an overloaded operator written using operator syntax.
Represents a C++ struct/union/class.
static CXXRecordDecl * Create(const ASTContext &C, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, CXXRecordDecl *PrevDecl=nullptr, bool DelayTypeCreation=false)
An expression "T()" which creates a value-initialized rvalue of type T, which is a non-class type.
Represents a C++ nested-name-specifier or a global scope specifier.
NestedNameSpecifierLoc getWithLocInContext(ASTContext &Context) const
Retrieve a nested-name-specifier with location information, copied into the given AST context.
static CXXTryStmt * Create(const ASTContext &C, SourceLocation tryLoc, CompoundStmt *tryBlock, ArrayRef< Stmt * > handlers)
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
static CanQual< Type > CreateUnsafe(QualType Other)
Builds a canonical type from a QualType.
QualType withConst() const
Retrieves a version of this type with const applied.
Represents the body of a CapturedStmt, and serves as its DeclContext.
static DeclContext * castToDeclContext(const CapturedDecl *D)
void setContextParam(unsigned i, ImplicitParamDecl *P)
void setParam(unsigned i, ImplicitParamDecl *P)
static CapturedDecl * Create(ASTContext &C, DeclContext *DC, unsigned NumParams)
Describes the capture of either a variable, or 'this', or variable-length array type.
This captures a statement into a function.
Stmt * getCapturedStmt()
Retrieve the statement being captured.
static CapturedStmt * Create(const ASTContext &Context, Stmt *S, CapturedRegionKind Kind, ArrayRef< Capture > Captures, ArrayRef< Expr * > CaptureInits, CapturedDecl *CD, RecordDecl *RD)
CaseStmt - Represent a case statement.
static CaseStmt * Create(const ASTContext &Ctx, Expr *lhs, Expr *rhs, SourceLocation caseLoc, SourceLocation ellipsisLoc, SourceLocation colonLoc)
Build a case statement.
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
CompoundStmt - This represents a group of statements like { stmt stmt }.
static CompoundStmt * Create(const ASTContext &C, ArrayRef< Stmt * > Stmts, FPOptionsOverride FPFeatures, SourceLocation LB, SourceLocation RB)
ConditionalOperator - The ?: ternary operator.
ConstEvaluatedExprVisitor - This class visits 'const Expr *'s.
Represents the canonical version of C arrays with a specified constant size.
ContinueStmt - This represents a continue.
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
DeclContext * getParent()
getParent - Returns the containing DeclContext.
bool isFileContext() const
bool isDependentContext() const
Determines whether this context is dependent on a template parameter.
void addDecl(Decl *D)
Add the declaration D into this context.
bool isStdNamespace() const
bool isFunctionOrMethod() const
void addHiddenDecl(Decl *D)
Add the declaration D to this context without modifying any lookup tables.
bool isSingleDecl() const
A reference to a declared variable, function, enum, etc.
SourceLocation getLocation() const
DeclStmt - Adaptor class for mixing declarations with statements and expressions.
bool isSingleDecl() const
isSingleDecl - This method returns true if this DeclStmt refers to a single Decl.
const Decl * getSingleDecl() const
SourceLocation getBeginLoc() const LLVM_READONLY
Decl - This represents one declaration (or definition), e.g.
void setInvalidDecl(bool Invalid=true)
setInvalidDecl - Indicates the Decl had a semantic error.
void markUsed(ASTContext &C)
Mark the declaration used, in the sense of odr-use.
static Decl * castFromDeclContext(const DeclContext *)
bool isInvalidDecl() const
SourceLocation getLocation() const
void setImplicit(bool I=true)
void setLocation(SourceLocation L)
DeclContext * getDeclContext()
SourceLocation getTypeSpecEndLoc() const
SourceLocation getTypeSpecStartLoc() const
SourceLocation getBeginLoc() const LLVM_READONLY
TypeSourceInfo * getTypeSourceInfo() const
QualType getDeducedType() const
Get the type deduced for this placeholder type, or null if it has not been deduced.
SourceLocation getDefaultLoc() const
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
bool isIgnored(unsigned DiagID, SourceLocation Loc) const
Determine whether the diagnostic is known to be ignored.
DoStmt - This represents a 'do/while' stmt.
enumerator_range enumerators() const
bool isClosed() const
Returns true if this enum is either annotated with enum_extensibility(closed) or isn't annotated with...
bool isClosedNonFlag() const
Returns true if this enum is annotated with neither flag_enum nor enum_extensibility(open).
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of enums.
EnumDecl * getDecl() const
EvaluatedExprVisitor - This class visits 'Expr *'s.
This represents one expression.
bool EvaluateAsInt(EvalResult &Result, const ASTContext &Ctx, SideEffectsKind AllowSideEffects=SE_NoSideEffects, bool InConstantContext=false) const
EvaluateAsInt - Return true if this is a constant which we can fold and convert to an integer,...
@ SE_AllowSideEffects
Allow any unmodeled side effect.
Expr * IgnoreParenCasts() LLVM_READONLY
Skip past any parentheses and casts which might surround this expression until reaching a fixed point...
bool isUnusedResultAWarning(const Expr *&WarnExpr, SourceLocation &Loc, SourceRange &R1, SourceRange &R2, ASTContext &Ctx) const
isUnusedResultAWarning - Return true if this immediate expression should be warned about if the resul...
bool isValueDependent() const
Determines whether the value of this expression depends on.
bool isTypeDependent() const
Determines whether the type of this expression depends on.
llvm::APSInt EvaluateKnownConstInt(const ASTContext &Ctx, SmallVectorImpl< PartialDiagnosticAt > *Diag=nullptr) const
EvaluateKnownConstInt - Call EvaluateAsRValue and return the folded integer.
Expr * IgnoreParenImpCasts() LLVM_READONLY
Skip past any parentheses and implicit casts which might surround this expression until reaching a fi...
bool containsErrors() const
Whether this expression contains subexpressions which had errors, e.g.
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
Decl * getReferencedDeclOfCallee()
bool isInstantiationDependent() const
Whether this expression is instantiation-dependent, meaning that it depends in some way on.
bool isIntegerConstantExpr(const ASTContext &Ctx, SourceLocation *Loc=nullptr) const
Expr * IgnoreImpCasts() LLVM_READONLY
Skip past any implicit casts which might surround this expression until reaching a fixed point.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
bool isKnownToHaveBooleanValue(bool Semantic=true) const
isKnownToHaveBooleanValue - Return true if this is an integer expression that is known to return 0 or...
Represents difference between two FPOptions values.
FPOptionsOverride getChangesFrom(const FPOptions &Base) const
Return difference with the given option set.
Represents a member of a struct/union/class.
static FixItHint CreateReplacement(CharSourceRange RemoveRange, StringRef Code)
Create a code modification hint that replaces the given source range with the given code string.
static FixItHint CreateRemoval(CharSourceRange RemoveRange)
Create a code modification hint that removes the given source range.
static FixItHint CreateInsertion(SourceLocation InsertionLoc, StringRef Code, bool BeforePreviousInsertions=false)
Create a code modification hint that inserts the given code string at a specific location.
ForStmt - This represents a 'for (init;cond;inc)' stmt.
SourceLocation getRParenLoc() const
SourceLocation getBeginLoc() const
FullExpr - Represents a "full-expression" node.
Represents a function declaration or definition.
const ParmVarDecl * getParamDecl(unsigned i) const
void setUsesSEHTry(bool UST)
bool isNoReturn() const
Determines whether this function is known to be 'noreturn', through an attribute on its declaration o...
QualType getReturnType() const
bool isConstexpr() const
Whether this is a (C++11) constexpr function or constexpr constructor.
bool isMain() const
Determines whether this function is "main", which is the entry point into an executable program.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
bool isOverloadedOperator() const
Whether this function declaration represents an C++ overloaded operator, e.g., "operator+".
OverloadedOperatorKind getOverloadedOperator() const
getOverloadedOperator - Which C++ overloaded operator this function represents, if any.
Represents a prototype with parameter type info, e.g.
Declaration of a template function.
FunctionType - C99 6.7.5.3 - Function Declarators.
static StringRef getNameForCallConv(CallingConv CC)
bool getNoReturnAttr() const
Determine whether this function type includes the GNU noreturn attribute.
QualType getReturnType() const
GNUNullExpr - Implements the GNU __null extension, which is a name for a null pointer constant that h...
GotoStmt - This represents a direct goto.
One of these records is kept for each identifier that is lexed.
IdentifierInfo & get(StringRef Name)
Return the identifier token info for the specified named identifier.
static IfStmt * Create(const ASTContext &Ctx, SourceLocation IL, IfStatementKind Kind, Stmt *Init, VarDecl *Var, Expr *Cond, SourceLocation LPL, SourceLocation RPL, Stmt *Then, SourceLocation EL=SourceLocation(), Stmt *Else=nullptr)
Create an IfStmt.
ImaginaryLiteral - We support imaginary integer and floating point literals, like "1....
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
static ImplicitCastExpr * Create(const ASTContext &Context, QualType T, CastKind Kind, Expr *Operand, const CXXCastPath *BasePath, ExprValueKind Cat, FPOptionsOverride FPO)
static ImplicitParamDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, ImplicitParamKind ParamKind)
Create implicit parameter.
IndirectGotoStmt - This represents an indirect goto.
static InitializationKind CreateCopy(SourceLocation InitLoc, SourceLocation EqualLoc, bool AllowExplicitConvs=false)
Create a copy initialization.
Describes the sequence of initializations required to initialize a given object or reference with a s...
Describes an entity that is being initialized.
static InitializedEntity InitializeResult(SourceLocation ReturnLoc, QualType Type)
Create the initialization entity for the result of a function.
static InitializedEntity InitializeRelatedResult(ObjCMethodDecl *MD, QualType Type)
Create the initialization entity for a related result.
unsigned allocateManglingNumber() const
static InitializedEntity InitializeVariable(VarDecl *Var)
Create the initialization entity for a variable.
static IntegerLiteral * Create(const ASTContext &C, const llvm::APInt &V, QualType type, SourceLocation l)
Returns a new integer literal with value 'V' and type 'type'.
Represents the declaration of a label.
void setLocStart(SourceLocation L)
LabelStmt * getStmt() const
void setStmt(LabelStmt *T)
bool isMSAsmLabel() const
LabelStmt - Represents a label, which has a substatement.
Represents the results of name lookup.
bool empty() const
Return true if no decls were found.
Representation of a Microsoft __if_exists or __if_not_exists statement with a dependent name.
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
Expr * getSubExpr() const
Retrieve the temporary-generating subexpression whose value will be materialized into a glvalue.
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
A pointer to member type per C++ 8.3.3 - Pointers to members.
This represents a decl that may have a name.
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
ReservedIdentifierStatus isReserved(const LangOptions &LangOpts) const
Determine if the declaration obeys the reserved identifier rules of the given language.
A C++ nested-name-specifier augmented with source location information.
NullStmt - This is the null statement ";": C99 6.8.3p3.
Represents Objective-C's collection statement.
An expression that sends a message to the given Objective-C object or class.
ObjCMethodDecl - Represents an instance or class method declaration.
Represents a pointer to an Objective C object.
Wrapper for void* pointer.
void * getAsOpaquePtr() const
OverloadCandidateSet - A set of overload candidates, used in C++ overload resolution (C++ 13....
@ CSK_Normal
Normal lookup.
void NoteCandidates(PartialDiagnosticAt PA, Sema &S, OverloadCandidateDisplayKind OCD, ArrayRef< Expr * > Args, StringRef Opc="", SourceLocation Loc=SourceLocation(), llvm::function_ref< bool(OverloadCandidate &)> Filter=[](OverloadCandidate &) { return true;})
When overload resolution fails, prints diagnostic messages containing the candidates in the candidate...
static FindResult find(Expr *E)
Finds the overloaded expression in the given expression E of OverloadTy.
ParenExpr - This represents a parenthesized expression, e.g.
Represents a parameter to a function.
ParsedAttributes - A collection of parsed attributes.
Wrapper for source info for pointers.
SourceLocation getStarLoc() const
IdentifierTable & getIdentifierTable()
PseudoObjectExpr - An expression which accesses a pseudo-object l-value.
ArrayRef< Expr * > semantics()
A (possibly-)qualified type.
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
QualType withRestrict() const
QualType withConst() const
bool isTriviallyCopyConstructibleType(const ASTContext &Context) const
Return true if this is a trivially copyable type.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
QualType getNonReferenceType() const
If Type is a reference type (e.g., const int&), returns the type that the reference refers to ("const...
QualType getCanonicalType() const
QualType getUnqualifiedType() const
Retrieve the unqualified variant of the given type, removing as little sugar as possible.
bool isConstQualified() const
Determine whether this type is const-qualified.
@ OCL_Strong
Assigning into this object requires the old value to be released and the new value to be retained.
Represents a struct/union/class.
static RecordDecl * Create(const ASTContext &C, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, RecordDecl *PrevDecl=nullptr)
bool isOrContainsUnion() const
Returns whether this record is a union, or contains (at any nesting level) a union member.
virtual void completeDefinition()
Note that the definition of this type is now complete.
void setCapturedRecord()
Mark the record as a record for captured variables in CapturedStmt construct.
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of structs/unions/cl...
RecordDecl * getDecl() const
A class that does preorder or postorder depth-first traversal on the entire Clang AST and visits each...
ReturnStmt - This represents a return, optionally of an expression: return; return 4;.
void setRetValue(Expr *E)
static ReturnStmt * Create(const ASTContext &Ctx, SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate)
Create a return statement.
static SEHExceptStmt * Create(const ASTContext &C, SourceLocation ExceptLoc, Expr *FilterExpr, Stmt *Block)
static SEHFinallyStmt * Create(const ASTContext &C, SourceLocation FinallyLoc, Stmt *Block)
Represents a __leave statement.
static SEHTryStmt * Create(const ASTContext &C, bool isCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler)
Scope - A scope is a transient data structure that is used while parsing the program.
const Scope * getFnParent() const
getFnParent - Return the closest scope that is a function body.
bool Contains(const Scope &rhs) const
Returns if rhs has a higher scope depth than this.
unsigned getFlags() const
getFlags - Return the flags for this scope.
Scope * getContinueParent()
getContinueParent - Return the closest scope that a continue statement would be affected by.
bool isSEHTryScope() const
Determine whether this scope is a SEH '__try' block.
Scope * getBreakParent()
getBreakParent - Return the closest scope that a break statement would be affected by.
const Scope * getParent() const
getParent - Return the scope that this is nested in.
void updateNRVOCandidate(VarDecl *VD)
@ SwitchScope
This is a scope that corresponds to a switch statement.
A generic diagnostic builder for errors which may or may not be deferred.
SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID, bool DeferHint=false)
Emit a diagnostic.
PartialDiagnostic PDiag(unsigned DiagID=0)
Build a partial diagnostic.
SemaDiagnosticBuilder DiagIfDeviceCode(SourceLocation Loc, unsigned DiagID)
Creates a SemaDiagnosticBuilder that emits the diagnostic if the current context is "used as device c...
StmtResult ActOnObjCForCollectionStmt(SourceLocation ForColLoc, Stmt *First, Expr *collection, SourceLocation RParenLoc)
StmtResult FinishObjCForCollectionStmt(Stmt *ForCollection, Stmt *Body)
FinishObjCForCollectionStmt - Attach the body to a objective-C foreach statement.
bool inferObjCARCLifetime(ValueDecl *decl)
void ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init)
Check if the current region is an OpenMP loop region and if it is, mark loop control variable,...
void setOpenMPCaptureKind(FieldDecl *FD, const ValueDecl *D, unsigned Level)
Sets OpenMP capture kind (OMPC_private, OMPC_firstprivate, OMPC_map etc.) for FD based on DSA for the...
std::pair< VarDecl *, Expr * > get() const
RAII class used to determine whether SFINAE has trapped any errors that occur during template argumen...
Sema - This implements semantic analysis and AST building for C.
ParsedType CreateParsedType(QualType T, TypeSourceInfo *TInfo)
Package the given type and TSI into a ParsedType.
SmallVector< Scope *, 2 > CurrentSEHFinally
Stack of active SEH __finally scopes. Can be empty.
LocalInstantiationScope * CurrentInstantiationScope
The current instantiation scope used to store local variables.
Scope * getCurScope() const
Retrieve the parser's current scope.
void ProcessStmtAttributes(Stmt *Stmt, const ParsedAttributes &InAttrs, SmallVectorImpl< const Attr * > &OutAttrs)
Process the attributes before creating an attributed statement.
ExprResult ActOnUnaryOp(Scope *S, SourceLocation OpLoc, tok::TokenKind Op, Expr *Input, bool IsAfterAmp=false)
Unary Operators. 'Tok' is the token for the operator.
StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, NestedNameSpecifierLoc QualifierLoc, DeclarationNameInfo NameInfo, Stmt *Nested)
ExprResult IgnoredValueConversions(Expr *E)
IgnoredValueConversions - Given that an expression's result is syntactically ignored,...
@ LookupMemberName
Member name lookup, which finds the names of class/struct/union members.
bool ActOnCoroutineBodyStart(Scope *S, SourceLocation KwLoc, StringRef Keyword)
StmtResult BuildAttributedStmt(SourceLocation AttrsLoc, ArrayRef< const Attr * > Attrs, Stmt *SubStmt)
StmtResult ActOnSEHLeaveStmt(SourceLocation Loc, Scope *CurScope)
StmtResult ActOnForEachLValueExpr(Expr *E)
In an Objective C collection iteration statement: for (x in y) x can be an arbitrary l-value expressi...
void ActOnForEachDeclStmt(DeclGroupPtrTy Decl)
void PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext, Decl *LambdaContextDecl=nullptr, ExpressionEvaluationContextRecord::ExpressionKind Type=ExpressionEvaluationContextRecord::EK_Other)
ExprResult CheckBooleanCondition(SourceLocation Loc, Expr *E, bool IsConstexpr=false)
CheckBooleanCondition - Diagnose problems involving the use of the given expression as a boolean cond...
@ Switch
An integral condition for a 'switch' statement.
SmallVector< sema::FunctionScopeInfo *, 4 > FunctionScopes
Stack containing information about each of the nested function, block, and method scopes that are cur...
PoppedFunctionScopePtr PopFunctionScopeInfo(const sema::AnalysisBasedWarnings::Policy *WP=nullptr, const Decl *D=nullptr, QualType BlockType=QualType())
Pop a function (or block or lambda or captured region) scope from the stack.
bool checkAndRewriteMustTailAttr(Stmt *St, const Attr &MTA)
Check whether the given statement can have musttail applied to it, issuing a diagnostic and returning...
StmtResult ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, LabelDecl *TheDecl)
StmtResult ActOnReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp, Scope *CurScope)
void setFunctionHasBranchIntoScope()
ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val)
ExprResult VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result, VerifyICEDiagnoser &Diagnoser, AllowFoldKind CanFold=NoFold)
VerifyIntegerConstantExpression - Verifies that an expression is an ICE, and reports the appropriate ...
StmtResult ActOnExprStmt(ExprResult Arg, bool DiscardedValue=true)
FieldDecl * BuildCaptureField(RecordDecl *RD, const sema::Capture &Capture)
Build a FieldDecl suitable to hold the given capture.
StmtResult BuildIfStmt(SourceLocation IfLoc, IfStatementKind StatementKind, SourceLocation LParenLoc, Stmt *InitStmt, ConditionResult Cond, SourceLocation RParenLoc, Stmt *ThenVal, SourceLocation ElseLoc, Stmt *ElseVal)
FunctionDecl * getCurFunctionDecl(bool AllowLambda=false) const
Returns a pointer to the innermost enclosing function, or nullptr if the current context is not insid...
ExprResult PerformContextualImplicitConversion(SourceLocation Loc, Expr *FromE, ContextualImplicitConverter &Converter)
Perform a contextual implicit conversion.
ExprResult UsualUnaryConversions(Expr *E)
UsualUnaryConversions - Performs various conversions that are common to most operators (C99 6....
void DiagnoseCommaOperator(const Expr *LHS, SourceLocation Loc)
Look for instances where it is likely the comma operator is confused with another operator.
ExprResult CheckSwitchCondition(SourceLocation SwitchLoc, Expr *Cond)
bool DiagIfReachable(SourceLocation Loc, ArrayRef< const Stmt * > Stmts, const PartialDiagnostic &PD)
Conditionally issue a diagnostic based on the statements's reachability analysis.
void FinalizeDeclaration(Decl *D)
FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform any semantic actions neces...
void ActOnCapturedRegionError()
DeclGroupPtrTy ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType=nullptr)
ExprResult DefaultFunctionArrayLvalueConversion(Expr *E, bool Diagnose=true)
ASTContext & getASTContext() const
ExprResult BuildUnaryOp(Scope *S, SourceLocation OpLoc, UnaryOperatorKind Opc, Expr *Input, bool IsAfterAmp=false)
void PopExpressionEvaluationContext()
StmtResult ActOnSEHTryBlock(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler)
ExprResult ImpCastExprToType(Expr *E, QualType Type, CastKind CK, ExprValueKind VK=VK_PRValue, const CXXCastPath *BasePath=nullptr, CheckedConversionKind CCK=CheckedConversionKind::Implicit)
ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast.
ObjCMethodDecl * getCurMethodDecl()
getCurMethodDecl - If inside of a method body, this returns a pointer to the method decl for the meth...
DeclRefExpr * BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, SourceLocation Loc, const CXXScopeSpec *SS=nullptr)
ExprResult CheckConvertedConstantExpression(Expr *From, QualType T, llvm::APSInt &Value, CCEKind CCE)
void setFunctionHasIndirectGoto()
ExprResult BuildCaptureInit(const sema::Capture &Capture, SourceLocation ImplicitCaptureLoc, bool IsOpenMPMapping=false)
Initialize the given capture with a suitable expression.
StmtResult ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch, Stmt *Body)
NamedReturnInfo getNamedReturnInfo(Expr *&E, SimplerImplicitMoveMode Mode=SimplerImplicitMoveMode::Normal)
Determine whether the given expression might be move-eligible or copy-elidable in either a (co_)retur...
std::unique_ptr< sema::FunctionScopeInfo, PoppedFunctionScopeDeleter > PoppedFunctionScopePtr
void DiagnoseUnusedExprResult(const Stmt *S, unsigned DiagID)
DiagnoseUnusedExprResult - If the statement passed in is an expression whose result is unused,...
FPOptions & getCurFPFeatures()
@ UPPC_Expression
An arbitrary expression.
const LangOptions & getLangOpts() const
StmtResult ActOnWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc, ConditionResult Cond, SourceLocation RParenLoc, Stmt *Body)
bool DiagnoseUnexpandedParameterPack(SourceLocation Loc, TypeSourceInfo *T, UnexpandedParameterPackContext UPPC)
If the given type contains an unexpanded parameter pack, diagnose the error.
const LangOptions & LangOpts
sema::LambdaScopeInfo * getCurLambda(bool IgnoreNonLambdaCapturingScope=false)
Retrieve the current lambda scope info, if any.
void ActOnStartOfCompoundStmt(bool IsStmtExpr)
bool DeduceFunctionTypeFromReturnExpr(FunctionDecl *FD, SourceLocation ReturnLoc, Expr *RetExpr, const AutoType *AT)
Deduce the return type for a function from a returned expression, per C++1y [dcl.spec....
void MarkAnyDeclReferenced(SourceLocation Loc, Decl *D, bool MightBeOdrUse)
Perform marking for a reference to an arbitrary declaration.
TypeLoc getReturnTypeLoc(FunctionDecl *FD) const
StmtResult ActOnExprStmtError()
const VarDecl * getCopyElisionCandidate(NamedReturnInfo &Info, QualType ReturnType)
Updates given NamedReturnInfo's move-eligible and copy-elidable statuses, considering the function re...
NamedDecl * getCurFunctionOrMethodDecl() const
getCurFunctionOrMethodDecl - Return the Decl for the current ObjC method or C function we're in,...
StmtResult ActOnNullStmt(SourceLocation SemiLoc, bool HasLeadingEmptyMacro=false)
RecordDecl * CreateCapturedStmtRecordDecl(CapturedDecl *&CD, SourceLocation Loc, unsigned NumParams)
void ActOnCapturedRegionStart(SourceLocation Loc, Scope *CurScope, CapturedRegionKind Kind, unsigned NumParams)
sema::FunctionScopeInfo * getCurFunction() const
void PushCompoundScope(bool IsStmtExpr)
DeclGroupPtrTy BuildDeclaratorGroup(MutableArrayRef< Decl * > Group)
BuildDeclaratorGroup - convert a list of declarations into a declaration group, performing any necess...
AssignConvertType CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, bool Diagnose=true, bool DiagnoseCFAudited=false, bool ConvertRHS=true)
Check assignment constraints for an assignment of RHS to LHSType.
void DiagnoseAssignmentEnum(QualType DstType, QualType SrcType, Expr *SrcExpr)
DiagnoseAssignmentEnum - Warn if assignment to enum is a constant integer not in the range of enum va...
ExprResult ActOnCoawaitExpr(Scope *S, SourceLocation KwLoc, Expr *E)
std::optional< sema::TemplateDeductionInfo * > isSFINAEContext() const
Determines whether we are currently in a context where template argument substitution failures are no...
bool findMacroSpelling(SourceLocation &loc, StringRef name)
Looks through the macro-expansion chain for the given location, looking for a macro expansion with th...
void DiagnoseEmptyStmtBody(SourceLocation StmtLoc, const Stmt *Body, unsigned DiagID)
Emit DiagID if statement located on StmtLoc has a suspicious null statement as a Body,...
void DiagnoseEmptyLoopBody(const Stmt *S, const Stmt *PossibleBody)
Warn if a for/while loop statement S, which is followed by PossibleBody, has a suspicious null statem...
ExprResult DefaultLvalueConversion(Expr *E)
DeclContext * CurContext
CurContext - This is the current declaration context of parsing.
DeclarationNameInfo GetNameFromUnqualifiedId(const UnqualifiedId &Name)
Retrieves the declaration name from a parsed unqualified-id.
bool isUnevaluatedContext() const
Determines whether we are currently in a context that is not evaluated as per C++ [expr] p5.
StmtResult ActOnCapScopeReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp, NamedReturnInfo &NRInfo, bool SupressSimplerImplicitMoves)
ActOnCapScopeReturnStmt - Utility routine to type-check return statements for capturing scopes.
AssignConvertType
AssignConvertType - All of the 'assignment' semantic checks return this enum to indicate whether the ...
StmtResult ActOnCapturedRegionEnd(Stmt *S)
StmtResult ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, Stmt *First, ConditionResult Second, FullExprArg Third, SourceLocation RParenLoc, Stmt *Body)
StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, Expr *DestExp)
ExprResult CheckPlaceholderExpr(Expr *E)
Check for operands with placeholder types and complain if found.
bool inTemplateInstantiation() const
Determine whether we are currently performing template instantiation.
SourceManager & getSourceManager() const
ExprResult PerformMoveOrCopyInitialization(const InitializedEntity &Entity, const NamedReturnInfo &NRInfo, Expr *Value, bool SupressSimplerImplicitMoves=false)
Perform the initialization of a potentially-movable value, which is the result of return value.
void ActOnInitializerError(Decl *Dcl)
ActOnInitializerError - Given that there was an error parsing an initializer for the given declaratio...
StmtResult ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, SourceLocation CoawaitLoc, Stmt *InitStmt, Stmt *LoopVar, SourceLocation ColonLoc, Expr *Collection, SourceLocation RParenLoc, BuildForRangeKind Kind, ArrayRef< MaterializeTemporaryExpr * > LifetimeExtendTemps={})
ActOnCXXForRangeStmt - Check and build a C++11 for-range statement.
StmtResult BuildReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp, bool AllowRecovery=false)
ExprResult ActOnBinOp(Scope *S, SourceLocation TokLoc, tok::TokenKind Kind, Expr *LHSExpr, Expr *RHSExpr)
Binary Operators. 'Tok' is the token for the operator.
void PushCapturedRegionScope(Scope *RegionScope, CapturedDecl *CD, RecordDecl *RD, CapturedRegionKind K, unsigned OpenMPCaptureLevel=0)
void setFunctionHasMustTail()
void setFunctionHasBranchProtectedScope()
StmtResult ActOnFinishSEHFinallyBlock(SourceLocation Loc, Stmt *Block)
StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope)
@ CCEK_CaseValue
Expression in a case label.
StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc, SourceLocation CoawaitLoc, Stmt *InitStmt, SourceLocation ColonLoc, Stmt *RangeDecl, Stmt *Begin, Stmt *End, Expr *Cond, Expr *Inc, Stmt *LoopVarDecl, SourceLocation RParenLoc, BuildForRangeKind Kind, ArrayRef< MaterializeTemporaryExpr * > LifetimeExtendTemps={})
BuildCXXForRangeStmt - Build or instantiate a C++11 for-range statement.
StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation CondLParen, Expr *Cond, SourceLocation CondRParen)
StmtResult ActOnStartOfSwitchStmt(SourceLocation SwitchLoc, SourceLocation LParenLoc, Stmt *InitStmt, ConditionResult Cond, SourceLocation RParenLoc)
StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, CXXScopeSpec &SS, UnqualifiedId &Name, Stmt *Nested)
@ PotentiallyEvaluated
The current expression is potentially evaluated at run time, which means that code may be generated t...
@ ImmediateFunctionContext
In addition of being constant evaluated, the current expression occurs in an immediate function conte...
StmtResult ActOnSEHExceptBlock(SourceLocation Loc, Expr *FilterExpr, Stmt *Block)
void ActOnAfterCompoundStatementLeadingPragmas()
StmtResult ActOnDeclStmt(DeclGroupPtrTy Decl, SourceLocation StartLoc, SourceLocation EndLoc)
bool RequireCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind, TypeDiagnoser &Diagnoser)
Ensure that the type T is a complete type.
void ActOnFields(Scope *S, SourceLocation RecLoc, Decl *TagDecl, ArrayRef< Decl * > Fields, SourceLocation LBrac, SourceLocation RBrac, const ParsedAttributesView &AttrList)
bool LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, bool InUnqualifiedLookup=false)
Perform qualified name lookup into a given context.
void DiscardCleanupsInEvaluationContext()
SmallVector< ExpressionEvaluationContextRecord, 8 > ExprEvalContexts
A stack of expression evaluation contexts.
void PushDeclContext(Scope *S, DeclContext *DC)
Set the current declaration context until it gets popped.
StmtResult ActOnAttributedStmt(const ParsedAttributes &AttrList, Stmt *SubStmt)
SourceManager & SourceMgr
DiagnosticsEngine & Diags
StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope)
void ActOnStartSEHFinallyBlock()
ExprResult PerformCopyInitialization(const InitializedEntity &Entity, SourceLocation EqualLoc, ExprResult Init, bool TopLevelOfInitList=false, bool AllowExplicit=false)
void ActOnAbortSEHFinallyBlock()
QualType SubstAutoTypeDependent(QualType TypeWithAuto)
@ BFRK_Check
Determining whether a for-range statement could be built.
@ BFRK_Build
Initial building of a for-range statement.
@ BFRK_Rebuild
Instantiation or recovery rebuild of a for-range statement.
StmtResult ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, Stmt *HandlerBlock)
ActOnCXXCatchBlock - Takes an exception declaration and a handler block and creates a proper catch ha...
void ActOnCaseStmtBody(Stmt *CaseStmt, Stmt *SubStmt)
ActOnCaseStmtBody - This installs a statement as the body of a case.
void AddInitializerToDecl(Decl *dcl, Expr *init, bool DirectInit)
AddInitializerToDecl - Adds the initializer Init to the declaration dcl.
bool DiagnoseAssignmentResult(AssignConvertType ConvTy, SourceLocation Loc, QualType DstType, QualType SrcType, Expr *SrcExpr, AssignmentAction Action, bool *Complained=nullptr)
DiagnoseAssignmentResult - Emit a diagnostic, if required, for the assignment conversion type specifi...
SemaDiagnosticBuilder targetDiag(SourceLocation Loc, unsigned DiagID, const FunctionDecl *FD=nullptr)
ExprResult CreateRecoveryExpr(SourceLocation Begin, SourceLocation End, ArrayRef< Expr * > SubExprs, QualType T=QualType())
Attempts to produce a RecoveryExpr after some AST node cannot be created.
StmtResult ActOnIfStmt(SourceLocation IfLoc, IfStatementKind StatementKind, SourceLocation LParenLoc, Stmt *InitStmt, ConditionResult Cond, SourceLocation RParenLoc, Stmt *ThenVal, SourceLocation ElseLoc, Stmt *ElseVal)
std::string getTemplateArgumentBindingsText(const TemplateParameterList *Params, const TemplateArgumentList &Args)
Produces a formatted string that describes the binding of template parameters to template arguments.
ExprResult ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc, UnaryExprOrTypeTrait ExprKind, bool IsType, void *TyOrEx, SourceRange ArgRange)
ActOnUnaryExprOrTypeTraitExpr - Handle sizeof(type) and sizeof expr and the same for alignof and __al...
ForRangeStatus BuildForRangeBeginEndCall(SourceLocation Loc, SourceLocation RangeLoc, const DeclarationNameInfo &NameInfo, LookupResult &MemberLookup, OverloadCandidateSet *CandidateSet, Expr *Range, ExprResult *CallExpr)
Build a call to 'begin' or 'end' for a C++11 for-range statement.
sema::CompoundScopeInfo & getCurCompoundScope() const
TemplateDeductionResult DeduceAutoType(TypeLoc AutoTypeLoc, Expr *Initializer, QualType &Result, sema::TemplateDeductionInfo &Info, bool DependentDeduction=false, bool IgnoreConstraints=false, TemplateSpecCandidateSet *FailedTSC=nullptr)
Deduce the type for an auto type-specifier (C++11 [dcl.spec.auto]p6)
void ActOnFinishOfCompoundStmt()
StmtResult ActOnCompoundStmt(SourceLocation L, SourceLocation R, ArrayRef< Stmt * > Elts, bool isStmtExpr)
bool IsValueInFlagEnum(const EnumDecl *ED, const llvm::APInt &Val, bool AllowMask) const
IsValueInFlagEnum - Determine if a value is allowed as part of a flag enum.
StmtResult ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, SourceLocation ColonLoc, Stmt *SubStmt)
StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, ArrayRef< Stmt * > Handlers)
ActOnCXXTryBlock - Takes a try compound-statement and a number of handlers and creates a try statemen...
StmtResult ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, Stmt *SubStmt, Scope *CurScope)
StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS, SourceLocation DotDotDotLoc, ExprResult RHS, SourceLocation ColonLoc)
StmtResult FinishCXXForRangeStmt(Stmt *ForRange, Stmt *Body)
FinishCXXForRangeStmt - Attach the body to a C++0x for-range statement.
ExprResult CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl=nullptr, bool RecoverUncorrectedTypos=false, llvm::function_ref< ExprResult(Expr *)> Filter=[](Expr *E) -> ExprResult { return E;})
Process any TypoExprs in the given Expr and its children, generating diagnostics as appropriate and r...
ExprResult ActOnFinishFullExpr(Expr *Expr, bool DiscardedValue)
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
SourceLocation getLocWithOffset(IntTy Offset) const
Return a source location with the specified offset from this SourceLocation.
bool isMacroBodyExpansion(SourceLocation Loc) const
Tests whether the given source location represents the expansion of a macro body.
bool isInSystemMacro(SourceLocation loc) const
Returns whether Loc is expanded from a macro in a system header.
bool isInSystemHeader(SourceLocation Loc) const
Returns if a SourceLocation is in a system header.
A trivial tuple used to represent a source range.
SourceLocation getBegin() const
Stmt - This represents one statement.
SourceLocation getEndLoc() const LLVM_READONLY
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
static std::tuple< bool, const Attr *, const Attr * > determineLikelihoodConflict(const Stmt *Then, const Stmt *Else)
static const Attr * getLikelihoodAttr(const Stmt *S)
SourceLocation getBeginLoc() const LLVM_READONLY
const SwitchCase * getNextSwitchCase() const
SwitchStmt - This represents a 'switch' stmt.
static SwitchStmt * Create(const ASTContext &Ctx, Stmt *Init, VarDecl *Var, Expr *Cond, SourceLocation LParenLoc, SourceLocation RParenLoc)
Create a switch statement.
SwitchCase * getSwitchCaseList()
void setAllEnumCasesCovered()
Set a flag in the SwitchStmt indicating that if the 'switch (X)' is a switch over an enum value then ...
Represents the declaration of a struct/union/class/enum.
bool isCompleteDefinition() const
Return true if this decl has its body fully specified.
TypedefNameDecl * getTypedefNameForAnonDecl() const
void startDefinition()
Starts the definition of this tag declaration.
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
bool isSEHTrySupported() const
Whether the target supports SEH __try.
TemplateSpecCandidateSet - A set of generalized overload candidates, used in template specializations...
void NoteCandidates(Sema &S, SourceLocation Loc)
NoteCandidates - When no template specialization match is found, prints diagnostic messages containin...
Base wrapper for a particular "section" of type source info.
QualType getType() const
Get the type for which this source info wrapper provides information.
T castAs() const
Convert to the specified TypeLoc type, asserting that this TypeLoc is of the desired type.
T getAsAdjusted() const
Convert to the specified TypeLoc type, returning a null TypeLoc if this TypeLoc is not of the desired...
A container of type source information.
TypeLoc getTypeLoc() const
Return the TypeLoc wrapper for the type source info.
QualType getType() const
Return the type wrapped by this type source info.
The base class of the type hierarchy.
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isSignedIntegerOrEnumerationType() const
Determines whether this is an integer type that is signed or an enumeration types whose underlying ty...
bool isRValueReferenceType() const
bool isPointerType() const
bool isIntegerType() const
isIntegerType() does not include complex integers (a GCC extension).
const T * castAs() const
Member-template castAs<specific type>.
bool isReferenceType() const
bool isEnumeralType() const
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isIntegralOrEnumerationType() const
Determine whether this type is an integral or enumeration type.
AutoType * getContainedAutoType() const
Get the AutoType whose type will be deduced for a variable with an initializer of this type.
bool isSpecificBuiltinType(unsigned K) const
Test for a particular builtin type.
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
bool containsErrors() const
Whether this type is an error type.
const ArrayType * getAsArrayTypeUnsafe() const
A variant of getAs<> for array types which silently discards qualifiers from the outermost type.
bool isUndeducedType() const
Determine whether this type is an undeduced type, meaning that it somehow involves a C++11 'auto' typ...
bool isObjectType() const
Determine whether this type is an object type.
bool isIncompleteType(NamedDecl **Def=nullptr) const
Types are partitioned into 3 broad categories (C99 6.2.5p1): object types, function types,...
TypeClass getTypeClass() const
bool isCanonicalUnqualified() const
Determines if this type would be canonical if it had no further qualification.
const T * getAs() const
Member-template getAs<specific type>'.
bool isRecordType() const
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Represents a C++ unqualified-id that has been parsed.
void setType(QualType newType)
Represents a variable declaration or definition.
static VarDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, const IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, StorageClass S)
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
bool hasGlobalStorage() const
Returns true for all variables that do not have local storage.
bool isExceptionVariable() const
Determine whether this variable is the exception variable in a C++ catch statememt or an Objective-C ...
const Expr * getInit() const
bool hasLocalStorage() const
Returns true if a variable with function scope is a non-static local variable.
bool isLocalVarDecl() const
Returns true for local variable declarations other than parameters.
bool hasDependentAlignment() const
Determines if this variable's alignment is dependent.
Represents a C array with a specified size that is not an integer-constant-expression.
WhileStmt - This represents a 'while' stmt.
static WhileStmt * Create(const ASTContext &Ctx, VarDecl *Var, Expr *Cond, Stmt *Body, SourceLocation WL, SourceLocation LParenLoc, SourceLocation RParenLoc)
Create a while statement.
ValueDecl * getVariable() const
bool isVariableCapture() const
SourceLocation getLocation() const
Retrieve the location at which this variable was captured.
bool isVLATypeCapture() const
bool isThisCapture() const
bool isReferenceCapture() const
Retains information about a captured region.
unsigned short OpenMPLevel
unsigned short CapRegionKind
The kind of captured region.
RecordDecl * TheRecordDecl
The captured record type.
CapturedDecl * TheCapturedDecl
The CapturedDecl for this statement.
QualType ReturnType
ReturnType - The target type of return statements in this context, or null if unknown.
SmallVector< Capture, 4 > Captures
Captures - The captures.
bool HasImplicitReturnType
Contains information about the compound statement currently being parsed.
FPOptions InitialFPFeatures
FP options at the beginning of the compound statement, prior to any pragma.
void setHasEmptyLoopBodies()
Retains information about a function, method, or block that is currently being parsed.
llvm::PointerIntPair< SwitchStmt *, 1, bool > SwitchInfo
A SwitchStmt, along with a flag indicating if its list of case statements is incomplete (because we d...
SourceLocation FirstCXXOrObjCTryLoc
First C++ 'try' or ObjC @try statement in the current function.
SourceLocation FirstCoroutineStmtLoc
First coroutine statement in the current function.
enum clang::sema::FunctionScopeInfo::@244 FirstTryType
StringRef getFirstCoroutineStmtKeyword() const
SourceLocation FirstReturnLoc
First 'return' statement in the current function.
SourceLocation FirstSEHTryLoc
First SEH '__try' statement in the current function.
void setHasCXXTry(SourceLocation TryLoc)
SmallVector< CompoundScopeInfo, 4 > CompoundScopes
The stack of currently active compound statement scopes in the function.
void setHasSEHTry(SourceLocation TryLoc)
SmallVector< SwitchInfo, 8 > SwitchStack
SwitchStack - This is the current set of active switch statements in the block.
CXXMethodDecl * CallOperator
The lambda's compiler-generated operator().
Provides information about an attempted template argument deduction, whose success or failure was des...
TemplateArgument SecondArg
The second template argument to which the template argument deduction failure refers.
TemplateArgument FirstArg
The first template argument to which the template argument deduction failure refers.
Defines the clang::TargetInfo interface.
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const internal::VariadicAllOfMatcher< Decl > decl
Matches declarations.
bool This(InterpState &S, CodePtr OpPC)
The JSON file list parser is used to communicate input to InstallAPI.
@ Seq
'seq' clause, allowed on 'loop' and 'routine' directives.
Expr * IgnoreElidableImplicitConstructorSingleStep(Expr *E)
@ OR_Deleted
Succeeded, but refers to a deleted function.
@ OR_Success
Overload resolution succeeded.
bool isReservedInAllContexts(ReservedIdentifierStatus Status)
Determine whether an identifier is reserved in all contexts.
IfStatementKind
In an if statement, this denotes whether the statement is a constexpr or consteval if statement.
Expr * IgnoreExprNodes(Expr *E, FnTys &&... Fns)
Given an expression E and functions Fn_1,...,Fn_n : Expr * -> Expr *, Recursively apply each of the f...
@ RQ_None
No ref-qualifier was provided.
@ OCD_AllCandidates
Requests that all candidates be shown.
bool operator==(const CallGraphNode::CallRecord &LHS, const CallGraphNode::CallRecord &RHS)
CapturedRegionKind
The different kinds of captured statement.
@ Result
The result type of a method or function.
ActionResult< Expr * > ExprResult
@ Struct
The "struct" keyword.
bool isLambdaConversionOperator(CXXConversionDecl *C)
ActionResult< Stmt * > StmtResult
@ VK_XValue
An x-value expression is a reference to an object with independent storage but which can be "moved",...
@ VK_LValue
An l-value expression is a reference to an object with independent storage.
Expr * IgnoreParensSingleStep(Expr *E)
const FunctionProtoType * T
Expr * IgnoreImplicitAsWrittenSingleStep(Expr *E)
std::pair< SourceLocation, PartialDiagnostic > PartialDiagnosticAt
A partial diagnostic along with the source location where this diagnostic occurs.
TemplateDeductionResult
Describes the result of template argument deduction.
@ Success
Template argument deduction was successful.
@ Inconsistent
Template argument deduction produced inconsistent deduced values for the given template parameter.
@ AlreadyDiagnosed
Some error which was already diagnosed.
@ CapturedContext
Parameter for captured context.
Diagnostic wrappers for TextAPI types for error reporting.
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
EvalResult is a struct with detailed info about an evaluated expression.
@ MoveEligibleAndCopyElidable
bool isMoveEligible() const
bool isCopyElidable() const
const VarDecl * Candidate
static CatchHandlerType getEmptyKey()
static CatchHandlerType getTombstoneKey()
static unsigned getHashValue(const CatchHandlerType &Base)
static bool isEqual(const CatchHandlerType &LHS, const CatchHandlerType &RHS)