]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
Merge clang trunk r300422 and resolve conflicts.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / AST / StmtCXX.h
1 //===--- StmtCXX.h - Classes for representing C++ statements ----*- 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 defines the C++ statement AST node classes.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_CLANG_AST_STMTCXX_H
15 #define LLVM_CLANG_AST_STMTCXX_H
16
17 #include "clang/AST/DeclarationName.h"
18 #include "clang/AST/Expr.h"
19 #include "clang/AST/NestedNameSpecifier.h"
20 #include "clang/AST/Stmt.h"
21 #include "llvm/Support/Compiler.h"
22
23 namespace clang {
24
25 class VarDecl;
26
27 /// CXXCatchStmt - This represents a C++ catch block.
28 ///
29 class CXXCatchStmt : public Stmt {
30   SourceLocation CatchLoc;
31   /// The exception-declaration of the type.
32   VarDecl *ExceptionDecl;
33   /// The handler block.
34   Stmt *HandlerBlock;
35
36 public:
37   CXXCatchStmt(SourceLocation catchLoc, VarDecl *exDecl, Stmt *handlerBlock)
38   : Stmt(CXXCatchStmtClass), CatchLoc(catchLoc), ExceptionDecl(exDecl),
39     HandlerBlock(handlerBlock) {}
40
41   CXXCatchStmt(EmptyShell Empty)
42   : Stmt(CXXCatchStmtClass), ExceptionDecl(nullptr), HandlerBlock(nullptr) {}
43
44   SourceLocation getLocStart() const LLVM_READONLY { return CatchLoc; }
45   SourceLocation getLocEnd() const LLVM_READONLY {
46     return HandlerBlock->getLocEnd();
47   }
48
49   SourceLocation getCatchLoc() const { return CatchLoc; }
50   VarDecl *getExceptionDecl() const { return ExceptionDecl; }
51   QualType getCaughtType() const;
52   Stmt *getHandlerBlock() const { return HandlerBlock; }
53
54   static bool classof(const Stmt *T) {
55     return T->getStmtClass() == CXXCatchStmtClass;
56   }
57
58   child_range children() { return child_range(&HandlerBlock, &HandlerBlock+1); }
59
60   friend class ASTStmtReader;
61 };
62
63 /// CXXTryStmt - A C++ try block, including all handlers.
64 ///
65 class CXXTryStmt : public Stmt {
66   SourceLocation TryLoc;
67   unsigned NumHandlers;
68
69   CXXTryStmt(SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt*> handlers);
70
71   CXXTryStmt(EmptyShell Empty, unsigned numHandlers)
72     : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { }
73
74   Stmt const * const *getStmts() const {
75     return reinterpret_cast<Stmt const * const*>(this + 1);
76   }
77   Stmt **getStmts() {
78     return reinterpret_cast<Stmt **>(this + 1);
79   }
80
81 public:
82   static CXXTryStmt *Create(const ASTContext &C, SourceLocation tryLoc,
83                             Stmt *tryBlock, ArrayRef<Stmt*> handlers);
84
85   static CXXTryStmt *Create(const ASTContext &C, EmptyShell Empty,
86                             unsigned numHandlers);
87
88   SourceLocation getLocStart() const LLVM_READONLY { return getTryLoc(); }
89   SourceLocation getLocEnd() const LLVM_READONLY { return getEndLoc(); }
90
91   SourceLocation getTryLoc() const { return TryLoc; }
92   SourceLocation getEndLoc() const {
93     return getStmts()[NumHandlers]->getLocEnd();
94   }
95
96   CompoundStmt *getTryBlock() {
97     return cast<CompoundStmt>(getStmts()[0]);
98   }
99   const CompoundStmt *getTryBlock() const {
100     return cast<CompoundStmt>(getStmts()[0]);
101   }
102
103   unsigned getNumHandlers() const { return NumHandlers; }
104   CXXCatchStmt *getHandler(unsigned i) {
105     return cast<CXXCatchStmt>(getStmts()[i + 1]);
106   }
107   const CXXCatchStmt *getHandler(unsigned i) const {
108     return cast<CXXCatchStmt>(getStmts()[i + 1]);
109   }
110
111   static bool classof(const Stmt *T) {
112     return T->getStmtClass() == CXXTryStmtClass;
113   }
114
115   child_range children() {
116     return child_range(getStmts(), getStmts() + getNumHandlers() + 1);
117   }
118
119   friend class ASTStmtReader;
120 };
121
122 /// CXXForRangeStmt - This represents C++0x [stmt.ranged]'s ranged for
123 /// statement, represented as 'for (range-declarator : range-expression)'.
124 ///
125 /// This is stored in a partially-desugared form to allow full semantic
126 /// analysis of the constituent components. The original syntactic components
127 /// can be extracted using getLoopVariable and getRangeInit.
128 class CXXForRangeStmt : public Stmt {
129   SourceLocation ForLoc;
130   enum { RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END };
131   // SubExprs[RANGE] is an expression or declstmt.
132   // SubExprs[COND] and SubExprs[INC] are expressions.
133   Stmt *SubExprs[END];
134   SourceLocation CoawaitLoc;
135   SourceLocation ColonLoc;
136   SourceLocation RParenLoc;
137
138   friend class ASTStmtReader;
139 public:
140   CXXForRangeStmt(DeclStmt *Range, DeclStmt *Begin, DeclStmt *End,
141                   Expr *Cond, Expr *Inc, DeclStmt *LoopVar, Stmt *Body,
142                   SourceLocation FL, SourceLocation CAL, SourceLocation CL,
143                   SourceLocation RPL);
144   CXXForRangeStmt(EmptyShell Empty) : Stmt(CXXForRangeStmtClass, Empty) { }
145
146
147   VarDecl *getLoopVariable();
148   Expr *getRangeInit();
149
150   const VarDecl *getLoopVariable() const;
151   const Expr *getRangeInit() const;
152
153
154   DeclStmt *getRangeStmt() { return cast<DeclStmt>(SubExprs[RANGE]); }
155   DeclStmt *getBeginStmt() {
156     return cast_or_null<DeclStmt>(SubExprs[BEGINSTMT]);
157   }
158   DeclStmt *getEndStmt() { return cast_or_null<DeclStmt>(SubExprs[ENDSTMT]); }
159   Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); }
160   Expr *getInc() { return cast_or_null<Expr>(SubExprs[INC]); }
161   DeclStmt *getLoopVarStmt() { return cast<DeclStmt>(SubExprs[LOOPVAR]); }
162   Stmt *getBody() { return SubExprs[BODY]; }
163
164   const DeclStmt *getRangeStmt() const {
165     return cast<DeclStmt>(SubExprs[RANGE]);
166   }
167   const DeclStmt *getBeginStmt() const {
168     return cast_or_null<DeclStmt>(SubExprs[BEGINSTMT]);
169   }
170   const DeclStmt *getEndStmt() const {
171     return cast_or_null<DeclStmt>(SubExprs[ENDSTMT]);
172   }
173   const Expr *getCond() const {
174     return cast_or_null<Expr>(SubExprs[COND]);
175   }
176   const Expr *getInc() const {
177     return cast_or_null<Expr>(SubExprs[INC]);
178   }
179   const DeclStmt *getLoopVarStmt() const {
180     return cast<DeclStmt>(SubExprs[LOOPVAR]);
181   }
182   const Stmt *getBody() const { return SubExprs[BODY]; }
183
184   void setRangeInit(Expr *E) { SubExprs[RANGE] = reinterpret_cast<Stmt*>(E); }
185   void setRangeStmt(Stmt *S) { SubExprs[RANGE] = S; }
186   void setBeginStmt(Stmt *S) { SubExprs[BEGINSTMT] = S; }
187   void setEndStmt(Stmt *S) { SubExprs[ENDSTMT] = S; }
188   void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); }
189   void setInc(Expr *E) { SubExprs[INC] = reinterpret_cast<Stmt*>(E); }
190   void setLoopVarStmt(Stmt *S) { SubExprs[LOOPVAR] = S; }
191   void setBody(Stmt *S) { SubExprs[BODY] = S; }
192
193   SourceLocation getForLoc() const { return ForLoc; }
194   SourceLocation getCoawaitLoc() const { return CoawaitLoc; }
195   SourceLocation getColonLoc() const { return ColonLoc; }
196   SourceLocation getRParenLoc() const { return RParenLoc; }
197
198   SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; }
199   SourceLocation getLocEnd() const LLVM_READONLY {
200     return SubExprs[BODY]->getLocEnd();
201   }
202
203   static bool classof(const Stmt *T) {
204     return T->getStmtClass() == CXXForRangeStmtClass;
205   }
206
207   // Iterators
208   child_range children() {
209     return child_range(&SubExprs[0], &SubExprs[END]);
210   }
211 };
212
213 /// \brief Representation of a Microsoft __if_exists or __if_not_exists
214 /// statement with a dependent name.
215 ///
216 /// The __if_exists statement can be used to include a sequence of statements
217 /// in the program only when a particular dependent name does not exist. For
218 /// example:
219 ///
220 /// \code
221 /// template<typename T>
222 /// void call_foo(T &t) {
223 ///   __if_exists (T::foo) {
224 ///     t.foo(); // okay: only called when T::foo exists.
225 ///   }
226 /// }
227 /// \endcode
228 ///
229 /// Similarly, the __if_not_exists statement can be used to include the
230 /// statements when a particular name does not exist.
231 ///
232 /// Note that this statement only captures __if_exists and __if_not_exists
233 /// statements whose name is dependent. All non-dependent cases are handled
234 /// directly in the parser, so that they don't introduce a new scope. Clang
235 /// introduces scopes in the dependent case to keep names inside the compound
236 /// statement from leaking out into the surround statements, which would
237 /// compromise the template instantiation model. This behavior differs from
238 /// Visual C++ (which never introduces a scope), but is a fairly reasonable
239 /// approximation of the VC++ behavior.
240 class MSDependentExistsStmt : public Stmt {
241   SourceLocation KeywordLoc;
242   bool IsIfExists;
243   NestedNameSpecifierLoc QualifierLoc;
244   DeclarationNameInfo NameInfo;
245   Stmt *SubStmt;
246
247   friend class ASTReader;
248   friend class ASTStmtReader;
249
250 public:
251   MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists,
252                         NestedNameSpecifierLoc QualifierLoc,
253                         DeclarationNameInfo NameInfo,
254                         CompoundStmt *SubStmt)
255   : Stmt(MSDependentExistsStmtClass),
256     KeywordLoc(KeywordLoc), IsIfExists(IsIfExists),
257     QualifierLoc(QualifierLoc), NameInfo(NameInfo),
258     SubStmt(reinterpret_cast<Stmt *>(SubStmt)) { }
259
260   /// \brief Retrieve the location of the __if_exists or __if_not_exists
261   /// keyword.
262   SourceLocation getKeywordLoc() const { return KeywordLoc; }
263
264   /// \brief Determine whether this is an __if_exists statement.
265   bool isIfExists() const { return IsIfExists; }
266
267   /// \brief Determine whether this is an __if_exists statement.
268   bool isIfNotExists() const { return !IsIfExists; }
269
270   /// \brief Retrieve the nested-name-specifier that qualifies this name, if
271   /// any.
272   NestedNameSpecifierLoc getQualifierLoc() const { return QualifierLoc; }
273
274   /// \brief Retrieve the name of the entity we're testing for, along with
275   /// location information
276   DeclarationNameInfo getNameInfo() const { return NameInfo; }
277
278   /// \brief Retrieve the compound statement that will be included in the
279   /// program only if the existence of the symbol matches the initial keyword.
280   CompoundStmt *getSubStmt() const {
281     return reinterpret_cast<CompoundStmt *>(SubStmt);
282   }
283
284   SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
285   SourceLocation getLocEnd() const LLVM_READONLY { return SubStmt->getLocEnd();}
286
287   child_range children() {
288     return child_range(&SubStmt, &SubStmt+1);
289   }
290
291   static bool classof(const Stmt *T) {
292     return T->getStmtClass() == MSDependentExistsStmtClass;
293   }
294 };
295
296 /// \brief Represents the body of a coroutine. This wraps the normal function
297 /// body and holds the additional semantic context required to set up and tear
298 /// down the coroutine frame.
299 class CoroutineBodyStmt final
300     : public Stmt,
301       private llvm::TrailingObjects<CoroutineBodyStmt, Stmt *> {
302   enum SubStmt {
303     Body,          ///< The body of the coroutine.
304     Promise,       ///< The promise statement.
305     InitSuspend,   ///< The initial suspend statement, run before the body.
306     FinalSuspend,  ///< The final suspend statement, run after the body.
307     OnException,   ///< Handler for exceptions thrown in the body.
308     OnFallthrough, ///< Handler for control flow falling off the body.
309     Allocate,      ///< Coroutine frame memory allocation.
310     Deallocate,    ///< Coroutine frame memory deallocation.
311     ReturnValue,   ///< Return value for thunk function.
312     ReturnStmtOnAllocFailure, ///< Return statement if allocation failed.
313     FirstParamMove ///< First offset for move construction of parameter copies.
314   };
315   unsigned NumParams;
316
317   friend class ASTStmtReader;
318   friend TrailingObjects;
319
320   Stmt **getStoredStmts() { return getTrailingObjects<Stmt *>(); }
321
322   Stmt *const *getStoredStmts() const { return getTrailingObjects<Stmt *>(); }
323
324 public:
325
326   struct CtorArgs {
327     Stmt *Body = nullptr;
328     Stmt *Promise = nullptr;
329     Expr *InitialSuspend = nullptr;
330     Expr *FinalSuspend = nullptr;
331     Stmt *OnException = nullptr;
332     Stmt *OnFallthrough = nullptr;
333     Expr *Allocate = nullptr;
334     Expr *Deallocate = nullptr;
335     Stmt *ReturnValue = nullptr;
336     Stmt *ReturnStmtOnAllocFailure = nullptr;
337     ArrayRef<Stmt *> ParamMoves;
338   };
339
340 private:
341
342   CoroutineBodyStmt(CtorArgs const& Args);
343
344 public:
345   static CoroutineBodyStmt *Create(const ASTContext &C, CtorArgs const &Args);
346
347   bool hasDependentPromiseType() const {
348     return getPromiseDecl()->getType()->isDependentType();
349   }
350
351   /// \brief Retrieve the body of the coroutine as written. This will be either
352   /// a CompoundStmt or a TryStmt.
353   Stmt *getBody() const {
354     return getStoredStmts()[SubStmt::Body];
355   }
356
357   Stmt *getPromiseDeclStmt() const {
358     return getStoredStmts()[SubStmt::Promise];
359   }
360   VarDecl *getPromiseDecl() const {
361     return cast<VarDecl>(cast<DeclStmt>(getPromiseDeclStmt())->getSingleDecl());
362   }
363
364   Stmt *getInitSuspendStmt() const {
365     return getStoredStmts()[SubStmt::InitSuspend];
366   }
367   Stmt *getFinalSuspendStmt() const {
368     return getStoredStmts()[SubStmt::FinalSuspend];
369   }
370
371   Stmt *getExceptionHandler() const {
372     return getStoredStmts()[SubStmt::OnException];
373   }
374   Stmt *getFallthroughHandler() const {
375     return getStoredStmts()[SubStmt::OnFallthrough];
376   }
377
378   Expr *getAllocate() const {
379     return cast_or_null<Expr>(getStoredStmts()[SubStmt::Allocate]);
380   }
381   Expr *getDeallocate() const {
382     return cast_or_null<Expr>(getStoredStmts()[SubStmt::Deallocate]);
383   }
384
385   Expr *getReturnValueInit() const {
386     return cast_or_null<Expr>(getStoredStmts()[SubStmt::ReturnValue]);
387   }
388   Stmt *getReturnStmtOnAllocFailure() const {
389     return getStoredStmts()[SubStmt::ReturnStmtOnAllocFailure];
390   }
391   ArrayRef<Stmt const *> getParamMoves() const {
392     return {getStoredStmts() + SubStmt::FirstParamMove, NumParams};
393   }
394
395   SourceLocation getLocStart() const LLVM_READONLY {
396     return getBody() ? getBody()->getLocStart()
397             : getPromiseDecl()->getLocStart();
398   }
399   SourceLocation getLocEnd() const LLVM_READONLY {
400     return getBody() ? getBody()->getLocEnd() : getPromiseDecl()->getLocEnd();
401   }
402
403   child_range children() {
404     return child_range(getStoredStmts(),
405                        getStoredStmts() + SubStmt::FirstParamMove + NumParams);
406   }
407
408   static bool classof(const Stmt *T) {
409     return T->getStmtClass() == CoroutineBodyStmtClass;
410   }
411 };
412
413 /// \brief Represents a 'co_return' statement in the C++ Coroutines TS.
414 ///
415 /// This statament models the initialization of the coroutine promise
416 /// (encapsulating the eventual notional return value) from an expression
417 /// (or braced-init-list), followed by termination of the coroutine.
418 ///
419 /// This initialization is modeled by the evaluation of the operand
420 /// followed by a call to one of:
421 ///   <promise>.return_value(<operand>)
422 ///   <promise>.return_void()
423 /// which we name the "promise call".
424 class CoreturnStmt : public Stmt {
425   SourceLocation CoreturnLoc;
426
427   enum SubStmt { Operand, PromiseCall, Count };
428   Stmt *SubStmts[SubStmt::Count];
429
430   bool IsImplicit : 1;
431
432   friend class ASTStmtReader;
433 public:
434   CoreturnStmt(SourceLocation CoreturnLoc, Stmt *Operand, Stmt *PromiseCall,
435                bool IsImplicit = false)
436       : Stmt(CoreturnStmtClass), CoreturnLoc(CoreturnLoc),
437         IsImplicit(IsImplicit) {
438     SubStmts[SubStmt::Operand] = Operand;
439     SubStmts[SubStmt::PromiseCall] = PromiseCall;
440   }
441
442   SourceLocation getKeywordLoc() const { return CoreturnLoc; }
443
444   /// \brief Retrieve the operand of the 'co_return' statement. Will be nullptr
445   /// if none was specified.
446   Expr *getOperand() const { return static_cast<Expr*>(SubStmts[Operand]); }
447
448   /// \brief Retrieve the promise call that results from this 'co_return'
449   /// statement. Will be nullptr if either the coroutine has not yet been
450   /// finalized or the coroutine has no eventual return type.
451   Expr *getPromiseCall() const {
452     return static_cast<Expr*>(SubStmts[PromiseCall]);
453   }
454
455   bool isImplicit() const { return IsImplicit; }
456   void setIsImplicit(bool value = true) { IsImplicit = value; }
457
458   SourceLocation getLocStart() const LLVM_READONLY { return CoreturnLoc; }
459   SourceLocation getLocEnd() const LLVM_READONLY {
460     return getOperand() ? getOperand()->getLocEnd() : getLocStart();
461   }
462
463   child_range children() {
464     if (!getOperand())
465       return child_range(SubStmts + SubStmt::PromiseCall,
466                          SubStmts + SubStmt::Count);
467     return child_range(SubStmts, SubStmts + SubStmt::Count);
468   }
469
470   static bool classof(const Stmt *T) {
471     return T->getStmtClass() == CoreturnStmtClass;
472   }
473 };
474
475 }  // end namespace clang
476
477 #endif