blob: c1b7e988c59cf9195c9ee1b3eadf1b29b52798bb [file] [log] [blame]
Sebastian Redl4915e632009-10-11 09:03:14 +00001//===--- SemaExceptionSpec.cpp - C++ Exception Specifications ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file provides Sema routines for C++ exception specification testing.
11//
12//===----------------------------------------------------------------------===//
13
John McCall83024632010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Sebastian Redl4915e632009-10-11 09:03:14 +000015#include "clang/AST/CXXInheritance.h"
16#include "clang/AST/Expr.h"
17#include "clang/AST/ExprCXX.h"
Douglas Gregord6bc5e62010-03-24 07:14:45 +000018#include "clang/AST/TypeLoc.h"
Douglas Gregorf40863c2010-02-12 07:32:17 +000019#include "clang/Basic/Diagnostic.h"
20#include "clang/Basic/SourceManager.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "clang/Lex/Preprocessor.h"
Sebastian Redl4915e632009-10-11 09:03:14 +000022#include "llvm/ADT/SmallPtrSet.h"
Benjamin Kramer49038022012-02-04 13:45:25 +000023#include "llvm/ADT/SmallString.h"
Sebastian Redl4915e632009-10-11 09:03:14 +000024
25namespace clang {
26
27static const FunctionProtoType *GetUnderlyingFunction(QualType T)
28{
29 if (const PointerType *PtrTy = T->getAs<PointerType>())
30 T = PtrTy->getPointeeType();
31 else if (const ReferenceType *RefTy = T->getAs<ReferenceType>())
32 T = RefTy->getPointeeType();
Sebastian Redl075b21d2009-10-14 14:38:54 +000033 else if (const MemberPointerType *MPTy = T->getAs<MemberPointerType>())
34 T = MPTy->getPointeeType();
Sebastian Redl4915e632009-10-11 09:03:14 +000035 return T->getAs<FunctionProtoType>();
36}
37
38/// CheckSpecifiedExceptionType - Check if the given type is valid in an
39/// exception specification. Incomplete types, or pointers to incomplete types
40/// other than void are not allowed.
Richard Smith8606d752012-11-28 22:33:28 +000041///
42/// \param[in,out] T The exception type. This will be decayed to a pointer type
43/// when the input is an array or a function type.
44bool Sema::CheckSpecifiedExceptionType(QualType &T, const SourceRange &Range) {
Richard Smitha118c6a2012-11-28 22:52:42 +000045 // C++11 [except.spec]p2:
46 // A type cv T, "array of T", or "function returning T" denoted
Richard Smith8606d752012-11-28 22:33:28 +000047 // in an exception-specification is adjusted to type T, "pointer to T", or
48 // "pointer to function returning T", respectively.
Richard Smitha118c6a2012-11-28 22:52:42 +000049 //
50 // We also apply this rule in C++98.
Richard Smith8606d752012-11-28 22:33:28 +000051 if (T->isArrayType())
52 T = Context.getArrayDecayedType(T);
53 else if (T->isFunctionType())
54 T = Context.getPointerType(T);
Sebastian Redl4915e632009-10-11 09:03:14 +000055
Richard Smitha118c6a2012-11-28 22:52:42 +000056 int Kind = 0;
Richard Smith8606d752012-11-28 22:33:28 +000057 QualType PointeeT = T;
Richard Smitha118c6a2012-11-28 22:52:42 +000058 if (const PointerType *PT = T->getAs<PointerType>()) {
59 PointeeT = PT->getPointeeType();
60 Kind = 1;
Sebastian Redl4915e632009-10-11 09:03:14 +000061
Richard Smitha118c6a2012-11-28 22:52:42 +000062 // cv void* is explicitly permitted, despite being a pointer to an
63 // incomplete type.
64 if (PointeeT->isVoidType())
65 return false;
66 } else if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
67 PointeeT = RT->getPointeeType();
68 Kind = 2;
Richard Smith8606d752012-11-28 22:33:28 +000069
Richard Smitha118c6a2012-11-28 22:52:42 +000070 if (RT->isRValueReferenceType()) {
71 // C++11 [except.spec]p2:
72 // A type denoted in an exception-specification shall not denote [...]
73 // an rvalue reference type.
74 Diag(Range.getBegin(), diag::err_rref_in_exception_spec)
75 << T << Range;
76 return true;
77 }
78 }
79
80 // C++11 [except.spec]p2:
81 // A type denoted in an exception-specification shall not denote an
82 // incomplete type other than a class currently being defined [...].
83 // A type denoted in an exception-specification shall not denote a
84 // pointer or reference to an incomplete type, other than (cv) void* or a
85 // pointer or reference to a class currently being defined.
86 if (!(PointeeT->isRecordType() &&
87 PointeeT->getAs<RecordType>()->isBeingDefined()) &&
Richard Smith8606d752012-11-28 22:33:28 +000088 RequireCompleteType(Range.getBegin(), PointeeT,
Richard Smitha118c6a2012-11-28 22:52:42 +000089 diag::err_incomplete_in_exception_spec, Kind, Range))
Sebastian Redl7eb5d372009-10-14 14:59:48 +000090 return true;
Sebastian Redl4915e632009-10-11 09:03:14 +000091
92 return false;
93}
94
95/// CheckDistantExceptionSpec - Check if the given type is a pointer or pointer
96/// to member to a function with an exception specification. This means that
97/// it is invalid to add another level of indirection.
98bool Sema::CheckDistantExceptionSpec(QualType T) {
99 if (const PointerType *PT = T->getAs<PointerType>())
100 T = PT->getPointeeType();
101 else if (const MemberPointerType *PT = T->getAs<MemberPointerType>())
102 T = PT->getPointeeType();
103 else
104 return false;
105
106 const FunctionProtoType *FnT = T->getAs<FunctionProtoType>();
107 if (!FnT)
108 return false;
109
110 return FnT->hasExceptionSpec();
111}
112
Richard Smithf623c962012-04-17 00:58:00 +0000113const FunctionProtoType *
114Sema::ResolveExceptionSpec(SourceLocation Loc, const FunctionProtoType *FPT) {
Richard Smithd3b5c9082012-07-27 04:22:15 +0000115 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
Richard Smithf623c962012-04-17 00:58:00 +0000116 return FPT;
117
118 FunctionDecl *SourceDecl = FPT->getExceptionSpecDecl();
119 const FunctionProtoType *SourceFPT =
120 SourceDecl->getType()->castAs<FunctionProtoType>();
121
Richard Smithd3b5c9082012-07-27 04:22:15 +0000122 // If the exception specification has already been resolved, just return it.
123 if (!isUnresolvedExceptionSpec(SourceFPT->getExceptionSpecType()))
Richard Smithf623c962012-04-17 00:58:00 +0000124 return SourceFPT;
125
Richard Smithd3b5c9082012-07-27 04:22:15 +0000126 // Compute or instantiate the exception specification now.
Richard Smith3901dfe2013-03-27 00:22:47 +0000127 if (SourceFPT->getExceptionSpecType() == EST_Unevaluated)
Richard Smithd3b5c9082012-07-27 04:22:15 +0000128 EvaluateImplicitExceptionSpec(Loc, cast<CXXMethodDecl>(SourceDecl));
129 else
130 InstantiateExceptionSpec(Loc, SourceDecl);
Richard Smithf623c962012-04-17 00:58:00 +0000131
132 return SourceDecl->getType()->castAs<FunctionProtoType>();
133}
134
Richard Smith66f3ac92012-10-20 08:26:51 +0000135/// Determine whether a function has an implicitly-generated exception
Richard Smith1ee63522012-10-16 23:30:16 +0000136/// specification.
Richard Smith66f3ac92012-10-20 08:26:51 +0000137static bool hasImplicitExceptionSpec(FunctionDecl *Decl) {
138 if (!isa<CXXDestructorDecl>(Decl) &&
139 Decl->getDeclName().getCXXOverloadedOperator() != OO_Delete &&
140 Decl->getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
141 return false;
Richard Smith1ee63522012-10-16 23:30:16 +0000142
Richard Smith66f3ac92012-10-20 08:26:51 +0000143 // If the user didn't declare the function, its exception specification must
144 // be implicit.
145 if (!Decl->getTypeSourceInfo())
146 return true;
147
148 const FunctionProtoType *Ty =
149 Decl->getTypeSourceInfo()->getType()->getAs<FunctionProtoType>();
150 return !Ty->hasExceptionSpec();
Richard Smith1ee63522012-10-16 23:30:16 +0000151}
152
Douglas Gregorf40863c2010-02-12 07:32:17 +0000153bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) {
Sebastian Redlcb5dd002011-03-15 19:52:30 +0000154 OverloadedOperatorKind OO = New->getDeclName().getCXXOverloadedOperator();
155 bool IsOperatorNew = OO == OO_New || OO == OO_Array_New;
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000156 bool MissingExceptionSpecification = false;
Douglas Gregorf40863c2010-02-12 07:32:17 +0000157 bool MissingEmptyExceptionSpecification = false;
Francois Pichet13b4e682011-03-19 23:05:18 +0000158 unsigned DiagID = diag::err_mismatched_exception_spec;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000159 if (getLangOpts().MicrosoftExt)
Francois Pichet93921652011-04-22 08:25:24 +0000160 DiagID = diag::warn_mismatched_exception_spec;
Richard Smithf623c962012-04-17 00:58:00 +0000161
Richard Smith1ee63522012-10-16 23:30:16 +0000162 // Check the types as written: they must match before any exception
163 // specification adjustment is applied.
164 if (!CheckEquivalentExceptionSpec(
165 PDiag(DiagID), PDiag(diag::note_previous_declaration),
Richard Smith66f3ac92012-10-20 08:26:51 +0000166 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(),
167 New->getType()->getAs<FunctionProtoType>(), New->getLocation(),
Richard Smith1ee63522012-10-16 23:30:16 +0000168 &MissingExceptionSpecification, &MissingEmptyExceptionSpecification,
Richard Smith66f3ac92012-10-20 08:26:51 +0000169 /*AllowNoexceptAllMatchWithNoSpec=*/true, IsOperatorNew)) {
170 // C++11 [except.spec]p4 [DR1492]:
171 // If a declaration of a function has an implicit
172 // exception-specification, other declarations of the function shall
173 // not specify an exception-specification.
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000174 if (getLangOpts().CPlusPlus11 &&
Richard Smith66f3ac92012-10-20 08:26:51 +0000175 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) {
176 Diag(New->getLocation(), diag::ext_implicit_exception_spec_mismatch)
177 << hasImplicitExceptionSpec(Old);
178 if (!Old->getLocation().isInvalid())
179 Diag(Old->getLocation(), diag::note_previous_declaration);
180 }
Douglas Gregorf40863c2010-02-12 07:32:17 +0000181 return false;
Richard Smith66f3ac92012-10-20 08:26:51 +0000182 }
Douglas Gregorf40863c2010-02-12 07:32:17 +0000183
Eli Friedman96dbf6f2013-06-25 00:46:32 +0000184 // The failure was something other than an missing exception
Douglas Gregorf40863c2010-02-12 07:32:17 +0000185 // specification; return an error.
Eli Friedman96dbf6f2013-06-25 00:46:32 +0000186 if (!MissingExceptionSpecification)
Douglas Gregorf40863c2010-02-12 07:32:17 +0000187 return true;
188
Richard Smith66f3ac92012-10-20 08:26:51 +0000189 const FunctionProtoType *NewProto =
Eli Friedman96dbf6f2013-06-25 00:46:32 +0000190 New->getType()->castAs<FunctionProtoType>();
John McCalldb40c7f2010-12-14 08:05:40 +0000191
Douglas Gregorf40863c2010-02-12 07:32:17 +0000192 // The new function declaration is only missing an empty exception
193 // specification "throw()". If the throw() specification came from a
194 // function in a system header that has C linkage, just add an empty
195 // exception specification to the "new" declaration. This is an
196 // egregious workaround for glibc, which adds throw() specifications
197 // to many libc functions as an optimization. Unfortunately, that
198 // optimization isn't permitted by the C++ standard, so we're forced
199 // to work around it here.
John McCalldb40c7f2010-12-14 08:05:40 +0000200 if (MissingEmptyExceptionSpecification && NewProto &&
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000201 (Old->getLocation().isInvalid() ||
202 Context.getSourceManager().isInSystemHeader(Old->getLocation())) &&
Douglas Gregorf40863c2010-02-12 07:32:17 +0000203 Old->isExternC()) {
John McCalldb40c7f2010-12-14 08:05:40 +0000204 FunctionProtoType::ExtProtoInfo EPI = NewProto->getExtProtoInfo();
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000205 EPI.ExceptionSpecType = EST_DynamicNone;
Alp Toker314cc812014-01-25 16:55:45 +0000206 QualType NewType = Context.getFunctionType(NewProto->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +0000207 NewProto->getParamTypes(), EPI);
Douglas Gregorf40863c2010-02-12 07:32:17 +0000208 New->setType(NewType);
209 return false;
210 }
211
Eli Friedman96dbf6f2013-06-25 00:46:32 +0000212 const FunctionProtoType *OldProto =
213 Old->getType()->castAs<FunctionProtoType>();
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000214
Eli Friedman96dbf6f2013-06-25 00:46:32 +0000215 FunctionProtoType::ExtProtoInfo EPI = NewProto->getExtProtoInfo();
216 EPI.ExceptionSpecType = OldProto->getExceptionSpecType();
217 if (EPI.ExceptionSpecType == EST_Dynamic) {
218 EPI.NumExceptions = OldProto->getNumExceptions();
219 EPI.Exceptions = OldProto->exception_begin();
220 } else if (EPI.ExceptionSpecType == EST_ComputedNoexcept) {
221 // FIXME: We can't just take the expression from the old prototype. It
222 // likely contains references to the old prototype's parameters.
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000223 }
224
Eli Friedman96dbf6f2013-06-25 00:46:32 +0000225 // Update the type of the function with the appropriate exception
226 // specification.
Alp Toker314cc812014-01-25 16:55:45 +0000227 QualType NewType = Context.getFunctionType(NewProto->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +0000228 NewProto->getParamTypes(), EPI);
Eli Friedman96dbf6f2013-06-25 00:46:32 +0000229 New->setType(NewType);
230
231 // Warn about the lack of exception specification.
232 SmallString<128> ExceptionSpecString;
233 llvm::raw_svector_ostream OS(ExceptionSpecString);
234 switch (OldProto->getExceptionSpecType()) {
235 case EST_DynamicNone:
236 OS << "throw()";
237 break;
238
239 case EST_Dynamic: {
240 OS << "throw(";
241 bool OnFirstException = true;
242 for (FunctionProtoType::exception_iterator E = OldProto->exception_begin(),
243 EEnd = OldProto->exception_end();
244 E != EEnd;
245 ++E) {
246 if (OnFirstException)
247 OnFirstException = false;
248 else
249 OS << ", ";
250
251 OS << E->getAsString(getPrintingPolicy());
252 }
253 OS << ")";
254 break;
255 }
256
257 case EST_BasicNoexcept:
258 OS << "noexcept";
259 break;
260
261 case EST_ComputedNoexcept:
262 OS << "noexcept(";
263 OldProto->getNoexceptExpr()->printPretty(OS, 0, getPrintingPolicy());
264 OS << ")";
265 break;
266
267 default:
268 llvm_unreachable("This spec type is compatible with none.");
269 }
270 OS.flush();
271
272 SourceLocation FixItLoc;
273 if (TypeSourceInfo *TSInfo = New->getTypeSourceInfo()) {
274 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens();
275 if (FunctionTypeLoc FTLoc = TL.getAs<FunctionTypeLoc>())
276 FixItLoc = PP.getLocForEndOfToken(FTLoc.getLocalRangeEnd());
277 }
278
279 if (FixItLoc.isInvalid())
280 Diag(New->getLocation(), diag::warn_missing_exception_specification)
281 << New << OS.str();
282 else {
283 // FIXME: This will get more complicated with C++0x
284 // late-specified return types.
285 Diag(New->getLocation(), diag::warn_missing_exception_specification)
286 << New << OS.str()
287 << FixItHint::CreateInsertion(FixItLoc, " " + OS.str().str());
288 }
289
290 if (!Old->getLocation().isInvalid())
291 Diag(Old->getLocation(), diag::note_previous_declaration);
292
293 return false;
Douglas Gregorf40863c2010-02-12 07:32:17 +0000294}
295
Sebastian Redl4915e632009-10-11 09:03:14 +0000296/// CheckEquivalentExceptionSpec - Check if the two types have equivalent
297/// exception specifications. Exception specifications are equivalent if
298/// they allow exactly the same set of exception types. It does not matter how
299/// that is achieved. See C++ [except.spec]p2.
300bool Sema::CheckEquivalentExceptionSpec(
301 const FunctionProtoType *Old, SourceLocation OldLoc,
302 const FunctionProtoType *New, SourceLocation NewLoc) {
Francois Pichet13b4e682011-03-19 23:05:18 +0000303 unsigned DiagID = diag::err_mismatched_exception_spec;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000304 if (getLangOpts().MicrosoftExt)
Francois Pichet93921652011-04-22 08:25:24 +0000305 DiagID = diag::warn_mismatched_exception_spec;
Richard Smith1ee63522012-10-16 23:30:16 +0000306 return CheckEquivalentExceptionSpec(PDiag(DiagID),
Douglas Gregor89336232010-03-29 23:34:08 +0000307 PDiag(diag::note_previous_declaration),
Sebastian Redl4915e632009-10-11 09:03:14 +0000308 Old, OldLoc, New, NewLoc);
309}
310
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000311/// CheckEquivalentExceptionSpec - Check if the two types have compatible
312/// exception specifications. See C++ [except.spec]p3.
Richard Smith66f3ac92012-10-20 08:26:51 +0000313///
314/// \return \c false if the exception specifications match, \c true if there is
315/// a problem. If \c true is returned, either a diagnostic has already been
316/// produced or \c *MissingExceptionSpecification is set to \c true.
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000317bool Sema::CheckEquivalentExceptionSpec(const PartialDiagnostic &DiagID,
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000318 const PartialDiagnostic & NoteID,
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000319 const FunctionProtoType *Old,
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000320 SourceLocation OldLoc,
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000321 const FunctionProtoType *New,
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000322 SourceLocation NewLoc,
323 bool *MissingExceptionSpecification,
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000324 bool*MissingEmptyExceptionSpecification,
Sebastian Redlcb5dd002011-03-15 19:52:30 +0000325 bool AllowNoexceptAllMatchWithNoSpec,
326 bool IsOperatorNew) {
John McCallf9c94092010-05-28 08:37:35 +0000327 // Just completely ignore this under -fno-exceptions.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000328 if (!getLangOpts().CXXExceptions)
John McCallf9c94092010-05-28 08:37:35 +0000329 return false;
330
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000331 if (MissingExceptionSpecification)
332 *MissingExceptionSpecification = false;
333
Douglas Gregorf40863c2010-02-12 07:32:17 +0000334 if (MissingEmptyExceptionSpecification)
335 *MissingEmptyExceptionSpecification = false;
336
Richard Smithf623c962012-04-17 00:58:00 +0000337 Old = ResolveExceptionSpec(NewLoc, Old);
338 if (!Old)
339 return false;
340 New = ResolveExceptionSpec(NewLoc, New);
341 if (!New)
342 return false;
343
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000344 // C++0x [except.spec]p3: Two exception-specifications are compatible if:
345 // - both are non-throwing, regardless of their form,
346 // - both have the form noexcept(constant-expression) and the constant-
347 // expressions are equivalent,
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000348 // - both are dynamic-exception-specifications that have the same set of
349 // adjusted types.
350 //
351 // C++0x [except.spec]p12: An exception-specifcation is non-throwing if it is
352 // of the form throw(), noexcept, or noexcept(constant-expression) where the
353 // constant-expression yields true.
354 //
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000355 // C++0x [except.spec]p4: If any declaration of a function has an exception-
356 // specifier that is not a noexcept-specification allowing all exceptions,
357 // all declarations [...] of that function shall have a compatible
358 // exception-specification.
359 //
360 // That last point basically means that noexcept(false) matches no spec.
361 // It's considered when AllowNoexceptAllMatchWithNoSpec is true.
362
363 ExceptionSpecificationType OldEST = Old->getExceptionSpecType();
364 ExceptionSpecificationType NewEST = New->getExceptionSpecType();
365
Richard Smithd3b5c9082012-07-27 04:22:15 +0000366 assert(!isUnresolvedExceptionSpec(OldEST) &&
367 !isUnresolvedExceptionSpec(NewEST) &&
Richard Smith938f40b2011-06-11 17:19:42 +0000368 "Shouldn't see unknown exception specifications here");
369
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000370 // Shortcut the case where both have no spec.
371 if (OldEST == EST_None && NewEST == EST_None)
372 return false;
373
Sebastian Redl31ad7542011-03-13 17:09:40 +0000374 FunctionProtoType::NoexceptResult OldNR = Old->getNoexceptSpec(Context);
375 FunctionProtoType::NoexceptResult NewNR = New->getNoexceptSpec(Context);
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000376 if (OldNR == FunctionProtoType::NR_BadNoexcept ||
377 NewNR == FunctionProtoType::NR_BadNoexcept)
378 return false;
379
380 // Dependent noexcept specifiers are compatible with each other, but nothing
381 // else.
382 // One noexcept is compatible with another if the argument is the same
383 if (OldNR == NewNR &&
384 OldNR != FunctionProtoType::NR_NoNoexcept &&
385 NewNR != FunctionProtoType::NR_NoNoexcept)
386 return false;
387 if (OldNR != NewNR &&
388 OldNR != FunctionProtoType::NR_NoNoexcept &&
389 NewNR != FunctionProtoType::NR_NoNoexcept) {
390 Diag(NewLoc, DiagID);
391 if (NoteID.getDiagID() != 0)
392 Diag(OldLoc, NoteID);
393 return true;
Douglas Gregorf62c5292010-08-30 15:04:51 +0000394 }
395
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000396 // The MS extension throw(...) is compatible with itself.
397 if (OldEST == EST_MSAny && NewEST == EST_MSAny)
Sebastian Redl4915e632009-10-11 09:03:14 +0000398 return false;
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000399
400 // It's also compatible with no spec.
401 if ((OldEST == EST_None && NewEST == EST_MSAny) ||
402 (OldEST == EST_MSAny && NewEST == EST_None))
403 return false;
404
405 // It's also compatible with noexcept(false).
406 if (OldEST == EST_MSAny && NewNR == FunctionProtoType::NR_Throw)
407 return false;
408 if (NewEST == EST_MSAny && OldNR == FunctionProtoType::NR_Throw)
409 return false;
410
411 // As described above, noexcept(false) matches no spec only for functions.
412 if (AllowNoexceptAllMatchWithNoSpec) {
413 if (OldEST == EST_None && NewNR == FunctionProtoType::NR_Throw)
414 return false;
415 if (NewEST == EST_None && OldNR == FunctionProtoType::NR_Throw)
416 return false;
417 }
418
419 // Any non-throwing specifications are compatible.
420 bool OldNonThrowing = OldNR == FunctionProtoType::NR_Nothrow ||
421 OldEST == EST_DynamicNone;
422 bool NewNonThrowing = NewNR == FunctionProtoType::NR_Nothrow ||
423 NewEST == EST_DynamicNone;
424 if (OldNonThrowing && NewNonThrowing)
425 return false;
426
Sebastian Redlcb5dd002011-03-15 19:52:30 +0000427 // As a special compatibility feature, under C++0x we accept no spec and
428 // throw(std::bad_alloc) as equivalent for operator new and operator new[].
429 // This is because the implicit declaration changed, but old code would break.
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000430 if (getLangOpts().CPlusPlus11 && IsOperatorNew) {
Sebastian Redlcb5dd002011-03-15 19:52:30 +0000431 const FunctionProtoType *WithExceptions = 0;
432 if (OldEST == EST_None && NewEST == EST_Dynamic)
433 WithExceptions = New;
434 else if (OldEST == EST_Dynamic && NewEST == EST_None)
435 WithExceptions = Old;
436 if (WithExceptions && WithExceptions->getNumExceptions() == 1) {
437 // One has no spec, the other throw(something). If that something is
438 // std::bad_alloc, all conditions are met.
439 QualType Exception = *WithExceptions->exception_begin();
440 if (CXXRecordDecl *ExRecord = Exception->getAsCXXRecordDecl()) {
441 IdentifierInfo* Name = ExRecord->getIdentifier();
442 if (Name && Name->getName() == "bad_alloc") {
443 // It's called bad_alloc, but is it in std?
444 DeclContext* DC = ExRecord->getDeclContext();
Sebastian Redlc34c29f2011-03-15 20:41:09 +0000445 DC = DC->getEnclosingNamespaceContext();
446 if (NamespaceDecl* NS = dyn_cast<NamespaceDecl>(DC)) {
Sebastian Redlcb5dd002011-03-15 19:52:30 +0000447 IdentifierInfo* NSName = NS->getIdentifier();
Sebastian Redlc34c29f2011-03-15 20:41:09 +0000448 DC = DC->getParent();
Sebastian Redlcb5dd002011-03-15 19:52:30 +0000449 if (NSName && NSName->getName() == "std" &&
Sebastian Redlc34c29f2011-03-15 20:41:09 +0000450 DC->getEnclosingNamespaceContext()->isTranslationUnit()) {
Sebastian Redlcb5dd002011-03-15 19:52:30 +0000451 return false;
Sebastian Redlc34c29f2011-03-15 20:41:09 +0000452 }
Sebastian Redlcb5dd002011-03-15 19:52:30 +0000453 }
454 }
455 }
456 }
457 }
458
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000459 // At this point, the only remaining valid case is two matching dynamic
460 // specifications. We return here unless both specifications are dynamic.
461 if (OldEST != EST_Dynamic || NewEST != EST_Dynamic) {
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000462 if (MissingExceptionSpecification && Old->hasExceptionSpec() &&
Douglas Gregorf40863c2010-02-12 07:32:17 +0000463 !New->hasExceptionSpec()) {
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000464 // The old type has an exception specification of some sort, but
465 // the new type does not.
466 *MissingExceptionSpecification = true;
467
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000468 if (MissingEmptyExceptionSpecification && OldNonThrowing) {
469 // The old type has a throw() or noexcept(true) exception specification
470 // and the new type has no exception specification, and the caller asked
Douglas Gregord6bc5e62010-03-24 07:14:45 +0000471 // to handle this itself.
472 *MissingEmptyExceptionSpecification = true;
473 }
474
Douglas Gregorf40863c2010-02-12 07:32:17 +0000475 return true;
476 }
477
Sebastian Redl4915e632009-10-11 09:03:14 +0000478 Diag(NewLoc, DiagID);
Sebastian Redla44822f2009-10-14 16:09:29 +0000479 if (NoteID.getDiagID() != 0)
Sebastian Redl4915e632009-10-11 09:03:14 +0000480 Diag(OldLoc, NoteID);
481 return true;
482 }
483
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000484 assert(OldEST == EST_Dynamic && NewEST == EST_Dynamic &&
485 "Exception compatibility logic error: non-dynamic spec slipped through.");
486
Sebastian Redl4915e632009-10-11 09:03:14 +0000487 bool Success = true;
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000488 // Both have a dynamic exception spec. Collect the first set, then compare
Sebastian Redl4915e632009-10-11 09:03:14 +0000489 // to the second.
Sebastian Redl184edca2009-10-14 15:06:25 +0000490 llvm::SmallPtrSet<CanQualType, 8> OldTypes, NewTypes;
Sebastian Redl4915e632009-10-11 09:03:14 +0000491 for (FunctionProtoType::exception_iterator I = Old->exception_begin(),
492 E = Old->exception_end(); I != E; ++I)
Sebastian Redl184edca2009-10-14 15:06:25 +0000493 OldTypes.insert(Context.getCanonicalType(*I).getUnqualifiedType());
Sebastian Redl4915e632009-10-11 09:03:14 +0000494
495 for (FunctionProtoType::exception_iterator I = New->exception_begin(),
Sebastian Redl6e4c8712009-10-11 09:11:23 +0000496 E = New->exception_end(); I != E && Success; ++I) {
Sebastian Redl184edca2009-10-14 15:06:25 +0000497 CanQualType TypePtr = Context.getCanonicalType(*I).getUnqualifiedType();
Sebastian Redl6e4c8712009-10-11 09:11:23 +0000498 if(OldTypes.count(TypePtr))
499 NewTypes.insert(TypePtr);
500 else
501 Success = false;
502 }
Sebastian Redl4915e632009-10-11 09:03:14 +0000503
Sebastian Redl6e4c8712009-10-11 09:11:23 +0000504 Success = Success && OldTypes.size() == NewTypes.size();
Sebastian Redl4915e632009-10-11 09:03:14 +0000505
506 if (Success) {
507 return false;
508 }
509 Diag(NewLoc, DiagID);
Sebastian Redla44822f2009-10-14 16:09:29 +0000510 if (NoteID.getDiagID() != 0)
Sebastian Redl4915e632009-10-11 09:03:14 +0000511 Diag(OldLoc, NoteID);
512 return true;
513}
514
515/// CheckExceptionSpecSubset - Check whether the second function type's
516/// exception specification is a subset (or equivalent) of the first function
517/// type. This is used by override and pointer assignment checks.
Sebastian Redla44822f2009-10-14 16:09:29 +0000518bool Sema::CheckExceptionSpecSubset(
519 const PartialDiagnostic &DiagID, const PartialDiagnostic & NoteID,
Sebastian Redl4915e632009-10-11 09:03:14 +0000520 const FunctionProtoType *Superset, SourceLocation SuperLoc,
521 const FunctionProtoType *Subset, SourceLocation SubLoc) {
John McCallf9c94092010-05-28 08:37:35 +0000522
523 // Just auto-succeed under -fno-exceptions.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000524 if (!getLangOpts().CXXExceptions)
John McCallf9c94092010-05-28 08:37:35 +0000525 return false;
526
Sebastian Redl4915e632009-10-11 09:03:14 +0000527 // FIXME: As usual, we could be more specific in our error messages, but
528 // that better waits until we've got types with source locations.
529
530 if (!SubLoc.isValid())
531 SubLoc = SuperLoc;
532
Richard Smithf623c962012-04-17 00:58:00 +0000533 // Resolve the exception specifications, if needed.
534 Superset = ResolveExceptionSpec(SuperLoc, Superset);
535 if (!Superset)
536 return false;
537 Subset = ResolveExceptionSpec(SubLoc, Subset);
538 if (!Subset)
539 return false;
540
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000541 ExceptionSpecificationType SuperEST = Superset->getExceptionSpecType();
542
Sebastian Redl4915e632009-10-11 09:03:14 +0000543 // If superset contains everything, we're done.
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000544 if (SuperEST == EST_None || SuperEST == EST_MSAny)
Sebastian Redl4915e632009-10-11 09:03:14 +0000545 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc);
546
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000547 // If there are dependent noexcept specs, assume everything is fine. Unlike
548 // with the equivalency check, this is safe in this case, because we don't
549 // want to merge declarations. Checks after instantiation will catch any
550 // omissions we make here.
551 // We also shortcut checking if a noexcept expression was bad.
552
Sebastian Redl31ad7542011-03-13 17:09:40 +0000553 FunctionProtoType::NoexceptResult SuperNR =Superset->getNoexceptSpec(Context);
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000554 if (SuperNR == FunctionProtoType::NR_BadNoexcept ||
555 SuperNR == FunctionProtoType::NR_Dependent)
556 return false;
557
558 // Another case of the superset containing everything.
559 if (SuperNR == FunctionProtoType::NR_Throw)
560 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc);
561
562 ExceptionSpecificationType SubEST = Subset->getExceptionSpecType();
563
Richard Smithd3b5c9082012-07-27 04:22:15 +0000564 assert(!isUnresolvedExceptionSpec(SuperEST) &&
565 !isUnresolvedExceptionSpec(SubEST) &&
Richard Smith938f40b2011-06-11 17:19:42 +0000566 "Shouldn't see unknown exception specifications here");
567
Sebastian Redl4915e632009-10-11 09:03:14 +0000568 // It does not. If the subset contains everything, we've failed.
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000569 if (SubEST == EST_None || SubEST == EST_MSAny) {
Sebastian Redl4915e632009-10-11 09:03:14 +0000570 Diag(SubLoc, DiagID);
Sebastian Redla44822f2009-10-14 16:09:29 +0000571 if (NoteID.getDiagID() != 0)
Sebastian Redl4915e632009-10-11 09:03:14 +0000572 Diag(SuperLoc, NoteID);
573 return true;
574 }
575
Sebastian Redl31ad7542011-03-13 17:09:40 +0000576 FunctionProtoType::NoexceptResult SubNR = Subset->getNoexceptSpec(Context);
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000577 if (SubNR == FunctionProtoType::NR_BadNoexcept ||
578 SubNR == FunctionProtoType::NR_Dependent)
579 return false;
580
581 // Another case of the subset containing everything.
582 if (SubNR == FunctionProtoType::NR_Throw) {
583 Diag(SubLoc, DiagID);
584 if (NoteID.getDiagID() != 0)
585 Diag(SuperLoc, NoteID);
586 return true;
587 }
588
589 // If the subset contains nothing, we're done.
590 if (SubEST == EST_DynamicNone || SubNR == FunctionProtoType::NR_Nothrow)
591 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc);
592
593 // Otherwise, if the superset contains nothing, we've failed.
594 if (SuperEST == EST_DynamicNone || SuperNR == FunctionProtoType::NR_Nothrow) {
595 Diag(SubLoc, DiagID);
596 if (NoteID.getDiagID() != 0)
597 Diag(SuperLoc, NoteID);
598 return true;
599 }
600
601 assert(SuperEST == EST_Dynamic && SubEST == EST_Dynamic &&
602 "Exception spec subset: non-dynamic case slipped through.");
603
604 // Neither contains everything or nothing. Do a proper comparison.
Sebastian Redl4915e632009-10-11 09:03:14 +0000605 for (FunctionProtoType::exception_iterator SubI = Subset->exception_begin(),
606 SubE = Subset->exception_end(); SubI != SubE; ++SubI) {
607 // Take one type from the subset.
608 QualType CanonicalSubT = Context.getCanonicalType(*SubI);
Sebastian Redl075b21d2009-10-14 14:38:54 +0000609 // Unwrap pointers and references so that we can do checks within a class
610 // hierarchy. Don't unwrap member pointers; they don't have hierarchy
611 // conversions on the pointee.
Sebastian Redl4915e632009-10-11 09:03:14 +0000612 bool SubIsPointer = false;
613 if (const ReferenceType *RefTy = CanonicalSubT->getAs<ReferenceType>())
614 CanonicalSubT = RefTy->getPointeeType();
615 if (const PointerType *PtrTy = CanonicalSubT->getAs<PointerType>()) {
616 CanonicalSubT = PtrTy->getPointeeType();
617 SubIsPointer = true;
618 }
619 bool SubIsClass = CanonicalSubT->isRecordType();
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +0000620 CanonicalSubT = CanonicalSubT.getLocalUnqualifiedType();
Sebastian Redl4915e632009-10-11 09:03:14 +0000621
622 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
623 /*DetectVirtual=*/false);
624
625 bool Contained = false;
626 // Make sure it's in the superset.
627 for (FunctionProtoType::exception_iterator SuperI =
628 Superset->exception_begin(), SuperE = Superset->exception_end();
629 SuperI != SuperE; ++SuperI) {
630 QualType CanonicalSuperT = Context.getCanonicalType(*SuperI);
631 // SubT must be SuperT or derived from it, or pointer or reference to
632 // such types.
633 if (const ReferenceType *RefTy = CanonicalSuperT->getAs<ReferenceType>())
634 CanonicalSuperT = RefTy->getPointeeType();
635 if (SubIsPointer) {
636 if (const PointerType *PtrTy = CanonicalSuperT->getAs<PointerType>())
637 CanonicalSuperT = PtrTy->getPointeeType();
638 else {
639 continue;
640 }
641 }
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +0000642 CanonicalSuperT = CanonicalSuperT.getLocalUnqualifiedType();
Sebastian Redl4915e632009-10-11 09:03:14 +0000643 // If the types are the same, move on to the next type in the subset.
644 if (CanonicalSubT == CanonicalSuperT) {
645 Contained = true;
646 break;
647 }
648
649 // Otherwise we need to check the inheritance.
650 if (!SubIsClass || !CanonicalSuperT->isRecordType())
651 continue;
652
653 Paths.clear();
654 if (!IsDerivedFrom(CanonicalSubT, CanonicalSuperT, Paths))
655 continue;
656
Douglas Gregor27ac4292010-05-21 20:29:55 +0000657 if (Paths.isAmbiguous(Context.getCanonicalType(CanonicalSuperT)))
Sebastian Redl4915e632009-10-11 09:03:14 +0000658 continue;
659
John McCall5b0829a2010-02-10 09:31:12 +0000660 // Do this check from a context without privileges.
John McCall1064d7e2010-03-16 05:22:47 +0000661 switch (CheckBaseClassAccess(SourceLocation(),
John McCall5b0829a2010-02-10 09:31:12 +0000662 CanonicalSuperT, CanonicalSubT,
663 Paths.front(),
John McCall1064d7e2010-03-16 05:22:47 +0000664 /*Diagnostic*/ 0,
John McCall5b0829a2010-02-10 09:31:12 +0000665 /*ForceCheck*/ true,
John McCall1064d7e2010-03-16 05:22:47 +0000666 /*ForceUnprivileged*/ true)) {
John McCall5b0829a2010-02-10 09:31:12 +0000667 case AR_accessible: break;
668 case AR_inaccessible: continue;
669 case AR_dependent:
670 llvm_unreachable("access check dependent for unprivileged context");
John McCall5b0829a2010-02-10 09:31:12 +0000671 case AR_delayed:
672 llvm_unreachable("access check delayed in non-declaration");
John McCall5b0829a2010-02-10 09:31:12 +0000673 }
Sebastian Redl4915e632009-10-11 09:03:14 +0000674
675 Contained = true;
676 break;
677 }
678 if (!Contained) {
679 Diag(SubLoc, DiagID);
Sebastian Redla44822f2009-10-14 16:09:29 +0000680 if (NoteID.getDiagID() != 0)
Sebastian Redl4915e632009-10-11 09:03:14 +0000681 Diag(SuperLoc, NoteID);
682 return true;
683 }
684 }
685 // We've run half the gauntlet.
686 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc);
687}
688
689static bool CheckSpecForTypesEquivalent(Sema &S,
Sebastian Redla44822f2009-10-14 16:09:29 +0000690 const PartialDiagnostic &DiagID, const PartialDiagnostic & NoteID,
Sebastian Redl4915e632009-10-11 09:03:14 +0000691 QualType Target, SourceLocation TargetLoc,
692 QualType Source, SourceLocation SourceLoc)
693{
694 const FunctionProtoType *TFunc = GetUnderlyingFunction(Target);
695 if (!TFunc)
696 return false;
697 const FunctionProtoType *SFunc = GetUnderlyingFunction(Source);
698 if (!SFunc)
699 return false;
700
701 return S.CheckEquivalentExceptionSpec(DiagID, NoteID, TFunc, TargetLoc,
702 SFunc, SourceLoc);
703}
704
705/// CheckParamExceptionSpec - Check if the parameter and return types of the
706/// two functions have equivalent exception specs. This is part of the
707/// assignment and override compatibility check. We do not check the parameters
708/// of parameter function pointers recursively, as no sane programmer would
709/// even be able to write such a function type.
Sebastian Redla44822f2009-10-14 16:09:29 +0000710bool Sema::CheckParamExceptionSpec(const PartialDiagnostic & NoteID,
Sebastian Redl4915e632009-10-11 09:03:14 +0000711 const FunctionProtoType *Target, SourceLocation TargetLoc,
712 const FunctionProtoType *Source, SourceLocation SourceLoc)
713{
Alp Toker314cc812014-01-25 16:55:45 +0000714 if (CheckSpecForTypesEquivalent(
715 *this, PDiag(diag::err_deep_exception_specs_differ) << 0, PDiag(),
716 Target->getReturnType(), TargetLoc, Source->getReturnType(),
717 SourceLoc))
Sebastian Redl4915e632009-10-11 09:03:14 +0000718 return true;
719
Sebastian Redla44822f2009-10-14 16:09:29 +0000720 // We shouldn't even be testing this unless the arguments are otherwise
Sebastian Redl4915e632009-10-11 09:03:14 +0000721 // compatible.
Alp Toker9cacbab2014-01-20 20:26:09 +0000722 assert(Target->getNumParams() == Source->getNumParams() &&
Sebastian Redl4915e632009-10-11 09:03:14 +0000723 "Functions have different argument counts.");
Alp Toker9cacbab2014-01-20 20:26:09 +0000724 for (unsigned i = 0, E = Target->getNumParams(); i != E; ++i) {
725 if (CheckSpecForTypesEquivalent(
726 *this, PDiag(diag::err_deep_exception_specs_differ) << 1, PDiag(),
727 Target->getParamType(i), TargetLoc, Source->getParamType(i),
728 SourceLoc))
Sebastian Redl4915e632009-10-11 09:03:14 +0000729 return true;
730 }
731 return false;
732}
733
734bool Sema::CheckExceptionSpecCompatibility(Expr *From, QualType ToType)
735{
736 // First we check for applicability.
737 // Target type must be a function, function pointer or function reference.
738 const FunctionProtoType *ToFunc = GetUnderlyingFunction(ToType);
739 if (!ToFunc)
740 return false;
741
742 // SourceType must be a function or function pointer.
743 const FunctionProtoType *FromFunc = GetUnderlyingFunction(From->getType());
744 if (!FromFunc)
745 return false;
746
747 // Now we've got the correct types on both sides, check their compatibility.
748 // This means that the source of the conversion can only throw a subset of
749 // the exceptions of the target, and any exception specs on arguments or
750 // return types must be equivalent.
Douglas Gregor89336232010-03-29 23:34:08 +0000751 return CheckExceptionSpecSubset(PDiag(diag::err_incompatible_exception_specs),
752 PDiag(), ToFunc,
753 From->getSourceRange().getBegin(),
Sebastian Redl4915e632009-10-11 09:03:14 +0000754 FromFunc, SourceLocation());
755}
756
757bool Sema::CheckOverridingFunctionExceptionSpec(const CXXMethodDecl *New,
758 const CXXMethodDecl *Old) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000759 if (getLangOpts().CPlusPlus11 && isa<CXXDestructorDecl>(New)) {
Sebastian Redl645d9582011-05-20 05:57:18 +0000760 // Don't check uninstantiated template destructors at all. We can only
761 // synthesize correct specs after the template is instantiated.
762 if (New->getParent()->isDependentType())
763 return false;
764 if (New->getParent()->isBeingDefined()) {
765 // The destructor might be updated once the definition is finished. So
766 // remember it and check later.
767 DelayedDestructorExceptionSpecChecks.push_back(std::make_pair(
768 cast<CXXDestructorDecl>(New), cast<CXXDestructorDecl>(Old)));
769 return false;
770 }
Sebastian Redl623ea822011-05-19 05:13:44 +0000771 }
Francois Picheta8032e92011-05-24 02:11:43 +0000772 unsigned DiagID = diag::err_override_exception_spec;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000773 if (getLangOpts().MicrosoftExt)
Francois Picheta8032e92011-05-24 02:11:43 +0000774 DiagID = diag::warn_override_exception_spec;
775 return CheckExceptionSpecSubset(PDiag(DiagID),
Douglas Gregor89336232010-03-29 23:34:08 +0000776 PDiag(diag::note_overridden_virtual_function),
Sebastian Redl4915e632009-10-11 09:03:14 +0000777 Old->getType()->getAs<FunctionProtoType>(),
778 Old->getLocation(),
779 New->getType()->getAs<FunctionProtoType>(),
780 New->getLocation());
781}
782
Richard Smithf623c962012-04-17 00:58:00 +0000783static CanThrowResult canSubExprsThrow(Sema &S, const Expr *CE) {
784 Expr *E = const_cast<Expr*>(CE);
785 CanThrowResult R = CT_Cannot;
786 for (Expr::child_range I = E->children(); I && R != CT_Can; ++I)
787 R = mergeCanThrow(R, S.canThrow(cast<Expr>(*I)));
788 return R;
789}
790
Eli Friedman0423b762013-06-25 01:24:22 +0000791static CanThrowResult canCalleeThrow(Sema &S, const Expr *E, const Decl *D) {
792 assert(D && "Expected decl");
Richard Smithf623c962012-04-17 00:58:00 +0000793
794 // See if we can get a function type from the decl somehow.
795 const ValueDecl *VD = dyn_cast<ValueDecl>(D);
796 if (!VD) // If we have no clue what we're calling, assume the worst.
797 return CT_Can;
798
799 // As an extension, we assume that __attribute__((nothrow)) functions don't
800 // throw.
801 if (isa<FunctionDecl>(D) && D->hasAttr<NoThrowAttr>())
802 return CT_Cannot;
803
804 QualType T = VD->getType();
805 const FunctionProtoType *FT;
806 if ((FT = T->getAs<FunctionProtoType>())) {
807 } else if (const PointerType *PT = T->getAs<PointerType>())
808 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
809 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
810 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
811 else if (const MemberPointerType *MT = T->getAs<MemberPointerType>())
812 FT = MT->getPointeeType()->getAs<FunctionProtoType>();
813 else if (const BlockPointerType *BT = T->getAs<BlockPointerType>())
814 FT = BT->getPointeeType()->getAs<FunctionProtoType>();
815
816 if (!FT)
817 return CT_Can;
818
819 FT = S.ResolveExceptionSpec(E->getLocStart(), FT);
820 if (!FT)
821 return CT_Can;
822
Richard Smithf623c962012-04-17 00:58:00 +0000823 return FT->isNothrow(S.Context) ? CT_Cannot : CT_Can;
824}
825
826static CanThrowResult canDynamicCastThrow(const CXXDynamicCastExpr *DC) {
827 if (DC->isTypeDependent())
828 return CT_Dependent;
829
830 if (!DC->getTypeAsWritten()->isReferenceType())
831 return CT_Cannot;
832
833 if (DC->getSubExpr()->isTypeDependent())
834 return CT_Dependent;
835
836 return DC->getCastKind() == clang::CK_Dynamic? CT_Can : CT_Cannot;
837}
838
839static CanThrowResult canTypeidThrow(Sema &S, const CXXTypeidExpr *DC) {
840 if (DC->isTypeOperand())
841 return CT_Cannot;
842
843 Expr *Op = DC->getExprOperand();
844 if (Op->isTypeDependent())
845 return CT_Dependent;
846
847 const RecordType *RT = Op->getType()->getAs<RecordType>();
848 if (!RT)
849 return CT_Cannot;
850
851 if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic())
852 return CT_Cannot;
853
854 if (Op->Classify(S.Context).isPRValue())
855 return CT_Cannot;
856
857 return CT_Can;
858}
859
860CanThrowResult Sema::canThrow(const Expr *E) {
861 // C++ [expr.unary.noexcept]p3:
862 // [Can throw] if in a potentially-evaluated context the expression would
863 // contain:
864 switch (E->getStmtClass()) {
865 case Expr::CXXThrowExprClass:
866 // - a potentially evaluated throw-expression
867 return CT_Can;
868
869 case Expr::CXXDynamicCastExprClass: {
870 // - a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
871 // where T is a reference type, that requires a run-time check
872 CanThrowResult CT = canDynamicCastThrow(cast<CXXDynamicCastExpr>(E));
873 if (CT == CT_Can)
874 return CT;
875 return mergeCanThrow(CT, canSubExprsThrow(*this, E));
876 }
877
878 case Expr::CXXTypeidExprClass:
879 // - a potentially evaluated typeid expression applied to a glvalue
880 // expression whose type is a polymorphic class type
881 return canTypeidThrow(*this, cast<CXXTypeidExpr>(E));
882
883 // - a potentially evaluated call to a function, member function, function
884 // pointer, or member function pointer that does not have a non-throwing
885 // exception-specification
886 case Expr::CallExprClass:
887 case Expr::CXXMemberCallExprClass:
888 case Expr::CXXOperatorCallExprClass:
889 case Expr::UserDefinedLiteralClass: {
890 const CallExpr *CE = cast<CallExpr>(E);
891 CanThrowResult CT;
892 if (E->isTypeDependent())
893 CT = CT_Dependent;
894 else if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens()))
895 CT = CT_Cannot;
Eli Friedman5a8738f2013-06-25 01:55:41 +0000896 else if (CE->getCalleeDecl())
Richard Smithf623c962012-04-17 00:58:00 +0000897 CT = canCalleeThrow(*this, E, CE->getCalleeDecl());
Eli Friedman5a8738f2013-06-25 01:55:41 +0000898 else
899 CT = CT_Can;
Richard Smithf623c962012-04-17 00:58:00 +0000900 if (CT == CT_Can)
901 return CT;
902 return mergeCanThrow(CT, canSubExprsThrow(*this, E));
903 }
904
905 case Expr::CXXConstructExprClass:
906 case Expr::CXXTemporaryObjectExprClass: {
907 CanThrowResult CT = canCalleeThrow(*this, E,
908 cast<CXXConstructExpr>(E)->getConstructor());
909 if (CT == CT_Can)
910 return CT;
911 return mergeCanThrow(CT, canSubExprsThrow(*this, E));
912 }
913
914 case Expr::LambdaExprClass: {
915 const LambdaExpr *Lambda = cast<LambdaExpr>(E);
916 CanThrowResult CT = CT_Cannot;
917 for (LambdaExpr::capture_init_iterator Cap = Lambda->capture_init_begin(),
918 CapEnd = Lambda->capture_init_end();
919 Cap != CapEnd; ++Cap)
920 CT = mergeCanThrow(CT, canThrow(*Cap));
921 return CT;
922 }
923
924 case Expr::CXXNewExprClass: {
925 CanThrowResult CT;
926 if (E->isTypeDependent())
927 CT = CT_Dependent;
928 else
929 CT = canCalleeThrow(*this, E, cast<CXXNewExpr>(E)->getOperatorNew());
930 if (CT == CT_Can)
931 return CT;
932 return mergeCanThrow(CT, canSubExprsThrow(*this, E));
933 }
934
935 case Expr::CXXDeleteExprClass: {
936 CanThrowResult CT;
937 QualType DTy = cast<CXXDeleteExpr>(E)->getDestroyedType();
938 if (DTy.isNull() || DTy->isDependentType()) {
939 CT = CT_Dependent;
940 } else {
941 CT = canCalleeThrow(*this, E,
942 cast<CXXDeleteExpr>(E)->getOperatorDelete());
943 if (const RecordType *RT = DTy->getAs<RecordType>()) {
944 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Eli Friedman0423b762013-06-25 01:24:22 +0000945 const CXXDestructorDecl *DD = RD->getDestructor();
946 if (DD)
947 CT = mergeCanThrow(CT, canCalleeThrow(*this, E, DD));
Richard Smithf623c962012-04-17 00:58:00 +0000948 }
949 if (CT == CT_Can)
950 return CT;
951 }
952 return mergeCanThrow(CT, canSubExprsThrow(*this, E));
953 }
954
955 case Expr::CXXBindTemporaryExprClass: {
956 // The bound temporary has to be destroyed again, which might throw.
957 CanThrowResult CT = canCalleeThrow(*this, E,
958 cast<CXXBindTemporaryExpr>(E)->getTemporary()->getDestructor());
959 if (CT == CT_Can)
960 return CT;
961 return mergeCanThrow(CT, canSubExprsThrow(*this, E));
962 }
963
964 // ObjC message sends are like function calls, but never have exception
965 // specs.
966 case Expr::ObjCMessageExprClass:
967 case Expr::ObjCPropertyRefExprClass:
968 case Expr::ObjCSubscriptRefExprClass:
969 return CT_Can;
970
971 // All the ObjC literals that are implemented as calls are
972 // potentially throwing unless we decide to close off that
973 // possibility.
974 case Expr::ObjCArrayLiteralClass:
975 case Expr::ObjCDictionaryLiteralClass:
Patrick Beard0caa3942012-04-19 00:25:12 +0000976 case Expr::ObjCBoxedExprClass:
Richard Smithf623c962012-04-17 00:58:00 +0000977 return CT_Can;
978
979 // Many other things have subexpressions, so we have to test those.
980 // Some are simple:
981 case Expr::ConditionalOperatorClass:
982 case Expr::CompoundLiteralExprClass:
983 case Expr::CXXConstCastExprClass:
Richard Smithf623c962012-04-17 00:58:00 +0000984 case Expr::CXXReinterpretCastExprClass:
Richard Smithcc1b96d2013-06-12 22:31:48 +0000985 case Expr::CXXStdInitializerListExprClass:
Richard Smithf623c962012-04-17 00:58:00 +0000986 case Expr::DesignatedInitExprClass:
987 case Expr::ExprWithCleanupsClass:
988 case Expr::ExtVectorElementExprClass:
989 case Expr::InitListExprClass:
990 case Expr::MemberExprClass:
991 case Expr::ObjCIsaExprClass:
992 case Expr::ObjCIvarRefExprClass:
993 case Expr::ParenExprClass:
994 case Expr::ParenListExprClass:
995 case Expr::ShuffleVectorExprClass:
Hal Finkelc4d7c822013-09-18 03:29:45 +0000996 case Expr::ConvertVectorExprClass:
Richard Smithf623c962012-04-17 00:58:00 +0000997 case Expr::VAArgExprClass:
998 return canSubExprsThrow(*this, E);
999
1000 // Some might be dependent for other reasons.
1001 case Expr::ArraySubscriptExprClass:
1002 case Expr::BinaryOperatorClass:
1003 case Expr::CompoundAssignOperatorClass:
1004 case Expr::CStyleCastExprClass:
1005 case Expr::CXXStaticCastExprClass:
1006 case Expr::CXXFunctionalCastExprClass:
1007 case Expr::ImplicitCastExprClass:
1008 case Expr::MaterializeTemporaryExprClass:
1009 case Expr::UnaryOperatorClass: {
1010 CanThrowResult CT = E->isTypeDependent() ? CT_Dependent : CT_Cannot;
1011 return mergeCanThrow(CT, canSubExprsThrow(*this, E));
1012 }
1013
1014 // FIXME: We should handle StmtExpr, but that opens a MASSIVE can of worms.
1015 case Expr::StmtExprClass:
1016 return CT_Can;
1017
Richard Smith852c9db2013-04-20 22:23:05 +00001018 case Expr::CXXDefaultArgExprClass:
1019 return canThrow(cast<CXXDefaultArgExpr>(E)->getExpr());
1020
1021 case Expr::CXXDefaultInitExprClass:
1022 return canThrow(cast<CXXDefaultInitExpr>(E)->getExpr());
1023
Richard Smithf623c962012-04-17 00:58:00 +00001024 case Expr::ChooseExprClass:
1025 if (E->isTypeDependent() || E->isValueDependent())
1026 return CT_Dependent;
Eli Friedman75807f22013-07-20 00:40:58 +00001027 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr());
Richard Smithf623c962012-04-17 00:58:00 +00001028
1029 case Expr::GenericSelectionExprClass:
1030 if (cast<GenericSelectionExpr>(E)->isResultDependent())
1031 return CT_Dependent;
1032 return canThrow(cast<GenericSelectionExpr>(E)->getResultExpr());
1033
1034 // Some expressions are always dependent.
1035 case Expr::CXXDependentScopeMemberExprClass:
1036 case Expr::CXXUnresolvedConstructExprClass:
1037 case Expr::DependentScopeDeclRefExprClass:
1038 return CT_Dependent;
1039
1040 case Expr::AsTypeExprClass:
1041 case Expr::BinaryConditionalOperatorClass:
1042 case Expr::BlockExprClass:
1043 case Expr::CUDAKernelCallExprClass:
1044 case Expr::DeclRefExprClass:
1045 case Expr::ObjCBridgedCastExprClass:
1046 case Expr::ObjCIndirectCopyRestoreExprClass:
1047 case Expr::ObjCProtocolExprClass:
1048 case Expr::ObjCSelectorExprClass:
1049 case Expr::OffsetOfExprClass:
1050 case Expr::PackExpansionExprClass:
1051 case Expr::PseudoObjectExprClass:
1052 case Expr::SubstNonTypeTemplateParmExprClass:
1053 case Expr::SubstNonTypeTemplateParmPackExprClass:
Richard Smithb15fe3a2012-09-12 00:56:43 +00001054 case Expr::FunctionParmPackExprClass:
Richard Smithf623c962012-04-17 00:58:00 +00001055 case Expr::UnaryExprOrTypeTraitExprClass:
1056 case Expr::UnresolvedLookupExprClass:
1057 case Expr::UnresolvedMemberExprClass:
1058 // FIXME: Can any of the above throw? If so, when?
1059 return CT_Cannot;
1060
1061 case Expr::AddrLabelExprClass:
1062 case Expr::ArrayTypeTraitExprClass:
1063 case Expr::AtomicExprClass:
Richard Smithf623c962012-04-17 00:58:00 +00001064 case Expr::TypeTraitExprClass:
1065 case Expr::CXXBoolLiteralExprClass:
1066 case Expr::CXXNoexceptExprClass:
1067 case Expr::CXXNullPtrLiteralExprClass:
1068 case Expr::CXXPseudoDestructorExprClass:
1069 case Expr::CXXScalarValueInitExprClass:
1070 case Expr::CXXThisExprClass:
1071 case Expr::CXXUuidofExprClass:
1072 case Expr::CharacterLiteralClass:
1073 case Expr::ExpressionTraitExprClass:
1074 case Expr::FloatingLiteralClass:
1075 case Expr::GNUNullExprClass:
1076 case Expr::ImaginaryLiteralClass:
1077 case Expr::ImplicitValueInitExprClass:
1078 case Expr::IntegerLiteralClass:
1079 case Expr::ObjCEncodeExprClass:
1080 case Expr::ObjCStringLiteralClass:
1081 case Expr::ObjCBoolLiteralExprClass:
1082 case Expr::OpaqueValueExprClass:
1083 case Expr::PredefinedExprClass:
1084 case Expr::SizeOfPackExprClass:
1085 case Expr::StringLiteralClass:
Richard Smithf623c962012-04-17 00:58:00 +00001086 // These expressions can never throw.
1087 return CT_Cannot;
1088
John McCall5e77d762013-04-16 07:28:30 +00001089 case Expr::MSPropertyRefExprClass:
1090 llvm_unreachable("Invalid class for expression");
1091
Richard Smithf623c962012-04-17 00:58:00 +00001092#define STMT(CLASS, PARENT) case Expr::CLASS##Class:
1093#define STMT_RANGE(Base, First, Last)
1094#define LAST_STMT_RANGE(BASE, FIRST, LAST)
1095#define EXPR(CLASS, PARENT)
1096#define ABSTRACT_STMT(STMT)
1097#include "clang/AST/StmtNodes.inc"
1098 case Expr::NoStmtClass:
1099 llvm_unreachable("Invalid class for expression");
1100 }
1101 llvm_unreachable("Bogus StmtClass");
1102}
1103
Sebastian Redl4915e632009-10-11 09:03:14 +00001104} // end namespace clang