Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- Expr.cpp - Expression AST Node Implementation --------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Expr class and subclasses. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 14 | #include "clang/AST/Expr.h" |
Douglas Gregor | 0979c80 | 2009-08-31 21:41:48 +0000 | [diff] [blame] | 15 | #include "clang/AST/ExprCXX.h" |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 16 | #include "clang/AST/APValue.h" |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclObjC.h" |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclCXX.h" |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclTemplate.h" |
Anders Carlsson | 19cc4ab | 2009-07-18 19:43:29 +0000 | [diff] [blame] | 21 | #include "clang/AST/RecordLayout.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 22 | #include "clang/AST/StmtVisitor.h" |
Chris Lattner | 08f92e3 | 2010-11-17 07:37:15 +0000 | [diff] [blame] | 23 | #include "clang/Lex/LiteralSupport.h" |
| 24 | #include "clang/Lex/Lexer.h" |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 25 | #include "clang/Sema/SemaDiagnostic.h" |
Chris Lattner | 1b63e4f | 2009-06-14 01:54:56 +0000 | [diff] [blame] | 26 | #include "clang/Basic/Builtins.h" |
Chris Lattner | 08f92e3 | 2010-11-17 07:37:15 +0000 | [diff] [blame] | 27 | #include "clang/Basic/SourceManager.h" |
Chris Lattner | da5a6b6 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 28 | #include "clang/Basic/TargetInfo.h" |
Douglas Gregor | cf3293e | 2009-11-01 20:32:48 +0000 | [diff] [blame] | 29 | #include "llvm/Support/ErrorHandling.h" |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 30 | #include "llvm/Support/raw_ostream.h" |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 31 | #include <algorithm> |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 32 | using namespace clang; |
| 33 | |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 34 | /// isKnownToHaveBooleanValue - Return true if this is an integer expression |
| 35 | /// that is known to return 0 or 1. This happens for _Bool/bool expressions |
| 36 | /// but also int expressions which are produced by things like comparisons in |
| 37 | /// C. |
| 38 | bool Expr::isKnownToHaveBooleanValue() const { |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 39 | const Expr *E = IgnoreParens(); |
| 40 | |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 41 | // If this value has _Bool type, it is obvious 0/1. |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 42 | if (E->getType()->isBooleanType()) return true; |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 43 | // If this is a non-scalar-integer type, we don't care enough to try. |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 44 | if (!E->getType()->isIntegralOrEnumerationType()) return false; |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 45 | |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 46 | if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) { |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 47 | switch (UO->getOpcode()) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 48 | case UO_Plus: |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 49 | return UO->getSubExpr()->isKnownToHaveBooleanValue(); |
| 50 | default: |
| 51 | return false; |
| 52 | } |
| 53 | } |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 54 | |
John McCall | 6907fbe | 2010-06-12 01:56:02 +0000 | [diff] [blame] | 55 | // Only look through implicit casts. If the user writes |
| 56 | // '(int) (a && b)' treat it as an arbitrary int. |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 57 | if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 58 | return CE->getSubExpr()->isKnownToHaveBooleanValue(); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 59 | |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 60 | if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 61 | switch (BO->getOpcode()) { |
| 62 | default: return false; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 63 | case BO_LT: // Relational operators. |
| 64 | case BO_GT: |
| 65 | case BO_LE: |
| 66 | case BO_GE: |
| 67 | case BO_EQ: // Equality operators. |
| 68 | case BO_NE: |
| 69 | case BO_LAnd: // AND operator. |
| 70 | case BO_LOr: // Logical OR operator. |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 71 | return true; |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 72 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 73 | case BO_And: // Bitwise AND operator. |
| 74 | case BO_Xor: // Bitwise XOR operator. |
| 75 | case BO_Or: // Bitwise OR operator. |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 76 | // Handle things like (x==2)|(y==12). |
| 77 | return BO->getLHS()->isKnownToHaveBooleanValue() && |
| 78 | BO->getRHS()->isKnownToHaveBooleanValue(); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 79 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 80 | case BO_Comma: |
| 81 | case BO_Assign: |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 82 | return BO->getRHS()->isKnownToHaveBooleanValue(); |
| 83 | } |
| 84 | } |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 85 | |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 86 | if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 87 | return CO->getTrueExpr()->isKnownToHaveBooleanValue() && |
| 88 | CO->getFalseExpr()->isKnownToHaveBooleanValue(); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 89 | |
Chris Lattner | 2b334bb | 2010-04-16 23:34:13 +0000 | [diff] [blame] | 90 | return false; |
| 91 | } |
| 92 | |
John McCall | 63c00d7 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 93 | // Amusing macro metaprogramming hack: check whether a class provides |
| 94 | // a more specific implementation of getExprLoc(). |
| 95 | namespace { |
| 96 | /// This implementation is used when a class provides a custom |
| 97 | /// implementation of getExprLoc. |
| 98 | template <class E, class T> |
| 99 | SourceLocation getExprLocImpl(const Expr *expr, |
| 100 | SourceLocation (T::*v)() const) { |
| 101 | return static_cast<const E*>(expr)->getExprLoc(); |
| 102 | } |
| 103 | |
| 104 | /// This implementation is used when a class doesn't provide |
| 105 | /// a custom implementation of getExprLoc. Overload resolution |
| 106 | /// should pick it over the implementation above because it's |
| 107 | /// more specialized according to function template partial ordering. |
| 108 | template <class E> |
| 109 | SourceLocation getExprLocImpl(const Expr *expr, |
| 110 | SourceLocation (Expr::*v)() const) { |
| 111 | return static_cast<const E*>(expr)->getSourceRange().getBegin(); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | SourceLocation Expr::getExprLoc() const { |
| 116 | switch (getStmtClass()) { |
| 117 | case Stmt::NoStmtClass: llvm_unreachable("statement without class"); |
| 118 | #define ABSTRACT_STMT(type) |
| 119 | #define STMT(type, base) \ |
| 120 | case Stmt::type##Class: llvm_unreachable(#type " is not an Expr"); break; |
| 121 | #define EXPR(type, base) \ |
| 122 | case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc); |
| 123 | #include "clang/AST/StmtNodes.inc" |
| 124 | } |
| 125 | llvm_unreachable("unknown statement kind"); |
| 126 | return SourceLocation(); |
| 127 | } |
| 128 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 129 | //===----------------------------------------------------------------------===// |
| 130 | // Primary Expressions. |
| 131 | //===----------------------------------------------------------------------===// |
| 132 | |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 133 | void ExplicitTemplateArgumentList::initializeFrom( |
| 134 | const TemplateArgumentListInfo &Info) { |
| 135 | LAngleLoc = Info.getLAngleLoc(); |
| 136 | RAngleLoc = Info.getRAngleLoc(); |
| 137 | NumTemplateArgs = Info.size(); |
| 138 | |
| 139 | TemplateArgumentLoc *ArgBuffer = getTemplateArgs(); |
| 140 | for (unsigned i = 0; i != NumTemplateArgs; ++i) |
| 141 | new (&ArgBuffer[i]) TemplateArgumentLoc(Info[i]); |
| 142 | } |
| 143 | |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 144 | void ExplicitTemplateArgumentList::initializeFrom( |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 145 | const TemplateArgumentListInfo &Info, |
| 146 | bool &Dependent, |
| 147 | bool &InstantiationDependent, |
| 148 | bool &ContainsUnexpandedParameterPack) { |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 149 | LAngleLoc = Info.getLAngleLoc(); |
| 150 | RAngleLoc = Info.getRAngleLoc(); |
| 151 | NumTemplateArgs = Info.size(); |
| 152 | |
| 153 | TemplateArgumentLoc *ArgBuffer = getTemplateArgs(); |
| 154 | for (unsigned i = 0; i != NumTemplateArgs; ++i) { |
| 155 | Dependent = Dependent || Info[i].getArgument().isDependent(); |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 156 | InstantiationDependent = InstantiationDependent || |
| 157 | Info[i].getArgument().isInstantiationDependent(); |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 158 | ContainsUnexpandedParameterPack |
| 159 | = ContainsUnexpandedParameterPack || |
| 160 | Info[i].getArgument().containsUnexpandedParameterPack(); |
| 161 | |
| 162 | new (&ArgBuffer[i]) TemplateArgumentLoc(Info[i]); |
| 163 | } |
| 164 | } |
| 165 | |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 166 | void ExplicitTemplateArgumentList::copyInto( |
| 167 | TemplateArgumentListInfo &Info) const { |
| 168 | Info.setLAngleLoc(LAngleLoc); |
| 169 | Info.setRAngleLoc(RAngleLoc); |
| 170 | for (unsigned I = 0; I != NumTemplateArgs; ++I) |
| 171 | Info.addArgument(getTemplateArgs()[I]); |
| 172 | } |
| 173 | |
Argyrios Kyrtzidis | 8dfbd8b | 2010-06-24 08:57:31 +0000 | [diff] [blame] | 174 | std::size_t ExplicitTemplateArgumentList::sizeFor(unsigned NumTemplateArgs) { |
| 175 | return sizeof(ExplicitTemplateArgumentList) + |
| 176 | sizeof(TemplateArgumentLoc) * NumTemplateArgs; |
| 177 | } |
| 178 | |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 179 | std::size_t ExplicitTemplateArgumentList::sizeFor( |
| 180 | const TemplateArgumentListInfo &Info) { |
Argyrios Kyrtzidis | 8dfbd8b | 2010-06-24 08:57:31 +0000 | [diff] [blame] | 181 | return sizeFor(Info.size()); |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 182 | } |
| 183 | |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 184 | /// \brief Compute the type-, value-, and instantiation-dependence of a |
| 185 | /// declaration reference |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 186 | /// based on the declaration being referenced. |
| 187 | static void computeDeclRefDependence(NamedDecl *D, QualType T, |
| 188 | bool &TypeDependent, |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 189 | bool &ValueDependent, |
| 190 | bool &InstantiationDependent) { |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 191 | TypeDependent = false; |
| 192 | ValueDependent = false; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 193 | InstantiationDependent = false; |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 194 | |
| 195 | // (TD) C++ [temp.dep.expr]p3: |
| 196 | // An id-expression is type-dependent if it contains: |
| 197 | // |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 198 | // and |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 199 | // |
| 200 | // (VD) C++ [temp.dep.constexpr]p2: |
| 201 | // An identifier is value-dependent if it is: |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 202 | |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 203 | // (TD) - an identifier that was declared with dependent type |
| 204 | // (VD) - a name declared with a dependent type, |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 205 | if (T->isDependentType()) { |
| 206 | TypeDependent = true; |
| 207 | ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 208 | InstantiationDependent = true; |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 209 | return; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 210 | } else if (T->isInstantiationDependentType()) { |
| 211 | InstantiationDependent = true; |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 212 | } |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 213 | |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 214 | // (TD) - a conversion-function-id that specifies a dependent type |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 215 | if (D->getDeclName().getNameKind() |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 216 | == DeclarationName::CXXConversionFunctionName) { |
| 217 | QualType T = D->getDeclName().getCXXNameType(); |
| 218 | if (T->isDependentType()) { |
| 219 | TypeDependent = true; |
| 220 | ValueDependent = true; |
| 221 | InstantiationDependent = true; |
| 222 | return; |
| 223 | } |
| 224 | |
| 225 | if (T->isInstantiationDependentType()) |
| 226 | InstantiationDependent = true; |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 227 | } |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 228 | |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 229 | // (VD) - the name of a non-type template parameter, |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 230 | if (isa<NonTypeTemplateParmDecl>(D)) { |
| 231 | ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 232 | InstantiationDependent = true; |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 233 | return; |
| 234 | } |
| 235 | |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 236 | // (VD) - a constant with integral or enumeration type and is |
| 237 | // initialized with an expression that is value-dependent. |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 238 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
Douglas Gregor | 2ade35e | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 239 | if (Var->getType()->isIntegralOrEnumerationType() && |
Douglas Gregor | 501edb6 | 2010-01-15 16:21:02 +0000 | [diff] [blame] | 240 | Var->getType().getCVRQualifiers() == Qualifiers::Const) { |
Sebastian Redl | 31310a2 | 2010-02-01 20:16:42 +0000 | [diff] [blame] | 241 | if (const Expr *Init = Var->getAnyInitializer()) |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 242 | if (Init->isValueDependent()) { |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 243 | ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 244 | InstantiationDependent = true; |
| 245 | } |
Douglas Gregor | bb6e73f | 2010-05-11 08:41:30 +0000 | [diff] [blame] | 246 | } |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 247 | |
Douglas Gregor | bb6e73f | 2010-05-11 08:41:30 +0000 | [diff] [blame] | 248 | // (VD) - FIXME: Missing from the standard: |
| 249 | // - a member function or a static data member of the current |
| 250 | // instantiation |
| 251 | else if (Var->isStaticDataMember() && |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 252 | Var->getDeclContext()->isDependentContext()) { |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 253 | ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 254 | InstantiationDependent = true; |
| 255 | } |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 256 | |
| 257 | return; |
| 258 | } |
| 259 | |
Douglas Gregor | bb6e73f | 2010-05-11 08:41:30 +0000 | [diff] [blame] | 260 | // (VD) - FIXME: Missing from the standard: |
| 261 | // - a member function or a static data member of the current |
| 262 | // instantiation |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 263 | if (isa<CXXMethodDecl>(D) && D->getDeclContext()->isDependentContext()) { |
| 264 | ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 265 | InstantiationDependent = true; |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 266 | return; |
| 267 | } |
| 268 | } |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 269 | |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 270 | void DeclRefExpr::computeDependence() { |
| 271 | bool TypeDependent = false; |
| 272 | bool ValueDependent = false; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 273 | bool InstantiationDependent = false; |
| 274 | computeDeclRefDependence(getDecl(), getType(), TypeDependent, ValueDependent, |
| 275 | InstantiationDependent); |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 276 | |
| 277 | // (TD) C++ [temp.dep.expr]p3: |
| 278 | // An id-expression is type-dependent if it contains: |
| 279 | // |
| 280 | // and |
| 281 | // |
| 282 | // (VD) C++ [temp.dep.constexpr]p2: |
| 283 | // An identifier is value-dependent if it is: |
| 284 | if (!TypeDependent && !ValueDependent && |
| 285 | hasExplicitTemplateArgs() && |
| 286 | TemplateSpecializationType::anyDependentTemplateArguments( |
| 287 | getTemplateArgs(), |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 288 | getNumTemplateArgs(), |
| 289 | InstantiationDependent)) { |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 290 | TypeDependent = true; |
| 291 | ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 292 | InstantiationDependent = true; |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | ExprBits.TypeDependent = TypeDependent; |
| 296 | ExprBits.ValueDependent = ValueDependent; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 297 | ExprBits.InstantiationDependent = InstantiationDependent; |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 298 | |
Douglas Gregor | 10738d3 | 2010-12-23 23:51:58 +0000 | [diff] [blame] | 299 | // Is the declaration a parameter pack? |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 300 | if (getDecl()->isParameterPack()) |
Douglas Gregor | 1fe85ea | 2011-01-05 21:11:38 +0000 | [diff] [blame] | 301 | ExprBits.ContainsUnexpandedParameterPack = true; |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 302 | } |
| 303 | |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 304 | DeclRefExpr::DeclRefExpr(NestedNameSpecifierLoc QualifierLoc, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 305 | ValueDecl *D, const DeclarationNameInfo &NameInfo, |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 306 | NamedDecl *FoundD, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 307 | const TemplateArgumentListInfo *TemplateArgs, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 308 | QualType T, ExprValueKind VK) |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 309 | : Expr(DeclRefExprClass, T, VK, OK_Ordinary, false, false, false, false), |
Chandler Carruth | cb66cff | 2011-05-01 21:29:53 +0000 | [diff] [blame] | 310 | D(D), Loc(NameInfo.getLoc()), DNLoc(NameInfo.getInfo()) { |
| 311 | DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0; |
Chandler Carruth | 7e740bd | 2011-05-01 21:55:21 +0000 | [diff] [blame] | 312 | if (QualifierLoc) |
Chandler Carruth | 6857c3e | 2011-05-01 22:14:37 +0000 | [diff] [blame] | 313 | getInternalQualifierLoc() = QualifierLoc; |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 314 | DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; |
| 315 | if (FoundD) |
| 316 | getInternalFoundDecl() = FoundD; |
Chandler Carruth | cb66cff | 2011-05-01 21:29:53 +0000 | [diff] [blame] | 317 | DeclRefExprBits.HasExplicitTemplateArgs = TemplateArgs ? 1 : 0; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 318 | if (TemplateArgs) { |
| 319 | bool Dependent = false; |
| 320 | bool InstantiationDependent = false; |
| 321 | bool ContainsUnexpandedParameterPack = false; |
| 322 | getExplicitTemplateArgs().initializeFrom(*TemplateArgs, Dependent, |
| 323 | InstantiationDependent, |
| 324 | ContainsUnexpandedParameterPack); |
| 325 | if (InstantiationDependent) |
| 326 | setInstantiationDependent(true); |
| 327 | } |
| 328 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 329 | computeDependence(); |
| 330 | } |
| 331 | |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 332 | DeclRefExpr *DeclRefExpr::Create(ASTContext &Context, |
Douglas Gregor | 40d96a6 | 2011-02-28 21:54:11 +0000 | [diff] [blame] | 333 | NestedNameSpecifierLoc QualifierLoc, |
John McCall | dbd872f | 2009-12-08 09:08:17 +0000 | [diff] [blame] | 334 | ValueDecl *D, |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 335 | SourceLocation NameLoc, |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 336 | QualType T, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 337 | ExprValueKind VK, |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 338 | NamedDecl *FoundD, |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 339 | const TemplateArgumentListInfo *TemplateArgs) { |
Douglas Gregor | 40d96a6 | 2011-02-28 21:54:11 +0000 | [diff] [blame] | 340 | return Create(Context, QualifierLoc, D, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 341 | DeclarationNameInfo(D->getDeclName(), NameLoc), |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 342 | T, VK, FoundD, TemplateArgs); |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | DeclRefExpr *DeclRefExpr::Create(ASTContext &Context, |
Douglas Gregor | 40d96a6 | 2011-02-28 21:54:11 +0000 | [diff] [blame] | 346 | NestedNameSpecifierLoc QualifierLoc, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 347 | ValueDecl *D, |
| 348 | const DeclarationNameInfo &NameInfo, |
| 349 | QualType T, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 350 | ExprValueKind VK, |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 351 | NamedDecl *FoundD, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 352 | const TemplateArgumentListInfo *TemplateArgs) { |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 353 | // Filter out cases where the found Decl is the same as the value refenenced. |
| 354 | if (D == FoundD) |
| 355 | FoundD = 0; |
| 356 | |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 357 | std::size_t Size = sizeof(DeclRefExpr); |
Douglas Gregor | 40d96a6 | 2011-02-28 21:54:11 +0000 | [diff] [blame] | 358 | if (QualifierLoc != 0) |
Chandler Carruth | 6857c3e | 2011-05-01 22:14:37 +0000 | [diff] [blame] | 359 | Size += sizeof(NestedNameSpecifierLoc); |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 360 | if (FoundD) |
| 361 | Size += sizeof(NamedDecl *); |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 362 | if (TemplateArgs) |
| 363 | Size += ExplicitTemplateArgumentList::sizeFor(*TemplateArgs); |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 364 | |
Chris Lattner | 3248854 | 2010-10-30 05:14:06 +0000 | [diff] [blame] | 365 | void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>()); |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 366 | return new (Mem) DeclRefExpr(QualifierLoc, D, NameInfo, FoundD, TemplateArgs, |
| 367 | T, VK); |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 370 | DeclRefExpr *DeclRefExpr::CreateEmpty(ASTContext &Context, |
Douglas Gregor | def0354 | 2011-02-04 12:01:24 +0000 | [diff] [blame] | 371 | bool HasQualifier, |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 372 | bool HasFoundDecl, |
Douglas Gregor | def0354 | 2011-02-04 12:01:24 +0000 | [diff] [blame] | 373 | bool HasExplicitTemplateArgs, |
Argyrios Kyrtzidis | 663e380 | 2010-07-08 13:09:47 +0000 | [diff] [blame] | 374 | unsigned NumTemplateArgs) { |
| 375 | std::size_t Size = sizeof(DeclRefExpr); |
| 376 | if (HasQualifier) |
Chandler Carruth | 6857c3e | 2011-05-01 22:14:37 +0000 | [diff] [blame] | 377 | Size += sizeof(NestedNameSpecifierLoc); |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 378 | if (HasFoundDecl) |
| 379 | Size += sizeof(NamedDecl *); |
Douglas Gregor | def0354 | 2011-02-04 12:01:24 +0000 | [diff] [blame] | 380 | if (HasExplicitTemplateArgs) |
Argyrios Kyrtzidis | 663e380 | 2010-07-08 13:09:47 +0000 | [diff] [blame] | 381 | Size += ExplicitTemplateArgumentList::sizeFor(NumTemplateArgs); |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 382 | |
Chris Lattner | 3248854 | 2010-10-30 05:14:06 +0000 | [diff] [blame] | 383 | void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>()); |
Argyrios Kyrtzidis | 663e380 | 2010-07-08 13:09:47 +0000 | [diff] [blame] | 384 | return new (Mem) DeclRefExpr(EmptyShell()); |
| 385 | } |
| 386 | |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 387 | SourceRange DeclRefExpr::getSourceRange() const { |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 388 | SourceRange R = getNameInfo().getSourceRange(); |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 389 | if (hasQualifier()) |
Douglas Gregor | 40d96a6 | 2011-02-28 21:54:11 +0000 | [diff] [blame] | 390 | R.setBegin(getQualifierLoc().getBeginLoc()); |
John McCall | 096832c | 2010-08-19 23:49:38 +0000 | [diff] [blame] | 391 | if (hasExplicitTemplateArgs()) |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 392 | R.setEnd(getRAngleLoc()); |
| 393 | return R; |
| 394 | } |
| 395 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 396 | // FIXME: Maybe this should use DeclPrinter with a special "print predefined |
| 397 | // expr" policy instead. |
Anders Carlsson | 848fa64 | 2010-02-11 18:20:28 +0000 | [diff] [blame] | 398 | std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) { |
| 399 | ASTContext &Context = CurrentDecl->getASTContext(); |
| 400 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 401 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) { |
Anders Carlsson | 848fa64 | 2010-02-11 18:20:28 +0000 | [diff] [blame] | 402 | if (IT != PrettyFunction && IT != PrettyFunctionNoVirtual) |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 403 | return FD->getNameAsString(); |
| 404 | |
| 405 | llvm::SmallString<256> Name; |
| 406 | llvm::raw_svector_ostream Out(Name); |
| 407 | |
| 408 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { |
Anders Carlsson | 848fa64 | 2010-02-11 18:20:28 +0000 | [diff] [blame] | 409 | if (MD->isVirtual() && IT != PrettyFunctionNoVirtual) |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 410 | Out << "virtual "; |
Sam Weinig | 4eadcc5 | 2009-12-27 01:38:20 +0000 | [diff] [blame] | 411 | if (MD->isStatic()) |
| 412 | Out << "static "; |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 413 | } |
| 414 | |
| 415 | PrintingPolicy Policy(Context.getLangOptions()); |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 416 | |
| 417 | std::string Proto = FD->getQualifiedNameAsString(Policy); |
| 418 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 419 | const FunctionType *AFT = FD->getType()->getAs<FunctionType>(); |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 420 | const FunctionProtoType *FT = 0; |
| 421 | if (FD->hasWrittenPrototype()) |
| 422 | FT = dyn_cast<FunctionProtoType>(AFT); |
| 423 | |
| 424 | Proto += "("; |
| 425 | if (FT) { |
| 426 | llvm::raw_string_ostream POut(Proto); |
| 427 | for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) { |
| 428 | if (i) POut << ", "; |
| 429 | std::string Param; |
| 430 | FD->getParamDecl(i)->getType().getAsStringInternal(Param, Policy); |
| 431 | POut << Param; |
| 432 | } |
| 433 | |
| 434 | if (FT->isVariadic()) { |
| 435 | if (FD->getNumParams()) POut << ", "; |
| 436 | POut << "..."; |
| 437 | } |
| 438 | } |
| 439 | Proto += ")"; |
| 440 | |
Sam Weinig | 4eadcc5 | 2009-12-27 01:38:20 +0000 | [diff] [blame] | 441 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { |
| 442 | Qualifiers ThisQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers()); |
| 443 | if (ThisQuals.hasConst()) |
| 444 | Proto += " const"; |
| 445 | if (ThisQuals.hasVolatile()) |
| 446 | Proto += " volatile"; |
| 447 | } |
| 448 | |
Sam Weinig | 3a1ce1e | 2009-12-06 23:55:13 +0000 | [diff] [blame] | 449 | if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD)) |
| 450 | AFT->getResultType().getAsStringInternal(Proto, Policy); |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 451 | |
| 452 | Out << Proto; |
| 453 | |
| 454 | Out.flush(); |
| 455 | return Name.str().str(); |
| 456 | } |
| 457 | if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) { |
| 458 | llvm::SmallString<256> Name; |
| 459 | llvm::raw_svector_ostream Out(Name); |
| 460 | Out << (MD->isInstanceMethod() ? '-' : '+'); |
| 461 | Out << '['; |
Ted Kremenek | b03d33e | 2010-03-18 21:23:08 +0000 | [diff] [blame] | 462 | |
| 463 | // For incorrect code, there might not be an ObjCInterfaceDecl. Do |
| 464 | // a null check to avoid a crash. |
| 465 | if (const ObjCInterfaceDecl *ID = MD->getClassInterface()) |
Benjamin Kramer | 900fc63 | 2010-04-17 09:33:03 +0000 | [diff] [blame] | 466 | Out << ID; |
Ted Kremenek | b03d33e | 2010-03-18 21:23:08 +0000 | [diff] [blame] | 467 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 468 | if (const ObjCCategoryImplDecl *CID = |
Benjamin Kramer | 900fc63 | 2010-04-17 09:33:03 +0000 | [diff] [blame] | 469 | dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext())) |
| 470 | Out << '(' << CID << ')'; |
| 471 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 472 | Out << ' '; |
| 473 | Out << MD->getSelector().getAsString(); |
| 474 | Out << ']'; |
| 475 | |
| 476 | Out.flush(); |
| 477 | return Name.str().str(); |
| 478 | } |
| 479 | if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) { |
| 480 | // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string. |
| 481 | return "top level"; |
| 482 | } |
| 483 | return ""; |
| 484 | } |
| 485 | |
Argyrios Kyrtzidis | 9996a7f | 2010-08-28 09:06:06 +0000 | [diff] [blame] | 486 | void APNumericStorage::setIntValue(ASTContext &C, const llvm::APInt &Val) { |
| 487 | if (hasAllocation()) |
| 488 | C.Deallocate(pVal); |
| 489 | |
| 490 | BitWidth = Val.getBitWidth(); |
| 491 | unsigned NumWords = Val.getNumWords(); |
| 492 | const uint64_t* Words = Val.getRawData(); |
| 493 | if (NumWords > 1) { |
| 494 | pVal = new (C) uint64_t[NumWords]; |
| 495 | std::copy(Words, Words + NumWords, pVal); |
| 496 | } else if (NumWords == 1) |
| 497 | VAL = Words[0]; |
| 498 | else |
| 499 | VAL = 0; |
| 500 | } |
| 501 | |
| 502 | IntegerLiteral * |
| 503 | IntegerLiteral::Create(ASTContext &C, const llvm::APInt &V, |
| 504 | QualType type, SourceLocation l) { |
| 505 | return new (C) IntegerLiteral(C, V, type, l); |
| 506 | } |
| 507 | |
| 508 | IntegerLiteral * |
| 509 | IntegerLiteral::Create(ASTContext &C, EmptyShell Empty) { |
| 510 | return new (C) IntegerLiteral(Empty); |
| 511 | } |
| 512 | |
| 513 | FloatingLiteral * |
| 514 | FloatingLiteral::Create(ASTContext &C, const llvm::APFloat &V, |
| 515 | bool isexact, QualType Type, SourceLocation L) { |
| 516 | return new (C) FloatingLiteral(C, V, isexact, Type, L); |
| 517 | } |
| 518 | |
| 519 | FloatingLiteral * |
| 520 | FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) { |
| 521 | return new (C) FloatingLiteral(Empty); |
| 522 | } |
| 523 | |
Chris Lattner | da8249e | 2008-06-07 22:13:43 +0000 | [diff] [blame] | 524 | /// getValueAsApproximateDouble - This returns the value as an inaccurate |
| 525 | /// double. Note that this may cause loss of precision, but is useful for |
| 526 | /// debugging dumps, etc. |
| 527 | double FloatingLiteral::getValueAsApproximateDouble() const { |
| 528 | llvm::APFloat V = getValue(); |
Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 529 | bool ignored; |
| 530 | V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven, |
| 531 | &ignored); |
Chris Lattner | da8249e | 2008-06-07 22:13:43 +0000 | [diff] [blame] | 532 | return V.convertToDouble(); |
| 533 | } |
| 534 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 535 | StringLiteral *StringLiteral::Create(ASTContext &C, StringRef Str, |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 536 | StringKind Kind, bool Pascal, QualType Ty, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 537 | const SourceLocation *Loc, |
Anders Carlsson | a135fb4 | 2009-03-15 18:34:13 +0000 | [diff] [blame] | 538 | unsigned NumStrs) { |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 539 | // Allocate enough space for the StringLiteral plus an array of locations for |
| 540 | // any concatenated string tokens. |
| 541 | void *Mem = C.Allocate(sizeof(StringLiteral)+ |
| 542 | sizeof(SourceLocation)*(NumStrs-1), |
Chris Lattner | 3248854 | 2010-10-30 05:14:06 +0000 | [diff] [blame] | 543 | llvm::alignOf<StringLiteral>()); |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 544 | StringLiteral *SL = new (Mem) StringLiteral(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 545 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 546 | // OPTIMIZE: could allocate this appended to the StringLiteral. |
Jay Foad | 65aa688 | 2011-06-21 15:13:30 +0000 | [diff] [blame] | 547 | char *AStrData = new (C, 1) char[Str.size()]; |
| 548 | memcpy(AStrData, Str.data(), Str.size()); |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 549 | SL->StrData = AStrData; |
Jay Foad | 65aa688 | 2011-06-21 15:13:30 +0000 | [diff] [blame] | 550 | SL->ByteLength = Str.size(); |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 551 | SL->Kind = Kind; |
Anders Carlsson | 3e2193c | 2011-04-14 00:40:03 +0000 | [diff] [blame] | 552 | SL->IsPascal = Pascal; |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 553 | SL->TokLocs[0] = Loc[0]; |
| 554 | SL->NumConcatenated = NumStrs; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 555 | |
Chris Lattner | 726e168 | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 556 | if (NumStrs != 1) |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 557 | memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1)); |
| 558 | return SL; |
Chris Lattner | 726e168 | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 559 | } |
| 560 | |
Douglas Gregor | 673ecd6 | 2009-04-15 16:35:07 +0000 | [diff] [blame] | 561 | StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) { |
| 562 | void *Mem = C.Allocate(sizeof(StringLiteral)+ |
| 563 | sizeof(SourceLocation)*(NumStrs-1), |
Chris Lattner | 3248854 | 2010-10-30 05:14:06 +0000 | [diff] [blame] | 564 | llvm::alignOf<StringLiteral>()); |
Douglas Gregor | 673ecd6 | 2009-04-15 16:35:07 +0000 | [diff] [blame] | 565 | StringLiteral *SL = new (Mem) StringLiteral(QualType()); |
| 566 | SL->StrData = 0; |
| 567 | SL->ByteLength = 0; |
| 568 | SL->NumConcatenated = NumStrs; |
| 569 | return SL; |
| 570 | } |
| 571 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 572 | void StringLiteral::setString(ASTContext &C, StringRef Str) { |
Daniel Dunbar | b648023 | 2009-09-22 03:27:33 +0000 | [diff] [blame] | 573 | char *AStrData = new (C, 1) char[Str.size()]; |
| 574 | memcpy(AStrData, Str.data(), Str.size()); |
Douglas Gregor | 673ecd6 | 2009-04-15 16:35:07 +0000 | [diff] [blame] | 575 | StrData = AStrData; |
Daniel Dunbar | b648023 | 2009-09-22 03:27:33 +0000 | [diff] [blame] | 576 | ByteLength = Str.size(); |
Douglas Gregor | 673ecd6 | 2009-04-15 16:35:07 +0000 | [diff] [blame] | 577 | } |
| 578 | |
Chris Lattner | 08f92e3 | 2010-11-17 07:37:15 +0000 | [diff] [blame] | 579 | /// getLocationOfByte - Return a source location that points to the specified |
| 580 | /// byte of this string literal. |
| 581 | /// |
| 582 | /// Strings are amazingly complex. They can be formed from multiple tokens and |
| 583 | /// can have escape sequences in them in addition to the usual trigraph and |
| 584 | /// escaped newline business. This routine handles this complexity. |
| 585 | /// |
| 586 | SourceLocation StringLiteral:: |
| 587 | getLocationOfByte(unsigned ByteNo, const SourceManager &SM, |
| 588 | const LangOptions &Features, const TargetInfo &Target) const { |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 589 | assert(Kind == StringLiteral::Ascii && "This only works for ASCII strings"); |
| 590 | |
Chris Lattner | 08f92e3 | 2010-11-17 07:37:15 +0000 | [diff] [blame] | 591 | // Loop over all of the tokens in this string until we find the one that |
| 592 | // contains the byte we're looking for. |
| 593 | unsigned TokNo = 0; |
| 594 | while (1) { |
| 595 | assert(TokNo < getNumConcatenated() && "Invalid byte number!"); |
| 596 | SourceLocation StrTokLoc = getStrTokenLoc(TokNo); |
| 597 | |
| 598 | // Get the spelling of the string so that we can get the data that makes up |
| 599 | // the string literal, not the identifier for the macro it is potentially |
| 600 | // expanded through. |
| 601 | SourceLocation StrTokSpellingLoc = SM.getSpellingLoc(StrTokLoc); |
| 602 | |
| 603 | // Re-lex the token to get its length and original spelling. |
| 604 | std::pair<FileID, unsigned> LocInfo =SM.getDecomposedLoc(StrTokSpellingLoc); |
| 605 | bool Invalid = false; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 606 | StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid); |
Chris Lattner | 08f92e3 | 2010-11-17 07:37:15 +0000 | [diff] [blame] | 607 | if (Invalid) |
| 608 | return StrTokSpellingLoc; |
| 609 | |
| 610 | const char *StrData = Buffer.data()+LocInfo.second; |
| 611 | |
| 612 | // Create a langops struct and enable trigraphs. This is sufficient for |
| 613 | // relexing tokens. |
| 614 | LangOptions LangOpts; |
| 615 | LangOpts.Trigraphs = true; |
| 616 | |
| 617 | // Create a lexer starting at the beginning of this token. |
| 618 | Lexer TheLexer(StrTokSpellingLoc, Features, Buffer.begin(), StrData, |
| 619 | Buffer.end()); |
| 620 | Token TheTok; |
| 621 | TheLexer.LexFromRawLexer(TheTok); |
| 622 | |
| 623 | // Use the StringLiteralParser to compute the length of the string in bytes. |
| 624 | StringLiteralParser SLP(&TheTok, 1, SM, Features, Target); |
| 625 | unsigned TokNumBytes = SLP.GetStringLength(); |
| 626 | |
| 627 | // If the byte is in this token, return the location of the byte. |
| 628 | if (ByteNo < TokNumBytes || |
Hans Wennborg | 935a70c | 2011-06-30 20:17:41 +0000 | [diff] [blame] | 629 | (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) { |
Chris Lattner | 08f92e3 | 2010-11-17 07:37:15 +0000 | [diff] [blame] | 630 | unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo); |
| 631 | |
| 632 | // Now that we know the offset of the token in the spelling, use the |
| 633 | // preprocessor to get the offset in the original source. |
| 634 | return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features); |
| 635 | } |
| 636 | |
| 637 | // Move to the next string token. |
| 638 | ++TokNo; |
| 639 | ByteNo -= TokNumBytes; |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | |
| 644 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 645 | /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it |
| 646 | /// corresponds to, e.g. "sizeof" or "[pre]++". |
| 647 | const char *UnaryOperator::getOpcodeStr(Opcode Op) { |
| 648 | switch (Op) { |
| 649 | default: assert(0 && "Unknown unary operator"); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 650 | case UO_PostInc: return "++"; |
| 651 | case UO_PostDec: return "--"; |
| 652 | case UO_PreInc: return "++"; |
| 653 | case UO_PreDec: return "--"; |
| 654 | case UO_AddrOf: return "&"; |
| 655 | case UO_Deref: return "*"; |
| 656 | case UO_Plus: return "+"; |
| 657 | case UO_Minus: return "-"; |
| 658 | case UO_Not: return "~"; |
| 659 | case UO_LNot: return "!"; |
| 660 | case UO_Real: return "__real"; |
| 661 | case UO_Imag: return "__imag"; |
| 662 | case UO_Extension: return "__extension__"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 663 | } |
| 664 | } |
| 665 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 666 | UnaryOperatorKind |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 667 | UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) { |
| 668 | switch (OO) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 669 | default: assert(false && "No unary operator for overloaded function"); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 670 | case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc; |
| 671 | case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec; |
| 672 | case OO_Amp: return UO_AddrOf; |
| 673 | case OO_Star: return UO_Deref; |
| 674 | case OO_Plus: return UO_Plus; |
| 675 | case OO_Minus: return UO_Minus; |
| 676 | case OO_Tilde: return UO_Not; |
| 677 | case OO_Exclaim: return UO_LNot; |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 678 | } |
| 679 | } |
| 680 | |
| 681 | OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) { |
| 682 | switch (Opc) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 683 | case UO_PostInc: case UO_PreInc: return OO_PlusPlus; |
| 684 | case UO_PostDec: case UO_PreDec: return OO_MinusMinus; |
| 685 | case UO_AddrOf: return OO_Amp; |
| 686 | case UO_Deref: return OO_Star; |
| 687 | case UO_Plus: return OO_Plus; |
| 688 | case UO_Minus: return OO_Minus; |
| 689 | case UO_Not: return OO_Tilde; |
| 690 | case UO_LNot: return OO_Exclaim; |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 691 | default: return OO_None; |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 696 | //===----------------------------------------------------------------------===// |
| 697 | // Postfix Operators. |
| 698 | //===----------------------------------------------------------------------===// |
| 699 | |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 700 | CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, unsigned NumPreArgs, |
| 701 | Expr **args, unsigned numargs, QualType t, ExprValueKind VK, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 702 | SourceLocation rparenloc) |
| 703 | : Expr(SC, t, VK, OK_Ordinary, |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 704 | fn->isTypeDependent(), |
| 705 | fn->isValueDependent(), |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 706 | fn->isInstantiationDependent(), |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 707 | fn->containsUnexpandedParameterPack()), |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 708 | NumArgs(numargs) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 709 | |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 710 | SubExprs = new (C) Stmt*[numargs+PREARGS_START+NumPreArgs]; |
Douglas Gregor | b460980 | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 711 | SubExprs[FN] = fn; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 712 | for (unsigned i = 0; i != numargs; ++i) { |
| 713 | if (args[i]->isTypeDependent()) |
| 714 | ExprBits.TypeDependent = true; |
| 715 | if (args[i]->isValueDependent()) |
| 716 | ExprBits.ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 717 | if (args[i]->isInstantiationDependent()) |
| 718 | ExprBits.InstantiationDependent = true; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 719 | if (args[i]->containsUnexpandedParameterPack()) |
| 720 | ExprBits.ContainsUnexpandedParameterPack = true; |
| 721 | |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 722 | SubExprs[i+PREARGS_START+NumPreArgs] = args[i]; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 723 | } |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 724 | |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 725 | CallExprBits.NumPreArgs = NumPreArgs; |
Douglas Gregor | b460980 | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 726 | RParenLoc = rparenloc; |
| 727 | } |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 728 | |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 729 | CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 730 | QualType t, ExprValueKind VK, SourceLocation rparenloc) |
| 731 | : Expr(CallExprClass, t, VK, OK_Ordinary, |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 732 | fn->isTypeDependent(), |
| 733 | fn->isValueDependent(), |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 734 | fn->isInstantiationDependent(), |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 735 | fn->containsUnexpandedParameterPack()), |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 736 | NumArgs(numargs) { |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 737 | |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 738 | SubExprs = new (C) Stmt*[numargs+PREARGS_START]; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 739 | SubExprs[FN] = fn; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 740 | for (unsigned i = 0; i != numargs; ++i) { |
| 741 | if (args[i]->isTypeDependent()) |
| 742 | ExprBits.TypeDependent = true; |
| 743 | if (args[i]->isValueDependent()) |
| 744 | ExprBits.ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 745 | if (args[i]->isInstantiationDependent()) |
| 746 | ExprBits.InstantiationDependent = true; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 747 | if (args[i]->containsUnexpandedParameterPack()) |
| 748 | ExprBits.ContainsUnexpandedParameterPack = true; |
| 749 | |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 750 | SubExprs[i+PREARGS_START] = args[i]; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 751 | } |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 752 | |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 753 | CallExprBits.NumPreArgs = 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 754 | RParenLoc = rparenloc; |
| 755 | } |
| 756 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 757 | CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty) |
| 758 | : Expr(SC, Empty), SubExprs(0), NumArgs(0) { |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 759 | // FIXME: Why do we allocate this? |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 760 | SubExprs = new (C) Stmt*[PREARGS_START]; |
| 761 | CallExprBits.NumPreArgs = 0; |
| 762 | } |
| 763 | |
| 764 | CallExpr::CallExpr(ASTContext &C, StmtClass SC, unsigned NumPreArgs, |
| 765 | EmptyShell Empty) |
| 766 | : Expr(SC, Empty), SubExprs(0), NumArgs(0) { |
| 767 | // FIXME: Why do we allocate this? |
| 768 | SubExprs = new (C) Stmt*[PREARGS_START+NumPreArgs]; |
| 769 | CallExprBits.NumPreArgs = NumPreArgs; |
Douglas Gregor | 1f0d013 | 2009-04-15 17:43:59 +0000 | [diff] [blame] | 770 | } |
| 771 | |
Nuno Lopes | d20254f | 2009-12-20 23:11:08 +0000 | [diff] [blame] | 772 | Decl *CallExpr::getCalleeDecl() { |
Zhongxing Xu | a004254 | 2009-07-17 07:29:51 +0000 | [diff] [blame] | 773 | Expr *CEE = getCallee()->IgnoreParenCasts(); |
Douglas Gregor | 1ddc9c4 | 2011-09-06 21:41:04 +0000 | [diff] [blame] | 774 | |
| 775 | while (SubstNonTypeTemplateParmExpr *NTTP |
| 776 | = dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) { |
| 777 | CEE = NTTP->getReplacement()->IgnoreParenCasts(); |
| 778 | } |
| 779 | |
Sebastian Redl | 2001215 | 2010-09-10 20:55:30 +0000 | [diff] [blame] | 780 | // If we're calling a dereference, look at the pointer instead. |
| 781 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) { |
| 782 | if (BO->isPtrMemOp()) |
| 783 | CEE = BO->getRHS()->IgnoreParenCasts(); |
| 784 | } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) { |
| 785 | if (UO->getOpcode() == UO_Deref) |
| 786 | CEE = UO->getSubExpr()->IgnoreParenCasts(); |
| 787 | } |
Chris Lattner | 6346f96 | 2009-07-17 15:46:27 +0000 | [diff] [blame] | 788 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE)) |
Nuno Lopes | d20254f | 2009-12-20 23:11:08 +0000 | [diff] [blame] | 789 | return DRE->getDecl(); |
Nuno Lopes | cb1c77f | 2009-12-24 00:28:18 +0000 | [diff] [blame] | 790 | if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE)) |
| 791 | return ME->getMemberDecl(); |
Zhongxing Xu | a004254 | 2009-07-17 07:29:51 +0000 | [diff] [blame] | 792 | |
| 793 | return 0; |
| 794 | } |
| 795 | |
Nuno Lopes | d20254f | 2009-12-20 23:11:08 +0000 | [diff] [blame] | 796 | FunctionDecl *CallExpr::getDirectCallee() { |
Chris Lattner | caabf9b | 2009-12-21 01:10:56 +0000 | [diff] [blame] | 797 | return dyn_cast_or_null<FunctionDecl>(getCalleeDecl()); |
Nuno Lopes | d20254f | 2009-12-20 23:11:08 +0000 | [diff] [blame] | 798 | } |
| 799 | |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 800 | /// setNumArgs - This changes the number of arguments present in this call. |
| 801 | /// Any orphaned expressions are deleted by this, and any new operands are set |
| 802 | /// to null. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 803 | void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) { |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 804 | // No change, just return. |
| 805 | if (NumArgs == getNumArgs()) return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 806 | |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 807 | // If shrinking # arguments, just delete the extras and forgot them. |
| 808 | if (NumArgs < getNumArgs()) { |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 809 | this->NumArgs = NumArgs; |
| 810 | return; |
| 811 | } |
| 812 | |
| 813 | // Otherwise, we are growing the # arguments. New an bigger argument array. |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 814 | unsigned NumPreArgs = getNumPreArgs(); |
| 815 | Stmt **NewSubExprs = new (C) Stmt*[NumArgs+PREARGS_START+NumPreArgs]; |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 816 | // Copy over args. |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 817 | for (unsigned i = 0; i != getNumArgs()+PREARGS_START+NumPreArgs; ++i) |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 818 | NewSubExprs[i] = SubExprs[i]; |
| 819 | // Null out new args. |
Peter Collingbourne | cc324ad | 2011-02-08 21:18:02 +0000 | [diff] [blame] | 820 | for (unsigned i = getNumArgs()+PREARGS_START+NumPreArgs; |
| 821 | i != NumArgs+PREARGS_START+NumPreArgs; ++i) |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 822 | NewSubExprs[i] = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 823 | |
Douglas Gregor | 88c9a46 | 2009-04-17 21:46:47 +0000 | [diff] [blame] | 824 | if (SubExprs) C.Deallocate(SubExprs); |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 825 | SubExprs = NewSubExprs; |
| 826 | this->NumArgs = NumArgs; |
| 827 | } |
| 828 | |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 829 | /// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If |
| 830 | /// not, return 0. |
Jay Foad | 4ba2a17 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 831 | unsigned CallExpr::isBuiltinCall(const ASTContext &Context) const { |
Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 832 | // All simple function calls (e.g. func()) are implicitly cast to pointer to |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 833 | // function. As a result, we try and obtain the DeclRefExpr from the |
Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 834 | // ImplicitCastExpr. |
| 835 | const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee()); |
| 836 | if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()). |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 837 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 838 | |
Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 839 | const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()); |
| 840 | if (!DRE) |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 841 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 842 | |
Anders Carlsson | bcba201 | 2008-01-31 02:13:57 +0000 | [diff] [blame] | 843 | const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl()); |
| 844 | if (!FDecl) |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 845 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 846 | |
Douglas Gregor | 4fcd399 | 2008-11-21 15:30:19 +0000 | [diff] [blame] | 847 | if (!FDecl->getIdentifier()) |
| 848 | return 0; |
| 849 | |
Douglas Gregor | 7814e6d | 2009-09-12 00:22:50 +0000 | [diff] [blame] | 850 | return FDecl->getBuiltinID(); |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 851 | } |
Anders Carlsson | bcba201 | 2008-01-31 02:13:57 +0000 | [diff] [blame] | 852 | |
Anders Carlsson | 6dde78f | 2009-05-26 04:57:27 +0000 | [diff] [blame] | 853 | QualType CallExpr::getCallReturnType() const { |
| 854 | QualType CalleeType = getCallee()->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 855 | if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>()) |
Anders Carlsson | 6dde78f | 2009-05-26 04:57:27 +0000 | [diff] [blame] | 856 | CalleeType = FnTypePtr->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 857 | else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>()) |
Anders Carlsson | 6dde78f | 2009-05-26 04:57:27 +0000 | [diff] [blame] | 858 | CalleeType = BPT->getPointeeType(); |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 859 | else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember)) |
| 860 | // This should never be overloaded and so should never return null. |
| 861 | CalleeType = Expr::findBoundMemberType(getCallee()); |
Douglas Gregor | 5291c3c | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 862 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 863 | const FunctionType *FnType = CalleeType->castAs<FunctionType>(); |
Anders Carlsson | 6dde78f | 2009-05-26 04:57:27 +0000 | [diff] [blame] | 864 | return FnType->getResultType(); |
| 865 | } |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 866 | |
John McCall | 2882eca | 2011-02-21 06:23:05 +0000 | [diff] [blame] | 867 | SourceRange CallExpr::getSourceRange() const { |
| 868 | if (isa<CXXOperatorCallExpr>(this)) |
| 869 | return cast<CXXOperatorCallExpr>(this)->getSourceRange(); |
| 870 | |
| 871 | SourceLocation begin = getCallee()->getLocStart(); |
| 872 | if (begin.isInvalid() && getNumArgs() > 0) |
| 873 | begin = getArg(0)->getLocStart(); |
| 874 | SourceLocation end = getRParenLoc(); |
| 875 | if (end.isInvalid() && getNumArgs() > 0) |
| 876 | end = getArg(getNumArgs() - 1)->getLocEnd(); |
| 877 | return SourceRange(begin, end); |
| 878 | } |
| 879 | |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 880 | OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type, |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 881 | SourceLocation OperatorLoc, |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 882 | TypeSourceInfo *tsi, |
| 883 | OffsetOfNode* compsPtr, unsigned numComps, |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 884 | Expr** exprsPtr, unsigned numExprs, |
| 885 | SourceLocation RParenLoc) { |
| 886 | void *Mem = C.Allocate(sizeof(OffsetOfExpr) + |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 887 | sizeof(OffsetOfNode) * numComps + |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 888 | sizeof(Expr*) * numExprs); |
| 889 | |
| 890 | return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, compsPtr, numComps, |
| 891 | exprsPtr, numExprs, RParenLoc); |
| 892 | } |
| 893 | |
| 894 | OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C, |
| 895 | unsigned numComps, unsigned numExprs) { |
| 896 | void *Mem = C.Allocate(sizeof(OffsetOfExpr) + |
| 897 | sizeof(OffsetOfNode) * numComps + |
| 898 | sizeof(Expr*) * numExprs); |
| 899 | return new (Mem) OffsetOfExpr(numComps, numExprs); |
| 900 | } |
| 901 | |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 902 | OffsetOfExpr::OffsetOfExpr(ASTContext &C, QualType type, |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 903 | SourceLocation OperatorLoc, TypeSourceInfo *tsi, |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 904 | OffsetOfNode* compsPtr, unsigned numComps, |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 905 | Expr** exprsPtr, unsigned numExprs, |
| 906 | SourceLocation RParenLoc) |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 907 | : Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary, |
| 908 | /*TypeDependent=*/false, |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 909 | /*ValueDependent=*/tsi->getType()->isDependentType(), |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 910 | tsi->getType()->isInstantiationDependentType(), |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 911 | tsi->getType()->containsUnexpandedParameterPack()), |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 912 | OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi), |
| 913 | NumComps(numComps), NumExprs(numExprs) |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 914 | { |
| 915 | for(unsigned i = 0; i < numComps; ++i) { |
| 916 | setComponent(i, compsPtr[i]); |
| 917 | } |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 918 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 919 | for(unsigned i = 0; i < numExprs; ++i) { |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 920 | if (exprsPtr[i]->isTypeDependent() || exprsPtr[i]->isValueDependent()) |
| 921 | ExprBits.ValueDependent = true; |
| 922 | if (exprsPtr[i]->containsUnexpandedParameterPack()) |
| 923 | ExprBits.ContainsUnexpandedParameterPack = true; |
| 924 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 925 | setIndexExpr(i, exprsPtr[i]); |
| 926 | } |
| 927 | } |
| 928 | |
| 929 | IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const { |
| 930 | assert(getKind() == Field || getKind() == Identifier); |
| 931 | if (getKind() == Field) |
| 932 | return getField()->getIdentifier(); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 933 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 934 | return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask); |
| 935 | } |
| 936 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 937 | MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow, |
Douglas Gregor | 40d96a6 | 2011-02-28 21:54:11 +0000 | [diff] [blame] | 938 | NestedNameSpecifierLoc QualifierLoc, |
Eli Friedman | f595cc4 | 2009-12-04 06:40:45 +0000 | [diff] [blame] | 939 | ValueDecl *memberdecl, |
John McCall | 161755a | 2010-04-06 21:38:20 +0000 | [diff] [blame] | 940 | DeclAccessPair founddecl, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 941 | DeclarationNameInfo nameinfo, |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 942 | const TemplateArgumentListInfo *targs, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 943 | QualType ty, |
| 944 | ExprValueKind vk, |
| 945 | ExprObjectKind ok) { |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 946 | std::size_t Size = sizeof(MemberExpr); |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 947 | |
Douglas Gregor | 40d96a6 | 2011-02-28 21:54:11 +0000 | [diff] [blame] | 948 | bool hasQualOrFound = (QualifierLoc || |
John McCall | 161755a | 2010-04-06 21:38:20 +0000 | [diff] [blame] | 949 | founddecl.getDecl() != memberdecl || |
| 950 | founddecl.getAccess() != memberdecl->getAccess()); |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 951 | if (hasQualOrFound) |
| 952 | Size += sizeof(MemberNameQualifier); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 953 | |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 954 | if (targs) |
| 955 | Size += ExplicitTemplateArgumentList::sizeFor(*targs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 956 | |
Chris Lattner | 3248854 | 2010-10-30 05:14:06 +0000 | [diff] [blame] | 957 | void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>()); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 958 | MemberExpr *E = new (Mem) MemberExpr(base, isarrow, memberdecl, nameinfo, |
| 959 | ty, vk, ok); |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 960 | |
| 961 | if (hasQualOrFound) { |
Douglas Gregor | 40d96a6 | 2011-02-28 21:54:11 +0000 | [diff] [blame] | 962 | // FIXME: Wrong. We should be looking at the member declaration we found. |
| 963 | if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent()) { |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 964 | E->setValueDependent(true); |
| 965 | E->setTypeDependent(true); |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 966 | E->setInstantiationDependent(true); |
| 967 | } |
| 968 | else if (QualifierLoc && |
| 969 | QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent()) |
| 970 | E->setInstantiationDependent(true); |
| 971 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 972 | E->HasQualifierOrFoundDecl = true; |
| 973 | |
| 974 | MemberNameQualifier *NQ = E->getMemberQualifier(); |
Douglas Gregor | 40d96a6 | 2011-02-28 21:54:11 +0000 | [diff] [blame] | 975 | NQ->QualifierLoc = QualifierLoc; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 976 | NQ->FoundDecl = founddecl; |
| 977 | } |
| 978 | |
| 979 | if (targs) { |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 980 | bool Dependent = false; |
| 981 | bool InstantiationDependent = false; |
| 982 | bool ContainsUnexpandedParameterPack = false; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 983 | E->HasExplicitTemplateArgumentList = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 984 | E->getExplicitTemplateArgs().initializeFrom(*targs, Dependent, |
| 985 | InstantiationDependent, |
| 986 | ContainsUnexpandedParameterPack); |
| 987 | if (InstantiationDependent) |
| 988 | E->setInstantiationDependent(true); |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | return E; |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 992 | } |
| 993 | |
Douglas Gregor | 75e8504 | 2011-03-02 21:06:53 +0000 | [diff] [blame] | 994 | SourceRange MemberExpr::getSourceRange() const { |
| 995 | SourceLocation StartLoc; |
| 996 | if (isImplicitAccess()) { |
| 997 | if (hasQualifier()) |
| 998 | StartLoc = getQualifierLoc().getBeginLoc(); |
| 999 | else |
| 1000 | StartLoc = MemberLoc; |
| 1001 | } else { |
| 1002 | // FIXME: We don't want this to happen. Rather, we should be able to |
| 1003 | // detect all kinds of implicit accesses more cleanly. |
| 1004 | StartLoc = getBase()->getLocStart(); |
| 1005 | if (StartLoc.isInvalid()) |
| 1006 | StartLoc = MemberLoc; |
| 1007 | } |
| 1008 | |
| 1009 | SourceLocation EndLoc = |
| 1010 | HasExplicitTemplateArgumentList? getRAngleLoc() |
| 1011 | : getMemberNameInfo().getEndLoc(); |
| 1012 | |
| 1013 | return SourceRange(StartLoc, EndLoc); |
| 1014 | } |
| 1015 | |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1016 | const char *CastExpr::getCastKindName() const { |
| 1017 | switch (getCastKind()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 1018 | case CK_Dependent: |
| 1019 | return "Dependent"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1020 | case CK_BitCast: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1021 | return "BitCast"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1022 | case CK_LValueBitCast: |
Douglas Gregor | e39a389 | 2010-07-13 23:17:26 +0000 | [diff] [blame] | 1023 | return "LValueBitCast"; |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 1024 | case CK_LValueToRValue: |
| 1025 | return "LValueToRValue"; |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 1026 | case CK_GetObjCProperty: |
| 1027 | return "GetObjCProperty"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1028 | case CK_NoOp: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1029 | return "NoOp"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1030 | case CK_BaseToDerived: |
Anders Carlsson | 11de6de | 2009-11-12 16:43:42 +0000 | [diff] [blame] | 1031 | return "BaseToDerived"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1032 | case CK_DerivedToBase: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1033 | return "DerivedToBase"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1034 | case CK_UncheckedDerivedToBase: |
John McCall | 23cba80 | 2010-03-30 23:58:03 +0000 | [diff] [blame] | 1035 | return "UncheckedDerivedToBase"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1036 | case CK_Dynamic: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1037 | return "Dynamic"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1038 | case CK_ToUnion: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1039 | return "ToUnion"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1040 | case CK_ArrayToPointerDecay: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1041 | return "ArrayToPointerDecay"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1042 | case CK_FunctionToPointerDecay: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1043 | return "FunctionToPointerDecay"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1044 | case CK_NullToMemberPointer: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1045 | return "NullToMemberPointer"; |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 1046 | case CK_NullToPointer: |
| 1047 | return "NullToPointer"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1048 | case CK_BaseToDerivedMemberPointer: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1049 | return "BaseToDerivedMemberPointer"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1050 | case CK_DerivedToBaseMemberPointer: |
Anders Carlsson | 1a31a18 | 2009-10-30 00:46:35 +0000 | [diff] [blame] | 1051 | return "DerivedToBaseMemberPointer"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1052 | case CK_UserDefinedConversion: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1053 | return "UserDefinedConversion"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1054 | case CK_ConstructorConversion: |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1055 | return "ConstructorConversion"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1056 | case CK_IntegralToPointer: |
Anders Carlsson | 7f9e646 | 2009-09-15 04:48:33 +0000 | [diff] [blame] | 1057 | return "IntegralToPointer"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1058 | case CK_PointerToIntegral: |
Anders Carlsson | 7f9e646 | 2009-09-15 04:48:33 +0000 | [diff] [blame] | 1059 | return "PointerToIntegral"; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 1060 | case CK_PointerToBoolean: |
| 1061 | return "PointerToBoolean"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1062 | case CK_ToVoid: |
Anders Carlsson | ebeaf20 | 2009-10-16 02:35:04 +0000 | [diff] [blame] | 1063 | return "ToVoid"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1064 | case CK_VectorSplat: |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 1065 | return "VectorSplat"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1066 | case CK_IntegralCast: |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 1067 | return "IntegralCast"; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 1068 | case CK_IntegralToBoolean: |
| 1069 | return "IntegralToBoolean"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1070 | case CK_IntegralToFloating: |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 1071 | return "IntegralToFloating"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1072 | case CK_FloatingToIntegral: |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 1073 | return "FloatingToIntegral"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1074 | case CK_FloatingCast: |
Benjamin Kramer | c6b2916 | 2009-10-18 19:02:15 +0000 | [diff] [blame] | 1075 | return "FloatingCast"; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 1076 | case CK_FloatingToBoolean: |
| 1077 | return "FloatingToBoolean"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1078 | case CK_MemberPointerToBoolean: |
Anders Carlsson | bc0e078 | 2009-11-23 20:04:44 +0000 | [diff] [blame] | 1079 | return "MemberPointerToBoolean"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1080 | case CK_AnyPointerToObjCPointerCast: |
Fariborz Jahanian | 4cbf9d4 | 2009-12-08 23:46:15 +0000 | [diff] [blame] | 1081 | return "AnyPointerToObjCPointerCast"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1082 | case CK_AnyPointerToBlockPointerCast: |
Fariborz Jahanian | 3b27f1a | 2009-12-11 22:40:48 +0000 | [diff] [blame] | 1083 | return "AnyPointerToBlockPointerCast"; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1084 | case CK_ObjCObjectLValueCast: |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 1085 | return "ObjCObjectLValueCast"; |
John McCall | 2bb5d00 | 2010-11-13 09:02:35 +0000 | [diff] [blame] | 1086 | case CK_FloatingRealToComplex: |
| 1087 | return "FloatingRealToComplex"; |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 1088 | case CK_FloatingComplexToReal: |
| 1089 | return "FloatingComplexToReal"; |
| 1090 | case CK_FloatingComplexToBoolean: |
| 1091 | return "FloatingComplexToBoolean"; |
John McCall | 2bb5d00 | 2010-11-13 09:02:35 +0000 | [diff] [blame] | 1092 | case CK_FloatingComplexCast: |
| 1093 | return "FloatingComplexCast"; |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 1094 | case CK_FloatingComplexToIntegralComplex: |
| 1095 | return "FloatingComplexToIntegralComplex"; |
John McCall | 2bb5d00 | 2010-11-13 09:02:35 +0000 | [diff] [blame] | 1096 | case CK_IntegralRealToComplex: |
| 1097 | return "IntegralRealToComplex"; |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 1098 | case CK_IntegralComplexToReal: |
| 1099 | return "IntegralComplexToReal"; |
| 1100 | case CK_IntegralComplexToBoolean: |
| 1101 | return "IntegralComplexToBoolean"; |
John McCall | 2bb5d00 | 2010-11-13 09:02:35 +0000 | [diff] [blame] | 1102 | case CK_IntegralComplexCast: |
| 1103 | return "IntegralComplexCast"; |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 1104 | case CK_IntegralComplexToFloatingComplex: |
| 1105 | return "IntegralComplexToFloatingComplex"; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1106 | case CK_ObjCConsumeObject: |
| 1107 | return "ObjCConsumeObject"; |
| 1108 | case CK_ObjCProduceObject: |
| 1109 | return "ObjCProduceObject"; |
John McCall | 7e5e5f4 | 2011-07-07 06:58:02 +0000 | [diff] [blame] | 1110 | case CK_ObjCReclaimReturnedObject: |
| 1111 | return "ObjCReclaimReturnedObject"; |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1112 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1113 | |
John McCall | 2bb5d00 | 2010-11-13 09:02:35 +0000 | [diff] [blame] | 1114 | llvm_unreachable("Unhandled cast kind!"); |
Anders Carlsson | f8ec55a | 2009-09-03 00:59:21 +0000 | [diff] [blame] | 1115 | return 0; |
| 1116 | } |
| 1117 | |
Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 1118 | Expr *CastExpr::getSubExprAsWritten() { |
| 1119 | Expr *SubExpr = 0; |
| 1120 | CastExpr *E = this; |
| 1121 | do { |
| 1122 | SubExpr = E->getSubExpr(); |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 1123 | |
| 1124 | // Skip through reference binding to temporary. |
| 1125 | if (MaterializeTemporaryExpr *Materialize |
| 1126 | = dyn_cast<MaterializeTemporaryExpr>(SubExpr)) |
| 1127 | SubExpr = Materialize->GetTemporaryExpr(); |
| 1128 | |
Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 1129 | // Skip any temporary bindings; they're implicit. |
| 1130 | if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr)) |
| 1131 | SubExpr = Binder->getSubExpr(); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 1132 | |
Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 1133 | // Conversions by constructor and conversion functions have a |
| 1134 | // subexpression describing the call; strip it off. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1135 | if (E->getCastKind() == CK_ConstructorConversion) |
Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 1136 | SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1137 | else if (E->getCastKind() == CK_UserDefinedConversion) |
Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 1138 | SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument(); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 1139 | |
Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 1140 | // If the subexpression we're left with is an implicit cast, look |
| 1141 | // through that, too. |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 1142 | } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr))); |
| 1143 | |
Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 1144 | return SubExpr; |
| 1145 | } |
| 1146 | |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 1147 | CXXBaseSpecifier **CastExpr::path_buffer() { |
| 1148 | switch (getStmtClass()) { |
| 1149 | #define ABSTRACT_STMT(x) |
| 1150 | #define CASTEXPR(Type, Base) \ |
| 1151 | case Stmt::Type##Class: \ |
| 1152 | return reinterpret_cast<CXXBaseSpecifier**>(static_cast<Type*>(this)+1); |
| 1153 | #define STMT(Type, Base) |
| 1154 | #include "clang/AST/StmtNodes.inc" |
| 1155 | default: |
| 1156 | llvm_unreachable("non-cast expressions not possible here"); |
| 1157 | return 0; |
| 1158 | } |
| 1159 | } |
| 1160 | |
| 1161 | void CastExpr::setCastPath(const CXXCastPath &Path) { |
| 1162 | assert(Path.size() == path_size()); |
| 1163 | memcpy(path_buffer(), Path.data(), Path.size() * sizeof(CXXBaseSpecifier*)); |
| 1164 | } |
| 1165 | |
| 1166 | ImplicitCastExpr *ImplicitCastExpr::Create(ASTContext &C, QualType T, |
| 1167 | CastKind Kind, Expr *Operand, |
| 1168 | const CXXCastPath *BasePath, |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 1169 | ExprValueKind VK) { |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 1170 | unsigned PathSize = (BasePath ? BasePath->size() : 0); |
| 1171 | void *Buffer = |
| 1172 | C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); |
| 1173 | ImplicitCastExpr *E = |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 1174 | new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK); |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 1175 | if (PathSize) E->setCastPath(*BasePath); |
| 1176 | return E; |
| 1177 | } |
| 1178 | |
| 1179 | ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(ASTContext &C, |
| 1180 | unsigned PathSize) { |
| 1181 | void *Buffer = |
| 1182 | C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); |
| 1183 | return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize); |
| 1184 | } |
| 1185 | |
| 1186 | |
| 1187 | CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 1188 | ExprValueKind VK, CastKind K, Expr *Op, |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 1189 | const CXXCastPath *BasePath, |
| 1190 | TypeSourceInfo *WrittenTy, |
| 1191 | SourceLocation L, SourceLocation R) { |
| 1192 | unsigned PathSize = (BasePath ? BasePath->size() : 0); |
| 1193 | void *Buffer = |
| 1194 | C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); |
| 1195 | CStyleCastExpr *E = |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 1196 | new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R); |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 1197 | if (PathSize) E->setCastPath(*BasePath); |
| 1198 | return E; |
| 1199 | } |
| 1200 | |
| 1201 | CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) { |
| 1202 | void *Buffer = |
| 1203 | C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); |
| 1204 | return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize); |
| 1205 | } |
| 1206 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1207 | /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it |
| 1208 | /// corresponds to, e.g. "<<=". |
| 1209 | const char *BinaryOperator::getOpcodeStr(Opcode Op) { |
| 1210 | switch (Op) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1211 | case BO_PtrMemD: return ".*"; |
| 1212 | case BO_PtrMemI: return "->*"; |
| 1213 | case BO_Mul: return "*"; |
| 1214 | case BO_Div: return "/"; |
| 1215 | case BO_Rem: return "%"; |
| 1216 | case BO_Add: return "+"; |
| 1217 | case BO_Sub: return "-"; |
| 1218 | case BO_Shl: return "<<"; |
| 1219 | case BO_Shr: return ">>"; |
| 1220 | case BO_LT: return "<"; |
| 1221 | case BO_GT: return ">"; |
| 1222 | case BO_LE: return "<="; |
| 1223 | case BO_GE: return ">="; |
| 1224 | case BO_EQ: return "=="; |
| 1225 | case BO_NE: return "!="; |
| 1226 | case BO_And: return "&"; |
| 1227 | case BO_Xor: return "^"; |
| 1228 | case BO_Or: return "|"; |
| 1229 | case BO_LAnd: return "&&"; |
| 1230 | case BO_LOr: return "||"; |
| 1231 | case BO_Assign: return "="; |
| 1232 | case BO_MulAssign: return "*="; |
| 1233 | case BO_DivAssign: return "/="; |
| 1234 | case BO_RemAssign: return "%="; |
| 1235 | case BO_AddAssign: return "+="; |
| 1236 | case BO_SubAssign: return "-="; |
| 1237 | case BO_ShlAssign: return "<<="; |
| 1238 | case BO_ShrAssign: return ">>="; |
| 1239 | case BO_AndAssign: return "&="; |
| 1240 | case BO_XorAssign: return "^="; |
| 1241 | case BO_OrAssign: return "|="; |
| 1242 | case BO_Comma: return ","; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1243 | } |
Douglas Gregor | baf5348 | 2009-03-12 22:51:37 +0000 | [diff] [blame] | 1244 | |
| 1245 | return ""; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1246 | } |
| 1247 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1248 | BinaryOperatorKind |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1249 | BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) { |
| 1250 | switch (OO) { |
Chris Lattner | b7beee9 | 2009-03-22 00:10:22 +0000 | [diff] [blame] | 1251 | default: assert(false && "Not an overloadable binary operator"); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1252 | case OO_Plus: return BO_Add; |
| 1253 | case OO_Minus: return BO_Sub; |
| 1254 | case OO_Star: return BO_Mul; |
| 1255 | case OO_Slash: return BO_Div; |
| 1256 | case OO_Percent: return BO_Rem; |
| 1257 | case OO_Caret: return BO_Xor; |
| 1258 | case OO_Amp: return BO_And; |
| 1259 | case OO_Pipe: return BO_Or; |
| 1260 | case OO_Equal: return BO_Assign; |
| 1261 | case OO_Less: return BO_LT; |
| 1262 | case OO_Greater: return BO_GT; |
| 1263 | case OO_PlusEqual: return BO_AddAssign; |
| 1264 | case OO_MinusEqual: return BO_SubAssign; |
| 1265 | case OO_StarEqual: return BO_MulAssign; |
| 1266 | case OO_SlashEqual: return BO_DivAssign; |
| 1267 | case OO_PercentEqual: return BO_RemAssign; |
| 1268 | case OO_CaretEqual: return BO_XorAssign; |
| 1269 | case OO_AmpEqual: return BO_AndAssign; |
| 1270 | case OO_PipeEqual: return BO_OrAssign; |
| 1271 | case OO_LessLess: return BO_Shl; |
| 1272 | case OO_GreaterGreater: return BO_Shr; |
| 1273 | case OO_LessLessEqual: return BO_ShlAssign; |
| 1274 | case OO_GreaterGreaterEqual: return BO_ShrAssign; |
| 1275 | case OO_EqualEqual: return BO_EQ; |
| 1276 | case OO_ExclaimEqual: return BO_NE; |
| 1277 | case OO_LessEqual: return BO_LE; |
| 1278 | case OO_GreaterEqual: return BO_GE; |
| 1279 | case OO_AmpAmp: return BO_LAnd; |
| 1280 | case OO_PipePipe: return BO_LOr; |
| 1281 | case OO_Comma: return BO_Comma; |
| 1282 | case OO_ArrowStar: return BO_PtrMemI; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1283 | } |
| 1284 | } |
| 1285 | |
| 1286 | OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) { |
| 1287 | static const OverloadedOperatorKind OverOps[] = { |
| 1288 | /* .* Cannot be overloaded */OO_None, OO_ArrowStar, |
| 1289 | OO_Star, OO_Slash, OO_Percent, |
| 1290 | OO_Plus, OO_Minus, |
| 1291 | OO_LessLess, OO_GreaterGreater, |
| 1292 | OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual, |
| 1293 | OO_EqualEqual, OO_ExclaimEqual, |
| 1294 | OO_Amp, |
| 1295 | OO_Caret, |
| 1296 | OO_Pipe, |
| 1297 | OO_AmpAmp, |
| 1298 | OO_PipePipe, |
| 1299 | OO_Equal, OO_StarEqual, |
| 1300 | OO_SlashEqual, OO_PercentEqual, |
| 1301 | OO_PlusEqual, OO_MinusEqual, |
| 1302 | OO_LessLessEqual, OO_GreaterGreaterEqual, |
| 1303 | OO_AmpEqual, OO_CaretEqual, |
| 1304 | OO_PipeEqual, |
| 1305 | OO_Comma |
| 1306 | }; |
| 1307 | return OverOps[Opc]; |
| 1308 | } |
| 1309 | |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 1310 | InitListExpr::InitListExpr(ASTContext &C, SourceLocation lbraceloc, |
Chris Lattner | 418f6c7 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 1311 | Expr **initExprs, unsigned numInits, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1312 | SourceLocation rbraceloc) |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 1313 | : Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary, false, false, |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 1314 | false, false), |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 1315 | InitExprs(C, numInits), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1316 | LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0), |
Argyrios Kyrtzidis | 4423ac0 | 2011-04-21 00:27:41 +0000 | [diff] [blame] | 1317 | HadArrayRangeDesignator(false) |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 1318 | { |
Ted Kremenek | ba7bc55 | 2010-02-19 01:50:18 +0000 | [diff] [blame] | 1319 | for (unsigned I = 0; I != numInits; ++I) { |
| 1320 | if (initExprs[I]->isTypeDependent()) |
John McCall | 8e6285a | 2010-10-26 08:39:16 +0000 | [diff] [blame] | 1321 | ExprBits.TypeDependent = true; |
Ted Kremenek | ba7bc55 | 2010-02-19 01:50:18 +0000 | [diff] [blame] | 1322 | if (initExprs[I]->isValueDependent()) |
John McCall | 8e6285a | 2010-10-26 08:39:16 +0000 | [diff] [blame] | 1323 | ExprBits.ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 1324 | if (initExprs[I]->isInstantiationDependent()) |
| 1325 | ExprBits.InstantiationDependent = true; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 1326 | if (initExprs[I]->containsUnexpandedParameterPack()) |
| 1327 | ExprBits.ContainsUnexpandedParameterPack = true; |
Douglas Gregor | 73460a3 | 2009-11-19 23:25:22 +0000 | [diff] [blame] | 1328 | } |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 1329 | |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 1330 | InitExprs.insert(C, InitExprs.end(), initExprs, initExprs+numInits); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1331 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1332 | |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 1333 | void InitListExpr::reserveInits(ASTContext &C, unsigned NumInits) { |
Ted Kremenek | ba7bc55 | 2010-02-19 01:50:18 +0000 | [diff] [blame] | 1334 | if (NumInits > InitExprs.size()) |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 1335 | InitExprs.reserve(C, NumInits); |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 1336 | } |
| 1337 | |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 1338 | void InitListExpr::resizeInits(ASTContext &C, unsigned NumInits) { |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 1339 | InitExprs.resize(C, NumInits, 0); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1340 | } |
| 1341 | |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 1342 | Expr *InitListExpr::updateInit(ASTContext &C, unsigned Init, Expr *expr) { |
Ted Kremenek | ba7bc55 | 2010-02-19 01:50:18 +0000 | [diff] [blame] | 1343 | if (Init >= InitExprs.size()) { |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 1344 | InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, 0); |
Ted Kremenek | ba7bc55 | 2010-02-19 01:50:18 +0000 | [diff] [blame] | 1345 | InitExprs.back() = expr; |
| 1346 | return 0; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1347 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1348 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1349 | Expr *Result = cast_or_null<Expr>(InitExprs[Init]); |
| 1350 | InitExprs[Init] = expr; |
| 1351 | return Result; |
| 1352 | } |
| 1353 | |
Argyrios Kyrtzidis | 3e8dc2a | 2011-04-21 20:03:38 +0000 | [diff] [blame] | 1354 | void InitListExpr::setArrayFiller(Expr *filler) { |
| 1355 | ArrayFillerOrUnionFieldInit = filler; |
| 1356 | // Fill out any "holes" in the array due to designated initializers. |
| 1357 | Expr **inits = getInits(); |
| 1358 | for (unsigned i = 0, e = getNumInits(); i != e; ++i) |
| 1359 | if (inits[i] == 0) |
| 1360 | inits[i] = filler; |
| 1361 | } |
| 1362 | |
Ted Kremenek | c4ba51f | 2010-11-09 02:11:40 +0000 | [diff] [blame] | 1363 | SourceRange InitListExpr::getSourceRange() const { |
| 1364 | if (SyntacticForm) |
| 1365 | return SyntacticForm->getSourceRange(); |
| 1366 | SourceLocation Beg = LBraceLoc, End = RBraceLoc; |
| 1367 | if (Beg.isInvalid()) { |
| 1368 | // Find the first non-null initializer. |
| 1369 | for (InitExprsTy::const_iterator I = InitExprs.begin(), |
| 1370 | E = InitExprs.end(); |
| 1371 | I != E; ++I) { |
| 1372 | if (Stmt *S = *I) { |
| 1373 | Beg = S->getLocStart(); |
| 1374 | break; |
| 1375 | } |
| 1376 | } |
| 1377 | } |
| 1378 | if (End.isInvalid()) { |
| 1379 | // Find the first non-null initializer from the end. |
| 1380 | for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(), |
| 1381 | E = InitExprs.rend(); |
| 1382 | I != E; ++I) { |
| 1383 | if (Stmt *S = *I) { |
| 1384 | End = S->getSourceRange().getEnd(); |
| 1385 | break; |
| 1386 | } |
| 1387 | } |
| 1388 | } |
| 1389 | return SourceRange(Beg, End); |
| 1390 | } |
| 1391 | |
Steve Naroff | bfdcae6 | 2008-09-04 15:31:07 +0000 | [diff] [blame] | 1392 | /// getFunctionType - Return the underlying function type for this block. |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1393 | /// |
| 1394 | const FunctionType *BlockExpr::getFunctionType() const { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1395 | return getType()->getAs<BlockPointerType>()-> |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1396 | getPointeeType()->getAs<FunctionType>(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1397 | } |
| 1398 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1399 | SourceLocation BlockExpr::getCaretLocation() const { |
| 1400 | return TheBlock->getCaretLocation(); |
Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 1401 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1402 | const Stmt *BlockExpr::getBody() const { |
Douglas Gregor | 7297134 | 2009-04-18 00:02:19 +0000 | [diff] [blame] | 1403 | return TheBlock->getBody(); |
| 1404 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1405 | Stmt *BlockExpr::getBody() { |
| 1406 | return TheBlock->getBody(); |
Douglas Gregor | 7297134 | 2009-04-18 00:02:19 +0000 | [diff] [blame] | 1407 | } |
Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 1408 | |
| 1409 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1410 | //===----------------------------------------------------------------------===// |
| 1411 | // Generic Expression Routines |
| 1412 | //===----------------------------------------------------------------------===// |
| 1413 | |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1414 | /// isUnusedResultAWarning - Return true if this immediate expression should |
| 1415 | /// be warned about if the result is unused. If so, fill in Loc and Ranges |
| 1416 | /// with location to warn on and the source range[s] to report with the |
| 1417 | /// warning. |
| 1418 | bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1, |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1419 | SourceRange &R2, ASTContext &Ctx) const { |
Anders Carlsson | ffce2df | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 1420 | // Don't warn if the expr is type dependent. The type could end up |
| 1421 | // instantiating to void. |
| 1422 | if (isTypeDependent()) |
| 1423 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1424 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1425 | switch (getStmtClass()) { |
| 1426 | default: |
John McCall | 0faede6 | 2010-03-12 07:11:26 +0000 | [diff] [blame] | 1427 | if (getType()->isVoidType()) |
| 1428 | return false; |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1429 | Loc = getExprLoc(); |
| 1430 | R1 = getSourceRange(); |
| 1431 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1432 | case ParenExprClass: |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1433 | return cast<ParenExpr>(this)->getSubExpr()-> |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1434 | isUnusedResultAWarning(Loc, R1, R2, Ctx); |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1435 | case GenericSelectionExprClass: |
| 1436 | return cast<GenericSelectionExpr>(this)->getResultExpr()-> |
| 1437 | isUnusedResultAWarning(Loc, R1, R2, Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1438 | case UnaryOperatorClass: { |
| 1439 | const UnaryOperator *UO = cast<UnaryOperator>(this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1440 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1441 | switch (UO->getOpcode()) { |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1442 | default: break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1443 | case UO_PostInc: |
| 1444 | case UO_PostDec: |
| 1445 | case UO_PreInc: |
| 1446 | case UO_PreDec: // ++/-- |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1447 | return false; // Not a warning. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1448 | case UO_Deref: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1449 | // Dereferencing a volatile pointer is a side-effect. |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1450 | if (Ctx.getCanonicalType(getType()).isVolatileQualified()) |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1451 | return false; |
| 1452 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1453 | case UO_Real: |
| 1454 | case UO_Imag: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1455 | // accessing a piece of a volatile complex is a side-effect. |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1456 | if (Ctx.getCanonicalType(UO->getSubExpr()->getType()) |
| 1457 | .isVolatileQualified()) |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1458 | return false; |
| 1459 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1460 | case UO_Extension: |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1461 | return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1462 | } |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1463 | Loc = UO->getOperatorLoc(); |
| 1464 | R1 = UO->getSubExpr()->getSourceRange(); |
| 1465 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1466 | } |
Chris Lattner | e7716e6 | 2007-12-01 06:07:34 +0000 | [diff] [blame] | 1467 | case BinaryOperatorClass: { |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1468 | const BinaryOperator *BO = cast<BinaryOperator>(this); |
Ted Kremenek | c46a246 | 2010-04-07 18:49:21 +0000 | [diff] [blame] | 1469 | switch (BO->getOpcode()) { |
| 1470 | default: |
| 1471 | break; |
Argyrios Kyrtzidis | 2597345 | 2010-06-30 10:53:14 +0000 | [diff] [blame] | 1472 | // Consider the RHS of comma for side effects. LHS was checked by |
| 1473 | // Sema::CheckCommaOperands. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1474 | case BO_Comma: |
Ted Kremenek | c46a246 | 2010-04-07 18:49:21 +0000 | [diff] [blame] | 1475 | // ((foo = <blah>), 0) is an idiom for hiding the result (and |
| 1476 | // lvalue-ness) of an assignment written in a macro. |
| 1477 | if (IntegerLiteral *IE = |
| 1478 | dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens())) |
| 1479 | if (IE->getValue() == 0) |
| 1480 | return false; |
Argyrios Kyrtzidis | 2597345 | 2010-06-30 10:53:14 +0000 | [diff] [blame] | 1481 | return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx); |
| 1482 | // Consider '||', '&&' to have side effects if the LHS or RHS does. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1483 | case BO_LAnd: |
| 1484 | case BO_LOr: |
Argyrios Kyrtzidis | 2597345 | 2010-06-30 10:53:14 +0000 | [diff] [blame] | 1485 | if (!BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx) || |
| 1486 | !BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx)) |
| 1487 | return false; |
| 1488 | break; |
John McCall | bf0ee35 | 2010-02-16 04:10:53 +0000 | [diff] [blame] | 1489 | } |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1490 | if (BO->isAssignmentOp()) |
| 1491 | return false; |
| 1492 | Loc = BO->getOperatorLoc(); |
| 1493 | R1 = BO->getLHS()->getSourceRange(); |
| 1494 | R2 = BO->getRHS()->getSourceRange(); |
| 1495 | return true; |
Chris Lattner | e7716e6 | 2007-12-01 06:07:34 +0000 | [diff] [blame] | 1496 | } |
Chris Lattner | eb14fe8 | 2007-08-25 02:00:02 +0000 | [diff] [blame] | 1497 | case CompoundAssignOperatorClass: |
Douglas Gregor | c6dfe19 | 2010-05-08 22:41:50 +0000 | [diff] [blame] | 1498 | case VAArgExprClass: |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1499 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1500 | |
Fariborz Jahanian | ab38e4b | 2007-12-01 19:58:28 +0000 | [diff] [blame] | 1501 | case ConditionalOperatorClass: { |
Ted Kremenek | fb7cb35 | 2011-03-01 20:34:48 +0000 | [diff] [blame] | 1502 | // If only one of the LHS or RHS is a warning, the operator might |
| 1503 | // be being used for control flow. Only warn if both the LHS and |
| 1504 | // RHS are warnings. |
Fariborz Jahanian | ab38e4b | 2007-12-01 19:58:28 +0000 | [diff] [blame] | 1505 | const ConditionalOperator *Exp = cast<ConditionalOperator>(this); |
Ted Kremenek | fb7cb35 | 2011-03-01 20:34:48 +0000 | [diff] [blame] | 1506 | if (!Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx)) |
| 1507 | return false; |
| 1508 | if (!Exp->getLHS()) |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1509 | return true; |
Ted Kremenek | fb7cb35 | 2011-03-01 20:34:48 +0000 | [diff] [blame] | 1510 | return Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx); |
Fariborz Jahanian | ab38e4b | 2007-12-01 19:58:28 +0000 | [diff] [blame] | 1511 | } |
| 1512 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1513 | case MemberExprClass: |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1514 | // If the base pointer or element is to a volatile pointer/field, accessing |
| 1515 | // it is a side effect. |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1516 | if (Ctx.getCanonicalType(getType()).isVolatileQualified()) |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1517 | return false; |
| 1518 | Loc = cast<MemberExpr>(this)->getMemberLoc(); |
| 1519 | R1 = SourceRange(Loc, Loc); |
| 1520 | R2 = cast<MemberExpr>(this)->getBase()->getSourceRange(); |
| 1521 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1522 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1523 | case ArraySubscriptExprClass: |
| 1524 | // If the base pointer or element is to a volatile pointer/field, accessing |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1525 | // it is a side effect. |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1526 | if (Ctx.getCanonicalType(getType()).isVolatileQualified()) |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1527 | return false; |
| 1528 | Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc(); |
| 1529 | R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange(); |
| 1530 | R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange(); |
| 1531 | return true; |
Eli Friedman | 211f6ad | 2008-05-27 15:24:04 +0000 | [diff] [blame] | 1532 | |
Chandler Carruth | 9b10683 | 2011-08-17 09:49:44 +0000 | [diff] [blame] | 1533 | case CXXOperatorCallExprClass: { |
| 1534 | // We warn about operator== and operator!= even when user-defined operator |
| 1535 | // overloads as there is no reasonable way to define these such that they |
| 1536 | // have non-trivial, desirable side-effects. See the -Wunused-comparison |
| 1537 | // warning: these operators are commonly typo'ed, and so warning on them |
| 1538 | // provides additional value as well. If this list is updated, |
| 1539 | // DiagnoseUnusedComparison should be as well. |
| 1540 | const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this); |
| 1541 | if (Op->getOperator() == OO_EqualEqual || |
| 1542 | Op->getOperator() == OO_ExclaimEqual) |
| 1543 | return true; |
| 1544 | |
| 1545 | // Fallthrough for generic call handling. |
| 1546 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1547 | case CallExprClass: |
Eli Friedman | 852871a | 2009-04-29 16:35:53 +0000 | [diff] [blame] | 1548 | case CXXMemberCallExprClass: { |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1549 | // If this is a direct call, get the callee. |
| 1550 | const CallExpr *CE = cast<CallExpr>(this); |
Nuno Lopes | d20254f | 2009-12-20 23:11:08 +0000 | [diff] [blame] | 1551 | if (const Decl *FD = CE->getCalleeDecl()) { |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1552 | // If the callee has attribute pure, const, or warn_unused_result, warn |
| 1553 | // about it. void foo() { strlen("bar"); } should warn. |
Chris Lattner | bc8d42c | 2009-10-13 04:53:48 +0000 | [diff] [blame] | 1554 | // |
| 1555 | // Note: If new cases are added here, DiagnoseUnusedExprResult should be |
| 1556 | // updated to match for QoI. |
| 1557 | if (FD->getAttr<WarnUnusedResultAttr>() || |
| 1558 | FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) { |
| 1559 | Loc = CE->getCallee()->getLocStart(); |
| 1560 | R1 = CE->getCallee()->getSourceRange(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1561 | |
Chris Lattner | bc8d42c | 2009-10-13 04:53:48 +0000 | [diff] [blame] | 1562 | if (unsigned NumArgs = CE->getNumArgs()) |
| 1563 | R2 = SourceRange(CE->getArg(0)->getLocStart(), |
| 1564 | CE->getArg(NumArgs-1)->getLocEnd()); |
| 1565 | return true; |
| 1566 | } |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1567 | } |
| 1568 | return false; |
| 1569 | } |
Anders Carlsson | 58beed9 | 2009-11-17 17:11:23 +0000 | [diff] [blame] | 1570 | |
| 1571 | case CXXTemporaryObjectExprClass: |
| 1572 | case CXXConstructExprClass: |
| 1573 | return false; |
| 1574 | |
Fariborz Jahanian | f031774 | 2010-03-30 18:22:15 +0000 | [diff] [blame] | 1575 | case ObjCMessageExprClass: { |
| 1576 | const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1577 | if (Ctx.getLangOptions().ObjCAutoRefCount && |
| 1578 | ME->isInstanceMessage() && |
| 1579 | !ME->getType()->isVoidType() && |
| 1580 | ME->getSelector().getIdentifierInfoForSlot(0) && |
| 1581 | ME->getSelector().getIdentifierInfoForSlot(0) |
| 1582 | ->getName().startswith("init")) { |
| 1583 | Loc = getExprLoc(); |
| 1584 | R1 = ME->getSourceRange(); |
| 1585 | return true; |
| 1586 | } |
| 1587 | |
Fariborz Jahanian | f031774 | 2010-03-30 18:22:15 +0000 | [diff] [blame] | 1588 | const ObjCMethodDecl *MD = ME->getMethodDecl(); |
| 1589 | if (MD && MD->getAttr<WarnUnusedResultAttr>()) { |
| 1590 | Loc = getExprLoc(); |
| 1591 | return true; |
| 1592 | } |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1593 | return false; |
Fariborz Jahanian | f031774 | 2010-03-30 18:22:15 +0000 | [diff] [blame] | 1594 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1595 | |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 1596 | case ObjCPropertyRefExprClass: |
Chris Lattner | 5e94a0d | 2009-08-16 16:51:50 +0000 | [diff] [blame] | 1597 | Loc = getExprLoc(); |
| 1598 | R1 = getSourceRange(); |
Chris Lattner | a50089e | 2009-08-16 16:45:18 +0000 | [diff] [blame] | 1599 | return true; |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 1600 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 1601 | case StmtExprClass: { |
| 1602 | // Statement exprs don't logically have side effects themselves, but are |
| 1603 | // sometimes used in macros in ways that give them a type that is unused. |
| 1604 | // For example ({ blah; foo(); }) will end up with a type if foo has a type. |
| 1605 | // however, if the result of the stmt expr is dead, we don't want to emit a |
| 1606 | // warning. |
| 1607 | const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt(); |
Argyrios Kyrtzidis | d2827af | 2010-09-19 21:21:10 +0000 | [diff] [blame] | 1608 | if (!CS->body_empty()) { |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 1609 | if (const Expr *E = dyn_cast<Expr>(CS->body_back())) |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1610 | return E->isUnusedResultAWarning(Loc, R1, R2, Ctx); |
Argyrios Kyrtzidis | d2827af | 2010-09-19 21:21:10 +0000 | [diff] [blame] | 1611 | if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back())) |
| 1612 | if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt())) |
| 1613 | return E->isUnusedResultAWarning(Loc, R1, R2, Ctx); |
| 1614 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1615 | |
John McCall | 0faede6 | 2010-03-12 07:11:26 +0000 | [diff] [blame] | 1616 | if (getType()->isVoidType()) |
| 1617 | return false; |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1618 | Loc = cast<StmtExpr>(this)->getLParenLoc(); |
| 1619 | R1 = getSourceRange(); |
| 1620 | return true; |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 1621 | } |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 1622 | case CStyleCastExprClass: |
Chris Lattner | fb84664 | 2009-07-28 18:25:28 +0000 | [diff] [blame] | 1623 | // If this is an explicit cast to void, allow it. People do this when they |
| 1624 | // think they know what they're doing :). |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1625 | if (getType()->isVoidType()) |
Chris Lattner | fb84664 | 2009-07-28 18:25:28 +0000 | [diff] [blame] | 1626 | return false; |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1627 | Loc = cast<CStyleCastExpr>(this)->getLParenLoc(); |
| 1628 | R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange(); |
| 1629 | return true; |
Anders Carlsson | 58beed9 | 2009-11-17 17:11:23 +0000 | [diff] [blame] | 1630 | case CXXFunctionalCastExprClass: { |
John McCall | 0faede6 | 2010-03-12 07:11:26 +0000 | [diff] [blame] | 1631 | if (getType()->isVoidType()) |
| 1632 | return false; |
Anders Carlsson | 58beed9 | 2009-11-17 17:11:23 +0000 | [diff] [blame] | 1633 | const CastExpr *CE = cast<CastExpr>(this); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 1634 | |
Anders Carlsson | 58beed9 | 2009-11-17 17:11:23 +0000 | [diff] [blame] | 1635 | // If this is a cast to void or a constructor conversion, check the operand. |
| 1636 | // Otherwise, the result of the cast is unused. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1637 | if (CE->getCastKind() == CK_ToVoid || |
| 1638 | CE->getCastKind() == CK_ConstructorConversion) |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1639 | return (cast<CastExpr>(this)->getSubExpr() |
| 1640 | ->isUnusedResultAWarning(Loc, R1, R2, Ctx)); |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1641 | Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc(); |
| 1642 | R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange(); |
| 1643 | return true; |
Anders Carlsson | 58beed9 | 2009-11-17 17:11:23 +0000 | [diff] [blame] | 1644 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1645 | |
Eli Friedman | 4be1f47 | 2008-05-19 21:24:43 +0000 | [diff] [blame] | 1646 | case ImplicitCastExprClass: |
| 1647 | // Check the operand, since implicit casts are inserted by Sema |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1648 | return (cast<ImplicitCastExpr>(this) |
| 1649 | ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx)); |
Eli Friedman | 4be1f47 | 2008-05-19 21:24:43 +0000 | [diff] [blame] | 1650 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1651 | case CXXDefaultArgExprClass: |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1652 | return (cast<CXXDefaultArgExpr>(this) |
| 1653 | ->getExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx)); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1654 | |
| 1655 | case CXXNewExprClass: |
| 1656 | // FIXME: In theory, there might be new expressions that don't have side |
| 1657 | // effects (e.g. a placement new with an uninitialized POD). |
| 1658 | case CXXDeleteExprClass: |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 1659 | return false; |
Anders Carlsson | 2d46eb2 | 2009-08-16 04:11:06 +0000 | [diff] [blame] | 1660 | case CXXBindTemporaryExprClass: |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1661 | return (cast<CXXBindTemporaryExpr>(this) |
| 1662 | ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx)); |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1663 | case ExprWithCleanupsClass: |
| 1664 | return (cast<ExprWithCleanups>(this) |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 1665 | ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx)); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1666 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1667 | } |
| 1668 | |
Fariborz Jahanian | 44baa8a | 2009-02-22 18:40:18 +0000 | [diff] [blame] | 1669 | /// isOBJCGCCandidate - Check if an expression is objc gc'able. |
Fariborz Jahanian | 7f4f86a | 2009-09-08 23:38:54 +0000 | [diff] [blame] | 1670 | /// returns true, if it is; false otherwise. |
Fariborz Jahanian | 102e390 | 2009-06-01 21:29:32 +0000 | [diff] [blame] | 1671 | bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const { |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1672 | const Expr *E = IgnoreParens(); |
| 1673 | switch (E->getStmtClass()) { |
Fariborz Jahanian | 44baa8a | 2009-02-22 18:40:18 +0000 | [diff] [blame] | 1674 | default: |
| 1675 | return false; |
| 1676 | case ObjCIvarRefExprClass: |
| 1677 | return true; |
Fariborz Jahanian | 207c521 | 2009-02-23 18:59:50 +0000 | [diff] [blame] | 1678 | case Expr::UnaryOperatorClass: |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1679 | return cast<UnaryOperator>(E)->getSubExpr()->isOBJCGCCandidate(Ctx); |
Fariborz Jahanian | 44baa8a | 2009-02-22 18:40:18 +0000 | [diff] [blame] | 1680 | case ImplicitCastExprClass: |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1681 | return cast<ImplicitCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx); |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 1682 | case MaterializeTemporaryExprClass: |
| 1683 | return cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr() |
| 1684 | ->isOBJCGCCandidate(Ctx); |
Fariborz Jahanian | 06b8912 | 2009-05-05 23:28:21 +0000 | [diff] [blame] | 1685 | case CStyleCastExprClass: |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1686 | return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx); |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 1687 | case DeclRefExprClass: { |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1688 | const Decl *D = cast<DeclRefExpr>(E)->getDecl(); |
Fariborz Jahanian | 102e390 | 2009-06-01 21:29:32 +0000 | [diff] [blame] | 1689 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 1690 | if (VD->hasGlobalStorage()) |
| 1691 | return true; |
| 1692 | QualType T = VD->getType(); |
Fariborz Jahanian | 59a53fa | 2009-09-16 18:09:18 +0000 | [diff] [blame] | 1693 | // dereferencing to a pointer is always a gc'able candidate, |
| 1694 | // unless it is __weak. |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 1695 | return T->isPointerType() && |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1696 | (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak); |
Fariborz Jahanian | 102e390 | 2009-06-01 21:29:32 +0000 | [diff] [blame] | 1697 | } |
Fariborz Jahanian | 44baa8a | 2009-02-22 18:40:18 +0000 | [diff] [blame] | 1698 | return false; |
| 1699 | } |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 1700 | case MemberExprClass: { |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1701 | const MemberExpr *M = cast<MemberExpr>(E); |
Fariborz Jahanian | 102e390 | 2009-06-01 21:29:32 +0000 | [diff] [blame] | 1702 | return M->getBase()->isOBJCGCCandidate(Ctx); |
Fariborz Jahanian | 44baa8a | 2009-02-22 18:40:18 +0000 | [diff] [blame] | 1703 | } |
| 1704 | case ArraySubscriptExprClass: |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1705 | return cast<ArraySubscriptExpr>(E)->getBase()->isOBJCGCCandidate(Ctx); |
Fariborz Jahanian | 44baa8a | 2009-02-22 18:40:18 +0000 | [diff] [blame] | 1706 | } |
| 1707 | } |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1708 | |
Argyrios Kyrtzidis | 11ab790 | 2010-11-01 18:49:26 +0000 | [diff] [blame] | 1709 | bool Expr::isBoundMemberFunction(ASTContext &Ctx) const { |
| 1710 | if (isTypeDependent()) |
| 1711 | return false; |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 1712 | return ClassifyLValue(Ctx) == Expr::LV_MemberFunction; |
Argyrios Kyrtzidis | 11ab790 | 2010-11-01 18:49:26 +0000 | [diff] [blame] | 1713 | } |
| 1714 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 1715 | QualType Expr::findBoundMemberType(const Expr *expr) { |
| 1716 | assert(expr->getType()->isSpecificPlaceholderType(BuiltinType::BoundMember)); |
| 1717 | |
| 1718 | // Bound member expressions are always one of these possibilities: |
| 1719 | // x->m x.m x->*y x.*y |
| 1720 | // (possibly parenthesized) |
| 1721 | |
| 1722 | expr = expr->IgnoreParens(); |
| 1723 | if (const MemberExpr *mem = dyn_cast<MemberExpr>(expr)) { |
| 1724 | assert(isa<CXXMethodDecl>(mem->getMemberDecl())); |
| 1725 | return mem->getMemberDecl()->getType(); |
| 1726 | } |
| 1727 | |
| 1728 | if (const BinaryOperator *op = dyn_cast<BinaryOperator>(expr)) { |
| 1729 | QualType type = op->getRHS()->getType()->castAs<MemberPointerType>() |
| 1730 | ->getPointeeType(); |
| 1731 | assert(type->isFunctionType()); |
| 1732 | return type; |
| 1733 | } |
| 1734 | |
| 1735 | assert(isa<UnresolvedMemberExpr>(expr)); |
| 1736 | return QualType(); |
| 1737 | } |
| 1738 | |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1739 | static Expr::CanThrowResult MergeCanThrow(Expr::CanThrowResult CT1, |
| 1740 | Expr::CanThrowResult CT2) { |
| 1741 | // CanThrowResult constants are ordered so that the maximum is the correct |
| 1742 | // merge result. |
| 1743 | return CT1 > CT2 ? CT1 : CT2; |
| 1744 | } |
| 1745 | |
| 1746 | static Expr::CanThrowResult CanSubExprsThrow(ASTContext &C, const Expr *CE) { |
| 1747 | Expr *E = const_cast<Expr*>(CE); |
| 1748 | Expr::CanThrowResult R = Expr::CT_Cannot; |
John McCall | 7502c1d | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 1749 | for (Expr::child_range I = E->children(); I && R != Expr::CT_Can; ++I) { |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1750 | R = MergeCanThrow(R, cast<Expr>(*I)->CanThrow(C)); |
| 1751 | } |
| 1752 | return R; |
| 1753 | } |
| 1754 | |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1755 | static Expr::CanThrowResult CanCalleeThrow(ASTContext &Ctx, const Expr *E, |
| 1756 | const Decl *D, |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1757 | bool NullThrows = true) { |
| 1758 | if (!D) |
| 1759 | return NullThrows ? Expr::CT_Can : Expr::CT_Cannot; |
| 1760 | |
| 1761 | // See if we can get a function type from the decl somehow. |
| 1762 | const ValueDecl *VD = dyn_cast<ValueDecl>(D); |
| 1763 | if (!VD) // If we have no clue what we're calling, assume the worst. |
| 1764 | return Expr::CT_Can; |
| 1765 | |
Sebastian Redl | 5221d8f | 2010-09-10 22:34:40 +0000 | [diff] [blame] | 1766 | // As an extension, we assume that __attribute__((nothrow)) functions don't |
| 1767 | // throw. |
| 1768 | if (isa<FunctionDecl>(D) && D->hasAttr<NoThrowAttr>()) |
| 1769 | return Expr::CT_Cannot; |
| 1770 | |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1771 | QualType T = VD->getType(); |
| 1772 | const FunctionProtoType *FT; |
| 1773 | if ((FT = T->getAs<FunctionProtoType>())) { |
| 1774 | } else if (const PointerType *PT = T->getAs<PointerType>()) |
| 1775 | FT = PT->getPointeeType()->getAs<FunctionProtoType>(); |
| 1776 | else if (const ReferenceType *RT = T->getAs<ReferenceType>()) |
| 1777 | FT = RT->getPointeeType()->getAs<FunctionProtoType>(); |
| 1778 | else if (const MemberPointerType *MT = T->getAs<MemberPointerType>()) |
| 1779 | FT = MT->getPointeeType()->getAs<FunctionProtoType>(); |
| 1780 | else if (const BlockPointerType *BT = T->getAs<BlockPointerType>()) |
| 1781 | FT = BT->getPointeeType()->getAs<FunctionProtoType>(); |
| 1782 | |
| 1783 | if (!FT) |
| 1784 | return Expr::CT_Can; |
| 1785 | |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1786 | if (FT->getExceptionSpecType() == EST_Delayed) { |
| 1787 | assert(isa<CXXConstructorDecl>(D) && |
| 1788 | "only constructor exception specs can be unknown"); |
| 1789 | Ctx.getDiagnostics().Report(E->getLocStart(), |
| 1790 | diag::err_exception_spec_unknown) |
| 1791 | << E->getSourceRange(); |
| 1792 | return Expr::CT_Can; |
| 1793 | } |
| 1794 | |
Sebastian Redl | 8026f6d | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 1795 | return FT->isNothrow(Ctx) ? Expr::CT_Cannot : Expr::CT_Can; |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1796 | } |
| 1797 | |
| 1798 | static Expr::CanThrowResult CanDynamicCastThrow(const CXXDynamicCastExpr *DC) { |
| 1799 | if (DC->isTypeDependent()) |
| 1800 | return Expr::CT_Dependent; |
| 1801 | |
Sebastian Redl | 295995c | 2010-09-10 20:55:47 +0000 | [diff] [blame] | 1802 | if (!DC->getTypeAsWritten()->isReferenceType()) |
| 1803 | return Expr::CT_Cannot; |
| 1804 | |
Eli Friedman | be57cf4 | 2011-05-11 05:22:44 +0000 | [diff] [blame] | 1805 | if (DC->getSubExpr()->isTypeDependent()) |
| 1806 | return Expr::CT_Dependent; |
| 1807 | |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1808 | return DC->getCastKind() == clang::CK_Dynamic? Expr::CT_Can : Expr::CT_Cannot; |
| 1809 | } |
| 1810 | |
| 1811 | static Expr::CanThrowResult CanTypeidThrow(ASTContext &C, |
| 1812 | const CXXTypeidExpr *DC) { |
| 1813 | if (DC->isTypeOperand()) |
| 1814 | return Expr::CT_Cannot; |
| 1815 | |
| 1816 | Expr *Op = DC->getExprOperand(); |
| 1817 | if (Op->isTypeDependent()) |
| 1818 | return Expr::CT_Dependent; |
| 1819 | |
| 1820 | const RecordType *RT = Op->getType()->getAs<RecordType>(); |
| 1821 | if (!RT) |
| 1822 | return Expr::CT_Cannot; |
| 1823 | |
| 1824 | if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic()) |
| 1825 | return Expr::CT_Cannot; |
| 1826 | |
| 1827 | if (Op->Classify(C).isPRValue()) |
| 1828 | return Expr::CT_Cannot; |
| 1829 | |
| 1830 | return Expr::CT_Can; |
| 1831 | } |
| 1832 | |
| 1833 | Expr::CanThrowResult Expr::CanThrow(ASTContext &C) const { |
| 1834 | // C++ [expr.unary.noexcept]p3: |
| 1835 | // [Can throw] if in a potentially-evaluated context the expression would |
| 1836 | // contain: |
| 1837 | switch (getStmtClass()) { |
| 1838 | case CXXThrowExprClass: |
| 1839 | // - a potentially evaluated throw-expression |
| 1840 | return CT_Can; |
| 1841 | |
| 1842 | case CXXDynamicCastExprClass: { |
| 1843 | // - a potentially evaluated dynamic_cast expression dynamic_cast<T>(v), |
| 1844 | // where T is a reference type, that requires a run-time check |
| 1845 | CanThrowResult CT = CanDynamicCastThrow(cast<CXXDynamicCastExpr>(this)); |
| 1846 | if (CT == CT_Can) |
| 1847 | return CT; |
| 1848 | return MergeCanThrow(CT, CanSubExprsThrow(C, this)); |
| 1849 | } |
| 1850 | |
| 1851 | case CXXTypeidExprClass: |
| 1852 | // - a potentially evaluated typeid expression applied to a glvalue |
| 1853 | // expression whose type is a polymorphic class type |
| 1854 | return CanTypeidThrow(C, cast<CXXTypeidExpr>(this)); |
| 1855 | |
| 1856 | // - a potentially evaluated call to a function, member function, function |
| 1857 | // pointer, or member function pointer that does not have a non-throwing |
| 1858 | // exception-specification |
| 1859 | case CallExprClass: |
| 1860 | case CXXOperatorCallExprClass: |
| 1861 | case CXXMemberCallExprClass: { |
Eli Friedman | ebc93e176 | 2011-05-12 02:11:32 +0000 | [diff] [blame] | 1862 | const CallExpr *CE = cast<CallExpr>(this); |
Eli Friedman | be57cf4 | 2011-05-11 05:22:44 +0000 | [diff] [blame] | 1863 | CanThrowResult CT; |
| 1864 | if (isTypeDependent()) |
| 1865 | CT = CT_Dependent; |
Eli Friedman | ebc93e176 | 2011-05-12 02:11:32 +0000 | [diff] [blame] | 1866 | else if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens())) |
| 1867 | CT = CT_Cannot; |
Eli Friedman | be57cf4 | 2011-05-11 05:22:44 +0000 | [diff] [blame] | 1868 | else |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1869 | CT = CanCalleeThrow(C, this, CE->getCalleeDecl()); |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1870 | if (CT == CT_Can) |
| 1871 | return CT; |
| 1872 | return MergeCanThrow(CT, CanSubExprsThrow(C, this)); |
| 1873 | } |
| 1874 | |
Sebastian Redl | 295995c | 2010-09-10 20:55:47 +0000 | [diff] [blame] | 1875 | case CXXConstructExprClass: |
| 1876 | case CXXTemporaryObjectExprClass: { |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1877 | CanThrowResult CT = CanCalleeThrow(C, this, |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1878 | cast<CXXConstructExpr>(this)->getConstructor()); |
| 1879 | if (CT == CT_Can) |
| 1880 | return CT; |
| 1881 | return MergeCanThrow(CT, CanSubExprsThrow(C, this)); |
| 1882 | } |
| 1883 | |
| 1884 | case CXXNewExprClass: { |
Eli Friedman | be57cf4 | 2011-05-11 05:22:44 +0000 | [diff] [blame] | 1885 | CanThrowResult CT; |
| 1886 | if (isTypeDependent()) |
| 1887 | CT = CT_Dependent; |
| 1888 | else |
| 1889 | CT = MergeCanThrow( |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1890 | CanCalleeThrow(C, this, cast<CXXNewExpr>(this)->getOperatorNew()), |
| 1891 | CanCalleeThrow(C, this, cast<CXXNewExpr>(this)->getConstructor(), |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1892 | /*NullThrows*/false)); |
| 1893 | if (CT == CT_Can) |
| 1894 | return CT; |
| 1895 | return MergeCanThrow(CT, CanSubExprsThrow(C, this)); |
| 1896 | } |
| 1897 | |
| 1898 | case CXXDeleteExprClass: { |
Eli Friedman | be57cf4 | 2011-05-11 05:22:44 +0000 | [diff] [blame] | 1899 | CanThrowResult CT; |
| 1900 | QualType DTy = cast<CXXDeleteExpr>(this)->getDestroyedType(); |
| 1901 | if (DTy.isNull() || DTy->isDependentType()) { |
| 1902 | CT = CT_Dependent; |
| 1903 | } else { |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1904 | CT = CanCalleeThrow(C, this, |
| 1905 | cast<CXXDeleteExpr>(this)->getOperatorDelete()); |
Eli Friedman | be57cf4 | 2011-05-11 05:22:44 +0000 | [diff] [blame] | 1906 | if (const RecordType *RT = DTy->getAs<RecordType>()) { |
| 1907 | const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1908 | CT = MergeCanThrow(CT, CanCalleeThrow(C, this, RD->getDestructor())); |
Sebastian Redl | 0b34cf7 | 2010-09-10 23:27:10 +0000 | [diff] [blame] | 1909 | } |
Eli Friedman | be57cf4 | 2011-05-11 05:22:44 +0000 | [diff] [blame] | 1910 | if (CT == CT_Can) |
| 1911 | return CT; |
Sebastian Redl | 0b34cf7 | 2010-09-10 23:27:10 +0000 | [diff] [blame] | 1912 | } |
| 1913 | return MergeCanThrow(CT, CanSubExprsThrow(C, this)); |
| 1914 | } |
| 1915 | |
| 1916 | case CXXBindTemporaryExprClass: { |
| 1917 | // The bound temporary has to be destroyed again, which might throw. |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1918 | CanThrowResult CT = CanCalleeThrow(C, this, |
Sebastian Redl | 0b34cf7 | 2010-09-10 23:27:10 +0000 | [diff] [blame] | 1919 | cast<CXXBindTemporaryExpr>(this)->getTemporary()->getDestructor()); |
| 1920 | if (CT == CT_Can) |
| 1921 | return CT; |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1922 | return MergeCanThrow(CT, CanSubExprsThrow(C, this)); |
| 1923 | } |
| 1924 | |
| 1925 | // ObjC message sends are like function calls, but never have exception |
| 1926 | // specs. |
| 1927 | case ObjCMessageExprClass: |
| 1928 | case ObjCPropertyRefExprClass: |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1929 | return CT_Can; |
| 1930 | |
| 1931 | // Many other things have subexpressions, so we have to test those. |
| 1932 | // Some are simple: |
| 1933 | case ParenExprClass: |
| 1934 | case MemberExprClass: |
| 1935 | case CXXReinterpretCastExprClass: |
| 1936 | case CXXConstCastExprClass: |
| 1937 | case ConditionalOperatorClass: |
| 1938 | case CompoundLiteralExprClass: |
| 1939 | case ExtVectorElementExprClass: |
| 1940 | case InitListExprClass: |
| 1941 | case DesignatedInitExprClass: |
| 1942 | case ParenListExprClass: |
| 1943 | case VAArgExprClass: |
| 1944 | case CXXDefaultArgExprClass: |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1945 | case ExprWithCleanupsClass: |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1946 | case ObjCIvarRefExprClass: |
| 1947 | case ObjCIsaExprClass: |
| 1948 | case ShuffleVectorExprClass: |
| 1949 | return CanSubExprsThrow(C, this); |
| 1950 | |
| 1951 | // Some might be dependent for other reasons. |
| 1952 | case UnaryOperatorClass: |
| 1953 | case ArraySubscriptExprClass: |
| 1954 | case ImplicitCastExprClass: |
| 1955 | case CStyleCastExprClass: |
| 1956 | case CXXStaticCastExprClass: |
| 1957 | case CXXFunctionalCastExprClass: |
| 1958 | case BinaryOperatorClass: |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 1959 | case CompoundAssignOperatorClass: |
| 1960 | case MaterializeTemporaryExprClass: { |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1961 | CanThrowResult CT = isTypeDependent() ? CT_Dependent : CT_Cannot; |
| 1962 | return MergeCanThrow(CT, CanSubExprsThrow(C, this)); |
| 1963 | } |
| 1964 | |
| 1965 | // FIXME: We should handle StmtExpr, but that opens a MASSIVE can of worms. |
| 1966 | case StmtExprClass: |
| 1967 | return CT_Can; |
| 1968 | |
| 1969 | case ChooseExprClass: |
| 1970 | if (isTypeDependent() || isValueDependent()) |
| 1971 | return CT_Dependent; |
| 1972 | return cast<ChooseExpr>(this)->getChosenSubExpr(C)->CanThrow(C); |
| 1973 | |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1974 | case GenericSelectionExprClass: |
| 1975 | if (cast<GenericSelectionExpr>(this)->isResultDependent()) |
| 1976 | return CT_Dependent; |
| 1977 | return cast<GenericSelectionExpr>(this)->getResultExpr()->CanThrow(C); |
| 1978 | |
Sebastian Redl | 369e51f | 2010-09-10 20:55:33 +0000 | [diff] [blame] | 1979 | // Some expressions are always dependent. |
| 1980 | case DependentScopeDeclRefExprClass: |
| 1981 | case CXXUnresolvedConstructExprClass: |
| 1982 | case CXXDependentScopeMemberExprClass: |
| 1983 | return CT_Dependent; |
| 1984 | |
| 1985 | default: |
| 1986 | // All other expressions don't have subexpressions, or else they are |
| 1987 | // unevaluated. |
| 1988 | return CT_Cannot; |
| 1989 | } |
| 1990 | } |
| 1991 | |
Ted Kremenek | 4e99a5f | 2008-01-17 16:57:34 +0000 | [diff] [blame] | 1992 | Expr* Expr::IgnoreParens() { |
| 1993 | Expr* E = this; |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 1994 | while (true) { |
| 1995 | if (ParenExpr* P = dyn_cast<ParenExpr>(E)) { |
| 1996 | E = P->getSubExpr(); |
| 1997 | continue; |
| 1998 | } |
| 1999 | if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) { |
| 2000 | if (P->getOpcode() == UO_Extension) { |
| 2001 | E = P->getSubExpr(); |
| 2002 | continue; |
| 2003 | } |
| 2004 | } |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 2005 | if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) { |
| 2006 | if (!P->isResultDependent()) { |
| 2007 | E = P->getResultExpr(); |
| 2008 | continue; |
| 2009 | } |
| 2010 | } |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2011 | return E; |
| 2012 | } |
Ted Kremenek | 4e99a5f | 2008-01-17 16:57:34 +0000 | [diff] [blame] | 2013 | } |
| 2014 | |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 2015 | /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr |
| 2016 | /// or CastExprs or ImplicitCastExprs, returning their operand. |
| 2017 | Expr *Expr::IgnoreParenCasts() { |
| 2018 | Expr *E = this; |
| 2019 | while (true) { |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2020 | if (ParenExpr* P = dyn_cast<ParenExpr>(E)) { |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 2021 | E = P->getSubExpr(); |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2022 | continue; |
| 2023 | } |
| 2024 | if (CastExpr *P = dyn_cast<CastExpr>(E)) { |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 2025 | E = P->getSubExpr(); |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2026 | continue; |
| 2027 | } |
| 2028 | if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) { |
| 2029 | if (P->getOpcode() == UO_Extension) { |
| 2030 | E = P->getSubExpr(); |
| 2031 | continue; |
| 2032 | } |
| 2033 | } |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 2034 | if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) { |
| 2035 | if (!P->isResultDependent()) { |
| 2036 | E = P->getResultExpr(); |
| 2037 | continue; |
| 2038 | } |
| 2039 | } |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 2040 | if (MaterializeTemporaryExpr *Materialize |
| 2041 | = dyn_cast<MaterializeTemporaryExpr>(E)) { |
| 2042 | E = Materialize->GetTemporaryExpr(); |
| 2043 | continue; |
| 2044 | } |
Douglas Gregor | c0244c5 | 2011-09-08 17:56:33 +0000 | [diff] [blame^] | 2045 | if (SubstNonTypeTemplateParmExpr *NTTP |
| 2046 | = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) { |
| 2047 | E = NTTP->getReplacement(); |
| 2048 | continue; |
| 2049 | } |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2050 | return E; |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 2051 | } |
| 2052 | } |
| 2053 | |
John McCall | 9c5d70c | 2010-12-04 08:24:19 +0000 | [diff] [blame] | 2054 | /// IgnoreParenLValueCasts - Ignore parentheses and lvalue-to-rvalue |
| 2055 | /// casts. This is intended purely as a temporary workaround for code |
| 2056 | /// that hasn't yet been rewritten to do the right thing about those |
| 2057 | /// casts, and may disappear along with the last internal use. |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 2058 | Expr *Expr::IgnoreParenLValueCasts() { |
| 2059 | Expr *E = this; |
John McCall | 9c5d70c | 2010-12-04 08:24:19 +0000 | [diff] [blame] | 2060 | while (true) { |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 2061 | if (ParenExpr *P = dyn_cast<ParenExpr>(E)) { |
| 2062 | E = P->getSubExpr(); |
| 2063 | continue; |
John McCall | 9c5d70c | 2010-12-04 08:24:19 +0000 | [diff] [blame] | 2064 | } else if (CastExpr *P = dyn_cast<CastExpr>(E)) { |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 2065 | if (P->getCastKind() == CK_LValueToRValue) { |
| 2066 | E = P->getSubExpr(); |
| 2067 | continue; |
| 2068 | } |
John McCall | 9c5d70c | 2010-12-04 08:24:19 +0000 | [diff] [blame] | 2069 | } else if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) { |
| 2070 | if (P->getOpcode() == UO_Extension) { |
| 2071 | E = P->getSubExpr(); |
| 2072 | continue; |
| 2073 | } |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 2074 | } else if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) { |
| 2075 | if (!P->isResultDependent()) { |
| 2076 | E = P->getResultExpr(); |
| 2077 | continue; |
| 2078 | } |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 2079 | } else if (MaterializeTemporaryExpr *Materialize |
| 2080 | = dyn_cast<MaterializeTemporaryExpr>(E)) { |
| 2081 | E = Materialize->GetTemporaryExpr(); |
| 2082 | continue; |
Douglas Gregor | c0244c5 | 2011-09-08 17:56:33 +0000 | [diff] [blame^] | 2083 | } else if (SubstNonTypeTemplateParmExpr *NTTP |
| 2084 | = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) { |
| 2085 | E = NTTP->getReplacement(); |
| 2086 | continue; |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 2087 | } |
| 2088 | break; |
| 2089 | } |
| 2090 | return E; |
| 2091 | } |
| 2092 | |
John McCall | 2fc46bf | 2010-05-05 22:59:52 +0000 | [diff] [blame] | 2093 | Expr *Expr::IgnoreParenImpCasts() { |
| 2094 | Expr *E = this; |
| 2095 | while (true) { |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2096 | if (ParenExpr *P = dyn_cast<ParenExpr>(E)) { |
John McCall | 2fc46bf | 2010-05-05 22:59:52 +0000 | [diff] [blame] | 2097 | E = P->getSubExpr(); |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2098 | continue; |
| 2099 | } |
| 2100 | if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) { |
John McCall | 2fc46bf | 2010-05-05 22:59:52 +0000 | [diff] [blame] | 2101 | E = P->getSubExpr(); |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2102 | continue; |
| 2103 | } |
| 2104 | if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) { |
| 2105 | if (P->getOpcode() == UO_Extension) { |
| 2106 | E = P->getSubExpr(); |
| 2107 | continue; |
| 2108 | } |
| 2109 | } |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 2110 | if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) { |
| 2111 | if (!P->isResultDependent()) { |
| 2112 | E = P->getResultExpr(); |
| 2113 | continue; |
| 2114 | } |
| 2115 | } |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 2116 | if (MaterializeTemporaryExpr *Materialize |
| 2117 | = dyn_cast<MaterializeTemporaryExpr>(E)) { |
| 2118 | E = Materialize->GetTemporaryExpr(); |
| 2119 | continue; |
| 2120 | } |
Douglas Gregor | c0244c5 | 2011-09-08 17:56:33 +0000 | [diff] [blame^] | 2121 | if (SubstNonTypeTemplateParmExpr *NTTP |
| 2122 | = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) { |
| 2123 | E = NTTP->getReplacement(); |
| 2124 | continue; |
| 2125 | } |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2126 | return E; |
John McCall | 2fc46bf | 2010-05-05 22:59:52 +0000 | [diff] [blame] | 2127 | } |
| 2128 | } |
| 2129 | |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 2130 | Expr *Expr::IgnoreConversionOperator() { |
| 2131 | if (CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(this)) { |
Chandler Carruth | 14d251c | 2011-06-21 17:22:09 +0000 | [diff] [blame] | 2132 | if (MCE->getMethodDecl() && isa<CXXConversionDecl>(MCE->getMethodDecl())) |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 2133 | return MCE->getImplicitObjectArgument(); |
| 2134 | } |
| 2135 | return this; |
| 2136 | } |
| 2137 | |
Chris Lattner | ecdd841 | 2009-03-13 17:28:01 +0000 | [diff] [blame] | 2138 | /// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the |
| 2139 | /// value (including ptr->int casts of the same size). Strip off any |
| 2140 | /// ParenExpr or CastExprs, returning their operand. |
| 2141 | Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) { |
| 2142 | Expr *E = this; |
| 2143 | while (true) { |
| 2144 | if (ParenExpr *P = dyn_cast<ParenExpr>(E)) { |
| 2145 | E = P->getSubExpr(); |
| 2146 | continue; |
| 2147 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2148 | |
Chris Lattner | ecdd841 | 2009-03-13 17:28:01 +0000 | [diff] [blame] | 2149 | if (CastExpr *P = dyn_cast<CastExpr>(E)) { |
| 2150 | // We ignore integer <-> casts that are of the same width, ptr<->ptr and |
Douglas Gregor | 2ade35e | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 2151 | // ptr<->int casts of the same width. We also ignore all identity casts. |
Chris Lattner | ecdd841 | 2009-03-13 17:28:01 +0000 | [diff] [blame] | 2152 | Expr *SE = P->getSubExpr(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2153 | |
Chris Lattner | ecdd841 | 2009-03-13 17:28:01 +0000 | [diff] [blame] | 2154 | if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) { |
| 2155 | E = SE; |
| 2156 | continue; |
| 2157 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2158 | |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2159 | if ((E->getType()->isPointerType() || |
Douglas Gregor | 9d3347a | 2010-06-16 00:35:25 +0000 | [diff] [blame] | 2160 | E->getType()->isIntegralType(Ctx)) && |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2161 | (SE->getType()->isPointerType() || |
Douglas Gregor | 9d3347a | 2010-06-16 00:35:25 +0000 | [diff] [blame] | 2162 | SE->getType()->isIntegralType(Ctx)) && |
Chris Lattner | ecdd841 | 2009-03-13 17:28:01 +0000 | [diff] [blame] | 2163 | Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) { |
| 2164 | E = SE; |
| 2165 | continue; |
| 2166 | } |
| 2167 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2168 | |
Abramo Bagnara | b9eb35c | 2010-10-15 07:51:18 +0000 | [diff] [blame] | 2169 | if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) { |
| 2170 | if (P->getOpcode() == UO_Extension) { |
| 2171 | E = P->getSubExpr(); |
| 2172 | continue; |
| 2173 | } |
| 2174 | } |
| 2175 | |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 2176 | if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) { |
| 2177 | if (!P->isResultDependent()) { |
| 2178 | E = P->getResultExpr(); |
| 2179 | continue; |
| 2180 | } |
| 2181 | } |
| 2182 | |
Douglas Gregor | c0244c5 | 2011-09-08 17:56:33 +0000 | [diff] [blame^] | 2183 | if (SubstNonTypeTemplateParmExpr *NTTP |
| 2184 | = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) { |
| 2185 | E = NTTP->getReplacement(); |
| 2186 | continue; |
| 2187 | } |
| 2188 | |
Chris Lattner | ecdd841 | 2009-03-13 17:28:01 +0000 | [diff] [blame] | 2189 | return E; |
| 2190 | } |
| 2191 | } |
| 2192 | |
Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 2193 | bool Expr::isDefaultArgument() const { |
| 2194 | const Expr *E = this; |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 2195 | if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E)) |
| 2196 | E = M->GetTemporaryExpr(); |
| 2197 | |
Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 2198 | while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) |
| 2199 | E = ICE->getSubExprAsWritten(); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2200 | |
Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 2201 | return isa<CXXDefaultArgExpr>(E); |
| 2202 | } |
Chris Lattner | ecdd841 | 2009-03-13 17:28:01 +0000 | [diff] [blame] | 2203 | |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 2204 | /// \brief Skip over any no-op casts and any temporary-binding |
| 2205 | /// expressions. |
Anders Carlsson | f8b3015 | 2010-11-28 16:40:49 +0000 | [diff] [blame] | 2206 | static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) { |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 2207 | if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E)) |
| 2208 | E = M->GetTemporaryExpr(); |
| 2209 | |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 2210 | while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2211 | if (ICE->getCastKind() == CK_NoOp) |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 2212 | E = ICE->getSubExpr(); |
| 2213 | else |
| 2214 | break; |
| 2215 | } |
| 2216 | |
| 2217 | while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E)) |
| 2218 | E = BE->getSubExpr(); |
| 2219 | |
| 2220 | while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2221 | if (ICE->getCastKind() == CK_NoOp) |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 2222 | E = ICE->getSubExpr(); |
| 2223 | else |
| 2224 | break; |
| 2225 | } |
Anders Carlsson | f8b3015 | 2010-11-28 16:40:49 +0000 | [diff] [blame] | 2226 | |
| 2227 | return E->IgnoreParens(); |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 2228 | } |
| 2229 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 2230 | /// isTemporaryObject - Determines if this expression produces a |
| 2231 | /// temporary of the given class type. |
| 2232 | bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const { |
| 2233 | if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy))) |
| 2234 | return false; |
| 2235 | |
Anders Carlsson | f8b3015 | 2010-11-28 16:40:49 +0000 | [diff] [blame] | 2236 | const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this); |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 2237 | |
John McCall | 58277b5 | 2010-09-15 20:59:13 +0000 | [diff] [blame] | 2238 | // Temporaries are by definition pr-values of class type. |
Fariborz Jahanian | db148be | 2010-09-27 17:30:38 +0000 | [diff] [blame] | 2239 | if (!E->Classify(C).isPRValue()) { |
| 2240 | // In this context, property reference is a message call and is pr-value. |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 2241 | if (!isa<ObjCPropertyRefExpr>(E)) |
Fariborz Jahanian | db148be | 2010-09-27 17:30:38 +0000 | [diff] [blame] | 2242 | return false; |
| 2243 | } |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 2244 | |
John McCall | 19e60ad | 2010-09-16 06:57:56 +0000 | [diff] [blame] | 2245 | // Black-list a few cases which yield pr-values of class type that don't |
| 2246 | // refer to temporaries of that type: |
| 2247 | |
| 2248 | // - implicit derived-to-base conversions |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 2249 | if (isa<ImplicitCastExpr>(E)) { |
| 2250 | switch (cast<ImplicitCastExpr>(E)->getCastKind()) { |
| 2251 | case CK_DerivedToBase: |
| 2252 | case CK_UncheckedDerivedToBase: |
| 2253 | return false; |
| 2254 | default: |
| 2255 | break; |
| 2256 | } |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 2257 | } |
| 2258 | |
John McCall | 19e60ad | 2010-09-16 06:57:56 +0000 | [diff] [blame] | 2259 | // - member expressions (all) |
| 2260 | if (isa<MemberExpr>(E)) |
| 2261 | return false; |
| 2262 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2263 | // - opaque values (all) |
| 2264 | if (isa<OpaqueValueExpr>(E)) |
| 2265 | return false; |
| 2266 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 2267 | return true; |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 2268 | } |
| 2269 | |
Douglas Gregor | 75e8504 | 2011-03-02 21:06:53 +0000 | [diff] [blame] | 2270 | bool Expr::isImplicitCXXThis() const { |
| 2271 | const Expr *E = this; |
| 2272 | |
| 2273 | // Strip away parentheses and casts we don't care about. |
| 2274 | while (true) { |
| 2275 | if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) { |
| 2276 | E = Paren->getSubExpr(); |
| 2277 | continue; |
| 2278 | } |
| 2279 | |
| 2280 | if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { |
| 2281 | if (ICE->getCastKind() == CK_NoOp || |
| 2282 | ICE->getCastKind() == CK_LValueToRValue || |
| 2283 | ICE->getCastKind() == CK_DerivedToBase || |
| 2284 | ICE->getCastKind() == CK_UncheckedDerivedToBase) { |
| 2285 | E = ICE->getSubExpr(); |
| 2286 | continue; |
| 2287 | } |
| 2288 | } |
| 2289 | |
| 2290 | if (const UnaryOperator* UnOp = dyn_cast<UnaryOperator>(E)) { |
| 2291 | if (UnOp->getOpcode() == UO_Extension) { |
| 2292 | E = UnOp->getSubExpr(); |
| 2293 | continue; |
| 2294 | } |
| 2295 | } |
| 2296 | |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 2297 | if (const MaterializeTemporaryExpr *M |
| 2298 | = dyn_cast<MaterializeTemporaryExpr>(E)) { |
| 2299 | E = M->GetTemporaryExpr(); |
| 2300 | continue; |
| 2301 | } |
| 2302 | |
Douglas Gregor | 75e8504 | 2011-03-02 21:06:53 +0000 | [diff] [blame] | 2303 | break; |
| 2304 | } |
| 2305 | |
| 2306 | if (const CXXThisExpr *This = dyn_cast<CXXThisExpr>(E)) |
| 2307 | return This->isImplicit(); |
| 2308 | |
| 2309 | return false; |
| 2310 | } |
| 2311 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2312 | /// hasAnyTypeDependentArguments - Determines if any of the expressions |
| 2313 | /// in Exprs is type-dependent. |
| 2314 | bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) { |
| 2315 | for (unsigned I = 0; I < NumExprs; ++I) |
| 2316 | if (Exprs[I]->isTypeDependent()) |
| 2317 | return true; |
| 2318 | |
| 2319 | return false; |
| 2320 | } |
| 2321 | |
| 2322 | /// hasAnyValueDependentArguments - Determines if any of the expressions |
| 2323 | /// in Exprs is value-dependent. |
| 2324 | bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) { |
| 2325 | for (unsigned I = 0; I < NumExprs; ++I) |
| 2326 | if (Exprs[I]->isValueDependent()) |
| 2327 | return true; |
| 2328 | |
| 2329 | return false; |
| 2330 | } |
| 2331 | |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2332 | bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const { |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 2333 | // This function is attempting whether an expression is an initializer |
| 2334 | // which can be evaluated at compile-time. isEvaluatable handles most |
| 2335 | // of the cases, but it can't deal with some initializer-specific |
| 2336 | // expressions, and it can't deal with aggregates; we deal with those here, |
| 2337 | // and fall back to isEvaluatable for the other cases. |
| 2338 | |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2339 | // If we ever capture reference-binding directly in the AST, we can |
| 2340 | // kill the second parameter. |
| 2341 | |
| 2342 | if (IsForRef) { |
| 2343 | EvalResult Result; |
| 2344 | return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects; |
| 2345 | } |
Eli Friedman | 1f4a6db | 2009-02-20 02:36:22 +0000 | [diff] [blame] | 2346 | |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 2347 | switch (getStmtClass()) { |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 2348 | default: break; |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 2349 | case StringLiteralClass: |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2350 | case ObjCStringLiteralClass: |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 2351 | case ObjCEncodeExprClass: |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 2352 | return true; |
John McCall | b4b9b15 | 2010-08-01 21:51:45 +0000 | [diff] [blame] | 2353 | case CXXTemporaryObjectExprClass: |
| 2354 | case CXXConstructExprClass: { |
| 2355 | const CXXConstructExpr *CE = cast<CXXConstructExpr>(this); |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2356 | |
| 2357 | // Only if it's |
| 2358 | // 1) an application of the trivial default constructor or |
John McCall | b4b9b15 | 2010-08-01 21:51:45 +0000 | [diff] [blame] | 2359 | if (!CE->getConstructor()->isTrivial()) return false; |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2360 | if (!CE->getNumArgs()) return true; |
| 2361 | |
| 2362 | // 2) an elidable trivial copy construction of an operand which is |
| 2363 | // itself a constant initializer. Note that we consider the |
| 2364 | // operand on its own, *not* as a reference binding. |
| 2365 | return CE->isElidable() && |
| 2366 | CE->getArg(0)->isConstantInitializer(Ctx, false); |
John McCall | b4b9b15 | 2010-08-01 21:51:45 +0000 | [diff] [blame] | 2367 | } |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2368 | case CompoundLiteralExprClass: { |
Eli Friedman | 1f4a6db | 2009-02-20 02:36:22 +0000 | [diff] [blame] | 2369 | // This handles gcc's extension that allows global initializers like |
| 2370 | // "struct x {int x;} x = (struct x) {};". |
| 2371 | // FIXME: This accepts other cases it shouldn't! |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2372 | const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer(); |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2373 | return Exp->isConstantInitializer(Ctx, false); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2374 | } |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 2375 | case InitListExprClass: { |
Eli Friedman | 1f4a6db | 2009-02-20 02:36:22 +0000 | [diff] [blame] | 2376 | // FIXME: This doesn't deal with fields with reference types correctly. |
| 2377 | // FIXME: This incorrectly allows pointers cast to integers to be assigned |
| 2378 | // to bitfields. |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 2379 | const InitListExpr *Exp = cast<InitListExpr>(this); |
| 2380 | unsigned numInits = Exp->getNumInits(); |
| 2381 | for (unsigned i = 0; i < numInits; i++) { |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2382 | if (!Exp->getInit(i)->isConstantInitializer(Ctx, false)) |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 2383 | return false; |
| 2384 | } |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 2385 | return true; |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 2386 | } |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 2387 | case ImplicitValueInitExprClass: |
| 2388 | return true; |
Chris Lattner | 3ae9f48 | 2009-10-13 07:14:16 +0000 | [diff] [blame] | 2389 | case ParenExprClass: |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2390 | return cast<ParenExpr>(this)->getSubExpr() |
| 2391 | ->isConstantInitializer(Ctx, IsForRef); |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 2392 | case GenericSelectionExprClass: |
| 2393 | if (cast<GenericSelectionExpr>(this)->isResultDependent()) |
| 2394 | return false; |
| 2395 | return cast<GenericSelectionExpr>(this)->getResultExpr() |
| 2396 | ->isConstantInitializer(Ctx, IsForRef); |
Abramo Bagnara | 5cadfab | 2010-09-27 07:13:32 +0000 | [diff] [blame] | 2397 | case ChooseExprClass: |
| 2398 | return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx) |
| 2399 | ->isConstantInitializer(Ctx, IsForRef); |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 2400 | case UnaryOperatorClass: { |
| 2401 | const UnaryOperator* Exp = cast<UnaryOperator>(this); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2402 | if (Exp->getOpcode() == UO_Extension) |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2403 | return Exp->getSubExpr()->isConstantInitializer(Ctx, false); |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 2404 | break; |
| 2405 | } |
Chris Lattner | 3ae9f48 | 2009-10-13 07:14:16 +0000 | [diff] [blame] | 2406 | case BinaryOperatorClass: { |
| 2407 | // Special case &&foo - &&bar. It would be nice to generalize this somehow |
| 2408 | // but this handles the common case. |
| 2409 | const BinaryOperator *Exp = cast<BinaryOperator>(this); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2410 | if (Exp->getOpcode() == BO_Sub && |
Chris Lattner | 3ae9f48 | 2009-10-13 07:14:16 +0000 | [diff] [blame] | 2411 | isa<AddrLabelExpr>(Exp->getLHS()->IgnoreParenNoopCasts(Ctx)) && |
| 2412 | isa<AddrLabelExpr>(Exp->getRHS()->IgnoreParenNoopCasts(Ctx))) |
| 2413 | return true; |
| 2414 | break; |
| 2415 | } |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2416 | case CXXFunctionalCastExprClass: |
John McCall | b4b9b15 | 2010-08-01 21:51:45 +0000 | [diff] [blame] | 2417 | case CXXStaticCastExprClass: |
Chris Lattner | 81045d8 | 2009-04-21 05:19:11 +0000 | [diff] [blame] | 2418 | case ImplicitCastExprClass: |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 2419 | case CStyleCastExprClass: |
| 2420 | // Handle casts with a destination that's a struct or union; this |
| 2421 | // deals with both the gcc no-op struct cast extension and the |
| 2422 | // cast-to-union extension. |
| 2423 | if (getType()->isRecordType()) |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2424 | return cast<CastExpr>(this)->getSubExpr() |
| 2425 | ->isConstantInitializer(Ctx, false); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2426 | |
Chris Lattner | 430656e | 2009-10-13 22:12:09 +0000 | [diff] [blame] | 2427 | // Integer->integer casts can be handled here, which is important for |
| 2428 | // things like (int)(&&x-&&y). Scary but true. |
| 2429 | if (getType()->isIntegerType() && |
| 2430 | cast<CastExpr>(this)->getSubExpr()->getType()->isIntegerType()) |
John McCall | 4204f07 | 2010-08-02 21:13:48 +0000 | [diff] [blame] | 2431 | return cast<CastExpr>(this)->getSubExpr() |
| 2432 | ->isConstantInitializer(Ctx, false); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2433 | |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 2434 | break; |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 2435 | |
| 2436 | case MaterializeTemporaryExprClass: |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2437 | return cast<MaterializeTemporaryExpr>(this)->GetTemporaryExpr() |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 2438 | ->isConstantInitializer(Ctx, false); |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 2439 | } |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 2440 | return isEvaluatable(Ctx); |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 2441 | } |
| 2442 | |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 2443 | /// isNullPointerConstant - C99 6.3.2.3p3 - Return whether this is a null |
| 2444 | /// pointer constant or not, as well as the specific kind of constant detected. |
| 2445 | /// Null pointer constants can be integer constant expressions with the |
| 2446 | /// value zero, casts of zero to void*, nullptr (C++0X), or __null |
| 2447 | /// (a GNU extension). |
| 2448 | Expr::NullPointerConstantKind |
| 2449 | Expr::isNullPointerConstant(ASTContext &Ctx, |
| 2450 | NullPointerConstantValueDependence NPC) const { |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 2451 | if (isValueDependent()) { |
| 2452 | switch (NPC) { |
| 2453 | case NPC_NeverValueDependent: |
| 2454 | assert(false && "Unexpected value dependent expression!"); |
| 2455 | // If the unthinkable happens, fall through to the safest alternative. |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2456 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 2457 | case NPC_ValueDependentIsNull: |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 2458 | if (isTypeDependent() || getType()->isIntegralType(Ctx)) |
| 2459 | return NPCK_ZeroInteger; |
| 2460 | else |
| 2461 | return NPCK_NotNull; |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2462 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 2463 | case NPC_ValueDependentIsNotNull: |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 2464 | return NPCK_NotNull; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 2465 | } |
| 2466 | } |
Daniel Dunbar | f515b22 | 2009-09-18 08:46:16 +0000 | [diff] [blame] | 2467 | |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 2468 | // Strip off a cast to void*, if it exists. Except in C++. |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 2469 | if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) { |
Sebastian Redl | 6215dee | 2008-11-04 11:45:54 +0000 | [diff] [blame] | 2470 | if (!Ctx.getLangOptions().CPlusPlus) { |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 2471 | // Check that it is a cast to void*. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2472 | if (const PointerType *PT = CE->getType()->getAs<PointerType>()) { |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 2473 | QualType Pointee = PT->getPointeeType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2474 | if (!Pointee.hasQualifiers() && |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 2475 | Pointee->isVoidType() && // to void* |
| 2476 | CE->getSubExpr()->getType()->isIntegerType()) // from int. |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 2477 | return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC); |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 2478 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2479 | } |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 2480 | } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) { |
| 2481 | // Ignore the ImplicitCastExpr type entirely. |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 2482 | return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC); |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 2483 | } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) { |
| 2484 | // Accept ((void*)0) as a null pointer constant, as many other |
| 2485 | // implementations do. |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 2486 | return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC); |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 2487 | } else if (const GenericSelectionExpr *GE = |
| 2488 | dyn_cast<GenericSelectionExpr>(this)) { |
| 2489 | return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2490 | } else if (const CXXDefaultArgExpr *DefaultArg |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 2491 | = dyn_cast<CXXDefaultArgExpr>(this)) { |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2492 | // See through default argument expressions |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 2493 | return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 2494 | } else if (isa<GNUNullExpr>(this)) { |
| 2495 | // The GNU __null extension is always a null pointer constant. |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 2496 | return NPCK_GNUNull; |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 2497 | } else if (const MaterializeTemporaryExpr *M |
| 2498 | = dyn_cast<MaterializeTemporaryExpr>(this)) { |
| 2499 | return M->GetTemporaryExpr()->isNullPointerConstant(Ctx, NPC); |
Steve Naroff | aaffbf7 | 2008-01-14 02:53:34 +0000 | [diff] [blame] | 2500 | } |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 2501 | |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 2502 | // C++0x nullptr_t is always a null pointer constant. |
| 2503 | if (getType()->isNullPtrType()) |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 2504 | return NPCK_CXX0X_nullptr; |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 2505 | |
Fariborz Jahanian | ff3a078 | 2010-09-27 22:42:37 +0000 | [diff] [blame] | 2506 | if (const RecordType *UT = getType()->getAsUnionType()) |
| 2507 | if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
| 2508 | if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){ |
| 2509 | const Expr *InitExpr = CLE->getInitializer(); |
| 2510 | if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr)) |
| 2511 | return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC); |
| 2512 | } |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 2513 | // This expression must be an integer type. |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2514 | if (!getType()->isIntegerType() || |
Fariborz Jahanian | 56fc0d1 | 2009-10-06 00:09:31 +0000 | [diff] [blame] | 2515 | (Ctx.getLangOptions().CPlusPlus && getType()->isEnumeralType())) |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 2516 | return NPCK_NotNull; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2517 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2518 | // If we have an integer constant expression, we need to *evaluate* it and |
| 2519 | // test for the value 0. |
Eli Friedman | 09de176 | 2009-04-25 22:37:12 +0000 | [diff] [blame] | 2520 | llvm::APSInt Result; |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 2521 | bool IsNull = isIntegerConstantExpr(Result, Ctx) && Result == 0; |
| 2522 | |
| 2523 | return (IsNull ? NPCK_ZeroInteger : NPCK_NotNull); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2524 | } |
Steve Naroff | 31a4584 | 2007-07-28 23:10:27 +0000 | [diff] [blame] | 2525 | |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 2526 | /// \brief If this expression is an l-value for an Objective C |
| 2527 | /// property, find the underlying property reference expression. |
| 2528 | const ObjCPropertyRefExpr *Expr::getObjCProperty() const { |
| 2529 | const Expr *E = this; |
| 2530 | while (true) { |
| 2531 | assert((E->getValueKind() == VK_LValue && |
| 2532 | E->getObjectKind() == OK_ObjCProperty) && |
| 2533 | "expression is not a property reference"); |
| 2534 | E = E->IgnoreParenCasts(); |
| 2535 | if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { |
| 2536 | if (BO->getOpcode() == BO_Comma) { |
| 2537 | E = BO->getRHS(); |
| 2538 | continue; |
| 2539 | } |
| 2540 | } |
| 2541 | |
| 2542 | break; |
| 2543 | } |
| 2544 | |
| 2545 | return cast<ObjCPropertyRefExpr>(E); |
| 2546 | } |
| 2547 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 2548 | FieldDecl *Expr::getBitField() { |
Douglas Gregor | 6f4a69a | 2009-07-06 15:38:40 +0000 | [diff] [blame] | 2549 | Expr *E = this->IgnoreParens(); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 2550 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 2551 | while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 2552 | if (ICE->getCastKind() == CK_LValueToRValue || |
| 2553 | (ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp)) |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 2554 | E = ICE->getSubExpr()->IgnoreParens(); |
| 2555 | else |
| 2556 | break; |
| 2557 | } |
| 2558 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 2559 | if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E)) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2560 | if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl())) |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 2561 | if (Field->isBitField()) |
| 2562 | return Field; |
| 2563 | |
Argyrios Kyrtzidis | 0f279e7 | 2010-10-30 19:52:22 +0000 | [diff] [blame] | 2564 | if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E)) |
| 2565 | if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl())) |
| 2566 | if (Field->isBitField()) |
| 2567 | return Field; |
| 2568 | |
Eli Friedman | 42068e9 | 2011-07-13 02:05:57 +0000 | [diff] [blame] | 2569 | if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E)) { |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 2570 | if (BinOp->isAssignmentOp() && BinOp->getLHS()) |
| 2571 | return BinOp->getLHS()->getBitField(); |
| 2572 | |
Eli Friedman | 42068e9 | 2011-07-13 02:05:57 +0000 | [diff] [blame] | 2573 | if (BinOp->getOpcode() == BO_Comma && BinOp->getRHS()) |
| 2574 | return BinOp->getRHS()->getBitField(); |
| 2575 | } |
| 2576 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 2577 | return 0; |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 2578 | } |
| 2579 | |
Anders Carlsson | 0938026 | 2010-01-31 17:18:49 +0000 | [diff] [blame] | 2580 | bool Expr::refersToVectorElement() const { |
| 2581 | const Expr *E = this->IgnoreParens(); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2582 | |
Anders Carlsson | 0938026 | 2010-01-31 17:18:49 +0000 | [diff] [blame] | 2583 | while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2584 | if (ICE->getValueKind() != VK_RValue && |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2585 | ICE->getCastKind() == CK_NoOp) |
Anders Carlsson | 0938026 | 2010-01-31 17:18:49 +0000 | [diff] [blame] | 2586 | E = ICE->getSubExpr()->IgnoreParens(); |
| 2587 | else |
| 2588 | break; |
| 2589 | } |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2590 | |
Anders Carlsson | 0938026 | 2010-01-31 17:18:49 +0000 | [diff] [blame] | 2591 | if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) |
| 2592 | return ASE->getBase()->getType()->isVectorType(); |
| 2593 | |
| 2594 | if (isa<ExtVectorElementExpr>(E)) |
| 2595 | return true; |
| 2596 | |
| 2597 | return false; |
| 2598 | } |
| 2599 | |
Chris Lattner | 2140e90 | 2009-02-16 22:14:05 +0000 | [diff] [blame] | 2600 | /// isArrow - Return true if the base expression is a pointer to vector, |
| 2601 | /// return false if the base expression is a vector. |
| 2602 | bool ExtVectorElementExpr::isArrow() const { |
| 2603 | return getBase()->getType()->isPointerType(); |
| 2604 | } |
| 2605 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 2606 | unsigned ExtVectorElementExpr::getNumElements() const { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2607 | if (const VectorType *VT = getType()->getAs<VectorType>()) |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2608 | return VT->getNumElements(); |
| 2609 | return 1; |
Chris Lattner | 4d0ac88 | 2007-08-03 16:00:20 +0000 | [diff] [blame] | 2610 | } |
| 2611 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2612 | /// containsDuplicateElements - Return true if any element access is repeated. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 2613 | bool ExtVectorElementExpr::containsDuplicateElements() const { |
Daniel Dunbar | a2b34eb | 2009-10-18 02:09:09 +0000 | [diff] [blame] | 2614 | // FIXME: Refactor this code to an accessor on the AST node which returns the |
| 2615 | // "type" of component access, and share with code below and in Sema. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2616 | StringRef Comp = Accessor->getName(); |
Nate Begeman | 190d6a2 | 2009-01-18 02:01:21 +0000 | [diff] [blame] | 2617 | |
| 2618 | // Halving swizzles do not contain duplicate elements. |
Daniel Dunbar | 1502742 | 2009-10-17 23:53:04 +0000 | [diff] [blame] | 2619 | if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd") |
Nate Begeman | 190d6a2 | 2009-01-18 02:01:21 +0000 | [diff] [blame] | 2620 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2621 | |
Nate Begeman | 190d6a2 | 2009-01-18 02:01:21 +0000 | [diff] [blame] | 2622 | // Advance past s-char prefix on hex swizzles. |
Daniel Dunbar | 1502742 | 2009-10-17 23:53:04 +0000 | [diff] [blame] | 2623 | if (Comp[0] == 's' || Comp[0] == 'S') |
| 2624 | Comp = Comp.substr(1); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2625 | |
Daniel Dunbar | 1502742 | 2009-10-17 23:53:04 +0000 | [diff] [blame] | 2626 | for (unsigned i = 0, e = Comp.size(); i != e; ++i) |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2627 | if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos) |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 2628 | return true; |
Daniel Dunbar | 1502742 | 2009-10-17 23:53:04 +0000 | [diff] [blame] | 2629 | |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 2630 | return false; |
| 2631 | } |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 2632 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2633 | /// getEncodedElementAccess - We encode the fields as a llvm ConstantArray. |
Nate Begeman | 3b8d116 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 2634 | void ExtVectorElementExpr::getEncodedElementAccess( |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2635 | SmallVectorImpl<unsigned> &Elts) const { |
| 2636 | StringRef Comp = Accessor->getName(); |
Daniel Dunbar | 4b55b24 | 2009-10-18 02:09:31 +0000 | [diff] [blame] | 2637 | if (Comp[0] == 's' || Comp[0] == 'S') |
| 2638 | Comp = Comp.substr(1); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2639 | |
Daniel Dunbar | 4b55b24 | 2009-10-18 02:09:31 +0000 | [diff] [blame] | 2640 | bool isHi = Comp == "hi"; |
| 2641 | bool isLo = Comp == "lo"; |
| 2642 | bool isEven = Comp == "even"; |
| 2643 | bool isOdd = Comp == "odd"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2644 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2645 | for (unsigned i = 0, e = getNumElements(); i != e; ++i) { |
| 2646 | uint64_t Index; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2647 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2648 | if (isHi) |
| 2649 | Index = e + i; |
| 2650 | else if (isLo) |
| 2651 | Index = i; |
| 2652 | else if (isEven) |
| 2653 | Index = 2 * i; |
| 2654 | else if (isOdd) |
| 2655 | Index = 2 * i + 1; |
| 2656 | else |
Daniel Dunbar | 4b55b24 | 2009-10-18 02:09:31 +0000 | [diff] [blame] | 2657 | Index = ExtVectorType::getAccessorIdx(Comp[i]); |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 2658 | |
Nate Begeman | 3b8d116 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 2659 | Elts.push_back(Index); |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 2660 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2661 | } |
| 2662 | |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2663 | ObjCMessageExpr::ObjCMessageExpr(QualType T, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2664 | ExprValueKind VK, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2665 | SourceLocation LBracLoc, |
| 2666 | SourceLocation SuperLoc, |
| 2667 | bool IsInstanceSuper, |
| 2668 | QualType SuperType, |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2669 | Selector Sel, |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2670 | SourceLocation SelLoc, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2671 | ObjCMethodDecl *Method, |
| 2672 | Expr **Args, unsigned NumArgs, |
| 2673 | SourceLocation RBracLoc) |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2674 | : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2675 | /*TypeDependent=*/false, /*ValueDependent=*/false, |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 2676 | /*InstantiationDependent=*/false, |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2677 | /*ContainsUnexpandedParameterPack=*/false), |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2678 | NumArgs(NumArgs), Kind(IsInstanceSuper? SuperInstance : SuperClass), |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2679 | HasMethod(Method != 0), IsDelegateInitCall(false), SuperLoc(SuperLoc), |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2680 | SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method |
| 2681 | : Sel.getAsOpaquePtr())), |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2682 | SelectorLoc(SelLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc) |
Douglas Gregor | c2350e5 | 2010-03-08 16:40:19 +0000 | [diff] [blame] | 2683 | { |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2684 | setReceiverPointer(SuperType.getAsOpaquePtr()); |
| 2685 | if (NumArgs) |
| 2686 | memcpy(getArgs(), Args, NumArgs * sizeof(Expr *)); |
Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 2687 | } |
| 2688 | |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2689 | ObjCMessageExpr::ObjCMessageExpr(QualType T, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2690 | ExprValueKind VK, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2691 | SourceLocation LBracLoc, |
| 2692 | TypeSourceInfo *Receiver, |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2693 | Selector Sel, |
| 2694 | SourceLocation SelLoc, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2695 | ObjCMethodDecl *Method, |
| 2696 | Expr **Args, unsigned NumArgs, |
| 2697 | SourceLocation RBracLoc) |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2698 | : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, T->isDependentType(), |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 2699 | T->isDependentType(), T->isInstantiationDependentType(), |
| 2700 | T->containsUnexpandedParameterPack()), |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2701 | NumArgs(NumArgs), Kind(Class), |
| 2702 | HasMethod(Method != 0), IsDelegateInitCall(false), |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2703 | SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method |
| 2704 | : Sel.getAsOpaquePtr())), |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2705 | SelectorLoc(SelLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc) |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2706 | { |
| 2707 | setReceiverPointer(Receiver); |
Douglas Gregor | aa165f8 | 2011-01-03 19:04:46 +0000 | [diff] [blame] | 2708 | Expr **MyArgs = getArgs(); |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2709 | for (unsigned I = 0; I != NumArgs; ++I) { |
| 2710 | if (Args[I]->isTypeDependent()) |
| 2711 | ExprBits.TypeDependent = true; |
| 2712 | if (Args[I]->isValueDependent()) |
| 2713 | ExprBits.ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 2714 | if (Args[I]->isInstantiationDependent()) |
| 2715 | ExprBits.InstantiationDependent = true; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2716 | if (Args[I]->containsUnexpandedParameterPack()) |
| 2717 | ExprBits.ContainsUnexpandedParameterPack = true; |
| 2718 | |
| 2719 | MyArgs[I] = Args[I]; |
| 2720 | } |
Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 2721 | } |
| 2722 | |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2723 | ObjCMessageExpr::ObjCMessageExpr(QualType T, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2724 | ExprValueKind VK, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2725 | SourceLocation LBracLoc, |
| 2726 | Expr *Receiver, |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2727 | Selector Sel, |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2728 | SourceLocation SelLoc, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2729 | ObjCMethodDecl *Method, |
| 2730 | Expr **Args, unsigned NumArgs, |
| 2731 | SourceLocation RBracLoc) |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2732 | : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, Receiver->isTypeDependent(), |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2733 | Receiver->isTypeDependent(), |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 2734 | Receiver->isInstantiationDependent(), |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2735 | Receiver->containsUnexpandedParameterPack()), |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2736 | NumArgs(NumArgs), Kind(Instance), |
| 2737 | HasMethod(Method != 0), IsDelegateInitCall(false), |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2738 | SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method |
| 2739 | : Sel.getAsOpaquePtr())), |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2740 | SelectorLoc(SelLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc) |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2741 | { |
| 2742 | setReceiverPointer(Receiver); |
Douglas Gregor | aa165f8 | 2011-01-03 19:04:46 +0000 | [diff] [blame] | 2743 | Expr **MyArgs = getArgs(); |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2744 | for (unsigned I = 0; I != NumArgs; ++I) { |
| 2745 | if (Args[I]->isTypeDependent()) |
| 2746 | ExprBits.TypeDependent = true; |
| 2747 | if (Args[I]->isValueDependent()) |
| 2748 | ExprBits.ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 2749 | if (Args[I]->isInstantiationDependent()) |
| 2750 | ExprBits.InstantiationDependent = true; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2751 | if (Args[I]->containsUnexpandedParameterPack()) |
| 2752 | ExprBits.ContainsUnexpandedParameterPack = true; |
| 2753 | |
| 2754 | MyArgs[I] = Args[I]; |
| 2755 | } |
Chris Lattner | 0389e6b | 2009-04-26 00:44:05 +0000 | [diff] [blame] | 2756 | } |
| 2757 | |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2758 | ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2759 | ExprValueKind VK, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2760 | SourceLocation LBracLoc, |
| 2761 | SourceLocation SuperLoc, |
| 2762 | bool IsInstanceSuper, |
| 2763 | QualType SuperType, |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2764 | Selector Sel, |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2765 | SourceLocation SelLoc, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2766 | ObjCMethodDecl *Method, |
| 2767 | Expr **Args, unsigned NumArgs, |
| 2768 | SourceLocation RBracLoc) { |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2769 | unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) + |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2770 | NumArgs * sizeof(Expr *); |
| 2771 | void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2772 | return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper, |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2773 | SuperType, Sel, SelLoc, Method, Args,NumArgs, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2774 | RBracLoc); |
| 2775 | } |
| 2776 | |
| 2777 | ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2778 | ExprValueKind VK, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2779 | SourceLocation LBracLoc, |
| 2780 | TypeSourceInfo *Receiver, |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2781 | Selector Sel, |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2782 | SourceLocation SelLoc, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2783 | ObjCMethodDecl *Method, |
| 2784 | Expr **Args, unsigned NumArgs, |
| 2785 | SourceLocation RBracLoc) { |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2786 | unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) + |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2787 | NumArgs * sizeof(Expr *); |
| 2788 | void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment); |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2789 | return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel, SelLoc, |
| 2790 | Method, Args, NumArgs, RBracLoc); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2791 | } |
| 2792 | |
| 2793 | ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2794 | ExprValueKind VK, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2795 | SourceLocation LBracLoc, |
| 2796 | Expr *Receiver, |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2797 | Selector Sel, |
| 2798 | SourceLocation SelLoc, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2799 | ObjCMethodDecl *Method, |
| 2800 | Expr **Args, unsigned NumArgs, |
| 2801 | SourceLocation RBracLoc) { |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2802 | unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) + |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2803 | NumArgs * sizeof(Expr *); |
| 2804 | void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment); |
Argyrios Kyrtzidis | f40f0d5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2805 | return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel, SelLoc, |
| 2806 | Method, Args, NumArgs, RBracLoc); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2807 | } |
| 2808 | |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2809 | ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2810 | unsigned NumArgs) { |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2811 | unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) + |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2812 | NumArgs * sizeof(Expr *); |
| 2813 | void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment); |
| 2814 | return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs); |
| 2815 | } |
Argyrios Kyrtzidis | e005d19 | 2010-12-10 20:08:30 +0000 | [diff] [blame] | 2816 | |
| 2817 | SourceRange ObjCMessageExpr::getReceiverRange() const { |
| 2818 | switch (getReceiverKind()) { |
| 2819 | case Instance: |
| 2820 | return getInstanceReceiver()->getSourceRange(); |
| 2821 | |
| 2822 | case Class: |
| 2823 | return getClassReceiverTypeInfo()->getTypeLoc().getSourceRange(); |
| 2824 | |
| 2825 | case SuperInstance: |
| 2826 | case SuperClass: |
| 2827 | return getSuperLoc(); |
| 2828 | } |
| 2829 | |
| 2830 | return SourceLocation(); |
| 2831 | } |
| 2832 | |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2833 | Selector ObjCMessageExpr::getSelector() const { |
| 2834 | if (HasMethod) |
| 2835 | return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod) |
| 2836 | ->getSelector(); |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2837 | return Selector(SelectorOrMethod); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2838 | } |
| 2839 | |
| 2840 | ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const { |
| 2841 | switch (getReceiverKind()) { |
| 2842 | case Instance: |
| 2843 | if (const ObjCObjectPointerType *Ptr |
| 2844 | = getInstanceReceiver()->getType()->getAs<ObjCObjectPointerType>()) |
| 2845 | return Ptr->getInterfaceDecl(); |
| 2846 | break; |
| 2847 | |
| 2848 | case Class: |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 2849 | if (const ObjCObjectType *Ty |
| 2850 | = getClassReceiver()->getAs<ObjCObjectType>()) |
| 2851 | return Ty->getInterface(); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2852 | break; |
| 2853 | |
| 2854 | case SuperInstance: |
| 2855 | if (const ObjCObjectPointerType *Ptr |
| 2856 | = getSuperType()->getAs<ObjCObjectPointerType>()) |
| 2857 | return Ptr->getInterfaceDecl(); |
| 2858 | break; |
| 2859 | |
| 2860 | case SuperClass: |
Argyrios Kyrtzidis | ee8a6ca | 2011-01-25 00:03:48 +0000 | [diff] [blame] | 2861 | if (const ObjCObjectType *Iface |
| 2862 | = getSuperType()->getAs<ObjCObjectType>()) |
| 2863 | return Iface->getInterface(); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2864 | break; |
| 2865 | } |
| 2866 | |
| 2867 | return 0; |
Ted Kremenek | eb3b324 | 2010-02-11 22:41:21 +0000 | [diff] [blame] | 2868 | } |
Chris Lattner | 0389e6b | 2009-04-26 00:44:05 +0000 | [diff] [blame] | 2869 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2870 | StringRef ObjCBridgedCastExpr::getBridgeKindName() const { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2871 | switch (getBridgeKind()) { |
| 2872 | case OBC_Bridge: |
| 2873 | return "__bridge"; |
| 2874 | case OBC_BridgeTransfer: |
| 2875 | return "__bridge_transfer"; |
| 2876 | case OBC_BridgeRetained: |
| 2877 | return "__bridge_retained"; |
| 2878 | } |
| 2879 | |
| 2880 | return "__bridge"; |
| 2881 | } |
| 2882 | |
Jay Foad | 4ba2a17 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 2883 | bool ChooseExpr::isConditionTrue(const ASTContext &C) const { |
Eli Friedman | 9a901bb | 2009-04-26 19:19:15 +0000 | [diff] [blame] | 2884 | return getCond()->EvaluateAsInt(C) != 0; |
Chris Lattner | 27437ca | 2007-10-25 00:29:32 +0000 | [diff] [blame] | 2885 | } |
| 2886 | |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2887 | ShuffleVectorExpr::ShuffleVectorExpr(ASTContext &C, Expr **args, unsigned nexpr, |
| 2888 | QualType Type, SourceLocation BLoc, |
| 2889 | SourceLocation RP) |
| 2890 | : Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary, |
| 2891 | Type->isDependentType(), Type->isDependentType(), |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 2892 | Type->isInstantiationDependentType(), |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2893 | Type->containsUnexpandedParameterPack()), |
| 2894 | BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(nexpr) |
| 2895 | { |
| 2896 | SubExprs = new (C) Stmt*[nexpr]; |
| 2897 | for (unsigned i = 0; i < nexpr; i++) { |
| 2898 | if (args[i]->isTypeDependent()) |
| 2899 | ExprBits.TypeDependent = true; |
| 2900 | if (args[i]->isValueDependent()) |
| 2901 | ExprBits.ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 2902 | if (args[i]->isInstantiationDependent()) |
| 2903 | ExprBits.InstantiationDependent = true; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2904 | if (args[i]->containsUnexpandedParameterPack()) |
| 2905 | ExprBits.ContainsUnexpandedParameterPack = true; |
| 2906 | |
| 2907 | SubExprs[i] = args[i]; |
| 2908 | } |
| 2909 | } |
| 2910 | |
Nate Begeman | 888376a | 2009-08-12 02:28:50 +0000 | [diff] [blame] | 2911 | void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs, |
| 2912 | unsigned NumExprs) { |
| 2913 | if (SubExprs) C.Deallocate(SubExprs); |
| 2914 | |
| 2915 | SubExprs = new (C) Stmt* [NumExprs]; |
Douglas Gregor | 94cd5d1 | 2009-04-16 00:01:45 +0000 | [diff] [blame] | 2916 | this->NumExprs = NumExprs; |
| 2917 | memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2918 | } |
Nate Begeman | 888376a | 2009-08-12 02:28:50 +0000 | [diff] [blame] | 2919 | |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 2920 | GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context, |
| 2921 | SourceLocation GenericLoc, Expr *ControllingExpr, |
| 2922 | TypeSourceInfo **AssocTypes, Expr **AssocExprs, |
| 2923 | unsigned NumAssocs, SourceLocation DefaultLoc, |
| 2924 | SourceLocation RParenLoc, |
| 2925 | bool ContainsUnexpandedParameterPack, |
| 2926 | unsigned ResultIndex) |
| 2927 | : Expr(GenericSelectionExprClass, |
| 2928 | AssocExprs[ResultIndex]->getType(), |
| 2929 | AssocExprs[ResultIndex]->getValueKind(), |
| 2930 | AssocExprs[ResultIndex]->getObjectKind(), |
| 2931 | AssocExprs[ResultIndex]->isTypeDependent(), |
| 2932 | AssocExprs[ResultIndex]->isValueDependent(), |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 2933 | AssocExprs[ResultIndex]->isInstantiationDependent(), |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 2934 | ContainsUnexpandedParameterPack), |
| 2935 | AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]), |
| 2936 | SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs), |
| 2937 | ResultIndex(ResultIndex), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), |
| 2938 | RParenLoc(RParenLoc) { |
| 2939 | SubExprs[CONTROLLING] = ControllingExpr; |
| 2940 | std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes); |
| 2941 | std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR); |
| 2942 | } |
| 2943 | |
| 2944 | GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context, |
| 2945 | SourceLocation GenericLoc, Expr *ControllingExpr, |
| 2946 | TypeSourceInfo **AssocTypes, Expr **AssocExprs, |
| 2947 | unsigned NumAssocs, SourceLocation DefaultLoc, |
| 2948 | SourceLocation RParenLoc, |
| 2949 | bool ContainsUnexpandedParameterPack) |
| 2950 | : Expr(GenericSelectionExprClass, |
| 2951 | Context.DependentTy, |
| 2952 | VK_RValue, |
| 2953 | OK_Ordinary, |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 2954 | /*isTypeDependent=*/true, |
| 2955 | /*isValueDependent=*/true, |
| 2956 | /*isInstantiationDependent=*/true, |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 2957 | ContainsUnexpandedParameterPack), |
| 2958 | AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]), |
| 2959 | SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs), |
| 2960 | ResultIndex(-1U), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), |
| 2961 | RParenLoc(RParenLoc) { |
| 2962 | SubExprs[CONTROLLING] = ControllingExpr; |
| 2963 | std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes); |
| 2964 | std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR); |
| 2965 | } |
| 2966 | |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 2967 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2968 | // DesignatedInitExpr |
| 2969 | //===----------------------------------------------------------------------===// |
| 2970 | |
Chandler Carruth | b113824 | 2011-06-16 06:47:06 +0000 | [diff] [blame] | 2971 | IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() const { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2972 | assert(Kind == FieldDesignator && "Only valid on a field designator"); |
| 2973 | if (Field.NameOrField & 0x01) |
| 2974 | return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01); |
| 2975 | else |
| 2976 | return getField()->getIdentifier(); |
| 2977 | } |
| 2978 | |
Sean Hunt | c302113 | 2010-05-05 15:23:54 +0000 | [diff] [blame] | 2979 | DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty, |
Douglas Gregor | 319d57f | 2010-01-06 23:17:19 +0000 | [diff] [blame] | 2980 | unsigned NumDesignators, |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 2981 | const Designator *Designators, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2982 | SourceLocation EqualOrColonLoc, |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 2983 | bool GNUSyntax, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2984 | Expr **IndexExprs, |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 2985 | unsigned NumIndexExprs, |
| 2986 | Expr *Init) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2987 | : Expr(DesignatedInitExprClass, Ty, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2988 | Init->getValueKind(), Init->getObjectKind(), |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2989 | Init->isTypeDependent(), Init->isValueDependent(), |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 2990 | Init->isInstantiationDependent(), |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2991 | Init->containsUnexpandedParameterPack()), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2992 | EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax), |
| 2993 | NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) { |
Douglas Gregor | 319d57f | 2010-01-06 23:17:19 +0000 | [diff] [blame] | 2994 | this->Designators = new (C) Designator[NumDesignators]; |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 2995 | |
| 2996 | // Record the initializer itself. |
John McCall | 7502c1d | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 2997 | child_range Child = children(); |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 2998 | *Child++ = Init; |
| 2999 | |
| 3000 | // Copy the designators and their subexpressions, computing |
| 3001 | // value-dependence along the way. |
| 3002 | unsigned IndexIdx = 0; |
| 3003 | for (unsigned I = 0; I != NumDesignators; ++I) { |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 3004 | this->Designators[I] = Designators[I]; |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 3005 | |
| 3006 | if (this->Designators[I].isArrayDesignator()) { |
| 3007 | // Compute type- and value-dependence. |
| 3008 | Expr *Index = IndexExprs[IndexIdx]; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 3009 | if (Index->isTypeDependent() || Index->isValueDependent()) |
| 3010 | ExprBits.ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 3011 | if (Index->isInstantiationDependent()) |
| 3012 | ExprBits.InstantiationDependent = true; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 3013 | // Propagate unexpanded parameter packs. |
| 3014 | if (Index->containsUnexpandedParameterPack()) |
| 3015 | ExprBits.ContainsUnexpandedParameterPack = true; |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 3016 | |
| 3017 | // Copy the index expressions into permanent storage. |
| 3018 | *Child++ = IndexExprs[IndexIdx++]; |
| 3019 | } else if (this->Designators[I].isArrayRangeDesignator()) { |
| 3020 | // Compute type- and value-dependence. |
| 3021 | Expr *Start = IndexExprs[IndexIdx]; |
| 3022 | Expr *End = IndexExprs[IndexIdx + 1]; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 3023 | if (Start->isTypeDependent() || Start->isValueDependent() || |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 3024 | End->isTypeDependent() || End->isValueDependent()) { |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 3025 | ExprBits.ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 3026 | ExprBits.InstantiationDependent = true; |
| 3027 | } else if (Start->isInstantiationDependent() || |
| 3028 | End->isInstantiationDependent()) { |
| 3029 | ExprBits.InstantiationDependent = true; |
| 3030 | } |
| 3031 | |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 3032 | // Propagate unexpanded parameter packs. |
| 3033 | if (Start->containsUnexpandedParameterPack() || |
| 3034 | End->containsUnexpandedParameterPack()) |
| 3035 | ExprBits.ContainsUnexpandedParameterPack = true; |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 3036 | |
| 3037 | // Copy the start/end expressions into permanent storage. |
| 3038 | *Child++ = IndexExprs[IndexIdx++]; |
| 3039 | *Child++ = IndexExprs[IndexIdx++]; |
| 3040 | } |
| 3041 | } |
| 3042 | |
| 3043 | assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions"); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 3044 | } |
| 3045 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3046 | DesignatedInitExpr * |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3047 | DesignatedInitExpr::Create(ASTContext &C, Designator *Designators, |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3048 | unsigned NumDesignators, |
| 3049 | Expr **IndexExprs, unsigned NumIndexExprs, |
| 3050 | SourceLocation ColonOrEqualLoc, |
| 3051 | bool UsesColonSyntax, Expr *Init) { |
Steve Naroff | c0ac492 | 2009-01-27 23:20:32 +0000 | [diff] [blame] | 3052 | void *Mem = C.Allocate(sizeof(DesignatedInitExpr) + |
Steve Naroff | c0ac492 | 2009-01-27 23:20:32 +0000 | [diff] [blame] | 3053 | sizeof(Stmt *) * (NumIndexExprs + 1), 8); |
Douglas Gregor | 319d57f | 2010-01-06 23:17:19 +0000 | [diff] [blame] | 3054 | return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators, |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 3055 | ColonOrEqualLoc, UsesColonSyntax, |
| 3056 | IndexExprs, NumIndexExprs, Init); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3057 | } |
| 3058 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3059 | DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C, |
Douglas Gregor | d077d75 | 2009-04-16 00:55:48 +0000 | [diff] [blame] | 3060 | unsigned NumIndexExprs) { |
| 3061 | void *Mem = C.Allocate(sizeof(DesignatedInitExpr) + |
| 3062 | sizeof(Stmt *) * (NumIndexExprs + 1), 8); |
| 3063 | return new (Mem) DesignatedInitExpr(NumIndexExprs + 1); |
| 3064 | } |
| 3065 | |
Douglas Gregor | 319d57f | 2010-01-06 23:17:19 +0000 | [diff] [blame] | 3066 | void DesignatedInitExpr::setDesignators(ASTContext &C, |
| 3067 | const Designator *Desigs, |
Douglas Gregor | d077d75 | 2009-04-16 00:55:48 +0000 | [diff] [blame] | 3068 | unsigned NumDesigs) { |
Douglas Gregor | 319d57f | 2010-01-06 23:17:19 +0000 | [diff] [blame] | 3069 | Designators = new (C) Designator[NumDesigs]; |
Douglas Gregor | d077d75 | 2009-04-16 00:55:48 +0000 | [diff] [blame] | 3070 | NumDesignators = NumDesigs; |
| 3071 | for (unsigned I = 0; I != NumDesigs; ++I) |
| 3072 | Designators[I] = Desigs[I]; |
| 3073 | } |
| 3074 | |
Abramo Bagnara | 24f4674 | 2011-03-16 15:08:46 +0000 | [diff] [blame] | 3075 | SourceRange DesignatedInitExpr::getDesignatorsSourceRange() const { |
| 3076 | DesignatedInitExpr *DIE = const_cast<DesignatedInitExpr*>(this); |
| 3077 | if (size() == 1) |
| 3078 | return DIE->getDesignator(0)->getSourceRange(); |
| 3079 | return SourceRange(DIE->getDesignator(0)->getStartLocation(), |
| 3080 | DIE->getDesignator(size()-1)->getEndLocation()); |
| 3081 | } |
| 3082 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3083 | SourceRange DesignatedInitExpr::getSourceRange() const { |
| 3084 | SourceLocation StartLoc; |
Chris Lattner | d603eaa | 2009-02-16 22:33:34 +0000 | [diff] [blame] | 3085 | Designator &First = |
| 3086 | *const_cast<DesignatedInitExpr*>(this)->designators_begin(); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3087 | if (First.isFieldDesignator()) { |
Douglas Gregor | eeae8f0 | 2009-03-28 00:41:23 +0000 | [diff] [blame] | 3088 | if (GNUSyntax) |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3089 | StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc); |
| 3090 | else |
| 3091 | StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc); |
| 3092 | } else |
Chris Lattner | d603eaa | 2009-02-16 22:33:34 +0000 | [diff] [blame] | 3093 | StartLoc = |
| 3094 | SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3095 | return SourceRange(StartLoc, getInit()->getSourceRange().getEnd()); |
| 3096 | } |
| 3097 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3098 | Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) { |
| 3099 | assert(D.Kind == Designator::ArrayDesignator && "Requires array designator"); |
| 3100 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 3101 | Ptr += sizeof(DesignatedInitExpr); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3102 | Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 3103 | return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1)); |
| 3104 | } |
| 3105 | |
| 3106 | Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3107 | assert(D.Kind == Designator::ArrayRangeDesignator && |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3108 | "Requires array range designator"); |
| 3109 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 3110 | Ptr += sizeof(DesignatedInitExpr); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3111 | Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 3112 | return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1)); |
| 3113 | } |
| 3114 | |
| 3115 | Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3116 | assert(D.Kind == Designator::ArrayRangeDesignator && |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3117 | "Requires array range designator"); |
| 3118 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 3119 | Ptr += sizeof(DesignatedInitExpr); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3120 | Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 3121 | return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2)); |
| 3122 | } |
| 3123 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 3124 | /// \brief Replaces the designator at index @p Idx with the series |
| 3125 | /// of designators in [First, Last). |
Douglas Gregor | 319d57f | 2010-01-06 23:17:19 +0000 | [diff] [blame] | 3126 | void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3127 | const Designator *First, |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 3128 | const Designator *Last) { |
| 3129 | unsigned NumNewDesignators = Last - First; |
| 3130 | if (NumNewDesignators == 0) { |
| 3131 | std::copy_backward(Designators + Idx + 1, |
| 3132 | Designators + NumDesignators, |
| 3133 | Designators + Idx); |
| 3134 | --NumNewDesignators; |
| 3135 | return; |
| 3136 | } else if (NumNewDesignators == 1) { |
| 3137 | Designators[Idx] = *First; |
| 3138 | return; |
| 3139 | } |
| 3140 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3141 | Designator *NewDesignators |
Douglas Gregor | 319d57f | 2010-01-06 23:17:19 +0000 | [diff] [blame] | 3142 | = new (C) Designator[NumDesignators - 1 + NumNewDesignators]; |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 3143 | std::copy(Designators, Designators + Idx, NewDesignators); |
| 3144 | std::copy(First, Last, NewDesignators + Idx); |
| 3145 | std::copy(Designators + Idx + 1, Designators + NumDesignators, |
| 3146 | NewDesignators + Idx + NumNewDesignators); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 3147 | Designators = NewDesignators; |
| 3148 | NumDesignators = NumDesignators - 1 + NumNewDesignators; |
| 3149 | } |
| 3150 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3151 | ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc, |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3152 | Expr **exprs, unsigned nexprs, |
Manuel Klimek | 0d9106f | 2011-06-22 20:02:16 +0000 | [diff] [blame] | 3153 | SourceLocation rparenloc, QualType T) |
| 3154 | : Expr(ParenListExprClass, T, VK_RValue, OK_Ordinary, |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 3155 | false, false, false, false), |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 3156 | NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) { |
Manuel Klimek | 0d9106f | 2011-06-22 20:02:16 +0000 | [diff] [blame] | 3157 | assert(!T.isNull() && "ParenListExpr must have a valid type"); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3158 | Exprs = new (C) Stmt*[nexprs]; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 3159 | for (unsigned i = 0; i != nexprs; ++i) { |
| 3160 | if (exprs[i]->isTypeDependent()) |
| 3161 | ExprBits.TypeDependent = true; |
| 3162 | if (exprs[i]->isValueDependent()) |
| 3163 | ExprBits.ValueDependent = true; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 3164 | if (exprs[i]->isInstantiationDependent()) |
| 3165 | ExprBits.InstantiationDependent = true; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 3166 | if (exprs[i]->containsUnexpandedParameterPack()) |
| 3167 | ExprBits.ContainsUnexpandedParameterPack = true; |
| 3168 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3169 | Exprs[i] = exprs[i]; |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 3170 | } |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3171 | } |
| 3172 | |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 3173 | const OpaqueValueExpr *OpaqueValueExpr::findInCopyConstruct(const Expr *e) { |
| 3174 | if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(e)) |
| 3175 | e = ewc->getSubExpr(); |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 3176 | if (const MaterializeTemporaryExpr *m = dyn_cast<MaterializeTemporaryExpr>(e)) |
| 3177 | e = m->GetTemporaryExpr(); |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 3178 | e = cast<CXXConstructExpr>(e)->getArg(0); |
| 3179 | while (const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e)) |
| 3180 | e = ice->getSubExpr(); |
| 3181 | return cast<OpaqueValueExpr>(e); |
| 3182 | } |
| 3183 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 3184 | //===----------------------------------------------------------------------===// |
Ted Kremenek | ce2fc3a | 2008-10-27 18:40:21 +0000 | [diff] [blame] | 3185 | // ExprIterator. |
| 3186 | //===----------------------------------------------------------------------===// |
| 3187 | |
| 3188 | Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); } |
| 3189 | Expr* ExprIterator::operator*() const { return cast<Expr>(*I); } |
| 3190 | Expr* ExprIterator::operator->() const { return cast<Expr>(*I); } |
| 3191 | const Expr* ConstExprIterator::operator[](size_t idx) const { |
| 3192 | return cast<Expr>(I[idx]); |
| 3193 | } |
| 3194 | const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); } |
| 3195 | const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); } |
| 3196 | |
| 3197 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 3198 | // Child Iterators for iterating over subexpressions/substatements |
| 3199 | //===----------------------------------------------------------------------===// |
| 3200 | |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3201 | // UnaryExprOrTypeTraitExpr |
| 3202 | Stmt::child_range UnaryExprOrTypeTraitExpr::children() { |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 3203 | // If this is of a type and the type is a VLA type (and not a typedef), the |
| 3204 | // size expression of the VLA needs to be treated as an executable expression. |
| 3205 | // Why isn't this weirdness documented better in StmtIterator? |
| 3206 | if (isArgumentType()) { |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 3207 | if (const VariableArrayType* T = dyn_cast<VariableArrayType>( |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 3208 | getArgumentType().getTypePtr())) |
John McCall | 63c00d7 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 3209 | return child_range(child_iterator(T), child_iterator()); |
| 3210 | return child_range(); |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 3211 | } |
John McCall | 63c00d7 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 3212 | return child_range(&Argument.Ex, &Argument.Ex + 1); |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 3213 | } |
Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 3214 | |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 3215 | // ObjCMessageExpr |
John McCall | 63c00d7 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 3216 | Stmt::child_range ObjCMessageExpr::children() { |
| 3217 | Stmt **begin; |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 3218 | if (getReceiverKind() == Instance) |
John McCall | 63c00d7 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 3219 | begin = reinterpret_cast<Stmt **>(this + 1); |
| 3220 | else |
| 3221 | begin = reinterpret_cast<Stmt **>(getArgs()); |
| 3222 | return child_range(begin, |
| 3223 | reinterpret_cast<Stmt **>(getArgs() + getNumArgs())); |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 3224 | } |
| 3225 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 3226 | // Blocks |
John McCall | 6b5a61b | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 3227 | BlockDeclRefExpr::BlockDeclRefExpr(VarDecl *d, QualType t, ExprValueKind VK, |
Douglas Gregor | a779d9c | 2011-01-19 21:32:01 +0000 | [diff] [blame] | 3228 | SourceLocation l, bool ByRef, |
John McCall | 6b5a61b | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 3229 | bool constAdded) |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 3230 | : Expr(BlockDeclRefExprClass, t, VK, OK_Ordinary, false, false, false, |
Douglas Gregor | a779d9c | 2011-01-19 21:32:01 +0000 | [diff] [blame] | 3231 | d->isParameterPack()), |
John McCall | 6b5a61b | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 3232 | D(d), Loc(l), IsByRef(ByRef), ConstQualAdded(constAdded) |
Douglas Gregor | a779d9c | 2011-01-19 21:32:01 +0000 | [diff] [blame] | 3233 | { |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 3234 | bool TypeDependent = false; |
| 3235 | bool ValueDependent = false; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 3236 | bool InstantiationDependent = false; |
| 3237 | computeDeclRefDependence(D, getType(), TypeDependent, ValueDependent, |
| 3238 | InstantiationDependent); |
Douglas Gregor | d967e31 | 2011-01-19 21:52:31 +0000 | [diff] [blame] | 3239 | ExprBits.TypeDependent = TypeDependent; |
| 3240 | ExprBits.ValueDependent = ValueDependent; |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 3241 | ExprBits.InstantiationDependent = InstantiationDependent; |
Douglas Gregor | a779d9c | 2011-01-19 21:32:01 +0000 | [diff] [blame] | 3242 | } |