Expr.h revision 11ab79030938209f50691acae0ddb65e72a58ca9
1//===--- Expr.h - Classes for representing expressions ----------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10//  This file defines the Expr interface and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_AST_EXPR_H
15#define LLVM_CLANG_AST_EXPR_H
16
17#include "clang/AST/APValue.h"
18#include "clang/AST/Stmt.h"
19#include "clang/AST/Type.h"
20#include "clang/AST/DeclAccessPair.h"
21#include "clang/AST/OperationKinds.h"
22#include "clang/AST/ASTVector.h"
23#include "clang/AST/UsuallyTinyPtrVector.h"
24#include "llvm/ADT/APSInt.h"
25#include "llvm/ADT/APFloat.h"
26#include "llvm/ADT/SmallVector.h"
27#include "llvm/ADT/StringRef.h"
28#include <vector>
29
30namespace clang {
31  class ASTContext;
32  class APValue;
33  class Decl;
34  class IdentifierInfo;
35  class ParmVarDecl;
36  class NamedDecl;
37  class ValueDecl;
38  class BlockDecl;
39  class CXXBaseSpecifier;
40  class CXXOperatorCallExpr;
41  class CXXMemberCallExpr;
42  class TemplateArgumentLoc;
43  class TemplateArgumentListInfo;
44
45/// \brief A simple array of base specifiers.
46typedef llvm::SmallVector<CXXBaseSpecifier*, 4> CXXCastPath;
47
48/// Expr - This represents one expression.  Note that Expr's are subclasses of
49/// Stmt.  This allows an expression to be transparently used any place a Stmt
50/// is required.
51///
52class Expr : public Stmt {
53  QualType TR;
54
55  virtual void ANCHOR(); // key function.
56
57protected:
58  Expr(StmtClass SC, QualType T, bool TD, bool VD) : Stmt(SC) {
59    ExprBits.TypeDependent = TD;
60    ExprBits.ValueDependent = VD;
61    ExprBits.ValueKind = 0;
62    setType(T);
63  }
64
65  /// \brief Construct an empty expression.
66  explicit Expr(StmtClass SC, EmptyShell) : Stmt(SC) { }
67
68  /// getValueKind - The value kind that this cast produces.
69  ExprValueKind getValueKind() const {
70    return static_cast<ExprValueKind>(ExprBits.ValueKind);
71  }
72
73  /// setValueKind - Set the value kind this cast produces.
74  void setValueKind(ExprValueKind Cat) { ExprBits.ValueKind = Cat; }
75
76public:
77  QualType getType() const { return TR; }
78  void setType(QualType t) {
79    // In C++, the type of an expression is always adjusted so that it
80    // will not have reference type an expression will never have
81    // reference type (C++ [expr]p6). Use
82    // QualType::getNonReferenceType() to retrieve the non-reference
83    // type. Additionally, inspect Expr::isLvalue to determine whether
84    // an expression that is adjusted in this manner should be
85    // considered an lvalue.
86    assert((t.isNull() || !t->isReferenceType()) &&
87           "Expressions can't have reference type");
88
89    TR = t;
90  }
91
92  /// isValueDependent - Determines whether this expression is
93  /// value-dependent (C++ [temp.dep.constexpr]). For example, the
94  /// array bound of "Chars" in the following example is
95  /// value-dependent.
96  /// @code
97  /// template<int Size, char (&Chars)[Size]> struct meta_string;
98  /// @endcode
99  bool isValueDependent() const { return ExprBits.ValueDependent; }
100
101  /// \brief Set whether this expression is value-dependent or not.
102  void setValueDependent(bool VD) { ExprBits.ValueDependent = VD; }
103
104  /// isTypeDependent - Determines whether this expression is
105  /// type-dependent (C++ [temp.dep.expr]), which means that its type
106  /// could change from one template instantiation to the next. For
107  /// example, the expressions "x" and "x + y" are type-dependent in
108  /// the following code, but "y" is not type-dependent:
109  /// @code
110  /// template<typename T>
111  /// void add(T x, int y) {
112  ///   x + y;
113  /// }
114  /// @endcode
115  bool isTypeDependent() const { return ExprBits.TypeDependent; }
116
117  /// \brief Set whether this expression is type-dependent or not.
118  void setTypeDependent(bool TD) { ExprBits.TypeDependent = TD; }
119
120  /// SourceLocation tokens are not useful in isolation - they are low level
121  /// value objects created/interpreted by SourceManager. We assume AST
122  /// clients will have a pointer to the respective SourceManager.
123  virtual SourceRange getSourceRange() const = 0;
124
125  /// getExprLoc - Return the preferred location for the arrow when diagnosing
126  /// a problem with a generic expression.
127  virtual SourceLocation getExprLoc() const { return getLocStart(); }
128
129  /// isUnusedResultAWarning - Return true if this immediate expression should
130  /// be warned about if the result is unused.  If so, fill in Loc and Ranges
131  /// with location to warn on and the source range[s] to report with the
132  /// warning.
133  bool isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
134                              SourceRange &R2, ASTContext &Ctx) const;
135
136  /// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or
137  /// incomplete type other than void. Nonarray expressions that can be lvalues:
138  ///  - name, where name must be a variable
139  ///  - e[i]
140  ///  - (e), where e must be an lvalue
141  ///  - e.name, where e must be an lvalue
142  ///  - e->name
143  ///  - *e, the type of e cannot be a function type
144  ///  - string-constant
145  ///  - reference type [C++ [expr]]
146  ///  - b ? x : y, where x and y are lvalues of suitable types [C++]
147  ///
148  enum isLvalueResult {
149    LV_Valid,
150    LV_NotObjectType,
151    LV_IncompleteVoidType,
152    LV_DuplicateVectorComponents,
153    LV_InvalidExpression,
154    LV_MemberFunction,
155    LV_SubObjCPropertySetting,
156    LV_ClassTemporary
157  };
158  isLvalueResult isLvalue(ASTContext &Ctx) const;
159
160  /// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
161  /// does not have an incomplete type, does not have a const-qualified type,
162  /// and if it is a structure or union, does not have any member (including,
163  /// recursively, any member or element of all contained aggregates or unions)
164  /// with a const-qualified type.
165  ///
166  /// \param Loc [in] [out] - A source location which *may* be filled
167  /// in with the location of the expression making this a
168  /// non-modifiable lvalue, if specified.
169  enum isModifiableLvalueResult {
170    MLV_Valid,
171    MLV_NotObjectType,
172    MLV_IncompleteVoidType,
173    MLV_DuplicateVectorComponents,
174    MLV_InvalidExpression,
175    MLV_LValueCast,           // Specialized form of MLV_InvalidExpression.
176    MLV_IncompleteType,
177    MLV_ConstQualified,
178    MLV_ArrayType,
179    MLV_NotBlockQualified,
180    MLV_ReadonlyProperty,
181    MLV_NoSetterProperty,
182    MLV_MemberFunction,
183    MLV_SubObjCPropertySetting,
184    MLV_ClassTemporary
185  };
186  isModifiableLvalueResult isModifiableLvalue(ASTContext &Ctx,
187                                              SourceLocation *Loc = 0) const;
188
189  /// \brief The return type of classify(). Represents the C++0x expression
190  ///        taxonomy.
191  class Classification {
192  public:
193    /// \brief The various classification results. Most of these mean prvalue.
194    enum Kinds {
195      CL_LValue,
196      CL_XValue,
197      CL_Function, // Functions cannot be lvalues in C.
198      CL_Void, // Void cannot be an lvalue in C.
199      CL_DuplicateVectorComponents, // A vector shuffle with dupes.
200      CL_MemberFunction, // An expression referring to a member function
201      CL_SubObjCPropertySetting,
202      CL_ClassTemporary, // A prvalue of class type
203      CL_PRValue // A prvalue for any other reason, of any other type
204    };
205    /// \brief The results of modification testing.
206    enum ModifiableType {
207      CM_Untested, // testModifiable was false.
208      CM_Modifiable,
209      CM_RValue, // Not modifiable because it's an rvalue
210      CM_Function, // Not modifiable because it's a function; C++ only
211      CM_LValueCast, // Same as CM_RValue, but indicates GCC cast-as-lvalue ext
212      CM_NotBlockQualified, // Not captured in the closure
213      CM_NoSetterProperty,// Implicit assignment to ObjC property without setter
214      CM_ConstQualified,
215      CM_ArrayType,
216      CM_IncompleteType
217    };
218
219  private:
220    friend class Expr;
221
222    unsigned short Kind;
223    unsigned short Modifiable;
224
225    explicit Classification(Kinds k, ModifiableType m)
226      : Kind(k), Modifiable(m)
227    {}
228
229  public:
230    Classification() {}
231
232    Kinds getKind() const { return static_cast<Kinds>(Kind); }
233    ModifiableType getModifiable() const {
234      assert(Modifiable != CM_Untested && "Did not test for modifiability.");
235      return static_cast<ModifiableType>(Modifiable);
236    }
237    bool isLValue() const { return Kind == CL_LValue; }
238    bool isXValue() const { return Kind == CL_XValue; }
239    bool isGLValue() const { return Kind <= CL_XValue; }
240    bool isPRValue() const { return Kind >= CL_Function; }
241    bool isRValue() const { return Kind >= CL_XValue; }
242    bool isModifiable() const { return getModifiable() == CM_Modifiable; }
243  };
244  /// \brief Classify - Classify this expression according to the C++0x
245  ///        expression taxonomy.
246  ///
247  /// C++0x defines ([basic.lval]) a new taxonomy of expressions to replace the
248  /// old lvalue vs rvalue. This function determines the type of expression this
249  /// is. There are three expression types:
250  /// - lvalues are classical lvalues as in C++03.
251  /// - prvalues are equivalent to rvalues in C++03.
252  /// - xvalues are expressions yielding unnamed rvalue references, e.g. a
253  ///   function returning an rvalue reference.
254  /// lvalues and xvalues are collectively referred to as glvalues, while
255  /// prvalues and xvalues together form rvalues.
256  Classification Classify(ASTContext &Ctx) const {
257    return ClassifyImpl(Ctx, 0);
258  }
259
260  /// \brief ClassifyModifiable - Classify this expression according to the
261  ///        C++0x expression taxonomy, and see if it is valid on the left side
262  ///        of an assignment.
263  ///
264  /// This function extends classify in that it also tests whether the
265  /// expression is modifiable (C99 6.3.2.1p1).
266  /// \param Loc A source location that might be filled with a relevant location
267  ///            if the expression is not modifiable.
268  Classification ClassifyModifiable(ASTContext &Ctx, SourceLocation &Loc) const{
269    return ClassifyImpl(Ctx, &Loc);
270  }
271
272private:
273  Classification ClassifyImpl(ASTContext &Ctx, SourceLocation *Loc) const;
274
275public:
276
277  /// \brief If this expression refers to a bit-field, retrieve the
278  /// declaration of that bit-field.
279  FieldDecl *getBitField();
280
281  const FieldDecl *getBitField() const {
282    return const_cast<Expr*>(this)->getBitField();
283  }
284
285  /// \brief Returns whether this expression refers to a vector element.
286  bool refersToVectorElement() const;
287
288  /// isKnownToHaveBooleanValue - Return true if this is an integer expression
289  /// that is known to return 0 or 1.  This happens for _Bool/bool expressions
290  /// but also int expressions which are produced by things like comparisons in
291  /// C.
292  bool isKnownToHaveBooleanValue() const;
293
294  /// isIntegerConstantExpr - Return true if this expression is a valid integer
295  /// constant expression, and, if so, return its value in Result.  If not a
296  /// valid i-c-e, return false and fill in Loc (if specified) with the location
297  /// of the invalid expression.
298  bool isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
299                             SourceLocation *Loc = 0,
300                             bool isEvaluated = true) const;
301  bool isIntegerConstantExpr(ASTContext &Ctx, SourceLocation *Loc = 0) const {
302    llvm::APSInt X;
303    return isIntegerConstantExpr(X, Ctx, Loc);
304  }
305  /// isConstantInitializer - Returns true if this expression is a constant
306  /// initializer, which can be emitted at compile-time.
307  bool isConstantInitializer(ASTContext &Ctx, bool ForRef) const;
308
309  /// EvalResult is a struct with detailed info about an evaluated expression.
310  struct EvalResult {
311    /// Val - This is the value the expression can be folded to.
312    APValue Val;
313
314    /// HasSideEffects - Whether the evaluated expression has side effects.
315    /// For example, (f() && 0) can be folded, but it still has side effects.
316    bool HasSideEffects;
317
318    /// Diag - If the expression is unfoldable, then Diag contains a note
319    /// diagnostic indicating why it's not foldable. DiagLoc indicates a caret
320    /// position for the error, and DiagExpr is the expression that caused
321    /// the error.
322    /// If the expression is foldable, but not an integer constant expression,
323    /// Diag contains a note diagnostic that describes why it isn't an integer
324    /// constant expression. If the expression *is* an integer constant
325    /// expression, then Diag will be zero.
326    unsigned Diag;
327    const Expr *DiagExpr;
328    SourceLocation DiagLoc;
329
330    EvalResult() : HasSideEffects(false), Diag(0), DiagExpr(0) {}
331
332    // isGlobalLValue - Return true if the evaluated lvalue expression
333    // is global.
334    bool isGlobalLValue() const;
335    // hasSideEffects - Return true if the evaluated expression has
336    // side effects.
337    bool hasSideEffects() const {
338      return HasSideEffects;
339    }
340  };
341
342  /// Evaluate - Return true if this is a constant which we can fold using
343  /// any crazy technique (that has nothing to do with language standards) that
344  /// we want to.  If this function returns true, it returns the folded constant
345  /// in Result.
346  bool Evaluate(EvalResult &Result, ASTContext &Ctx) const;
347
348  /// EvaluateAsBooleanCondition - Return true if this is a constant
349  /// which we we can fold and convert to a boolean condition using
350  /// any crazy technique that we want to.
351  bool EvaluateAsBooleanCondition(bool &Result, ASTContext &Ctx) const;
352
353  /// isEvaluatable - Call Evaluate to see if this expression can be constant
354  /// folded, but discard the result.
355  bool isEvaluatable(ASTContext &Ctx) const;
356
357  /// HasSideEffects - This routine returns true for all those expressions
358  /// which must be evaluated each time and must not be optimized away
359  /// or evaluated at compile time. Example is a function call, volatile
360  /// variable read.
361  bool HasSideEffects(ASTContext &Ctx) const;
362
363  /// EvaluateAsInt - Call Evaluate and return the folded integer. This
364  /// must be called on an expression that constant folds to an integer.
365  llvm::APSInt EvaluateAsInt(ASTContext &Ctx) const;
366
367  /// EvaluateAsLValue - Evaluate an expression to see if it's a lvalue
368  /// with link time known address.
369  bool EvaluateAsLValue(EvalResult &Result, ASTContext &Ctx) const;
370
371  /// EvaluateAsLValue - Evaluate an expression to see if it's a lvalue.
372  bool EvaluateAsAnyLValue(EvalResult &Result, ASTContext &Ctx) const;
373
374  /// \brief Enumeration used to describe how \c isNullPointerConstant()
375  /// should cope with value-dependent expressions.
376  enum NullPointerConstantValueDependence {
377    /// \brief Specifies that the expression should never be value-dependent.
378    NPC_NeverValueDependent = 0,
379
380    /// \brief Specifies that a value-dependent expression of integral or
381    /// dependent type should be considered a null pointer constant.
382    NPC_ValueDependentIsNull,
383
384    /// \brief Specifies that a value-dependent expression should be considered
385    /// to never be a null pointer constant.
386    NPC_ValueDependentIsNotNull
387  };
388
389  /// isNullPointerConstant - C99 6.3.2.3p3 -  Return true if this is either an
390  /// integer constant expression with the value zero, or if this is one that is
391  /// cast to void*.
392  bool isNullPointerConstant(ASTContext &Ctx,
393                             NullPointerConstantValueDependence NPC) const;
394
395  /// isOBJCGCCandidate - Return true if this expression may be used in a read/
396  /// write barrier.
397  bool isOBJCGCCandidate(ASTContext &Ctx) const;
398
399  /// \brief Returns true if this expression is a bound member function.
400  bool isBoundMemberFunction(ASTContext &Ctx) const;
401
402  /// \brief Result type of CanThrow().
403  enum CanThrowResult {
404    CT_Cannot,
405    CT_Dependent,
406    CT_Can
407  };
408  /// \brief Test if this expression, if evaluated, might throw, according to
409  ///        the rules of C++ [expr.unary.noexcept].
410  CanThrowResult CanThrow(ASTContext &C) const;
411
412  /// IgnoreParens - Ignore parentheses.  If this Expr is a ParenExpr, return
413  ///  its subexpression.  If that subexpression is also a ParenExpr,
414  ///  then this method recursively returns its subexpression, and so forth.
415  ///  Otherwise, the method returns the current Expr.
416  Expr *IgnoreParens();
417
418  /// IgnoreParenCasts - Ignore parentheses and casts.  Strip off any ParenExpr
419  /// or CastExprs, returning their operand.
420  Expr *IgnoreParenCasts();
421
422  /// IgnoreParenImpCasts - Ignore parentheses and implicit casts.  Strip off any
423  /// ParenExpr or ImplicitCastExprs, returning their operand.
424  Expr *IgnoreParenImpCasts();
425
426  const Expr *IgnoreParenImpCasts() const {
427    return const_cast<Expr*>(this)->IgnoreParenImpCasts();
428  }
429
430  /// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
431  /// value (including ptr->int casts of the same size).  Strip off any
432  /// ParenExpr or CastExprs, returning their operand.
433  Expr *IgnoreParenNoopCasts(ASTContext &Ctx);
434
435  /// \brief Determine whether this expression is a default function argument.
436  ///
437  /// Default arguments are implicitly generated in the abstract syntax tree
438  /// by semantic analysis for function calls, object constructions, etc. in
439  /// C++. Default arguments are represented by \c CXXDefaultArgExpr nodes;
440  /// this routine also looks through any implicit casts to determine whether
441  /// the expression is a default argument.
442  bool isDefaultArgument() const;
443
444  /// \brief Determine whether the result of this expression is a
445  /// temporary object of the given class type.
446  bool isTemporaryObject(ASTContext &Ctx, const CXXRecordDecl *TempTy) const;
447
448  const Expr *IgnoreParens() const {
449    return const_cast<Expr*>(this)->IgnoreParens();
450  }
451  const Expr *IgnoreParenCasts() const {
452    return const_cast<Expr*>(this)->IgnoreParenCasts();
453  }
454  const Expr *IgnoreParenNoopCasts(ASTContext &Ctx) const {
455    return const_cast<Expr*>(this)->IgnoreParenNoopCasts(Ctx);
456  }
457
458  static bool hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs);
459  static bool hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs);
460
461  static bool classof(const Stmt *T) {
462    return T->getStmtClass() >= firstExprConstant &&
463           T->getStmtClass() <= lastExprConstant;
464  }
465  static bool classof(const Expr *) { return true; }
466};
467
468
469//===----------------------------------------------------------------------===//
470// Primary Expressions.
471//===----------------------------------------------------------------------===//
472
473/// \brief Represents the qualifier that may precede a C++ name, e.g., the
474/// "std::" in "std::sort".
475struct NameQualifier {
476  /// \brief The nested name specifier.
477  NestedNameSpecifier *NNS;
478
479  /// \brief The source range covered by the nested name specifier.
480  SourceRange Range;
481};
482
483/// \brief Represents an explicit template argument list in C++, e.g.,
484/// the "<int>" in "sort<int>".
485struct ExplicitTemplateArgumentList {
486  /// \brief The source location of the left angle bracket ('<');
487  SourceLocation LAngleLoc;
488
489  /// \brief The source location of the right angle bracket ('>');
490  SourceLocation RAngleLoc;
491
492  /// \brief The number of template arguments in TemplateArgs.
493  /// The actual template arguments (if any) are stored after the
494  /// ExplicitTemplateArgumentList structure.
495  unsigned NumTemplateArgs;
496
497  /// \brief Retrieve the template arguments
498  TemplateArgumentLoc *getTemplateArgs() {
499    return reinterpret_cast<TemplateArgumentLoc *> (this + 1);
500  }
501
502  /// \brief Retrieve the template arguments
503  const TemplateArgumentLoc *getTemplateArgs() const {
504    return reinterpret_cast<const TemplateArgumentLoc *> (this + 1);
505  }
506
507  void initializeFrom(const TemplateArgumentListInfo &List);
508  void copyInto(TemplateArgumentListInfo &List) const;
509  static std::size_t sizeFor(unsigned NumTemplateArgs);
510  static std::size_t sizeFor(const TemplateArgumentListInfo &List);
511};
512
513/// DeclRefExpr - [C99 6.5.1p2] - A reference to a declared variable, function,
514/// enum, etc.
515class DeclRefExpr : public Expr {
516  enum {
517    // Flag on DecoratedD that specifies when this declaration reference
518    // expression has a C++ nested-name-specifier.
519    HasQualifierFlag = 0x01,
520    // Flag on DecoratedD that specifies when this declaration reference
521    // expression has an explicit C++ template argument list.
522    HasExplicitTemplateArgumentListFlag = 0x02
523  };
524
525  // DecoratedD - The declaration that we are referencing, plus two bits to
526  // indicate whether (1) the declaration's name was explicitly qualified and
527  // (2) the declaration's name was followed by an explicit template
528  // argument list.
529  llvm::PointerIntPair<ValueDecl *, 2> DecoratedD;
530
531  // Loc - The location of the declaration name itself.
532  SourceLocation Loc;
533
534  /// DNLoc - Provides source/type location info for the
535  /// declaration name embedded in DecoratedD.
536  DeclarationNameLoc DNLoc;
537
538  /// \brief Retrieve the qualifier that preceded the declaration name, if any.
539  NameQualifier *getNameQualifier() {
540    if ((DecoratedD.getInt() & HasQualifierFlag) == 0)
541      return 0;
542
543    return reinterpret_cast<NameQualifier *> (this + 1);
544  }
545
546  /// \brief Retrieve the qualifier that preceded the member name, if any.
547  const NameQualifier *getNameQualifier() const {
548    return const_cast<DeclRefExpr *>(this)->getNameQualifier();
549  }
550
551  DeclRefExpr(NestedNameSpecifier *Qualifier, SourceRange QualifierRange,
552              ValueDecl *D, SourceLocation NameLoc,
553              const TemplateArgumentListInfo *TemplateArgs,
554              QualType T);
555
556  DeclRefExpr(NestedNameSpecifier *Qualifier, SourceRange QualifierRange,
557              ValueDecl *D, const DeclarationNameInfo &NameInfo,
558              const TemplateArgumentListInfo *TemplateArgs,
559              QualType T);
560
561  /// \brief Construct an empty declaration reference expression.
562  explicit DeclRefExpr(EmptyShell Empty)
563    : Expr(DeclRefExprClass, Empty) { }
564
565  /// \brief Computes the type- and value-dependence flags for this
566  /// declaration reference expression.
567  void computeDependence();
568
569public:
570  DeclRefExpr(ValueDecl *d, QualType t, SourceLocation l) :
571    Expr(DeclRefExprClass, t, false, false), DecoratedD(d, 0), Loc(l) {
572    computeDependence();
573  }
574
575  static DeclRefExpr *Create(ASTContext &Context,
576                             NestedNameSpecifier *Qualifier,
577                             SourceRange QualifierRange,
578                             ValueDecl *D,
579                             SourceLocation NameLoc,
580                             QualType T,
581                             const TemplateArgumentListInfo *TemplateArgs = 0);
582
583  static DeclRefExpr *Create(ASTContext &Context,
584                             NestedNameSpecifier *Qualifier,
585                             SourceRange QualifierRange,
586                             ValueDecl *D,
587                             const DeclarationNameInfo &NameInfo,
588                             QualType T,
589                             const TemplateArgumentListInfo *TemplateArgs = 0);
590
591  /// \brief Construct an empty declaration reference expression.
592  static DeclRefExpr *CreateEmpty(ASTContext &Context,
593                                  bool HasQualifier, unsigned NumTemplateArgs);
594
595  ValueDecl *getDecl() { return DecoratedD.getPointer(); }
596  const ValueDecl *getDecl() const { return DecoratedD.getPointer(); }
597  void setDecl(ValueDecl *NewD) { DecoratedD.setPointer(NewD); }
598
599  DeclarationNameInfo getNameInfo() const {
600    return DeclarationNameInfo(getDecl()->getDeclName(), Loc, DNLoc);
601  }
602
603  SourceLocation getLocation() const { return Loc; }
604  void setLocation(SourceLocation L) { Loc = L; }
605  virtual SourceRange getSourceRange() const;
606
607  /// \brief Determine whether this declaration reference was preceded by a
608  /// C++ nested-name-specifier, e.g., \c N::foo.
609  bool hasQualifier() const { return DecoratedD.getInt() & HasQualifierFlag; }
610
611  /// \brief If the name was qualified, retrieves the source range of
612  /// the nested-name-specifier that precedes the name. Otherwise,
613  /// returns an empty source range.
614  SourceRange getQualifierRange() const {
615    if (!hasQualifier())
616      return SourceRange();
617
618    return getNameQualifier()->Range;
619  }
620
621  /// \brief If the name was qualified, retrieves the nested-name-specifier
622  /// that precedes the name. Otherwise, returns NULL.
623  NestedNameSpecifier *getQualifier() const {
624    if (!hasQualifier())
625      return 0;
626
627    return getNameQualifier()->NNS;
628  }
629
630  bool hasExplicitTemplateArgs() const {
631    return (DecoratedD.getInt() & HasExplicitTemplateArgumentListFlag);
632  }
633
634  /// \brief Retrieve the explicit template argument list that followed the
635  /// member template name.
636  ExplicitTemplateArgumentList &getExplicitTemplateArgs() {
637    assert(hasExplicitTemplateArgs());
638
639    if ((DecoratedD.getInt() & HasQualifierFlag) == 0)
640      return *reinterpret_cast<ExplicitTemplateArgumentList *>(this + 1);
641
642    return *reinterpret_cast<ExplicitTemplateArgumentList *>(
643                                                      getNameQualifier() + 1);
644  }
645
646  /// \brief Retrieve the explicit template argument list that followed the
647  /// member template name.
648  const ExplicitTemplateArgumentList &getExplicitTemplateArgs() const {
649    return const_cast<DeclRefExpr *>(this)->getExplicitTemplateArgs();
650  }
651
652  /// \brief Retrieves the optional explicit template arguments.
653  /// This points to the same data as getExplicitTemplateArgs(), but
654  /// returns null if there are no explicit template arguments.
655  const ExplicitTemplateArgumentList *getExplicitTemplateArgsOpt() const {
656    if (!hasExplicitTemplateArgs()) return 0;
657    return &getExplicitTemplateArgs();
658  }
659
660  /// \brief Copies the template arguments (if present) into the given
661  /// structure.
662  void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const {
663    if (hasExplicitTemplateArgs())
664      getExplicitTemplateArgs().copyInto(List);
665  }
666
667  /// \brief Retrieve the location of the left angle bracket following the
668  /// member name ('<'), if any.
669  SourceLocation getLAngleLoc() const {
670    if (!hasExplicitTemplateArgs())
671      return SourceLocation();
672
673    return getExplicitTemplateArgs().LAngleLoc;
674  }
675
676  /// \brief Retrieve the template arguments provided as part of this
677  /// template-id.
678  const TemplateArgumentLoc *getTemplateArgs() const {
679    if (!hasExplicitTemplateArgs())
680      return 0;
681
682    return getExplicitTemplateArgs().getTemplateArgs();
683  }
684
685  /// \brief Retrieve the number of template arguments provided as part of this
686  /// template-id.
687  unsigned getNumTemplateArgs() const {
688    if (!hasExplicitTemplateArgs())
689      return 0;
690
691    return getExplicitTemplateArgs().NumTemplateArgs;
692  }
693
694  /// \brief Retrieve the location of the right angle bracket following the
695  /// template arguments ('>').
696  SourceLocation getRAngleLoc() const {
697    if (!hasExplicitTemplateArgs())
698      return SourceLocation();
699
700    return getExplicitTemplateArgs().RAngleLoc;
701  }
702
703  static bool classof(const Stmt *T) {
704    return T->getStmtClass() == DeclRefExprClass;
705  }
706  static bool classof(const DeclRefExpr *) { return true; }
707
708  // Iterators
709  virtual child_iterator child_begin();
710  virtual child_iterator child_end();
711
712  friend class ASTStmtReader;
713  friend class ASTStmtWriter;
714};
715
716/// PredefinedExpr - [C99 6.4.2.2] - A predefined identifier such as __func__.
717class PredefinedExpr : public Expr {
718public:
719  enum IdentType {
720    Func,
721    Function,
722    PrettyFunction,
723    /// PrettyFunctionNoVirtual - The same as PrettyFunction, except that the
724    /// 'virtual' keyword is omitted for virtual member functions.
725    PrettyFunctionNoVirtual
726  };
727
728private:
729  SourceLocation Loc;
730  IdentType Type;
731public:
732  PredefinedExpr(SourceLocation l, QualType type, IdentType IT)
733    : Expr(PredefinedExprClass, type, type->isDependentType(),
734           type->isDependentType()), Loc(l), Type(IT) {}
735
736  /// \brief Construct an empty predefined expression.
737  explicit PredefinedExpr(EmptyShell Empty)
738    : Expr(PredefinedExprClass, Empty) { }
739
740  IdentType getIdentType() const { return Type; }
741  void setIdentType(IdentType IT) { Type = IT; }
742
743  SourceLocation getLocation() const { return Loc; }
744  void setLocation(SourceLocation L) { Loc = L; }
745
746  static std::string ComputeName(IdentType IT, const Decl *CurrentDecl);
747
748  virtual SourceRange getSourceRange() const { return SourceRange(Loc); }
749
750  static bool classof(const Stmt *T) {
751    return T->getStmtClass() == PredefinedExprClass;
752  }
753  static bool classof(const PredefinedExpr *) { return true; }
754
755  // Iterators
756  virtual child_iterator child_begin();
757  virtual child_iterator child_end();
758};
759
760/// \brief Used by IntegerLiteral/FloatingLiteral to store the numeric without
761/// leaking memory.
762///
763/// For large floats/integers, APFloat/APInt will allocate memory from the heap
764/// to represent these numbers.  Unfortunately, when we use a BumpPtrAllocator
765/// to allocate IntegerLiteral/FloatingLiteral nodes the memory associated with
766/// the APFloat/APInt values will never get freed. APNumericStorage uses
767/// ASTContext's allocator for memory allocation.
768class APNumericStorage {
769  unsigned BitWidth;
770  union {
771    uint64_t VAL;    ///< Used to store the <= 64 bits integer value.
772    uint64_t *pVal;  ///< Used to store the >64 bits integer value.
773  };
774
775  bool hasAllocation() const { return llvm::APInt::getNumWords(BitWidth) > 1; }
776
777  APNumericStorage(const APNumericStorage&); // do not implement
778  APNumericStorage& operator=(const APNumericStorage&); // do not implement
779
780protected:
781  APNumericStorage() : BitWidth(0), VAL(0) { }
782
783  llvm::APInt getIntValue() const {
784    unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
785    if (NumWords > 1)
786      return llvm::APInt(BitWidth, NumWords, pVal);
787    else
788      return llvm::APInt(BitWidth, VAL);
789  }
790  void setIntValue(ASTContext &C, const llvm::APInt &Val);
791};
792
793class APIntStorage : public APNumericStorage {
794public:
795  llvm::APInt getValue() const { return getIntValue(); }
796  void setValue(ASTContext &C, const llvm::APInt &Val) { setIntValue(C, Val); }
797};
798
799class APFloatStorage : public APNumericStorage {
800public:
801  llvm::APFloat getValue() const { return llvm::APFloat(getIntValue()); }
802  void setValue(ASTContext &C, const llvm::APFloat &Val) {
803    setIntValue(C, Val.bitcastToAPInt());
804  }
805};
806
807class IntegerLiteral : public Expr {
808  APIntStorage Num;
809  SourceLocation Loc;
810
811  /// \brief Construct an empty integer literal.
812  explicit IntegerLiteral(EmptyShell Empty)
813    : Expr(IntegerLiteralClass, Empty) { }
814
815public:
816  // type should be IntTy, LongTy, LongLongTy, UnsignedIntTy, UnsignedLongTy,
817  // or UnsignedLongLongTy
818  IntegerLiteral(ASTContext &C, const llvm::APInt &V,
819                 QualType type, SourceLocation l)
820    : Expr(IntegerLiteralClass, type, false, false), Loc(l) {
821    assert(type->isIntegerType() && "Illegal type in IntegerLiteral");
822    setValue(C, V);
823  }
824
825  // type should be IntTy, LongTy, LongLongTy, UnsignedIntTy, UnsignedLongTy,
826  // or UnsignedLongLongTy
827  static IntegerLiteral *Create(ASTContext &C, const llvm::APInt &V,
828                                QualType type, SourceLocation l);
829  static IntegerLiteral *Create(ASTContext &C, EmptyShell Empty);
830
831  llvm::APInt getValue() const { return Num.getValue(); }
832  virtual SourceRange getSourceRange() const { return SourceRange(Loc); }
833
834  /// \brief Retrieve the location of the literal.
835  SourceLocation getLocation() const { return Loc; }
836
837  void setValue(ASTContext &C, const llvm::APInt &Val) { Num.setValue(C, Val); }
838  void setLocation(SourceLocation Location) { Loc = Location; }
839
840  static bool classof(const Stmt *T) {
841    return T->getStmtClass() == IntegerLiteralClass;
842  }
843  static bool classof(const IntegerLiteral *) { return true; }
844
845  // Iterators
846  virtual child_iterator child_begin();
847  virtual child_iterator child_end();
848};
849
850class CharacterLiteral : public Expr {
851  unsigned Value;
852  SourceLocation Loc;
853  bool IsWide;
854public:
855  // type should be IntTy
856  CharacterLiteral(unsigned value, bool iswide, QualType type, SourceLocation l)
857    : Expr(CharacterLiteralClass, type, false, false), Value(value), Loc(l),
858      IsWide(iswide) {
859  }
860
861  /// \brief Construct an empty character literal.
862  CharacterLiteral(EmptyShell Empty) : Expr(CharacterLiteralClass, Empty) { }
863
864  SourceLocation getLocation() const { return Loc; }
865  bool isWide() const { return IsWide; }
866
867  virtual SourceRange getSourceRange() const { return SourceRange(Loc); }
868
869  unsigned getValue() const { return Value; }
870
871  void setLocation(SourceLocation Location) { Loc = Location; }
872  void setWide(bool W) { IsWide = W; }
873  void setValue(unsigned Val) { Value = Val; }
874
875  static bool classof(const Stmt *T) {
876    return T->getStmtClass() == CharacterLiteralClass;
877  }
878  static bool classof(const CharacterLiteral *) { return true; }
879
880  // Iterators
881  virtual child_iterator child_begin();
882  virtual child_iterator child_end();
883};
884
885class FloatingLiteral : public Expr {
886  APFloatStorage Num;
887  bool IsExact : 1;
888  SourceLocation Loc;
889
890  FloatingLiteral(ASTContext &C, const llvm::APFloat &V, bool isexact,
891                  QualType Type, SourceLocation L)
892    : Expr(FloatingLiteralClass, Type, false, false),
893      IsExact(isexact), Loc(L) {
894    setValue(C, V);
895  }
896
897  /// \brief Construct an empty floating-point literal.
898  explicit FloatingLiteral(EmptyShell Empty)
899    : Expr(FloatingLiteralClass, Empty), IsExact(false) { }
900
901public:
902  static FloatingLiteral *Create(ASTContext &C, const llvm::APFloat &V,
903                                 bool isexact, QualType Type, SourceLocation L);
904  static FloatingLiteral *Create(ASTContext &C, EmptyShell Empty);
905
906  llvm::APFloat getValue() const { return Num.getValue(); }
907  void setValue(ASTContext &C, const llvm::APFloat &Val) {
908    Num.setValue(C, Val);
909  }
910
911  bool isExact() const { return IsExact; }
912  void setExact(bool E) { IsExact = E; }
913
914  /// getValueAsApproximateDouble - This returns the value as an inaccurate
915  /// double.  Note that this may cause loss of precision, but is useful for
916  /// debugging dumps, etc.
917  double getValueAsApproximateDouble() const;
918
919  SourceLocation getLocation() const { return Loc; }
920  void setLocation(SourceLocation L) { Loc = L; }
921
922  virtual SourceRange getSourceRange() const { return SourceRange(Loc); }
923
924  static bool classof(const Stmt *T) {
925    return T->getStmtClass() == FloatingLiteralClass;
926  }
927  static bool classof(const FloatingLiteral *) { return true; }
928
929  // Iterators
930  virtual child_iterator child_begin();
931  virtual child_iterator child_end();
932};
933
934/// ImaginaryLiteral - We support imaginary integer and floating point literals,
935/// like "1.0i".  We represent these as a wrapper around FloatingLiteral and
936/// IntegerLiteral classes.  Instances of this class always have a Complex type
937/// whose element type matches the subexpression.
938///
939class ImaginaryLiteral : public Expr {
940  Stmt *Val;
941public:
942  ImaginaryLiteral(Expr *val, QualType Ty)
943    : Expr(ImaginaryLiteralClass, Ty, false, false), Val(val) {}
944
945  /// \brief Build an empty imaginary literal.
946  explicit ImaginaryLiteral(EmptyShell Empty)
947    : Expr(ImaginaryLiteralClass, Empty) { }
948
949  const Expr *getSubExpr() const { return cast<Expr>(Val); }
950  Expr *getSubExpr() { return cast<Expr>(Val); }
951  void setSubExpr(Expr *E) { Val = E; }
952
953  virtual SourceRange getSourceRange() const { return Val->getSourceRange(); }
954  static bool classof(const Stmt *T) {
955    return T->getStmtClass() == ImaginaryLiteralClass;
956  }
957  static bool classof(const ImaginaryLiteral *) { return true; }
958
959  // Iterators
960  virtual child_iterator child_begin();
961  virtual child_iterator child_end();
962};
963
964/// StringLiteral - This represents a string literal expression, e.g. "foo"
965/// or L"bar" (wide strings).  The actual string is returned by getStrData()
966/// is NOT null-terminated, and the length of the string is determined by
967/// calling getByteLength().  The C type for a string is always a
968/// ConstantArrayType.  In C++, the char type is const qualified, in C it is
969/// not.
970///
971/// Note that strings in C can be formed by concatenation of multiple string
972/// literal pptokens in translation phase #6.  This keeps track of the locations
973/// of each of these pieces.
974///
975/// Strings in C can also be truncated and extended by assigning into arrays,
976/// e.g. with constructs like:
977///   char X[2] = "foobar";
978/// In this case, getByteLength() will return 6, but the string literal will
979/// have type "char[2]".
980class StringLiteral : public Expr {
981  const char *StrData;
982  unsigned ByteLength;
983  bool IsWide;
984  unsigned NumConcatenated;
985  SourceLocation TokLocs[1];
986
987  StringLiteral(QualType Ty) : Expr(StringLiteralClass, Ty, false, false) {}
988
989public:
990  /// This is the "fully general" constructor that allows representation of
991  /// strings formed from multiple concatenated tokens.
992  static StringLiteral *Create(ASTContext &C, const char *StrData,
993                               unsigned ByteLength, bool Wide, QualType Ty,
994                               const SourceLocation *Loc, unsigned NumStrs);
995
996  /// Simple constructor for string literals made from one token.
997  static StringLiteral *Create(ASTContext &C, const char *StrData,
998                               unsigned ByteLength,
999                               bool Wide, QualType Ty, SourceLocation Loc) {
1000    return Create(C, StrData, ByteLength, Wide, Ty, &Loc, 1);
1001  }
1002
1003  /// \brief Construct an empty string literal.
1004  static StringLiteral *CreateEmpty(ASTContext &C, unsigned NumStrs);
1005
1006  llvm::StringRef getString() const {
1007    return llvm::StringRef(StrData, ByteLength);
1008  }
1009
1010  unsigned getByteLength() const { return ByteLength; }
1011
1012  /// \brief Sets the string data to the given string data.
1013  void setString(ASTContext &C, llvm::StringRef Str);
1014
1015  bool isWide() const { return IsWide; }
1016  void setWide(bool W) { IsWide = W; }
1017
1018  bool containsNonAsciiOrNull() const {
1019    llvm::StringRef Str = getString();
1020    for (unsigned i = 0, e = Str.size(); i != e; ++i)
1021      if (!isascii(Str[i]) || !Str[i])
1022        return true;
1023    return false;
1024  }
1025  /// getNumConcatenated - Get the number of string literal tokens that were
1026  /// concatenated in translation phase #6 to form this string literal.
1027  unsigned getNumConcatenated() const { return NumConcatenated; }
1028
1029  SourceLocation getStrTokenLoc(unsigned TokNum) const {
1030    assert(TokNum < NumConcatenated && "Invalid tok number");
1031    return TokLocs[TokNum];
1032  }
1033  void setStrTokenLoc(unsigned TokNum, SourceLocation L) {
1034    assert(TokNum < NumConcatenated && "Invalid tok number");
1035    TokLocs[TokNum] = L;
1036  }
1037
1038  typedef const SourceLocation *tokloc_iterator;
1039  tokloc_iterator tokloc_begin() const { return TokLocs; }
1040  tokloc_iterator tokloc_end() const { return TokLocs+NumConcatenated; }
1041
1042  virtual SourceRange getSourceRange() const {
1043    return SourceRange(TokLocs[0], TokLocs[NumConcatenated-1]);
1044  }
1045  static bool classof(const Stmt *T) {
1046    return T->getStmtClass() == StringLiteralClass;
1047  }
1048  static bool classof(const StringLiteral *) { return true; }
1049
1050  // Iterators
1051  virtual child_iterator child_begin();
1052  virtual child_iterator child_end();
1053};
1054
1055/// ParenExpr - This represents a parethesized expression, e.g. "(1)".  This
1056/// AST node is only formed if full location information is requested.
1057class ParenExpr : public Expr {
1058  SourceLocation L, R;
1059  Stmt *Val;
1060public:
1061  ParenExpr(SourceLocation l, SourceLocation r, Expr *val)
1062    : Expr(ParenExprClass, val->getType(),
1063           val->isTypeDependent(), val->isValueDependent()),
1064      L(l), R(r), Val(val) {}
1065
1066  /// \brief Construct an empty parenthesized expression.
1067  explicit ParenExpr(EmptyShell Empty)
1068    : Expr(ParenExprClass, Empty) { }
1069
1070  const Expr *getSubExpr() const { return cast<Expr>(Val); }
1071  Expr *getSubExpr() { return cast<Expr>(Val); }
1072  void setSubExpr(Expr *E) { Val = E; }
1073
1074  virtual SourceRange getSourceRange() const { return SourceRange(L, R); }
1075
1076  /// \brief Get the location of the left parentheses '('.
1077  SourceLocation getLParen() const { return L; }
1078  void setLParen(SourceLocation Loc) { L = Loc; }
1079
1080  /// \brief Get the location of the right parentheses ')'.
1081  SourceLocation getRParen() const { return R; }
1082  void setRParen(SourceLocation Loc) { R = Loc; }
1083
1084  static bool classof(const Stmt *T) {
1085    return T->getStmtClass() == ParenExprClass;
1086  }
1087  static bool classof(const ParenExpr *) { return true; }
1088
1089  // Iterators
1090  virtual child_iterator child_begin();
1091  virtual child_iterator child_end();
1092};
1093
1094
1095/// UnaryOperator - This represents the unary-expression's (except sizeof and
1096/// alignof), the postinc/postdec operators from postfix-expression, and various
1097/// extensions.
1098///
1099/// Notes on various nodes:
1100///
1101/// Real/Imag - These return the real/imag part of a complex operand.  If
1102///   applied to a non-complex value, the former returns its operand and the
1103///   later returns zero in the type of the operand.
1104///
1105class UnaryOperator : public Expr {
1106public:
1107  typedef UnaryOperatorKind Opcode;
1108
1109private:
1110  unsigned Opc : 5;
1111  SourceLocation Loc;
1112  Stmt *Val;
1113public:
1114
1115  UnaryOperator(Expr *input, Opcode opc, QualType type, SourceLocation l)
1116    : Expr(UnaryOperatorClass, type,
1117           input->isTypeDependent() || type->isDependentType(),
1118           input->isValueDependent()),
1119      Opc(opc), Loc(l), Val(input) {}
1120
1121  /// \brief Build an empty unary operator.
1122  explicit UnaryOperator(EmptyShell Empty)
1123    : Expr(UnaryOperatorClass, Empty), Opc(UO_AddrOf) { }
1124
1125  Opcode getOpcode() const { return static_cast<Opcode>(Opc); }
1126  void setOpcode(Opcode O) { Opc = O; }
1127
1128  Expr *getSubExpr() const { return cast<Expr>(Val); }
1129  void setSubExpr(Expr *E) { Val = E; }
1130
1131  /// getOperatorLoc - Return the location of the operator.
1132  SourceLocation getOperatorLoc() const { return Loc; }
1133  void setOperatorLoc(SourceLocation L) { Loc = L; }
1134
1135  /// isPostfix - Return true if this is a postfix operation, like x++.
1136  static bool isPostfix(Opcode Op) {
1137    return Op == UO_PostInc || Op == UO_PostDec;
1138  }
1139
1140  /// isPostfix - Return true if this is a prefix operation, like --x.
1141  static bool isPrefix(Opcode Op) {
1142    return Op == UO_PreInc || Op == UO_PreDec;
1143  }
1144
1145  bool isPrefix() const { return isPrefix(getOpcode()); }
1146  bool isPostfix() const { return isPostfix(getOpcode()); }
1147  bool isIncrementOp() const {
1148    return Opc == UO_PreInc || Opc == UO_PostInc;
1149  }
1150  bool isIncrementDecrementOp() const {
1151    return Opc <= UO_PreDec;
1152  }
1153  static bool isArithmeticOp(Opcode Op) {
1154    return Op >= UO_Plus && Op <= UO_LNot;
1155  }
1156  bool isArithmeticOp() const { return isArithmeticOp(getOpcode()); }
1157
1158  /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
1159  /// corresponds to, e.g. "sizeof" or "[pre]++"
1160  static const char *getOpcodeStr(Opcode Op);
1161
1162  /// \brief Retrieve the unary opcode that corresponds to the given
1163  /// overloaded operator.
1164  static Opcode getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix);
1165
1166  /// \brief Retrieve the overloaded operator kind that corresponds to
1167  /// the given unary opcode.
1168  static OverloadedOperatorKind getOverloadedOperator(Opcode Opc);
1169
1170  virtual SourceRange getSourceRange() const {
1171    if (isPostfix())
1172      return SourceRange(Val->getLocStart(), Loc);
1173    else
1174      return SourceRange(Loc, Val->getLocEnd());
1175  }
1176  virtual SourceLocation getExprLoc() const { return Loc; }
1177
1178  static bool classof(const Stmt *T) {
1179    return T->getStmtClass() == UnaryOperatorClass;
1180  }
1181  static bool classof(const UnaryOperator *) { return true; }
1182
1183  // Iterators
1184  virtual child_iterator child_begin();
1185  virtual child_iterator child_end();
1186};
1187
1188/// OffsetOfExpr - [C99 7.17] - This represents an expression of the form
1189/// offsetof(record-type, member-designator). For example, given:
1190/// @code
1191/// struct S {
1192///   float f;
1193///   double d;
1194/// };
1195/// struct T {
1196///   int i;
1197///   struct S s[10];
1198/// };
1199/// @endcode
1200/// we can represent and evaluate the expression @c offsetof(struct T, s[2].d).
1201
1202class OffsetOfExpr : public Expr {
1203public:
1204  // __builtin_offsetof(type, identifier(.identifier|[expr])*)
1205  class OffsetOfNode {
1206  public:
1207    /// \brief The kind of offsetof node we have.
1208    enum Kind {
1209      /// \brief An index into an array.
1210      Array = 0x00,
1211      /// \brief A field.
1212      Field = 0x01,
1213      /// \brief A field in a dependent type, known only by its name.
1214      Identifier = 0x02,
1215      /// \brief An implicit indirection through a C++ base class, when the
1216      /// field found is in a base class.
1217      Base = 0x03
1218    };
1219
1220  private:
1221    enum { MaskBits = 2, Mask = 0x03 };
1222
1223    /// \brief The source range that covers this part of the designator.
1224    SourceRange Range;
1225
1226    /// \brief The data describing the designator, which comes in three
1227    /// different forms, depending on the lower two bits.
1228    ///   - An unsigned index into the array of Expr*'s stored after this node
1229    ///     in memory, for [constant-expression] designators.
1230    ///   - A FieldDecl*, for references to a known field.
1231    ///   - An IdentifierInfo*, for references to a field with a given name
1232    ///     when the class type is dependent.
1233    ///   - A CXXBaseSpecifier*, for references that look at a field in a
1234    ///     base class.
1235    uintptr_t Data;
1236
1237  public:
1238    /// \brief Create an offsetof node that refers to an array element.
1239    OffsetOfNode(SourceLocation LBracketLoc, unsigned Index,
1240                 SourceLocation RBracketLoc)
1241      : Range(LBracketLoc, RBracketLoc), Data((Index << 2) | Array) { }
1242
1243    /// \brief Create an offsetof node that refers to a field.
1244    OffsetOfNode(SourceLocation DotLoc, FieldDecl *Field,
1245                 SourceLocation NameLoc)
1246      : Range(DotLoc.isValid()? DotLoc : NameLoc, NameLoc),
1247        Data(reinterpret_cast<uintptr_t>(Field) | OffsetOfNode::Field) { }
1248
1249    /// \brief Create an offsetof node that refers to an identifier.
1250    OffsetOfNode(SourceLocation DotLoc, IdentifierInfo *Name,
1251                 SourceLocation NameLoc)
1252      : Range(DotLoc.isValid()? DotLoc : NameLoc, NameLoc),
1253        Data(reinterpret_cast<uintptr_t>(Name) | Identifier) { }
1254
1255    /// \brief Create an offsetof node that refers into a C++ base class.
1256    explicit OffsetOfNode(const CXXBaseSpecifier *Base)
1257      : Range(), Data(reinterpret_cast<uintptr_t>(Base) | OffsetOfNode::Base) {}
1258
1259    /// \brief Determine what kind of offsetof node this is.
1260    Kind getKind() const {
1261      return static_cast<Kind>(Data & Mask);
1262    }
1263
1264    /// \brief For an array element node, returns the index into the array
1265    /// of expressions.
1266    unsigned getArrayExprIndex() const {
1267      assert(getKind() == Array);
1268      return Data >> 2;
1269    }
1270
1271    /// \brief For a field offsetof node, returns the field.
1272    FieldDecl *getField() const {
1273      assert(getKind() == Field);
1274      return reinterpret_cast<FieldDecl *>(Data & ~(uintptr_t)Mask);
1275    }
1276
1277    /// \brief For a field or identifier offsetof node, returns the name of
1278    /// the field.
1279    IdentifierInfo *getFieldName() const;
1280
1281    /// \brief For a base class node, returns the base specifier.
1282    CXXBaseSpecifier *getBase() const {
1283      assert(getKind() == Base);
1284      return reinterpret_cast<CXXBaseSpecifier *>(Data & ~(uintptr_t)Mask);
1285    }
1286
1287    /// \brief Retrieve the source range that covers this offsetof node.
1288    ///
1289    /// For an array element node, the source range contains the locations of
1290    /// the square brackets. For a field or identifier node, the source range
1291    /// contains the location of the period (if there is one) and the
1292    /// identifier.
1293    SourceRange getRange() const { return Range; }
1294  };
1295
1296private:
1297
1298  SourceLocation OperatorLoc, RParenLoc;
1299  // Base type;
1300  TypeSourceInfo *TSInfo;
1301  // Number of sub-components (i.e. instances of OffsetOfNode).
1302  unsigned NumComps;
1303  // Number of sub-expressions (i.e. array subscript expressions).
1304  unsigned NumExprs;
1305
1306  OffsetOfExpr(ASTContext &C, QualType type,
1307               SourceLocation OperatorLoc, TypeSourceInfo *tsi,
1308               OffsetOfNode* compsPtr, unsigned numComps,
1309               Expr** exprsPtr, unsigned numExprs,
1310               SourceLocation RParenLoc);
1311
1312  explicit OffsetOfExpr(unsigned numComps, unsigned numExprs)
1313    : Expr(OffsetOfExprClass, EmptyShell()),
1314      TSInfo(0), NumComps(numComps), NumExprs(numExprs) {}
1315
1316public:
1317
1318  static OffsetOfExpr *Create(ASTContext &C, QualType type,
1319                              SourceLocation OperatorLoc, TypeSourceInfo *tsi,
1320                              OffsetOfNode* compsPtr, unsigned numComps,
1321                              Expr** exprsPtr, unsigned numExprs,
1322                              SourceLocation RParenLoc);
1323
1324  static OffsetOfExpr *CreateEmpty(ASTContext &C,
1325                                   unsigned NumComps, unsigned NumExprs);
1326
1327  /// getOperatorLoc - Return the location of the operator.
1328  SourceLocation getOperatorLoc() const { return OperatorLoc; }
1329  void setOperatorLoc(SourceLocation L) { OperatorLoc = L; }
1330
1331  /// \brief Return the location of the right parentheses.
1332  SourceLocation getRParenLoc() const { return RParenLoc; }
1333  void setRParenLoc(SourceLocation R) { RParenLoc = R; }
1334
1335  TypeSourceInfo *getTypeSourceInfo() const {
1336    return TSInfo;
1337  }
1338  void setTypeSourceInfo(TypeSourceInfo *tsi) {
1339    TSInfo = tsi;
1340  }
1341
1342  const OffsetOfNode &getComponent(unsigned Idx) {
1343    assert(Idx < NumComps && "Subscript out of range");
1344    return reinterpret_cast<OffsetOfNode *> (this + 1)[Idx];
1345  }
1346
1347  void setComponent(unsigned Idx, OffsetOfNode ON) {
1348    assert(Idx < NumComps && "Subscript out of range");
1349    reinterpret_cast<OffsetOfNode *> (this + 1)[Idx] = ON;
1350  }
1351
1352  unsigned getNumComponents() const {
1353    return NumComps;
1354  }
1355
1356  Expr* getIndexExpr(unsigned Idx) {
1357    assert(Idx < NumExprs && "Subscript out of range");
1358    return reinterpret_cast<Expr **>(
1359                    reinterpret_cast<OffsetOfNode *>(this+1) + NumComps)[Idx];
1360  }
1361
1362  void setIndexExpr(unsigned Idx, Expr* E) {
1363    assert(Idx < NumComps && "Subscript out of range");
1364    reinterpret_cast<Expr **>(
1365                reinterpret_cast<OffsetOfNode *>(this+1) + NumComps)[Idx] = E;
1366  }
1367
1368  unsigned getNumExpressions() const {
1369    return NumExprs;
1370  }
1371
1372  virtual SourceRange getSourceRange() const {
1373    return SourceRange(OperatorLoc, RParenLoc);
1374  }
1375
1376  static bool classof(const Stmt *T) {
1377    return T->getStmtClass() == OffsetOfExprClass;
1378  }
1379
1380  static bool classof(const OffsetOfExpr *) { return true; }
1381
1382  // Iterators
1383  virtual child_iterator child_begin();
1384  virtual child_iterator child_end();
1385};
1386
1387/// SizeOfAlignOfExpr - [C99 6.5.3.4] - This is for sizeof/alignof, both of
1388/// types and expressions.
1389class SizeOfAlignOfExpr : public Expr {
1390  bool isSizeof : 1;  // true if sizeof, false if alignof.
1391  bool isType : 1;    // true if operand is a type, false if an expression
1392  union {
1393    TypeSourceInfo *Ty;
1394    Stmt *Ex;
1395  } Argument;
1396  SourceLocation OpLoc, RParenLoc;
1397
1398public:
1399  SizeOfAlignOfExpr(bool issizeof, TypeSourceInfo *TInfo,
1400                    QualType resultType, SourceLocation op,
1401                    SourceLocation rp) :
1402      Expr(SizeOfAlignOfExprClass, resultType,
1403           false, // Never type-dependent (C++ [temp.dep.expr]p3).
1404           // Value-dependent if the argument is type-dependent.
1405           TInfo->getType()->isDependentType()),
1406      isSizeof(issizeof), isType(true), OpLoc(op), RParenLoc(rp) {
1407    Argument.Ty = TInfo;
1408  }
1409
1410  SizeOfAlignOfExpr(bool issizeof, Expr *E,
1411                    QualType resultType, SourceLocation op,
1412                    SourceLocation rp) :
1413      Expr(SizeOfAlignOfExprClass, resultType,
1414           false, // Never type-dependent (C++ [temp.dep.expr]p3).
1415           // Value-dependent if the argument is type-dependent.
1416           E->isTypeDependent()),
1417      isSizeof(issizeof), isType(false), OpLoc(op), RParenLoc(rp) {
1418    Argument.Ex = E;
1419  }
1420
1421  /// \brief Construct an empty sizeof/alignof expression.
1422  explicit SizeOfAlignOfExpr(EmptyShell Empty)
1423    : Expr(SizeOfAlignOfExprClass, Empty) { }
1424
1425  bool isSizeOf() const { return isSizeof; }
1426  void setSizeof(bool S) { isSizeof = S; }
1427
1428  bool isArgumentType() const { return isType; }
1429  QualType getArgumentType() const {
1430    return getArgumentTypeInfo()->getType();
1431  }
1432  TypeSourceInfo *getArgumentTypeInfo() const {
1433    assert(isArgumentType() && "calling getArgumentType() when arg is expr");
1434    return Argument.Ty;
1435  }
1436  Expr *getArgumentExpr() {
1437    assert(!isArgumentType() && "calling getArgumentExpr() when arg is type");
1438    return static_cast<Expr*>(Argument.Ex);
1439  }
1440  const Expr *getArgumentExpr() const {
1441    return const_cast<SizeOfAlignOfExpr*>(this)->getArgumentExpr();
1442  }
1443
1444  void setArgument(Expr *E) { Argument.Ex = E; isType = false; }
1445  void setArgument(TypeSourceInfo *TInfo) {
1446    Argument.Ty = TInfo;
1447    isType = true;
1448  }
1449
1450  /// Gets the argument type, or the type of the argument expression, whichever
1451  /// is appropriate.
1452  QualType getTypeOfArgument() const {
1453    return isArgumentType() ? getArgumentType() : getArgumentExpr()->getType();
1454  }
1455
1456  SourceLocation getOperatorLoc() const { return OpLoc; }
1457  void setOperatorLoc(SourceLocation L) { OpLoc = L; }
1458
1459  SourceLocation getRParenLoc() const { return RParenLoc; }
1460  void setRParenLoc(SourceLocation L) { RParenLoc = L; }
1461
1462  virtual SourceRange getSourceRange() const {
1463    return SourceRange(OpLoc, RParenLoc);
1464  }
1465
1466  static bool classof(const Stmt *T) {
1467    return T->getStmtClass() == SizeOfAlignOfExprClass;
1468  }
1469  static bool classof(const SizeOfAlignOfExpr *) { return true; }
1470
1471  // Iterators
1472  virtual child_iterator child_begin();
1473  virtual child_iterator child_end();
1474};
1475
1476//===----------------------------------------------------------------------===//
1477// Postfix Operators.
1478//===----------------------------------------------------------------------===//
1479
1480/// ArraySubscriptExpr - [C99 6.5.2.1] Array Subscripting.
1481class ArraySubscriptExpr : public Expr {
1482  enum { LHS, RHS, END_EXPR=2 };
1483  Stmt* SubExprs[END_EXPR];
1484  SourceLocation RBracketLoc;
1485public:
1486  ArraySubscriptExpr(Expr *lhs, Expr *rhs, QualType t,
1487                     SourceLocation rbracketloc)
1488  : Expr(ArraySubscriptExprClass, t,
1489         lhs->isTypeDependent() || rhs->isTypeDependent(),
1490         lhs->isValueDependent() || rhs->isValueDependent()),
1491    RBracketLoc(rbracketloc) {
1492    SubExprs[LHS] = lhs;
1493    SubExprs[RHS] = rhs;
1494  }
1495
1496  /// \brief Create an empty array subscript expression.
1497  explicit ArraySubscriptExpr(EmptyShell Shell)
1498    : Expr(ArraySubscriptExprClass, Shell) { }
1499
1500  /// An array access can be written A[4] or 4[A] (both are equivalent).
1501  /// - getBase() and getIdx() always present the normalized view: A[4].
1502  ///    In this case getBase() returns "A" and getIdx() returns "4".
1503  /// - getLHS() and getRHS() present the syntactic view. e.g. for
1504  ///    4[A] getLHS() returns "4".
1505  /// Note: Because vector element access is also written A[4] we must
1506  /// predicate the format conversion in getBase and getIdx only on the
1507  /// the type of the RHS, as it is possible for the LHS to be a vector of
1508  /// integer type
1509  Expr *getLHS() { return cast<Expr>(SubExprs[LHS]); }
1510  const Expr *getLHS() const { return cast<Expr>(SubExprs[LHS]); }
1511  void setLHS(Expr *E) { SubExprs[LHS] = E; }
1512
1513  Expr *getRHS() { return cast<Expr>(SubExprs[RHS]); }
1514  const Expr *getRHS() const { return cast<Expr>(SubExprs[RHS]); }
1515  void setRHS(Expr *E) { SubExprs[RHS] = E; }
1516
1517  Expr *getBase() {
1518    return cast<Expr>(getRHS()->getType()->isIntegerType() ? getLHS():getRHS());
1519  }
1520
1521  const Expr *getBase() const {
1522    return cast<Expr>(getRHS()->getType()->isIntegerType() ? getLHS():getRHS());
1523  }
1524
1525  Expr *getIdx() {
1526    return cast<Expr>(getRHS()->getType()->isIntegerType() ? getRHS():getLHS());
1527  }
1528
1529  const Expr *getIdx() const {
1530    return cast<Expr>(getRHS()->getType()->isIntegerType() ? getRHS():getLHS());
1531  }
1532
1533  virtual SourceRange getSourceRange() const {
1534    return SourceRange(getLHS()->getLocStart(), RBracketLoc);
1535  }
1536
1537  SourceLocation getRBracketLoc() const { return RBracketLoc; }
1538  void setRBracketLoc(SourceLocation L) { RBracketLoc = L; }
1539
1540  virtual SourceLocation getExprLoc() const { return getBase()->getExprLoc(); }
1541
1542  static bool classof(const Stmt *T) {
1543    return T->getStmtClass() == ArraySubscriptExprClass;
1544  }
1545  static bool classof(const ArraySubscriptExpr *) { return true; }
1546
1547  // Iterators
1548  virtual child_iterator child_begin();
1549  virtual child_iterator child_end();
1550};
1551
1552
1553/// CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
1554/// CallExpr itself represents a normal function call, e.g., "f(x, 2)",
1555/// while its subclasses may represent alternative syntax that (semantically)
1556/// results in a function call. For example, CXXOperatorCallExpr is
1557/// a subclass for overloaded operator calls that use operator syntax, e.g.,
1558/// "str1 + str2" to resolve to a function call.
1559class CallExpr : public Expr {
1560  enum { FN=0, ARGS_START=1 };
1561  Stmt **SubExprs;
1562  unsigned NumArgs;
1563  SourceLocation RParenLoc;
1564
1565protected:
1566  // This version of the constructor is for derived classes.
1567  CallExpr(ASTContext& C, StmtClass SC, Expr *fn, Expr **args, unsigned numargs,
1568           QualType t, SourceLocation rparenloc);
1569
1570public:
1571  CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs, QualType t,
1572           SourceLocation rparenloc);
1573
1574  /// \brief Build an empty call expression.
1575  CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty);
1576
1577  const Expr *getCallee() const { return cast<Expr>(SubExprs[FN]); }
1578  Expr *getCallee() { return cast<Expr>(SubExprs[FN]); }
1579  void setCallee(Expr *F) { SubExprs[FN] = F; }
1580
1581  Decl *getCalleeDecl();
1582  const Decl *getCalleeDecl() const {
1583    return const_cast<CallExpr*>(this)->getCalleeDecl();
1584  }
1585
1586  /// \brief If the callee is a FunctionDecl, return it. Otherwise return 0.
1587  FunctionDecl *getDirectCallee();
1588  const FunctionDecl *getDirectCallee() const {
1589    return const_cast<CallExpr*>(this)->getDirectCallee();
1590  }
1591
1592  /// getNumArgs - Return the number of actual arguments to this call.
1593  ///
1594  unsigned getNumArgs() const { return NumArgs; }
1595
1596  /// getArg - Return the specified argument.
1597  Expr *getArg(unsigned Arg) {
1598    assert(Arg < NumArgs && "Arg access out of range!");
1599    return cast<Expr>(SubExprs[Arg+ARGS_START]);
1600  }
1601  const Expr *getArg(unsigned Arg) const {
1602    assert(Arg < NumArgs && "Arg access out of range!");
1603    return cast<Expr>(SubExprs[Arg+ARGS_START]);
1604  }
1605
1606  /// setArg - Set the specified argument.
1607  void setArg(unsigned Arg, Expr *ArgExpr) {
1608    assert(Arg < NumArgs && "Arg access out of range!");
1609    SubExprs[Arg+ARGS_START] = ArgExpr;
1610  }
1611
1612  /// setNumArgs - This changes the number of arguments present in this call.
1613  /// Any orphaned expressions are deleted by this, and any new operands are set
1614  /// to null.
1615  void setNumArgs(ASTContext& C, unsigned NumArgs);
1616
1617  typedef ExprIterator arg_iterator;
1618  typedef ConstExprIterator const_arg_iterator;
1619
1620  arg_iterator arg_begin() { return SubExprs+ARGS_START; }
1621  arg_iterator arg_end() { return SubExprs+ARGS_START+getNumArgs(); }
1622  const_arg_iterator arg_begin() const { return SubExprs+ARGS_START; }
1623  const_arg_iterator arg_end() const { return SubExprs+ARGS_START+getNumArgs();}
1624
1625  /// getNumCommas - Return the number of commas that must have been present in
1626  /// this function call.
1627  unsigned getNumCommas() const { return NumArgs ? NumArgs - 1 : 0; }
1628
1629  /// isBuiltinCall - If this is a call to a builtin, return the builtin ID.  If
1630  /// not, return 0.
1631  unsigned isBuiltinCall(ASTContext &Context) const;
1632
1633  /// getCallReturnType - Get the return type of the call expr. This is not
1634  /// always the type of the expr itself, if the return type is a reference
1635  /// type.
1636  QualType getCallReturnType() const;
1637
1638  SourceLocation getRParenLoc() const { return RParenLoc; }
1639  void setRParenLoc(SourceLocation L) { RParenLoc = L; }
1640
1641  virtual SourceRange getSourceRange() const {
1642    return SourceRange(getCallee()->getLocStart(), RParenLoc);
1643  }
1644
1645  static bool classof(const Stmt *T) {
1646    return T->getStmtClass() >= firstCallExprConstant &&
1647           T->getStmtClass() <= lastCallExprConstant;
1648  }
1649  static bool classof(const CallExpr *) { return true; }
1650
1651  // Iterators
1652  virtual child_iterator child_begin();
1653  virtual child_iterator child_end();
1654};
1655
1656/// MemberExpr - [C99 6.5.2.3] Structure and Union Members.  X->F and X.F.
1657///
1658class MemberExpr : public Expr {
1659  /// Extra data stored in some member expressions.
1660  struct MemberNameQualifier : public NameQualifier {
1661    DeclAccessPair FoundDecl;
1662  };
1663
1664  /// Base - the expression for the base pointer or structure references.  In
1665  /// X.F, this is "X".
1666  Stmt *Base;
1667
1668  /// MemberDecl - This is the decl being referenced by the field/member name.
1669  /// In X.F, this is the decl referenced by F.
1670  ValueDecl *MemberDecl;
1671
1672  /// MemberLoc - This is the location of the member name.
1673  SourceLocation MemberLoc;
1674
1675  /// MemberDNLoc - Provides source/type location info for the
1676  /// declaration name embedded in MemberDecl.
1677  DeclarationNameLoc MemberDNLoc;
1678
1679  /// IsArrow - True if this is "X->F", false if this is "X.F".
1680  bool IsArrow : 1;
1681
1682  /// \brief True if this member expression used a nested-name-specifier to
1683  /// refer to the member, e.g., "x->Base::f", or found its member via a using
1684  /// declaration.  When true, a MemberNameQualifier
1685  /// structure is allocated immediately after the MemberExpr.
1686  bool HasQualifierOrFoundDecl : 1;
1687
1688  /// \brief True if this member expression specified a template argument list
1689  /// explicitly, e.g., x->f<int>. When true, an ExplicitTemplateArgumentList
1690  /// structure (and its TemplateArguments) are allocated immediately after
1691  /// the MemberExpr or, if the member expression also has a qualifier, after
1692  /// the MemberNameQualifier structure.
1693  bool HasExplicitTemplateArgumentList : 1;
1694
1695  /// \brief Retrieve the qualifier that preceded the member name, if any.
1696  MemberNameQualifier *getMemberQualifier() {
1697    assert(HasQualifierOrFoundDecl);
1698    return reinterpret_cast<MemberNameQualifier *> (this + 1);
1699  }
1700
1701  /// \brief Retrieve the qualifier that preceded the member name, if any.
1702  const MemberNameQualifier *getMemberQualifier() const {
1703    return const_cast<MemberExpr *>(this)->getMemberQualifier();
1704  }
1705
1706public:
1707  MemberExpr(Expr *base, bool isarrow, ValueDecl *memberdecl,
1708             const DeclarationNameInfo &NameInfo, QualType ty)
1709    : Expr(MemberExprClass, ty,
1710           base->isTypeDependent(), base->isValueDependent()),
1711      Base(base), MemberDecl(memberdecl), MemberLoc(NameInfo.getLoc()),
1712      MemberDNLoc(NameInfo.getInfo()), IsArrow(isarrow),
1713      HasQualifierOrFoundDecl(false), HasExplicitTemplateArgumentList(false) {
1714    assert(memberdecl->getDeclName() == NameInfo.getName());
1715  }
1716
1717  // NOTE: this constructor should be used only when it is known that
1718  // the member name can not provide additional syntactic info
1719  // (i.e., source locations for C++ operator names or type source info
1720  // for constructors, destructors and conversion oeprators).
1721  MemberExpr(Expr *base, bool isarrow, ValueDecl *memberdecl,
1722             SourceLocation l, QualType ty)
1723    : Expr(MemberExprClass, ty,
1724           base->isTypeDependent(), base->isValueDependent()),
1725      Base(base), MemberDecl(memberdecl), MemberLoc(l), MemberDNLoc(),
1726      IsArrow(isarrow),
1727      HasQualifierOrFoundDecl(false), HasExplicitTemplateArgumentList(false) {}
1728
1729  static MemberExpr *Create(ASTContext &C, Expr *base, bool isarrow,
1730                            NestedNameSpecifier *qual, SourceRange qualrange,
1731                            ValueDecl *memberdecl, DeclAccessPair founddecl,
1732                            DeclarationNameInfo MemberNameInfo,
1733                            const TemplateArgumentListInfo *targs,
1734                            QualType ty);
1735
1736  void setBase(Expr *E) { Base = E; }
1737  Expr *getBase() const { return cast<Expr>(Base); }
1738
1739  /// \brief Retrieve the member declaration to which this expression refers.
1740  ///
1741  /// The returned declaration will either be a FieldDecl or (in C++)
1742  /// a CXXMethodDecl.
1743  ValueDecl *getMemberDecl() const { return MemberDecl; }
1744  void setMemberDecl(ValueDecl *D) { MemberDecl = D; }
1745
1746  /// \brief Retrieves the declaration found by lookup.
1747  DeclAccessPair getFoundDecl() const {
1748    if (!HasQualifierOrFoundDecl)
1749      return DeclAccessPair::make(getMemberDecl(),
1750                                  getMemberDecl()->getAccess());
1751    return getMemberQualifier()->FoundDecl;
1752  }
1753
1754  /// \brief Determines whether this member expression actually had
1755  /// a C++ nested-name-specifier prior to the name of the member, e.g.,
1756  /// x->Base::foo.
1757  bool hasQualifier() const { return getQualifier() != 0; }
1758
1759  /// \brief If the member name was qualified, retrieves the source range of
1760  /// the nested-name-specifier that precedes the member name. Otherwise,
1761  /// returns an empty source range.
1762  SourceRange getQualifierRange() const {
1763    if (!HasQualifierOrFoundDecl)
1764      return SourceRange();
1765
1766    return getMemberQualifier()->Range;
1767  }
1768
1769  /// \brief If the member name was qualified, retrieves the
1770  /// nested-name-specifier that precedes the member name. Otherwise, returns
1771  /// NULL.
1772  NestedNameSpecifier *getQualifier() const {
1773    if (!HasQualifierOrFoundDecl)
1774      return 0;
1775
1776    return getMemberQualifier()->NNS;
1777  }
1778
1779  /// \brief Determines whether this member expression actually had a C++
1780  /// template argument list explicitly specified, e.g., x.f<int>.
1781  bool hasExplicitTemplateArgs() const {
1782    return HasExplicitTemplateArgumentList;
1783  }
1784
1785  /// \brief Copies the template arguments (if present) into the given
1786  /// structure.
1787  void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const {
1788    if (hasExplicitTemplateArgs())
1789      getExplicitTemplateArgs().copyInto(List);
1790  }
1791
1792  /// \brief Retrieve the explicit template argument list that
1793  /// follow the member template name.  This must only be called on an
1794  /// expression with explicit template arguments.
1795  ExplicitTemplateArgumentList &getExplicitTemplateArgs() {
1796    assert(HasExplicitTemplateArgumentList);
1797    if (!HasQualifierOrFoundDecl)
1798      return *reinterpret_cast<ExplicitTemplateArgumentList *>(this + 1);
1799
1800    return *reinterpret_cast<ExplicitTemplateArgumentList *>(
1801                                                      getMemberQualifier() + 1);
1802  }
1803
1804  /// \brief Retrieve the explicit template argument list that
1805  /// followed the member template name.  This must only be called on
1806  /// an expression with explicit template arguments.
1807  const ExplicitTemplateArgumentList &getExplicitTemplateArgs() const {
1808    return const_cast<MemberExpr *>(this)->getExplicitTemplateArgs();
1809  }
1810
1811  /// \brief Retrieves the optional explicit template arguments.
1812  /// This points to the same data as getExplicitTemplateArgs(), but
1813  /// returns null if there are no explicit template arguments.
1814  const ExplicitTemplateArgumentList *getOptionalExplicitTemplateArgs() const {
1815    if (!hasExplicitTemplateArgs()) return 0;
1816    return &getExplicitTemplateArgs();
1817  }
1818
1819  /// \brief Retrieve the location of the left angle bracket following the
1820  /// member name ('<'), if any.
1821  SourceLocation getLAngleLoc() const {
1822    if (!HasExplicitTemplateArgumentList)
1823      return SourceLocation();
1824
1825    return getExplicitTemplateArgs().LAngleLoc;
1826  }
1827
1828  /// \brief Retrieve the template arguments provided as part of this
1829  /// template-id.
1830  const TemplateArgumentLoc *getTemplateArgs() const {
1831    if (!HasExplicitTemplateArgumentList)
1832      return 0;
1833
1834    return getExplicitTemplateArgs().getTemplateArgs();
1835  }
1836
1837  /// \brief Retrieve the number of template arguments provided as part of this
1838  /// template-id.
1839  unsigned getNumTemplateArgs() const {
1840    if (!HasExplicitTemplateArgumentList)
1841      return 0;
1842
1843    return getExplicitTemplateArgs().NumTemplateArgs;
1844  }
1845
1846  /// \brief Retrieve the location of the right angle bracket following the
1847  /// template arguments ('>').
1848  SourceLocation getRAngleLoc() const {
1849    if (!HasExplicitTemplateArgumentList)
1850      return SourceLocation();
1851
1852    return getExplicitTemplateArgs().RAngleLoc;
1853  }
1854
1855  /// \brief Retrieve the member declaration name info.
1856  DeclarationNameInfo getMemberNameInfo() const {
1857    return DeclarationNameInfo(MemberDecl->getDeclName(),
1858                               MemberLoc, MemberDNLoc);
1859  }
1860
1861  bool isArrow() const { return IsArrow; }
1862  void setArrow(bool A) { IsArrow = A; }
1863
1864  /// getMemberLoc - Return the location of the "member", in X->F, it is the
1865  /// location of 'F'.
1866  SourceLocation getMemberLoc() const { return MemberLoc; }
1867  void setMemberLoc(SourceLocation L) { MemberLoc = L; }
1868
1869  virtual SourceRange getSourceRange() const {
1870    // If we have an implicit base (like a C++ implicit this),
1871    // make sure not to return its location
1872    SourceLocation EndLoc = (HasExplicitTemplateArgumentList)
1873      ? getRAngleLoc() : getMemberNameInfo().getEndLoc();
1874
1875    SourceLocation BaseLoc = getBase()->getLocStart();
1876    if (BaseLoc.isInvalid())
1877      return SourceRange(MemberLoc, EndLoc);
1878    return SourceRange(BaseLoc, EndLoc);
1879  }
1880
1881  virtual SourceLocation getExprLoc() const { return MemberLoc; }
1882
1883  static bool classof(const Stmt *T) {
1884    return T->getStmtClass() == MemberExprClass;
1885  }
1886  static bool classof(const MemberExpr *) { return true; }
1887
1888  // Iterators
1889  virtual child_iterator child_begin();
1890  virtual child_iterator child_end();
1891
1892  friend class ASTReader;
1893  friend class ASTStmtWriter;
1894};
1895
1896/// CompoundLiteralExpr - [C99 6.5.2.5]
1897///
1898class CompoundLiteralExpr : public Expr {
1899  /// LParenLoc - If non-null, this is the location of the left paren in a
1900  /// compound literal like "(int){4}".  This can be null if this is a
1901  /// synthesized compound expression.
1902  SourceLocation LParenLoc;
1903
1904  /// The type as written.  This can be an incomplete array type, in
1905  /// which case the actual expression type will be different.
1906  TypeSourceInfo *TInfo;
1907  Stmt *Init;
1908  bool FileScope;
1909public:
1910  // FIXME: Can compound literals be value-dependent?
1911  CompoundLiteralExpr(SourceLocation lparenloc, TypeSourceInfo *tinfo,
1912                      QualType T, Expr *init, bool fileScope)
1913    : Expr(CompoundLiteralExprClass, T,
1914           tinfo->getType()->isDependentType(), false),
1915      LParenLoc(lparenloc), TInfo(tinfo), Init(init), FileScope(fileScope) {}
1916
1917  /// \brief Construct an empty compound literal.
1918  explicit CompoundLiteralExpr(EmptyShell Empty)
1919    : Expr(CompoundLiteralExprClass, Empty) { }
1920
1921  const Expr *getInitializer() const { return cast<Expr>(Init); }
1922  Expr *getInitializer() { return cast<Expr>(Init); }
1923  void setInitializer(Expr *E) { Init = E; }
1924
1925  bool isFileScope() const { return FileScope; }
1926  void setFileScope(bool FS) { FileScope = FS; }
1927
1928  SourceLocation getLParenLoc() const { return LParenLoc; }
1929  void setLParenLoc(SourceLocation L) { LParenLoc = L; }
1930
1931  TypeSourceInfo *getTypeSourceInfo() const { return TInfo; }
1932  void setTypeSourceInfo(TypeSourceInfo* tinfo) { TInfo = tinfo; }
1933
1934  virtual SourceRange getSourceRange() const {
1935    // FIXME: Init should never be null.
1936    if (!Init)
1937      return SourceRange();
1938    if (LParenLoc.isInvalid())
1939      return Init->getSourceRange();
1940    return SourceRange(LParenLoc, Init->getLocEnd());
1941  }
1942
1943  static bool classof(const Stmt *T) {
1944    return T->getStmtClass() == CompoundLiteralExprClass;
1945  }
1946  static bool classof(const CompoundLiteralExpr *) { return true; }
1947
1948  // Iterators
1949  virtual child_iterator child_begin();
1950  virtual child_iterator child_end();
1951};
1952
1953/// CastExpr - Base class for type casts, including both implicit
1954/// casts (ImplicitCastExpr) and explicit casts that have some
1955/// representation in the source code (ExplicitCastExpr's derived
1956/// classes).
1957class CastExpr : public Expr {
1958public:
1959  typedef clang::CastKind CastKind;
1960
1961private:
1962  Stmt *Op;
1963
1964  void CheckBasePath() const {
1965#ifndef NDEBUG
1966    switch (getCastKind()) {
1967    case CK_DerivedToBase:
1968    case CK_UncheckedDerivedToBase:
1969    case CK_DerivedToBaseMemberPointer:
1970    case CK_BaseToDerived:
1971    case CK_BaseToDerivedMemberPointer:
1972      assert(!path_empty() && "Cast kind should have a base path!");
1973      break;
1974
1975    // These should not have an inheritance path.
1976    case CK_Unknown:
1977    case CK_BitCast:
1978    case CK_LValueBitCast:
1979    case CK_NoOp:
1980    case CK_Dynamic:
1981    case CK_ToUnion:
1982    case CK_ArrayToPointerDecay:
1983    case CK_FunctionToPointerDecay:
1984    case CK_NullToMemberPointer:
1985    case CK_UserDefinedConversion:
1986    case CK_ConstructorConversion:
1987    case CK_IntegralToPointer:
1988    case CK_PointerToIntegral:
1989    case CK_ToVoid:
1990    case CK_VectorSplat:
1991    case CK_IntegralCast:
1992    case CK_IntegralToFloating:
1993    case CK_FloatingToIntegral:
1994    case CK_FloatingCast:
1995    case CK_MemberPointerToBoolean:
1996    case CK_AnyPointerToObjCPointerCast:
1997    case CK_AnyPointerToBlockPointerCast:
1998    case CK_ObjCObjectLValueCast:
1999      assert(path_empty() && "Cast kind should not have a base path!");
2000      break;
2001    }
2002#endif
2003  }
2004
2005  const CXXBaseSpecifier * const *path_buffer() const {
2006    return const_cast<CastExpr*>(this)->path_buffer();
2007  }
2008  CXXBaseSpecifier **path_buffer();
2009
2010protected:
2011  CastExpr(StmtClass SC, QualType ty, const CastKind kind, Expr *op,
2012           unsigned BasePathSize) :
2013    Expr(SC, ty,
2014         // Cast expressions are type-dependent if the type is
2015         // dependent (C++ [temp.dep.expr]p3).
2016         ty->isDependentType(),
2017         // Cast expressions are value-dependent if the type is
2018         // dependent or if the subexpression is value-dependent.
2019         ty->isDependentType() || (op && op->isValueDependent())),
2020    Op(op) {
2021    CastExprBits.Kind = kind;
2022    CastExprBits.BasePathSize = BasePathSize;
2023    CheckBasePath();
2024  }
2025
2026  /// \brief Construct an empty cast.
2027  CastExpr(StmtClass SC, EmptyShell Empty, unsigned BasePathSize)
2028    : Expr(SC, Empty) {
2029    CastExprBits.BasePathSize = BasePathSize;
2030  }
2031
2032public:
2033  CastKind getCastKind() const { return (CastKind) CastExprBits.Kind; }
2034  void setCastKind(CastKind K) { CastExprBits.Kind = K; }
2035  const char *getCastKindName() const;
2036
2037  Expr *getSubExpr() { return cast<Expr>(Op); }
2038  const Expr *getSubExpr() const { return cast<Expr>(Op); }
2039  void setSubExpr(Expr *E) { Op = E; }
2040
2041  /// \brief Retrieve the cast subexpression as it was written in the source
2042  /// code, looking through any implicit casts or other intermediate nodes
2043  /// introduced by semantic analysis.
2044  Expr *getSubExprAsWritten();
2045  const Expr *getSubExprAsWritten() const {
2046    return const_cast<CastExpr *>(this)->getSubExprAsWritten();
2047  }
2048
2049  typedef CXXBaseSpecifier **path_iterator;
2050  typedef const CXXBaseSpecifier * const *path_const_iterator;
2051  bool path_empty() const { return CastExprBits.BasePathSize == 0; }
2052  unsigned path_size() const { return CastExprBits.BasePathSize; }
2053  path_iterator path_begin() { return path_buffer(); }
2054  path_iterator path_end() { return path_buffer() + path_size(); }
2055  path_const_iterator path_begin() const { return path_buffer(); }
2056  path_const_iterator path_end() const { return path_buffer() + path_size(); }
2057
2058  void setCastPath(const CXXCastPath &Path);
2059
2060  static bool classof(const Stmt *T) {
2061    return T->getStmtClass() >= firstCastExprConstant &&
2062           T->getStmtClass() <= lastCastExprConstant;
2063  }
2064  static bool classof(const CastExpr *) { return true; }
2065
2066  // Iterators
2067  virtual child_iterator child_begin();
2068  virtual child_iterator child_end();
2069};
2070
2071/// ImplicitCastExpr - Allows us to explicitly represent implicit type
2072/// conversions, which have no direct representation in the original
2073/// source code. For example: converting T[]->T*, void f()->void
2074/// (*f)(), float->double, short->int, etc.
2075///
2076/// In C, implicit casts always produce rvalues. However, in C++, an
2077/// implicit cast whose result is being bound to a reference will be
2078/// an lvalue or xvalue. For example:
2079///
2080/// @code
2081/// class Base { };
2082/// class Derived : public Base { };
2083/// Derived &&ref();
2084/// void f(Derived d) {
2085///   Base& b = d; // initializer is an ImplicitCastExpr
2086///                // to an lvalue of type Base
2087///   Base&& r = ref(); // initializer is an ImplicitCastExpr
2088///                     // to an xvalue of type Base
2089/// }
2090/// @endcode
2091class ImplicitCastExpr : public CastExpr {
2092private:
2093  ImplicitCastExpr(QualType ty, CastKind kind, Expr *op,
2094                   unsigned BasePathLength, ExprValueKind VK)
2095    : CastExpr(ImplicitCastExprClass, ty, kind, op, BasePathLength) {
2096    setValueKind(VK);
2097  }
2098
2099  /// \brief Construct an empty implicit cast.
2100  explicit ImplicitCastExpr(EmptyShell Shell, unsigned PathSize)
2101    : CastExpr(ImplicitCastExprClass, Shell, PathSize) { }
2102
2103public:
2104  enum OnStack_t { OnStack };
2105  ImplicitCastExpr(OnStack_t _, QualType ty, CastKind kind, Expr *op,
2106                   ExprValueKind VK)
2107    : CastExpr(ImplicitCastExprClass, ty, kind, op, 0) {
2108    setValueKind(VK);
2109  }
2110
2111  static ImplicitCastExpr *Create(ASTContext &Context, QualType T,
2112                                  CastKind Kind, Expr *Operand,
2113                                  const CXXCastPath *BasePath,
2114                                  ExprValueKind Cat);
2115
2116  static ImplicitCastExpr *CreateEmpty(ASTContext &Context, unsigned PathSize);
2117
2118  virtual SourceRange getSourceRange() const {
2119    return getSubExpr()->getSourceRange();
2120  }
2121
2122  using Expr::getValueKind;
2123  using Expr::setValueKind;
2124
2125  static bool classof(const Stmt *T) {
2126    return T->getStmtClass() == ImplicitCastExprClass;
2127  }
2128  static bool classof(const ImplicitCastExpr *) { return true; }
2129};
2130
2131/// ExplicitCastExpr - An explicit cast written in the source
2132/// code.
2133///
2134/// This class is effectively an abstract class, because it provides
2135/// the basic representation of an explicitly-written cast without
2136/// specifying which kind of cast (C cast, functional cast, static
2137/// cast, etc.) was written; specific derived classes represent the
2138/// particular style of cast and its location information.
2139///
2140/// Unlike implicit casts, explicit cast nodes have two different
2141/// types: the type that was written into the source code, and the
2142/// actual type of the expression as determined by semantic
2143/// analysis. These types may differ slightly. For example, in C++ one
2144/// can cast to a reference type, which indicates that the resulting
2145/// expression will be an lvalue or xvalue. The reference type, however,
2146/// will not be used as the type of the expression.
2147class ExplicitCastExpr : public CastExpr {
2148  /// TInfo - Source type info for the (written) type
2149  /// this expression is casting to.
2150  TypeSourceInfo *TInfo;
2151
2152protected:
2153  ExplicitCastExpr(StmtClass SC, QualType exprTy, CastKind kind,
2154                   Expr *op, unsigned PathSize, TypeSourceInfo *writtenTy)
2155    : CastExpr(SC, exprTy, kind, op, PathSize), TInfo(writtenTy) {}
2156
2157  /// \brief Construct an empty explicit cast.
2158  ExplicitCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize)
2159    : CastExpr(SC, Shell, PathSize) { }
2160
2161public:
2162  /// getTypeInfoAsWritten - Returns the type source info for the type
2163  /// that this expression is casting to.
2164  TypeSourceInfo *getTypeInfoAsWritten() const { return TInfo; }
2165  void setTypeInfoAsWritten(TypeSourceInfo *writtenTy) { TInfo = writtenTy; }
2166
2167  /// getTypeAsWritten - Returns the type that this expression is
2168  /// casting to, as written in the source code.
2169  QualType getTypeAsWritten() const { return TInfo->getType(); }
2170
2171  static bool classof(const Stmt *T) {
2172     return T->getStmtClass() >= firstExplicitCastExprConstant &&
2173            T->getStmtClass() <= lastExplicitCastExprConstant;
2174  }
2175  static bool classof(const ExplicitCastExpr *) { return true; }
2176};
2177
2178/// CStyleCastExpr - An explicit cast in C (C99 6.5.4) or a C-style
2179/// cast in C++ (C++ [expr.cast]), which uses the syntax
2180/// (Type)expr. For example: @c (int)f.
2181class CStyleCastExpr : public ExplicitCastExpr {
2182  SourceLocation LPLoc; // the location of the left paren
2183  SourceLocation RPLoc; // the location of the right paren
2184
2185  CStyleCastExpr(QualType exprTy, CastKind kind, Expr *op,
2186                 unsigned PathSize, TypeSourceInfo *writtenTy,
2187                 SourceLocation l, SourceLocation r)
2188    : ExplicitCastExpr(CStyleCastExprClass, exprTy, kind, op, PathSize,
2189                       writtenTy), LPLoc(l), RPLoc(r) {}
2190
2191  /// \brief Construct an empty C-style explicit cast.
2192  explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize)
2193    : ExplicitCastExpr(CStyleCastExprClass, Shell, PathSize) { }
2194
2195public:
2196  static CStyleCastExpr *Create(ASTContext &Context, QualType T, CastKind K,
2197                                Expr *Op, const CXXCastPath *BasePath,
2198                                TypeSourceInfo *WrittenTy, SourceLocation L,
2199                                SourceLocation R);
2200
2201  static CStyleCastExpr *CreateEmpty(ASTContext &Context, unsigned PathSize);
2202
2203  SourceLocation getLParenLoc() const { return LPLoc; }
2204  void setLParenLoc(SourceLocation L) { LPLoc = L; }
2205
2206  SourceLocation getRParenLoc() const { return RPLoc; }
2207  void setRParenLoc(SourceLocation L) { RPLoc = L; }
2208
2209  virtual SourceRange getSourceRange() const {
2210    return SourceRange(LPLoc, getSubExpr()->getSourceRange().getEnd());
2211  }
2212  static bool classof(const Stmt *T) {
2213    return T->getStmtClass() == CStyleCastExprClass;
2214  }
2215  static bool classof(const CStyleCastExpr *) { return true; }
2216};
2217
2218/// \brief A builtin binary operation expression such as "x + y" or "x <= y".
2219///
2220/// This expression node kind describes a builtin binary operation,
2221/// such as "x + y" for integer values "x" and "y". The operands will
2222/// already have been converted to appropriate types (e.g., by
2223/// performing promotions or conversions).
2224///
2225/// In C++, where operators may be overloaded, a different kind of
2226/// expression node (CXXOperatorCallExpr) is used to express the
2227/// invocation of an overloaded operator with operator syntax. Within
2228/// a C++ template, whether BinaryOperator or CXXOperatorCallExpr is
2229/// used to store an expression "x + y" depends on the subexpressions
2230/// for x and y. If neither x or y is type-dependent, and the "+"
2231/// operator resolves to a built-in operation, BinaryOperator will be
2232/// used to express the computation (x and y may still be
2233/// value-dependent). If either x or y is type-dependent, or if the
2234/// "+" resolves to an overloaded operator, CXXOperatorCallExpr will
2235/// be used to express the computation.
2236class BinaryOperator : public Expr {
2237public:
2238  typedef BinaryOperatorKind Opcode;
2239
2240private:
2241  unsigned Opc : 6;
2242  SourceLocation OpLoc;
2243
2244  enum { LHS, RHS, END_EXPR };
2245  Stmt* SubExprs[END_EXPR];
2246public:
2247
2248  BinaryOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy,
2249                 SourceLocation opLoc)
2250    : Expr(BinaryOperatorClass, ResTy,
2251           lhs->isTypeDependent() || rhs->isTypeDependent(),
2252           lhs->isValueDependent() || rhs->isValueDependent()),
2253      Opc(opc), OpLoc(opLoc) {
2254    SubExprs[LHS] = lhs;
2255    SubExprs[RHS] = rhs;
2256    assert(!isCompoundAssignmentOp() &&
2257           "Use ArithAssignBinaryOperator for compound assignments");
2258  }
2259
2260  /// \brief Construct an empty binary operator.
2261  explicit BinaryOperator(EmptyShell Empty)
2262    : Expr(BinaryOperatorClass, Empty), Opc(BO_Comma) { }
2263
2264  SourceLocation getOperatorLoc() const { return OpLoc; }
2265  void setOperatorLoc(SourceLocation L) { OpLoc = L; }
2266
2267  Opcode getOpcode() const { return static_cast<Opcode>(Opc); }
2268  void setOpcode(Opcode O) { Opc = O; }
2269
2270  Expr *getLHS() const { return cast<Expr>(SubExprs[LHS]); }
2271  void setLHS(Expr *E) { SubExprs[LHS] = E; }
2272  Expr *getRHS() const { return cast<Expr>(SubExprs[RHS]); }
2273  void setRHS(Expr *E) { SubExprs[RHS] = E; }
2274
2275  virtual SourceRange getSourceRange() const {
2276    return SourceRange(getLHS()->getLocStart(), getRHS()->getLocEnd());
2277  }
2278
2279  /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
2280  /// corresponds to, e.g. "<<=".
2281  static const char *getOpcodeStr(Opcode Op);
2282
2283  const char *getOpcodeStr() const { return getOpcodeStr(getOpcode()); }
2284
2285  /// \brief Retrieve the binary opcode that corresponds to the given
2286  /// overloaded operator.
2287  static Opcode getOverloadedOpcode(OverloadedOperatorKind OO);
2288
2289  /// \brief Retrieve the overloaded operator kind that corresponds to
2290  /// the given binary opcode.
2291  static OverloadedOperatorKind getOverloadedOperator(Opcode Opc);
2292
2293  /// predicates to categorize the respective opcodes.
2294  bool isPtrMemOp() const { return Opc == BO_PtrMemD || Opc == BO_PtrMemI; }
2295  bool isMultiplicativeOp() const { return Opc >= BO_Mul && Opc <= BO_Rem; }
2296  static bool isAdditiveOp(Opcode Opc) { return Opc == BO_Add || Opc==BO_Sub; }
2297  bool isAdditiveOp() const { return isAdditiveOp(getOpcode()); }
2298  static bool isShiftOp(Opcode Opc) { return Opc == BO_Shl || Opc == BO_Shr; }
2299  bool isShiftOp() const { return isShiftOp(getOpcode()); }
2300
2301  static bool isBitwiseOp(Opcode Opc) { return Opc >= BO_And && Opc <= BO_Or; }
2302  bool isBitwiseOp() const { return isBitwiseOp(getOpcode()); }
2303
2304  static bool isRelationalOp(Opcode Opc) { return Opc >= BO_LT && Opc<=BO_GE; }
2305  bool isRelationalOp() const { return isRelationalOp(getOpcode()); }
2306
2307  static bool isEqualityOp(Opcode Opc) { return Opc == BO_EQ || Opc == BO_NE; }
2308  bool isEqualityOp() const { return isEqualityOp(getOpcode()); }
2309
2310  static bool isComparisonOp(Opcode Opc) { return Opc >= BO_LT && Opc<=BO_NE; }
2311  bool isComparisonOp() const { return isComparisonOp(getOpcode()); }
2312
2313  static bool isLogicalOp(Opcode Opc) { return Opc == BO_LAnd || Opc==BO_LOr; }
2314  bool isLogicalOp() const { return isLogicalOp(getOpcode()); }
2315
2316  bool isAssignmentOp() const { return Opc >= BO_Assign && Opc <= BO_OrAssign; }
2317  bool isCompoundAssignmentOp() const {
2318    return Opc > BO_Assign && Opc <= BO_OrAssign;
2319  }
2320  bool isShiftAssignOp() const {
2321    return Opc == BO_ShlAssign || Opc == BO_ShrAssign;
2322  }
2323
2324  static bool classof(const Stmt *S) {
2325    return S->getStmtClass() >= firstBinaryOperatorConstant &&
2326           S->getStmtClass() <= lastBinaryOperatorConstant;
2327  }
2328  static bool classof(const BinaryOperator *) { return true; }
2329
2330  // Iterators
2331  virtual child_iterator child_begin();
2332  virtual child_iterator child_end();
2333
2334protected:
2335  BinaryOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy,
2336                 SourceLocation opLoc, bool dead)
2337    : Expr(CompoundAssignOperatorClass, ResTy,
2338           lhs->isTypeDependent() || rhs->isTypeDependent(),
2339           lhs->isValueDependent() || rhs->isValueDependent()),
2340      Opc(opc), OpLoc(opLoc) {
2341    SubExprs[LHS] = lhs;
2342    SubExprs[RHS] = rhs;
2343  }
2344
2345  BinaryOperator(StmtClass SC, EmptyShell Empty)
2346    : Expr(SC, Empty), Opc(BO_MulAssign) { }
2347};
2348
2349/// CompoundAssignOperator - For compound assignments (e.g. +=), we keep
2350/// track of the type the operation is performed in.  Due to the semantics of
2351/// these operators, the operands are promoted, the aritmetic performed, an
2352/// implicit conversion back to the result type done, then the assignment takes
2353/// place.  This captures the intermediate type which the computation is done
2354/// in.
2355class CompoundAssignOperator : public BinaryOperator {
2356  QualType ComputationLHSType;
2357  QualType ComputationResultType;
2358public:
2359  CompoundAssignOperator(Expr *lhs, Expr *rhs, Opcode opc,
2360                         QualType ResType, QualType CompLHSType,
2361                         QualType CompResultType,
2362                         SourceLocation OpLoc)
2363    : BinaryOperator(lhs, rhs, opc, ResType, OpLoc, true),
2364      ComputationLHSType(CompLHSType),
2365      ComputationResultType(CompResultType) {
2366    assert(isCompoundAssignmentOp() &&
2367           "Only should be used for compound assignments");
2368  }
2369
2370  /// \brief Build an empty compound assignment operator expression.
2371  explicit CompoundAssignOperator(EmptyShell Empty)
2372    : BinaryOperator(CompoundAssignOperatorClass, Empty) { }
2373
2374  // The two computation types are the type the LHS is converted
2375  // to for the computation and the type of the result; the two are
2376  // distinct in a few cases (specifically, int+=ptr and ptr-=ptr).
2377  QualType getComputationLHSType() const { return ComputationLHSType; }
2378  void setComputationLHSType(QualType T) { ComputationLHSType = T; }
2379
2380  QualType getComputationResultType() const { return ComputationResultType; }
2381  void setComputationResultType(QualType T) { ComputationResultType = T; }
2382
2383  static bool classof(const CompoundAssignOperator *) { return true; }
2384  static bool classof(const Stmt *S) {
2385    return S->getStmtClass() == CompoundAssignOperatorClass;
2386  }
2387};
2388
2389/// ConditionalOperator - The ?: operator.  Note that LHS may be null when the
2390/// GNU "missing LHS" extension is in use.
2391///
2392class ConditionalOperator : public Expr {
2393  enum { COND, LHS, RHS, END_EXPR };
2394  Stmt* SubExprs[END_EXPR]; // Left/Middle/Right hand sides.
2395  Stmt* Save;
2396  SourceLocation QuestionLoc, ColonLoc;
2397public:
2398  ConditionalOperator(Expr *cond, SourceLocation QLoc, Expr *lhs,
2399                      SourceLocation CLoc, Expr *rhs, Expr *save, QualType t)
2400    : Expr(ConditionalOperatorClass, t,
2401           // FIXME: the type of the conditional operator doesn't
2402           // depend on the type of the conditional, but the standard
2403           // seems to imply that it could. File a bug!
2404           ((lhs && lhs->isTypeDependent()) || (rhs && rhs->isTypeDependent())),
2405           (cond->isValueDependent() ||
2406            (lhs && lhs->isValueDependent()) ||
2407            (rhs && rhs->isValueDependent()))),
2408      QuestionLoc(QLoc),
2409      ColonLoc(CLoc) {
2410    SubExprs[COND] = cond;
2411    SubExprs[LHS] = lhs;
2412    SubExprs[RHS] = rhs;
2413    Save = save;
2414  }
2415
2416  /// \brief Build an empty conditional operator.
2417  explicit ConditionalOperator(EmptyShell Empty)
2418    : Expr(ConditionalOperatorClass, Empty) { }
2419
2420  // getCond - Return the expression representing the condition for
2421  //  the ?: operator.
2422  Expr *getCond() const { return cast<Expr>(SubExprs[COND]); }
2423  void setCond(Expr *E) { SubExprs[COND] = E; }
2424
2425  // getTrueExpr - Return the subexpression representing the value of the ?:
2426  //  expression if the condition evaluates to true.
2427  Expr *getTrueExpr() const {
2428    return cast<Expr>(SubExprs[LHS]);
2429  }
2430
2431  // getFalseExpr - Return the subexpression representing the value of the ?:
2432  // expression if the condition evaluates to false. This is the same as getRHS.
2433  Expr *getFalseExpr() const { return cast<Expr>(SubExprs[RHS]); }
2434
2435  // getSaveExpr - In most cases this value will be null. Except a GCC extension
2436  // allows the left subexpression to be omitted, and instead of that condition
2437  // be returned. e.g: x ?: y is shorthand for x ? x : y, except that the
2438  // expression "x" is only evaluated once. Under this senario, this function
2439  // returns the original, non-converted condition expression for the ?:operator
2440  Expr *getSaveExpr() const { return Save? cast<Expr>(Save) : (Expr*)0; }
2441
2442  Expr *getLHS() const { return Save ? 0 : cast<Expr>(SubExprs[LHS]); }
2443  void setLHS(Expr *E) { SubExprs[LHS] = E; }
2444
2445  Expr *getRHS() const { return cast<Expr>(SubExprs[RHS]); }
2446  void setRHS(Expr *E) { SubExprs[RHS] = E; }
2447
2448  Expr *getSAVE() const { return Save? cast<Expr>(Save) : (Expr*)0; }
2449  void setSAVE(Expr *E) { Save = E; }
2450
2451  SourceLocation getQuestionLoc() const { return QuestionLoc; }
2452  void setQuestionLoc(SourceLocation L) { QuestionLoc = L; }
2453
2454  SourceLocation getColonLoc() const { return ColonLoc; }
2455  void setColonLoc(SourceLocation L) { ColonLoc = L; }
2456
2457  virtual SourceRange getSourceRange() const {
2458    return SourceRange(getCond()->getLocStart(), getRHS()->getLocEnd());
2459  }
2460  static bool classof(const Stmt *T) {
2461    return T->getStmtClass() == ConditionalOperatorClass;
2462  }
2463  static bool classof(const ConditionalOperator *) { return true; }
2464
2465  // Iterators
2466  virtual child_iterator child_begin();
2467  virtual child_iterator child_end();
2468};
2469
2470/// AddrLabelExpr - The GNU address of label extension, representing &&label.
2471class AddrLabelExpr : public Expr {
2472  SourceLocation AmpAmpLoc, LabelLoc;
2473  LabelStmt *Label;
2474public:
2475  AddrLabelExpr(SourceLocation AALoc, SourceLocation LLoc, LabelStmt *L,
2476                QualType t)
2477    : Expr(AddrLabelExprClass, t, false, false),
2478      AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {}
2479
2480  /// \brief Build an empty address of a label expression.
2481  explicit AddrLabelExpr(EmptyShell Empty)
2482    : Expr(AddrLabelExprClass, Empty) { }
2483
2484  SourceLocation getAmpAmpLoc() const { return AmpAmpLoc; }
2485  void setAmpAmpLoc(SourceLocation L) { AmpAmpLoc = L; }
2486  SourceLocation getLabelLoc() const { return LabelLoc; }
2487  void setLabelLoc(SourceLocation L) { LabelLoc = L; }
2488
2489  virtual SourceRange getSourceRange() const {
2490    return SourceRange(AmpAmpLoc, LabelLoc);
2491  }
2492
2493  LabelStmt *getLabel() const { return Label; }
2494  void setLabel(LabelStmt *S) { Label = S; }
2495
2496  static bool classof(const Stmt *T) {
2497    return T->getStmtClass() == AddrLabelExprClass;
2498  }
2499  static bool classof(const AddrLabelExpr *) { return true; }
2500
2501  // Iterators
2502  virtual child_iterator child_begin();
2503  virtual child_iterator child_end();
2504};
2505
2506/// StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
2507/// The StmtExpr contains a single CompoundStmt node, which it evaluates and
2508/// takes the value of the last subexpression.
2509class StmtExpr : public Expr {
2510  Stmt *SubStmt;
2511  SourceLocation LParenLoc, RParenLoc;
2512public:
2513  // FIXME: Does type-dependence need to be computed differently?
2514  StmtExpr(CompoundStmt *substmt, QualType T,
2515           SourceLocation lp, SourceLocation rp) :
2516    Expr(StmtExprClass, T, T->isDependentType(), false),
2517    SubStmt(substmt), LParenLoc(lp), RParenLoc(rp) { }
2518
2519  /// \brief Build an empty statement expression.
2520  explicit StmtExpr(EmptyShell Empty) : Expr(StmtExprClass, Empty) { }
2521
2522  CompoundStmt *getSubStmt() { return cast<CompoundStmt>(SubStmt); }
2523  const CompoundStmt *getSubStmt() const { return cast<CompoundStmt>(SubStmt); }
2524  void setSubStmt(CompoundStmt *S) { SubStmt = S; }
2525
2526  virtual SourceRange getSourceRange() const {
2527    return SourceRange(LParenLoc, RParenLoc);
2528  }
2529
2530  SourceLocation getLParenLoc() const { return LParenLoc; }
2531  void setLParenLoc(SourceLocation L) { LParenLoc = L; }
2532  SourceLocation getRParenLoc() const { return RParenLoc; }
2533  void setRParenLoc(SourceLocation L) { RParenLoc = L; }
2534
2535  static bool classof(const Stmt *T) {
2536    return T->getStmtClass() == StmtExprClass;
2537  }
2538  static bool classof(const StmtExpr *) { return true; }
2539
2540  // Iterators
2541  virtual child_iterator child_begin();
2542  virtual child_iterator child_end();
2543};
2544
2545/// TypesCompatibleExpr - GNU builtin-in function __builtin_types_compatible_p.
2546/// This AST node represents a function that returns 1 if two *types* (not
2547/// expressions) are compatible. The result of this built-in function can be
2548/// used in integer constant expressions.
2549class TypesCompatibleExpr : public Expr {
2550  TypeSourceInfo *TInfo1;
2551  TypeSourceInfo *TInfo2;
2552  SourceLocation BuiltinLoc, RParenLoc;
2553public:
2554  TypesCompatibleExpr(QualType ReturnType, SourceLocation BLoc,
2555                      TypeSourceInfo *tinfo1, TypeSourceInfo *tinfo2,
2556                      SourceLocation RP) :
2557    Expr(TypesCompatibleExprClass, ReturnType, false, false),
2558    TInfo1(tinfo1), TInfo2(tinfo2), BuiltinLoc(BLoc), RParenLoc(RP) {}
2559
2560  /// \brief Build an empty __builtin_type_compatible_p expression.
2561  explicit TypesCompatibleExpr(EmptyShell Empty)
2562    : Expr(TypesCompatibleExprClass, Empty) { }
2563
2564  TypeSourceInfo *getArgTInfo1() const { return TInfo1; }
2565  void setArgTInfo1(TypeSourceInfo *TInfo) { TInfo1 = TInfo; }
2566  TypeSourceInfo *getArgTInfo2() const { return TInfo2; }
2567  void setArgTInfo2(TypeSourceInfo *TInfo) { TInfo2 = TInfo; }
2568
2569  QualType getArgType1() const { return TInfo1->getType(); }
2570  QualType getArgType2() const { return TInfo2->getType(); }
2571
2572  SourceLocation getBuiltinLoc() const { return BuiltinLoc; }
2573  void setBuiltinLoc(SourceLocation L) { BuiltinLoc = L; }
2574
2575  SourceLocation getRParenLoc() const { return RParenLoc; }
2576  void setRParenLoc(SourceLocation L) { RParenLoc = L; }
2577
2578  virtual SourceRange getSourceRange() const {
2579    return SourceRange(BuiltinLoc, RParenLoc);
2580  }
2581  static bool classof(const Stmt *T) {
2582    return T->getStmtClass() == TypesCompatibleExprClass;
2583  }
2584  static bool classof(const TypesCompatibleExpr *) { return true; }
2585
2586  // Iterators
2587  virtual child_iterator child_begin();
2588  virtual child_iterator child_end();
2589};
2590
2591/// ShuffleVectorExpr - clang-specific builtin-in function
2592/// __builtin_shufflevector.
2593/// This AST node represents a operator that does a constant
2594/// shuffle, similar to LLVM's shufflevector instruction. It takes
2595/// two vectors and a variable number of constant indices,
2596/// and returns the appropriately shuffled vector.
2597class ShuffleVectorExpr : public Expr {
2598  SourceLocation BuiltinLoc, RParenLoc;
2599
2600  // SubExprs - the list of values passed to the __builtin_shufflevector
2601  // function. The first two are vectors, and the rest are constant
2602  // indices.  The number of values in this list is always
2603  // 2+the number of indices in the vector type.
2604  Stmt **SubExprs;
2605  unsigned NumExprs;
2606
2607public:
2608  // FIXME: Can a shufflevector be value-dependent?  Does type-dependence need
2609  // to be computed differently?
2610  ShuffleVectorExpr(ASTContext &C, Expr **args, unsigned nexpr,
2611                    QualType Type, SourceLocation BLoc,
2612                    SourceLocation RP) :
2613    Expr(ShuffleVectorExprClass, Type, Type->isDependentType(), false),
2614    BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(nexpr) {
2615
2616    SubExprs = new (C) Stmt*[nexpr];
2617    for (unsigned i = 0; i < nexpr; i++)
2618      SubExprs[i] = args[i];
2619  }
2620
2621  /// \brief Build an empty vector-shuffle expression.
2622  explicit ShuffleVectorExpr(EmptyShell Empty)
2623    : Expr(ShuffleVectorExprClass, Empty), SubExprs(0) { }
2624
2625  SourceLocation getBuiltinLoc() const { return BuiltinLoc; }
2626  void setBuiltinLoc(SourceLocation L) { BuiltinLoc = L; }
2627
2628  SourceLocation getRParenLoc() const { return RParenLoc; }
2629  void setRParenLoc(SourceLocation L) { RParenLoc = L; }
2630
2631  virtual SourceRange getSourceRange() const {
2632    return SourceRange(BuiltinLoc, RParenLoc);
2633  }
2634  static bool classof(const Stmt *T) {
2635    return T->getStmtClass() == ShuffleVectorExprClass;
2636  }
2637  static bool classof(const ShuffleVectorExpr *) { return true; }
2638
2639  /// getNumSubExprs - Return the size of the SubExprs array.  This includes the
2640  /// constant expression, the actual arguments passed in, and the function
2641  /// pointers.
2642  unsigned getNumSubExprs() const { return NumExprs; }
2643
2644  /// getExpr - Return the Expr at the specified index.
2645  Expr *getExpr(unsigned Index) {
2646    assert((Index < NumExprs) && "Arg access out of range!");
2647    return cast<Expr>(SubExprs[Index]);
2648  }
2649  const Expr *getExpr(unsigned Index) const {
2650    assert((Index < NumExprs) && "Arg access out of range!");
2651    return cast<Expr>(SubExprs[Index]);
2652  }
2653
2654  void setExprs(ASTContext &C, Expr ** Exprs, unsigned NumExprs);
2655
2656  unsigned getShuffleMaskIdx(ASTContext &Ctx, unsigned N) {
2657    assert((N < NumExprs - 2) && "Shuffle idx out of range!");
2658    return getExpr(N+2)->EvaluateAsInt(Ctx).getZExtValue();
2659  }
2660
2661  // Iterators
2662  virtual child_iterator child_begin();
2663  virtual child_iterator child_end();
2664};
2665
2666/// ChooseExpr - GNU builtin-in function __builtin_choose_expr.
2667/// This AST node is similar to the conditional operator (?:) in C, with
2668/// the following exceptions:
2669/// - the test expression must be a integer constant expression.
2670/// - the expression returned acts like the chosen subexpression in every
2671///   visible way: the type is the same as that of the chosen subexpression,
2672///   and all predicates (whether it's an l-value, whether it's an integer
2673///   constant expression, etc.) return the same result as for the chosen
2674///   sub-expression.
2675class ChooseExpr : public Expr {
2676  enum { COND, LHS, RHS, END_EXPR };
2677  Stmt* SubExprs[END_EXPR]; // Left/Middle/Right hand sides.
2678  SourceLocation BuiltinLoc, RParenLoc;
2679public:
2680  ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, QualType t,
2681             SourceLocation RP, bool TypeDependent, bool ValueDependent)
2682    : Expr(ChooseExprClass, t, TypeDependent, ValueDependent),
2683      BuiltinLoc(BLoc), RParenLoc(RP) {
2684      SubExprs[COND] = cond;
2685      SubExprs[LHS] = lhs;
2686      SubExprs[RHS] = rhs;
2687    }
2688
2689  /// \brief Build an empty __builtin_choose_expr.
2690  explicit ChooseExpr(EmptyShell Empty) : Expr(ChooseExprClass, Empty) { }
2691
2692  /// isConditionTrue - Return whether the condition is true (i.e. not
2693  /// equal to zero).
2694  bool isConditionTrue(ASTContext &C) const;
2695
2696  /// getChosenSubExpr - Return the subexpression chosen according to the
2697  /// condition.
2698  Expr *getChosenSubExpr(ASTContext &C) const {
2699    return isConditionTrue(C) ? getLHS() : getRHS();
2700  }
2701
2702  Expr *getCond() const { return cast<Expr>(SubExprs[COND]); }
2703  void setCond(Expr *E) { SubExprs[COND] = E; }
2704  Expr *getLHS() const { return cast<Expr>(SubExprs[LHS]); }
2705  void setLHS(Expr *E) { SubExprs[LHS] = E; }
2706  Expr *getRHS() const { return cast<Expr>(SubExprs[RHS]); }
2707  void setRHS(Expr *E) { SubExprs[RHS] = E; }
2708
2709  SourceLocation getBuiltinLoc() const { return BuiltinLoc; }
2710  void setBuiltinLoc(SourceLocation L) { BuiltinLoc = L; }
2711
2712  SourceLocation getRParenLoc() const { return RParenLoc; }
2713  void setRParenLoc(SourceLocation L) { RParenLoc = L; }
2714
2715  virtual SourceRange getSourceRange() const {
2716    return SourceRange(BuiltinLoc, RParenLoc);
2717  }
2718  static bool classof(const Stmt *T) {
2719    return T->getStmtClass() == ChooseExprClass;
2720  }
2721  static bool classof(const ChooseExpr *) { return true; }
2722
2723  // Iterators
2724  virtual child_iterator child_begin();
2725  virtual child_iterator child_end();
2726};
2727
2728/// GNUNullExpr - Implements the GNU __null extension, which is a name
2729/// for a null pointer constant that has integral type (e.g., int or
2730/// long) and is the same size and alignment as a pointer. The __null
2731/// extension is typically only used by system headers, which define
2732/// NULL as __null in C++ rather than using 0 (which is an integer
2733/// that may not match the size of a pointer).
2734class GNUNullExpr : public Expr {
2735  /// TokenLoc - The location of the __null keyword.
2736  SourceLocation TokenLoc;
2737
2738public:
2739  GNUNullExpr(QualType Ty, SourceLocation Loc)
2740    : Expr(GNUNullExprClass, Ty, false, false), TokenLoc(Loc) { }
2741
2742  /// \brief Build an empty GNU __null expression.
2743  explicit GNUNullExpr(EmptyShell Empty) : Expr(GNUNullExprClass, Empty) { }
2744
2745  /// getTokenLocation - The location of the __null token.
2746  SourceLocation getTokenLocation() const { return TokenLoc; }
2747  void setTokenLocation(SourceLocation L) { TokenLoc = L; }
2748
2749  virtual SourceRange getSourceRange() const {
2750    return SourceRange(TokenLoc);
2751  }
2752  static bool classof(const Stmt *T) {
2753    return T->getStmtClass() == GNUNullExprClass;
2754  }
2755  static bool classof(const GNUNullExpr *) { return true; }
2756
2757  // Iterators
2758  virtual child_iterator child_begin();
2759  virtual child_iterator child_end();
2760};
2761
2762/// VAArgExpr, used for the builtin function __builtin_va_arg.
2763class VAArgExpr : public Expr {
2764  Stmt *Val;
2765  TypeSourceInfo *TInfo;
2766  SourceLocation BuiltinLoc, RParenLoc;
2767public:
2768  VAArgExpr(SourceLocation BLoc, Expr* e, TypeSourceInfo *TInfo,
2769            SourceLocation RPLoc, QualType t)
2770    : Expr(VAArgExprClass, t, t->isDependentType(), false),
2771      Val(e), TInfo(TInfo),
2772      BuiltinLoc(BLoc),
2773      RParenLoc(RPLoc) { }
2774
2775  /// \brief Create an empty __builtin_va_arg expression.
2776  explicit VAArgExpr(EmptyShell Empty) : Expr(VAArgExprClass, Empty) { }
2777
2778  const Expr *getSubExpr() const { return cast<Expr>(Val); }
2779  Expr *getSubExpr() { return cast<Expr>(Val); }
2780  void setSubExpr(Expr *E) { Val = E; }
2781
2782  TypeSourceInfo *getWrittenTypeInfo() const { return TInfo; }
2783  void setWrittenTypeInfo(TypeSourceInfo *TI) { TInfo = TI; }
2784
2785  SourceLocation getBuiltinLoc() const { return BuiltinLoc; }
2786  void setBuiltinLoc(SourceLocation L) { BuiltinLoc = L; }
2787
2788  SourceLocation getRParenLoc() const { return RParenLoc; }
2789  void setRParenLoc(SourceLocation L) { RParenLoc = L; }
2790
2791  virtual SourceRange getSourceRange() const {
2792    return SourceRange(BuiltinLoc, RParenLoc);
2793  }
2794  static bool classof(const Stmt *T) {
2795    return T->getStmtClass() == VAArgExprClass;
2796  }
2797  static bool classof(const VAArgExpr *) { return true; }
2798
2799  // Iterators
2800  virtual child_iterator child_begin();
2801  virtual child_iterator child_end();
2802};
2803
2804/// @brief Describes an C or C++ initializer list.
2805///
2806/// InitListExpr describes an initializer list, which can be used to
2807/// initialize objects of different types, including
2808/// struct/class/union types, arrays, and vectors. For example:
2809///
2810/// @code
2811/// struct foo x = { 1, { 2, 3 } };
2812/// @endcode
2813///
2814/// Prior to semantic analysis, an initializer list will represent the
2815/// initializer list as written by the user, but will have the
2816/// placeholder type "void". This initializer list is called the
2817/// syntactic form of the initializer, and may contain C99 designated
2818/// initializers (represented as DesignatedInitExprs), initializations
2819/// of subobject members without explicit braces, and so on. Clients
2820/// interested in the original syntax of the initializer list should
2821/// use the syntactic form of the initializer list.
2822///
2823/// After semantic analysis, the initializer list will represent the
2824/// semantic form of the initializer, where the initializations of all
2825/// subobjects are made explicit with nested InitListExpr nodes and
2826/// C99 designators have been eliminated by placing the designated
2827/// initializations into the subobject they initialize. Additionally,
2828/// any "holes" in the initialization, where no initializer has been
2829/// specified for a particular subobject, will be replaced with
2830/// implicitly-generated ImplicitValueInitExpr expressions that
2831/// value-initialize the subobjects. Note, however, that the
2832/// initializer lists may still have fewer initializers than there are
2833/// elements to initialize within the object.
2834///
2835/// Given the semantic form of the initializer list, one can retrieve
2836/// the original syntactic form of that initializer list (if it
2837/// exists) using getSyntacticForm(). Since many initializer lists
2838/// have the same syntactic and semantic forms, getSyntacticForm() may
2839/// return NULL, indicating that the current initializer list also
2840/// serves as its syntactic form.
2841class InitListExpr : public Expr {
2842  // FIXME: Eliminate this vector in favor of ASTContext allocation
2843  typedef ASTVector<Stmt *> InitExprsTy;
2844  InitExprsTy InitExprs;
2845  SourceLocation LBraceLoc, RBraceLoc;
2846
2847  /// Contains the initializer list that describes the syntactic form
2848  /// written in the source code.
2849  InitListExpr *SyntacticForm;
2850
2851  /// If this initializer list initializes a union, specifies which
2852  /// field within the union will be initialized.
2853  FieldDecl *UnionFieldInit;
2854
2855  /// Whether this initializer list originally had a GNU array-range
2856  /// designator in it. This is a temporary marker used by CodeGen.
2857  bool HadArrayRangeDesignator;
2858
2859public:
2860  InitListExpr(ASTContext &C, SourceLocation lbraceloc,
2861               Expr **initexprs, unsigned numinits,
2862               SourceLocation rbraceloc);
2863
2864  /// \brief Build an empty initializer list.
2865  explicit InitListExpr(ASTContext &C, EmptyShell Empty)
2866    : Expr(InitListExprClass, Empty), InitExprs(C) { }
2867
2868  unsigned getNumInits() const { return InitExprs.size(); }
2869
2870  const Expr *getInit(unsigned Init) const {
2871    assert(Init < getNumInits() && "Initializer access out of range!");
2872    return cast_or_null<Expr>(InitExprs[Init]);
2873  }
2874
2875  Expr *getInit(unsigned Init) {
2876    assert(Init < getNumInits() && "Initializer access out of range!");
2877    return cast_or_null<Expr>(InitExprs[Init]);
2878  }
2879
2880  void setInit(unsigned Init, Expr *expr) {
2881    assert(Init < getNumInits() && "Initializer access out of range!");
2882    InitExprs[Init] = expr;
2883  }
2884
2885  /// \brief Reserve space for some number of initializers.
2886  void reserveInits(ASTContext &C, unsigned NumInits);
2887
2888  /// @brief Specify the number of initializers
2889  ///
2890  /// If there are more than @p NumInits initializers, the remaining
2891  /// initializers will be destroyed. If there are fewer than @p
2892  /// NumInits initializers, NULL expressions will be added for the
2893  /// unknown initializers.
2894  void resizeInits(ASTContext &Context, unsigned NumInits);
2895
2896  /// @brief Updates the initializer at index @p Init with the new
2897  /// expression @p expr, and returns the old expression at that
2898  /// location.
2899  ///
2900  /// When @p Init is out of range for this initializer list, the
2901  /// initializer list will be extended with NULL expressions to
2902  /// accomodate the new entry.
2903  Expr *updateInit(ASTContext &C, unsigned Init, Expr *expr);
2904
2905  /// \brief If this initializes a union, specifies which field in the
2906  /// union to initialize.
2907  ///
2908  /// Typically, this field is the first named field within the
2909  /// union. However, a designated initializer can specify the
2910  /// initialization of a different field within the union.
2911  FieldDecl *getInitializedFieldInUnion() { return UnionFieldInit; }
2912  void setInitializedFieldInUnion(FieldDecl *FD) { UnionFieldInit = FD; }
2913
2914  // Explicit InitListExpr's originate from source code (and have valid source
2915  // locations). Implicit InitListExpr's are created by the semantic analyzer.
2916  bool isExplicit() {
2917    return LBraceLoc.isValid() && RBraceLoc.isValid();
2918  }
2919
2920  SourceLocation getLBraceLoc() const { return LBraceLoc; }
2921  void setLBraceLoc(SourceLocation Loc) { LBraceLoc = Loc; }
2922  SourceLocation getRBraceLoc() const { return RBraceLoc; }
2923  void setRBraceLoc(SourceLocation Loc) { RBraceLoc = Loc; }
2924
2925  /// @brief Retrieve the initializer list that describes the
2926  /// syntactic form of the initializer.
2927  ///
2928  ///
2929  InitListExpr *getSyntacticForm() const { return SyntacticForm; }
2930  void setSyntacticForm(InitListExpr *Init) { SyntacticForm = Init; }
2931
2932  bool hadArrayRangeDesignator() const { return HadArrayRangeDesignator; }
2933  void sawArrayRangeDesignator(bool ARD = true) {
2934    HadArrayRangeDesignator = ARD;
2935  }
2936
2937  virtual SourceRange getSourceRange() const {
2938    return SourceRange(LBraceLoc, RBraceLoc);
2939  }
2940  static bool classof(const Stmt *T) {
2941    return T->getStmtClass() == InitListExprClass;
2942  }
2943  static bool classof(const InitListExpr *) { return true; }
2944
2945  // Iterators
2946  virtual child_iterator child_begin();
2947  virtual child_iterator child_end();
2948
2949  typedef InitExprsTy::iterator iterator;
2950  typedef InitExprsTy::const_iterator const_iterator;
2951  typedef InitExprsTy::reverse_iterator reverse_iterator;
2952  typedef InitExprsTy::const_reverse_iterator const_reverse_iterator;
2953
2954  iterator begin() { return InitExprs.begin(); }
2955  const_iterator begin() const { return InitExprs.begin(); }
2956  iterator end() { return InitExprs.end(); }
2957  const_iterator end() const { return InitExprs.end(); }
2958  reverse_iterator rbegin() { return InitExprs.rbegin(); }
2959  const_reverse_iterator rbegin() const { return InitExprs.rbegin(); }
2960  reverse_iterator rend() { return InitExprs.rend(); }
2961  const_reverse_iterator rend() const { return InitExprs.rend(); }
2962};
2963
2964/// @brief Represents a C99 designated initializer expression.
2965///
2966/// A designated initializer expression (C99 6.7.8) contains one or
2967/// more designators (which can be field designators, array
2968/// designators, or GNU array-range designators) followed by an
2969/// expression that initializes the field or element(s) that the
2970/// designators refer to. For example, given:
2971///
2972/// @code
2973/// struct point {
2974///   double x;
2975///   double y;
2976/// };
2977/// struct point ptarray[10] = { [2].y = 1.0, [2].x = 2.0, [0].x = 1.0 };
2978/// @endcode
2979///
2980/// The InitListExpr contains three DesignatedInitExprs, the first of
2981/// which covers @c [2].y=1.0. This DesignatedInitExpr will have two
2982/// designators, one array designator for @c [2] followed by one field
2983/// designator for @c .y. The initalization expression will be 1.0.
2984class DesignatedInitExpr : public Expr {
2985public:
2986  /// \brief Forward declaration of the Designator class.
2987  class Designator;
2988
2989private:
2990  /// The location of the '=' or ':' prior to the actual initializer
2991  /// expression.
2992  SourceLocation EqualOrColonLoc;
2993
2994  /// Whether this designated initializer used the GNU deprecated
2995  /// syntax rather than the C99 '=' syntax.
2996  bool GNUSyntax : 1;
2997
2998  /// The number of designators in this initializer expression.
2999  unsigned NumDesignators : 15;
3000
3001  /// \brief The designators in this designated initialization
3002  /// expression.
3003  Designator *Designators;
3004
3005  /// The number of subexpressions of this initializer expression,
3006  /// which contains both the initializer and any additional
3007  /// expressions used by array and array-range designators.
3008  unsigned NumSubExprs : 16;
3009
3010
3011  DesignatedInitExpr(ASTContext &C, QualType Ty, unsigned NumDesignators,
3012                     const Designator *Designators,
3013                     SourceLocation EqualOrColonLoc, bool GNUSyntax,
3014                     Expr **IndexExprs, unsigned NumIndexExprs,
3015                     Expr *Init);
3016
3017  explicit DesignatedInitExpr(unsigned NumSubExprs)
3018    : Expr(DesignatedInitExprClass, EmptyShell()),
3019      NumDesignators(0), Designators(0), NumSubExprs(NumSubExprs) { }
3020
3021public:
3022  /// A field designator, e.g., ".x".
3023  struct FieldDesignator {
3024    /// Refers to the field that is being initialized. The low bit
3025    /// of this field determines whether this is actually a pointer
3026    /// to an IdentifierInfo (if 1) or a FieldDecl (if 0). When
3027    /// initially constructed, a field designator will store an
3028    /// IdentifierInfo*. After semantic analysis has resolved that
3029    /// name, the field designator will instead store a FieldDecl*.
3030    uintptr_t NameOrField;
3031
3032    /// The location of the '.' in the designated initializer.
3033    unsigned DotLoc;
3034
3035    /// The location of the field name in the designated initializer.
3036    unsigned FieldLoc;
3037  };
3038
3039  /// An array or GNU array-range designator, e.g., "[9]" or "[10..15]".
3040  struct ArrayOrRangeDesignator {
3041    /// Location of the first index expression within the designated
3042    /// initializer expression's list of subexpressions.
3043    unsigned Index;
3044    /// The location of the '[' starting the array range designator.
3045    unsigned LBracketLoc;
3046    /// The location of the ellipsis separating the start and end
3047    /// indices. Only valid for GNU array-range designators.
3048    unsigned EllipsisLoc;
3049    /// The location of the ']' terminating the array range designator.
3050    unsigned RBracketLoc;
3051  };
3052
3053  /// @brief Represents a single C99 designator.
3054  ///
3055  /// @todo This class is infuriatingly similar to clang::Designator,
3056  /// but minor differences (storing indices vs. storing pointers)
3057  /// keep us from reusing it. Try harder, later, to rectify these
3058  /// differences.
3059  class Designator {
3060    /// @brief The kind of designator this describes.
3061    enum {
3062      FieldDesignator,
3063      ArrayDesignator,
3064      ArrayRangeDesignator
3065    } Kind;
3066
3067    union {
3068      /// A field designator, e.g., ".x".
3069      struct FieldDesignator Field;
3070      /// An array or GNU array-range designator, e.g., "[9]" or "[10..15]".
3071      struct ArrayOrRangeDesignator ArrayOrRange;
3072    };
3073    friend class DesignatedInitExpr;
3074
3075  public:
3076    Designator() {}
3077
3078    /// @brief Initializes a field designator.
3079    Designator(const IdentifierInfo *FieldName, SourceLocation DotLoc,
3080               SourceLocation FieldLoc)
3081      : Kind(FieldDesignator) {
3082      Field.NameOrField = reinterpret_cast<uintptr_t>(FieldName) | 0x01;
3083      Field.DotLoc = DotLoc.getRawEncoding();
3084      Field.FieldLoc = FieldLoc.getRawEncoding();
3085    }
3086
3087    /// @brief Initializes an array designator.
3088    Designator(unsigned Index, SourceLocation LBracketLoc,
3089               SourceLocation RBracketLoc)
3090      : Kind(ArrayDesignator) {
3091      ArrayOrRange.Index = Index;
3092      ArrayOrRange.LBracketLoc = LBracketLoc.getRawEncoding();
3093      ArrayOrRange.EllipsisLoc = SourceLocation().getRawEncoding();
3094      ArrayOrRange.RBracketLoc = RBracketLoc.getRawEncoding();
3095    }
3096
3097    /// @brief Initializes a GNU array-range designator.
3098    Designator(unsigned Index, SourceLocation LBracketLoc,
3099               SourceLocation EllipsisLoc, SourceLocation RBracketLoc)
3100      : Kind(ArrayRangeDesignator) {
3101      ArrayOrRange.Index = Index;
3102      ArrayOrRange.LBracketLoc = LBracketLoc.getRawEncoding();
3103      ArrayOrRange.EllipsisLoc = EllipsisLoc.getRawEncoding();
3104      ArrayOrRange.RBracketLoc = RBracketLoc.getRawEncoding();
3105    }
3106
3107    bool isFieldDesignator() const { return Kind == FieldDesignator; }
3108    bool isArrayDesignator() const { return Kind == ArrayDesignator; }
3109    bool isArrayRangeDesignator() const { return Kind == ArrayRangeDesignator; }
3110
3111    IdentifierInfo * getFieldName();
3112
3113    FieldDecl *getField() {
3114      assert(Kind == FieldDesignator && "Only valid on a field designator");
3115      if (Field.NameOrField & 0x01)
3116        return 0;
3117      else
3118        return reinterpret_cast<FieldDecl *>(Field.NameOrField);
3119    }
3120
3121    void setField(FieldDecl *FD) {
3122      assert(Kind == FieldDesignator && "Only valid on a field designator");
3123      Field.NameOrField = reinterpret_cast<uintptr_t>(FD);
3124    }
3125
3126    SourceLocation getDotLoc() const {
3127      assert(Kind == FieldDesignator && "Only valid on a field designator");
3128      return SourceLocation::getFromRawEncoding(Field.DotLoc);
3129    }
3130
3131    SourceLocation getFieldLoc() const {
3132      assert(Kind == FieldDesignator && "Only valid on a field designator");
3133      return SourceLocation::getFromRawEncoding(Field.FieldLoc);
3134    }
3135
3136    SourceLocation getLBracketLoc() const {
3137      assert((Kind == ArrayDesignator || Kind == ArrayRangeDesignator) &&
3138             "Only valid on an array or array-range designator");
3139      return SourceLocation::getFromRawEncoding(ArrayOrRange.LBracketLoc);
3140    }
3141
3142    SourceLocation getRBracketLoc() const {
3143      assert((Kind == ArrayDesignator || Kind == ArrayRangeDesignator) &&
3144             "Only valid on an array or array-range designator");
3145      return SourceLocation::getFromRawEncoding(ArrayOrRange.RBracketLoc);
3146    }
3147
3148    SourceLocation getEllipsisLoc() const {
3149      assert(Kind == ArrayRangeDesignator &&
3150             "Only valid on an array-range designator");
3151      return SourceLocation::getFromRawEncoding(ArrayOrRange.EllipsisLoc);
3152    }
3153
3154    unsigned getFirstExprIndex() const {
3155      assert((Kind == ArrayDesignator || Kind == ArrayRangeDesignator) &&
3156             "Only valid on an array or array-range designator");
3157      return ArrayOrRange.Index;
3158    }
3159
3160    SourceLocation getStartLocation() const {
3161      if (Kind == FieldDesignator)
3162        return getDotLoc().isInvalid()? getFieldLoc() : getDotLoc();
3163      else
3164        return getLBracketLoc();
3165    }
3166  };
3167
3168  static DesignatedInitExpr *Create(ASTContext &C, Designator *Designators,
3169                                    unsigned NumDesignators,
3170                                    Expr **IndexExprs, unsigned NumIndexExprs,
3171                                    SourceLocation EqualOrColonLoc,
3172                                    bool GNUSyntax, Expr *Init);
3173
3174  static DesignatedInitExpr *CreateEmpty(ASTContext &C, unsigned NumIndexExprs);
3175
3176  /// @brief Returns the number of designators in this initializer.
3177  unsigned size() const { return NumDesignators; }
3178
3179  // Iterator access to the designators.
3180  typedef Designator* designators_iterator;
3181  designators_iterator designators_begin() { return Designators; }
3182  designators_iterator designators_end() {
3183    return Designators + NumDesignators;
3184  }
3185
3186  Designator *getDesignator(unsigned Idx) { return &designators_begin()[Idx]; }
3187
3188  void setDesignators(ASTContext &C, const Designator *Desigs,
3189                      unsigned NumDesigs);
3190
3191  Expr *getArrayIndex(const Designator& D);
3192  Expr *getArrayRangeStart(const Designator& D);
3193  Expr *getArrayRangeEnd(const Designator& D);
3194
3195  /// @brief Retrieve the location of the '=' that precedes the
3196  /// initializer value itself, if present.
3197  SourceLocation getEqualOrColonLoc() const { return EqualOrColonLoc; }
3198  void setEqualOrColonLoc(SourceLocation L) { EqualOrColonLoc = L; }
3199
3200  /// @brief Determines whether this designated initializer used the
3201  /// deprecated GNU syntax for designated initializers.
3202  bool usesGNUSyntax() const { return GNUSyntax; }
3203  void setGNUSyntax(bool GNU) { GNUSyntax = GNU; }
3204
3205  /// @brief Retrieve the initializer value.
3206  Expr *getInit() const {
3207    return cast<Expr>(*const_cast<DesignatedInitExpr*>(this)->child_begin());
3208  }
3209
3210  void setInit(Expr *init) {
3211    *child_begin() = init;
3212  }
3213
3214  /// \brief Retrieve the total number of subexpressions in this
3215  /// designated initializer expression, including the actual
3216  /// initialized value and any expressions that occur within array
3217  /// and array-range designators.
3218  unsigned getNumSubExprs() const { return NumSubExprs; }
3219
3220  Expr *getSubExpr(unsigned Idx) {
3221    assert(Idx < NumSubExprs && "Subscript out of range");
3222    char* Ptr = static_cast<char*>(static_cast<void *>(this));
3223    Ptr += sizeof(DesignatedInitExpr);
3224    return reinterpret_cast<Expr**>(reinterpret_cast<void**>(Ptr))[Idx];
3225  }
3226
3227  void setSubExpr(unsigned Idx, Expr *E) {
3228    assert(Idx < NumSubExprs && "Subscript out of range");
3229    char* Ptr = static_cast<char*>(static_cast<void *>(this));
3230    Ptr += sizeof(DesignatedInitExpr);
3231    reinterpret_cast<Expr**>(reinterpret_cast<void**>(Ptr))[Idx] = E;
3232  }
3233
3234  /// \brief Replaces the designator at index @p Idx with the series
3235  /// of designators in [First, Last).
3236  void ExpandDesignator(ASTContext &C, unsigned Idx, const Designator *First,
3237                        const Designator *Last);
3238
3239  virtual SourceRange getSourceRange() const;
3240
3241  static bool classof(const Stmt *T) {
3242    return T->getStmtClass() == DesignatedInitExprClass;
3243  }
3244  static bool classof(const DesignatedInitExpr *) { return true; }
3245
3246  // Iterators
3247  virtual child_iterator child_begin();
3248  virtual child_iterator child_end();
3249};
3250
3251/// \brief Represents an implicitly-generated value initialization of
3252/// an object of a given type.
3253///
3254/// Implicit value initializations occur within semantic initializer
3255/// list expressions (InitListExpr) as placeholders for subobject
3256/// initializations not explicitly specified by the user.
3257///
3258/// \see InitListExpr
3259class ImplicitValueInitExpr : public Expr {
3260public:
3261  explicit ImplicitValueInitExpr(QualType ty)
3262    : Expr(ImplicitValueInitExprClass, ty, false, false) { }
3263
3264  /// \brief Construct an empty implicit value initialization.
3265  explicit ImplicitValueInitExpr(EmptyShell Empty)
3266    : Expr(ImplicitValueInitExprClass, Empty) { }
3267
3268  static bool classof(const Stmt *T) {
3269    return T->getStmtClass() == ImplicitValueInitExprClass;
3270  }
3271  static bool classof(const ImplicitValueInitExpr *) { return true; }
3272
3273  virtual SourceRange getSourceRange() const {
3274    return SourceRange();
3275  }
3276
3277  // Iterators
3278  virtual child_iterator child_begin();
3279  virtual child_iterator child_end();
3280};
3281
3282
3283class ParenListExpr : public Expr {
3284  Stmt **Exprs;
3285  unsigned NumExprs;
3286  SourceLocation LParenLoc, RParenLoc;
3287
3288public:
3289  ParenListExpr(ASTContext& C, SourceLocation lparenloc, Expr **exprs,
3290                unsigned numexprs, SourceLocation rparenloc);
3291
3292  /// \brief Build an empty paren list.
3293  explicit ParenListExpr(EmptyShell Empty) : Expr(ParenListExprClass, Empty) { }
3294
3295  unsigned getNumExprs() const { return NumExprs; }
3296
3297  const Expr* getExpr(unsigned Init) const {
3298    assert(Init < getNumExprs() && "Initializer access out of range!");
3299    return cast_or_null<Expr>(Exprs[Init]);
3300  }
3301
3302  Expr* getExpr(unsigned Init) {
3303    assert(Init < getNumExprs() && "Initializer access out of range!");
3304    return cast_or_null<Expr>(Exprs[Init]);
3305  }
3306
3307  Expr **getExprs() { return reinterpret_cast<Expr **>(Exprs); }
3308
3309  SourceLocation getLParenLoc() const { return LParenLoc; }
3310  SourceLocation getRParenLoc() const { return RParenLoc; }
3311
3312  virtual SourceRange getSourceRange() const {
3313    return SourceRange(LParenLoc, RParenLoc);
3314  }
3315  static bool classof(const Stmt *T) {
3316    return T->getStmtClass() == ParenListExprClass;
3317  }
3318  static bool classof(const ParenListExpr *) { return true; }
3319
3320  // Iterators
3321  virtual child_iterator child_begin();
3322  virtual child_iterator child_end();
3323
3324  friend class ASTStmtReader;
3325  friend class ASTStmtWriter;
3326};
3327
3328
3329//===----------------------------------------------------------------------===//
3330// Clang Extensions
3331//===----------------------------------------------------------------------===//
3332
3333
3334/// ExtVectorElementExpr - This represents access to specific elements of a
3335/// vector, and may occur on the left hand side or right hand side.  For example
3336/// the following is legal:  "V.xy = V.zw" if V is a 4 element extended vector.
3337///
3338/// Note that the base may have either vector or pointer to vector type, just
3339/// like a struct field reference.
3340///
3341class ExtVectorElementExpr : public Expr {
3342  Stmt *Base;
3343  IdentifierInfo *Accessor;
3344  SourceLocation AccessorLoc;
3345public:
3346  ExtVectorElementExpr(QualType ty, Expr *base, IdentifierInfo &accessor,
3347                       SourceLocation loc)
3348    : Expr(ExtVectorElementExprClass, ty, base->isTypeDependent(),
3349           base->isValueDependent()),
3350      Base(base), Accessor(&accessor), AccessorLoc(loc) {}
3351
3352  /// \brief Build an empty vector element expression.
3353  explicit ExtVectorElementExpr(EmptyShell Empty)
3354    : Expr(ExtVectorElementExprClass, Empty) { }
3355
3356  const Expr *getBase() const { return cast<Expr>(Base); }
3357  Expr *getBase() { return cast<Expr>(Base); }
3358  void setBase(Expr *E) { Base = E; }
3359
3360  IdentifierInfo &getAccessor() const { return *Accessor; }
3361  void setAccessor(IdentifierInfo *II) { Accessor = II; }
3362
3363  SourceLocation getAccessorLoc() const { return AccessorLoc; }
3364  void setAccessorLoc(SourceLocation L) { AccessorLoc = L; }
3365
3366  /// getNumElements - Get the number of components being selected.
3367  unsigned getNumElements() const;
3368
3369  /// containsDuplicateElements - Return true if any element access is
3370  /// repeated.
3371  bool containsDuplicateElements() const;
3372
3373  /// getEncodedElementAccess - Encode the elements accessed into an llvm
3374  /// aggregate Constant of ConstantInt(s).
3375  void getEncodedElementAccess(llvm::SmallVectorImpl<unsigned> &Elts) const;
3376
3377  virtual SourceRange getSourceRange() const {
3378    return SourceRange(getBase()->getLocStart(), AccessorLoc);
3379  }
3380
3381  /// isArrow - Return true if the base expression is a pointer to vector,
3382  /// return false if the base expression is a vector.
3383  bool isArrow() const;
3384
3385  static bool classof(const Stmt *T) {
3386    return T->getStmtClass() == ExtVectorElementExprClass;
3387  }
3388  static bool classof(const ExtVectorElementExpr *) { return true; }
3389
3390  // Iterators
3391  virtual child_iterator child_begin();
3392  virtual child_iterator child_end();
3393};
3394
3395
3396/// BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
3397/// ^{ statement-body }   or   ^(int arg1, float arg2){ statement-body }
3398class BlockExpr : public Expr {
3399protected:
3400  BlockDecl *TheBlock;
3401  bool HasBlockDeclRefExprs;
3402public:
3403  BlockExpr(BlockDecl *BD, QualType ty, bool hasBlockDeclRefExprs)
3404    : Expr(BlockExprClass, ty, ty->isDependentType(), false),
3405      TheBlock(BD), HasBlockDeclRefExprs(hasBlockDeclRefExprs) {}
3406
3407  /// \brief Build an empty block expression.
3408  explicit BlockExpr(EmptyShell Empty) : Expr(BlockExprClass, Empty) { }
3409
3410  const BlockDecl *getBlockDecl() const { return TheBlock; }
3411  BlockDecl *getBlockDecl() { return TheBlock; }
3412  void setBlockDecl(BlockDecl *BD) { TheBlock = BD; }
3413
3414  // Convenience functions for probing the underlying BlockDecl.
3415  SourceLocation getCaretLocation() const;
3416  const Stmt *getBody() const;
3417  Stmt *getBody();
3418
3419  virtual SourceRange getSourceRange() const {
3420    return SourceRange(getCaretLocation(), getBody()->getLocEnd());
3421  }
3422
3423  /// getFunctionType - Return the underlying function type for this block.
3424  const FunctionType *getFunctionType() const;
3425
3426  /// hasBlockDeclRefExprs - Return true iff the block has BlockDeclRefExpr
3427  /// inside of the block that reference values outside the block.
3428  bool hasBlockDeclRefExprs() const { return HasBlockDeclRefExprs; }
3429  void setHasBlockDeclRefExprs(bool BDRE) { HasBlockDeclRefExprs = BDRE; }
3430
3431  static bool classof(const Stmt *T) {
3432    return T->getStmtClass() == BlockExprClass;
3433  }
3434  static bool classof(const BlockExpr *) { return true; }
3435
3436  // Iterators
3437  virtual child_iterator child_begin();
3438  virtual child_iterator child_end();
3439};
3440
3441/// BlockDeclRefExpr - A reference to a declared variable, function,
3442/// enum, etc.
3443class BlockDeclRefExpr : public Expr {
3444  ValueDecl *D;
3445  SourceLocation Loc;
3446  bool IsByRef : 1;
3447  bool ConstQualAdded : 1;
3448  Stmt *CopyConstructorVal;
3449public:
3450  // FIXME: Fix type/value dependence!
3451  BlockDeclRefExpr(ValueDecl *d, QualType t, SourceLocation l, bool ByRef,
3452                   bool constAdded = false,
3453                   Stmt *copyConstructorVal = 0)
3454  : Expr(BlockDeclRefExprClass, t, (!t.isNull() && t->isDependentType()),false),
3455    D(d), Loc(l), IsByRef(ByRef),
3456    ConstQualAdded(constAdded),  CopyConstructorVal(copyConstructorVal) {}
3457
3458  // \brief Build an empty reference to a declared variable in a
3459  // block.
3460  explicit BlockDeclRefExpr(EmptyShell Empty)
3461    : Expr(BlockDeclRefExprClass, Empty) { }
3462
3463  ValueDecl *getDecl() { return D; }
3464  const ValueDecl *getDecl() const { return D; }
3465  void setDecl(ValueDecl *VD) { D = VD; }
3466
3467  SourceLocation getLocation() const { return Loc; }
3468  void setLocation(SourceLocation L) { Loc = L; }
3469
3470  virtual SourceRange getSourceRange() const { return SourceRange(Loc); }
3471
3472  bool isByRef() const { return IsByRef; }
3473  void setByRef(bool BR) { IsByRef = BR; }
3474
3475  bool isConstQualAdded() const { return ConstQualAdded; }
3476  void setConstQualAdded(bool C) { ConstQualAdded = C; }
3477
3478  const Expr *getCopyConstructorExpr() const
3479    { return cast_or_null<Expr>(CopyConstructorVal); }
3480  Expr *getCopyConstructorExpr()
3481    { return cast_or_null<Expr>(CopyConstructorVal); }
3482  void setCopyConstructorExpr(Expr *E) { CopyConstructorVal = E; }
3483
3484  static bool classof(const Stmt *T) {
3485    return T->getStmtClass() == BlockDeclRefExprClass;
3486  }
3487  static bool classof(const BlockDeclRefExpr *) { return true; }
3488
3489  // Iterators
3490  virtual child_iterator child_begin();
3491  virtual child_iterator child_end();
3492};
3493
3494}  // end namespace clang
3495
3496#endif
3497