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