Stmt.h revision b11382497a923b0d7009e85a1d8eb7bf93ec6d0d
15f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===--- Stmt.h - Classes for representing statements -----------*- C++ -*-===//
25f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
35f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//                     The LLVM Compiler Infrastructure
45f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
50bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// This file is distributed under the University of Illinois Open Source
60bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// License. See LICENSE.TXT for details.
75f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
85f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
95f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//  This file defines the Stmt interface and subclasses.
115f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
125f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
135f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
145f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#ifndef LLVM_CLANG_AST_STMT_H
155f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#define LLVM_CLANG_AST_STMT_H
165f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
177573098b83e780d1c5bea13b384b610d8f155676Steve Naroff#include "llvm/Support/Casting.h"
18a95d3750441ac8ad03e36af8e6e74039c9a3109dTed Kremenek#include "llvm/Support/raw_ostream.h"
195f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#include "clang/Basic/SourceLocation.h"
20d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor#include "clang/AST/PrettyPrinter.h"
219caf8b1ca6beb254f420dada3c0e94d5ef027f58Ted Kremenek#include "clang/AST/StmtIterator.h"
228ffb159441e923322bef6b5dee1aaf24c738d75eTed Kremenek#include "clang/AST/DeclGroup.h"
235f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#include "llvm/ADT/SmallVector.h"
248189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek#include "clang/AST/ASTContext.h"
256e340496341a4704be0ede9c1ff4f8eacea7ee2cChris Lattner#include <string>
267573098b83e780d1c5bea13b384b610d8f155676Steve Naroffusing llvm::dyn_cast_or_null;
277573098b83e780d1c5bea13b384b610d8f155676Steve Naroff
2841ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregornamespace llvm {
2941ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  class FoldingSetNodeID;
3041ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor}
3141ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor
325f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencernamespace clang {
33e2563ca02a519c2ad6d64dfed87d6e86c5d3c072Sam Bishop  class ASTContext;
345f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  class Expr;
355f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  class Decl;
367ba138abd329e591a8f6d5001f60dd7082f71b3bSteve Naroff  class ParmVarDecl;
374b07b2968f87f3cd5a3d8c76145f1cbfd718d42dSebastian Redl  class QualType;
385f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  class IdentifierInfo;
390c727a35718556866a978f64ac549d9798735f08Chris Lattner  class SourceManager;
406a0ef4b83c91a6d6d5acb4ed5577c4659fe022a3Anders Carlsson  class StringLiteral;
416c36be5b383875b490684bcf439d6d427298c1afChris Lattner  class SwitchStmt;
421eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
43ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  //===----------------------------------------------------------------------===//
44ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  // ExprIterator - Iterators for iterating over Stmt* arrays that contain
45ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  //  only Expr*.  This is needed because AST nodes use Stmt* arrays to store
46ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  //  references to children (to be compatible with StmtIterator).
47ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  //===----------------------------------------------------------------------===//
481eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
49ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  class Stmt;
50ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  class Expr;
511eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
52ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  class ExprIterator {
53ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    Stmt** I;
54ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  public:
55ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    ExprIterator(Stmt** i) : I(i) {}
561eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    ExprIterator() : I(0) {}
57ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    ExprIterator& operator++() { ++I; return *this; }
58ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    ExprIterator operator-(size_t i) { return I-i; }
59ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    ExprIterator operator+(size_t i) { return I+i; }
60ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    Expr* operator[](size_t idx);
61ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    // FIXME: Verify that this will correctly return a signed distance.
62ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    signed operator-(const ExprIterator& R) const { return I - R.I; }
63ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    Expr* operator*() const;
64ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    Expr* operator->() const;
65ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    bool operator==(const ExprIterator& R) const { return I == R.I; }
66ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    bool operator!=(const ExprIterator& R) const { return I != R.I; }
67ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    bool operator>(const ExprIterator& R) const { return I > R.I; }
68ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    bool operator>=(const ExprIterator& R) const { return I >= R.I; }
69ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  };
701eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
71ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  class ConstExprIterator {
721705fe9ec0efb65f77a46e669e48302923204fe8Benjamin Kramer    const Stmt * const *I;
73ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  public:
741705fe9ec0efb65f77a46e669e48302923204fe8Benjamin Kramer    ConstExprIterator(const Stmt * const *i) : I(i) {}
751eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    ConstExprIterator() : I(0) {}
76ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    ConstExprIterator& operator++() { ++I; return *this; }
771705fe9ec0efb65f77a46e669e48302923204fe8Benjamin Kramer    ConstExprIterator operator+(size_t i) const { return I+i; }
781705fe9ec0efb65f77a46e669e48302923204fe8Benjamin Kramer    ConstExprIterator operator-(size_t i) const { return I-i; }
79ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    const Expr * operator[](size_t idx) const;
80ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    signed operator-(const ConstExprIterator& R) const { return I - R.I; }
81ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    const Expr * operator*() const;
82ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    const Expr * operator->() const;
83ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    bool operator==(const ConstExprIterator& R) const { return I == R.I; }
84ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    bool operator!=(const ConstExprIterator& R) const { return I != R.I; }
85ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    bool operator>(const ConstExprIterator& R) const { return I > R.I; }
86ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    bool operator>=(const ConstExprIterator& R) const { return I >= R.I; }
871eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  };
881eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
89ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek//===----------------------------------------------------------------------===//
90ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek// AST classes for statements.
91ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek//===----------------------------------------------------------------------===//
921eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
935f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// Stmt - This represents one statement.
945f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
955f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass Stmt {
965f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
975f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  enum StmtClass {
98f2cad8633e46cce12fc3d77c0bd451ffd7264bafDouglas Gregor    NoStmtClass = 0,
99f2cad8633e46cce12fc3d77c0bd451ffd7264bafDouglas Gregor#define STMT(CLASS, PARENT) CLASS##Class,
1007381d5cfbd599fa2b9e215011ad7cbd449de231aSean Hunt#define STMT_RANGE(BASE, FIRST, LAST) \
1019a55591af3e5506b95a9718e15380129fbfc5ebcSean Hunt        first##BASE##Constant=FIRST##Class, last##BASE##Constant=LAST##Class,
1027381d5cfbd599fa2b9e215011ad7cbd449de231aSean Hunt#define LAST_STMT_RANGE(BASE, FIRST, LAST) \
1039a55591af3e5506b95a9718e15380129fbfc5ebcSean Hunt        first##BASE##Constant=FIRST##Class, last##BASE##Constant=LAST##Class
1047381d5cfbd599fa2b9e215011ad7cbd449de231aSean Hunt#define ABSTRACT_STMT(STMT)
1054bfe1968410ea8ffe3b4f629addd7c4bcf484765Sean Hunt#include "clang/AST/StmtNodes.inc"
1068e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  };
1071eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1088189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  // Make vanilla 'new' and 'delete' illegal for Stmts.
1098189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenekprotected:
1108189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  void* operator new(size_t bytes) throw() {
1118189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek    assert(0 && "Stmts cannot be allocated with regular 'new'.");
1128189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek    return 0;
1138189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  }
1148189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  void operator delete(void* data) throw() {
1158189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek    assert(0 && "Stmts cannot be released with regular 'delete'.");
1168189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  }
1171eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1188e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  class StmtBitfields {
1198e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    friend class Stmt;
1208e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall
1218e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    /// \brief The statement class.
1228e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    unsigned sClass : 8;
1238e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  };
1248e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  enum { NumStmtBits = 8 };
1258e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall
1268e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  class CompoundStmtBitfields {
1278e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    friend class CompoundStmt;
1288e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    unsigned : NumStmtBits;
1298e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall
1308e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    unsigned NumStmts : 32 - NumStmtBits;
1318e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  };
1328e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall
1338e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  class ExprBitfields {
1348e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    friend class Expr;
1358e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    friend class DeclRefExpr; // computeDependence
1368e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    friend class InitListExpr; // ctor
1378e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    friend class DesignatedInitExpr; // ctor
138d967e31ee796efff24b84b704a063634f6b55627Douglas Gregor    friend class BlockDeclRefExpr; // ctor
139bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class ASTStmtReader; // deserialization
140bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class CXXNewExpr; // ctor
141bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class DependentScopeDeclRefExpr; // ctor
142bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class CXXConstructExpr; // ctor
143bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class CallExpr; // ctor
144bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class OffsetOfExpr; // ctor
145bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class ObjCMessageExpr; // ctor
146bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class ShuffleVectorExpr; // ctor
147bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class ParenListExpr; // ctor
148bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class CXXUnresolvedConstructExpr; // ctor
149bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class CXXDependentScopeMemberExpr; // ctor
150bebbe0d9b7568ce43a464286bee49429489ef483Douglas Gregor    friend class OverloadExpr; // ctor
1518e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    unsigned : NumStmtBits;
1528e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall
1538e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    unsigned ValueKind : 2;
154f89e55ab1bfb3ea997f8b02997c611a02254eb2dJohn McCall    unsigned ObjectKind : 2;
1558e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    unsigned TypeDependent : 1;
1568e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    unsigned ValueDependent : 1;
157d0937224f383c7cc72c947119380f9713a070c73Douglas Gregor    unsigned ContainsUnexpandedParameterPack : 1;
1588e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  };
159d0937224f383c7cc72c947119380f9713a070c73Douglas Gregor  enum { NumExprBits = 15 };
1608e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall
161cb66cff8fdf641f57f85dedb515a5f3240e3a9bbChandler Carruth  class DeclRefExprBitfields {
162cb66cff8fdf641f57f85dedb515a5f3240e3a9bbChandler Carruth    friend class DeclRefExpr;
163cb66cff8fdf641f57f85dedb515a5f3240e3a9bbChandler Carruth    friend class ASTStmtReader; // deserialization
164cb66cff8fdf641f57f85dedb515a5f3240e3a9bbChandler Carruth    unsigned : NumExprBits;
165cb66cff8fdf641f57f85dedb515a5f3240e3a9bbChandler Carruth
166cb66cff8fdf641f57f85dedb515a5f3240e3a9bbChandler Carruth    unsigned HasQualifier : 1;
167cb66cff8fdf641f57f85dedb515a5f3240e3a9bbChandler Carruth    unsigned HasExplicitTemplateArgs : 1;
1683aa8140bde5b9bedf13e46ec0a668daa54814196Chandler Carruth    unsigned HasFoundDecl : 1;
169cb66cff8fdf641f57f85dedb515a5f3240e3a9bbChandler Carruth  };
170cb66cff8fdf641f57f85dedb515a5f3240e3a9bbChandler Carruth
1718e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  class CastExprBitfields {
1728e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    friend class CastExpr;
1738e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    unsigned : NumExprBits;
1748e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall
1752bb5d00fcf71a7b4d478d478be778fff0494aff6John McCall    unsigned Kind : 6;
1762bb5d00fcf71a7b4d478d478be778fff0494aff6John McCall    unsigned BasePathSize : 32 - 6 - NumExprBits;
1778e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  };
1788e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall
179cc324ad80ab940efca006b0064f7ca70a6181816Peter Collingbourne  class CallExprBitfields {
180cc324ad80ab940efca006b0064f7ca70a6181816Peter Collingbourne    friend class CallExpr;
181cc324ad80ab940efca006b0064f7ca70a6181816Peter Collingbourne    unsigned : NumExprBits;
182cc324ad80ab940efca006b0064f7ca70a6181816Peter Collingbourne
183cc324ad80ab940efca006b0064f7ca70a6181816Peter Collingbourne    unsigned NumPreArgs : 1;
184cc324ad80ab940efca006b0064f7ca70a6181816Peter Collingbourne  };
185cc324ad80ab940efca006b0064f7ca70a6181816Peter Collingbourne
186f85e193739c953358c865005855253af4f68a497John McCall  class ObjCIndirectCopyRestoreExprBitfields {
187f85e193739c953358c865005855253af4f68a497John McCall    friend class ObjCIndirectCopyRestoreExpr;
188f85e193739c953358c865005855253af4f68a497John McCall    unsigned : NumExprBits;
189f85e193739c953358c865005855253af4f68a497John McCall
190f85e193739c953358c865005855253af4f68a497John McCall    unsigned ShouldCopy : 1;
191f85e193739c953358c865005855253af4f68a497John McCall  };
192f85e193739c953358c865005855253af4f68a497John McCall
1938e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  union {
19463c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    // FIXME: this is wasteful on 64-bit platforms.
19563c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    void *Aligner;
19663c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall
1978e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    StmtBitfields StmtBits;
1988e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    CompoundStmtBitfields CompoundStmtBits;
1998e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    ExprBitfields ExprBits;
200cb66cff8fdf641f57f85dedb515a5f3240e3a9bbChandler Carruth    DeclRefExprBitfields DeclRefExprBits;
2018e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    CastExprBitfields CastExprBits;
202cc324ad80ab940efca006b0064f7ca70a6181816Peter Collingbourne    CallExprBitfields CallExprBits;
203f85e193739c953358c865005855253af4f68a497John McCall    ObjCIndirectCopyRestoreExprBitfields ObjCIndirectCopyRestoreExprBits;
2048e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  };
2058e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall
206d0937224f383c7cc72c947119380f9713a070c73Douglas Gregor  friend class ASTStmtReader;
207d0937224f383c7cc72c947119380f9713a070c73Douglas Gregor
2088189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenekpublic:
2098189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  // Only allow allocation of Stmts using the allocator in ASTContext
2101eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  // or by doing a placement new.
2118189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  void* operator new(size_t bytes, ASTContext& C,
212f4e689b8528770001f4792f1f4ebdfb09d859e3dDouglas Gregor                     unsigned alignment = 8) throw() {
2138189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek    return ::operator new(bytes, C, alignment);
2148189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  }
2151eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2168189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  void* operator new(size_t bytes, ASTContext* C,
217f4e689b8528770001f4792f1f4ebdfb09d859e3dDouglas Gregor                     unsigned alignment = 8) throw() {
2188189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek    return ::operator new(bytes, *C, alignment);
2198189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  }
2201eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2218189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  void* operator new(size_t bytes, void* mem) throw() {
2228189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek    return mem;
2238189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  }
224e2dedf8f61b8f306f704781456b482eb61871e8eDouglas Gregor
225fb523e16dd1f860ff02a3ae03e5e3e25327a5860Chris Lattner  void operator delete(void*, ASTContext&, unsigned) throw() { }
226fb523e16dd1f860ff02a3ae03e5e3e25327a5860Chris Lattner  void operator delete(void*, ASTContext*, unsigned) throw() { }
227e2dedf8f61b8f306f704781456b482eb61871e8eDouglas Gregor  void operator delete(void*, std::size_t) throw() { }
228fb523e16dd1f860ff02a3ae03e5e3e25327a5860Chris Lattner  void operator delete(void*, void*) throw() { }
229e2dedf8f61b8f306f704781456b482eb61871e8eDouglas Gregor
230025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregorpublic:
231025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  /// \brief A placeholder type used to construct an empty shell of a
232025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  /// type, that will be filled in later (e.g., by some
233025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  /// de-serialization).
234025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  struct EmptyShell { };
235025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
2369c1863ef36a74e8203f00289d19856ad956f48b9Ted Kremenekprotected:
237025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  /// \brief Construct an empty statement.
2388e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  explicit Stmt(StmtClass SC, EmptyShell) {
2398e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    StmtBits.sClass = SC;
240025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor    if (Stmt::CollectingStats()) Stmt::addStmtClass(SC);
241025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  }
242025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
2435f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
2448e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  Stmt(StmtClass SC) {
2458e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    StmtBits.sClass = SC;
2465f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    if (Stmt::CollectingStats()) Stmt::addStmtClass(SC);
2475f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
2481eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
249c302113179a1c2b1254224ea9b6f5316ceeb375cSean Hunt  StmtClass getStmtClass() const {
2508e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    return static_cast<StmtClass>(StmtBits.sClass);
251b2f81cf7f8445e0c65c0428f4fbb0442566916b8Douglas Gregor  }
2525f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  const char *getStmtClassName() const;
2531eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
254b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  /// SourceLocation tokens are not useful in isolation - they are low level
255b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  /// value objects created/interpreted by SourceManager. We assume AST
256b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  /// clients will have a pointer to the respective SourceManager.
25763c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const;
25863c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall
259311ff02fae0392bee6abe7723cdf5a69b2899a47Chris Lattner  SourceLocation getLocStart() const { return getSourceRange().getBegin(); }
260311ff02fae0392bee6abe7723cdf5a69b2899a47Chris Lattner  SourceLocation getLocEnd() const { return getSourceRange().getEnd(); }
2615f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
2625f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  // global temp stats (until we have a per-module visitor)
2635f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static void addStmtClass(const StmtClass s);
2642024f4d4b0d57616f79ea742fa782d633d414462Kovarththanan Rajaratnam  static bool CollectingStats(bool Enable = false);
2655f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static void PrintStats();
2666000dace22f110d8768476989313e9d981d690d0Chris Lattner
2676000dace22f110d8768476989313e9d981d690d0Chris Lattner  /// dump - This does a local dump of the specified AST fragment.  It dumps the
2686000dace22f110d8768476989313e9d981d690d0Chris Lattner  /// specified node and a few nodes underneath it, but not the whole subtree.
2696000dace22f110d8768476989313e9d981d690d0Chris Lattner  /// This is useful in a debugger.
2705f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  void dump() const;
271e300c870f08d08badf2ebcb53ded49f304af37fcChris Lattner  void dump(SourceManager &SM) const;
2729668033ee4c25efd019e6c7e6dd96aa2e6364a46Argyrios Kyrtzidis  void dump(llvm::raw_ostream &OS, SourceManager &SM) const;
2736000dace22f110d8768476989313e9d981d690d0Chris Lattner
2746000dace22f110d8768476989313e9d981d690d0Chris Lattner  /// dumpAll - This does a dump of the specified AST fragment and all subtrees.
2756000dace22f110d8768476989313e9d981d690d0Chris Lattner  void dumpAll() const;
276e300c870f08d08badf2ebcb53ded49f304af37fcChris Lattner  void dumpAll(SourceManager &SM) const;
2776000dace22f110d8768476989313e9d981d690d0Chris Lattner
2786000dace22f110d8768476989313e9d981d690d0Chris Lattner  /// dumpPretty/printPretty - These two methods do a "pretty print" of the AST
2796000dace22f110d8768476989313e9d981d690d0Chris Lattner  /// back to its original source language syntax.
28048d14a222276fad5279e994d1a062f36ae6fcbceEli Friedman  void dumpPretty(ASTContext& Context) const;
2811eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  void printPretty(llvm::raw_ostream &OS, PrinterHelper *Helper,
282e4f2142d00fa5fdb580c4e2413da91882d955381Chris Lattner                   const PrintingPolicy &Policy,
28348d14a222276fad5279e994d1a062f36ae6fcbceEli Friedman                   unsigned Indentation = 0) const {
28448d14a222276fad5279e994d1a062f36ae6fcbceEli Friedman    printPretty(OS, *(ASTContext*)0, Helper, Policy, Indentation);
28548d14a222276fad5279e994d1a062f36ae6fcbceEli Friedman  }
286e4f2142d00fa5fdb580c4e2413da91882d955381Chris Lattner  void printPretty(llvm::raw_ostream &OS, ASTContext &Context,
2871eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump                   PrinterHelper *Helper,
288e4f2142d00fa5fdb580c4e2413da91882d955381Chris Lattner                   const PrintingPolicy &Policy,
289d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor                   unsigned Indentation = 0) const;
2901eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
291d2a4a1af1088fca80e2dc76eb3369db0fbbfdefdTed Kremenek  /// viewAST - Visualize an AST rooted at this Stmt* using GraphViz.  Only
292d2a4a1af1088fca80e2dc76eb3369db0fbbfdefdTed Kremenek  ///   works on systems with GraphViz (Mac OS X) or dot+gv installed.
293d2a4a1af1088fca80e2dc76eb3369db0fbbfdefdTed Kremenek  void viewAST() const;
2941eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2955f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  // Implement isa<T> support.
2961eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *) { return true; }
2971eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
298d48ade633d96b94cb435d73e2c935ea457152decTed Kremenek  /// hasImplicitControlFlow - Some statements (e.g. short circuited operations)
299d48ade633d96b94cb435d73e2c935ea457152decTed Kremenek  ///  contain implicit control-flow in the order their subexpressions
300d48ade633d96b94cb435d73e2c935ea457152decTed Kremenek  ///  are evaluated.  This predicate returns true if this statement has
301d48ade633d96b94cb435d73e2c935ea457152decTed Kremenek  ///  such implicit control-flow.  Such statements are also specially handled
302d48ade633d96b94cb435d73e2c935ea457152decTed Kremenek  ///  within CFGs.
303d48ade633d96b94cb435d73e2c935ea457152decTed Kremenek  bool hasImplicitControlFlow() const;
304d48ade633d96b94cb435d73e2c935ea457152decTed Kremenek
30563c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  /// Child Iterators: All subclasses must implement 'children'
30663c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  /// to permit easy iteration over the substatements/subexpessions of an
30763c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  /// AST node.  This permits easy iteration over all nodes in the AST.
3089caf8b1ca6beb254f420dada3c0e94d5ef027f58Ted Kremenek  typedef StmtIterator       child_iterator;
3099caf8b1ca6beb254f420dada3c0e94d5ef027f58Ted Kremenek  typedef ConstStmtIterator  const_child_iterator;
3101eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
31163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  typedef StmtRange          child_range;
31263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  typedef ConstStmtRange     const_child_range;
3131eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
31463c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children();
31563c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  const_child_range children() const {
31663c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return const_cast<Stmt*>(this)->children();
31777ed8e4edf6ed78c53fb20ec3210aff2a59c9d87Ted Kremenek  }
3181eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
31963c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_iterator child_begin() { return children().first; }
32063c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_iterator child_end() { return children().second; }
32163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall
32263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  const_child_iterator child_begin() const { return children().first; }
32363c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  const_child_iterator child_end() const { return children().second; }
32441ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor
32541ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  /// \brief Produce a unique representation of the given statement.
32641ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  ///
32741ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  /// \brief ID once the profiling operation is complete, will contain
32841ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  /// the unique representation of the given statement.
32941ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  ///
33041ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  /// \brief Context the AST context in which the statement resides
33141ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  ///
33241ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  /// \brief Canonical whether the profile should be based on the canonical
33341ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  /// representation of this statement (e.g., where non-type template
3341eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  /// parameters are identified by index/level rather than their
33541ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  /// declaration pointers) or the exact representation of the statement as
33641ef0c3472a3d09c29bc1792f3d26842f2b8a695Douglas Gregor  /// written in the source.
3374ba2a17694148e16eaa8d3917f657ffcd3667be4Jay Foad  void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context,
338b11382497a923b0d7009e85a1d8eb7bf93ec6d0dChandler Carruth               bool Canonical) const;
3395f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
3405f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
3415f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// DeclStmt - Adaptor class for mixing declarations with statements and
3425f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// expressions. For example, CompoundStmt mixes statements, expressions
3431eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// and declarations (variables, types). Another example is ForStmt, where
3445f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// the first statement can be an expression or a declaration.
3455f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
3465f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass DeclStmt : public Stmt {
3479653db7bd0e3665b955a0445859285f2e1e7dacdDouglas Gregor  DeclGroupRef DG;
34881c018d9482e7cc2addadc6202dcf162a01faefdChris Lattner  SourceLocation StartLoc, EndLoc;
3491eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3505f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
3511eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  DeclStmt(DeclGroupRef dg, SourceLocation startLoc,
3528ffb159441e923322bef6b5dee1aaf24c738d75eTed Kremenek           SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg),
3538ffb159441e923322bef6b5dee1aaf24c738d75eTed Kremenek                                    StartLoc(startLoc), EndLoc(endLoc) {}
3541eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
35584f2170062014d268951902164bed0d8bdea0e82Douglas Gregor  /// \brief Build an empty declaration statement.
35684f2170062014d268951902164bed0d8bdea0e82Douglas Gregor  explicit DeclStmt(EmptyShell Empty) : Stmt(DeclStmtClass, Empty) { }
35784f2170062014d268951902164bed0d8bdea0e82Douglas Gregor
3587e24e82a70a2c681f4291a3397bcd1e1005f251aChris Lattner  /// isSingleDecl - This method returns true if this DeclStmt refers
359fe95deaf66e4fbd82d44b5f6afa8162fa69cb85cChris Lattner  /// to a single Decl.
3607e24e82a70a2c681f4291a3397bcd1e1005f251aChris Lattner  bool isSingleDecl() const {
361fe95deaf66e4fbd82d44b5f6afa8162fa69cb85cChris Lattner    return DG.isSingleDecl();
3628ffb159441e923322bef6b5dee1aaf24c738d75eTed Kremenek  }
3631eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3647e24e82a70a2c681f4291a3397bcd1e1005f251aChris Lattner  const Decl *getSingleDecl() const { return DG.getSingleDecl(); }
3651eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  Decl *getSingleDecl() { return DG.getSingleDecl(); }
3661eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
367e66a8cf9117e5fb95a05ff76ec06615e63dd5adeChris Lattner  const DeclGroupRef getDeclGroup() const { return DG; }
368e66a8cf9117e5fb95a05ff76ec06615e63dd5adeChris Lattner  DeclGroupRef getDeclGroup() { return DG; }
36984f2170062014d268951902164bed0d8bdea0e82Douglas Gregor  void setDeclGroup(DeclGroupRef DGR) { DG = DGR; }
370b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
37181c018d9482e7cc2addadc6202dcf162a01faefdChris Lattner  SourceLocation getStartLoc() const { return StartLoc; }
37284f2170062014d268951902164bed0d8bdea0e82Douglas Gregor  void setStartLoc(SourceLocation L) { StartLoc = L; }
37381c018d9482e7cc2addadc6202dcf162a01faefdChris Lattner  SourceLocation getEndLoc() const { return EndLoc; }
37484f2170062014d268951902164bed0d8bdea0e82Douglas Gregor  void setEndLoc(SourceLocation L) { EndLoc = L; }
37584f2170062014d268951902164bed0d8bdea0e82Douglas Gregor
3768ffb159441e923322bef6b5dee1aaf24c738d75eTed Kremenek  SourceRange getSourceRange() const {
37781c018d9482e7cc2addadc6202dcf162a01faefdChris Lattner    return SourceRange(StartLoc, EndLoc);
37881c018d9482e7cc2addadc6202dcf162a01faefdChris Lattner  }
3791eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
3811eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == DeclStmtClass;
3825f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
3835f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const DeclStmt *) { return true; }
3841eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
38514f8b4ff660bcaa763974b8d0fae81857c594495Ted Kremenek  // Iterators over subexpressions.
38663c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() {
38763c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return child_range(child_iterator(DG.begin(), DG.end()),
38863c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall                       child_iterator(DG.end(), DG.end()));
38963c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  }
3901eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3910632dd6fe068011af5710c0d6a745724021ff620Chris Lattner  typedef DeclGroupRef::iterator decl_iterator;
3920632dd6fe068011af5710c0d6a745724021ff620Chris Lattner  typedef DeclGroupRef::const_iterator const_decl_iterator;
3931eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3948ffb159441e923322bef6b5dee1aaf24c738d75eTed Kremenek  decl_iterator decl_begin() { return DG.begin(); }
3958ffb159441e923322bef6b5dee1aaf24c738d75eTed Kremenek  decl_iterator decl_end() { return DG.end(); }
3968ffb159441e923322bef6b5dee1aaf24c738d75eTed Kremenek  const_decl_iterator decl_begin() const { return DG.begin(); }
3978ffb159441e923322bef6b5dee1aaf24c738d75eTed Kremenek  const_decl_iterator decl_end() const { return DG.end(); }
3985f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
3995f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
4005f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// NullStmt - This is the null statement ";": C99 6.8.3p3.
4015f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
4025f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass NullStmt : public Stmt {
4035f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation SemiLoc;
40444aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis
405b7d98d35ea723624345f06e5895ddce2e0388ef0Argyrios Kyrtzidis  /// \brief If the null statement was preceded by an empty macro this is
406b7d98d35ea723624345f06e5895ddce2e0388ef0Argyrios Kyrtzidis  /// its instantiation source location, e.g:
40744aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis  /// @code
40844aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis  ///   #define CALL(x)
40944aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis  ///   CALL(0);
41044aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis  /// @endcode
411b7d98d35ea723624345f06e5895ddce2e0388ef0Argyrios Kyrtzidis  SourceLocation LeadingEmptyMacro;
4125f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
413b7d98d35ea723624345f06e5895ddce2e0388ef0Argyrios Kyrtzidis  NullStmt(SourceLocation L, SourceLocation LeadingEmptyMacro =SourceLocation())
41444aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis    : Stmt(NullStmtClass), SemiLoc(L), LeadingEmptyMacro(LeadingEmptyMacro) {}
4155f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
416025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  /// \brief Build an empty null statement.
417025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  explicit NullStmt(EmptyShell Empty) : Stmt(NullStmtClass, Empty) { }
418025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
4195f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation getSemiLoc() const { return SemiLoc; }
420025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setSemiLoc(SourceLocation L) { SemiLoc = L; }
421b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
422b7d98d35ea723624345f06e5895ddce2e0388ef0Argyrios Kyrtzidis  bool hasLeadingEmptyMacro() const { return LeadingEmptyMacro.isValid(); }
423b7d98d35ea723624345f06e5895ddce2e0388ef0Argyrios Kyrtzidis  SourceLocation getLeadingEmptyMacroLoc() const { return LeadingEmptyMacro; }
42444aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis
42563c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const { return SourceRange(SemiLoc); }
4261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
4271eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
4281eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == NullStmtClass;
4295f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
4305f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const NullStmt *) { return true; }
4311eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
43263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() { return child_range(); }
43344aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis
43444aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis  friend class ASTStmtReader;
43544aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis  friend class ASTStmtWriter;
4365f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
4375f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
4385f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// CompoundStmt - This represents a group of statements like { stmt stmt }.
4395f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
4405f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass CompoundStmt : public Stmt {
4418189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  Stmt** Body;
442b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  SourceLocation LBracLoc, RBracLoc;
4435f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
4448e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  CompoundStmt(ASTContext& C, Stmt **StmtStart, unsigned NumStmts,
4458e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall               SourceLocation LB, SourceLocation RB)
4468e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  : Stmt(CompoundStmtClass), LBracLoc(LB), RBracLoc(RB) {
4478e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    CompoundStmtBits.NumStmts = NumStmts;
448654f6b2b53af2c950c62ef0161fa021648accbcbArgyrios Kyrtzidis    assert(CompoundStmtBits.NumStmts == NumStmts &&
449654f6b2b53af2c950c62ef0161fa021648accbcbArgyrios Kyrtzidis           "NumStmts doesn't fit in bits of CompoundStmtBits.NumStmts!");
4508e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall
451026dc96ac6ece60da5e1b98e2a71bd0ff0939fd8Chris Lattner    if (NumStmts == 0) {
452026dc96ac6ece60da5e1b98e2a71bd0ff0939fd8Chris Lattner      Body = 0;
453026dc96ac6ece60da5e1b98e2a71bd0ff0939fd8Chris Lattner      return;
454026dc96ac6ece60da5e1b98e2a71bd0ff0939fd8Chris Lattner    }
4551eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
456026dc96ac6ece60da5e1b98e2a71bd0ff0939fd8Chris Lattner    Body = new (C) Stmt*[NumStmts];
4578e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    memcpy(Body, StmtStart, NumStmts * sizeof(*Body));
4581eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  }
459025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
460025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  // \brief Build an empty compound statement.
461025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  explicit CompoundStmt(EmptyShell Empty)
4628e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    : Stmt(CompoundStmtClass, Empty), Body(0) {
4638e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    CompoundStmtBits.NumStmts = 0;
4648e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  }
465025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
466025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setStmts(ASTContext &C, Stmt **Stmts, unsigned NumStmts);
4671eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
4688e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  bool body_empty() const { return CompoundStmtBits.NumStmts == 0; }
4698e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  unsigned size() const { return CompoundStmtBits.NumStmts; }
470025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
4718189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  typedef Stmt** body_iterator;
4728189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  body_iterator body_begin() { return Body; }
4738e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  body_iterator body_end() { return Body + size(); }
4748e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  Stmt *body_back() { return !body_empty() ? Body[size()-1] : 0; }
475e946fc833d8592aa2890bfd9839f1ad839b3d284Fariborz Jahanian
4768e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  void setLastStmt(Stmt *S) {
4778e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    assert(!body_empty() && "setLastStmt");
4788e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall    Body[size()-1] = S;
4798e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  }
4805f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
4818189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  typedef Stmt* const * const_body_iterator;
4828189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  const_body_iterator body_begin() const { return Body; }
4838e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  const_body_iterator body_end() const { return Body + size(); }
4848e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  const Stmt *body_back() const { return !body_empty() ? Body[size()-1] : 0; }
4858189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek
4868189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  typedef std::reverse_iterator<body_iterator> reverse_body_iterator;
4878189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  reverse_body_iterator body_rbegin() {
4888189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek    return reverse_body_iterator(body_end());
4898189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  }
4908189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  reverse_body_iterator body_rend() {
4918189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek    return reverse_body_iterator(body_begin());
4928189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  }
4934ce854736dd196e2304f554ebeac8b43c89cf9e2Ted Kremenek
4948189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  typedef std::reverse_iterator<const_body_iterator>
4958189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek          const_reverse_body_iterator;
4964ce854736dd196e2304f554ebeac8b43c89cf9e2Ted Kremenek
4978189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  const_reverse_body_iterator body_rbegin() const {
4988189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek    return const_reverse_body_iterator(body_end());
4998189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  }
5001eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5018189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  const_reverse_body_iterator body_rend() const {
5028189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek    return const_reverse_body_iterator(body_begin());
5038189cde56b4f6f938cd65f53c932fe1860d0204cTed Kremenek  }
5041eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
50563c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
5061eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return SourceRange(LBracLoc, RBracLoc);
507b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  }
5081eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
509cc326204dd97771c336b9aab3b9963ea30d69c29Ted Kremenek  SourceLocation getLBracLoc() const { return LBracLoc; }
510025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setLBracLoc(SourceLocation L) { LBracLoc = L; }
511cc326204dd97771c336b9aab3b9963ea30d69c29Ted Kremenek  SourceLocation getRBracLoc() const { return RBracLoc; }
512025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setRBracLoc(SourceLocation L) { RBracLoc = L; }
5131eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5141eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
5151eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == CompoundStmtClass;
5165f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
5175f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const CompoundStmt *) { return true; }
5181eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5198297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  // Iterators
52063c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() {
52163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return child_range(&Body[0], &Body[0]+CompoundStmtBits.NumStmts);
52263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  }
5235f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
5245f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
525c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson// SwitchCase is the base class for CaseStmt and DefaultStmt,
526c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlssonclass SwitchCase : public Stmt {
527103fc81f12aa635aa0a573c94b1aceb496b4e587Ted Kremenekprotected:
528c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  // A pointer to the following CaseStmt or DefaultStmt class,
529c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  // used by SwitchStmt.
530c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  SwitchCase *NextSwitchCase;
531103fc81f12aa635aa0a573c94b1aceb496b4e587Ted Kremenek
532d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek  SwitchCase(StmtClass SC) : Stmt(SC), NextSwitchCase(0) {}
5331eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
534c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlssonpublic:
535c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  const SwitchCase *getNextSwitchCase() const { return NextSwitchCase; }
536c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson
537c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  SwitchCase *getNextSwitchCase() { return NextSwitchCase; }
538c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson
539c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  void setNextSwitchCase(SwitchCase *SC) { NextSwitchCase = SC; }
540d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek
54163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  Stmt *getSubStmt();
542702e5474f570d0b83db9f354619b8ac5bc8ed743Chris Lattner  const Stmt *getSubStmt() const {
543702e5474f570d0b83db9f354619b8ac5bc8ed743Chris Lattner    return const_cast<SwitchCase*>(this)->getSubStmt();
544702e5474f570d0b83db9f354619b8ac5bc8ed743Chris Lattner  }
545b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
54663c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const { return SourceRange(); }
5471eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5481eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
5491eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == CaseStmtClass ||
55063c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall           T->getStmtClass() == DefaultStmtClass;
551c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  }
552c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  static bool classof(const SwitchCase *) { return true; }
553c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson};
554c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson
555c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlssonclass CaseStmt : public SwitchCase {
5560a9beb52baa6c990d45d638a177d9456e650282aDouglas Gregor  enum { LHS, RHS, SUBSTMT, END_EXPR };
5571eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  Stmt* SubExprs[END_EXPR];  // The expression for the RHS is Non-null for
558d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek                             // GNU "case 1 ... 4" extension
559b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  SourceLocation CaseLoc;
560dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor  SourceLocation EllipsisLoc;
561dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor  SourceLocation ColonLoc;
5625f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
563dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor  CaseStmt(Expr *lhs, Expr *rhs, SourceLocation caseLoc,
5641eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump           SourceLocation ellipsisLoc, SourceLocation colonLoc)
565d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek    : SwitchCase(CaseStmtClass) {
56624e1e707b4c362f18e371e2bbf054a8345b57bfaChris Lattner    SubExprs[SUBSTMT] = 0;
567d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek    SubExprs[LHS] = reinterpret_cast<Stmt*>(lhs);
568d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek    SubExprs[RHS] = reinterpret_cast<Stmt*>(rhs);
569b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff    CaseLoc = caseLoc;
570dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor    EllipsisLoc = ellipsisLoc;
571dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor    ColonLoc = colonLoc;
572d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek  }
573025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
574025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  /// \brief Build an empty switch case statement.
575025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  explicit CaseStmt(EmptyShell Empty) : SwitchCase(CaseStmtClass) { }
576025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
577764a7ce5217f9569e100a3445f47496ee82daf86Chris Lattner  SourceLocation getCaseLoc() const { return CaseLoc; }
578025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setCaseLoc(SourceLocation L) { CaseLoc = L; }
579dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor  SourceLocation getEllipsisLoc() const { return EllipsisLoc; }
580dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor  void setEllipsisLoc(SourceLocation L) { EllipsisLoc = L; }
581dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor  SourceLocation getColonLoc() const { return ColonLoc; }
582dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor  void setColonLoc(SourceLocation L) { ColonLoc = L; }
583025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
584d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek  Expr *getLHS() { return reinterpret_cast<Expr*>(SubExprs[LHS]); }
585d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek  Expr *getRHS() { return reinterpret_cast<Expr*>(SubExprs[RHS]); }
586d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek  Stmt *getSubStmt() { return SubExprs[SUBSTMT]; }
587025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
5881eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  const Expr *getLHS() const {
5891eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return reinterpret_cast<const Expr*>(SubExprs[LHS]);
59051b09f2c528c8460b5465c676173324e44176d62Devang Patel  }
5911eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  const Expr *getRHS() const {
5921eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return reinterpret_cast<const Expr*>(SubExprs[RHS]);
59351b09f2c528c8460b5465c676173324e44176d62Devang Patel  }
59451b09f2c528c8460b5465c676173324e44176d62Devang Patel  const Stmt *getSubStmt() const { return SubExprs[SUBSTMT]; }
5955f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
59620dabe8b8ff7ed6d2d0158fee43755a4bc7642c3Chris Lattner  void setSubStmt(Stmt *S) { SubExprs[SUBSTMT] = S; }
59720dabe8b8ff7ed6d2d0158fee43755a4bc7642c3Chris Lattner  void setLHS(Expr *Val) { SubExprs[LHS] = reinterpret_cast<Stmt*>(Val); }
59820dabe8b8ff7ed6d2d0158fee43755a4bc7642c3Chris Lattner  void setRHS(Expr *Val) { SubExprs[RHS] = reinterpret_cast<Stmt*>(Val); }
5991eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
6001eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
60163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
6023fb94a4918bd427fdb12df997dd87fd1017f0388Chris Lattner    // Handle deeply nested case statements with iteration instead of recursion.
6033fb94a4918bd427fdb12df997dd87fd1017f0388Chris Lattner    const CaseStmt *CS = this;
60491ee0140ecb60b5c1402edc9e577257636c4ca60Chris Lattner    while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
6053fb94a4918bd427fdb12df997dd87fd1017f0388Chris Lattner      CS = CS2;
6061eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
6071eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return SourceRange(CaseLoc, CS->getSubStmt()->getLocEnd());
608b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  }
6091eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
6101eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == CaseStmtClass;
6115f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
6125f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const CaseStmt *) { return true; }
6131eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
614d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek  // Iterators
61563c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() {
61663c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return child_range(&SubExprs[0], &SubExprs[END_EXPR]);
61763c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  }
6185f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
6195f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
620c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlssonclass DefaultStmt : public SwitchCase {
621d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek  Stmt* SubStmt;
6226c36be5b383875b490684bcf439d6d427298c1afChris Lattner  SourceLocation DefaultLoc;
623dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor  SourceLocation ColonLoc;
6245f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
6251eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  DefaultStmt(SourceLocation DL, SourceLocation CL, Stmt *substmt) :
626dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor    SwitchCase(DefaultStmtClass), SubStmt(substmt), DefaultLoc(DL),
627dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor    ColonLoc(CL) {}
628025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
629025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  /// \brief Build an empty default statement.
630025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  explicit DefaultStmt(EmptyShell) : SwitchCase(DefaultStmtClass) { }
631025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
632d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek  Stmt *getSubStmt() { return SubStmt; }
63351b09f2c528c8460b5465c676173324e44176d62Devang Patel  const Stmt *getSubStmt() const { return SubStmt; }
634025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setSubStmt(Stmt *S) { SubStmt = S; }
635025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
6366c36be5b383875b490684bcf439d6d427298c1afChris Lattner  SourceLocation getDefaultLoc() const { return DefaultLoc; }
637025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setDefaultLoc(SourceLocation L) { DefaultLoc = L; }
638dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor  SourceLocation getColonLoc() const { return ColonLoc; }
639dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9Douglas Gregor  void setColonLoc(SourceLocation L) { ColonLoc = L; }
6405f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
64163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
6421eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return SourceRange(DefaultLoc, SubStmt->getLocEnd());
643b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  }
6441eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
6451eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == DefaultStmtClass;
6465f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
6475f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const DefaultStmt *) { return true; }
6481eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
649d97bb6c1384cb773ba5cdbd198008dec127cebadTed Kremenek  // Iterators
65063c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() { return child_range(&SubStmt, &SubStmt+1); }
6515f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
6525f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
653ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner
654ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner/// LabelStmt - Represents a label, which has a substatement.  For example:
655ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner///    foo: return;
656ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner///
6575f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass LabelStmt : public Stmt {
658ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner  LabelDecl *TheDecl;
6595f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  Stmt *SubStmt;
660b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  SourceLocation IdentLoc;
6615f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
662ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner  LabelStmt(SourceLocation IL, LabelDecl *D, Stmt *substmt)
663ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner    : Stmt(LabelStmtClass), TheDecl(D), SubStmt(substmt), IdentLoc(IL) {
6648e6285af719adc6f86d6faa235d22a08eb68ee3aJohn McCall  }
6651de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor
6661de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor  // \brief Build an empty label statement.
6671de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor  explicit LabelStmt(EmptyShell Empty) : Stmt(LabelStmtClass, Empty) { }
6681eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
6695f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation getIdentLoc() const { return IdentLoc; }
670ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner  LabelDecl *getDecl() const { return TheDecl; }
671ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner  void setDecl(LabelDecl *D) { TheDecl = D; }
6725f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  const char *getName() const;
6735f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  Stmt *getSubStmt() { return SubStmt; }
6745f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  const Stmt *getSubStmt() const { return SubStmt; }
6755f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  void setIdentLoc(SourceLocation L) { IdentLoc = L; }
6765f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  void setSubStmt(Stmt *SS) { SubStmt = SS; }
677b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
67863c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
6791eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return SourceRange(IdentLoc, SubStmt->getLocEnd());
6801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  }
68163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() { return child_range(&SubStmt, &SubStmt+1); }
68263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall
6831eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
6841eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == LabelStmtClass;
6855f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
6865f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const LabelStmt *) { return true; }
6875f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
6885f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
6895f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
6905f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// IfStmt - This represents an if/then/else.
6915f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
6925f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass IfStmt : public Stmt {
69343dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  enum { VAR, COND, THEN, ELSE, END_EXPR };
6948297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt* SubExprs[END_EXPR];
6958cfe5a784133d90bf329fd20801824a6f71bb8caDouglas Gregor
696b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  SourceLocation IfLoc;
697d06f6ca61062f85926eb9d409eb3d4f8afcf93c7Douglas Gregor  SourceLocation ElseLoc;
69844aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis
6995f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
70043dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  IfStmt(ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
70144aa1f397855f130e88e62ffc1029f7f83bb5d2eArgyrios Kyrtzidis         Stmt *then, SourceLocation EL = SourceLocation(), Stmt *elsev = 0);
70243dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor
703025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  /// \brief Build an empty if/then/else statement
704025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  explicit IfStmt(EmptyShell Empty) : Stmt(IfStmtClass, Empty) { }
705025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
7068cfe5a784133d90bf329fd20801824a6f71bb8caDouglas Gregor  /// \brief Retrieve the variable declared in this "if" statement, if any.
7078cfe5a784133d90bf329fd20801824a6f71bb8caDouglas Gregor  ///
7088cfe5a784133d90bf329fd20801824a6f71bb8caDouglas Gregor  /// In the following example, "x" is the condition variable.
7098cfe5a784133d90bf329fd20801824a6f71bb8caDouglas Gregor  /// \code
7108cfe5a784133d90bf329fd20801824a6f71bb8caDouglas Gregor  /// if (int x = foo()) {
7118cfe5a784133d90bf329fd20801824a6f71bb8caDouglas Gregor  ///   printf("x is %d", x);
7128cfe5a784133d90bf329fd20801824a6f71bb8caDouglas Gregor  /// }
7138cfe5a784133d90bf329fd20801824a6f71bb8caDouglas Gregor  /// \endcode
71443dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  VarDecl *getConditionVariable() const;
71543dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  void setConditionVariable(ASTContext &C, VarDecl *V);
716c302113179a1c2b1254224ea9b6f5316ceeb375cSean Hunt
717d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  /// If this IfStmt has a condition variable, return the faux DeclStmt
718d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  /// associated with the creation of that condition variable.
719d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  const DeclStmt *getConditionVariableDeclStmt() const {
720d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek    return reinterpret_cast<DeclStmt*>(SubExprs[VAR]);
721d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  }
722d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek
7238297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
724025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); }
7258297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Stmt *getThen() const { return SubExprs[THEN]; }
7261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  void setThen(Stmt *S) { SubExprs[THEN] = S; }
7278297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Stmt *getElse() const { return SubExprs[ELSE]; }
728025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setElse(Stmt *S) { SubExprs[ELSE] = S; }
7295f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
7308297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
7318297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt *getThen() { return SubExprs[THEN]; }
7328297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt *getElse() { return SubExprs[ELSE]; }
733b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
734025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  SourceLocation getIfLoc() const { return IfLoc; }
735025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setIfLoc(SourceLocation L) { IfLoc = L; }
736d06f6ca61062f85926eb9d409eb3d4f8afcf93c7Douglas Gregor  SourceLocation getElseLoc() const { return ElseLoc; }
737d06f6ca61062f85926eb9d409eb3d4f8afcf93c7Douglas Gregor  void setElseLoc(SourceLocation L) { ElseLoc = L; }
738025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
73963c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
740b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff    if (SubExprs[ELSE])
741b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff      return SourceRange(IfLoc, SubExprs[ELSE]->getLocEnd());
742b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff    else
743b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff      return SourceRange(IfLoc, SubExprs[THEN]->getLocEnd());
744b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  }
7451eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
74663c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  // Iterators over subexpressions.  The iterators will include iterating
74763c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  // over the initialization expression referenced by the condition variable.
74863c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() {
74963c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return child_range(&SubExprs[0], &SubExprs[0]+END_EXPR);
75063c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  }
75163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall
7521eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
7531eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == IfStmtClass;
7545f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
7555f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const IfStmt *) { return true; }
7565f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
7575f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
7585f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// SwitchStmt - This represents a 'switch' stmt.
7595f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
7605f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass SwitchStmt : public Stmt {
76143dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  enum { VAR, COND, BODY, END_EXPR };
7621eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  Stmt* SubExprs[END_EXPR];
763c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  // This points to a linked list of case and default statements.
764c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  SwitchCase *FirstCase;
7659dcbfa450d751bd68fc4af8b75da381d4f6984b9Steve Naroff  SourceLocation SwitchLoc;
7661eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
767559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  /// If the SwitchStmt is a switch on an enum value, this records whether
768559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  /// all the enum values were covered by CaseStmts.  This value is meant to
769559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  /// be a hint for possible clients.
770559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  unsigned AllEnumCasesCovered : 1;
771559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek
7725f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
77343dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  SwitchStmt(ASTContext &C, VarDecl *Var, Expr *cond);
7741eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
775025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  /// \brief Build a empty switch statement.
776025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  explicit SwitchStmt(EmptyShell Empty) : Stmt(SwitchStmtClass, Empty) { }
777025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
778d3d5301c44138b92bf01286183f5bf310cdd37cfDouglas Gregor  /// \brief Retrieve the variable declared in this "switch" statement, if any.
779d3d5301c44138b92bf01286183f5bf310cdd37cfDouglas Gregor  ///
780d3d5301c44138b92bf01286183f5bf310cdd37cfDouglas Gregor  /// In the following example, "x" is the condition variable.
781d3d5301c44138b92bf01286183f5bf310cdd37cfDouglas Gregor  /// \code
782d3d5301c44138b92bf01286183f5bf310cdd37cfDouglas Gregor  /// switch (int x = foo()) {
783d3d5301c44138b92bf01286183f5bf310cdd37cfDouglas Gregor  ///   case 0: break;
784d3d5301c44138b92bf01286183f5bf310cdd37cfDouglas Gregor  ///   // ...
785d3d5301c44138b92bf01286183f5bf310cdd37cfDouglas Gregor  /// }
786d3d5301c44138b92bf01286183f5bf310cdd37cfDouglas Gregor  /// \endcode
78743dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  VarDecl *getConditionVariable() const;
78843dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  void setConditionVariable(ASTContext &C, VarDecl *V);
789d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek
790d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  /// If this SwitchStmt has a condition variable, return the faux DeclStmt
791d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  /// associated with the creation of that condition variable.
792d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  const DeclStmt *getConditionVariableDeclStmt() const {
793d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek    return reinterpret_cast<DeclStmt*>(SubExprs[VAR]);
794d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  }
795d3d5301c44138b92bf01286183f5bf310cdd37cfDouglas Gregor
7968297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
7978297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Stmt *getBody() const { return SubExprs[BODY]; }
798c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  const SwitchCase *getSwitchCaseList() const { return FirstCase; }
799c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson
8008297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]);}
801025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); }
8028297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt *getBody() { return SubExprs[BODY]; }
803025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setBody(Stmt *S) { SubExprs[BODY] = S; }
804c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  SwitchCase *getSwitchCaseList() { return FirstCase; }
8051eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
80643d9d9243329b1b75d1a6efdad9f16d6fb386b8eDouglas Gregor  /// \brief Set the case list for this switch statement.
80743d9d9243329b1b75d1a6efdad9f16d6fb386b8eDouglas Gregor  ///
80843d9d9243329b1b75d1a6efdad9f16d6fb386b8eDouglas Gregor  /// The caller is responsible for incrementing the retain counts on
80943d9d9243329b1b75d1a6efdad9f16d6fb386b8eDouglas Gregor  /// all of the SwitchCase statements in this list.
810025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setSwitchCaseList(SwitchCase *SC) { FirstCase = SC; }
811025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
812025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  SourceLocation getSwitchLoc() const { return SwitchLoc; }
813025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setSwitchLoc(SourceLocation L) { SwitchLoc = L; }
814c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson
8151eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  void setBody(Stmt *S, SourceLocation SL) {
8161eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    SubExprs[BODY] = S;
8179dcbfa450d751bd68fc4af8b75da381d4f6984b9Steve Naroff    SwitchLoc = SL;
8181eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  }
819c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  void addSwitchCase(SwitchCase *SC) {
820c2ee10d79f70036af652a395ac1f8273f3d04e12Douglas Gregor    assert(!SC->getNextSwitchCase() && "case/default already added to a switch");
821c2ee10d79f70036af652a395ac1f8273f3d04e12Douglas Gregor    SC->setNextSwitchCase(FirstCase);
822c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson    FirstCase = SC;
823c1fcb7762673be706b0a40477d5e93411e918f93Anders Carlsson  }
824559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek
825559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  /// Set a flag in the SwitchStmt indicating that if the 'switch (X)' is a
826559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  /// switch over an enum value then all cases have been explicitly covered.
827559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  void setAllEnumCasesCovered() {
828559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek    AllEnumCasesCovered = 1;
829559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  }
830559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek
831559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  /// Returns true if the SwitchStmt is a switch of an enum value and all cases
832559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  /// have been explicitly covered.
833559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  bool isAllEnumCasesCovered() const {
834559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek    return (bool) AllEnumCasesCovered;
835559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek  }
836559fb554602bedb57dbbf3cc14ac8a38264b4547Ted Kremenek
83763c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
8381eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return SourceRange(SwitchLoc, SubExprs[BODY]->getLocEnd());
8399dcbfa450d751bd68fc4af8b75da381d4f6984b9Steve Naroff  }
84063c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  // Iterators
84163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() {
84263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return child_range(&SubExprs[0], &SubExprs[0]+END_EXPR);
84363c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  }
84463c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall
8451eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
8461eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == SwitchStmtClass;
8475f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
8485f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const SwitchStmt *) { return true; }
8495f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
8505f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
8515f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
8525f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// WhileStmt - This represents a 'while' stmt.
8535f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
8545f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass WhileStmt : public Stmt {
85543dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  enum { VAR, COND, BODY, END_EXPR };
8568297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt* SubExprs[END_EXPR];
857b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  SourceLocation WhileLoc;
8585f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
85943dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  WhileStmt(ASTContext &C, VarDecl *Var, Expr *cond, Stmt *body,
86043dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor            SourceLocation WL);
8611eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
862d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor  /// \brief Build an empty while statement.
863d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor  explicit WhileStmt(EmptyShell Empty) : Stmt(WhileStmtClass, Empty) { }
864d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor
8655656e14d91405417182171a705ed3e3d2d6d7aa3Douglas Gregor  /// \brief Retrieve the variable declared in this "while" statement, if any.
8665656e14d91405417182171a705ed3e3d2d6d7aa3Douglas Gregor  ///
8675656e14d91405417182171a705ed3e3d2d6d7aa3Douglas Gregor  /// In the following example, "x" is the condition variable.
8685656e14d91405417182171a705ed3e3d2d6d7aa3Douglas Gregor  /// \code
8695656e14d91405417182171a705ed3e3d2d6d7aa3Douglas Gregor  /// while (int x = random()) {
8705656e14d91405417182171a705ed3e3d2d6d7aa3Douglas Gregor  ///   // ...
8715656e14d91405417182171a705ed3e3d2d6d7aa3Douglas Gregor  /// }
8725656e14d91405417182171a705ed3e3d2d6d7aa3Douglas Gregor  /// \endcode
87343dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  VarDecl *getConditionVariable() const;
87443dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  void setConditionVariable(ASTContext &C, VarDecl *V);
8755656e14d91405417182171a705ed3e3d2d6d7aa3Douglas Gregor
876d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  /// If this WhileStmt has a condition variable, return the faux DeclStmt
877d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  /// associated with the creation of that condition variable.
878d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  const DeclStmt *getConditionVariableDeclStmt() const {
879d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek    return reinterpret_cast<DeclStmt*>(SubExprs[VAR]);
880d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  }
881d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek
8828297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
8838297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
884d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor  void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); }
8858297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt *getBody() { return SubExprs[BODY]; }
8868297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Stmt *getBody() const { return SubExprs[BODY]; }
887d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor  void setBody(Stmt *S) { SubExprs[BODY] = S; }
888d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor
889d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor  SourceLocation getWhileLoc() const { return WhileLoc; }
890d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor  void setWhileLoc(SourceLocation L) { WhileLoc = L; }
891b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
89263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
8931eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return SourceRange(WhileLoc, SubExprs[BODY]->getLocEnd());
894b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  }
8951eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
8961eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == WhileStmtClass;
8975f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
8985f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const WhileStmt *) { return true; }
8991eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
9008297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  // Iterators
90163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() {
90263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return child_range(&SubExprs[0], &SubExprs[0]+END_EXPR);
90363c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  }
9045f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
9055f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
9065f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// DoStmt - This represents a 'do/while' stmt.
9075f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
9085f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass DoStmt : public Stmt {
909c7b5ed6da7410849b51ba9a9ea04d2cc7b720f48Douglas Gregor  enum { BODY, COND, END_EXPR };
9108297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt* SubExprs[END_EXPR];
911b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  SourceLocation DoLoc;
9129f3ca2a7747bd47f14d7693f333103fac29a24d2Douglas Gregor  SourceLocation WhileLoc;
913989135901c750af61ef012b6b0a0368be415bc46Chris Lattner  SourceLocation RParenLoc;  // Location of final ')' in do stmt condition.
9149f3ca2a7747bd47f14d7693f333103fac29a24d2Douglas Gregor
9155f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
916989135901c750af61ef012b6b0a0368be415bc46Chris Lattner  DoStmt(Stmt *body, Expr *cond, SourceLocation DL, SourceLocation WL,
917989135901c750af61ef012b6b0a0368be415bc46Chris Lattner         SourceLocation RP)
918989135901c750af61ef012b6b0a0368be415bc46Chris Lattner    : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) {
9198297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek    SubExprs[COND] = reinterpret_cast<Stmt*>(cond);
9208297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek    SubExprs[BODY] = body;
9211eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  }
92267d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor
92367d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  /// \brief Build an empty do-while statement.
92467d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  explicit DoStmt(EmptyShell Empty) : Stmt(DoStmtClass, Empty) { }
9251eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
9268297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
9278297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
92867d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); }
9298297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt *getBody() { return SubExprs[BODY]; }
9301eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  const Stmt *getBody() const { return SubExprs[BODY]; }
93167d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  void setBody(Stmt *S) { SubExprs[BODY] = S; }
93267d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor
93367d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  SourceLocation getDoLoc() const { return DoLoc; }
93467d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  void setDoLoc(SourceLocation L) { DoLoc = L; }
9359f3ca2a7747bd47f14d7693f333103fac29a24d2Douglas Gregor  SourceLocation getWhileLoc() const { return WhileLoc; }
9369f3ca2a7747bd47f14d7693f333103fac29a24d2Douglas Gregor  void setWhileLoc(SourceLocation L) { WhileLoc = L; }
937b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
938989135901c750af61ef012b6b0a0368be415bc46Chris Lattner  SourceLocation getRParenLoc() const { return RParenLoc; }
939989135901c750af61ef012b6b0a0368be415bc46Chris Lattner  void setRParenLoc(SourceLocation L) { RParenLoc = L; }
940989135901c750af61ef012b6b0a0368be415bc46Chris Lattner
94163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
9421eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return SourceRange(DoLoc, RParenLoc);
943b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  }
9441eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
9451eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == DoStmtClass;
9465f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
9475f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const DoStmt *) { return true; }
9488297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek
9498297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  // Iterators
95063c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() {
95163c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return child_range(&SubExprs[0], &SubExprs[0]+END_EXPR);
95263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  }
9535f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
9545f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
9555f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
9565f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// ForStmt - This represents a 'for (init;cond;inc)' stmt.  Note that any of
9575f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// the init/cond/inc parts of the ForStmt will be null if they were not
9585f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// specified in the source.
9595f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
9605f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass ForStmt : public Stmt {
96143dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  enum { INIT, CONDVAR, COND, INC, BODY, END_EXPR };
9628297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt* SubExprs[END_EXPR]; // SubExprs[INIT] is an expression or declstmt.
963b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  SourceLocation ForLoc;
9645831c6a1efc47e6a19d82fe3dd25b5b8fef6979dDouglas Gregor  SourceLocation LParenLoc, RParenLoc;
9655831c6a1efc47e6a19d82fe3dd25b5b8fef6979dDouglas Gregor
9665f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
96743dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  ForStmt(ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, Expr *Inc,
96843dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor          Stmt *Body, SourceLocation FL, SourceLocation LP, SourceLocation RP);
9691eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
97067d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  /// \brief Build an empty for statement.
97167d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  explicit ForStmt(EmptyShell Empty) : Stmt(ForStmtClass, Empty) { }
97267d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor
9738297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt *getInit() { return SubExprs[INIT]; }
974c302113179a1c2b1254224ea9b6f5316ceeb375cSean Hunt
97599e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  /// \brief Retrieve the variable declared in this "for" statement, if any.
97699e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  ///
97799e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  /// In the following example, "y" is the condition variable.
97899e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  /// \code
97999e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  /// for (int x = random(); int y = mangle(x); ++x) {
98099e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  ///   // ...
98199e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  /// }
98299e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  /// \endcode
98343dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  VarDecl *getConditionVariable() const;
98443dec6bbde2d0a16c35978983761c8b7030c8e18Douglas Gregor  void setConditionVariable(ASTContext &C, VarDecl *V);
985c302113179a1c2b1254224ea9b6f5316ceeb375cSean Hunt
986d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  /// If this ForStmt has a condition variable, return the faux DeclStmt
987d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  /// associated with the creation of that condition variable.
988d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  const DeclStmt *getConditionVariableDeclStmt() const {
989d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek    return reinterpret_cast<DeclStmt*>(SubExprs[CONDVAR]);
990d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek  }
991d40066b0fb883839a9100e5455e33190b9b8abacTed Kremenek
9928297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
9938297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Expr *getInc()  { return reinterpret_cast<Expr*>(SubExprs[INC]); }
9948297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  Stmt *getBody() { return SubExprs[BODY]; }
9958297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek
9968297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Stmt *getInit() const { return SubExprs[INIT]; }
9978297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
9988297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Expr *getInc()  const { return reinterpret_cast<Expr*>(SubExprs[INC]); }
9998297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  const Stmt *getBody() const { return SubExprs[BODY]; }
1000b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
100167d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  void setInit(Stmt *S) { SubExprs[INIT] = S; }
100267d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); }
100367d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  void setInc(Expr *E) { SubExprs[INC] = reinterpret_cast<Stmt*>(E); }
100467d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  void setBody(Stmt *S) { SubExprs[BODY] = S; }
100567d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor
100667d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  SourceLocation getForLoc() const { return ForLoc; }
100767d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor  void setForLoc(SourceLocation L) { ForLoc = L; }
10085831c6a1efc47e6a19d82fe3dd25b5b8fef6979dDouglas Gregor  SourceLocation getLParenLoc() const { return LParenLoc; }
10095831c6a1efc47e6a19d82fe3dd25b5b8fef6979dDouglas Gregor  void setLParenLoc(SourceLocation L) { LParenLoc = L; }
10105831c6a1efc47e6a19d82fe3dd25b5b8fef6979dDouglas Gregor  SourceLocation getRParenLoc() const { return RParenLoc; }
10115831c6a1efc47e6a19d82fe3dd25b5b8fef6979dDouglas Gregor  void setRParenLoc(SourceLocation L) { RParenLoc = L; }
101267d8249924ef38a5375ff9c92cd21c1854d6ababDouglas Gregor
101363c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
10141eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return SourceRange(ForLoc, SubExprs[BODY]->getLocEnd());
1015b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff  }
10161eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
10171eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == ForStmtClass;
10185f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
10195f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const ForStmt *) { return true; }
10201eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10218297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  // Iterators
102263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() {
102363c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return child_range(&SubExprs[0], &SubExprs[0]+END_EXPR);
102463c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  }
10255f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
10261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10275f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// GotoStmt - This represents a direct goto.
10285f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
10295f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass GotoStmt : public Stmt {
1030ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner  LabelDecl *Label;
1031507f2d5811bd7da1a4d9d2f4960f32177dfab9deSteve Naroff  SourceLocation GotoLoc;
103261f62165220e75694fe333179c78815e2e48d71fTed Kremenek  SourceLocation LabelLoc;
10335f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
1034ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner  GotoStmt(LabelDecl *label, SourceLocation GL, SourceLocation LL)
103561f62165220e75694fe333179c78815e2e48d71fTed Kremenek    : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {}
10361eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10371de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor  /// \brief Build an empty goto statement.
10381de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor  explicit GotoStmt(EmptyShell Empty) : Stmt(GotoStmtClass, Empty) { }
10391de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor
1040ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner  LabelDecl *getLabel() const { return Label; }
1041ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner  void setLabel(LabelDecl *D) { Label = D; }
10421de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor
10431de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor  SourceLocation getGotoLoc() const { return GotoLoc; }
10441de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor  void setGotoLoc(SourceLocation L) { GotoLoc = L; }
10451de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor  SourceLocation getLabelLoc() const { return LabelLoc; }
10461de05feeeafe5b215fe7617594a7076a5192a6e2Douglas Gregor  void setLabelLoc(SourceLocation L) { LabelLoc = L; }
1047b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
104863c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
10491eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return SourceRange(GotoLoc, LabelLoc);
1050507f2d5811bd7da1a4d9d2f4960f32177dfab9deSteve Naroff  }
10511eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
10521eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == GotoStmtClass;
10535f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
10545f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const GotoStmt *) { return true; }
10551eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10568297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  // Iterators
105763c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() { return child_range(); }
10585f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
10595f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
10605f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// IndirectGotoStmt - This represents an indirect goto.
10615f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
10625f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass IndirectGotoStmt : public Stmt {
1063ad56d684259f706b7c0ae5ad9c23adb4f2926817Chris Lattner  SourceLocation GotoLoc;
10645f1b9e689fa5c101512aef99225f2afea1673449Douglas Gregor  SourceLocation StarLoc;
10651060aff23f72135f8b50034a1e80f16725ebc56cTed Kremenek  Stmt *Target;
10665f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
10671eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  IndirectGotoStmt(SourceLocation gotoLoc, SourceLocation starLoc,
10685f1b9e689fa5c101512aef99225f2afea1673449Douglas Gregor                   Expr *target)
10695f1b9e689fa5c101512aef99225f2afea1673449Douglas Gregor    : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc),
10705f1b9e689fa5c101512aef99225f2afea1673449Douglas Gregor      Target((Stmt*)target) {}
10717d5c2f241c74e5f8d9ec492e8f9f268e5e9ae41fDouglas Gregor
10727d5c2f241c74e5f8d9ec492e8f9f268e5e9ae41fDouglas Gregor  /// \brief Build an empty indirect goto statement.
10731eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  explicit IndirectGotoStmt(EmptyShell Empty)
10747d5c2f241c74e5f8d9ec492e8f9f268e5e9ae41fDouglas Gregor    : Stmt(IndirectGotoStmtClass, Empty) { }
10751eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1076ad56d684259f706b7c0ae5ad9c23adb4f2926817Chris Lattner  void setGotoLoc(SourceLocation L) { GotoLoc = L; }
1077ad56d684259f706b7c0ae5ad9c23adb4f2926817Chris Lattner  SourceLocation getGotoLoc() const { return GotoLoc; }
10785f1b9e689fa5c101512aef99225f2afea1673449Douglas Gregor  void setStarLoc(SourceLocation L) { StarLoc = L; }
10795f1b9e689fa5c101512aef99225f2afea1673449Douglas Gregor  SourceLocation getStarLoc() const { return StarLoc; }
10801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
108195c225de9fa3d79f70ef5008c0279580a7d9dcadJohn McCall  Expr *getTarget() { return reinterpret_cast<Expr*>(Target); }
108295c225de9fa3d79f70ef5008c0279580a7d9dcadJohn McCall  const Expr *getTarget() const {return reinterpret_cast<const Expr*>(Target);}
10837d5c2f241c74e5f8d9ec492e8f9f268e5e9ae41fDouglas Gregor  void setTarget(Expr *E) { Target = reinterpret_cast<Stmt*>(E); }
1084b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
108595c225de9fa3d79f70ef5008c0279580a7d9dcadJohn McCall  /// getConstantTarget - Returns the fixed target of this indirect
108695c225de9fa3d79f70ef5008c0279580a7d9dcadJohn McCall  /// goto, if one exists.
1087ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner  LabelDecl *getConstantTarget();
1088ad8dcf4a9df0e24051dc31bf9e6f3cd138a34298Chris Lattner  const LabelDecl *getConstantTarget() const {
108995c225de9fa3d79f70ef5008c0279580a7d9dcadJohn McCall    return const_cast<IndirectGotoStmt*>(this)->getConstantTarget();
109095c225de9fa3d79f70ef5008c0279580a7d9dcadJohn McCall  }
109195c225de9fa3d79f70ef5008c0279580a7d9dcadJohn McCall
109263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
1093ad56d684259f706b7c0ae5ad9c23adb4f2926817Chris Lattner    return SourceRange(GotoLoc, Target->getLocEnd());
1094ad56d684259f706b7c0ae5ad9c23adb4f2926817Chris Lattner  }
10951eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10961eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
10971eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == IndirectGotoStmtClass;
10985f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
10995f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const IndirectGotoStmt *) { return true; }
11001eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
11018297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  // Iterators
110263c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() { return child_range(&Target, &Target+1); }
11035f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
11045f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
11055f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
11065f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// ContinueStmt - This represents a continue.
11075f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
11085f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass ContinueStmt : public Stmt {
1109507f2d5811bd7da1a4d9d2f4960f32177dfab9deSteve Naroff  SourceLocation ContinueLoc;
11105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
1111507f2d5811bd7da1a4d9d2f4960f32177dfab9deSteve Naroff  ContinueStmt(SourceLocation CL) : Stmt(ContinueStmtClass), ContinueLoc(CL) {}
11121eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1113d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor  /// \brief Build an empty continue statement.
1114d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor  explicit ContinueStmt(EmptyShell Empty) : Stmt(ContinueStmtClass, Empty) { }
1115d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor
1116d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor  SourceLocation getContinueLoc() const { return ContinueLoc; }
1117d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor  void setContinueLoc(SourceLocation L) { ContinueLoc = L; }
1118d921cf976b4769af8d06d6763a2547dadf7940abDouglas Gregor
111963c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
11201eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return SourceRange(ContinueLoc);
1121507f2d5811bd7da1a4d9d2f4960f32177dfab9deSteve Naroff  }
1122861ce3178c70cfb0fa50baf685e1ad363538eaa9Douglas Gregor
11231eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
11241eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == ContinueStmtClass;
11255f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
11265f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const ContinueStmt *) { return true; }
11271eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
11288297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  // Iterators
112963c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() { return child_range(); }
11305f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
11315f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
11325f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// BreakStmt - This represents a break.
11335f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
11345f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass BreakStmt : public Stmt {
1135507f2d5811bd7da1a4d9d2f4960f32177dfab9deSteve Naroff  SourceLocation BreakLoc;
11365f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
1137507f2d5811bd7da1a4d9d2f4960f32177dfab9deSteve Naroff  BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) {}
11381eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1139025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  /// \brief Build an empty break statement.
1140025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  explicit BreakStmt(EmptyShell Empty) : Stmt(BreakStmtClass, Empty) { }
1141025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
1142025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  SourceLocation getBreakLoc() const { return BreakLoc; }
1143025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor  void setBreakLoc(SourceLocation L) { BreakLoc = L; }
1144025452fa0eda63e150cfaeebe64f0a19c96b3a06Douglas Gregor
114563c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const { return SourceRange(BreakLoc); }
1146b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
11471eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
11481eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == BreakStmtClass;
11495f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
11505f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const BreakStmt *) { return true; }
11511eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
11528297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  // Iterators
115363c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() { return child_range(); }
11545f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
11555f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
11565f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
1157c8edf6bd5f76bf50411d037c83d36847edfa68f0Chris Lattner/// ReturnStmt - This represents a return, optionally of an expression:
1158c8edf6bd5f76bf50411d037c83d36847edfa68f0Chris Lattner///   return;
1159c8edf6bd5f76bf50411d037c83d36847edfa68f0Chris Lattner///   return 4;
1160c8edf6bd5f76bf50411d037c83d36847edfa68f0Chris Lattner///
1161c8edf6bd5f76bf50411d037c83d36847edfa68f0Chris Lattner/// Note that GCC allows return with no argument in a function declared to
1162c8edf6bd5f76bf50411d037c83d36847edfa68f0Chris Lattner/// return a value, and it allows returning a value in functions declared to
1163c8edf6bd5f76bf50411d037c83d36847edfa68f0Chris Lattner/// return void.  We explicitly model this in the AST, which means you can't
1164c8edf6bd5f76bf50411d037c83d36847edfa68f0Chris Lattner/// depend on the return type of the function and the presence of an argument.
11655f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
11665f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass ReturnStmt : public Stmt {
11671060aff23f72135f8b50034a1e80f16725ebc56cTed Kremenek  Stmt *RetExpr;
1168507f2d5811bd7da1a4d9d2f4960f32177dfab9deSteve Naroff  SourceLocation RetLoc;
11695077c3876beeaed32280af88244e8050078619a8Douglas Gregor  const VarDecl *NRVOCandidate;
11705077c3876beeaed32280af88244e8050078619a8Douglas Gregor
11715f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
11725077c3876beeaed32280af88244e8050078619a8Douglas Gregor  ReturnStmt(SourceLocation RL)
117325a0fe2a99aaf2d1bf5bdfdae7ab11e2a5e7622fAbramo Bagnara    : Stmt(ReturnStmtClass), RetExpr(0), RetLoc(RL), NRVOCandidate(0) { }
11745077c3876beeaed32280af88244e8050078619a8Douglas Gregor
11755077c3876beeaed32280af88244e8050078619a8Douglas Gregor  ReturnStmt(SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate)
11765077c3876beeaed32280af88244e8050078619a8Douglas Gregor    : Stmt(ReturnStmtClass), RetExpr((Stmt*) E), RetLoc(RL),
11775077c3876beeaed32280af88244e8050078619a8Douglas Gregor      NRVOCandidate(NRVOCandidate) {}
11780de9d8857b715c2f45c987651f4ce06d73330d93Douglas Gregor
11790de9d8857b715c2f45c987651f4ce06d73330d93Douglas Gregor  /// \brief Build an empty return expression.
11800de9d8857b715c2f45c987651f4ce06d73330d93Douglas Gregor  explicit ReturnStmt(EmptyShell Empty) : Stmt(ReturnStmtClass, Empty) { }
11810de9d8857b715c2f45c987651f4ce06d73330d93Douglas Gregor
11821060aff23f72135f8b50034a1e80f16725ebc56cTed Kremenek  const Expr *getRetValue() const;
11831060aff23f72135f8b50034a1e80f16725ebc56cTed Kremenek  Expr *getRetValue();
11840de9d8857b715c2f45c987651f4ce06d73330d93Douglas Gregor  void setRetValue(Expr *E) { RetExpr = reinterpret_cast<Stmt*>(E); }
11850de9d8857b715c2f45c987651f4ce06d73330d93Douglas Gregor
11860de9d8857b715c2f45c987651f4ce06d73330d93Douglas Gregor  SourceLocation getReturnLoc() const { return RetLoc; }
11870de9d8857b715c2f45c987651f4ce06d73330d93Douglas Gregor  void setReturnLoc(SourceLocation L) { RetLoc = L; }
1188b5a69586f1b8855ee4c1f0bb7a8f0ff4fe32ce09Steve Naroff
11895077c3876beeaed32280af88244e8050078619a8Douglas Gregor  /// \brief Retrieve the variable that might be used for the named return
11905077c3876beeaed32280af88244e8050078619a8Douglas Gregor  /// value optimization.
11915077c3876beeaed32280af88244e8050078619a8Douglas Gregor  ///
11925077c3876beeaed32280af88244e8050078619a8Douglas Gregor  /// The optimization itself can only be performed if the variable is
11935077c3876beeaed32280af88244e8050078619a8Douglas Gregor  /// also marked as an NRVO object.
11945077c3876beeaed32280af88244e8050078619a8Douglas Gregor  const VarDecl *getNRVOCandidate() const { return NRVOCandidate; }
11955077c3876beeaed32280af88244e8050078619a8Douglas Gregor  void setNRVOCandidate(const VarDecl *Var) { NRVOCandidate = Var; }
11965077c3876beeaed32280af88244e8050078619a8Douglas Gregor
119763c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const;
11981eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
11991eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  static bool classof(const Stmt *T) {
12001eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    return T->getStmtClass() == ReturnStmtClass;
12015f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
12025f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static bool classof(const ReturnStmt *) { return true; }
12031eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
12048297777fbe19c4d39e8a70c55346474868055fa1Ted Kremenek  // Iterators
120563c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() {
120663c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    if (RetExpr) return child_range(&RetExpr, &RetExpr+1);
120763c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return child_range();
120863c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  }
12095f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
12105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
1211fe795956194141c91ae555985c9b930595bff43fChris Lattner/// AsmStmt - This represents a GNU inline-assembly statement extension.
1212fe795956194141c91ae555985c9b930595bff43fChris Lattner///
1213fe795956194141c91ae555985c9b930595bff43fChris Lattnerclass AsmStmt : public Stmt {
1214fe795956194141c91ae555985c9b930595bff43fChris Lattner  SourceLocation AsmLoc, RParenLoc;
12156a0ef4b83c91a6d6d5acb4ed5577c4659fe022a3Anders Carlsson  StringLiteral *AsmStr;
1216b235fc2cf37621c7fc6511bb2b8788c95f9fb9fcAnders Carlsson
1217dfab34a696d1dba8622248c31aaf605906cb6109Anders Carlsson  bool IsSimple;
121839c47b56f45437bbc49c9568b7308a400234a730Anders Carlsson  bool IsVolatile;
12193b11fd3b52e7b88233c602407c151d07cb093e75Mike Stump  bool MSAsm;
12201eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1221b235fc2cf37621c7fc6511bb2b8788c95f9fb9fcAnders Carlsson  unsigned NumOutputs;
1222b235fc2cf37621c7fc6511bb2b8788c95f9fb9fcAnders Carlsson  unsigned NumInputs;
1223966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson  unsigned NumClobbers;
12241eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1225966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson  // FIXME: If we wanted to, we could allocate all of these in one big array.
1226966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson  IdentifierInfo **Names;
1227966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson  StringLiteral **Constraints;
1228966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson  Stmt **Exprs;
1229966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson  StringLiteral **Clobbers;
1230c302113179a1c2b1254224ea9b6f5316ceeb375cSean Hunt
1231fe795956194141c91ae555985c9b930595bff43fChris Lattnerpublic:
1232c302113179a1c2b1254224ea9b6f5316ceeb375cSean Hunt  AsmStmt(ASTContext &C, SourceLocation asmloc, bool issimple, bool isvolatile,
1233966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson          bool msasm, unsigned numoutputs, unsigned numinputs,
1234ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson          IdentifierInfo **names, StringLiteral **constraints,
1235db6ed1786bf460e1143f67d14bf2d71ad9856f81Chris Lattner          Expr **exprs, StringLiteral *asmstr, unsigned numclobbers,
1236db6ed1786bf460e1143f67d14bf2d71ad9856f81Chris Lattner          StringLiteral **clobbers, SourceLocation rparenloc);
1237b235fc2cf37621c7fc6511bb2b8788c95f9fb9fcAnders Carlsson
1238cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor  /// \brief Build an empty inline-assembly statement.
1239c302113179a1c2b1254224ea9b6f5316ceeb375cSean Hunt  explicit AsmStmt(EmptyShell Empty) : Stmt(AsmStmtClass, Empty),
1240966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson    Names(0), Constraints(0), Exprs(0), Clobbers(0) { }
1241cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor
1242cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor  SourceLocation getAsmLoc() const { return AsmLoc; }
1243cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor  void setAsmLoc(SourceLocation L) { AsmLoc = L; }
1244cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor  SourceLocation getRParenLoc() const { return RParenLoc; }
1245cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor  void setRParenLoc(SourceLocation L) { RParenLoc = L; }
1246cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor
124739c47b56f45437bbc49c9568b7308a400234a730Anders Carlsson  bool isVolatile() const { return IsVolatile; }
1248cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor  void setVolatile(bool V) { IsVolatile = V; }
1249dfab34a696d1dba8622248c31aaf605906cb6109Anders Carlsson  bool isSimple() const { return IsSimple; }
12506ffe643322949dd776285a6df60d3578f3918be4Chris Lattner  void setSimple(bool V) { IsSimple = V; }
12513b11fd3b52e7b88233c602407c151d07cb093e75Mike Stump  bool isMSAsm() const { return MSAsm; }
12523b11fd3b52e7b88233c602407c151d07cb093e75Mike Stump  void setMSAsm(bool V) { MSAsm = V; }
1253dfab34a696d1dba8622248c31aaf605906cb6109Anders Carlsson
1254458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  //===--- Asm String Analysis ---===//
1255458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner
1256458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  const StringLiteral *getAsmString() const { return AsmStr; }
1257458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  StringLiteral *getAsmString() { return AsmStr; }
1258cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor  void setAsmString(StringLiteral *E) { AsmStr = E; }
1259cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor
1260458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  /// AsmStringPiece - this is part of a decomposed asm string specification
1261458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  /// (for use with the AnalyzeAsmString function below).  An asm string is
1262458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  /// considered to be a concatenation of these parts.
1263458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  class AsmStringPiece {
1264458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  public:
1265458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    enum Kind {
1266458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner      String,  // String in .ll asm string form, "$" -> "$$" and "%%" -> "%".
1267458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner      Operand  // Operand reference, with optional modifier %c4.
1268458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    };
1269458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  private:
1270458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    Kind MyKind;
1271458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    std::string Str;
1272458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    unsigned OperandNo;
1273458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  public:
1274458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    AsmStringPiece(const std::string &S) : MyKind(String), Str(S) {}
1275458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    AsmStringPiece(unsigned OpNo, char Modifier)
1276458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner      : MyKind(Operand), Str(), OperandNo(OpNo) {
1277458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner      Str += Modifier;
1278458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    }
12791eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1280458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    bool isString() const { return MyKind == String; }
1281458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    bool isOperand() const { return MyKind == Operand; }
12821eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1283458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    const std::string &getString() const {
1284458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner      assert(isString());
1285458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner      return Str;
1286458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    }
1287458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner
1288458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    unsigned getOperandNo() const {
1289458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner      assert(isOperand());
1290458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner      return OperandNo;
1291458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    }
12921eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1293458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    /// getModifier - Get the modifier for this operand, if present.  This
1294458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    /// returns '\0' if there was no modifier.
1295458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    char getModifier() const {
1296458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner      assert(isOperand());
1297458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner      return Str[0];
1298458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner    }
1299458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  };
13001eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1301458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  /// AnalyzeAsmString - Analyze the asm string of the current asm, decomposing
1302458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  /// it into pieces.  If the asm string is erroneous, emit errors and return
1303458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  /// true, otherwise return false.  This handles canonicalization and
1304458cd9c8a79b25b87dcea43c9d97a4c59f194799Chris Lattner  /// translation of strings from GCC syntax to LLVM IR syntax, and handles
13051eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  //// flattening of named references like %[foo] to Operand AsmStringPiece's.
1306fb5058ef67c054296c88db18ab1b3717845cb71dChris Lattner  unsigned AnalyzeAsmString(llvm::SmallVectorImpl<AsmStringPiece> &Pieces,
1307fb5058ef67c054296c88db18ab1b3717845cb71dChris Lattner                            ASTContext &C, unsigned &DiagOffs) const;
13081eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
13091eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1310b327793860737d1c103a73aeda8057dd628a101dChris Lattner  //===--- Output operands ---===//
1311b327793860737d1c103a73aeda8057dd628a101dChris Lattner
1312b235fc2cf37621c7fc6511bb2b8788c95f9fb9fcAnders Carlsson  unsigned getNumOutputs() const { return NumOutputs; }
1313ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek
1314ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson  IdentifierInfo *getOutputIdentifier(unsigned i) const {
1315ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    return Names[i];
1316ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  }
1317ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek
1318ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson  llvm::StringRef getOutputName(unsigned i) const {
1319ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson    if (IdentifierInfo *II = getOutputIdentifier(i))
1320ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson      return II->getName();
1321c302113179a1c2b1254224ea9b6f5316ceeb375cSean Hunt
1322ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson    return llvm::StringRef();
1323ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson  }
1324ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson
1325b327793860737d1c103a73aeda8057dd628a101dChris Lattner  /// getOutputConstraint - Return the constraint string for the specified
1326b327793860737d1c103a73aeda8057dd628a101dChris Lattner  /// output operand.  All output constraints are known to be non-empty (either
1327b327793860737d1c103a73aeda8057dd628a101dChris Lattner  /// '=' or '+').
1328acb6bcb442936f3c14126fdd473307c17647cb84Anders Carlsson  llvm::StringRef getOutputConstraint(unsigned i) const;
13291eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1330b327793860737d1c103a73aeda8057dd628a101dChris Lattner  const StringLiteral *getOutputConstraintLiteral(unsigned i) const {
1331ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    return Constraints[i];
1332ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  }
1333b327793860737d1c103a73aeda8057dd628a101dChris Lattner  StringLiteral *getOutputConstraintLiteral(unsigned i) {
1334b327793860737d1c103a73aeda8057dd628a101dChris Lattner    return Constraints[i];
1335b327793860737d1c103a73aeda8057dd628a101dChris Lattner  }
13361eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1337ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  Expr *getOutputExpr(unsigned i);
13381eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1339b327793860737d1c103a73aeda8057dd628a101dChris Lattner  const Expr *getOutputExpr(unsigned i) const {
1340b327793860737d1c103a73aeda8057dd628a101dChris Lattner    return const_cast<AsmStmt*>(this)->getOutputExpr(i);
1341b327793860737d1c103a73aeda8057dd628a101dChris Lattner  }
13421eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1343b327793860737d1c103a73aeda8057dd628a101dChris Lattner  /// isOutputPlusConstraint - Return true if the specified output constraint
1344b327793860737d1c103a73aeda8057dd628a101dChris Lattner  /// is a "+" constraint (which is both an input and an output) or false if it
1345b327793860737d1c103a73aeda8057dd628a101dChris Lattner  /// is an "=" constraint (just an output).
1346b327793860737d1c103a73aeda8057dd628a101dChris Lattner  bool isOutputPlusConstraint(unsigned i) const {
1347b327793860737d1c103a73aeda8057dd628a101dChris Lattner    return getOutputConstraint(i)[0] == '+';
1348b327793860737d1c103a73aeda8057dd628a101dChris Lattner  }
13491eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
135085759278332404e96d4bb89d0e976e46158cd026Chris Lattner  /// getNumPlusOperands - Return the number of output operands that have a "+"
135185759278332404e96d4bb89d0e976e46158cd026Chris Lattner  /// constraint.
135285759278332404e96d4bb89d0e976e46158cd026Chris Lattner  unsigned getNumPlusOperands() const;
13531eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1354b327793860737d1c103a73aeda8057dd628a101dChris Lattner  //===--- Input operands ---===//
13551eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
13561eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  unsigned getNumInputs() const { return NumInputs; }
13571eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1358ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson  IdentifierInfo *getInputIdentifier(unsigned i) const {
1359ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    return Names[i + NumOutputs];
1360ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  }
13611eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1362ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson  llvm::StringRef getInputName(unsigned i) const {
1363ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson    if (IdentifierInfo *II = getInputIdentifier(i))
1364ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson      return II->getName();
1365ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson
1366ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson    return llvm::StringRef();
1367ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson  }
1368ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson
1369b327793860737d1c103a73aeda8057dd628a101dChris Lattner  /// getInputConstraint - Return the specified input constraint.  Unlike output
1370b327793860737d1c103a73aeda8057dd628a101dChris Lattner  /// constraints, these can be empty.
1371acb6bcb442936f3c14126fdd473307c17647cb84Anders Carlsson  llvm::StringRef getInputConstraint(unsigned i) const;
13721eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1373b327793860737d1c103a73aeda8057dd628a101dChris Lattner  const StringLiteral *getInputConstraintLiteral(unsigned i) const {
1374ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    return Constraints[i + NumOutputs];
1375ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  }
1376b327793860737d1c103a73aeda8057dd628a101dChris Lattner  StringLiteral *getInputConstraintLiteral(unsigned i) {
1377ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek    return Constraints[i + NumOutputs];
1378ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  }
13791eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1380ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  Expr *getInputExpr(unsigned i);
1381935f0f01c1ed3c2052b797ac035d57a85b78adc4Chris Lattner  void setInputExpr(unsigned i, Expr *E);
1382935f0f01c1ed3c2052b797ac035d57a85b78adc4Chris Lattner
1383b327793860737d1c103a73aeda8057dd628a101dChris Lattner  const Expr *getInputExpr(unsigned i) const {
1384b327793860737d1c103a73aeda8057dd628a101dChris Lattner    return const_cast<AsmStmt*>(this)->getInputExpr(i);
1385b327793860737d1c103a73aeda8057dd628a101dChris Lattner  }
1386cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor
1387acb6bcb442936f3c14126fdd473307c17647cb84Anders Carlsson  void setOutputsAndInputsAndClobbers(ASTContext &C,
1388ff93dbd887e40588ed55d135037bb9287488b285Anders Carlsson                                      IdentifierInfo **Names,
1389fdba9c069023f686e2608affde02c82131ee1cf8Anders Carlsson                                      StringLiteral **Constraints,
1390fdba9c069023f686e2608affde02c82131ee1cf8Anders Carlsson                                      Stmt **Exprs,
1391fdba9c069023f686e2608affde02c82131ee1cf8Anders Carlsson                                      unsigned NumOutputs,
1392c302113179a1c2b1254224ea9b6f5316ceeb375cSean Hunt                                      unsigned NumInputs,
1393fdba9c069023f686e2608affde02c82131ee1cf8Anders Carlsson                                      StringLiteral **Clobbers,
1394fdba9c069023f686e2608affde02c82131ee1cf8Anders Carlsson                                      unsigned NumClobbers);
1395cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor
139610ca96ae9aed6906c3302403ef1a146a8d4c6b74Chris Lattner  //===--- Other ---===//
13971eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
139810ca96ae9aed6906c3302403ef1a146a8d4c6b74Chris Lattner  /// getNamedOperand - Given a symbolic operand reference like %[foo],
139910ca96ae9aed6906c3302403ef1a146a8d4c6b74Chris Lattner  /// translate this into a numeric value needed to reference the same operand.
140010ca96ae9aed6906c3302403ef1a146a8d4c6b74Chris Lattner  /// This returns -1 if the operand name is invalid.
1401acb6bcb442936f3c14126fdd473307c17647cb84Anders Carlsson  int getNamedOperand(llvm::StringRef SymbolicName) const;
140210ca96ae9aed6906c3302403ef1a146a8d4c6b74Chris Lattner
1403966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson  unsigned getNumClobbers() const { return NumClobbers; }
1404b235fc2cf37621c7fc6511bb2b8788c95f9fb9fcAnders Carlsson  StringLiteral *getClobber(unsigned i) { return Clobbers[i]; }
1405d04c6e23f2e10eeb9936778d67f4a1c4a14cc4f6Anders Carlsson  const StringLiteral *getClobber(unsigned i) const { return Clobbers[i]; }
1406cd7d5a9dc558178ed7a66032f888781b3c592e4fDouglas Gregor
140763c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  SourceRange getSourceRange() const {
1408fe795956194141c91ae555985c9b930595bff43fChris Lattner    return SourceRange(AsmLoc, RParenLoc);
1409fe795956194141c91ae555985c9b930595bff43fChris Lattner  }
14101eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1411fe795956194141c91ae555985c9b930595bff43fChris Lattner  static bool classof(const Stmt *T) {return T->getStmtClass() == AsmStmtClass;}
1412fe795956194141c91ae555985c9b930595bff43fChris Lattner  static bool classof(const AsmStmt *) { return true; }
14131eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1414ec2f7dccb1f30ae137f74e764e44c2332b0a2ec0Ted Kremenek  // Input expr iterators.
14151eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1416ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  typedef ExprIterator inputs_iterator;
1417ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  typedef ConstExprIterator const_inputs_iterator;
14181eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1419ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  inputs_iterator begin_inputs() {
1420966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson    return &Exprs[0] + NumOutputs;
1421ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  }
14221eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1423ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  inputs_iterator end_inputs() {
1424966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson    return &Exprs[0] + NumOutputs + NumInputs;
1425ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  }
14261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1427ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  const_inputs_iterator begin_inputs() const {
1428966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson    return &Exprs[0] + NumOutputs;
1429ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  }
14301eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1431ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  const_inputs_iterator end_inputs() const {
1432966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson    return &Exprs[0] + NumOutputs + NumInputs;
1433d59a5bd0ab7821a643c540df8c84c70fef76a1c2Ted Kremenek  }
14341eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1435ec2f7dccb1f30ae137f74e764e44c2332b0a2ec0Ted Kremenek  // Output expr iterators.
14361eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1437ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  typedef ExprIterator outputs_iterator;
1438ce2fc3a343ea6098a96d587071cee7299f11957aTed Kremenek  typedef ConstExprIterator const_outputs_iterator;
14391eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1440d59a5bd0ab7821a643c540df8c84c70fef76a1c2Ted Kremenek  outputs_iterator begin_outputs() {
1441966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson    return &Exprs[0];
1442d59a5bd0ab7821a643c540df8c84c70fef76a1c2Ted Kremenek  }
1443d59a5bd0ab7821a643c540df8c84c70fef76a1c2Ted Kremenek  outputs_iterator end_outputs() {
1444966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson    return &Exprs[0] + NumOutputs;
1445d59a5bd0ab7821a643c540df8c84c70fef76a1c2Ted Kremenek  }
14461eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1447d59a5bd0ab7821a643c540df8c84c70fef76a1c2Ted Kremenek  const_outputs_iterator begin_outputs() const {
1448966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson    return &Exprs[0];
1449d59a5bd0ab7821a643c540df8c84c70fef76a1c2Ted Kremenek  }
1450d59a5bd0ab7821a643c540df8c84c70fef76a1c2Ted Kremenek  const_outputs_iterator end_outputs() const {
1451966146e89141804ff6492739a2a6e6592ca671c7Anders Carlsson    return &Exprs[0] + NumOutputs;
1452d59a5bd0ab7821a643c540df8c84c70fef76a1c2Ted Kremenek  }
14531eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
145463c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  child_range children() {
145563c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall    return child_range(&Exprs[0], &Exprs[0] + NumOutputs + NumInputs);
145663c00d7f35fa060c0a446c9df3a4402d9c7757feJohn McCall  }
1457fe795956194141c91ae555985c9b930595bff43fChris Lattner};
145878492dae00fb85e0da0f966df4745edafdafb66cTed Kremenek
145928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegleyclass SEHExceptStmt : public Stmt {
146028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceLocation  Loc;
146128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  Stmt           *Children[2];
146228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
146328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  enum { FILTER_EXPR, BLOCK };
146428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
146528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SEHExceptStmt(SourceLocation Loc,
146628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                Expr *FilterExpr,
146728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                Stmt *Block);
146828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
146928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegleypublic:
147028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  static SEHExceptStmt* Create(ASTContext &C,
147128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                               SourceLocation ExceptLoc,
147228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                               Expr *FilterExpr,
147328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                               Stmt *Block);
147428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceRange getSourceRange() const {
147528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley    return SourceRange(getExceptLoc(), getEndLoc());
147628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  }
147728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
147828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceLocation getExceptLoc() const { return Loc; }
147928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceLocation getEndLoc() const { return getBlock()->getLocEnd(); }
148028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
148128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  Expr *getFilterExpr() const { return reinterpret_cast<Expr*>(Children[FILTER_EXPR]); }
148228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  CompoundStmt *getBlock() const { return llvm::cast<CompoundStmt>(Children[BLOCK]); }
148328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
148428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  child_range children() {
148528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley    return child_range(Children,Children+2);
148628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  }
148728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
148828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  static bool classof(const Stmt *T) {
148928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley    return T->getStmtClass() == SEHExceptStmtClass;
149028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  }
149128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
149228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  static bool classof(SEHExceptStmt *) { return true; }
149328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
149428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley};
149528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
149628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegleyclass SEHFinallyStmt : public Stmt {
149728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceLocation  Loc;
149828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  Stmt           *Block;
149928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
150028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SEHFinallyStmt(SourceLocation Loc,
150128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                 Stmt *Block);
150228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
150328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegleypublic:
150428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  static SEHFinallyStmt* Create(ASTContext &C,
150528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                                SourceLocation FinallyLoc,
150628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                                Stmt *Block);
150728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
150828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceRange getSourceRange() const {
150928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley    return SourceRange(getFinallyLoc(), getEndLoc());
151028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  }
151128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
151228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceLocation getFinallyLoc() const { return Loc; }
151328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceLocation getEndLoc() const { return Block->getLocEnd(); }
151428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
151528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  CompoundStmt *getBlock() const { return llvm::cast<CompoundStmt>(Block); }
151628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
151728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  child_range children() {
151828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley    return child_range(&Block,&Block+1);
151928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  }
152028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
152128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  static bool classof(const Stmt *T) {
152228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley    return T->getStmtClass() == SEHFinallyStmtClass;
152328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  }
152428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
152528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  static bool classof(SEHFinallyStmt *) { return true; }
152628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
152728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley};
152828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
152928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegleyclass SEHTryStmt : public Stmt {
153028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  bool            IsCXXTry;
153128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceLocation  TryLoc;
153228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  Stmt           *Children[2];
153328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
153428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  enum { TRY = 0, HANDLER = 1 };
153528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
153628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SEHTryStmt(bool isCXXTry, // true if 'try' otherwise '__try'
153728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley             SourceLocation TryLoc,
153828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley             Stmt *TryBlock,
153928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley             Stmt *Handler);
154028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
154128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegleypublic:
154228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  static SEHTryStmt* Create(ASTContext &C,
154328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                            bool isCXXTry,
154428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                            SourceLocation TryLoc,
154528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                            Stmt *TryBlock,
154628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley                            Stmt *Handler);
154728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
154828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceRange getSourceRange() const {
154928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley    return SourceRange(getTryLoc(), getEndLoc());
155028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  }
155128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
155228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceLocation getTryLoc() const { return TryLoc; }
155328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SourceLocation getEndLoc() const { return Children[HANDLER]->getLocEnd(); }
155428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
155528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  bool getIsCXXTry() const { return IsCXXTry; }
155628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  CompoundStmt* getTryBlock() const { return llvm::cast<CompoundStmt>(Children[TRY]); }
155728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  Stmt *getHandler() const { return Children[HANDLER]; }
155828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
155928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  /// Returns 0 if not defined
156028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SEHExceptStmt  *getExceptHandler() const;
156128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  SEHFinallyStmt *getFinallyHandler() const;
156228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
156328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  child_range children() {
156428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley    return child_range(Children,Children+2);
156528bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  }
156628bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
156728bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  static bool classof(const Stmt *T) {
156828bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley    return T->getStmtClass() == SEHTryStmtClass;
156928bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  }
157028bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
157128bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley  static bool classof(SEHTryStmt *) { return true; }
157228bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
157328bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley};
157428bbe4b8acc338476fe0825769b41fb32b423c72John Wiegley
15755f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}  // end namespace clang
15765f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
15775f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#endif
1578