blob: 747f786542feea92cc73b9e41fa6789cd27d34e1 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000014#include "clang/AST/Expr.h"
Douglas Gregor0979c802009-08-31 21:41:48 +000015#include "clang/AST/ExprCXX.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000016#include "clang/AST/APValue.h"
Chris Lattner2eadfb62007-07-15 23:32:58 +000017#include "clang/AST/ASTContext.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000018#include "clang/AST/DeclObjC.h"
Douglas Gregor98cd5992008-10-21 23:43:52 +000019#include "clang/AST/DeclCXX.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000020#include "clang/AST/DeclTemplate.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000021#include "clang/AST/RecordLayout.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/AST/StmtVisitor.h"
Chris Lattner08f92e32010-11-17 07:37:15 +000023#include "clang/Lex/LiteralSupport.h"
24#include "clang/Lex/Lexer.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000025#include "clang/Basic/Builtins.h"
Chris Lattner08f92e32010-11-17 07:37:15 +000026#include "clang/Basic/SourceManager.h"
Chris Lattnerda5a6b62007-11-27 18:22:04 +000027#include "clang/Basic/TargetInfo.h"
Douglas Gregorcf3293e2009-11-01 20:32:48 +000028#include "llvm/Support/ErrorHandling.h"
Anders Carlsson3a082d82009-09-08 18:24:21 +000029#include "llvm/Support/raw_ostream.h"
Douglas Gregorffb4b6e2009-04-15 06:41:24 +000030#include <algorithm>
Reid Spencer5f016e22007-07-11 17:01:13 +000031using namespace clang;
32
Chris Lattnerbef0efd2010-05-13 01:02:19 +000033void Expr::ANCHOR() {} // key function for Expr class.
34
Chris Lattner2b334bb2010-04-16 23:34:13 +000035/// 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.
39bool Expr::isKnownToHaveBooleanValue() const {
40 // If this value has _Bool type, it is obvious 0/1.
41 if (getType()->isBooleanType()) return true;
Sean Huntc3021132010-05-05 15:23:54 +000042 // If this is a non-scalar-integer type, we don't care enough to try.
Douglas Gregor2ade35e2010-06-16 00:17:44 +000043 if (!getType()->isIntegralOrEnumerationType()) return false;
Sean Huntc3021132010-05-05 15:23:54 +000044
Chris Lattner2b334bb2010-04-16 23:34:13 +000045 if (const ParenExpr *PE = dyn_cast<ParenExpr>(this))
46 return PE->getSubExpr()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000047
Chris Lattner2b334bb2010-04-16 23:34:13 +000048 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(this)) {
49 switch (UO->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +000050 case UO_Plus:
51 case UO_Extension:
Chris Lattner2b334bb2010-04-16 23:34:13 +000052 return UO->getSubExpr()->isKnownToHaveBooleanValue();
53 default:
54 return false;
55 }
56 }
Sean Huntc3021132010-05-05 15:23:54 +000057
John McCall6907fbe2010-06-12 01:56:02 +000058 // 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 Lattner2b334bb2010-04-16 23:34:13 +000061 return CE->getSubExpr()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000062
Chris Lattner2b334bb2010-04-16 23:34:13 +000063 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(this)) {
64 switch (BO->getOpcode()) {
65 default: return false;
John McCall2de56d12010-08-25 11:45:40 +000066 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 Lattner2b334bb2010-04-16 23:34:13 +000074 return true;
Sean Huntc3021132010-05-05 15:23:54 +000075
John McCall2de56d12010-08-25 11:45:40 +000076 case BO_And: // Bitwise AND operator.
77 case BO_Xor: // Bitwise XOR operator.
78 case BO_Or: // Bitwise OR operator.
Chris Lattner2b334bb2010-04-16 23:34:13 +000079 // Handle things like (x==2)|(y==12).
80 return BO->getLHS()->isKnownToHaveBooleanValue() &&
81 BO->getRHS()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000082
John McCall2de56d12010-08-25 11:45:40 +000083 case BO_Comma:
84 case BO_Assign:
Chris Lattner2b334bb2010-04-16 23:34:13 +000085 return BO->getRHS()->isKnownToHaveBooleanValue();
86 }
87 }
Sean Huntc3021132010-05-05 15:23:54 +000088
Chris Lattner2b334bb2010-04-16 23:34:13 +000089 if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(this))
90 return CO->getTrueExpr()->isKnownToHaveBooleanValue() &&
91 CO->getFalseExpr()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000092
Chris Lattner2b334bb2010-04-16 23:34:13 +000093 return false;
94}
95
Reid Spencer5f016e22007-07-11 17:01:13 +000096//===----------------------------------------------------------------------===//
97// Primary Expressions.
98//===----------------------------------------------------------------------===//
99
John McCalld5532b62009-11-23 01:53:49 +0000100void 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 Gregorbebbe0d2010-12-15 01:34:56 +0000111void 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 McCalld5532b62009-11-23 01:53:49 +0000130void 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 Kyrtzidis8dfbd8b2010-06-24 08:57:31 +0000138std::size_t ExplicitTemplateArgumentList::sizeFor(unsigned NumTemplateArgs) {
139 return sizeof(ExplicitTemplateArgumentList) +
140 sizeof(TemplateArgumentLoc) * NumTemplateArgs;
141}
142
John McCalld5532b62009-11-23 01:53:49 +0000143std::size_t ExplicitTemplateArgumentList::sizeFor(
144 const TemplateArgumentListInfo &Info) {
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +0000145 return sizeFor(Info.size());
John McCalld5532b62009-11-23 01:53:49 +0000146}
147
Douglas Gregord967e312011-01-19 21:52:31 +0000148/// \brief Compute the type- and value-dependence of a declaration reference
149/// based on the declaration being referenced.
150static void computeDeclRefDependence(NamedDecl *D, QualType T,
151 bool &TypeDependent,
152 bool &ValueDependent) {
153 TypeDependent = false;
154 ValueDependent = false;
Sean Huntc3021132010-05-05 15:23:54 +0000155
Douglas Gregor0da76df2009-11-23 11:41:28 +0000156
157 // (TD) C++ [temp.dep.expr]p3:
158 // An id-expression is type-dependent if it contains:
159 //
Sean Huntc3021132010-05-05 15:23:54 +0000160 // and
Douglas Gregor0da76df2009-11-23 11:41:28 +0000161 //
162 // (VD) C++ [temp.dep.constexpr]p2:
163 // An identifier is value-dependent if it is:
Douglas Gregord967e312011-01-19 21:52:31 +0000164
Douglas Gregor0da76df2009-11-23 11:41:28 +0000165 // (TD) - an identifier that was declared with dependent type
166 // (VD) - a name declared with a dependent type,
Douglas Gregord967e312011-01-19 21:52:31 +0000167 if (T->isDependentType()) {
168 TypeDependent = true;
169 ValueDependent = true;
170 return;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000171 }
Douglas Gregord967e312011-01-19 21:52:31 +0000172
Douglas Gregor0da76df2009-11-23 11:41:28 +0000173 // (TD) - a conversion-function-id that specifies a dependent type
Douglas Gregord967e312011-01-19 21:52:31 +0000174 if (D->getDeclName().getNameKind()
175 == DeclarationName::CXXConversionFunctionName &&
Douglas Gregor0da76df2009-11-23 11:41:28 +0000176 D->getDeclName().getCXXNameType()->isDependentType()) {
Douglas Gregord967e312011-01-19 21:52:31 +0000177 TypeDependent = true;
178 ValueDependent = true;
179 return;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000180 }
181 // (VD) - the name of a non-type template parameter,
Douglas Gregord967e312011-01-19 21:52:31 +0000182 if (isa<NonTypeTemplateParmDecl>(D)) {
183 ValueDependent = true;
184 return;
185 }
186
Douglas Gregor0da76df2009-11-23 11:41:28 +0000187 // (VD) - a constant with integral or enumeration type and is
188 // initialized with an expression that is value-dependent.
Douglas Gregord967e312011-01-19 21:52:31 +0000189 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000190 if (Var->getType()->isIntegralOrEnumerationType() &&
Douglas Gregor501edb62010-01-15 16:21:02 +0000191 Var->getType().getCVRQualifiers() == Qualifiers::Const) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000192 if (const Expr *Init = Var->getAnyInitializer())
Douglas Gregor501edb62010-01-15 16:21:02 +0000193 if (Init->isValueDependent())
Douglas Gregord967e312011-01-19 21:52:31 +0000194 ValueDependent = true;
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000195 }
Douglas Gregord967e312011-01-19 21:52:31 +0000196
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000197 // (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 Gregor7ed5bd32010-05-11 08:44:04 +0000201 Var->getDeclContext()->isDependentContext())
Douglas Gregord967e312011-01-19 21:52:31 +0000202 ValueDependent = true;
203
204 return;
205 }
206
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000207 // (VD) - FIXME: Missing from the standard:
208 // - a member function or a static data member of the current
209 // instantiation
Douglas Gregord967e312011-01-19 21:52:31 +0000210 if (isa<CXXMethodDecl>(D) && D->getDeclContext()->isDependentContext()) {
211 ValueDependent = true;
212 return;
213 }
214}
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000215
Douglas Gregord967e312011-01-19 21:52:31 +0000216void 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 Gregor10738d32010-12-23 23:51:58 +0000240 // Is the declaration a parameter pack?
Douglas Gregord967e312011-01-19 21:52:31 +0000241 if (getDecl()->isParameterPack())
Douglas Gregor1fe85ea2011-01-05 21:11:38 +0000242 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000243}
244
Sean Huntc3021132010-05-05 15:23:54 +0000245DeclRefExpr::DeclRefExpr(NestedNameSpecifier *Qualifier,
Douglas Gregora2813ce2009-10-23 18:54:35 +0000246 SourceRange QualifierRange,
John McCalldbd872f2009-12-08 09:08:17 +0000247 ValueDecl *D, SourceLocation NameLoc,
John McCalld5532b62009-11-23 01:53:49 +0000248 const TemplateArgumentListInfo *TemplateArgs,
John McCallf89e55a2010-11-18 06:31:45 +0000249 QualType T, ExprValueKind VK)
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000250 : Expr(DeclRefExprClass, T, VK, OK_Ordinary, false, false, false),
Douglas Gregora2813ce2009-10-23 18:54:35 +0000251 DecoratedD(D,
252 (Qualifier? HasQualifierFlag : 0) |
John McCalld5532b62009-11-23 01:53:49 +0000253 (TemplateArgs ? HasExplicitTemplateArgumentListFlag : 0)),
Douglas Gregora2813ce2009-10-23 18:54:35 +0000254 Loc(NameLoc) {
255 if (Qualifier) {
256 NameQualifier *NQ = getNameQualifier();
257 NQ->NNS = Qualifier;
258 NQ->Range = QualifierRange;
259 }
Sean Huntc3021132010-05-05 15:23:54 +0000260
John McCalld5532b62009-11-23 01:53:49 +0000261 if (TemplateArgs)
John McCall096832c2010-08-19 23:49:38 +0000262 getExplicitTemplateArgs().initializeFrom(*TemplateArgs);
Douglas Gregor0da76df2009-11-23 11:41:28 +0000263
264 computeDependence();
Douglas Gregora2813ce2009-10-23 18:54:35 +0000265}
266
Abramo Bagnara25777432010-08-11 22:01:17 +0000267DeclRefExpr::DeclRefExpr(NestedNameSpecifier *Qualifier,
268 SourceRange QualifierRange,
269 ValueDecl *D, const DeclarationNameInfo &NameInfo,
270 const TemplateArgumentListInfo *TemplateArgs,
John McCallf89e55a2010-11-18 06:31:45 +0000271 QualType T, ExprValueKind VK)
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000272 : Expr(DeclRefExprClass, T, VK, OK_Ordinary, false, false, false),
Abramo Bagnara25777432010-08-11 22:01:17 +0000273 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 McCall096832c2010-08-19 23:49:38 +0000284 getExplicitTemplateArgs().initializeFrom(*TemplateArgs);
Abramo Bagnara25777432010-08-11 22:01:17 +0000285
286 computeDependence();
287}
288
Douglas Gregora2813ce2009-10-23 18:54:35 +0000289DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
290 NestedNameSpecifier *Qualifier,
291 SourceRange QualifierRange,
John McCalldbd872f2009-12-08 09:08:17 +0000292 ValueDecl *D,
Douglas Gregora2813ce2009-10-23 18:54:35 +0000293 SourceLocation NameLoc,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000294 QualType T,
John McCallf89e55a2010-11-18 06:31:45 +0000295 ExprValueKind VK,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000296 const TemplateArgumentListInfo *TemplateArgs) {
Abramo Bagnara25777432010-08-11 22:01:17 +0000297 return Create(Context, Qualifier, QualifierRange, D,
298 DeclarationNameInfo(D->getDeclName(), NameLoc),
John McCallf89e55a2010-11-18 06:31:45 +0000299 T, VK, TemplateArgs);
Abramo Bagnara25777432010-08-11 22:01:17 +0000300}
301
302DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
303 NestedNameSpecifier *Qualifier,
304 SourceRange QualifierRange,
305 ValueDecl *D,
306 const DeclarationNameInfo &NameInfo,
307 QualType T,
John McCallf89e55a2010-11-18 06:31:45 +0000308 ExprValueKind VK,
Abramo Bagnara25777432010-08-11 22:01:17 +0000309 const TemplateArgumentListInfo *TemplateArgs) {
Douglas Gregora2813ce2009-10-23 18:54:35 +0000310 std::size_t Size = sizeof(DeclRefExpr);
311 if (Qualifier != 0)
312 Size += sizeof(NameQualifier);
Sean Huntc3021132010-05-05 15:23:54 +0000313
John McCalld5532b62009-11-23 01:53:49 +0000314 if (TemplateArgs)
315 Size += ExplicitTemplateArgumentList::sizeFor(*TemplateArgs);
Sean Huntc3021132010-05-05 15:23:54 +0000316
Chris Lattner32488542010-10-30 05:14:06 +0000317 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Abramo Bagnara25777432010-08-11 22:01:17 +0000318 return new (Mem) DeclRefExpr(Qualifier, QualifierRange, D, NameInfo,
John McCallf89e55a2010-11-18 06:31:45 +0000319 TemplateArgs, T, VK);
Douglas Gregora2813ce2009-10-23 18:54:35 +0000320}
321
Douglas Gregordef03542011-02-04 12:01:24 +0000322DeclRefExpr *DeclRefExpr::CreateEmpty(ASTContext &Context,
323 bool HasQualifier,
324 bool HasExplicitTemplateArgs,
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000325 unsigned NumTemplateArgs) {
326 std::size_t Size = sizeof(DeclRefExpr);
327 if (HasQualifier)
328 Size += sizeof(NameQualifier);
329
Douglas Gregordef03542011-02-04 12:01:24 +0000330 if (HasExplicitTemplateArgs)
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000331 Size += ExplicitTemplateArgumentList::sizeFor(NumTemplateArgs);
332
Chris Lattner32488542010-10-30 05:14:06 +0000333 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000334 return new (Mem) DeclRefExpr(EmptyShell());
335}
336
Douglas Gregora2813ce2009-10-23 18:54:35 +0000337SourceRange DeclRefExpr::getSourceRange() const {
Abramo Bagnara25777432010-08-11 22:01:17 +0000338 SourceRange R = getNameInfo().getSourceRange();
Douglas Gregora2813ce2009-10-23 18:54:35 +0000339 if (hasQualifier())
340 R.setBegin(getQualifierRange().getBegin());
John McCall096832c2010-08-19 23:49:38 +0000341 if (hasExplicitTemplateArgs())
Douglas Gregora2813ce2009-10-23 18:54:35 +0000342 R.setEnd(getRAngleLoc());
343 return R;
344}
345
Anders Carlsson3a082d82009-09-08 18:24:21 +0000346// FIXME: Maybe this should use DeclPrinter with a special "print predefined
347// expr" policy instead.
Anders Carlsson848fa642010-02-11 18:20:28 +0000348std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) {
349 ASTContext &Context = CurrentDecl->getASTContext();
350
Anders Carlsson3a082d82009-09-08 18:24:21 +0000351 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
Anders Carlsson848fa642010-02-11 18:20:28 +0000352 if (IT != PrettyFunction && IT != PrettyFunctionNoVirtual)
Anders Carlsson3a082d82009-09-08 18:24:21 +0000353 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 Carlsson848fa642010-02-11 18:20:28 +0000359 if (MD->isVirtual() && IT != PrettyFunctionNoVirtual)
Anders Carlsson3a082d82009-09-08 18:24:21 +0000360 Out << "virtual ";
Sam Weinig4eadcc52009-12-27 01:38:20 +0000361 if (MD->isStatic())
362 Out << "static ";
Anders Carlsson3a082d82009-09-08 18:24:21 +0000363 }
364
365 PrintingPolicy Policy(Context.getLangOptions());
Anders Carlsson3a082d82009-09-08 18:24:21 +0000366
367 std::string Proto = FD->getQualifiedNameAsString(Policy);
368
John McCall183700f2009-09-21 23:43:11 +0000369 const FunctionType *AFT = FD->getType()->getAs<FunctionType>();
Anders Carlsson3a082d82009-09-08 18:24:21 +0000370 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 Weinig4eadcc52009-12-27 01:38:20 +0000391 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 Weinig3a1ce1e2009-12-06 23:55:13 +0000399 if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
400 AFT->getResultType().getAsStringInternal(Proto, Policy);
Anders Carlsson3a082d82009-09-08 18:24:21 +0000401
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 Kremenekb03d33e2010-03-18 21:23:08 +0000412
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 Kramer900fc632010-04-17 09:33:03 +0000416 Out << ID;
Ted Kremenekb03d33e2010-03-18 21:23:08 +0000417
Anders Carlsson3a082d82009-09-08 18:24:21 +0000418 if (const ObjCCategoryImplDecl *CID =
Benjamin Kramer900fc632010-04-17 09:33:03 +0000419 dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext()))
420 Out << '(' << CID << ')';
421
Anders Carlsson3a082d82009-09-08 18:24:21 +0000422 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 Kyrtzidis9996a7f2010-08-28 09:06:06 +0000436void 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
452IntegerLiteral *
453IntegerLiteral::Create(ASTContext &C, const llvm::APInt &V,
454 QualType type, SourceLocation l) {
455 return new (C) IntegerLiteral(C, V, type, l);
456}
457
458IntegerLiteral *
459IntegerLiteral::Create(ASTContext &C, EmptyShell Empty) {
460 return new (C) IntegerLiteral(Empty);
461}
462
463FloatingLiteral *
464FloatingLiteral::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
469FloatingLiteral *
470FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) {
471 return new (C) FloatingLiteral(Empty);
472}
473
Chris Lattnerda8249e2008-06-07 22:13:43 +0000474/// 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.
477double FloatingLiteral::getValueAsApproximateDouble() const {
478 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +0000479 bool ignored;
480 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
481 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +0000482 return V.convertToDouble();
483}
484
Chris Lattner2085fd62009-02-18 06:40:38 +0000485StringLiteral *StringLiteral::Create(ASTContext &C, const char *StrData,
486 unsigned ByteLength, bool Wide,
487 QualType Ty,
Mike Stump1eb44332009-09-09 15:08:12 +0000488 const SourceLocation *Loc,
Anders Carlssona135fb42009-03-15 18:34:13 +0000489 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +0000490 // 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 Lattner32488542010-10-30 05:14:06 +0000494 llvm::alignOf<StringLiteral>());
Chris Lattner2085fd62009-02-18 06:40:38 +0000495 StringLiteral *SL = new (Mem) StringLiteral(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Reid Spencer5f016e22007-07-11 17:01:13 +0000497 // OPTIMIZE: could allocate this appended to the StringLiteral.
Chris Lattner2085fd62009-02-18 06:40:38 +0000498 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 Spencer5f016e22007-07-11 17:01:13 +0000505
Chris Lattner726e1682009-02-18 05:49:11 +0000506 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +0000507 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
508 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +0000509}
510
Douglas Gregor673ecd62009-04-15 16:35:07 +0000511StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
512 void *Mem = C.Allocate(sizeof(StringLiteral)+
513 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000514 llvm::alignOf<StringLiteral>());
Douglas Gregor673ecd62009-04-15 16:35:07 +0000515 StringLiteral *SL = new (Mem) StringLiteral(QualType());
516 SL->StrData = 0;
517 SL->ByteLength = 0;
518 SL->NumConcatenated = NumStrs;
519 return SL;
520}
521
Daniel Dunbarb6480232009-09-22 03:27:33 +0000522void StringLiteral::setString(ASTContext &C, llvm::StringRef Str) {
Daniel Dunbarb6480232009-09-22 03:27:33 +0000523 char *AStrData = new (C, 1) char[Str.size()];
524 memcpy(AStrData, Str.data(), Str.size());
Douglas Gregor673ecd62009-04-15 16:35:07 +0000525 StrData = AStrData;
Daniel Dunbarb6480232009-09-22 03:27:33 +0000526 ByteLength = Str.size();
Douglas Gregor673ecd62009-04-15 16:35:07 +0000527}
528
Chris Lattner08f92e32010-11-17 07:37:15 +0000529/// 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///
536SourceLocation StringLiteral::
537getLocationOfByte(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 Spencer5f016e22007-07-11 17:01:13 +0000595/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
596/// corresponds to, e.g. "sizeof" or "[pre]++".
597const char *UnaryOperator::getOpcodeStr(Opcode Op) {
598 switch (Op) {
599 default: assert(0 && "Unknown unary operator");
John McCall2de56d12010-08-25 11:45:40 +0000600 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 Spencer5f016e22007-07-11 17:01:13 +0000613 }
614}
615
John McCall2de56d12010-08-25 11:45:40 +0000616UnaryOperatorKind
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000617UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
618 switch (OO) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000619 default: assert(false && "No unary operator for overloaded function");
John McCall2de56d12010-08-25 11:45:40 +0000620 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 Gregorbc736fc2009-03-13 23:49:33 +0000628 }
629}
630
631OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
632 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +0000633 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 Gregorbc736fc2009-03-13 23:49:33 +0000641 default: return OO_None;
642 }
643}
644
645
Reid Spencer5f016e22007-07-11 17:01:13 +0000646//===----------------------------------------------------------------------===//
647// Postfix Operators.
648//===----------------------------------------------------------------------===//
649
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000650CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, unsigned NumPreArgs,
651 Expr **args, unsigned numargs, QualType t, ExprValueKind VK,
John McCallf89e55a2010-11-18 06:31:45 +0000652 SourceLocation rparenloc)
653 : Expr(SC, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000654 fn->isTypeDependent(),
655 fn->isValueDependent(),
656 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000657 NumArgs(numargs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000659 SubExprs = new (C) Stmt*[numargs+PREARGS_START+NumPreArgs];
Douglas Gregorb4609802008-11-14 16:09:21 +0000660 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000661 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
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000669 SubExprs[i+PREARGS_START+NumPreArgs] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000670 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000671
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000672 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregorb4609802008-11-14 16:09:21 +0000673 RParenLoc = rparenloc;
674}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000675
Ted Kremenek668bf912009-02-09 20:51:47 +0000676CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
John McCallf89e55a2010-11-18 06:31:45 +0000677 QualType t, ExprValueKind VK, SourceLocation rparenloc)
678 : Expr(CallExprClass, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000679 fn->isTypeDependent(),
680 fn->isValueDependent(),
681 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000682 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000683
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000684 SubExprs = new (C) Stmt*[numargs+PREARGS_START];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000685 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000686 for (unsigned i = 0; i != numargs; ++i) {
687 if (args[i]->isTypeDependent())
688 ExprBits.TypeDependent = true;
689 if (args[i]->isValueDependent())
690 ExprBits.ValueDependent = true;
691 if (args[i]->containsUnexpandedParameterPack())
692 ExprBits.ContainsUnexpandedParameterPack = true;
693
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000694 SubExprs[i+PREARGS_START] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000695 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000696
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000697 CallExprBits.NumPreArgs = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000698 RParenLoc = rparenloc;
699}
700
Mike Stump1eb44332009-09-09 15:08:12 +0000701CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
702 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000703 // FIXME: Why do we allocate this?
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000704 SubExprs = new (C) Stmt*[PREARGS_START];
705 CallExprBits.NumPreArgs = 0;
706}
707
708CallExpr::CallExpr(ASTContext &C, StmtClass SC, unsigned NumPreArgs,
709 EmptyShell Empty)
710 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
711 // FIXME: Why do we allocate this?
712 SubExprs = new (C) Stmt*[PREARGS_START+NumPreArgs];
713 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000714}
715
Nuno Lopesd20254f2009-12-20 23:11:08 +0000716Decl *CallExpr::getCalleeDecl() {
Zhongxing Xua0042542009-07-17 07:29:51 +0000717 Expr *CEE = getCallee()->IgnoreParenCasts();
Sebastian Redl20012152010-09-10 20:55:30 +0000718 // If we're calling a dereference, look at the pointer instead.
719 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
720 if (BO->isPtrMemOp())
721 CEE = BO->getRHS()->IgnoreParenCasts();
722 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
723 if (UO->getOpcode() == UO_Deref)
724 CEE = UO->getSubExpr()->IgnoreParenCasts();
725 }
Chris Lattner6346f962009-07-17 15:46:27 +0000726 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Nuno Lopesd20254f2009-12-20 23:11:08 +0000727 return DRE->getDecl();
Nuno Lopescb1c77f2009-12-24 00:28:18 +0000728 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))
729 return ME->getMemberDecl();
Zhongxing Xua0042542009-07-17 07:29:51 +0000730
731 return 0;
732}
733
Nuno Lopesd20254f2009-12-20 23:11:08 +0000734FunctionDecl *CallExpr::getDirectCallee() {
Chris Lattnercaabf9b2009-12-21 01:10:56 +0000735 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
Nuno Lopesd20254f2009-12-20 23:11:08 +0000736}
737
Chris Lattnerd18b3292007-12-28 05:25:02 +0000738/// setNumArgs - This changes the number of arguments present in this call.
739/// Any orphaned expressions are deleted by this, and any new operands are set
740/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000741void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000742 // No change, just return.
743 if (NumArgs == getNumArgs()) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000744
Chris Lattnerd18b3292007-12-28 05:25:02 +0000745 // If shrinking # arguments, just delete the extras and forgot them.
746 if (NumArgs < getNumArgs()) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000747 this->NumArgs = NumArgs;
748 return;
749 }
750
751 // Otherwise, we are growing the # arguments. New an bigger argument array.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000752 unsigned NumPreArgs = getNumPreArgs();
753 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+PREARGS_START+NumPreArgs];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000754 // Copy over args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000755 for (unsigned i = 0; i != getNumArgs()+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +0000756 NewSubExprs[i] = SubExprs[i];
757 // Null out new args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000758 for (unsigned i = getNumArgs()+PREARGS_START+NumPreArgs;
759 i != NumArgs+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +0000760 NewSubExprs[i] = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000761
Douglas Gregor88c9a462009-04-17 21:46:47 +0000762 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000763 SubExprs = NewSubExprs;
764 this->NumArgs = NumArgs;
765}
766
Chris Lattnercb888962008-10-06 05:00:53 +0000767/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
768/// not, return 0.
Jay Foad4ba2a172011-01-12 09:06:06 +0000769unsigned CallExpr::isBuiltinCall(const ASTContext &Context) const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000770 // All simple function calls (e.g. func()) are implicitly cast to pointer to
Mike Stump1eb44332009-09-09 15:08:12 +0000771 // function. As a result, we try and obtain the DeclRefExpr from the
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000772 // ImplicitCastExpr.
773 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
774 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000775 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000776
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000777 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
778 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000779 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000780
Anders Carlssonbcba2012008-01-31 02:13:57 +0000781 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
782 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000783 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000784
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000785 if (!FDecl->getIdentifier())
786 return 0;
787
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000788 return FDecl->getBuiltinID();
Chris Lattnercb888962008-10-06 05:00:53 +0000789}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000790
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000791QualType CallExpr::getCallReturnType() const {
792 QualType CalleeType = getCallee()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000793 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000794 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000795 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000796 CalleeType = BPT->getPointeeType();
Douglas Gregor5291c3c2010-07-13 08:18:22 +0000797 else if (const MemberPointerType *MPT
798 = CalleeType->getAs<MemberPointerType>())
799 CalleeType = MPT->getPointeeType();
800
John McCall183700f2009-09-21 23:43:11 +0000801 const FunctionType *FnType = CalleeType->getAs<FunctionType>();
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000802 return FnType->getResultType();
803}
Chris Lattnercb888962008-10-06 05:00:53 +0000804
Sean Huntc3021132010-05-05 15:23:54 +0000805OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000806 SourceLocation OperatorLoc,
Sean Huntc3021132010-05-05 15:23:54 +0000807 TypeSourceInfo *tsi,
808 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000809 Expr** exprsPtr, unsigned numExprs,
810 SourceLocation RParenLoc) {
811 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
Sean Huntc3021132010-05-05 15:23:54 +0000812 sizeof(OffsetOfNode) * numComps +
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000813 sizeof(Expr*) * numExprs);
814
815 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, compsPtr, numComps,
816 exprsPtr, numExprs, RParenLoc);
817}
818
819OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
820 unsigned numComps, unsigned numExprs) {
821 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
822 sizeof(OffsetOfNode) * numComps +
823 sizeof(Expr*) * numExprs);
824 return new (Mem) OffsetOfExpr(numComps, numExprs);
825}
826
Sean Huntc3021132010-05-05 15:23:54 +0000827OffsetOfExpr::OffsetOfExpr(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000828 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
Sean Huntc3021132010-05-05 15:23:54 +0000829 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000830 Expr** exprsPtr, unsigned numExprs,
831 SourceLocation RParenLoc)
John McCallf89e55a2010-11-18 06:31:45 +0000832 : Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary,
833 /*TypeDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000834 /*ValueDependent=*/tsi->getType()->isDependentType(),
835 tsi->getType()->containsUnexpandedParameterPack()),
Sean Huntc3021132010-05-05 15:23:54 +0000836 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
837 NumComps(numComps), NumExprs(numExprs)
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000838{
839 for(unsigned i = 0; i < numComps; ++i) {
840 setComponent(i, compsPtr[i]);
841 }
Sean Huntc3021132010-05-05 15:23:54 +0000842
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000843 for(unsigned i = 0; i < numExprs; ++i) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000844 if (exprsPtr[i]->isTypeDependent() || exprsPtr[i]->isValueDependent())
845 ExprBits.ValueDependent = true;
846 if (exprsPtr[i]->containsUnexpandedParameterPack())
847 ExprBits.ContainsUnexpandedParameterPack = true;
848
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000849 setIndexExpr(i, exprsPtr[i]);
850 }
851}
852
853IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {
854 assert(getKind() == Field || getKind() == Identifier);
855 if (getKind() == Field)
856 return getField()->getIdentifier();
Sean Huntc3021132010-05-05 15:23:54 +0000857
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000858 return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask);
859}
860
Mike Stump1eb44332009-09-09 15:08:12 +0000861MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
862 NestedNameSpecifier *qual,
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000863 SourceRange qualrange,
Eli Friedmanf595cc42009-12-04 06:40:45 +0000864 ValueDecl *memberdecl,
John McCall161755a2010-04-06 21:38:20 +0000865 DeclAccessPair founddecl,
Abramo Bagnara25777432010-08-11 22:01:17 +0000866 DeclarationNameInfo nameinfo,
John McCalld5532b62009-11-23 01:53:49 +0000867 const TemplateArgumentListInfo *targs,
John McCallf89e55a2010-11-18 06:31:45 +0000868 QualType ty,
869 ExprValueKind vk,
870 ExprObjectKind ok) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000871 std::size_t Size = sizeof(MemberExpr);
John McCall6bb80172010-03-30 21:47:33 +0000872
John McCall161755a2010-04-06 21:38:20 +0000873 bool hasQualOrFound = (qual != 0 ||
874 founddecl.getDecl() != memberdecl ||
875 founddecl.getAccess() != memberdecl->getAccess());
John McCall6bb80172010-03-30 21:47:33 +0000876 if (hasQualOrFound)
877 Size += sizeof(MemberNameQualifier);
Mike Stump1eb44332009-09-09 15:08:12 +0000878
John McCalld5532b62009-11-23 01:53:49 +0000879 if (targs)
880 Size += ExplicitTemplateArgumentList::sizeFor(*targs);
Mike Stump1eb44332009-09-09 15:08:12 +0000881
Chris Lattner32488542010-10-30 05:14:06 +0000882 void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>());
John McCallf89e55a2010-11-18 06:31:45 +0000883 MemberExpr *E = new (Mem) MemberExpr(base, isarrow, memberdecl, nameinfo,
884 ty, vk, ok);
John McCall6bb80172010-03-30 21:47:33 +0000885
886 if (hasQualOrFound) {
887 if (qual && qual->isDependent()) {
888 E->setValueDependent(true);
889 E->setTypeDependent(true);
890 }
891 E->HasQualifierOrFoundDecl = true;
892
893 MemberNameQualifier *NQ = E->getMemberQualifier();
894 NQ->NNS = qual;
895 NQ->Range = qualrange;
896 NQ->FoundDecl = founddecl;
897 }
898
899 if (targs) {
900 E->HasExplicitTemplateArgumentList = true;
John McCall096832c2010-08-19 23:49:38 +0000901 E->getExplicitTemplateArgs().initializeFrom(*targs);
John McCall6bb80172010-03-30 21:47:33 +0000902 }
903
904 return E;
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000905}
906
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000907const char *CastExpr::getCastKindName() const {
908 switch (getCastKind()) {
John McCalldaa8e4e2010-11-15 09:13:47 +0000909 case CK_Dependent:
910 return "Dependent";
John McCall2de56d12010-08-25 11:45:40 +0000911 case CK_BitCast:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000912 return "BitCast";
John McCall2de56d12010-08-25 11:45:40 +0000913 case CK_LValueBitCast:
Douglas Gregore39a3892010-07-13 23:17:26 +0000914 return "LValueBitCast";
John McCall0ae287a2010-12-01 04:43:34 +0000915 case CK_LValueToRValue:
916 return "LValueToRValue";
John McCallf6a16482010-12-04 03:47:34 +0000917 case CK_GetObjCProperty:
918 return "GetObjCProperty";
John McCall2de56d12010-08-25 11:45:40 +0000919 case CK_NoOp:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000920 return "NoOp";
John McCall2de56d12010-08-25 11:45:40 +0000921 case CK_BaseToDerived:
Anders Carlsson11de6de2009-11-12 16:43:42 +0000922 return "BaseToDerived";
John McCall2de56d12010-08-25 11:45:40 +0000923 case CK_DerivedToBase:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000924 return "DerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +0000925 case CK_UncheckedDerivedToBase:
John McCall23cba802010-03-30 23:58:03 +0000926 return "UncheckedDerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +0000927 case CK_Dynamic:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000928 return "Dynamic";
John McCall2de56d12010-08-25 11:45:40 +0000929 case CK_ToUnion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000930 return "ToUnion";
John McCall2de56d12010-08-25 11:45:40 +0000931 case CK_ArrayToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000932 return "ArrayToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +0000933 case CK_FunctionToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000934 return "FunctionToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +0000935 case CK_NullToMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000936 return "NullToMemberPointer";
John McCall404cd162010-11-13 01:35:44 +0000937 case CK_NullToPointer:
938 return "NullToPointer";
John McCall2de56d12010-08-25 11:45:40 +0000939 case CK_BaseToDerivedMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000940 return "BaseToDerivedMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +0000941 case CK_DerivedToBaseMemberPointer:
Anders Carlsson1a31a182009-10-30 00:46:35 +0000942 return "DerivedToBaseMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +0000943 case CK_UserDefinedConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000944 return "UserDefinedConversion";
John McCall2de56d12010-08-25 11:45:40 +0000945 case CK_ConstructorConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000946 return "ConstructorConversion";
John McCall2de56d12010-08-25 11:45:40 +0000947 case CK_IntegralToPointer:
Anders Carlsson7f9e6462009-09-15 04:48:33 +0000948 return "IntegralToPointer";
John McCall2de56d12010-08-25 11:45:40 +0000949 case CK_PointerToIntegral:
Anders Carlsson7f9e6462009-09-15 04:48:33 +0000950 return "PointerToIntegral";
John McCalldaa8e4e2010-11-15 09:13:47 +0000951 case CK_PointerToBoolean:
952 return "PointerToBoolean";
John McCall2de56d12010-08-25 11:45:40 +0000953 case CK_ToVoid:
Anders Carlssonebeaf202009-10-16 02:35:04 +0000954 return "ToVoid";
John McCall2de56d12010-08-25 11:45:40 +0000955 case CK_VectorSplat:
Anders Carlsson16a89042009-10-16 05:23:41 +0000956 return "VectorSplat";
John McCall2de56d12010-08-25 11:45:40 +0000957 case CK_IntegralCast:
Anders Carlsson82debc72009-10-18 18:12:03 +0000958 return "IntegralCast";
John McCalldaa8e4e2010-11-15 09:13:47 +0000959 case CK_IntegralToBoolean:
960 return "IntegralToBoolean";
John McCall2de56d12010-08-25 11:45:40 +0000961 case CK_IntegralToFloating:
Anders Carlsson82debc72009-10-18 18:12:03 +0000962 return "IntegralToFloating";
John McCall2de56d12010-08-25 11:45:40 +0000963 case CK_FloatingToIntegral:
Anders Carlsson82debc72009-10-18 18:12:03 +0000964 return "FloatingToIntegral";
John McCall2de56d12010-08-25 11:45:40 +0000965 case CK_FloatingCast:
Benjamin Kramerc6b29162009-10-18 19:02:15 +0000966 return "FloatingCast";
John McCalldaa8e4e2010-11-15 09:13:47 +0000967 case CK_FloatingToBoolean:
968 return "FloatingToBoolean";
John McCall2de56d12010-08-25 11:45:40 +0000969 case CK_MemberPointerToBoolean:
Anders Carlssonbc0e0782009-11-23 20:04:44 +0000970 return "MemberPointerToBoolean";
John McCall2de56d12010-08-25 11:45:40 +0000971 case CK_AnyPointerToObjCPointerCast:
Fariborz Jahanian4cbf9d42009-12-08 23:46:15 +0000972 return "AnyPointerToObjCPointerCast";
John McCall2de56d12010-08-25 11:45:40 +0000973 case CK_AnyPointerToBlockPointerCast:
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +0000974 return "AnyPointerToBlockPointerCast";
John McCall2de56d12010-08-25 11:45:40 +0000975 case CK_ObjCObjectLValueCast:
Douglas Gregor569c3162010-08-07 11:51:51 +0000976 return "ObjCObjectLValueCast";
John McCall2bb5d002010-11-13 09:02:35 +0000977 case CK_FloatingRealToComplex:
978 return "FloatingRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +0000979 case CK_FloatingComplexToReal:
980 return "FloatingComplexToReal";
981 case CK_FloatingComplexToBoolean:
982 return "FloatingComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +0000983 case CK_FloatingComplexCast:
984 return "FloatingComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +0000985 case CK_FloatingComplexToIntegralComplex:
986 return "FloatingComplexToIntegralComplex";
John McCall2bb5d002010-11-13 09:02:35 +0000987 case CK_IntegralRealToComplex:
988 return "IntegralRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +0000989 case CK_IntegralComplexToReal:
990 return "IntegralComplexToReal";
991 case CK_IntegralComplexToBoolean:
992 return "IntegralComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +0000993 case CK_IntegralComplexCast:
994 return "IntegralComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +0000995 case CK_IntegralComplexToFloatingComplex:
996 return "IntegralComplexToFloatingComplex";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000997 }
Mike Stump1eb44332009-09-09 15:08:12 +0000998
John McCall2bb5d002010-11-13 09:02:35 +0000999 llvm_unreachable("Unhandled cast kind!");
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001000 return 0;
1001}
1002
Douglas Gregor6eef5192009-12-14 19:27:10 +00001003Expr *CastExpr::getSubExprAsWritten() {
1004 Expr *SubExpr = 0;
1005 CastExpr *E = this;
1006 do {
1007 SubExpr = E->getSubExpr();
Sean Huntc3021132010-05-05 15:23:54 +00001008
Douglas Gregor6eef5192009-12-14 19:27:10 +00001009 // Skip any temporary bindings; they're implicit.
1010 if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
1011 SubExpr = Binder->getSubExpr();
Sean Huntc3021132010-05-05 15:23:54 +00001012
Douglas Gregor6eef5192009-12-14 19:27:10 +00001013 // Conversions by constructor and conversion functions have a
1014 // subexpression describing the call; strip it off.
John McCall2de56d12010-08-25 11:45:40 +00001015 if (E->getCastKind() == CK_ConstructorConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001016 SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0);
John McCall2de56d12010-08-25 11:45:40 +00001017 else if (E->getCastKind() == CK_UserDefinedConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001018 SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument();
Sean Huntc3021132010-05-05 15:23:54 +00001019
Douglas Gregor6eef5192009-12-14 19:27:10 +00001020 // If the subexpression we're left with is an implicit cast, look
1021 // through that, too.
Sean Huntc3021132010-05-05 15:23:54 +00001022 } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
1023
Douglas Gregor6eef5192009-12-14 19:27:10 +00001024 return SubExpr;
1025}
1026
John McCallf871d0c2010-08-07 06:22:56 +00001027CXXBaseSpecifier **CastExpr::path_buffer() {
1028 switch (getStmtClass()) {
1029#define ABSTRACT_STMT(x)
1030#define CASTEXPR(Type, Base) \
1031 case Stmt::Type##Class: \
1032 return reinterpret_cast<CXXBaseSpecifier**>(static_cast<Type*>(this)+1);
1033#define STMT(Type, Base)
1034#include "clang/AST/StmtNodes.inc"
1035 default:
1036 llvm_unreachable("non-cast expressions not possible here");
1037 return 0;
1038 }
1039}
1040
1041void CastExpr::setCastPath(const CXXCastPath &Path) {
1042 assert(Path.size() == path_size());
1043 memcpy(path_buffer(), Path.data(), Path.size() * sizeof(CXXBaseSpecifier*));
1044}
1045
1046ImplicitCastExpr *ImplicitCastExpr::Create(ASTContext &C, QualType T,
1047 CastKind Kind, Expr *Operand,
1048 const CXXCastPath *BasePath,
John McCall5baba9d2010-08-25 10:28:54 +00001049 ExprValueKind VK) {
John McCallf871d0c2010-08-07 06:22:56 +00001050 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1051 void *Buffer =
1052 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1053 ImplicitCastExpr *E =
John McCall5baba9d2010-08-25 10:28:54 +00001054 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
John McCallf871d0c2010-08-07 06:22:56 +00001055 if (PathSize) E->setCastPath(*BasePath);
1056 return E;
1057}
1058
1059ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(ASTContext &C,
1060 unsigned PathSize) {
1061 void *Buffer =
1062 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1063 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1064}
1065
1066
1067CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00001068 ExprValueKind VK, CastKind K, Expr *Op,
John McCallf871d0c2010-08-07 06:22:56 +00001069 const CXXCastPath *BasePath,
1070 TypeSourceInfo *WrittenTy,
1071 SourceLocation L, SourceLocation R) {
1072 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1073 void *Buffer =
1074 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1075 CStyleCastExpr *E =
John McCallf89e55a2010-11-18 06:31:45 +00001076 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
John McCallf871d0c2010-08-07 06:22:56 +00001077 if (PathSize) E->setCastPath(*BasePath);
1078 return E;
1079}
1080
1081CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
1082 void *Buffer =
1083 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1084 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
1085}
1086
Reid Spencer5f016e22007-07-11 17:01:13 +00001087/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
1088/// corresponds to, e.g. "<<=".
1089const char *BinaryOperator::getOpcodeStr(Opcode Op) {
1090 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +00001091 case BO_PtrMemD: return ".*";
1092 case BO_PtrMemI: return "->*";
1093 case BO_Mul: return "*";
1094 case BO_Div: return "/";
1095 case BO_Rem: return "%";
1096 case BO_Add: return "+";
1097 case BO_Sub: return "-";
1098 case BO_Shl: return "<<";
1099 case BO_Shr: return ">>";
1100 case BO_LT: return "<";
1101 case BO_GT: return ">";
1102 case BO_LE: return "<=";
1103 case BO_GE: return ">=";
1104 case BO_EQ: return "==";
1105 case BO_NE: return "!=";
1106 case BO_And: return "&";
1107 case BO_Xor: return "^";
1108 case BO_Or: return "|";
1109 case BO_LAnd: return "&&";
1110 case BO_LOr: return "||";
1111 case BO_Assign: return "=";
1112 case BO_MulAssign: return "*=";
1113 case BO_DivAssign: return "/=";
1114 case BO_RemAssign: return "%=";
1115 case BO_AddAssign: return "+=";
1116 case BO_SubAssign: return "-=";
1117 case BO_ShlAssign: return "<<=";
1118 case BO_ShrAssign: return ">>=";
1119 case BO_AndAssign: return "&=";
1120 case BO_XorAssign: return "^=";
1121 case BO_OrAssign: return "|=";
1122 case BO_Comma: return ",";
Reid Spencer5f016e22007-07-11 17:01:13 +00001123 }
Douglas Gregorbaf53482009-03-12 22:51:37 +00001124
1125 return "";
Reid Spencer5f016e22007-07-11 17:01:13 +00001126}
1127
John McCall2de56d12010-08-25 11:45:40 +00001128BinaryOperatorKind
Douglas Gregor063daf62009-03-13 18:40:31 +00001129BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
1130 switch (OO) {
Chris Lattnerb7beee92009-03-22 00:10:22 +00001131 default: assert(false && "Not an overloadable binary operator");
John McCall2de56d12010-08-25 11:45:40 +00001132 case OO_Plus: return BO_Add;
1133 case OO_Minus: return BO_Sub;
1134 case OO_Star: return BO_Mul;
1135 case OO_Slash: return BO_Div;
1136 case OO_Percent: return BO_Rem;
1137 case OO_Caret: return BO_Xor;
1138 case OO_Amp: return BO_And;
1139 case OO_Pipe: return BO_Or;
1140 case OO_Equal: return BO_Assign;
1141 case OO_Less: return BO_LT;
1142 case OO_Greater: return BO_GT;
1143 case OO_PlusEqual: return BO_AddAssign;
1144 case OO_MinusEqual: return BO_SubAssign;
1145 case OO_StarEqual: return BO_MulAssign;
1146 case OO_SlashEqual: return BO_DivAssign;
1147 case OO_PercentEqual: return BO_RemAssign;
1148 case OO_CaretEqual: return BO_XorAssign;
1149 case OO_AmpEqual: return BO_AndAssign;
1150 case OO_PipeEqual: return BO_OrAssign;
1151 case OO_LessLess: return BO_Shl;
1152 case OO_GreaterGreater: return BO_Shr;
1153 case OO_LessLessEqual: return BO_ShlAssign;
1154 case OO_GreaterGreaterEqual: return BO_ShrAssign;
1155 case OO_EqualEqual: return BO_EQ;
1156 case OO_ExclaimEqual: return BO_NE;
1157 case OO_LessEqual: return BO_LE;
1158 case OO_GreaterEqual: return BO_GE;
1159 case OO_AmpAmp: return BO_LAnd;
1160 case OO_PipePipe: return BO_LOr;
1161 case OO_Comma: return BO_Comma;
1162 case OO_ArrowStar: return BO_PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +00001163 }
1164}
1165
1166OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
1167 static const OverloadedOperatorKind OverOps[] = {
1168 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
1169 OO_Star, OO_Slash, OO_Percent,
1170 OO_Plus, OO_Minus,
1171 OO_LessLess, OO_GreaterGreater,
1172 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
1173 OO_EqualEqual, OO_ExclaimEqual,
1174 OO_Amp,
1175 OO_Caret,
1176 OO_Pipe,
1177 OO_AmpAmp,
1178 OO_PipePipe,
1179 OO_Equal, OO_StarEqual,
1180 OO_SlashEqual, OO_PercentEqual,
1181 OO_PlusEqual, OO_MinusEqual,
1182 OO_LessLessEqual, OO_GreaterGreaterEqual,
1183 OO_AmpEqual, OO_CaretEqual,
1184 OO_PipeEqual,
1185 OO_Comma
1186 };
1187 return OverOps[Opc];
1188}
1189
Ted Kremenek709210f2010-04-13 23:39:13 +00001190InitListExpr::InitListExpr(ASTContext &C, SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +00001191 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +00001192 SourceLocation rbraceloc)
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001193 : Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary, false, false,
1194 false),
Ted Kremenek709210f2010-04-13 23:39:13 +00001195 InitExprs(C, numInits),
Mike Stump1eb44332009-09-09 15:08:12 +00001196 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0),
Sean Huntc3021132010-05-05 15:23:54 +00001197 UnionFieldInit(0), HadArrayRangeDesignator(false)
1198{
Ted Kremenekba7bc552010-02-19 01:50:18 +00001199 for (unsigned I = 0; I != numInits; ++I) {
1200 if (initExprs[I]->isTypeDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001201 ExprBits.TypeDependent = true;
Ted Kremenekba7bc552010-02-19 01:50:18 +00001202 if (initExprs[I]->isValueDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001203 ExprBits.ValueDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001204 if (initExprs[I]->containsUnexpandedParameterPack())
1205 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor73460a32009-11-19 23:25:22 +00001206 }
Sean Huntc3021132010-05-05 15:23:54 +00001207
Ted Kremenek709210f2010-04-13 23:39:13 +00001208 InitExprs.insert(C, InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001209}
Reid Spencer5f016e22007-07-11 17:01:13 +00001210
Ted Kremenek709210f2010-04-13 23:39:13 +00001211void InitListExpr::reserveInits(ASTContext &C, unsigned NumInits) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001212 if (NumInits > InitExprs.size())
Ted Kremenek709210f2010-04-13 23:39:13 +00001213 InitExprs.reserve(C, NumInits);
Douglas Gregorfa219202009-03-20 23:58:33 +00001214}
1215
Ted Kremenek709210f2010-04-13 23:39:13 +00001216void InitListExpr::resizeInits(ASTContext &C, unsigned NumInits) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001217 InitExprs.resize(C, NumInits, 0);
Douglas Gregor4c678342009-01-28 21:54:33 +00001218}
1219
Ted Kremenek709210f2010-04-13 23:39:13 +00001220Expr *InitListExpr::updateInit(ASTContext &C, unsigned Init, Expr *expr) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001221 if (Init >= InitExprs.size()) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001222 InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, 0);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001223 InitExprs.back() = expr;
1224 return 0;
Douglas Gregor4c678342009-01-28 21:54:33 +00001225 }
Mike Stump1eb44332009-09-09 15:08:12 +00001226
Douglas Gregor4c678342009-01-28 21:54:33 +00001227 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
1228 InitExprs[Init] = expr;
1229 return Result;
1230}
1231
Ted Kremenekc4ba51f2010-11-09 02:11:40 +00001232SourceRange InitListExpr::getSourceRange() const {
1233 if (SyntacticForm)
1234 return SyntacticForm->getSourceRange();
1235 SourceLocation Beg = LBraceLoc, End = RBraceLoc;
1236 if (Beg.isInvalid()) {
1237 // Find the first non-null initializer.
1238 for (InitExprsTy::const_iterator I = InitExprs.begin(),
1239 E = InitExprs.end();
1240 I != E; ++I) {
1241 if (Stmt *S = *I) {
1242 Beg = S->getLocStart();
1243 break;
1244 }
1245 }
1246 }
1247 if (End.isInvalid()) {
1248 // Find the first non-null initializer from the end.
1249 for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(),
1250 E = InitExprs.rend();
1251 I != E; ++I) {
1252 if (Stmt *S = *I) {
1253 End = S->getSourceRange().getEnd();
1254 break;
1255 }
1256 }
1257 }
1258 return SourceRange(Beg, End);
1259}
1260
Steve Naroffbfdcae62008-09-04 15:31:07 +00001261/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +00001262///
1263const FunctionType *BlockExpr::getFunctionType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +00001264 return getType()->getAs<BlockPointerType>()->
John McCall183700f2009-09-21 23:43:11 +00001265 getPointeeType()->getAs<FunctionType>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00001266}
1267
Mike Stump1eb44332009-09-09 15:08:12 +00001268SourceLocation BlockExpr::getCaretLocation() const {
1269 return TheBlock->getCaretLocation();
Steve Naroff56ee6892008-10-08 17:01:13 +00001270}
Mike Stump1eb44332009-09-09 15:08:12 +00001271const Stmt *BlockExpr::getBody() const {
Douglas Gregor72971342009-04-18 00:02:19 +00001272 return TheBlock->getBody();
1273}
Mike Stump1eb44332009-09-09 15:08:12 +00001274Stmt *BlockExpr::getBody() {
1275 return TheBlock->getBody();
Douglas Gregor72971342009-04-18 00:02:19 +00001276}
Steve Naroff56ee6892008-10-08 17:01:13 +00001277
1278
Reid Spencer5f016e22007-07-11 17:01:13 +00001279//===----------------------------------------------------------------------===//
1280// Generic Expression Routines
1281//===----------------------------------------------------------------------===//
1282
Chris Lattner026dc962009-02-14 07:37:35 +00001283/// isUnusedResultAWarning - Return true if this immediate expression should
1284/// be warned about if the result is unused. If so, fill in Loc and Ranges
1285/// with location to warn on and the source range[s] to report with the
1286/// warning.
1287bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
Mike Stumpdf317bf2009-11-03 23:25:48 +00001288 SourceRange &R2, ASTContext &Ctx) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +00001289 // Don't warn if the expr is type dependent. The type could end up
1290 // instantiating to void.
1291 if (isTypeDependent())
1292 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001293
Reid Spencer5f016e22007-07-11 17:01:13 +00001294 switch (getStmtClass()) {
1295 default:
John McCall0faede62010-03-12 07:11:26 +00001296 if (getType()->isVoidType())
1297 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001298 Loc = getExprLoc();
1299 R1 = getSourceRange();
1300 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001301 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001302 return cast<ParenExpr>(this)->getSubExpr()->
Mike Stumpdf317bf2009-11-03 23:25:48 +00001303 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001304 case UnaryOperatorClass: {
1305 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001306
Reid Spencer5f016e22007-07-11 17:01:13 +00001307 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001308 default: break;
John McCall2de56d12010-08-25 11:45:40 +00001309 case UO_PostInc:
1310 case UO_PostDec:
1311 case UO_PreInc:
1312 case UO_PreDec: // ++/--
Chris Lattner026dc962009-02-14 07:37:35 +00001313 return false; // Not a warning.
John McCall2de56d12010-08-25 11:45:40 +00001314 case UO_Deref:
Reid Spencer5f016e22007-07-11 17:01:13 +00001315 // Dereferencing a volatile pointer is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001316 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001317 return false;
1318 break;
John McCall2de56d12010-08-25 11:45:40 +00001319 case UO_Real:
1320 case UO_Imag:
Reid Spencer5f016e22007-07-11 17:01:13 +00001321 // accessing a piece of a volatile complex is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001322 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
1323 .isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001324 return false;
1325 break;
John McCall2de56d12010-08-25 11:45:40 +00001326 case UO_Extension:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001327 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001328 }
Chris Lattner026dc962009-02-14 07:37:35 +00001329 Loc = UO->getOperatorLoc();
1330 R1 = UO->getSubExpr()->getSourceRange();
1331 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001332 }
Chris Lattnere7716e62007-12-01 06:07:34 +00001333 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001334 const BinaryOperator *BO = cast<BinaryOperator>(this);
Ted Kremenekc46a2462010-04-07 18:49:21 +00001335 switch (BO->getOpcode()) {
1336 default:
1337 break;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001338 // Consider the RHS of comma for side effects. LHS was checked by
1339 // Sema::CheckCommaOperands.
John McCall2de56d12010-08-25 11:45:40 +00001340 case BO_Comma:
Ted Kremenekc46a2462010-04-07 18:49:21 +00001341 // ((foo = <blah>), 0) is an idiom for hiding the result (and
1342 // lvalue-ness) of an assignment written in a macro.
1343 if (IntegerLiteral *IE =
1344 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
1345 if (IE->getValue() == 0)
1346 return false;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001347 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1348 // Consider '||', '&&' to have side effects if the LHS or RHS does.
John McCall2de56d12010-08-25 11:45:40 +00001349 case BO_LAnd:
1350 case BO_LOr:
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001351 if (!BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx) ||
1352 !BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1353 return false;
1354 break;
John McCallbf0ee352010-02-16 04:10:53 +00001355 }
Chris Lattner026dc962009-02-14 07:37:35 +00001356 if (BO->isAssignmentOp())
1357 return false;
1358 Loc = BO->getOperatorLoc();
1359 R1 = BO->getLHS()->getSourceRange();
1360 R2 = BO->getRHS()->getSourceRange();
1361 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +00001362 }
Chris Lattnereb14fe82007-08-25 02:00:02 +00001363 case CompoundAssignOperatorClass:
Douglas Gregorc6dfe192010-05-08 22:41:50 +00001364 case VAArgExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001365 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001366
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001367 case ConditionalOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001368 // The condition must be evaluated, but if either the LHS or RHS is a
1369 // warning, warn about them.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001370 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001371 if (Exp->getLHS() &&
Mike Stumpdf317bf2009-11-03 23:25:48 +00001372 Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
Chris Lattner026dc962009-02-14 07:37:35 +00001373 return true;
Mike Stumpdf317bf2009-11-03 23:25:48 +00001374 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001375 }
1376
Reid Spencer5f016e22007-07-11 17:01:13 +00001377 case MemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001378 // If the base pointer or element is to a volatile pointer/field, accessing
1379 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001380 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001381 return false;
1382 Loc = cast<MemberExpr>(this)->getMemberLoc();
1383 R1 = SourceRange(Loc, Loc);
1384 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
1385 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001386
Reid Spencer5f016e22007-07-11 17:01:13 +00001387 case ArraySubscriptExprClass:
1388 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +00001389 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001390 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001391 return false;
1392 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
1393 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
1394 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
1395 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +00001396
Reid Spencer5f016e22007-07-11 17:01:13 +00001397 case CallExprClass:
Eli Friedman852871a2009-04-29 16:35:53 +00001398 case CXXOperatorCallExprClass:
1399 case CXXMemberCallExprClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001400 // If this is a direct call, get the callee.
1401 const CallExpr *CE = cast<CallExpr>(this);
Nuno Lopesd20254f2009-12-20 23:11:08 +00001402 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001403 // If the callee has attribute pure, const, or warn_unused_result, warn
1404 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001405 //
1406 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
1407 // updated to match for QoI.
1408 if (FD->getAttr<WarnUnusedResultAttr>() ||
1409 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
1410 Loc = CE->getCallee()->getLocStart();
1411 R1 = CE->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001412
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001413 if (unsigned NumArgs = CE->getNumArgs())
1414 R2 = SourceRange(CE->getArg(0)->getLocStart(),
1415 CE->getArg(NumArgs-1)->getLocEnd());
1416 return true;
1417 }
Chris Lattner026dc962009-02-14 07:37:35 +00001418 }
1419 return false;
1420 }
Anders Carlsson58beed92009-11-17 17:11:23 +00001421
1422 case CXXTemporaryObjectExprClass:
1423 case CXXConstructExprClass:
1424 return false;
1425
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001426 case ObjCMessageExprClass: {
1427 const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
1428 const ObjCMethodDecl *MD = ME->getMethodDecl();
1429 if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
1430 Loc = getExprLoc();
1431 return true;
1432 }
Chris Lattner026dc962009-02-14 07:37:35 +00001433 return false;
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001434 }
Mike Stump1eb44332009-09-09 15:08:12 +00001435
John McCall12f78a62010-12-02 01:19:52 +00001436 case ObjCPropertyRefExprClass:
Chris Lattner5e94a0d2009-08-16 16:51:50 +00001437 Loc = getExprLoc();
1438 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +00001439 return true;
John McCall12f78a62010-12-02 01:19:52 +00001440
Chris Lattner611b2ec2008-07-26 19:51:01 +00001441 case StmtExprClass: {
1442 // Statement exprs don't logically have side effects themselves, but are
1443 // sometimes used in macros in ways that give them a type that is unused.
1444 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
1445 // however, if the result of the stmt expr is dead, we don't want to emit a
1446 // warning.
1447 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001448 if (!CS->body_empty()) {
Chris Lattner611b2ec2008-07-26 19:51:01 +00001449 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Mike Stumpdf317bf2009-11-03 23:25:48 +00001450 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001451 if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back()))
1452 if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt()))
1453 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1454 }
Mike Stump1eb44332009-09-09 15:08:12 +00001455
John McCall0faede62010-03-12 07:11:26 +00001456 if (getType()->isVoidType())
1457 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001458 Loc = cast<StmtExpr>(this)->getLParenLoc();
1459 R1 = getSourceRange();
1460 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +00001461 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001462 case CStyleCastExprClass:
Chris Lattnerfb846642009-07-28 18:25:28 +00001463 // If this is an explicit cast to void, allow it. People do this when they
1464 // think they know what they're doing :).
Chris Lattner026dc962009-02-14 07:37:35 +00001465 if (getType()->isVoidType())
Chris Lattnerfb846642009-07-28 18:25:28 +00001466 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001467 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
1468 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
1469 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00001470 case CXXFunctionalCastExprClass: {
John McCall0faede62010-03-12 07:11:26 +00001471 if (getType()->isVoidType())
1472 return false;
Anders Carlsson58beed92009-11-17 17:11:23 +00001473 const CastExpr *CE = cast<CastExpr>(this);
Sean Huntc3021132010-05-05 15:23:54 +00001474
Anders Carlsson58beed92009-11-17 17:11:23 +00001475 // If this is a cast to void or a constructor conversion, check the operand.
1476 // Otherwise, the result of the cast is unused.
John McCall2de56d12010-08-25 11:45:40 +00001477 if (CE->getCastKind() == CK_ToVoid ||
1478 CE->getCastKind() == CK_ConstructorConversion)
Mike Stumpdf317bf2009-11-03 23:25:48 +00001479 return (cast<CastExpr>(this)->getSubExpr()
1480 ->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Chris Lattner026dc962009-02-14 07:37:35 +00001481 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
1482 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
1483 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00001484 }
Mike Stump1eb44332009-09-09 15:08:12 +00001485
Eli Friedman4be1f472008-05-19 21:24:43 +00001486 case ImplicitCastExprClass:
1487 // Check the operand, since implicit casts are inserted by Sema
Mike Stumpdf317bf2009-11-03 23:25:48 +00001488 return (cast<ImplicitCastExpr>(this)
1489 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Eli Friedman4be1f472008-05-19 21:24:43 +00001490
Chris Lattner04421082008-04-08 04:40:51 +00001491 case CXXDefaultArgExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001492 return (cast<CXXDefaultArgExpr>(this)
1493 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001494
1495 case CXXNewExprClass:
1496 // FIXME: In theory, there might be new expressions that don't have side
1497 // effects (e.g. a placement new with an uninitialized POD).
1498 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001499 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +00001500 case CXXBindTemporaryExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001501 return (cast<CXXBindTemporaryExpr>(this)
1502 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
John McCall4765fa02010-12-06 08:20:24 +00001503 case ExprWithCleanupsClass:
1504 return (cast<ExprWithCleanups>(this)
Mike Stumpdf317bf2009-11-03 23:25:48 +00001505 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001506 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001507}
1508
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001509/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian7f4f86a2009-09-08 23:38:54 +00001510/// returns true, if it is; false otherwise.
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001511bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001512 switch (getStmtClass()) {
1513 default:
1514 return false;
1515 case ObjCIvarRefExprClass:
1516 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +00001517 case Expr::UnaryOperatorClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001518 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001519 case ParenExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001520 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001521 case ImplicitCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001522 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +00001523 case CStyleCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001524 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregora2813ce2009-10-23 18:54:35 +00001525 case DeclRefExprClass: {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001526 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001527 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1528 if (VD->hasGlobalStorage())
1529 return true;
1530 QualType T = VD->getType();
Fariborz Jahanian59a53fa2009-09-16 18:09:18 +00001531 // dereferencing to a pointer is always a gc'able candidate,
1532 // unless it is __weak.
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001533 return T->isPointerType() &&
John McCall0953e762009-09-24 19:53:00 +00001534 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001535 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001536 return false;
1537 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001538 case MemberExprClass: {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001539 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001540 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001541 }
1542 case ArraySubscriptExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001543 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001544 }
1545}
Sebastian Redl369e51f2010-09-10 20:55:33 +00001546
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00001547bool Expr::isBoundMemberFunction(ASTContext &Ctx) const {
1548 if (isTypeDependent())
1549 return false;
John McCall7eb0a9e2010-11-24 05:12:34 +00001550 return ClassifyLValue(Ctx) == Expr::LV_MemberFunction;
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00001551}
1552
Sebastian Redl369e51f2010-09-10 20:55:33 +00001553static Expr::CanThrowResult MergeCanThrow(Expr::CanThrowResult CT1,
1554 Expr::CanThrowResult CT2) {
1555 // CanThrowResult constants are ordered so that the maximum is the correct
1556 // merge result.
1557 return CT1 > CT2 ? CT1 : CT2;
1558}
1559
1560static Expr::CanThrowResult CanSubExprsThrow(ASTContext &C, const Expr *CE) {
1561 Expr *E = const_cast<Expr*>(CE);
1562 Expr::CanThrowResult R = Expr::CT_Cannot;
1563 for (Expr::child_iterator I = E->child_begin(), IE = E->child_end();
1564 I != IE && R != Expr::CT_Can; ++I) {
1565 R = MergeCanThrow(R, cast<Expr>(*I)->CanThrow(C));
1566 }
1567 return R;
1568}
1569
1570static Expr::CanThrowResult CanCalleeThrow(const Decl *D,
1571 bool NullThrows = true) {
1572 if (!D)
1573 return NullThrows ? Expr::CT_Can : Expr::CT_Cannot;
1574
1575 // See if we can get a function type from the decl somehow.
1576 const ValueDecl *VD = dyn_cast<ValueDecl>(D);
1577 if (!VD) // If we have no clue what we're calling, assume the worst.
1578 return Expr::CT_Can;
1579
Sebastian Redl5221d8f2010-09-10 22:34:40 +00001580 // As an extension, we assume that __attribute__((nothrow)) functions don't
1581 // throw.
1582 if (isa<FunctionDecl>(D) && D->hasAttr<NoThrowAttr>())
1583 return Expr::CT_Cannot;
1584
Sebastian Redl369e51f2010-09-10 20:55:33 +00001585 QualType T = VD->getType();
1586 const FunctionProtoType *FT;
1587 if ((FT = T->getAs<FunctionProtoType>())) {
1588 } else if (const PointerType *PT = T->getAs<PointerType>())
1589 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
1590 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
1591 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
1592 else if (const MemberPointerType *MT = T->getAs<MemberPointerType>())
1593 FT = MT->getPointeeType()->getAs<FunctionProtoType>();
1594 else if (const BlockPointerType *BT = T->getAs<BlockPointerType>())
1595 FT = BT->getPointeeType()->getAs<FunctionProtoType>();
1596
1597 if (!FT)
1598 return Expr::CT_Can;
1599
1600 return FT->hasEmptyExceptionSpec() ? Expr::CT_Cannot : Expr::CT_Can;
1601}
1602
1603static Expr::CanThrowResult CanDynamicCastThrow(const CXXDynamicCastExpr *DC) {
1604 if (DC->isTypeDependent())
1605 return Expr::CT_Dependent;
1606
Sebastian Redl295995c2010-09-10 20:55:47 +00001607 if (!DC->getTypeAsWritten()->isReferenceType())
1608 return Expr::CT_Cannot;
1609
Sebastian Redl369e51f2010-09-10 20:55:33 +00001610 return DC->getCastKind() == clang::CK_Dynamic? Expr::CT_Can : Expr::CT_Cannot;
1611}
1612
1613static Expr::CanThrowResult CanTypeidThrow(ASTContext &C,
1614 const CXXTypeidExpr *DC) {
1615 if (DC->isTypeOperand())
1616 return Expr::CT_Cannot;
1617
1618 Expr *Op = DC->getExprOperand();
1619 if (Op->isTypeDependent())
1620 return Expr::CT_Dependent;
1621
1622 const RecordType *RT = Op->getType()->getAs<RecordType>();
1623 if (!RT)
1624 return Expr::CT_Cannot;
1625
1626 if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic())
1627 return Expr::CT_Cannot;
1628
1629 if (Op->Classify(C).isPRValue())
1630 return Expr::CT_Cannot;
1631
1632 return Expr::CT_Can;
1633}
1634
1635Expr::CanThrowResult Expr::CanThrow(ASTContext &C) const {
1636 // C++ [expr.unary.noexcept]p3:
1637 // [Can throw] if in a potentially-evaluated context the expression would
1638 // contain:
1639 switch (getStmtClass()) {
1640 case CXXThrowExprClass:
1641 // - a potentially evaluated throw-expression
1642 return CT_Can;
1643
1644 case CXXDynamicCastExprClass: {
1645 // - a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
1646 // where T is a reference type, that requires a run-time check
1647 CanThrowResult CT = CanDynamicCastThrow(cast<CXXDynamicCastExpr>(this));
1648 if (CT == CT_Can)
1649 return CT;
1650 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1651 }
1652
1653 case CXXTypeidExprClass:
1654 // - a potentially evaluated typeid expression applied to a glvalue
1655 // expression whose type is a polymorphic class type
1656 return CanTypeidThrow(C, cast<CXXTypeidExpr>(this));
1657
1658 // - a potentially evaluated call to a function, member function, function
1659 // pointer, or member function pointer that does not have a non-throwing
1660 // exception-specification
1661 case CallExprClass:
1662 case CXXOperatorCallExprClass:
1663 case CXXMemberCallExprClass: {
1664 CanThrowResult CT = CanCalleeThrow(cast<CallExpr>(this)->getCalleeDecl());
1665 if (CT == CT_Can)
1666 return CT;
1667 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1668 }
1669
Sebastian Redl295995c2010-09-10 20:55:47 +00001670 case CXXConstructExprClass:
1671 case CXXTemporaryObjectExprClass: {
Sebastian Redl369e51f2010-09-10 20:55:33 +00001672 CanThrowResult CT = CanCalleeThrow(
1673 cast<CXXConstructExpr>(this)->getConstructor());
1674 if (CT == CT_Can)
1675 return CT;
1676 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1677 }
1678
1679 case CXXNewExprClass: {
1680 CanThrowResult CT = MergeCanThrow(
1681 CanCalleeThrow(cast<CXXNewExpr>(this)->getOperatorNew()),
1682 CanCalleeThrow(cast<CXXNewExpr>(this)->getConstructor(),
1683 /*NullThrows*/false));
1684 if (CT == CT_Can)
1685 return CT;
1686 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1687 }
1688
1689 case CXXDeleteExprClass: {
Sebastian Redl369e51f2010-09-10 20:55:33 +00001690 CanThrowResult CT = CanCalleeThrow(
1691 cast<CXXDeleteExpr>(this)->getOperatorDelete());
1692 if (CT == CT_Can)
1693 return CT;
Sebastian Redl0b34cf72010-09-10 23:27:10 +00001694 const Expr *Arg = cast<CXXDeleteExpr>(this)->getArgument();
1695 // Unwrap exactly one implicit cast, which converts all pointers to void*.
1696 if (const ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
1697 Arg = Cast->getSubExpr();
1698 if (const PointerType *PT = Arg->getType()->getAs<PointerType>()) {
1699 if (const RecordType *RT = PT->getPointeeType()->getAs<RecordType>()) {
1700 CanThrowResult CT2 = CanCalleeThrow(
1701 cast<CXXRecordDecl>(RT->getDecl())->getDestructor());
1702 if (CT2 == CT_Can)
1703 return CT2;
1704 CT = MergeCanThrow(CT, CT2);
1705 }
1706 }
1707 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1708 }
1709
1710 case CXXBindTemporaryExprClass: {
1711 // The bound temporary has to be destroyed again, which might throw.
1712 CanThrowResult CT = CanCalleeThrow(
1713 cast<CXXBindTemporaryExpr>(this)->getTemporary()->getDestructor());
1714 if (CT == CT_Can)
1715 return CT;
Sebastian Redl369e51f2010-09-10 20:55:33 +00001716 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1717 }
1718
1719 // ObjC message sends are like function calls, but never have exception
1720 // specs.
1721 case ObjCMessageExprClass:
1722 case ObjCPropertyRefExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00001723 return CT_Can;
1724
1725 // Many other things have subexpressions, so we have to test those.
1726 // Some are simple:
1727 case ParenExprClass:
1728 case MemberExprClass:
1729 case CXXReinterpretCastExprClass:
1730 case CXXConstCastExprClass:
1731 case ConditionalOperatorClass:
1732 case CompoundLiteralExprClass:
1733 case ExtVectorElementExprClass:
1734 case InitListExprClass:
1735 case DesignatedInitExprClass:
1736 case ParenListExprClass:
1737 case VAArgExprClass:
1738 case CXXDefaultArgExprClass:
John McCall4765fa02010-12-06 08:20:24 +00001739 case ExprWithCleanupsClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00001740 case ObjCIvarRefExprClass:
1741 case ObjCIsaExprClass:
1742 case ShuffleVectorExprClass:
1743 return CanSubExprsThrow(C, this);
1744
1745 // Some might be dependent for other reasons.
1746 case UnaryOperatorClass:
1747 case ArraySubscriptExprClass:
1748 case ImplicitCastExprClass:
1749 case CStyleCastExprClass:
1750 case CXXStaticCastExprClass:
1751 case CXXFunctionalCastExprClass:
1752 case BinaryOperatorClass:
1753 case CompoundAssignOperatorClass: {
1754 CanThrowResult CT = isTypeDependent() ? CT_Dependent : CT_Cannot;
1755 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1756 }
1757
1758 // FIXME: We should handle StmtExpr, but that opens a MASSIVE can of worms.
1759 case StmtExprClass:
1760 return CT_Can;
1761
1762 case ChooseExprClass:
1763 if (isTypeDependent() || isValueDependent())
1764 return CT_Dependent;
1765 return cast<ChooseExpr>(this)->getChosenSubExpr(C)->CanThrow(C);
1766
1767 // Some expressions are always dependent.
1768 case DependentScopeDeclRefExprClass:
1769 case CXXUnresolvedConstructExprClass:
1770 case CXXDependentScopeMemberExprClass:
1771 return CT_Dependent;
1772
1773 default:
1774 // All other expressions don't have subexpressions, or else they are
1775 // unevaluated.
1776 return CT_Cannot;
1777 }
1778}
1779
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001780Expr* Expr::IgnoreParens() {
1781 Expr* E = this;
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00001782 while (true) {
1783 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
1784 E = P->getSubExpr();
1785 continue;
1786 }
1787 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
1788 if (P->getOpcode() == UO_Extension) {
1789 E = P->getSubExpr();
1790 continue;
1791 }
1792 }
1793 return E;
1794 }
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001795}
1796
Chris Lattner56f34942008-02-13 01:02:39 +00001797/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
1798/// or CastExprs or ImplicitCastExprs, returning their operand.
1799Expr *Expr::IgnoreParenCasts() {
1800 Expr *E = this;
1801 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00001802 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00001803 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00001804 continue;
1805 }
1806 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00001807 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00001808 continue;
1809 }
1810 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
1811 if (P->getOpcode() == UO_Extension) {
1812 E = P->getSubExpr();
1813 continue;
1814 }
1815 }
1816 return E;
Chris Lattner56f34942008-02-13 01:02:39 +00001817 }
1818}
1819
John McCall9c5d70c2010-12-04 08:24:19 +00001820/// IgnoreParenLValueCasts - Ignore parentheses and lvalue-to-rvalue
1821/// casts. This is intended purely as a temporary workaround for code
1822/// that hasn't yet been rewritten to do the right thing about those
1823/// casts, and may disappear along with the last internal use.
John McCallf6a16482010-12-04 03:47:34 +00001824Expr *Expr::IgnoreParenLValueCasts() {
1825 Expr *E = this;
John McCall9c5d70c2010-12-04 08:24:19 +00001826 while (true) {
John McCallf6a16482010-12-04 03:47:34 +00001827 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
1828 E = P->getSubExpr();
1829 continue;
John McCall9c5d70c2010-12-04 08:24:19 +00001830 } else if (CastExpr *P = dyn_cast<CastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00001831 if (P->getCastKind() == CK_LValueToRValue) {
1832 E = P->getSubExpr();
1833 continue;
1834 }
John McCall9c5d70c2010-12-04 08:24:19 +00001835 } else if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
1836 if (P->getOpcode() == UO_Extension) {
1837 E = P->getSubExpr();
1838 continue;
1839 }
John McCallf6a16482010-12-04 03:47:34 +00001840 }
1841 break;
1842 }
1843 return E;
1844}
1845
John McCall2fc46bf2010-05-05 22:59:52 +00001846Expr *Expr::IgnoreParenImpCasts() {
1847 Expr *E = this;
1848 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00001849 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00001850 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00001851 continue;
1852 }
1853 if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00001854 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00001855 continue;
1856 }
1857 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
1858 if (P->getOpcode() == UO_Extension) {
1859 E = P->getSubExpr();
1860 continue;
1861 }
1862 }
1863 return E;
John McCall2fc46bf2010-05-05 22:59:52 +00001864 }
1865}
1866
Chris Lattnerecdd8412009-03-13 17:28:01 +00001867/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
1868/// value (including ptr->int casts of the same size). Strip off any
1869/// ParenExpr or CastExprs, returning their operand.
1870Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
1871 Expr *E = this;
1872 while (true) {
1873 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
1874 E = P->getSubExpr();
1875 continue;
1876 }
Mike Stump1eb44332009-09-09 15:08:12 +00001877
Chris Lattnerecdd8412009-03-13 17:28:01 +00001878 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
1879 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001880 // ptr<->int casts of the same width. We also ignore all identity casts.
Chris Lattnerecdd8412009-03-13 17:28:01 +00001881 Expr *SE = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00001882
Chris Lattnerecdd8412009-03-13 17:28:01 +00001883 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
1884 E = SE;
1885 continue;
1886 }
Mike Stump1eb44332009-09-09 15:08:12 +00001887
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00001888 if ((E->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00001889 E->getType()->isIntegralType(Ctx)) &&
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00001890 (SE->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00001891 SE->getType()->isIntegralType(Ctx)) &&
Chris Lattnerecdd8412009-03-13 17:28:01 +00001892 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1893 E = SE;
1894 continue;
1895 }
1896 }
Mike Stump1eb44332009-09-09 15:08:12 +00001897
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00001898 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
1899 if (P->getOpcode() == UO_Extension) {
1900 E = P->getSubExpr();
1901 continue;
1902 }
1903 }
1904
Chris Lattnerecdd8412009-03-13 17:28:01 +00001905 return E;
1906 }
1907}
1908
Douglas Gregor6eef5192009-12-14 19:27:10 +00001909bool Expr::isDefaultArgument() const {
1910 const Expr *E = this;
1911 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
1912 E = ICE->getSubExprAsWritten();
Sean Huntc3021132010-05-05 15:23:54 +00001913
Douglas Gregor6eef5192009-12-14 19:27:10 +00001914 return isa<CXXDefaultArgExpr>(E);
1915}
Chris Lattnerecdd8412009-03-13 17:28:01 +00001916
Douglas Gregor2f599792010-04-02 18:24:57 +00001917/// \brief Skip over any no-op casts and any temporary-binding
1918/// expressions.
Anders Carlssonf8b30152010-11-28 16:40:49 +00001919static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) {
Douglas Gregor2f599792010-04-02 18:24:57 +00001920 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00001921 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00001922 E = ICE->getSubExpr();
1923 else
1924 break;
1925 }
1926
1927 while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
1928 E = BE->getSubExpr();
1929
1930 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00001931 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00001932 E = ICE->getSubExpr();
1933 else
1934 break;
1935 }
Anders Carlssonf8b30152010-11-28 16:40:49 +00001936
1937 return E->IgnoreParens();
Douglas Gregor2f599792010-04-02 18:24:57 +00001938}
1939
John McCall558d2ab2010-09-15 10:14:12 +00001940/// isTemporaryObject - Determines if this expression produces a
1941/// temporary of the given class type.
1942bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const {
1943 if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
1944 return false;
1945
Anders Carlssonf8b30152010-11-28 16:40:49 +00001946 const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this);
Douglas Gregor2f599792010-04-02 18:24:57 +00001947
John McCall58277b52010-09-15 20:59:13 +00001948 // Temporaries are by definition pr-values of class type.
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00001949 if (!E->Classify(C).isPRValue()) {
1950 // In this context, property reference is a message call and is pr-value.
John McCall12f78a62010-12-02 01:19:52 +00001951 if (!isa<ObjCPropertyRefExpr>(E))
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00001952 return false;
1953 }
Douglas Gregor2f599792010-04-02 18:24:57 +00001954
John McCall19e60ad2010-09-16 06:57:56 +00001955 // Black-list a few cases which yield pr-values of class type that don't
1956 // refer to temporaries of that type:
1957
1958 // - implicit derived-to-base conversions
John McCall558d2ab2010-09-15 10:14:12 +00001959 if (isa<ImplicitCastExpr>(E)) {
1960 switch (cast<ImplicitCastExpr>(E)->getCastKind()) {
1961 case CK_DerivedToBase:
1962 case CK_UncheckedDerivedToBase:
1963 return false;
1964 default:
1965 break;
1966 }
Douglas Gregor2f599792010-04-02 18:24:57 +00001967 }
1968
John McCall19e60ad2010-09-16 06:57:56 +00001969 // - member expressions (all)
1970 if (isa<MemberExpr>(E))
1971 return false;
1972
John McCall558d2ab2010-09-15 10:14:12 +00001973 return true;
Douglas Gregor2f599792010-04-02 18:24:57 +00001974}
1975
Douglas Gregor898574e2008-12-05 23:32:09 +00001976/// hasAnyTypeDependentArguments - Determines if any of the expressions
1977/// in Exprs is type-dependent.
1978bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1979 for (unsigned I = 0; I < NumExprs; ++I)
1980 if (Exprs[I]->isTypeDependent())
1981 return true;
1982
1983 return false;
1984}
1985
1986/// hasAnyValueDependentArguments - Determines if any of the expressions
1987/// in Exprs is value-dependent.
1988bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1989 for (unsigned I = 0; I < NumExprs; ++I)
1990 if (Exprs[I]->isValueDependent())
1991 return true;
1992
1993 return false;
1994}
1995
John McCall4204f072010-08-02 21:13:48 +00001996bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001997 // This function is attempting whether an expression is an initializer
1998 // which can be evaluated at compile-time. isEvaluatable handles most
1999 // of the cases, but it can't deal with some initializer-specific
2000 // expressions, and it can't deal with aggregates; we deal with those here,
2001 // and fall back to isEvaluatable for the other cases.
2002
John McCall4204f072010-08-02 21:13:48 +00002003 // If we ever capture reference-binding directly in the AST, we can
2004 // kill the second parameter.
2005
2006 if (IsForRef) {
2007 EvalResult Result;
2008 return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects;
2009 }
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002010
Anders Carlssone8a32b82008-11-24 05:23:59 +00002011 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002012 default: break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00002013 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00002014 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00002015 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002016 return true;
John McCallb4b9b152010-08-01 21:51:45 +00002017 case CXXTemporaryObjectExprClass:
2018 case CXXConstructExprClass: {
2019 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
John McCall4204f072010-08-02 21:13:48 +00002020
2021 // Only if it's
2022 // 1) an application of the trivial default constructor or
John McCallb4b9b152010-08-01 21:51:45 +00002023 if (!CE->getConstructor()->isTrivial()) return false;
John McCall4204f072010-08-02 21:13:48 +00002024 if (!CE->getNumArgs()) return true;
2025
2026 // 2) an elidable trivial copy construction of an operand which is
2027 // itself a constant initializer. Note that we consider the
2028 // operand on its own, *not* as a reference binding.
2029 return CE->isElidable() &&
2030 CE->getArg(0)->isConstantInitializer(Ctx, false);
John McCallb4b9b152010-08-01 21:51:45 +00002031 }
Nate Begeman59b5da62009-01-18 03:20:47 +00002032 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002033 // This handles gcc's extension that allows global initializers like
2034 // "struct x {int x;} x = (struct x) {};".
2035 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00002036 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
John McCall4204f072010-08-02 21:13:48 +00002037 return Exp->isConstantInitializer(Ctx, false);
Nate Begeman59b5da62009-01-18 03:20:47 +00002038 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00002039 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002040 // FIXME: This doesn't deal with fields with reference types correctly.
2041 // FIXME: This incorrectly allows pointers cast to integers to be assigned
2042 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00002043 const InitListExpr *Exp = cast<InitListExpr>(this);
2044 unsigned numInits = Exp->getNumInits();
2045 for (unsigned i = 0; i < numInits; i++) {
John McCall4204f072010-08-02 21:13:48 +00002046 if (!Exp->getInit(i)->isConstantInitializer(Ctx, false))
Anders Carlssone8a32b82008-11-24 05:23:59 +00002047 return false;
2048 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002049 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00002050 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002051 case ImplicitValueInitExprClass:
2052 return true;
Chris Lattner3ae9f482009-10-13 07:14:16 +00002053 case ParenExprClass:
John McCall4204f072010-08-02 21:13:48 +00002054 return cast<ParenExpr>(this)->getSubExpr()
2055 ->isConstantInitializer(Ctx, IsForRef);
Abramo Bagnara5cadfab2010-09-27 07:13:32 +00002056 case ChooseExprClass:
2057 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)
2058 ->isConstantInitializer(Ctx, IsForRef);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002059 case UnaryOperatorClass: {
2060 const UnaryOperator* Exp = cast<UnaryOperator>(this);
John McCall2de56d12010-08-25 11:45:40 +00002061 if (Exp->getOpcode() == UO_Extension)
John McCall4204f072010-08-02 21:13:48 +00002062 return Exp->getSubExpr()->isConstantInitializer(Ctx, false);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002063 break;
2064 }
Chris Lattner3ae9f482009-10-13 07:14:16 +00002065 case BinaryOperatorClass: {
2066 // Special case &&foo - &&bar. It would be nice to generalize this somehow
2067 // but this handles the common case.
2068 const BinaryOperator *Exp = cast<BinaryOperator>(this);
John McCall2de56d12010-08-25 11:45:40 +00002069 if (Exp->getOpcode() == BO_Sub &&
Chris Lattner3ae9f482009-10-13 07:14:16 +00002070 isa<AddrLabelExpr>(Exp->getLHS()->IgnoreParenNoopCasts(Ctx)) &&
2071 isa<AddrLabelExpr>(Exp->getRHS()->IgnoreParenNoopCasts(Ctx)))
2072 return true;
2073 break;
2074 }
John McCall4204f072010-08-02 21:13:48 +00002075 case CXXFunctionalCastExprClass:
John McCallb4b9b152010-08-01 21:51:45 +00002076 case CXXStaticCastExprClass:
Chris Lattner81045d82009-04-21 05:19:11 +00002077 case ImplicitCastExprClass:
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002078 case CStyleCastExprClass:
2079 // Handle casts with a destination that's a struct or union; this
2080 // deals with both the gcc no-op struct cast extension and the
2081 // cast-to-union extension.
2082 if (getType()->isRecordType())
John McCall4204f072010-08-02 21:13:48 +00002083 return cast<CastExpr>(this)->getSubExpr()
2084 ->isConstantInitializer(Ctx, false);
Sean Huntc3021132010-05-05 15:23:54 +00002085
Chris Lattner430656e2009-10-13 22:12:09 +00002086 // Integer->integer casts can be handled here, which is important for
2087 // things like (int)(&&x-&&y). Scary but true.
2088 if (getType()->isIntegerType() &&
2089 cast<CastExpr>(this)->getSubExpr()->getType()->isIntegerType())
John McCall4204f072010-08-02 21:13:48 +00002090 return cast<CastExpr>(this)->getSubExpr()
2091 ->isConstantInitializer(Ctx, false);
Sean Huntc3021132010-05-05 15:23:54 +00002092
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002093 break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00002094 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002095 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00002096}
2097
Reid Spencer5f016e22007-07-11 17:01:13 +00002098/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
2099/// integer constant expression with the value zero, or if this is one that is
2100/// cast to void*.
Douglas Gregorce940492009-09-25 04:25:58 +00002101bool Expr::isNullPointerConstant(ASTContext &Ctx,
2102 NullPointerConstantValueDependence NPC) const {
2103 if (isValueDependent()) {
2104 switch (NPC) {
2105 case NPC_NeverValueDependent:
2106 assert(false && "Unexpected value dependent expression!");
2107 // If the unthinkable happens, fall through to the safest alternative.
Sean Huntc3021132010-05-05 15:23:54 +00002108
Douglas Gregorce940492009-09-25 04:25:58 +00002109 case NPC_ValueDependentIsNull:
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002110 return isTypeDependent() || getType()->isIntegralType(Ctx);
Sean Huntc3021132010-05-05 15:23:54 +00002111
Douglas Gregorce940492009-09-25 04:25:58 +00002112 case NPC_ValueDependentIsNotNull:
2113 return false;
2114 }
2115 }
Daniel Dunbarf515b222009-09-18 08:46:16 +00002116
Sebastian Redl07779722008-10-31 14:43:28 +00002117 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002118 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00002119 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00002120 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00002121 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00002122 QualType Pointee = PT->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00002123 if (!Pointee.hasQualifiers() &&
Sebastian Redl07779722008-10-31 14:43:28 +00002124 Pointee->isVoidType() && // to void*
2125 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregorce940492009-09-25 04:25:58 +00002126 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl07779722008-10-31 14:43:28 +00002127 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002128 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002129 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
2130 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregorce940492009-09-25 04:25:58 +00002131 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroffaa58f002008-01-14 16:10:57 +00002132 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
2133 // Accept ((void*)0) as a null pointer constant, as many other
2134 // implementations do.
Douglas Gregorce940492009-09-25 04:25:58 +00002135 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump1eb44332009-09-09 15:08:12 +00002136 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner8123a952008-04-10 02:22:51 +00002137 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00002138 // See through default argument expressions
Douglas Gregorce940492009-09-25 04:25:58 +00002139 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002140 } else if (isa<GNUNullExpr>(this)) {
2141 // The GNU __null extension is always a null pointer constant.
2142 return true;
Steve Naroffaaffbf72008-01-14 02:53:34 +00002143 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002144
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002145 // C++0x nullptr_t is always a null pointer constant.
2146 if (getType()->isNullPtrType())
2147 return true;
2148
Fariborz Jahanianff3a0782010-09-27 22:42:37 +00002149 if (const RecordType *UT = getType()->getAsUnionType())
2150 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>())
2151 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){
2152 const Expr *InitExpr = CLE->getInitializer();
2153 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr))
2154 return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC);
2155 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002156 // This expression must be an integer type.
Sean Huntc3021132010-05-05 15:23:54 +00002157 if (!getType()->isIntegerType() ||
Fariborz Jahanian56fc0d12009-10-06 00:09:31 +00002158 (Ctx.getLangOptions().CPlusPlus && getType()->isEnumeralType()))
Steve Naroffaa58f002008-01-14 16:10:57 +00002159 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002160
Reid Spencer5f016e22007-07-11 17:01:13 +00002161 // If we have an integer constant expression, we need to *evaluate* it and
2162 // test for the value 0.
Eli Friedman09de1762009-04-25 22:37:12 +00002163 llvm::APSInt Result;
2164 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00002165}
Steve Naroff31a45842007-07-28 23:10:27 +00002166
John McCallf6a16482010-12-04 03:47:34 +00002167/// \brief If this expression is an l-value for an Objective C
2168/// property, find the underlying property reference expression.
2169const ObjCPropertyRefExpr *Expr::getObjCProperty() const {
2170 const Expr *E = this;
2171 while (true) {
2172 assert((E->getValueKind() == VK_LValue &&
2173 E->getObjectKind() == OK_ObjCProperty) &&
2174 "expression is not a property reference");
2175 E = E->IgnoreParenCasts();
2176 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2177 if (BO->getOpcode() == BO_Comma) {
2178 E = BO->getRHS();
2179 continue;
2180 }
2181 }
2182
2183 break;
2184 }
2185
2186 return cast<ObjCPropertyRefExpr>(E);
2187}
2188
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002189FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00002190 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002191
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002192 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002193 if (ICE->getCastKind() == CK_LValueToRValue ||
2194 (ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp))
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002195 E = ICE->getSubExpr()->IgnoreParens();
2196 else
2197 break;
2198 }
2199
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002200 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00002201 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002202 if (Field->isBitField())
2203 return Field;
2204
Argyrios Kyrtzidis0f279e72010-10-30 19:52:22 +00002205 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E))
2206 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
2207 if (Field->isBitField())
2208 return Field;
2209
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002210 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
2211 if (BinOp->isAssignmentOp() && BinOp->getLHS())
2212 return BinOp->getLHS()->getBitField();
2213
2214 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002215}
2216
Anders Carlsson09380262010-01-31 17:18:49 +00002217bool Expr::refersToVectorElement() const {
2218 const Expr *E = this->IgnoreParens();
Sean Huntc3021132010-05-05 15:23:54 +00002219
Anders Carlsson09380262010-01-31 17:18:49 +00002220 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall5baba9d2010-08-25 10:28:54 +00002221 if (ICE->getValueKind() != VK_RValue &&
John McCall2de56d12010-08-25 11:45:40 +00002222 ICE->getCastKind() == CK_NoOp)
Anders Carlsson09380262010-01-31 17:18:49 +00002223 E = ICE->getSubExpr()->IgnoreParens();
2224 else
2225 break;
2226 }
Sean Huntc3021132010-05-05 15:23:54 +00002227
Anders Carlsson09380262010-01-31 17:18:49 +00002228 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
2229 return ASE->getBase()->getType()->isVectorType();
2230
2231 if (isa<ExtVectorElementExpr>(E))
2232 return true;
2233
2234 return false;
2235}
2236
Chris Lattner2140e902009-02-16 22:14:05 +00002237/// isArrow - Return true if the base expression is a pointer to vector,
2238/// return false if the base expression is a vector.
2239bool ExtVectorElementExpr::isArrow() const {
2240 return getBase()->getType()->isPointerType();
2241}
2242
Nate Begeman213541a2008-04-18 23:10:10 +00002243unsigned ExtVectorElementExpr::getNumElements() const {
John McCall183700f2009-09-21 23:43:11 +00002244 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begeman8a997642008-05-09 06:41:27 +00002245 return VT->getNumElements();
2246 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00002247}
2248
Nate Begeman8a997642008-05-09 06:41:27 +00002249/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00002250bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbara2b34eb2009-10-18 02:09:09 +00002251 // FIXME: Refactor this code to an accessor on the AST node which returns the
2252 // "type" of component access, and share with code below and in Sema.
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002253 llvm::StringRef Comp = Accessor->getName();
Nate Begeman190d6a22009-01-18 02:01:21 +00002254
2255 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar15027422009-10-17 23:53:04 +00002256 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman190d6a22009-01-18 02:01:21 +00002257 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002258
Nate Begeman190d6a22009-01-18 02:01:21 +00002259 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar15027422009-10-17 23:53:04 +00002260 if (Comp[0] == 's' || Comp[0] == 'S')
2261 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002262
Daniel Dunbar15027422009-10-17 23:53:04 +00002263 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
2264 if (Comp.substr(i + 1).find(Comp[i]) != llvm::StringRef::npos)
Steve Narofffec0b492007-07-30 03:29:09 +00002265 return true;
Daniel Dunbar15027422009-10-17 23:53:04 +00002266
Steve Narofffec0b492007-07-30 03:29:09 +00002267 return false;
2268}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002269
Nate Begeman8a997642008-05-09 06:41:27 +00002270/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00002271void ExtVectorElementExpr::getEncodedElementAccess(
2272 llvm::SmallVectorImpl<unsigned> &Elts) const {
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002273 llvm::StringRef Comp = Accessor->getName();
2274 if (Comp[0] == 's' || Comp[0] == 'S')
2275 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002276
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002277 bool isHi = Comp == "hi";
2278 bool isLo = Comp == "lo";
2279 bool isEven = Comp == "even";
2280 bool isOdd = Comp == "odd";
Mike Stump1eb44332009-09-09 15:08:12 +00002281
Nate Begeman8a997642008-05-09 06:41:27 +00002282 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
2283 uint64_t Index;
Mike Stump1eb44332009-09-09 15:08:12 +00002284
Nate Begeman8a997642008-05-09 06:41:27 +00002285 if (isHi)
2286 Index = e + i;
2287 else if (isLo)
2288 Index = i;
2289 else if (isEven)
2290 Index = 2 * i;
2291 else if (isOdd)
2292 Index = 2 * i + 1;
2293 else
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002294 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002295
Nate Begeman3b8d1162008-05-13 21:03:02 +00002296 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002297 }
Nate Begeman8a997642008-05-09 06:41:27 +00002298}
2299
Douglas Gregor04badcf2010-04-21 00:45:42 +00002300ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002301 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002302 SourceLocation LBracLoc,
2303 SourceLocation SuperLoc,
2304 bool IsInstanceSuper,
2305 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00002306 Selector Sel,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002307 SourceLocation SelLoc,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002308 ObjCMethodDecl *Method,
2309 Expr **Args, unsigned NumArgs,
2310 SourceLocation RBracLoc)
John McCallf89e55a2010-11-18 06:31:45 +00002311 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002312 /*TypeDependent=*/false, /*ValueDependent=*/false,
2313 /*ContainsUnexpandedParameterPack=*/false),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002314 NumArgs(NumArgs), Kind(IsInstanceSuper? SuperInstance : SuperClass),
2315 HasMethod(Method != 0), SuperLoc(SuperLoc),
2316 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2317 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002318 SelectorLoc(SelLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregorc2350e52010-03-08 16:40:19 +00002319{
Douglas Gregor04badcf2010-04-21 00:45:42 +00002320 setReceiverPointer(SuperType.getAsOpaquePtr());
2321 if (NumArgs)
2322 memcpy(getArgs(), Args, NumArgs * sizeof(Expr *));
Ted Kremenek4df728e2008-06-24 15:50:53 +00002323}
2324
Douglas Gregor04badcf2010-04-21 00:45:42 +00002325ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002326 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002327 SourceLocation LBracLoc,
2328 TypeSourceInfo *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002329 Selector Sel,
2330 SourceLocation SelLoc,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002331 ObjCMethodDecl *Method,
2332 Expr **Args, unsigned NumArgs,
2333 SourceLocation RBracLoc)
John McCallf89e55a2010-11-18 06:31:45 +00002334 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, T->isDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002335 T->isDependentType(), T->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002336 NumArgs(NumArgs), Kind(Class), HasMethod(Method != 0),
2337 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2338 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002339 SelectorLoc(SelLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00002340{
2341 setReceiverPointer(Receiver);
Douglas Gregoraa165f82011-01-03 19:04:46 +00002342 Expr **MyArgs = getArgs();
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002343 for (unsigned I = 0; I != NumArgs; ++I) {
2344 if (Args[I]->isTypeDependent())
2345 ExprBits.TypeDependent = true;
2346 if (Args[I]->isValueDependent())
2347 ExprBits.ValueDependent = true;
2348 if (Args[I]->containsUnexpandedParameterPack())
2349 ExprBits.ContainsUnexpandedParameterPack = true;
2350
2351 MyArgs[I] = Args[I];
2352 }
Ted Kremenek4df728e2008-06-24 15:50:53 +00002353}
2354
Douglas Gregor04badcf2010-04-21 00:45:42 +00002355ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002356 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002357 SourceLocation LBracLoc,
2358 Expr *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00002359 Selector Sel,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002360 SourceLocation SelLoc,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002361 ObjCMethodDecl *Method,
2362 Expr **Args, unsigned NumArgs,
2363 SourceLocation RBracLoc)
John McCallf89e55a2010-11-18 06:31:45 +00002364 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, Receiver->isTypeDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002365 Receiver->isTypeDependent(),
2366 Receiver->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002367 NumArgs(NumArgs), Kind(Instance), HasMethod(Method != 0),
2368 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2369 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002370 SelectorLoc(SelLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00002371{
2372 setReceiverPointer(Receiver);
Douglas Gregoraa165f82011-01-03 19:04:46 +00002373 Expr **MyArgs = getArgs();
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002374 for (unsigned I = 0; I != NumArgs; ++I) {
2375 if (Args[I]->isTypeDependent())
2376 ExprBits.TypeDependent = true;
2377 if (Args[I]->isValueDependent())
2378 ExprBits.ValueDependent = true;
2379 if (Args[I]->containsUnexpandedParameterPack())
2380 ExprBits.ContainsUnexpandedParameterPack = true;
2381
2382 MyArgs[I] = Args[I];
2383 }
Chris Lattner0389e6b2009-04-26 00:44:05 +00002384}
2385
Douglas Gregor04badcf2010-04-21 00:45:42 +00002386ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002387 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002388 SourceLocation LBracLoc,
2389 SourceLocation SuperLoc,
2390 bool IsInstanceSuper,
2391 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00002392 Selector Sel,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002393 SourceLocation SelLoc,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002394 ObjCMethodDecl *Method,
2395 Expr **Args, unsigned NumArgs,
2396 SourceLocation RBracLoc) {
Sean Huntc3021132010-05-05 15:23:54 +00002397 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor04badcf2010-04-21 00:45:42 +00002398 NumArgs * sizeof(Expr *);
2399 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
John McCallf89e55a2010-11-18 06:31:45 +00002400 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002401 SuperType, Sel, SelLoc, Method, Args,NumArgs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002402 RBracLoc);
2403}
2404
2405ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002406 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002407 SourceLocation LBracLoc,
2408 TypeSourceInfo *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00002409 Selector Sel,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002410 SourceLocation SelLoc,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002411 ObjCMethodDecl *Method,
2412 Expr **Args, unsigned NumArgs,
2413 SourceLocation RBracLoc) {
Sean Huntc3021132010-05-05 15:23:54 +00002414 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor04badcf2010-04-21 00:45:42 +00002415 NumArgs * sizeof(Expr *);
2416 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002417 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel, SelLoc,
2418 Method, Args, NumArgs, RBracLoc);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002419}
2420
2421ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002422 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002423 SourceLocation LBracLoc,
2424 Expr *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002425 Selector Sel,
2426 SourceLocation SelLoc,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002427 ObjCMethodDecl *Method,
2428 Expr **Args, unsigned NumArgs,
2429 SourceLocation RBracLoc) {
Sean Huntc3021132010-05-05 15:23:54 +00002430 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor04badcf2010-04-21 00:45:42 +00002431 NumArgs * sizeof(Expr *);
2432 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002433 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel, SelLoc,
2434 Method, Args, NumArgs, RBracLoc);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002435}
2436
Sean Huntc3021132010-05-05 15:23:54 +00002437ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002438 unsigned NumArgs) {
Sean Huntc3021132010-05-05 15:23:54 +00002439 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor04badcf2010-04-21 00:45:42 +00002440 NumArgs * sizeof(Expr *);
2441 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
2442 return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs);
2443}
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00002444
2445SourceRange ObjCMessageExpr::getReceiverRange() const {
2446 switch (getReceiverKind()) {
2447 case Instance:
2448 return getInstanceReceiver()->getSourceRange();
2449
2450 case Class:
2451 return getClassReceiverTypeInfo()->getTypeLoc().getSourceRange();
2452
2453 case SuperInstance:
2454 case SuperClass:
2455 return getSuperLoc();
2456 }
2457
2458 return SourceLocation();
2459}
2460
Douglas Gregor04badcf2010-04-21 00:45:42 +00002461Selector ObjCMessageExpr::getSelector() const {
2462 if (HasMethod)
2463 return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod)
2464 ->getSelector();
Sean Huntc3021132010-05-05 15:23:54 +00002465 return Selector(SelectorOrMethod);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002466}
2467
2468ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const {
2469 switch (getReceiverKind()) {
2470 case Instance:
2471 if (const ObjCObjectPointerType *Ptr
2472 = getInstanceReceiver()->getType()->getAs<ObjCObjectPointerType>())
2473 return Ptr->getInterfaceDecl();
2474 break;
2475
2476 case Class:
John McCallc12c5bb2010-05-15 11:32:37 +00002477 if (const ObjCObjectType *Ty
2478 = getClassReceiver()->getAs<ObjCObjectType>())
2479 return Ty->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00002480 break;
2481
2482 case SuperInstance:
2483 if (const ObjCObjectPointerType *Ptr
2484 = getSuperType()->getAs<ObjCObjectPointerType>())
2485 return Ptr->getInterfaceDecl();
2486 break;
2487
2488 case SuperClass:
Argyrios Kyrtzidisee8a6ca2011-01-25 00:03:48 +00002489 if (const ObjCObjectType *Iface
2490 = getSuperType()->getAs<ObjCObjectType>())
2491 return Iface->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00002492 break;
2493 }
2494
2495 return 0;
Ted Kremenekeb3b3242010-02-11 22:41:21 +00002496}
Chris Lattner0389e6b2009-04-26 00:44:05 +00002497
Jay Foad4ba2a172011-01-12 09:06:06 +00002498bool ChooseExpr::isConditionTrue(const ASTContext &C) const {
Eli Friedman9a901bb2009-04-26 19:19:15 +00002499 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00002500}
2501
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002502ShuffleVectorExpr::ShuffleVectorExpr(ASTContext &C, Expr **args, unsigned nexpr,
2503 QualType Type, SourceLocation BLoc,
2504 SourceLocation RP)
2505 : Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary,
2506 Type->isDependentType(), Type->isDependentType(),
2507 Type->containsUnexpandedParameterPack()),
2508 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(nexpr)
2509{
2510 SubExprs = new (C) Stmt*[nexpr];
2511 for (unsigned i = 0; i < nexpr; i++) {
2512 if (args[i]->isTypeDependent())
2513 ExprBits.TypeDependent = true;
2514 if (args[i]->isValueDependent())
2515 ExprBits.ValueDependent = true;
2516 if (args[i]->containsUnexpandedParameterPack())
2517 ExprBits.ContainsUnexpandedParameterPack = true;
2518
2519 SubExprs[i] = args[i];
2520 }
2521}
2522
Nate Begeman888376a2009-08-12 02:28:50 +00002523void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
2524 unsigned NumExprs) {
2525 if (SubExprs) C.Deallocate(SubExprs);
2526
2527 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00002528 this->NumExprs = NumExprs;
2529 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump1eb44332009-09-09 15:08:12 +00002530}
Nate Begeman888376a2009-08-12 02:28:50 +00002531
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002532//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00002533// DesignatedInitExpr
2534//===----------------------------------------------------------------------===//
2535
2536IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
2537 assert(Kind == FieldDesignator && "Only valid on a field designator");
2538 if (Field.NameOrField & 0x01)
2539 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
2540 else
2541 return getField()->getIdentifier();
2542}
2543
Sean Huntc3021132010-05-05 15:23:54 +00002544DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
Douglas Gregor319d57f2010-01-06 23:17:19 +00002545 unsigned NumDesignators,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002546 const Designator *Designators,
Mike Stump1eb44332009-09-09 15:08:12 +00002547 SourceLocation EqualOrColonLoc,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002548 bool GNUSyntax,
Mike Stump1eb44332009-09-09 15:08:12 +00002549 Expr **IndexExprs,
Douglas Gregor9ea62762009-05-21 23:17:49 +00002550 unsigned NumIndexExprs,
2551 Expr *Init)
Mike Stump1eb44332009-09-09 15:08:12 +00002552 : Expr(DesignatedInitExprClass, Ty,
John McCallf89e55a2010-11-18 06:31:45 +00002553 Init->getValueKind(), Init->getObjectKind(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002554 Init->isTypeDependent(), Init->isValueDependent(),
2555 Init->containsUnexpandedParameterPack()),
Mike Stump1eb44332009-09-09 15:08:12 +00002556 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
2557 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00002558 this->Designators = new (C) Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00002559
2560 // Record the initializer itself.
2561 child_iterator Child = child_begin();
2562 *Child++ = Init;
2563
2564 // Copy the designators and their subexpressions, computing
2565 // value-dependence along the way.
2566 unsigned IndexIdx = 0;
2567 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002568 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00002569
2570 if (this->Designators[I].isArrayDesignator()) {
2571 // Compute type- and value-dependence.
2572 Expr *Index = IndexExprs[IndexIdx];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002573 if (Index->isTypeDependent() || Index->isValueDependent())
2574 ExprBits.ValueDependent = true;
2575
2576 // Propagate unexpanded parameter packs.
2577 if (Index->containsUnexpandedParameterPack())
2578 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00002579
2580 // Copy the index expressions into permanent storage.
2581 *Child++ = IndexExprs[IndexIdx++];
2582 } else if (this->Designators[I].isArrayRangeDesignator()) {
2583 // Compute type- and value-dependence.
2584 Expr *Start = IndexExprs[IndexIdx];
2585 Expr *End = IndexExprs[IndexIdx + 1];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002586 if (Start->isTypeDependent() || Start->isValueDependent() ||
2587 End->isTypeDependent() || End->isValueDependent())
2588 ExprBits.ValueDependent = true;
2589
2590 // Propagate unexpanded parameter packs.
2591 if (Start->containsUnexpandedParameterPack() ||
2592 End->containsUnexpandedParameterPack())
2593 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00002594
2595 // Copy the start/end expressions into permanent storage.
2596 *Child++ = IndexExprs[IndexIdx++];
2597 *Child++ = IndexExprs[IndexIdx++];
2598 }
2599 }
2600
2601 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002602}
2603
Douglas Gregor05c13a32009-01-22 00:58:24 +00002604DesignatedInitExpr *
Mike Stump1eb44332009-09-09 15:08:12 +00002605DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00002606 unsigned NumDesignators,
2607 Expr **IndexExprs, unsigned NumIndexExprs,
2608 SourceLocation ColonOrEqualLoc,
2609 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00002610 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00002611 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor319d57f2010-01-06 23:17:19 +00002612 return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
Douglas Gregor9ea62762009-05-21 23:17:49 +00002613 ColonOrEqualLoc, UsesColonSyntax,
2614 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002615}
2616
Mike Stump1eb44332009-09-09 15:08:12 +00002617DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregord077d752009-04-16 00:55:48 +00002618 unsigned NumIndexExprs) {
2619 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
2620 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
2621 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
2622}
2623
Douglas Gregor319d57f2010-01-06 23:17:19 +00002624void DesignatedInitExpr::setDesignators(ASTContext &C,
2625 const Designator *Desigs,
Douglas Gregord077d752009-04-16 00:55:48 +00002626 unsigned NumDesigs) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00002627 Designators = new (C) Designator[NumDesigs];
Douglas Gregord077d752009-04-16 00:55:48 +00002628 NumDesignators = NumDesigs;
2629 for (unsigned I = 0; I != NumDesigs; ++I)
2630 Designators[I] = Desigs[I];
2631}
2632
Douglas Gregor05c13a32009-01-22 00:58:24 +00002633SourceRange DesignatedInitExpr::getSourceRange() const {
2634 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00002635 Designator &First =
2636 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00002637 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00002638 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00002639 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
2640 else
2641 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
2642 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00002643 StartLoc =
2644 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002645 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
2646}
2647
Douglas Gregor05c13a32009-01-22 00:58:24 +00002648Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
2649 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
2650 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2651 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002652 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2653 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
2654}
2655
2656Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00002657 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00002658 "Requires array range designator");
2659 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2660 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002661 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2662 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
2663}
2664
2665Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00002666 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00002667 "Requires array range designator");
2668 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2669 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002670 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2671 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
2672}
2673
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002674/// \brief Replaces the designator at index @p Idx with the series
2675/// of designators in [First, Last).
Douglas Gregor319d57f2010-01-06 23:17:19 +00002676void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
Mike Stump1eb44332009-09-09 15:08:12 +00002677 const Designator *First,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002678 const Designator *Last) {
2679 unsigned NumNewDesignators = Last - First;
2680 if (NumNewDesignators == 0) {
2681 std::copy_backward(Designators + Idx + 1,
2682 Designators + NumDesignators,
2683 Designators + Idx);
2684 --NumNewDesignators;
2685 return;
2686 } else if (NumNewDesignators == 1) {
2687 Designators[Idx] = *First;
2688 return;
2689 }
2690
Mike Stump1eb44332009-09-09 15:08:12 +00002691 Designator *NewDesignators
Douglas Gregor319d57f2010-01-06 23:17:19 +00002692 = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002693 std::copy(Designators, Designators + Idx, NewDesignators);
2694 std::copy(First, Last, NewDesignators + Idx);
2695 std::copy(Designators + Idx + 1, Designators + NumDesignators,
2696 NewDesignators + Idx + NumNewDesignators);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002697 Designators = NewDesignators;
2698 NumDesignators = NumDesignators - 1 + NumNewDesignators;
2699}
2700
Mike Stump1eb44332009-09-09 15:08:12 +00002701ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00002702 Expr **exprs, unsigned nexprs,
2703 SourceLocation rparenloc)
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002704 : Expr(ParenListExprClass, QualType(), VK_RValue, OK_Ordinary,
2705 false, false, false),
2706 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
Mike Stump1eb44332009-09-09 15:08:12 +00002707
Nate Begeman2ef13e52009-08-10 23:49:36 +00002708 Exprs = new (C) Stmt*[nexprs];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002709 for (unsigned i = 0; i != nexprs; ++i) {
2710 if (exprs[i]->isTypeDependent())
2711 ExprBits.TypeDependent = true;
2712 if (exprs[i]->isValueDependent())
2713 ExprBits.ValueDependent = true;
2714 if (exprs[i]->containsUnexpandedParameterPack())
2715 ExprBits.ContainsUnexpandedParameterPack = true;
2716
Nate Begeman2ef13e52009-08-10 23:49:36 +00002717 Exprs[i] = exprs[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002718 }
Nate Begeman2ef13e52009-08-10 23:49:36 +00002719}
2720
Douglas Gregor05c13a32009-01-22 00:58:24 +00002721//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00002722// ExprIterator.
2723//===----------------------------------------------------------------------===//
2724
2725Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
2726Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
2727Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
2728const Expr* ConstExprIterator::operator[](size_t idx) const {
2729 return cast<Expr>(I[idx]);
2730}
2731const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
2732const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
2733
2734//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002735// Child Iterators for iterating over subexpressions/substatements
2736//===----------------------------------------------------------------------===//
2737
2738// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002739Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
2740Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002741
Steve Naroff7779db42007-11-12 14:29:37 +00002742// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002743Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
2744Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00002745
Steve Naroffe3e9add2008-06-02 23:03:37 +00002746// ObjCPropertyRefExpr
Fariborz Jahanian8ac2d442010-10-14 16:04:05 +00002747Stmt::child_iterator ObjCPropertyRefExpr::child_begin()
2748{
John McCall12f78a62010-12-02 01:19:52 +00002749 if (Receiver.is<Stmt*>()) {
Fariborz Jahanian8ac2d442010-10-14 16:04:05 +00002750 // Hack alert!
John McCall12f78a62010-12-02 01:19:52 +00002751 return reinterpret_cast<Stmt**> (&Receiver);
Fariborz Jahanian8ac2d442010-10-14 16:04:05 +00002752 }
2753 return child_iterator();
2754}
2755
2756Stmt::child_iterator ObjCPropertyRefExpr::child_end()
John McCall12f78a62010-12-02 01:19:52 +00002757{ return Receiver.is<Stmt*>() ?
2758 reinterpret_cast<Stmt**> (&Receiver)+1 :
Fariborz Jahanian8ac2d442010-10-14 16:04:05 +00002759 child_iterator();
2760}
Steve Naroffae784072008-05-30 00:40:33 +00002761
Steve Narofff242b1b2009-07-24 17:54:45 +00002762// ObjCIsaExpr
2763Stmt::child_iterator ObjCIsaExpr::child_begin() { return &Base; }
2764Stmt::child_iterator ObjCIsaExpr::child_end() { return &Base+1; }
2765
Chris Lattnerd9f69102008-08-10 01:53:14 +00002766// PredefinedExpr
2767Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
2768Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002769
2770// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002771Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
2772Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002773
2774// CharacterLiteral
Chris Lattnerd603eaa2009-02-16 22:33:34 +00002775Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek9ac59282007-10-18 23:28:49 +00002776Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002777
2778// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002779Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
2780Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002781
Chris Lattner5d661452007-08-26 03:42:43 +00002782// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00002783Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
2784Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00002785
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002786// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002787Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
2788Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002789
2790// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002791Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
2792Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002793
2794// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00002795Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
2796Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002797
Douglas Gregor8ecdb652010-04-28 22:16:22 +00002798// OffsetOfExpr
2799Stmt::child_iterator OffsetOfExpr::child_begin() {
2800 return reinterpret_cast<Stmt **> (reinterpret_cast<OffsetOfNode *> (this + 1)
2801 + NumComps);
2802}
2803Stmt::child_iterator OffsetOfExpr::child_end() {
2804 return child_iterator(&*child_begin() + NumExprs);
2805}
2806
Sebastian Redl05189992008-11-11 17:56:53 +00002807// SizeOfAlignOfExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002808Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
Sebastian Redl05189992008-11-11 17:56:53 +00002809 // If this is of a type and the type is a VLA type (and not a typedef), the
2810 // size expression of the VLA needs to be treated as an executable expression.
2811 // Why isn't this weirdness documented better in StmtIterator?
2812 if (isArgumentType()) {
John McCallf4c73712011-01-19 06:33:43 +00002813 if (const VariableArrayType* T = dyn_cast<VariableArrayType>(
Sebastian Redl05189992008-11-11 17:56:53 +00002814 getArgumentType().getTypePtr()))
2815 return child_iterator(T);
2816 return child_iterator();
2817 }
Sebastian Redld4575892008-12-03 23:17:54 +00002818 return child_iterator(&Argument.Ex);
Ted Kremenek9ac59282007-10-18 23:28:49 +00002819}
Sebastian Redl05189992008-11-11 17:56:53 +00002820Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
2821 if (isArgumentType())
2822 return child_iterator();
Sebastian Redld4575892008-12-03 23:17:54 +00002823 return child_iterator(&Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00002824}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002825
2826// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00002827Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002828 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002829}
Ted Kremenek1237c672007-08-24 20:06:47 +00002830Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002831 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002832}
2833
2834// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00002835Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002836 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002837}
Ted Kremenek1237c672007-08-24 20:06:47 +00002838Stmt::child_iterator CallExpr::child_end() {
Peter Collingbournecc324ad2011-02-08 21:18:02 +00002839 return &SubExprs[0]+NumArgs+getNumPreArgs()+PREARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002840}
Ted Kremenek1237c672007-08-24 20:06:47 +00002841
2842// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002843Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
2844Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002845
Nate Begeman213541a2008-04-18 23:10:10 +00002846// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002847Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
2848Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002849
2850// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002851Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
2852Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002853
Ted Kremenek1237c672007-08-24 20:06:47 +00002854// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002855Stmt::child_iterator CastExpr::child_begin() { return &Op; }
2856Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002857
2858// BinaryOperator
2859Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002860 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00002861}
Ted Kremenek1237c672007-08-24 20:06:47 +00002862Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002863 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00002864}
2865
2866// ConditionalOperator
2867Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002868 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00002869}
Ted Kremenek1237c672007-08-24 20:06:47 +00002870Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002871 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00002872}
2873
2874// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002875Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
2876Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00002877
Ted Kremenek1237c672007-08-24 20:06:47 +00002878// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002879Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
2880Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002881
Ted Kremenek1237c672007-08-24 20:06:47 +00002882
2883// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002884Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
2885Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002886
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002887// GNUNullExpr
2888Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
2889Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
2890
Eli Friedmand38617c2008-05-14 19:38:39 +00002891// ShuffleVectorExpr
2892Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002893 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00002894}
2895Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002896 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00002897}
2898
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002899// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002900Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
2901Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002902
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002903// InitListExpr
Ted Kremenekba7bc552010-02-19 01:50:18 +00002904Stmt::child_iterator InitListExpr::child_begin() {
2905 return InitExprs.size() ? &InitExprs[0] : 0;
2906}
2907Stmt::child_iterator InitListExpr::child_end() {
2908 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
2909}
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002910
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002911// DesignatedInitExpr
Douglas Gregor05c13a32009-01-22 00:58:24 +00002912Stmt::child_iterator DesignatedInitExpr::child_begin() {
2913 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2914 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002915 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2916}
2917Stmt::child_iterator DesignatedInitExpr::child_end() {
2918 return child_iterator(&*child_begin() + NumSubExprs);
2919}
2920
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002921// ImplicitValueInitExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002922Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
2923 return child_iterator();
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002924}
2925
Mike Stump1eb44332009-09-09 15:08:12 +00002926Stmt::child_iterator ImplicitValueInitExpr::child_end() {
2927 return child_iterator();
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002928}
2929
Nate Begeman2ef13e52009-08-10 23:49:36 +00002930// ParenListExpr
2931Stmt::child_iterator ParenListExpr::child_begin() {
2932 return &Exprs[0];
2933}
2934Stmt::child_iterator ParenListExpr::child_end() {
2935 return &Exprs[0]+NumExprs;
2936}
2937
Ted Kremenek1237c672007-08-24 20:06:47 +00002938// ObjCStringLiteral
Mike Stump1eb44332009-09-09 15:08:12 +00002939Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002940 return &String;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002941}
2942Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002943 return &String+1;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002944}
Ted Kremenek1237c672007-08-24 20:06:47 +00002945
2946// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002947Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
2948Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00002949
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002950// ObjCSelectorExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002951Stmt::child_iterator ObjCSelectorExpr::child_begin() {
Ted Kremenek9ac59282007-10-18 23:28:49 +00002952 return child_iterator();
2953}
2954Stmt::child_iterator ObjCSelectorExpr::child_end() {
2955 return child_iterator();
2956}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002957
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002958// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002959Stmt::child_iterator ObjCProtocolExpr::child_begin() {
2960 return child_iterator();
2961}
2962Stmt::child_iterator ObjCProtocolExpr::child_end() {
2963 return child_iterator();
2964}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002965
Steve Naroff563477d2007-09-18 23:55:05 +00002966// ObjCMessageExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002967Stmt::child_iterator ObjCMessageExpr::child_begin() {
Douglas Gregor04badcf2010-04-21 00:45:42 +00002968 if (getReceiverKind() == Instance)
2969 return reinterpret_cast<Stmt **>(this + 1);
Douglas Gregoraa165f82011-01-03 19:04:46 +00002970 return reinterpret_cast<Stmt **>(getArgs());
Steve Naroff563477d2007-09-18 23:55:05 +00002971}
2972Stmt::child_iterator ObjCMessageExpr::child_end() {
Douglas Gregoraa165f82011-01-03 19:04:46 +00002973 return reinterpret_cast<Stmt **>(getArgs() + getNumArgs());
Steve Naroff563477d2007-09-18 23:55:05 +00002974}
2975
Steve Naroff4eb206b2008-09-03 18:15:37 +00002976// Blocks
John McCall6b5a61b2011-02-07 10:33:21 +00002977BlockDeclRefExpr::BlockDeclRefExpr(VarDecl *d, QualType t, ExprValueKind VK,
Douglas Gregora779d9c2011-01-19 21:32:01 +00002978 SourceLocation l, bool ByRef,
John McCall6b5a61b2011-02-07 10:33:21 +00002979 bool constAdded)
Douglas Gregord967e312011-01-19 21:52:31 +00002980 : Expr(BlockDeclRefExprClass, t, VK, OK_Ordinary, false, false,
Douglas Gregora779d9c2011-01-19 21:32:01 +00002981 d->isParameterPack()),
John McCall6b5a61b2011-02-07 10:33:21 +00002982 D(d), Loc(l), IsByRef(ByRef), ConstQualAdded(constAdded)
Douglas Gregora779d9c2011-01-19 21:32:01 +00002983{
Douglas Gregord967e312011-01-19 21:52:31 +00002984 bool TypeDependent = false;
2985 bool ValueDependent = false;
2986 computeDeclRefDependence(D, getType(), TypeDependent, ValueDependent);
2987 ExprBits.TypeDependent = TypeDependent;
2988 ExprBits.ValueDependent = ValueDependent;
Douglas Gregora779d9c2011-01-19 21:32:01 +00002989}
2990
Steve Naroff56ee6892008-10-08 17:01:13 +00002991Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
2992Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff4eb206b2008-09-03 18:15:37 +00002993
Ted Kremenek9da13f92008-09-26 23:24:14 +00002994Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
2995Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }
John McCall7cd7d1a2010-11-15 23:31:06 +00002996
2997// OpaqueValueExpr
Douglas Gregorb608b982011-01-28 02:26:04 +00002998SourceRange OpaqueValueExpr::getSourceRange() const { return Loc; }
John McCall7cd7d1a2010-11-15 23:31:06 +00002999Stmt::child_iterator OpaqueValueExpr::child_begin() { return child_iterator(); }
3000Stmt::child_iterator OpaqueValueExpr::child_end() { return child_iterator(); }
3001