blob: 4c3046bed10bbfabdd5df6dbcc9075f6a3900338 [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 Lattner1b63e4f2009-06-14 01:54:56 +000023#include "clang/Basic/Builtins.h"
Chris Lattnerda5a6b62007-11-27 18:22:04 +000024#include "clang/Basic/TargetInfo.h"
Douglas Gregorcf3293e2009-11-01 20:32:48 +000025#include "llvm/Support/ErrorHandling.h"
Anders Carlsson3a082d82009-09-08 18:24:21 +000026#include "llvm/Support/raw_ostream.h"
Douglas Gregorffb4b6e2009-04-15 06:41:24 +000027#include <algorithm>
Reid Spencer5f016e22007-07-11 17:01:13 +000028using namespace clang;
29
30//===----------------------------------------------------------------------===//
31// Primary Expressions.
32//===----------------------------------------------------------------------===//
33
John McCalld5532b62009-11-23 01:53:49 +000034void ExplicitTemplateArgumentList::initializeFrom(
35 const TemplateArgumentListInfo &Info) {
36 LAngleLoc = Info.getLAngleLoc();
37 RAngleLoc = Info.getRAngleLoc();
38 NumTemplateArgs = Info.size();
39
40 TemplateArgumentLoc *ArgBuffer = getTemplateArgs();
41 for (unsigned i = 0; i != NumTemplateArgs; ++i)
42 new (&ArgBuffer[i]) TemplateArgumentLoc(Info[i]);
43}
44
45void ExplicitTemplateArgumentList::copyInto(
46 TemplateArgumentListInfo &Info) const {
47 Info.setLAngleLoc(LAngleLoc);
48 Info.setRAngleLoc(RAngleLoc);
49 for (unsigned I = 0; I != NumTemplateArgs; ++I)
50 Info.addArgument(getTemplateArgs()[I]);
51}
52
53std::size_t ExplicitTemplateArgumentList::sizeFor(
54 const TemplateArgumentListInfo &Info) {
55 return sizeof(ExplicitTemplateArgumentList) +
56 sizeof(TemplateArgumentLoc) * Info.size();
57}
58
Douglas Gregor0da76df2009-11-23 11:41:28 +000059void DeclRefExpr::computeDependence() {
60 TypeDependent = false;
61 ValueDependent = false;
62
63 NamedDecl *D = getDecl();
64
65 // (TD) C++ [temp.dep.expr]p3:
66 // An id-expression is type-dependent if it contains:
67 //
68 // and
69 //
70 // (VD) C++ [temp.dep.constexpr]p2:
71 // An identifier is value-dependent if it is:
72
73 // (TD) - an identifier that was declared with dependent type
74 // (VD) - a name declared with a dependent type,
75 if (getType()->isDependentType()) {
76 TypeDependent = true;
77 ValueDependent = true;
78 }
79 // (TD) - a conversion-function-id that specifies a dependent type
80 else if (D->getDeclName().getNameKind()
81 == DeclarationName::CXXConversionFunctionName &&
82 D->getDeclName().getCXXNameType()->isDependentType()) {
83 TypeDependent = true;
84 ValueDependent = true;
85 }
86 // (TD) - a template-id that is dependent,
87 else if (hasExplicitTemplateArgumentList() &&
88 TemplateSpecializationType::anyDependentTemplateArguments(
89 getTemplateArgs(),
90 getNumTemplateArgs())) {
91 TypeDependent = true;
92 ValueDependent = true;
93 }
94 // (VD) - the name of a non-type template parameter,
95 else if (isa<NonTypeTemplateParmDecl>(D))
96 ValueDependent = true;
97 // (VD) - a constant with integral or enumeration type and is
98 // initialized with an expression that is value-dependent.
99 else if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
100 if (Var->getType()->isIntegralType() &&
101 Var->getType().getCVRQualifiers() == Qualifiers::Const &&
102 Var->getInit() &&
103 Var->getInit()->isValueDependent())
104 ValueDependent = true;
105 }
106 // (TD) - a nested-name-specifier or a qualified-id that names a
107 // member of an unknown specialization.
108 // (handled by DependentScopeDeclRefExpr)
109}
110
Douglas Gregora2813ce2009-10-23 18:54:35 +0000111DeclRefExpr::DeclRefExpr(NestedNameSpecifier *Qualifier,
112 SourceRange QualifierRange,
John McCalldbd872f2009-12-08 09:08:17 +0000113 ValueDecl *D, SourceLocation NameLoc,
John McCalld5532b62009-11-23 01:53:49 +0000114 const TemplateArgumentListInfo *TemplateArgs,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000115 QualType T)
116 : Expr(DeclRefExprClass, T, false, false),
Douglas Gregora2813ce2009-10-23 18:54:35 +0000117 DecoratedD(D,
118 (Qualifier? HasQualifierFlag : 0) |
John McCalld5532b62009-11-23 01:53:49 +0000119 (TemplateArgs ? HasExplicitTemplateArgumentListFlag : 0)),
Douglas Gregora2813ce2009-10-23 18:54:35 +0000120 Loc(NameLoc) {
121 if (Qualifier) {
122 NameQualifier *NQ = getNameQualifier();
123 NQ->NNS = Qualifier;
124 NQ->Range = QualifierRange;
125 }
126
John McCalld5532b62009-11-23 01:53:49 +0000127 if (TemplateArgs)
128 getExplicitTemplateArgumentList()->initializeFrom(*TemplateArgs);
Douglas Gregor0da76df2009-11-23 11:41:28 +0000129
130 computeDependence();
Douglas Gregora2813ce2009-10-23 18:54:35 +0000131}
132
133DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
134 NestedNameSpecifier *Qualifier,
135 SourceRange QualifierRange,
John McCalldbd872f2009-12-08 09:08:17 +0000136 ValueDecl *D,
Douglas Gregora2813ce2009-10-23 18:54:35 +0000137 SourceLocation NameLoc,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000138 QualType T,
139 const TemplateArgumentListInfo *TemplateArgs) {
Douglas Gregora2813ce2009-10-23 18:54:35 +0000140 std::size_t Size = sizeof(DeclRefExpr);
141 if (Qualifier != 0)
142 Size += sizeof(NameQualifier);
143
John McCalld5532b62009-11-23 01:53:49 +0000144 if (TemplateArgs)
145 Size += ExplicitTemplateArgumentList::sizeFor(*TemplateArgs);
Douglas Gregora2813ce2009-10-23 18:54:35 +0000146
147 void *Mem = Context.Allocate(Size, llvm::alignof<DeclRefExpr>());
148 return new (Mem) DeclRefExpr(Qualifier, QualifierRange, D, NameLoc,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000149 TemplateArgs, T);
Douglas Gregora2813ce2009-10-23 18:54:35 +0000150}
151
152SourceRange DeclRefExpr::getSourceRange() const {
153 // FIXME: Does not handle multi-token names well, e.g., operator[].
154 SourceRange R(Loc);
155
156 if (hasQualifier())
157 R.setBegin(getQualifierRange().getBegin());
158 if (hasExplicitTemplateArgumentList())
159 R.setEnd(getRAngleLoc());
160 return R;
161}
162
Anders Carlsson3a082d82009-09-08 18:24:21 +0000163// FIXME: Maybe this should use DeclPrinter with a special "print predefined
164// expr" policy instead.
165std::string PredefinedExpr::ComputeName(ASTContext &Context, IdentType IT,
166 const Decl *CurrentDecl) {
167 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
168 if (IT != PrettyFunction)
169 return FD->getNameAsString();
170
171 llvm::SmallString<256> Name;
172 llvm::raw_svector_ostream Out(Name);
173
174 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
175 if (MD->isVirtual())
176 Out << "virtual ";
Sam Weinig4eadcc52009-12-27 01:38:20 +0000177 if (MD->isStatic())
178 Out << "static ";
Anders Carlsson3a082d82009-09-08 18:24:21 +0000179 }
180
181 PrintingPolicy Policy(Context.getLangOptions());
182 Policy.SuppressTagKind = true;
183
184 std::string Proto = FD->getQualifiedNameAsString(Policy);
185
John McCall183700f2009-09-21 23:43:11 +0000186 const FunctionType *AFT = FD->getType()->getAs<FunctionType>();
Anders Carlsson3a082d82009-09-08 18:24:21 +0000187 const FunctionProtoType *FT = 0;
188 if (FD->hasWrittenPrototype())
189 FT = dyn_cast<FunctionProtoType>(AFT);
190
191 Proto += "(";
192 if (FT) {
193 llvm::raw_string_ostream POut(Proto);
194 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
195 if (i) POut << ", ";
196 std::string Param;
197 FD->getParamDecl(i)->getType().getAsStringInternal(Param, Policy);
198 POut << Param;
199 }
200
201 if (FT->isVariadic()) {
202 if (FD->getNumParams()) POut << ", ";
203 POut << "...";
204 }
205 }
206 Proto += ")";
207
Sam Weinig4eadcc52009-12-27 01:38:20 +0000208 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
209 Qualifiers ThisQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
210 if (ThisQuals.hasConst())
211 Proto += " const";
212 if (ThisQuals.hasVolatile())
213 Proto += " volatile";
214 }
215
Sam Weinig3a1ce1e2009-12-06 23:55:13 +0000216 if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
217 AFT->getResultType().getAsStringInternal(Proto, Policy);
Anders Carlsson3a082d82009-09-08 18:24:21 +0000218
219 Out << Proto;
220
221 Out.flush();
222 return Name.str().str();
223 }
224 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
225 llvm::SmallString<256> Name;
226 llvm::raw_svector_ostream Out(Name);
227 Out << (MD->isInstanceMethod() ? '-' : '+');
228 Out << '[';
229 Out << MD->getClassInterface()->getNameAsString();
230 if (const ObjCCategoryImplDecl *CID =
231 dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext())) {
232 Out << '(';
233 Out << CID->getNameAsString();
234 Out << ')';
235 }
236 Out << ' ';
237 Out << MD->getSelector().getAsString();
238 Out << ']';
239
240 Out.flush();
241 return Name.str().str();
242 }
243 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
244 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
245 return "top level";
246 }
247 return "";
248}
249
Chris Lattnerda8249e2008-06-07 22:13:43 +0000250/// getValueAsApproximateDouble - This returns the value as an inaccurate
251/// double. Note that this may cause loss of precision, but is useful for
252/// debugging dumps, etc.
253double FloatingLiteral::getValueAsApproximateDouble() const {
254 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +0000255 bool ignored;
256 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
257 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +0000258 return V.convertToDouble();
259}
260
Chris Lattner2085fd62009-02-18 06:40:38 +0000261StringLiteral *StringLiteral::Create(ASTContext &C, const char *StrData,
262 unsigned ByteLength, bool Wide,
263 QualType Ty,
Mike Stump1eb44332009-09-09 15:08:12 +0000264 const SourceLocation *Loc,
Anders Carlssona135fb42009-03-15 18:34:13 +0000265 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +0000266 // Allocate enough space for the StringLiteral plus an array of locations for
267 // any concatenated string tokens.
268 void *Mem = C.Allocate(sizeof(StringLiteral)+
269 sizeof(SourceLocation)*(NumStrs-1),
270 llvm::alignof<StringLiteral>());
271 StringLiteral *SL = new (Mem) StringLiteral(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000272
Reid Spencer5f016e22007-07-11 17:01:13 +0000273 // OPTIMIZE: could allocate this appended to the StringLiteral.
Chris Lattner2085fd62009-02-18 06:40:38 +0000274 char *AStrData = new (C, 1) char[ByteLength];
275 memcpy(AStrData, StrData, ByteLength);
276 SL->StrData = AStrData;
277 SL->ByteLength = ByteLength;
278 SL->IsWide = Wide;
279 SL->TokLocs[0] = Loc[0];
280 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000281
Chris Lattner726e1682009-02-18 05:49:11 +0000282 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +0000283 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
284 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +0000285}
286
Douglas Gregor673ecd62009-04-15 16:35:07 +0000287StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
288 void *Mem = C.Allocate(sizeof(StringLiteral)+
289 sizeof(SourceLocation)*(NumStrs-1),
290 llvm::alignof<StringLiteral>());
291 StringLiteral *SL = new (Mem) StringLiteral(QualType());
292 SL->StrData = 0;
293 SL->ByteLength = 0;
294 SL->NumConcatenated = NumStrs;
295 return SL;
296}
297
Douglas Gregor42602bb2009-08-07 06:08:38 +0000298void StringLiteral::DoDestroy(ASTContext &C) {
Ted Kremenek8189cde2009-02-07 01:47:29 +0000299 C.Deallocate(const_cast<char*>(StrData));
Douglas Gregor42602bb2009-08-07 06:08:38 +0000300 Expr::DoDestroy(C);
Reid Spencer5f016e22007-07-11 17:01:13 +0000301}
302
Daniel Dunbarb6480232009-09-22 03:27:33 +0000303void StringLiteral::setString(ASTContext &C, llvm::StringRef Str) {
Douglas Gregor673ecd62009-04-15 16:35:07 +0000304 if (StrData)
305 C.Deallocate(const_cast<char*>(StrData));
306
Daniel Dunbarb6480232009-09-22 03:27:33 +0000307 char *AStrData = new (C, 1) char[Str.size()];
308 memcpy(AStrData, Str.data(), Str.size());
Douglas Gregor673ecd62009-04-15 16:35:07 +0000309 StrData = AStrData;
Daniel Dunbarb6480232009-09-22 03:27:33 +0000310 ByteLength = Str.size();
Douglas Gregor673ecd62009-04-15 16:35:07 +0000311}
312
Reid Spencer5f016e22007-07-11 17:01:13 +0000313/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
314/// corresponds to, e.g. "sizeof" or "[pre]++".
315const char *UnaryOperator::getOpcodeStr(Opcode Op) {
316 switch (Op) {
317 default: assert(0 && "Unknown unary operator");
318 case PostInc: return "++";
319 case PostDec: return "--";
320 case PreInc: return "++";
321 case PreDec: return "--";
322 case AddrOf: return "&";
323 case Deref: return "*";
324 case Plus: return "+";
325 case Minus: return "-";
326 case Not: return "~";
327 case LNot: return "!";
328 case Real: return "__real";
329 case Imag: return "__imag";
Reid Spencer5f016e22007-07-11 17:01:13 +0000330 case Extension: return "__extension__";
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000331 case OffsetOf: return "__builtin_offsetof";
Reid Spencer5f016e22007-07-11 17:01:13 +0000332 }
333}
334
Mike Stump1eb44332009-09-09 15:08:12 +0000335UnaryOperator::Opcode
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000336UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
337 switch (OO) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000338 default: assert(false && "No unary operator for overloaded function");
Chris Lattnerb7beee92009-03-22 00:10:22 +0000339 case OO_PlusPlus: return Postfix ? PostInc : PreInc;
340 case OO_MinusMinus: return Postfix ? PostDec : PreDec;
341 case OO_Amp: return AddrOf;
342 case OO_Star: return Deref;
343 case OO_Plus: return Plus;
344 case OO_Minus: return Minus;
345 case OO_Tilde: return Not;
346 case OO_Exclaim: return LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000347 }
348}
349
350OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
351 switch (Opc) {
352 case PostInc: case PreInc: return OO_PlusPlus;
353 case PostDec: case PreDec: return OO_MinusMinus;
354 case AddrOf: return OO_Amp;
355 case Deref: return OO_Star;
356 case Plus: return OO_Plus;
357 case Minus: return OO_Minus;
358 case Not: return OO_Tilde;
359 case LNot: return OO_Exclaim;
360 default: return OO_None;
361 }
362}
363
364
Reid Spencer5f016e22007-07-11 17:01:13 +0000365//===----------------------------------------------------------------------===//
366// Postfix Operators.
367//===----------------------------------------------------------------------===//
368
Ted Kremenek668bf912009-02-09 20:51:47 +0000369CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, Expr **args,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000370 unsigned numargs, QualType t, SourceLocation rparenloc)
Mike Stump1eb44332009-09-09 15:08:12 +0000371 : Expr(SC, t,
Douglas Gregor898574e2008-12-05 23:32:09 +0000372 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000373 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000374 NumArgs(numargs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000375
Ted Kremenek668bf912009-02-09 20:51:47 +0000376 SubExprs = new (C) Stmt*[numargs+1];
Douglas Gregorb4609802008-11-14 16:09:21 +0000377 SubExprs[FN] = fn;
378 for (unsigned i = 0; i != numargs; ++i)
379 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000380
Douglas Gregorb4609802008-11-14 16:09:21 +0000381 RParenLoc = rparenloc;
382}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000383
Ted Kremenek668bf912009-02-09 20:51:47 +0000384CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
385 QualType t, SourceLocation rparenloc)
Douglas Gregor898574e2008-12-05 23:32:09 +0000386 : Expr(CallExprClass, t,
387 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000388 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000389 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000390
391 SubExprs = new (C) Stmt*[numargs+1];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000392 SubExprs[FN] = fn;
Reid Spencer5f016e22007-07-11 17:01:13 +0000393 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000394 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000395
Reid Spencer5f016e22007-07-11 17:01:13 +0000396 RParenLoc = rparenloc;
397}
398
Mike Stump1eb44332009-09-09 15:08:12 +0000399CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
400 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000401 SubExprs = new (C) Stmt*[1];
402}
403
Douglas Gregor42602bb2009-08-07 06:08:38 +0000404void CallExpr::DoDestroy(ASTContext& C) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000405 DestroyChildren(C);
406 if (SubExprs) C.Deallocate(SubExprs);
407 this->~CallExpr();
408 C.Deallocate(this);
409}
410
Nuno Lopesd20254f2009-12-20 23:11:08 +0000411Decl *CallExpr::getCalleeDecl() {
Zhongxing Xua0042542009-07-17 07:29:51 +0000412 Expr *CEE = getCallee()->IgnoreParenCasts();
Chris Lattner6346f962009-07-17 15:46:27 +0000413 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Nuno Lopesd20254f2009-12-20 23:11:08 +0000414 return DRE->getDecl();
Nuno Lopescb1c77f2009-12-24 00:28:18 +0000415 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))
416 return ME->getMemberDecl();
Zhongxing Xua0042542009-07-17 07:29:51 +0000417
418 return 0;
419}
420
Nuno Lopesd20254f2009-12-20 23:11:08 +0000421FunctionDecl *CallExpr::getDirectCallee() {
Chris Lattnercaabf9b2009-12-21 01:10:56 +0000422 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
Nuno Lopesd20254f2009-12-20 23:11:08 +0000423}
424
Chris Lattnerd18b3292007-12-28 05:25:02 +0000425/// setNumArgs - This changes the number of arguments present in this call.
426/// Any orphaned expressions are deleted by this, and any new operands are set
427/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000428void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000429 // No change, just return.
430 if (NumArgs == getNumArgs()) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000431
Chris Lattnerd18b3292007-12-28 05:25:02 +0000432 // If shrinking # arguments, just delete the extras and forgot them.
433 if (NumArgs < getNumArgs()) {
434 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000435 getArg(i)->Destroy(C);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000436 this->NumArgs = NumArgs;
437 return;
438 }
439
440 // Otherwise, we are growing the # arguments. New an bigger argument array.
Daniel Dunbar68a049c2009-07-28 06:29:46 +0000441 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+1];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000442 // Copy over args.
443 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
444 NewSubExprs[i] = SubExprs[i];
445 // Null out new args.
446 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
447 NewSubExprs[i] = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Douglas Gregor88c9a462009-04-17 21:46:47 +0000449 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000450 SubExprs = NewSubExprs;
451 this->NumArgs = NumArgs;
452}
453
Chris Lattnercb888962008-10-06 05:00:53 +0000454/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
455/// not, return 0.
Douglas Gregor3c385e52009-02-14 18:57:46 +0000456unsigned CallExpr::isBuiltinCall(ASTContext &Context) const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000457 // All simple function calls (e.g. func()) are implicitly cast to pointer to
Mike Stump1eb44332009-09-09 15:08:12 +0000458 // function. As a result, we try and obtain the DeclRefExpr from the
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000459 // ImplicitCastExpr.
460 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
461 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000462 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000463
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000464 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
465 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000466 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000467
Anders Carlssonbcba2012008-01-31 02:13:57 +0000468 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
469 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000470 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000471
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000472 if (!FDecl->getIdentifier())
473 return 0;
474
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000475 return FDecl->getBuiltinID();
Chris Lattnercb888962008-10-06 05:00:53 +0000476}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000477
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000478QualType CallExpr::getCallReturnType() const {
479 QualType CalleeType = getCallee()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000480 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000481 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000482 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000483 CalleeType = BPT->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000484
John McCall183700f2009-09-21 23:43:11 +0000485 const FunctionType *FnType = CalleeType->getAs<FunctionType>();
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000486 return FnType->getResultType();
487}
Chris Lattnercb888962008-10-06 05:00:53 +0000488
Mike Stump1eb44332009-09-09 15:08:12 +0000489MemberExpr::MemberExpr(Expr *base, bool isarrow, NestedNameSpecifier *qual,
Eli Friedmanf595cc42009-12-04 06:40:45 +0000490 SourceRange qualrange, ValueDecl *memberdecl,
John McCalld5532b62009-11-23 01:53:49 +0000491 SourceLocation l, const TemplateArgumentListInfo *targs,
492 QualType ty)
Mike Stump1eb44332009-09-09 15:08:12 +0000493 : Expr(MemberExprClass, ty,
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000494 base->isTypeDependent() || (qual && qual->isDependent()),
495 base->isValueDependent() || (qual && qual->isDependent())),
496 Base(base), MemberDecl(memberdecl), MemberLoc(l), IsArrow(isarrow),
John McCalld5532b62009-11-23 01:53:49 +0000497 HasQualifier(qual != 0), HasExplicitTemplateArgumentList(targs) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000498 // Initialize the qualifier, if any.
499 if (HasQualifier) {
500 NameQualifier *NQ = getMemberQualifier();
501 NQ->NNS = qual;
502 NQ->Range = qualrange;
503 }
Mike Stump1eb44332009-09-09 15:08:12 +0000504
Douglas Gregorc4bf26f2009-09-01 00:37:14 +0000505 // Initialize the explicit template argument list, if any.
John McCalld5532b62009-11-23 01:53:49 +0000506 if (targs)
507 getExplicitTemplateArgumentList()->initializeFrom(*targs);
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000508}
509
Mike Stump1eb44332009-09-09 15:08:12 +0000510MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
511 NestedNameSpecifier *qual,
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000512 SourceRange qualrange,
Eli Friedmanf595cc42009-12-04 06:40:45 +0000513 ValueDecl *memberdecl,
Mike Stump1eb44332009-09-09 15:08:12 +0000514 SourceLocation l,
John McCalld5532b62009-11-23 01:53:49 +0000515 const TemplateArgumentListInfo *targs,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +0000516 QualType ty) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000517 std::size_t Size = sizeof(MemberExpr);
518 if (qual != 0)
519 Size += sizeof(NameQualifier);
Mike Stump1eb44332009-09-09 15:08:12 +0000520
John McCalld5532b62009-11-23 01:53:49 +0000521 if (targs)
522 Size += ExplicitTemplateArgumentList::sizeFor(*targs);
Mike Stump1eb44332009-09-09 15:08:12 +0000523
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000524 void *Mem = C.Allocate(Size, llvm::alignof<MemberExpr>());
Douglas Gregorc4bf26f2009-09-01 00:37:14 +0000525 return new (Mem) MemberExpr(base, isarrow, qual, qualrange, memberdecl, l,
John McCalld5532b62009-11-23 01:53:49 +0000526 targs, ty);
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000527}
528
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000529const char *CastExpr::getCastKindName() const {
530 switch (getCastKind()) {
531 case CastExpr::CK_Unknown:
532 return "Unknown";
533 case CastExpr::CK_BitCast:
534 return "BitCast";
535 case CastExpr::CK_NoOp:
536 return "NoOp";
Anders Carlsson11de6de2009-11-12 16:43:42 +0000537 case CastExpr::CK_BaseToDerived:
538 return "BaseToDerived";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000539 case CastExpr::CK_DerivedToBase:
540 return "DerivedToBase";
541 case CastExpr::CK_Dynamic:
542 return "Dynamic";
543 case CastExpr::CK_ToUnion:
544 return "ToUnion";
545 case CastExpr::CK_ArrayToPointerDecay:
546 return "ArrayToPointerDecay";
547 case CastExpr::CK_FunctionToPointerDecay:
548 return "FunctionToPointerDecay";
549 case CastExpr::CK_NullToMemberPointer:
550 return "NullToMemberPointer";
551 case CastExpr::CK_BaseToDerivedMemberPointer:
552 return "BaseToDerivedMemberPointer";
Anders Carlsson1a31a182009-10-30 00:46:35 +0000553 case CastExpr::CK_DerivedToBaseMemberPointer:
554 return "DerivedToBaseMemberPointer";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000555 case CastExpr::CK_UserDefinedConversion:
556 return "UserDefinedConversion";
557 case CastExpr::CK_ConstructorConversion:
558 return "ConstructorConversion";
Anders Carlsson7f9e6462009-09-15 04:48:33 +0000559 case CastExpr::CK_IntegralToPointer:
560 return "IntegralToPointer";
561 case CastExpr::CK_PointerToIntegral:
562 return "PointerToIntegral";
Anders Carlssonebeaf202009-10-16 02:35:04 +0000563 case CastExpr::CK_ToVoid:
564 return "ToVoid";
Anders Carlsson16a89042009-10-16 05:23:41 +0000565 case CastExpr::CK_VectorSplat:
566 return "VectorSplat";
Anders Carlsson82debc72009-10-18 18:12:03 +0000567 case CastExpr::CK_IntegralCast:
568 return "IntegralCast";
569 case CastExpr::CK_IntegralToFloating:
570 return "IntegralToFloating";
571 case CastExpr::CK_FloatingToIntegral:
572 return "FloatingToIntegral";
Benjamin Kramerc6b29162009-10-18 19:02:15 +0000573 case CastExpr::CK_FloatingCast:
574 return "FloatingCast";
Anders Carlssonbc0e0782009-11-23 20:04:44 +0000575 case CastExpr::CK_MemberPointerToBoolean:
576 return "MemberPointerToBoolean";
Fariborz Jahanian4cbf9d42009-12-08 23:46:15 +0000577 case CastExpr::CK_AnyPointerToObjCPointerCast:
578 return "AnyPointerToObjCPointerCast";
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +0000579 case CastExpr::CK_AnyPointerToBlockPointerCast:
580 return "AnyPointerToBlockPointerCast";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000581 }
Mike Stump1eb44332009-09-09 15:08:12 +0000582
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000583 assert(0 && "Unhandled cast kind!");
584 return 0;
585}
586
Douglas Gregor6eef5192009-12-14 19:27:10 +0000587Expr *CastExpr::getSubExprAsWritten() {
588 Expr *SubExpr = 0;
589 CastExpr *E = this;
590 do {
591 SubExpr = E->getSubExpr();
592
593 // Skip any temporary bindings; they're implicit.
594 if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
595 SubExpr = Binder->getSubExpr();
596
597 // Conversions by constructor and conversion functions have a
598 // subexpression describing the call; strip it off.
599 if (E->getCastKind() == CastExpr::CK_ConstructorConversion)
600 SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0);
601 else if (E->getCastKind() == CastExpr::CK_UserDefinedConversion)
602 SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument();
603
604 // If the subexpression we're left with is an implicit cast, look
605 // through that, too.
606 } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
607
608 return SubExpr;
609}
610
Reid Spencer5f016e22007-07-11 17:01:13 +0000611/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
612/// corresponds to, e.g. "<<=".
613const char *BinaryOperator::getOpcodeStr(Opcode Op) {
614 switch (Op) {
Douglas Gregorbaf53482009-03-12 22:51:37 +0000615 case PtrMemD: return ".*";
616 case PtrMemI: return "->*";
Reid Spencer5f016e22007-07-11 17:01:13 +0000617 case Mul: return "*";
618 case Div: return "/";
619 case Rem: return "%";
620 case Add: return "+";
621 case Sub: return "-";
622 case Shl: return "<<";
623 case Shr: return ">>";
624 case LT: return "<";
625 case GT: return ">";
626 case LE: return "<=";
627 case GE: return ">=";
628 case EQ: return "==";
629 case NE: return "!=";
630 case And: return "&";
631 case Xor: return "^";
632 case Or: return "|";
633 case LAnd: return "&&";
634 case LOr: return "||";
635 case Assign: return "=";
636 case MulAssign: return "*=";
637 case DivAssign: return "/=";
638 case RemAssign: return "%=";
639 case AddAssign: return "+=";
640 case SubAssign: return "-=";
641 case ShlAssign: return "<<=";
642 case ShrAssign: return ">>=";
643 case AndAssign: return "&=";
644 case XorAssign: return "^=";
645 case OrAssign: return "|=";
646 case Comma: return ",";
647 }
Douglas Gregorbaf53482009-03-12 22:51:37 +0000648
649 return "";
Reid Spencer5f016e22007-07-11 17:01:13 +0000650}
651
Mike Stump1eb44332009-09-09 15:08:12 +0000652BinaryOperator::Opcode
Douglas Gregor063daf62009-03-13 18:40:31 +0000653BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
654 switch (OO) {
Chris Lattnerb7beee92009-03-22 00:10:22 +0000655 default: assert(false && "Not an overloadable binary operator");
Douglas Gregor063daf62009-03-13 18:40:31 +0000656 case OO_Plus: return Add;
657 case OO_Minus: return Sub;
658 case OO_Star: return Mul;
659 case OO_Slash: return Div;
660 case OO_Percent: return Rem;
661 case OO_Caret: return Xor;
662 case OO_Amp: return And;
663 case OO_Pipe: return Or;
664 case OO_Equal: return Assign;
665 case OO_Less: return LT;
666 case OO_Greater: return GT;
667 case OO_PlusEqual: return AddAssign;
668 case OO_MinusEqual: return SubAssign;
669 case OO_StarEqual: return MulAssign;
670 case OO_SlashEqual: return DivAssign;
671 case OO_PercentEqual: return RemAssign;
672 case OO_CaretEqual: return XorAssign;
673 case OO_AmpEqual: return AndAssign;
674 case OO_PipeEqual: return OrAssign;
675 case OO_LessLess: return Shl;
676 case OO_GreaterGreater: return Shr;
677 case OO_LessLessEqual: return ShlAssign;
678 case OO_GreaterGreaterEqual: return ShrAssign;
679 case OO_EqualEqual: return EQ;
680 case OO_ExclaimEqual: return NE;
681 case OO_LessEqual: return LE;
682 case OO_GreaterEqual: return GE;
683 case OO_AmpAmp: return LAnd;
684 case OO_PipePipe: return LOr;
685 case OO_Comma: return Comma;
686 case OO_ArrowStar: return PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +0000687 }
688}
689
690OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
691 static const OverloadedOperatorKind OverOps[] = {
692 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
693 OO_Star, OO_Slash, OO_Percent,
694 OO_Plus, OO_Minus,
695 OO_LessLess, OO_GreaterGreater,
696 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
697 OO_EqualEqual, OO_ExclaimEqual,
698 OO_Amp,
699 OO_Caret,
700 OO_Pipe,
701 OO_AmpAmp,
702 OO_PipePipe,
703 OO_Equal, OO_StarEqual,
704 OO_SlashEqual, OO_PercentEqual,
705 OO_PlusEqual, OO_MinusEqual,
706 OO_LessLessEqual, OO_GreaterGreaterEqual,
707 OO_AmpEqual, OO_CaretEqual,
708 OO_PipeEqual,
709 OO_Comma
710 };
711 return OverOps[Opc];
712}
713
Mike Stump1eb44332009-09-09 15:08:12 +0000714InitListExpr::InitListExpr(SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +0000715 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +0000716 SourceLocation rbraceloc)
Douglas Gregor73460a32009-11-19 23:25:22 +0000717 : Expr(InitListExprClass, QualType(), false, false),
Mike Stump1eb44332009-09-09 15:08:12 +0000718 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0),
Douglas Gregor73460a32009-11-19 23:25:22 +0000719 UnionFieldInit(0), HadArrayRangeDesignator(false)
720{
721 for (unsigned I = 0; I != numInits; ++I) {
722 if (initExprs[I]->isTypeDependent())
723 TypeDependent = true;
724 if (initExprs[I]->isValueDependent())
725 ValueDependent = true;
726 }
727
Chris Lattner418f6c72008-10-26 23:43:26 +0000728 InitExprs.insert(InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000729}
Reid Spencer5f016e22007-07-11 17:01:13 +0000730
Douglas Gregorfa219202009-03-20 23:58:33 +0000731void InitListExpr::reserveInits(unsigned NumInits) {
732 if (NumInits > InitExprs.size())
733 InitExprs.reserve(NumInits);
734}
735
Douglas Gregor4c678342009-01-28 21:54:33 +0000736void InitListExpr::resizeInits(ASTContext &Context, unsigned NumInits) {
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000737 for (unsigned Idx = NumInits, LastIdx = InitExprs.size();
Daniel Dunbarf592c922009-02-16 22:42:44 +0000738 Idx < LastIdx; ++Idx)
Douglas Gregor06863682009-03-20 23:38:03 +0000739 InitExprs[Idx]->Destroy(Context);
Douglas Gregor4c678342009-01-28 21:54:33 +0000740 InitExprs.resize(NumInits, 0);
741}
742
743Expr *InitListExpr::updateInit(unsigned Init, Expr *expr) {
744 if (Init >= InitExprs.size()) {
745 InitExprs.insert(InitExprs.end(), Init - InitExprs.size() + 1, 0);
746 InitExprs.back() = expr;
747 return 0;
748 }
Mike Stump1eb44332009-09-09 15:08:12 +0000749
Douglas Gregor4c678342009-01-28 21:54:33 +0000750 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
751 InitExprs[Init] = expr;
752 return Result;
753}
754
Steve Naroffbfdcae62008-09-04 15:31:07 +0000755/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000756///
757const FunctionType *BlockExpr::getFunctionType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000758 return getType()->getAs<BlockPointerType>()->
John McCall183700f2009-09-21 23:43:11 +0000759 getPointeeType()->getAs<FunctionType>();
Steve Naroff4eb206b2008-09-03 18:15:37 +0000760}
761
Mike Stump1eb44332009-09-09 15:08:12 +0000762SourceLocation BlockExpr::getCaretLocation() const {
763 return TheBlock->getCaretLocation();
Steve Naroff56ee6892008-10-08 17:01:13 +0000764}
Mike Stump1eb44332009-09-09 15:08:12 +0000765const Stmt *BlockExpr::getBody() const {
Douglas Gregor72971342009-04-18 00:02:19 +0000766 return TheBlock->getBody();
767}
Mike Stump1eb44332009-09-09 15:08:12 +0000768Stmt *BlockExpr::getBody() {
769 return TheBlock->getBody();
Douglas Gregor72971342009-04-18 00:02:19 +0000770}
Steve Naroff56ee6892008-10-08 17:01:13 +0000771
772
Reid Spencer5f016e22007-07-11 17:01:13 +0000773//===----------------------------------------------------------------------===//
774// Generic Expression Routines
775//===----------------------------------------------------------------------===//
776
Chris Lattner026dc962009-02-14 07:37:35 +0000777/// isUnusedResultAWarning - Return true if this immediate expression should
778/// be warned about if the result is unused. If so, fill in Loc and Ranges
779/// with location to warn on and the source range[s] to report with the
780/// warning.
781bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
Mike Stumpdf317bf2009-11-03 23:25:48 +0000782 SourceRange &R2, ASTContext &Ctx) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +0000783 // Don't warn if the expr is type dependent. The type could end up
784 // instantiating to void.
785 if (isTypeDependent())
786 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000787
Reid Spencer5f016e22007-07-11 17:01:13 +0000788 switch (getStmtClass()) {
789 default:
Chris Lattner026dc962009-02-14 07:37:35 +0000790 Loc = getExprLoc();
791 R1 = getSourceRange();
792 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000793 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000794 return cast<ParenExpr>(this)->getSubExpr()->
Mike Stumpdf317bf2009-11-03 23:25:48 +0000795 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000796 case UnaryOperatorClass: {
797 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +0000798
Reid Spencer5f016e22007-07-11 17:01:13 +0000799 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000800 default: break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000801 case UnaryOperator::PostInc:
802 case UnaryOperator::PostDec:
803 case UnaryOperator::PreInc:
Chris Lattner026dc962009-02-14 07:37:35 +0000804 case UnaryOperator::PreDec: // ++/--
805 return false; // Not a warning.
Reid Spencer5f016e22007-07-11 17:01:13 +0000806 case UnaryOperator::Deref:
807 // Dereferencing a volatile pointer is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +0000808 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +0000809 return false;
810 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000811 case UnaryOperator::Real:
812 case UnaryOperator::Imag:
813 // accessing a piece of a volatile complex is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +0000814 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
815 .isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +0000816 return false;
817 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000818 case UnaryOperator::Extension:
Mike Stumpdf317bf2009-11-03 23:25:48 +0000819 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000820 }
Chris Lattner026dc962009-02-14 07:37:35 +0000821 Loc = UO->getOperatorLoc();
822 R1 = UO->getSubExpr()->getSourceRange();
823 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000824 }
Chris Lattnere7716e62007-12-01 06:07:34 +0000825 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000826 const BinaryOperator *BO = cast<BinaryOperator>(this);
827 // Consider comma to have side effects if the LHS or RHS does.
828 if (BO->getOpcode() == BinaryOperator::Comma)
Mike Stumpdf317bf2009-11-03 23:25:48 +0000829 return (BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx) ||
830 BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Mike Stump1eb44332009-09-09 15:08:12 +0000831
Chris Lattner026dc962009-02-14 07:37:35 +0000832 if (BO->isAssignmentOp())
833 return false;
834 Loc = BO->getOperatorLoc();
835 R1 = BO->getLHS()->getSourceRange();
836 R2 = BO->getRHS()->getSourceRange();
837 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +0000838 }
Chris Lattnereb14fe82007-08-25 02:00:02 +0000839 case CompoundAssignOperatorClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000840 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000841
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000842 case ConditionalOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000843 // The condition must be evaluated, but if either the LHS or RHS is a
844 // warning, warn about them.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000845 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +0000846 if (Exp->getLHS() &&
Mike Stumpdf317bf2009-11-03 23:25:48 +0000847 Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
Chris Lattner026dc962009-02-14 07:37:35 +0000848 return true;
Mike Stumpdf317bf2009-11-03 23:25:48 +0000849 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000850 }
851
Reid Spencer5f016e22007-07-11 17:01:13 +0000852 case MemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000853 // If the base pointer or element is to a volatile pointer/field, accessing
854 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +0000855 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +0000856 return false;
857 Loc = cast<MemberExpr>(this)->getMemberLoc();
858 R1 = SourceRange(Loc, Loc);
859 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
860 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000861
Reid Spencer5f016e22007-07-11 17:01:13 +0000862 case ArraySubscriptExprClass:
863 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +0000864 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +0000865 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +0000866 return false;
867 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
868 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
869 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
870 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +0000871
Reid Spencer5f016e22007-07-11 17:01:13 +0000872 case CallExprClass:
Eli Friedman852871a2009-04-29 16:35:53 +0000873 case CXXOperatorCallExprClass:
874 case CXXMemberCallExprClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000875 // If this is a direct call, get the callee.
876 const CallExpr *CE = cast<CallExpr>(this);
Nuno Lopesd20254f2009-12-20 23:11:08 +0000877 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000878 // If the callee has attribute pure, const, or warn_unused_result, warn
879 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattnerbc8d42c2009-10-13 04:53:48 +0000880 //
881 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
882 // updated to match for QoI.
883 if (FD->getAttr<WarnUnusedResultAttr>() ||
884 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
885 Loc = CE->getCallee()->getLocStart();
886 R1 = CE->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000887
Chris Lattnerbc8d42c2009-10-13 04:53:48 +0000888 if (unsigned NumArgs = CE->getNumArgs())
889 R2 = SourceRange(CE->getArg(0)->getLocStart(),
890 CE->getArg(NumArgs-1)->getLocEnd());
891 return true;
892 }
Chris Lattner026dc962009-02-14 07:37:35 +0000893 }
894 return false;
895 }
Anders Carlsson58beed92009-11-17 17:11:23 +0000896
897 case CXXTemporaryObjectExprClass:
898 case CXXConstructExprClass:
899 return false;
900
Chris Lattnera9c01022007-09-26 22:06:30 +0000901 case ObjCMessageExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000902 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000903
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000904 case ObjCImplicitSetterGetterRefExprClass: { // Dot syntax for message send.
Chris Lattnera50089e2009-08-16 16:45:18 +0000905#if 0
Mike Stump1eb44332009-09-09 15:08:12 +0000906 const ObjCImplicitSetterGetterRefExpr *Ref =
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000907 cast<ObjCImplicitSetterGetterRefExpr>(this);
Chris Lattnera50089e2009-08-16 16:45:18 +0000908 // FIXME: We really want the location of the '.' here.
Fariborz Jahanian154440e2009-08-18 20:50:23 +0000909 Loc = Ref->getLocation();
910 R1 = SourceRange(Ref->getLocation(), Ref->getLocation());
911 if (Ref->getBase())
912 R2 = Ref->getBase()->getSourceRange();
Chris Lattner5e94a0d2009-08-16 16:51:50 +0000913#else
914 Loc = getExprLoc();
915 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +0000916#endif
917 return true;
918 }
Chris Lattner611b2ec2008-07-26 19:51:01 +0000919 case StmtExprClass: {
920 // Statement exprs don't logically have side effects themselves, but are
921 // sometimes used in macros in ways that give them a type that is unused.
922 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
923 // however, if the result of the stmt expr is dead, we don't want to emit a
924 // warning.
925 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
926 if (!CS->body_empty())
927 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Mike Stumpdf317bf2009-11-03 23:25:48 +0000928 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Mike Stump1eb44332009-09-09 15:08:12 +0000929
Chris Lattner026dc962009-02-14 07:37:35 +0000930 Loc = cast<StmtExpr>(this)->getLParenLoc();
931 R1 = getSourceRange();
932 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000933 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000934 case CStyleCastExprClass:
Chris Lattnerfb846642009-07-28 18:25:28 +0000935 // If this is an explicit cast to void, allow it. People do this when they
936 // think they know what they're doing :).
Chris Lattner026dc962009-02-14 07:37:35 +0000937 if (getType()->isVoidType())
Chris Lattnerfb846642009-07-28 18:25:28 +0000938 return false;
Chris Lattner026dc962009-02-14 07:37:35 +0000939 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
940 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
941 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +0000942 case CXXFunctionalCastExprClass: {
943 const CastExpr *CE = cast<CastExpr>(this);
944
945 // If this is a cast to void or a constructor conversion, check the operand.
946 // Otherwise, the result of the cast is unused.
947 if (CE->getCastKind() == CastExpr::CK_ToVoid ||
948 CE->getCastKind() == CastExpr::CK_ConstructorConversion)
Mike Stumpdf317bf2009-11-03 23:25:48 +0000949 return (cast<CastExpr>(this)->getSubExpr()
950 ->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Chris Lattner026dc962009-02-14 07:37:35 +0000951 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
952 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
953 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +0000954 }
Mike Stump1eb44332009-09-09 15:08:12 +0000955
Eli Friedman4be1f472008-05-19 21:24:43 +0000956 case ImplicitCastExprClass:
957 // Check the operand, since implicit casts are inserted by Sema
Mike Stumpdf317bf2009-11-03 23:25:48 +0000958 return (cast<ImplicitCastExpr>(this)
959 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Eli Friedman4be1f472008-05-19 21:24:43 +0000960
Chris Lattner04421082008-04-08 04:40:51 +0000961 case CXXDefaultArgExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +0000962 return (cast<CXXDefaultArgExpr>(this)
963 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000964
965 case CXXNewExprClass:
966 // FIXME: In theory, there might be new expressions that don't have side
967 // effects (e.g. a placement new with an uninitialized POD).
968 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000969 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +0000970 case CXXBindTemporaryExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +0000971 return (cast<CXXBindTemporaryExpr>(this)
972 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Anders Carlsson6b1d2832009-05-17 21:11:30 +0000973 case CXXExprWithTemporariesClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +0000974 return (cast<CXXExprWithTemporaries>(this)
975 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000976 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000977}
978
Douglas Gregorba7e2102008-10-22 15:04:37 +0000979/// DeclCanBeLvalue - Determine whether the given declaration can be
980/// an lvalue. This is a helper routine for isLvalue.
981static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000982 // C++ [temp.param]p6:
983 // A non-type non-reference template-parameter is not an lvalue.
Mike Stump1eb44332009-09-09 15:08:12 +0000984 if (const NonTypeTemplateParmDecl *NTTParm
Douglas Gregor72c3f312008-12-05 18:15:24 +0000985 = dyn_cast<NonTypeTemplateParmDecl>(Decl))
986 return NTTParm->getType()->isReferenceType();
987
Douglas Gregor44b43212008-12-11 16:49:14 +0000988 return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) ||
Douglas Gregorba7e2102008-10-22 15:04:37 +0000989 // C++ 3.10p2: An lvalue refers to an object or function.
990 (Ctx.getLangOptions().CPlusPlus &&
John McCall51fa86f2009-12-02 08:47:38 +0000991 (isa<FunctionDecl>(Decl) || isa<FunctionTemplateDecl>(Decl)));
Douglas Gregorba7e2102008-10-22 15:04:37 +0000992}
993
Reid Spencer5f016e22007-07-11 17:01:13 +0000994/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
995/// incomplete type other than void. Nonarray expressions that can be lvalues:
996/// - name, where name must be a variable
997/// - e[i]
998/// - (e), where e must be an lvalue
999/// - e.name, where e must be an lvalue
1000/// - e->name
1001/// - *e, the type of e cannot be a function type
1002/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +00001003/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +00001004/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +00001005///
Chris Lattner28be73f2008-07-26 21:30:36 +00001006Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Eli Friedman53202852009-05-03 22:36:05 +00001007 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
1008
1009 isLvalueResult Res = isLvalueInternal(Ctx);
1010 if (Res != LV_Valid || Ctx.getLangOptions().CPlusPlus)
1011 return Res;
1012
Douglas Gregor98cd5992008-10-21 23:43:52 +00001013 // first, check the type (C99 6.3.2.1). Expressions with function
1014 // type in C are not lvalues, but they can be lvalues in C++.
Douglas Gregor83314aa2009-07-08 20:55:45 +00001015 if (TR->isFunctionType() || TR == Ctx.OverloadTy)
Reid Spencer5f016e22007-07-11 17:01:13 +00001016 return LV_NotObjectType;
1017
Steve Naroffacb818a2008-02-10 01:39:04 +00001018 // Allow qualified void which is an incomplete type other than void (yuck).
John McCall0953e762009-09-24 19:53:00 +00001019 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).hasQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +00001020 return LV_IncompleteVoidType;
1021
Eli Friedman53202852009-05-03 22:36:05 +00001022 return LV_Valid;
1023}
Bill Wendling08ad47c2007-07-17 03:52:31 +00001024
Eli Friedman53202852009-05-03 22:36:05 +00001025// Check whether the expression can be sanely treated like an l-value
1026Expr::isLvalueResult Expr::isLvalueInternal(ASTContext &Ctx) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001027 switch (getStmtClass()) {
Fariborz Jahanian820bca42009-12-09 23:35:29 +00001028 case ObjCIsaExprClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001029 case StringLiteralClass: // C99 6.5.1p4
1030 case ObjCEncodeExprClass: // @encode behaves like its string in every way.
Anders Carlsson7323a622007-11-30 22:47:59 +00001031 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +00001032 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
1033 // For vectors, make sure base is an lvalue (i.e. not a function call).
1034 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner28be73f2008-07-26 21:30:36 +00001035 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001036 return LV_Valid;
Douglas Gregora2813ce2009-10-23 18:54:35 +00001037 case DeclRefExprClass: { // C99 6.5.1p2
Douglas Gregorba7e2102008-10-22 15:04:37 +00001038 const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
1039 if (DeclCanBeLvalue(RefdDecl, Ctx))
Reid Spencer5f016e22007-07-11 17:01:13 +00001040 return LV_Valid;
1041 break;
Chris Lattner41110242008-06-17 18:05:57 +00001042 }
Steve Naroffdd972f22008-09-05 22:11:13 +00001043 case BlockDeclRefExprClass: {
1044 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
Steve Naroff4f6a7d72008-09-26 14:41:28 +00001045 if (isa<VarDecl>(BDR->getDecl()))
Steve Naroffdd972f22008-09-05 22:11:13 +00001046 return LV_Valid;
1047 break;
1048 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001049 case MemberExprClass: {
Reid Spencer5f016e22007-07-11 17:01:13 +00001050 const MemberExpr *m = cast<MemberExpr>(this);
Douglas Gregor86f19402008-12-20 23:49:58 +00001051 if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4:
1052 NamedDecl *Member = m->getMemberDecl();
1053 // C++ [expr.ref]p4:
1054 // If E2 is declared to have type "reference to T", then E1.E2
1055 // is an lvalue.
1056 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
1057 if (Value->getType()->isReferenceType())
1058 return LV_Valid;
1059
1060 // -- If E2 is a static data member [...] then E1.E2 is an lvalue.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001061 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
Douglas Gregor86f19402008-12-20 23:49:58 +00001062 return LV_Valid;
1063
1064 // -- If E2 is a non-static data member [...]. If E1 is an
1065 // lvalue, then E1.E2 is an lvalue.
Fariborz Jahanian2514a302009-12-15 23:59:41 +00001066 if (isa<FieldDecl>(Member)) {
1067 if (m->isArrow())
1068 return LV_Valid;
1069 Expr *BaseExp = m->getBase();
1070 return (BaseExp->getStmtClass() == ObjCPropertyRefExprClass) ?
1071 LV_SubObjCPropertySetting : BaseExp->isLvalue(Ctx);
1072 }
Douglas Gregor86f19402008-12-20 23:49:58 +00001073
1074 // -- If it refers to a static member function [...], then
1075 // E1.E2 is an lvalue.
1076 // -- Otherwise, if E1.E2 refers to a non-static member
1077 // function [...], then E1.E2 is not an lvalue.
1078 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
1079 return Method->isStatic()? LV_Valid : LV_MemberFunction;
1080
1081 // -- If E2 is a member enumerator [...], the expression E1.E2
1082 // is not an lvalue.
1083 if (isa<EnumConstantDecl>(Member))
1084 return LV_InvalidExpression;
1085
1086 // Not an lvalue.
1087 return LV_InvalidExpression;
Mike Stump1eb44332009-09-09 15:08:12 +00001088 }
Fariborz Jahanian2514a302009-12-15 23:59:41 +00001089
Douglas Gregor86f19402008-12-20 23:49:58 +00001090 // C99 6.5.2.3p4
Fariborz Jahanian2514a302009-12-15 23:59:41 +00001091 if (m->isArrow())
1092 return LV_Valid;
1093 Expr *BaseExp = m->getBase();
1094 return (BaseExp->getStmtClass() == ObjCPropertyRefExprClass) ?
1095 LV_SubObjCPropertySetting : BaseExp->isLvalue(Ctx);
Anton Korobeynikovfdd75662007-07-12 15:26:50 +00001096 }
Chris Lattner7da36f62007-10-30 22:53:42 +00001097 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +00001098 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +00001099 return LV_Valid; // C99 6.5.3p4
1100
1101 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattnerbaf0d662008-07-25 18:07:19 +00001102 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
1103 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner28be73f2008-07-26 21:30:36 +00001104 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Douglas Gregor74253732008-11-19 15:42:04 +00001105
1106 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1
1107 (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc ||
1108 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec))
1109 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +00001110 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001111 case ImplicitCastExprClass:
Mike Stump1eb44332009-09-09 15:08:12 +00001112 return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001113 : LV_InvalidExpression;
Reid Spencer5f016e22007-07-11 17:01:13 +00001114 case ParenExprClass: // C99 6.5.1p5
Chris Lattner28be73f2008-07-26 21:30:36 +00001115 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001116 case BinaryOperatorClass:
1117 case CompoundAssignOperatorClass: {
1118 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
Douglas Gregor337c6b92008-11-19 17:17:41 +00001119
1120 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1
1121 BinOp->getOpcode() == BinaryOperator::Comma)
1122 return BinOp->getRHS()->isLvalue(Ctx);
1123
Sebastian Redl22460502009-02-07 00:15:38 +00001124 // C++ [expr.mptr.oper]p6
Fariborz Jahanian27d4be52009-10-08 18:00:39 +00001125 // The result of a .* expression is an lvalue only if its first operand is
1126 // an lvalue and its second operand is a pointer to data member.
1127 if (BinOp->getOpcode() == BinaryOperator::PtrMemD &&
Sebastian Redl22460502009-02-07 00:15:38 +00001128 !BinOp->getType()->isFunctionType())
1129 return BinOp->getLHS()->isLvalue(Ctx);
1130
Fariborz Jahanian27d4be52009-10-08 18:00:39 +00001131 // The result of an ->* expression is an lvalue only if its second operand
1132 // is a pointer to data member.
1133 if (BinOp->getOpcode() == BinaryOperator::PtrMemI &&
1134 !BinOp->getType()->isFunctionType()) {
1135 QualType Ty = BinOp->getRHS()->getType();
1136 if (Ty->isMemberPointerType() && !Ty->isMemberFunctionPointerType())
1137 return LV_Valid;
1138 }
1139
Douglas Gregorbf3af052008-11-13 20:12:29 +00001140 if (!BinOp->isAssignmentOp())
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001141 return LV_InvalidExpression;
1142
Douglas Gregorbf3af052008-11-13 20:12:29 +00001143 if (Ctx.getLangOptions().CPlusPlus)
Mike Stump1eb44332009-09-09 15:08:12 +00001144 // C++ [expr.ass]p1:
Douglas Gregorbf3af052008-11-13 20:12:29 +00001145 // The result of an assignment operation [...] is an lvalue.
1146 return LV_Valid;
1147
1148
1149 // C99 6.5.16:
1150 // An assignment expression [...] is not an lvalue.
1151 return LV_InvalidExpression;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001152 }
Mike Stump1eb44332009-09-09 15:08:12 +00001153 case CallExprClass:
Douglas Gregor88a35142008-12-22 05:46:06 +00001154 case CXXOperatorCallExprClass:
1155 case CXXMemberCallExprClass: {
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001156 // C++0x [expr.call]p10
Douglas Gregor9d293df2008-10-28 00:22:11 +00001157 // A function call is an lvalue if and only if the result type
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001158 // is an lvalue reference.
Anders Carlsson6dde78f2009-05-26 04:57:27 +00001159 QualType ReturnType = cast<CallExpr>(this)->getCallReturnType();
1160 if (ReturnType->isLValueReferenceType())
1161 return LV_Valid;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001162
Douglas Gregor9d293df2008-10-28 00:22:11 +00001163 break;
1164 }
Steve Naroffe6386392007-12-05 04:00:10 +00001165 case CompoundLiteralExprClass: // C99 6.5.2.5p5
1166 return LV_Valid;
Chris Lattner670a62c2008-12-12 05:35:08 +00001167 case ChooseExprClass:
1168 // __builtin_choose_expr is an lvalue if the selected operand is.
Eli Friedman79769322009-03-04 05:52:32 +00001169 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->isLvalue(Ctx);
Nate Begeman213541a2008-04-18 23:10:10 +00001170 case ExtVectorElementExprClass:
1171 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +00001172 return LV_DuplicateVectorComponents;
1173 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +00001174 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
1175 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +00001176 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
1177 return LV_Valid;
Fariborz Jahanian09105f52009-08-20 17:02:02 +00001178 case ObjCImplicitSetterGetterRefExprClass: // FIXME: check if read-only property.
Chris Lattner670a62c2008-12-12 05:35:08 +00001179 return LV_Valid;
Chris Lattnerd9f69102008-08-10 01:53:14 +00001180 case PredefinedExprClass:
Douglas Gregor796da182008-11-04 14:32:21 +00001181 return LV_Valid;
John McCallba135432009-11-21 08:51:07 +00001182 case UnresolvedLookupExprClass:
1183 return LV_Valid;
Chris Lattner04421082008-04-08 04:40:51 +00001184 case CXXDefaultArgExprClass:
Chris Lattner28be73f2008-07-26 21:30:36 +00001185 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001186 case CStyleCastExprClass:
Douglas Gregor9d293df2008-10-28 00:22:11 +00001187 case CXXFunctionalCastExprClass:
1188 case CXXStaticCastExprClass:
1189 case CXXDynamicCastExprClass:
1190 case CXXReinterpretCastExprClass:
1191 case CXXConstCastExprClass:
1192 // The result of an explicit cast is an lvalue if the type we are
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001193 // casting to is an lvalue reference type. See C++ [expr.cast]p1,
Douglas Gregor9d293df2008-10-28 00:22:11 +00001194 // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2,
1195 // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001196 if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->
1197 isLValueReferenceType())
Douglas Gregor9d293df2008-10-28 00:22:11 +00001198 return LV_Valid;
1199 break;
Sebastian Redlc42e1182008-11-11 11:37:55 +00001200 case CXXTypeidExprClass:
1201 // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ...
1202 return LV_Valid;
Anders Carlsson6f680272009-08-16 03:42:12 +00001203 case CXXBindTemporaryExprClass:
1204 return cast<CXXBindTemporaryExpr>(this)->getSubExpr()->
1205 isLvalueInternal(Ctx);
Sebastian Redl76458502009-04-17 16:30:52 +00001206 case ConditionalOperatorClass: {
1207 // Complicated handling is only for C++.
1208 if (!Ctx.getLangOptions().CPlusPlus)
1209 return LV_InvalidExpression;
1210
1211 // Sema should have taken care to ensure that a CXXTemporaryObjectExpr is
1212 // everywhere there's an object converted to an rvalue. Also, any other
1213 // casts should be wrapped by ImplicitCastExprs. There's just the special
1214 // case involving throws to work out.
1215 const ConditionalOperator *Cond = cast<ConditionalOperator>(this);
Douglas Gregord5f3a0f2009-05-19 20:13:50 +00001216 Expr *True = Cond->getTrueExpr();
1217 Expr *False = Cond->getFalseExpr();
Sebastian Redl76458502009-04-17 16:30:52 +00001218 // C++0x 5.16p2
1219 // If either the second or the third operand has type (cv) void, [...]
1220 // the result [...] is an rvalue.
Douglas Gregord5f3a0f2009-05-19 20:13:50 +00001221 if (True->getType()->isVoidType() || False->getType()->isVoidType())
Sebastian Redl76458502009-04-17 16:30:52 +00001222 return LV_InvalidExpression;
1223
1224 // Both sides must be lvalues for the result to be an lvalue.
Douglas Gregord5f3a0f2009-05-19 20:13:50 +00001225 if (True->isLvalue(Ctx) != LV_Valid || False->isLvalue(Ctx) != LV_Valid)
Sebastian Redl76458502009-04-17 16:30:52 +00001226 return LV_InvalidExpression;
1227
1228 // That's it.
1229 return LV_Valid;
1230 }
1231
Douglas Gregor2d48e782009-12-19 07:07:47 +00001232 case Expr::CXXExprWithTemporariesClass:
1233 return cast<CXXExprWithTemporaries>(this)->getSubExpr()->isLvalue(Ctx);
1234
1235 case Expr::ObjCMessageExprClass:
1236 if (const ObjCMethodDecl *Method
1237 = cast<ObjCMessageExpr>(this)->getMethodDecl())
1238 if (Method->getResultType()->isLValueReferenceType())
1239 return LV_Valid;
1240 break;
1241
Reid Spencer5f016e22007-07-11 17:01:13 +00001242 default:
1243 break;
1244 }
1245 return LV_InvalidExpression;
1246}
1247
1248/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
1249/// does not have an incomplete type, does not have a const-qualified type, and
Mike Stump1eb44332009-09-09 15:08:12 +00001250/// if it is a structure or union, does not have any member (including,
Reid Spencer5f016e22007-07-11 17:01:13 +00001251/// recursively, any member or element of all contained aggregates or unions)
1252/// with a const-qualified type.
Mike Stump1eb44332009-09-09 15:08:12 +00001253Expr::isModifiableLvalueResult
Daniel Dunbar44e35f72009-04-15 00:08:05 +00001254Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
Chris Lattner28be73f2008-07-26 21:30:36 +00001255 isLvalueResult lvalResult = isLvalue(Ctx);
Mike Stump1eb44332009-09-09 15:08:12 +00001256
Reid Spencer5f016e22007-07-11 17:01:13 +00001257 switch (lvalResult) {
Mike Stump1eb44332009-09-09 15:08:12 +00001258 case LV_Valid:
Douglas Gregorae8d4672008-10-22 00:03:08 +00001259 // C++ 3.10p11: Functions cannot be modified, but pointers to
1260 // functions can be modifiable.
1261 if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
1262 return MLV_NotObjectType;
1263 break;
1264
Reid Spencer5f016e22007-07-11 17:01:13 +00001265 case LV_NotObjectType: return MLV_NotObjectType;
1266 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +00001267 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattnerca354fa2008-11-17 19:51:54 +00001268 case LV_InvalidExpression:
1269 // If the top level is a C-style cast, and the subexpression is a valid
1270 // lvalue, then this is probably a use of the old-school "cast as lvalue"
1271 // GCC extension. We don't support it, but we want to produce good
1272 // diagnostics when it happens so that the user knows why.
Daniel Dunbar44e35f72009-04-15 00:08:05 +00001273 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(IgnoreParens())) {
1274 if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) {
1275 if (Loc)
1276 *Loc = CE->getLParenLoc();
Chris Lattnerca354fa2008-11-17 19:51:54 +00001277 return MLV_LValueCast;
Daniel Dunbar44e35f72009-04-15 00:08:05 +00001278 }
1279 }
Chris Lattnerca354fa2008-11-17 19:51:54 +00001280 return MLV_InvalidExpression;
Douglas Gregor86f19402008-12-20 23:49:58 +00001281 case LV_MemberFunction: return MLV_MemberFunction;
Fariborz Jahanian2514a302009-12-15 23:59:41 +00001282 case LV_SubObjCPropertySetting: return MLV_SubObjCPropertySetting;
Reid Spencer5f016e22007-07-11 17:01:13 +00001283 }
Eli Friedman04831aa2009-03-22 23:26:56 +00001284
1285 // The following is illegal:
1286 // void takeclosure(void (^C)(void));
1287 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
1288 //
Fariborz Jahanianc3f48cd2009-09-14 16:40:48 +00001289 if (const BlockDeclRefExpr *BDR = dyn_cast<BlockDeclRefExpr>(this)) {
Eli Friedman04831aa2009-03-22 23:26:56 +00001290 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
1291 return MLV_NotBlockQualified;
1292 }
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001293
Fariborz Jahanianc3f48cd2009-09-14 16:40:48 +00001294 // Assigning to an 'implicit' property?
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001295 if (const ObjCImplicitSetterGetterRefExpr* Expr =
Fariborz Jahanianc3f48cd2009-09-14 16:40:48 +00001296 dyn_cast<ObjCImplicitSetterGetterRefExpr>(this)) {
1297 if (Expr->getSetterMethod() == 0)
1298 return MLV_NoSetterProperty;
1299 }
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001300
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001301 QualType CT = Ctx.getCanonicalType(getType());
Mike Stump1eb44332009-09-09 15:08:12 +00001302
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001303 if (CT.isConstQualified())
Reid Spencer5f016e22007-07-11 17:01:13 +00001304 return MLV_ConstQualified;
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001305 if (CT->isArrayType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001306 return MLV_ArrayType;
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001307 if (CT->isIncompleteType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001308 return MLV_IncompleteType;
Mike Stump1eb44332009-09-09 15:08:12 +00001309
Ted Kremenek6217b802009-07-29 21:53:49 +00001310 if (const RecordType *r = CT->getAs<RecordType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001311 if (r->hasConstFields())
Reid Spencer5f016e22007-07-11 17:01:13 +00001312 return MLV_ConstQualified;
1313 }
Mike Stump1eb44332009-09-09 15:08:12 +00001314
Mike Stump1eb44332009-09-09 15:08:12 +00001315 return MLV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +00001316}
1317
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001318/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian7f4f86a2009-09-08 23:38:54 +00001319/// returns true, if it is; false otherwise.
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001320bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001321 switch (getStmtClass()) {
1322 default:
1323 return false;
1324 case ObjCIvarRefExprClass:
1325 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +00001326 case Expr::UnaryOperatorClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001327 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001328 case ParenExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001329 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001330 case ImplicitCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001331 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +00001332 case CStyleCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001333 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregora2813ce2009-10-23 18:54:35 +00001334 case DeclRefExprClass: {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001335 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001336 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1337 if (VD->hasGlobalStorage())
1338 return true;
1339 QualType T = VD->getType();
Fariborz Jahanian59a53fa2009-09-16 18:09:18 +00001340 // dereferencing to a pointer is always a gc'able candidate,
1341 // unless it is __weak.
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001342 return T->isPointerType() &&
John McCall0953e762009-09-24 19:53:00 +00001343 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001344 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001345 return false;
1346 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001347 case MemberExprClass: {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001348 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001349 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001350 }
1351 case ArraySubscriptExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001352 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001353 }
1354}
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001355Expr* Expr::IgnoreParens() {
1356 Expr* E = this;
1357 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
1358 E = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00001359
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001360 return E;
1361}
1362
Chris Lattner56f34942008-02-13 01:02:39 +00001363/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
1364/// or CastExprs or ImplicitCastExprs, returning their operand.
1365Expr *Expr::IgnoreParenCasts() {
1366 Expr *E = this;
1367 while (true) {
1368 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
1369 E = P->getSubExpr();
1370 else if (CastExpr *P = dyn_cast<CastExpr>(E))
1371 E = P->getSubExpr();
Chris Lattner56f34942008-02-13 01:02:39 +00001372 else
1373 return E;
1374 }
1375}
1376
Chris Lattnerecdd8412009-03-13 17:28:01 +00001377/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
1378/// value (including ptr->int casts of the same size). Strip off any
1379/// ParenExpr or CastExprs, returning their operand.
1380Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
1381 Expr *E = this;
1382 while (true) {
1383 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
1384 E = P->getSubExpr();
1385 continue;
1386 }
Mike Stump1eb44332009-09-09 15:08:12 +00001387
Chris Lattnerecdd8412009-03-13 17:28:01 +00001388 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
1389 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
1390 // ptr<->int casts of the same width. We also ignore all identify casts.
1391 Expr *SE = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00001392
Chris Lattnerecdd8412009-03-13 17:28:01 +00001393 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
1394 E = SE;
1395 continue;
1396 }
Mike Stump1eb44332009-09-09 15:08:12 +00001397
Chris Lattnerecdd8412009-03-13 17:28:01 +00001398 if ((E->getType()->isPointerType() || E->getType()->isIntegralType()) &&
1399 (SE->getType()->isPointerType() || SE->getType()->isIntegralType()) &&
1400 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1401 E = SE;
1402 continue;
1403 }
1404 }
Mike Stump1eb44332009-09-09 15:08:12 +00001405
Chris Lattnerecdd8412009-03-13 17:28:01 +00001406 return E;
1407 }
1408}
1409
Douglas Gregor6eef5192009-12-14 19:27:10 +00001410bool Expr::isDefaultArgument() const {
1411 const Expr *E = this;
1412 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
1413 E = ICE->getSubExprAsWritten();
1414
1415 return isa<CXXDefaultArgExpr>(E);
1416}
Chris Lattnerecdd8412009-03-13 17:28:01 +00001417
Douglas Gregor898574e2008-12-05 23:32:09 +00001418/// hasAnyTypeDependentArguments - Determines if any of the expressions
1419/// in Exprs is type-dependent.
1420bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1421 for (unsigned I = 0; I < NumExprs; ++I)
1422 if (Exprs[I]->isTypeDependent())
1423 return true;
1424
1425 return false;
1426}
1427
1428/// hasAnyValueDependentArguments - Determines if any of the expressions
1429/// in Exprs is value-dependent.
1430bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1431 for (unsigned I = 0; I < NumExprs; ++I)
1432 if (Exprs[I]->isValueDependent())
1433 return true;
1434
1435 return false;
1436}
1437
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001438bool Expr::isConstantInitializer(ASTContext &Ctx) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001439 // This function is attempting whether an expression is an initializer
1440 // which can be evaluated at compile-time. isEvaluatable handles most
1441 // of the cases, but it can't deal with some initializer-specific
1442 // expressions, and it can't deal with aggregates; we deal with those here,
1443 // and fall back to isEvaluatable for the other cases.
1444
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001445 // FIXME: This function assumes the variable being assigned to
1446 // isn't a reference type!
1447
Anders Carlssone8a32b82008-11-24 05:23:59 +00001448 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001449 default: break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001450 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00001451 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001452 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00001453 return true;
Nate Begeman59b5da62009-01-18 03:20:47 +00001454 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001455 // This handles gcc's extension that allows global initializers like
1456 // "struct x {int x;} x = (struct x) {};".
1457 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00001458 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001459 return Exp->isConstantInitializer(Ctx);
Nate Begeman59b5da62009-01-18 03:20:47 +00001460 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00001461 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001462 // FIXME: This doesn't deal with fields with reference types correctly.
1463 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1464 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00001465 const InitListExpr *Exp = cast<InitListExpr>(this);
1466 unsigned numInits = Exp->getNumInits();
1467 for (unsigned i = 0; i < numInits; i++) {
Mike Stump1eb44332009-09-09 15:08:12 +00001468 if (!Exp->getInit(i)->isConstantInitializer(Ctx))
Anders Carlssone8a32b82008-11-24 05:23:59 +00001469 return false;
1470 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001471 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001472 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001473 case ImplicitValueInitExprClass:
1474 return true;
Chris Lattner3ae9f482009-10-13 07:14:16 +00001475 case ParenExprClass:
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001476 return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001477 case UnaryOperatorClass: {
1478 const UnaryOperator* Exp = cast<UnaryOperator>(this);
1479 if (Exp->getOpcode() == UnaryOperator::Extension)
1480 return Exp->getSubExpr()->isConstantInitializer(Ctx);
1481 break;
1482 }
Chris Lattner3ae9f482009-10-13 07:14:16 +00001483 case BinaryOperatorClass: {
1484 // Special case &&foo - &&bar. It would be nice to generalize this somehow
1485 // but this handles the common case.
1486 const BinaryOperator *Exp = cast<BinaryOperator>(this);
1487 if (Exp->getOpcode() == BinaryOperator::Sub &&
1488 isa<AddrLabelExpr>(Exp->getLHS()->IgnoreParenNoopCasts(Ctx)) &&
1489 isa<AddrLabelExpr>(Exp->getRHS()->IgnoreParenNoopCasts(Ctx)))
1490 return true;
1491 break;
1492 }
Chris Lattner81045d82009-04-21 05:19:11 +00001493 case ImplicitCastExprClass:
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001494 case CStyleCastExprClass:
1495 // Handle casts with a destination that's a struct or union; this
1496 // deals with both the gcc no-op struct cast extension and the
1497 // cast-to-union extension.
1498 if (getType()->isRecordType())
1499 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
Chris Lattner430656e2009-10-13 22:12:09 +00001500
1501 // Integer->integer casts can be handled here, which is important for
1502 // things like (int)(&&x-&&y). Scary but true.
1503 if (getType()->isIntegerType() &&
1504 cast<CastExpr>(this)->getSubExpr()->getType()->isIntegerType())
1505 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1506
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001507 break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001508 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001509 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00001510}
1511
Reid Spencer5f016e22007-07-11 17:01:13 +00001512/// isIntegerConstantExpr - this recursive routine will test if an expression is
Eli Friedmane28d7192009-02-26 09:29:13 +00001513/// an integer constant expression.
Reid Spencer5f016e22007-07-11 17:01:13 +00001514
1515/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
1516/// comma, etc
1517///
Chris Lattnerce0afc02007-07-18 05:21:20 +00001518/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
1519/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
1520/// cast+dereference.
Daniel Dunbar2d6744f2009-02-18 00:47:45 +00001521
Eli Friedmane28d7192009-02-26 09:29:13 +00001522// CheckICE - This function does the fundamental ICE checking: the returned
1523// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
1524// Note that to reduce code duplication, this helper does no evaluation
Mike Stump1eb44332009-09-09 15:08:12 +00001525// itself; the caller checks whether the expression is evaluatable, and
Eli Friedmane28d7192009-02-26 09:29:13 +00001526// in the rare cases where CheckICE actually cares about the evaluated
Mike Stump1eb44332009-09-09 15:08:12 +00001527// value, it calls into Evalute.
Eli Friedmane28d7192009-02-26 09:29:13 +00001528//
1529// Meanings of Val:
1530// 0: This expression is an ICE if it can be evaluated by Evaluate.
1531// 1: This expression is not an ICE, but if it isn't evaluated, it's
1532// a legal subexpression for an ICE. This return value is used to handle
1533// the comma operator in C99 mode.
1534// 2: This expression is not an ICE, and is not a legal subexpression for one.
1535
1536struct ICEDiag {
1537 unsigned Val;
1538 SourceLocation Loc;
1539
1540 public:
1541 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
1542 ICEDiag() : Val(0) {}
1543};
1544
1545ICEDiag NoDiag() { return ICEDiag(); }
1546
Eli Friedman60ce9632009-02-27 04:07:58 +00001547static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
1548 Expr::EvalResult EVResult;
1549 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1550 !EVResult.Val.isInt()) {
1551 return ICEDiag(2, E->getLocStart());
1552 }
1553 return NoDiag();
1554}
1555
Eli Friedmane28d7192009-02-26 09:29:13 +00001556static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
Anders Carlssonc3082412009-03-14 00:33:21 +00001557 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001558 if (!E->getType()->isIntegralType()) {
1559 return ICEDiag(2, E->getLocStart());
Eli Friedmana6afa762008-11-13 06:09:17 +00001560 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001561
1562 switch (E->getStmtClass()) {
Douglas Gregorf2991242009-09-10 23:31:45 +00001563#define STMT(Node, Base) case Expr::Node##Class:
1564#define EXPR(Node, Base)
1565#include "clang/AST/StmtNodes.def"
1566 case Expr::PredefinedExprClass:
1567 case Expr::FloatingLiteralClass:
1568 case Expr::ImaginaryLiteralClass:
1569 case Expr::StringLiteralClass:
1570 case Expr::ArraySubscriptExprClass:
1571 case Expr::MemberExprClass:
1572 case Expr::CompoundAssignOperatorClass:
1573 case Expr::CompoundLiteralExprClass:
1574 case Expr::ExtVectorElementExprClass:
1575 case Expr::InitListExprClass:
1576 case Expr::DesignatedInitExprClass:
1577 case Expr::ImplicitValueInitExprClass:
1578 case Expr::ParenListExprClass:
1579 case Expr::VAArgExprClass:
1580 case Expr::AddrLabelExprClass:
1581 case Expr::StmtExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001582 case Expr::CXXMemberCallExprClass:
1583 case Expr::CXXDynamicCastExprClass:
1584 case Expr::CXXTypeidExprClass:
1585 case Expr::CXXNullPtrLiteralExprClass:
1586 case Expr::CXXThisExprClass:
1587 case Expr::CXXThrowExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001588 case Expr::CXXNewExprClass:
1589 case Expr::CXXDeleteExprClass:
1590 case Expr::CXXPseudoDestructorExprClass:
John McCallba135432009-11-21 08:51:07 +00001591 case Expr::UnresolvedLookupExprClass:
John McCall865d4472009-11-19 22:55:06 +00001592 case Expr::DependentScopeDeclRefExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001593 case Expr::CXXConstructExprClass:
1594 case Expr::CXXBindTemporaryExprClass:
1595 case Expr::CXXExprWithTemporariesClass:
1596 case Expr::CXXTemporaryObjectExprClass:
1597 case Expr::CXXUnresolvedConstructExprClass:
John McCall865d4472009-11-19 22:55:06 +00001598 case Expr::CXXDependentScopeMemberExprClass:
John McCall129e2df2009-11-30 22:42:35 +00001599 case Expr::UnresolvedMemberExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001600 case Expr::ObjCStringLiteralClass:
1601 case Expr::ObjCEncodeExprClass:
1602 case Expr::ObjCMessageExprClass:
1603 case Expr::ObjCSelectorExprClass:
1604 case Expr::ObjCProtocolExprClass:
1605 case Expr::ObjCIvarRefExprClass:
1606 case Expr::ObjCPropertyRefExprClass:
1607 case Expr::ObjCImplicitSetterGetterRefExprClass:
1608 case Expr::ObjCSuperExprClass:
1609 case Expr::ObjCIsaExprClass:
1610 case Expr::ShuffleVectorExprClass:
1611 case Expr::BlockExprClass:
1612 case Expr::BlockDeclRefExprClass:
1613 case Expr::NoStmtClass:
1614 case Expr::ExprClass:
Eli Friedmane28d7192009-02-26 09:29:13 +00001615 return ICEDiag(2, E->getLocStart());
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001616
Douglas Gregor043cad22009-09-11 00:18:58 +00001617 case Expr::GNUNullExprClass:
1618 // GCC considers the GNU __null value to be an integral constant expression.
1619 return NoDiag();
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001620
Eli Friedmane28d7192009-02-26 09:29:13 +00001621 case Expr::ParenExprClass:
1622 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
1623 case Expr::IntegerLiteralClass:
1624 case Expr::CharacterLiteralClass:
1625 case Expr::CXXBoolLiteralExprClass:
1626 case Expr::CXXZeroInitValueExprClass:
1627 case Expr::TypesCompatibleExprClass:
1628 case Expr::UnaryTypeTraitExprClass:
1629 return NoDiag();
Mike Stump1eb44332009-09-09 15:08:12 +00001630 case Expr::CallExprClass:
Eli Friedmane28d7192009-02-26 09:29:13 +00001631 case Expr::CXXOperatorCallExprClass: {
1632 const CallExpr *CE = cast<CallExpr>(E);
Eli Friedman60ce9632009-02-27 04:07:58 +00001633 if (CE->isBuiltinCall(Ctx))
1634 return CheckEvalInICE(E, Ctx);
Eli Friedmane28d7192009-02-26 09:29:13 +00001635 return ICEDiag(2, E->getLocStart());
Chris Lattner2eadfb62007-07-15 23:32:58 +00001636 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001637 case Expr::DeclRefExprClass:
Eli Friedmane28d7192009-02-26 09:29:13 +00001638 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
1639 return NoDiag();
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001640 if (Ctx.getLangOptions().CPlusPlus &&
John McCall0953e762009-09-24 19:53:00 +00001641 E->getType().getCVRQualifiers() == Qualifiers::Const) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001642 // C++ 7.1.5.1p2
1643 // A variable of non-volatile const-qualified integral or enumeration
1644 // type initialized by an ICE can be used in ICEs.
1645 if (const VarDecl *Dcl =
Eli Friedmane28d7192009-02-26 09:29:13 +00001646 dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) {
Douglas Gregorcf3293e2009-11-01 20:32:48 +00001647 Qualifiers Quals = Ctx.getCanonicalType(Dcl->getType()).getQualifiers();
1648 if (Quals.hasVolatile() || !Quals.hasConst())
1649 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
1650
1651 // Look for the definition of this variable, which will actually have
1652 // an initializer.
1653 const VarDecl *Def = 0;
1654 const Expr *Init = Dcl->getDefinition(Def);
1655 if (Init) {
1656 if (Def->isInitKnownICE()) {
1657 // We have already checked whether this subexpression is an
1658 // integral constant expression.
1659 if (Def->isInitICE())
1660 return NoDiag();
1661 else
1662 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
1663 }
Douglas Gregor78d15832009-05-26 18:54:04 +00001664
Douglas Gregorcf3293e2009-11-01 20:32:48 +00001665 // C++ [class.static.data]p4:
1666 // If a static data member is of const integral or const
1667 // enumeration type, its declaration in the class definition can
1668 // specify a constant-initializer which shall be an integral
1669 // constant expression (5.19). In that case, the member can appear
1670 // in integral constant expressions.
1671 if (Def->isOutOfLine()) {
Eli Friedmanc0131182009-12-03 20:31:57 +00001672 Dcl->setInitKnownICE(false);
Douglas Gregorcf3293e2009-11-01 20:32:48 +00001673 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
1674 }
Eli Friedmanc0131182009-12-03 20:31:57 +00001675
1676 if (Dcl->isCheckingICE()) {
1677 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
1678 }
1679
1680 Dcl->setCheckingICE();
Douglas Gregor78d15832009-05-26 18:54:04 +00001681 ICEDiag Result = CheckICE(Init, Ctx);
1682 // Cache the result of the ICE test.
Eli Friedmanc0131182009-12-03 20:31:57 +00001683 Dcl->setInitKnownICE(Result.Val == 0);
Douglas Gregor78d15832009-05-26 18:54:04 +00001684 return Result;
1685 }
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001686 }
1687 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001688 return ICEDiag(2, E->getLocStart());
1689 case Expr::UnaryOperatorClass: {
1690 const UnaryOperator *Exp = cast<UnaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001691 switch (Exp->getOpcode()) {
Douglas Gregorf2991242009-09-10 23:31:45 +00001692 case UnaryOperator::PostInc:
1693 case UnaryOperator::PostDec:
1694 case UnaryOperator::PreInc:
1695 case UnaryOperator::PreDec:
1696 case UnaryOperator::AddrOf:
1697 case UnaryOperator::Deref:
Eli Friedmane28d7192009-02-26 09:29:13 +00001698 return ICEDiag(2, E->getLocStart());
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001699
Reid Spencer5f016e22007-07-11 17:01:13 +00001700 case UnaryOperator::Extension:
Eli Friedmane28d7192009-02-26 09:29:13 +00001701 case UnaryOperator::LNot:
Reid Spencer5f016e22007-07-11 17:01:13 +00001702 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001703 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001704 case UnaryOperator::Not:
Eli Friedman60ce9632009-02-27 04:07:58 +00001705 case UnaryOperator::Real:
1706 case UnaryOperator::Imag:
Eli Friedmane28d7192009-02-26 09:29:13 +00001707 return CheckICE(Exp->getSubExpr(), Ctx);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001708 case UnaryOperator::OffsetOf:
Eli Friedman60ce9632009-02-27 04:07:58 +00001709 // Note that per C99, offsetof must be an ICE. And AFAIK, using
1710 // Evaluate matches the proposed gcc behavior for cases like
1711 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
1712 // compliance: we should warn earlier for offsetof expressions with
1713 // array subscripts that aren't ICEs, and if the array subscripts
1714 // are ICEs, the value of the offsetof must be an integer constant.
1715 return CheckEvalInICE(E, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001716 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001717 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001718 case Expr::SizeOfAlignOfExprClass: {
1719 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
1720 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
1721 return ICEDiag(2, E->getLocStart());
1722 return NoDiag();
Reid Spencer5f016e22007-07-11 17:01:13 +00001723 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001724 case Expr::BinaryOperatorClass: {
1725 const BinaryOperator *Exp = cast<BinaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001726 switch (Exp->getOpcode()) {
Douglas Gregorf2991242009-09-10 23:31:45 +00001727 case BinaryOperator::PtrMemD:
1728 case BinaryOperator::PtrMemI:
1729 case BinaryOperator::Assign:
1730 case BinaryOperator::MulAssign:
1731 case BinaryOperator::DivAssign:
1732 case BinaryOperator::RemAssign:
1733 case BinaryOperator::AddAssign:
1734 case BinaryOperator::SubAssign:
1735 case BinaryOperator::ShlAssign:
1736 case BinaryOperator::ShrAssign:
1737 case BinaryOperator::AndAssign:
1738 case BinaryOperator::XorAssign:
1739 case BinaryOperator::OrAssign:
Eli Friedmane28d7192009-02-26 09:29:13 +00001740 return ICEDiag(2, E->getLocStart());
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001741
Reid Spencer5f016e22007-07-11 17:01:13 +00001742 case BinaryOperator::Mul:
Reid Spencer5f016e22007-07-11 17:01:13 +00001743 case BinaryOperator::Div:
Reid Spencer5f016e22007-07-11 17:01:13 +00001744 case BinaryOperator::Rem:
Eli Friedmane28d7192009-02-26 09:29:13 +00001745 case BinaryOperator::Add:
1746 case BinaryOperator::Sub:
Reid Spencer5f016e22007-07-11 17:01:13 +00001747 case BinaryOperator::Shl:
Reid Spencer5f016e22007-07-11 17:01:13 +00001748 case BinaryOperator::Shr:
Eli Friedmane28d7192009-02-26 09:29:13 +00001749 case BinaryOperator::LT:
1750 case BinaryOperator::GT:
1751 case BinaryOperator::LE:
1752 case BinaryOperator::GE:
1753 case BinaryOperator::EQ:
1754 case BinaryOperator::NE:
1755 case BinaryOperator::And:
1756 case BinaryOperator::Xor:
1757 case BinaryOperator::Or:
1758 case BinaryOperator::Comma: {
1759 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1760 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001761 if (Exp->getOpcode() == BinaryOperator::Div ||
1762 Exp->getOpcode() == BinaryOperator::Rem) {
1763 // Evaluate gives an error for undefined Div/Rem, so make sure
1764 // we don't evaluate one.
1765 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
1766 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
1767 if (REval == 0)
1768 return ICEDiag(1, E->getLocStart());
1769 if (REval.isSigned() && REval.isAllOnesValue()) {
1770 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
1771 if (LEval.isMinSignedValue())
1772 return ICEDiag(1, E->getLocStart());
1773 }
1774 }
1775 }
1776 if (Exp->getOpcode() == BinaryOperator::Comma) {
1777 if (Ctx.getLangOptions().C99) {
1778 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
1779 // if it isn't evaluated.
1780 if (LHSResult.Val == 0 && RHSResult.Val == 0)
1781 return ICEDiag(1, E->getLocStart());
1782 } else {
1783 // In both C89 and C++, commas in ICEs are illegal.
1784 return ICEDiag(2, E->getLocStart());
1785 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001786 }
1787 if (LHSResult.Val >= RHSResult.Val)
1788 return LHSResult;
1789 return RHSResult;
1790 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001791 case BinaryOperator::LAnd:
Eli Friedmane28d7192009-02-26 09:29:13 +00001792 case BinaryOperator::LOr: {
1793 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1794 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
1795 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
1796 // Rare case where the RHS has a comma "side-effect"; we need
1797 // to actually check the condition to see whether the side
1798 // with the comma is evaluated.
Eli Friedmane28d7192009-02-26 09:29:13 +00001799 if ((Exp->getOpcode() == BinaryOperator::LAnd) !=
Eli Friedman60ce9632009-02-27 04:07:58 +00001800 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
Eli Friedmane28d7192009-02-26 09:29:13 +00001801 return RHSResult;
1802 return NoDiag();
Eli Friedmanb11e7782008-11-13 02:13:11 +00001803 }
Eli Friedman60ce9632009-02-27 04:07:58 +00001804
Eli Friedmane28d7192009-02-26 09:29:13 +00001805 if (LHSResult.Val >= RHSResult.Val)
1806 return LHSResult;
1807 return RHSResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001808 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001809 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001810 }
Douglas Gregorf2991242009-09-10 23:31:45 +00001811 case Expr::CastExprClass:
Eli Friedmane28d7192009-02-26 09:29:13 +00001812 case Expr::ImplicitCastExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001813 case Expr::ExplicitCastExprClass:
Eli Friedmane28d7192009-02-26 09:29:13 +00001814 case Expr::CStyleCastExprClass:
Douglas Gregor59600d82009-09-10 17:44:23 +00001815 case Expr::CXXFunctionalCastExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001816 case Expr::CXXNamedCastExprClass:
Douglas Gregor59600d82009-09-10 17:44:23 +00001817 case Expr::CXXStaticCastExprClass:
1818 case Expr::CXXReinterpretCastExprClass:
1819 case Expr::CXXConstCastExprClass: {
Eli Friedmane28d7192009-02-26 09:29:13 +00001820 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
1821 if (SubExpr->getType()->isIntegralType())
1822 return CheckICE(SubExpr, Ctx);
1823 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
1824 return NoDiag();
1825 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001826 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001827 case Expr::ConditionalOperatorClass: {
1828 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001829 // If the condition (ignoring parens) is a __builtin_constant_p call,
Chris Lattner28daa532008-12-12 06:55:44 +00001830 // then only the true side is actually considered in an integer constant
Chris Lattner42b83dd2008-12-12 18:00:51 +00001831 // expression, and it is fully evaluated. This is an important GNU
1832 // extension. See GCC PR38377 for discussion.
Eli Friedmane28d7192009-02-26 09:29:13 +00001833 if (const CallExpr *CallCE = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001834 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001835 Expr::EvalResult EVResult;
1836 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1837 !EVResult.Val.isInt()) {
Eli Friedman60ce9632009-02-27 04:07:58 +00001838 return ICEDiag(2, E->getLocStart());
Eli Friedmane28d7192009-02-26 09:29:13 +00001839 }
1840 return NoDiag();
Chris Lattner42b83dd2008-12-12 18:00:51 +00001841 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001842 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
1843 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
1844 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
1845 if (CondResult.Val == 2)
1846 return CondResult;
1847 if (TrueResult.Val == 2)
1848 return TrueResult;
1849 if (FalseResult.Val == 2)
1850 return FalseResult;
1851 if (CondResult.Val == 1)
1852 return CondResult;
1853 if (TrueResult.Val == 0 && FalseResult.Val == 0)
1854 return NoDiag();
1855 // Rare case where the diagnostics depend on which side is evaluated
1856 // Note that if we get here, CondResult is 0, and at least one of
1857 // TrueResult and FalseResult is non-zero.
Eli Friedman60ce9632009-02-27 04:07:58 +00001858 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001859 return FalseResult;
1860 }
1861 return TrueResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001862 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001863 case Expr::CXXDefaultArgExprClass:
1864 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001865 case Expr::ChooseExprClass: {
Eli Friedman79769322009-03-04 05:52:32 +00001866 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001867 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001868 }
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001869
Douglas Gregorf2991242009-09-10 23:31:45 +00001870 // Silence a GCC warning
1871 return ICEDiag(2, E->getLocStart());
Eli Friedmane28d7192009-02-26 09:29:13 +00001872}
Reid Spencer5f016e22007-07-11 17:01:13 +00001873
Eli Friedmane28d7192009-02-26 09:29:13 +00001874bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
1875 SourceLocation *Loc, bool isEvaluated) const {
1876 ICEDiag d = CheckICE(this, Ctx);
1877 if (d.Val != 0) {
1878 if (Loc) *Loc = d.Loc;
1879 return false;
1880 }
1881 EvalResult EvalResult;
Eli Friedman60ce9632009-02-27 04:07:58 +00001882 if (!Evaluate(EvalResult, Ctx))
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00001883 llvm_unreachable("ICE cannot be evaluated!");
Eli Friedman60ce9632009-02-27 04:07:58 +00001884 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
1885 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001886 Result = EvalResult.Val.getInt();
Reid Spencer5f016e22007-07-11 17:01:13 +00001887 return true;
1888}
1889
Reid Spencer5f016e22007-07-11 17:01:13 +00001890/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1891/// integer constant expression with the value zero, or if this is one that is
1892/// cast to void*.
Douglas Gregorce940492009-09-25 04:25:58 +00001893bool Expr::isNullPointerConstant(ASTContext &Ctx,
1894 NullPointerConstantValueDependence NPC) const {
1895 if (isValueDependent()) {
1896 switch (NPC) {
1897 case NPC_NeverValueDependent:
1898 assert(false && "Unexpected value dependent expression!");
1899 // If the unthinkable happens, fall through to the safest alternative.
1900
1901 case NPC_ValueDependentIsNull:
1902 return isTypeDependent() || getType()->isIntegralType();
1903
1904 case NPC_ValueDependentIsNotNull:
1905 return false;
1906 }
1907 }
Daniel Dunbarf515b222009-09-18 08:46:16 +00001908
Sebastian Redl07779722008-10-31 14:43:28 +00001909 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001910 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00001911 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00001912 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00001913 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00001914 QualType Pointee = PT->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00001915 if (!Pointee.hasQualifiers() &&
Sebastian Redl07779722008-10-31 14:43:28 +00001916 Pointee->isVoidType() && // to void*
1917 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregorce940492009-09-25 04:25:58 +00001918 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl07779722008-10-31 14:43:28 +00001919 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001920 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001921 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1922 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregorce940492009-09-25 04:25:58 +00001923 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroffaa58f002008-01-14 16:10:57 +00001924 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1925 // Accept ((void*)0) as a null pointer constant, as many other
1926 // implementations do.
Douglas Gregorce940492009-09-25 04:25:58 +00001927 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump1eb44332009-09-09 15:08:12 +00001928 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner8123a952008-04-10 02:22:51 +00001929 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001930 // See through default argument expressions
Douglas Gregorce940492009-09-25 04:25:58 +00001931 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001932 } else if (isa<GNUNullExpr>(this)) {
1933 // The GNU __null extension is always a null pointer constant.
1934 return true;
Steve Naroffaaffbf72008-01-14 02:53:34 +00001935 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001936
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001937 // C++0x nullptr_t is always a null pointer constant.
1938 if (getType()->isNullPtrType())
1939 return true;
1940
Steve Naroffaa58f002008-01-14 16:10:57 +00001941 // This expression must be an integer type.
Fariborz Jahanian56fc0d12009-10-06 00:09:31 +00001942 if (!getType()->isIntegerType() ||
1943 (Ctx.getLangOptions().CPlusPlus && getType()->isEnumeralType()))
Steve Naroffaa58f002008-01-14 16:10:57 +00001944 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001945
Reid Spencer5f016e22007-07-11 17:01:13 +00001946 // If we have an integer constant expression, we need to *evaluate* it and
1947 // test for the value 0.
Eli Friedman09de1762009-04-25 22:37:12 +00001948 llvm::APSInt Result;
1949 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001950}
Steve Naroff31a45842007-07-28 23:10:27 +00001951
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001952FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00001953 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001954
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001955 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00001956 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001957 if (Field->isBitField())
1958 return Field;
1959
1960 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
1961 if (BinOp->isAssignmentOp() && BinOp->getLHS())
1962 return BinOp->getLHS()->getBitField();
1963
1964 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001965}
1966
Chris Lattner2140e902009-02-16 22:14:05 +00001967/// isArrow - Return true if the base expression is a pointer to vector,
1968/// return false if the base expression is a vector.
1969bool ExtVectorElementExpr::isArrow() const {
1970 return getBase()->getType()->isPointerType();
1971}
1972
Nate Begeman213541a2008-04-18 23:10:10 +00001973unsigned ExtVectorElementExpr::getNumElements() const {
John McCall183700f2009-09-21 23:43:11 +00001974 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begeman8a997642008-05-09 06:41:27 +00001975 return VT->getNumElements();
1976 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001977}
1978
Nate Begeman8a997642008-05-09 06:41:27 +00001979/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001980bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbara2b34eb2009-10-18 02:09:09 +00001981 // FIXME: Refactor this code to an accessor on the AST node which returns the
1982 // "type" of component access, and share with code below and in Sema.
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001983 llvm::StringRef Comp = Accessor->getName();
Nate Begeman190d6a22009-01-18 02:01:21 +00001984
1985 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar15027422009-10-17 23:53:04 +00001986 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman190d6a22009-01-18 02:01:21 +00001987 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001988
Nate Begeman190d6a22009-01-18 02:01:21 +00001989 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar15027422009-10-17 23:53:04 +00001990 if (Comp[0] == 's' || Comp[0] == 'S')
1991 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001992
Daniel Dunbar15027422009-10-17 23:53:04 +00001993 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
1994 if (Comp.substr(i + 1).find(Comp[i]) != llvm::StringRef::npos)
Steve Narofffec0b492007-07-30 03:29:09 +00001995 return true;
Daniel Dunbar15027422009-10-17 23:53:04 +00001996
Steve Narofffec0b492007-07-30 03:29:09 +00001997 return false;
1998}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001999
Nate Begeman8a997642008-05-09 06:41:27 +00002000/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00002001void ExtVectorElementExpr::getEncodedElementAccess(
2002 llvm::SmallVectorImpl<unsigned> &Elts) const {
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002003 llvm::StringRef Comp = Accessor->getName();
2004 if (Comp[0] == 's' || Comp[0] == 'S')
2005 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002006
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002007 bool isHi = Comp == "hi";
2008 bool isLo = Comp == "lo";
2009 bool isEven = Comp == "even";
2010 bool isOdd = Comp == "odd";
Mike Stump1eb44332009-09-09 15:08:12 +00002011
Nate Begeman8a997642008-05-09 06:41:27 +00002012 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
2013 uint64_t Index;
Mike Stump1eb44332009-09-09 15:08:12 +00002014
Nate Begeman8a997642008-05-09 06:41:27 +00002015 if (isHi)
2016 Index = e + i;
2017 else if (isLo)
2018 Index = i;
2019 else if (isEven)
2020 Index = 2 * i;
2021 else if (isOdd)
2022 Index = 2 * i + 1;
2023 else
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002024 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002025
Nate Begeman3b8d1162008-05-13 21:03:02 +00002026 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002027 }
Nate Begeman8a997642008-05-09 06:41:27 +00002028}
2029
Steve Naroff68d331a2007-09-27 14:38:14 +00002030// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00002031ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002032 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00002033 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00002034 Expr **ArgExprs, unsigned nargs)
Eli Friedman2333f772009-12-30 00:13:48 +00002035 : Expr(ObjCMessageExprClass, retType, false, false), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00002036 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00002037 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00002038 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00002039 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00002040 if (NumArgs) {
2041 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00002042 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
2043 }
Steve Naroff563477d2007-09-18 23:55:05 +00002044 LBracloc = LBrac;
2045 RBracloc = RBrac;
2046}
2047
Mike Stump1eb44332009-09-09 15:08:12 +00002048// constructor for class messages.
Steve Naroff68d331a2007-09-27 14:38:14 +00002049// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00002050ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002051 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00002052 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00002053 Expr **ArgExprs, unsigned nargs)
Eli Friedman2333f772009-12-30 00:13:48 +00002054 : Expr(ObjCMessageExprClass, retType, false, false), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00002055 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00002056 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00002057 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenek4df728e2008-06-24 15:50:53 +00002058 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff49f109c2007-11-15 13:05:42 +00002059 if (NumArgs) {
2060 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00002061 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
2062 }
Steve Naroff563477d2007-09-18 23:55:05 +00002063 LBracloc = LBrac;
2064 RBracloc = RBrac;
2065}
2066
Mike Stump1eb44332009-09-09 15:08:12 +00002067// constructor for class messages.
Ted Kremenek4df728e2008-06-24 15:50:53 +00002068ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
2069 QualType retType, ObjCMethodDecl *mproto,
2070 SourceLocation LBrac, SourceLocation RBrac,
2071 Expr **ArgExprs, unsigned nargs)
Eli Friedman2333f772009-12-30 00:13:48 +00002072: Expr(ObjCMessageExprClass, retType, false, false), SelName(selInfo),
Ted Kremenek4df728e2008-06-24 15:50:53 +00002073MethodProto(mproto) {
2074 NumArgs = nargs;
2075 SubExprs = new Stmt*[NumArgs+1];
2076 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
2077 if (NumArgs) {
2078 for (unsigned i = 0; i != NumArgs; ++i)
2079 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
2080 }
2081 LBracloc = LBrac;
2082 RBracloc = RBrac;
2083}
2084
2085ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
2086 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
2087 switch (x & Flags) {
2088 default:
2089 assert(false && "Invalid ObjCMessageExpr.");
2090 case IsInstMeth:
2091 return ClassInfo(0, 0);
2092 case IsClsMethDeclUnknown:
2093 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
2094 case IsClsMethDeclKnown: {
2095 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
2096 return ClassInfo(D, D->getIdentifier());
2097 }
2098 }
2099}
2100
Chris Lattner0389e6b2009-04-26 00:44:05 +00002101void ObjCMessageExpr::setClassInfo(const ObjCMessageExpr::ClassInfo &CI) {
2102 if (CI.first == 0 && CI.second == 0)
2103 SubExprs[RECEIVER] = (Expr*)((uintptr_t)0 | IsInstMeth);
2104 else if (CI.first == 0)
2105 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.second | IsClsMethDeclUnknown);
2106 else
2107 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.first | IsClsMethDeclKnown);
2108}
2109
2110
Chris Lattner27437ca2007-10-25 00:29:32 +00002111bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Eli Friedman9a901bb2009-04-26 19:19:15 +00002112 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00002113}
2114
Nate Begeman888376a2009-08-12 02:28:50 +00002115void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
2116 unsigned NumExprs) {
2117 if (SubExprs) C.Deallocate(SubExprs);
2118
2119 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00002120 this->NumExprs = NumExprs;
2121 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump1eb44332009-09-09 15:08:12 +00002122}
Nate Begeman888376a2009-08-12 02:28:50 +00002123
2124void ShuffleVectorExpr::DoDestroy(ASTContext& C) {
2125 DestroyChildren(C);
2126 if (SubExprs) C.Deallocate(SubExprs);
2127 this->~ShuffleVectorExpr();
2128 C.Deallocate(this);
Douglas Gregor94cd5d12009-04-16 00:01:45 +00002129}
2130
Douglas Gregor42602bb2009-08-07 06:08:38 +00002131void SizeOfAlignOfExpr::DoDestroy(ASTContext& C) {
Sebastian Redl05189992008-11-11 17:56:53 +00002132 // Override default behavior of traversing children. If this has a type
2133 // operand and the type is a variable-length array, the child iteration
2134 // will iterate over the size expression. However, this expression belongs
2135 // to the type, not to this, so we don't want to delete it.
2136 // We still want to delete this expression.
Ted Kremenek8189cde2009-02-07 01:47:29 +00002137 if (isArgumentType()) {
2138 this->~SizeOfAlignOfExpr();
2139 C.Deallocate(this);
2140 }
Sebastian Redl05189992008-11-11 17:56:53 +00002141 else
Douglas Gregor42602bb2009-08-07 06:08:38 +00002142 Expr::DoDestroy(C);
Daniel Dunbar90488912008-08-28 18:02:04 +00002143}
2144
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002145//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00002146// DesignatedInitExpr
2147//===----------------------------------------------------------------------===//
2148
2149IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
2150 assert(Kind == FieldDesignator && "Only valid on a field designator");
2151 if (Field.NameOrField & 0x01)
2152 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
2153 else
2154 return getField()->getIdentifier();
2155}
2156
Douglas Gregor319d57f2010-01-06 23:17:19 +00002157DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
2158 unsigned NumDesignators,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002159 const Designator *Designators,
Mike Stump1eb44332009-09-09 15:08:12 +00002160 SourceLocation EqualOrColonLoc,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002161 bool GNUSyntax,
Mike Stump1eb44332009-09-09 15:08:12 +00002162 Expr **IndexExprs,
Douglas Gregor9ea62762009-05-21 23:17:49 +00002163 unsigned NumIndexExprs,
2164 Expr *Init)
Mike Stump1eb44332009-09-09 15:08:12 +00002165 : Expr(DesignatedInitExprClass, Ty,
Douglas Gregor9ea62762009-05-21 23:17:49 +00002166 Init->isTypeDependent(), Init->isValueDependent()),
Mike Stump1eb44332009-09-09 15:08:12 +00002167 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
2168 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00002169 this->Designators = new (C) Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00002170
2171 // Record the initializer itself.
2172 child_iterator Child = child_begin();
2173 *Child++ = Init;
2174
2175 // Copy the designators and their subexpressions, computing
2176 // value-dependence along the way.
2177 unsigned IndexIdx = 0;
2178 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002179 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00002180
2181 if (this->Designators[I].isArrayDesignator()) {
2182 // Compute type- and value-dependence.
2183 Expr *Index = IndexExprs[IndexIdx];
Mike Stump1eb44332009-09-09 15:08:12 +00002184 ValueDependent = ValueDependent ||
Douglas Gregor9ea62762009-05-21 23:17:49 +00002185 Index->isTypeDependent() || Index->isValueDependent();
2186
2187 // Copy the index expressions into permanent storage.
2188 *Child++ = IndexExprs[IndexIdx++];
2189 } else if (this->Designators[I].isArrayRangeDesignator()) {
2190 // Compute type- and value-dependence.
2191 Expr *Start = IndexExprs[IndexIdx];
2192 Expr *End = IndexExprs[IndexIdx + 1];
Mike Stump1eb44332009-09-09 15:08:12 +00002193 ValueDependent = ValueDependent ||
Douglas Gregor9ea62762009-05-21 23:17:49 +00002194 Start->isTypeDependent() || Start->isValueDependent() ||
2195 End->isTypeDependent() || End->isValueDependent();
2196
2197 // Copy the start/end expressions into permanent storage.
2198 *Child++ = IndexExprs[IndexIdx++];
2199 *Child++ = IndexExprs[IndexIdx++];
2200 }
2201 }
2202
2203 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002204}
2205
Douglas Gregor05c13a32009-01-22 00:58:24 +00002206DesignatedInitExpr *
Mike Stump1eb44332009-09-09 15:08:12 +00002207DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00002208 unsigned NumDesignators,
2209 Expr **IndexExprs, unsigned NumIndexExprs,
2210 SourceLocation ColonOrEqualLoc,
2211 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00002212 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00002213 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor319d57f2010-01-06 23:17:19 +00002214 return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
Douglas Gregor9ea62762009-05-21 23:17:49 +00002215 ColonOrEqualLoc, UsesColonSyntax,
2216 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002217}
2218
Mike Stump1eb44332009-09-09 15:08:12 +00002219DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregord077d752009-04-16 00:55:48 +00002220 unsigned NumIndexExprs) {
2221 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
2222 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
2223 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
2224}
2225
Douglas Gregor319d57f2010-01-06 23:17:19 +00002226void DesignatedInitExpr::setDesignators(ASTContext &C,
2227 const Designator *Desigs,
Douglas Gregord077d752009-04-16 00:55:48 +00002228 unsigned NumDesigs) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00002229 DestroyDesignators(C);
Douglas Gregord077d752009-04-16 00:55:48 +00002230
Douglas Gregor319d57f2010-01-06 23:17:19 +00002231 Designators = new (C) Designator[NumDesigs];
Douglas Gregord077d752009-04-16 00:55:48 +00002232 NumDesignators = NumDesigs;
2233 for (unsigned I = 0; I != NumDesigs; ++I)
2234 Designators[I] = Desigs[I];
2235}
2236
Douglas Gregor05c13a32009-01-22 00:58:24 +00002237SourceRange DesignatedInitExpr::getSourceRange() const {
2238 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00002239 Designator &First =
2240 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00002241 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00002242 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00002243 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
2244 else
2245 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
2246 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00002247 StartLoc =
2248 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002249 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
2250}
2251
Douglas Gregor05c13a32009-01-22 00:58:24 +00002252Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
2253 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
2254 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2255 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002256 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2257 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
2258}
2259
2260Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00002261 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00002262 "Requires array range designator");
2263 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2264 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002265 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2266 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
2267}
2268
2269Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00002270 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00002271 "Requires array range designator");
2272 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2273 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002274 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2275 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
2276}
2277
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002278/// \brief Replaces the designator at index @p Idx with the series
2279/// of designators in [First, Last).
Douglas Gregor319d57f2010-01-06 23:17:19 +00002280void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
Mike Stump1eb44332009-09-09 15:08:12 +00002281 const Designator *First,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002282 const Designator *Last) {
2283 unsigned NumNewDesignators = Last - First;
2284 if (NumNewDesignators == 0) {
2285 std::copy_backward(Designators + Idx + 1,
2286 Designators + NumDesignators,
2287 Designators + Idx);
2288 --NumNewDesignators;
2289 return;
2290 } else if (NumNewDesignators == 1) {
2291 Designators[Idx] = *First;
2292 return;
2293 }
2294
Mike Stump1eb44332009-09-09 15:08:12 +00002295 Designator *NewDesignators
Douglas Gregor319d57f2010-01-06 23:17:19 +00002296 = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002297 std::copy(Designators, Designators + Idx, NewDesignators);
2298 std::copy(First, Last, NewDesignators + Idx);
2299 std::copy(Designators + Idx + 1, Designators + NumDesignators,
2300 NewDesignators + Idx + NumNewDesignators);
Douglas Gregor319d57f2010-01-06 23:17:19 +00002301 DestroyDesignators(C);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002302 Designators = NewDesignators;
2303 NumDesignators = NumDesignators - 1 + NumNewDesignators;
2304}
2305
Douglas Gregor42602bb2009-08-07 06:08:38 +00002306void DesignatedInitExpr::DoDestroy(ASTContext &C) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00002307 DestroyDesignators(C);
Douglas Gregor42602bb2009-08-07 06:08:38 +00002308 Expr::DoDestroy(C);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002309}
2310
Douglas Gregor319d57f2010-01-06 23:17:19 +00002311void DesignatedInitExpr::DestroyDesignators(ASTContext &C) {
2312 for (unsigned I = 0; I != NumDesignators; ++I)
2313 Designators[I].~Designator();
2314 C.Deallocate(Designators);
2315 Designators = 0;
2316}
2317
Mike Stump1eb44332009-09-09 15:08:12 +00002318ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00002319 Expr **exprs, unsigned nexprs,
2320 SourceLocation rparenloc)
2321: Expr(ParenListExprClass, QualType(),
2322 hasAnyTypeDependentArguments(exprs, nexprs),
Mike Stump1eb44332009-09-09 15:08:12 +00002323 hasAnyValueDependentArguments(exprs, nexprs)),
Nate Begeman2ef13e52009-08-10 23:49:36 +00002324 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
Mike Stump1eb44332009-09-09 15:08:12 +00002325
Nate Begeman2ef13e52009-08-10 23:49:36 +00002326 Exprs = new (C) Stmt*[nexprs];
2327 for (unsigned i = 0; i != nexprs; ++i)
2328 Exprs[i] = exprs[i];
2329}
2330
2331void ParenListExpr::DoDestroy(ASTContext& C) {
2332 DestroyChildren(C);
2333 if (Exprs) C.Deallocate(Exprs);
2334 this->~ParenListExpr();
2335 C.Deallocate(this);
2336}
2337
Douglas Gregor05c13a32009-01-22 00:58:24 +00002338//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00002339// ExprIterator.
2340//===----------------------------------------------------------------------===//
2341
2342Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
2343Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
2344Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
2345const Expr* ConstExprIterator::operator[](size_t idx) const {
2346 return cast<Expr>(I[idx]);
2347}
2348const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
2349const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
2350
2351//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002352// Child Iterators for iterating over subexpressions/substatements
2353//===----------------------------------------------------------------------===//
2354
2355// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002356Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
2357Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002358
Steve Naroff7779db42007-11-12 14:29:37 +00002359// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002360Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
2361Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00002362
Steve Naroffe3e9add2008-06-02 23:03:37 +00002363// ObjCPropertyRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002364Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
2365Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffae784072008-05-30 00:40:33 +00002366
Fariborz Jahanian09105f52009-08-20 17:02:02 +00002367// ObjCImplicitSetterGetterRefExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002368Stmt::child_iterator ObjCImplicitSetterGetterRefExpr::child_begin() {
2369 return &Base;
Fariborz Jahanian154440e2009-08-18 20:50:23 +00002370}
Mike Stump1eb44332009-09-09 15:08:12 +00002371Stmt::child_iterator ObjCImplicitSetterGetterRefExpr::child_end() {
2372 return &Base+1;
Fariborz Jahanian154440e2009-08-18 20:50:23 +00002373}
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00002374
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00002375// ObjCSuperExpr
2376Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
2377Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
2378
Steve Narofff242b1b2009-07-24 17:54:45 +00002379// ObjCIsaExpr
2380Stmt::child_iterator ObjCIsaExpr::child_begin() { return &Base; }
2381Stmt::child_iterator ObjCIsaExpr::child_end() { return &Base+1; }
2382
Chris Lattnerd9f69102008-08-10 01:53:14 +00002383// PredefinedExpr
2384Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
2385Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002386
2387// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002388Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
2389Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002390
2391// CharacterLiteral
Chris Lattnerd603eaa2009-02-16 22:33:34 +00002392Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek9ac59282007-10-18 23:28:49 +00002393Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002394
2395// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002396Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
2397Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002398
Chris Lattner5d661452007-08-26 03:42:43 +00002399// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00002400Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
2401Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00002402
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002403// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002404Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
2405Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002406
2407// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002408Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
2409Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002410
2411// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00002412Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
2413Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002414
Sebastian Redl05189992008-11-11 17:56:53 +00002415// SizeOfAlignOfExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002416Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
Sebastian Redl05189992008-11-11 17:56:53 +00002417 // If this is of a type and the type is a VLA type (and not a typedef), the
2418 // size expression of the VLA needs to be treated as an executable expression.
2419 // Why isn't this weirdness documented better in StmtIterator?
2420 if (isArgumentType()) {
2421 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
2422 getArgumentType().getTypePtr()))
2423 return child_iterator(T);
2424 return child_iterator();
2425 }
Sebastian Redld4575892008-12-03 23:17:54 +00002426 return child_iterator(&Argument.Ex);
Ted Kremenek9ac59282007-10-18 23:28:49 +00002427}
Sebastian Redl05189992008-11-11 17:56:53 +00002428Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
2429 if (isArgumentType())
2430 return child_iterator();
Sebastian Redld4575892008-12-03 23:17:54 +00002431 return child_iterator(&Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00002432}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002433
2434// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00002435Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002436 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002437}
Ted Kremenek1237c672007-08-24 20:06:47 +00002438Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002439 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002440}
2441
2442// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00002443Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002444 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002445}
Ted Kremenek1237c672007-08-24 20:06:47 +00002446Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002447 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002448}
Ted Kremenek1237c672007-08-24 20:06:47 +00002449
2450// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002451Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
2452Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002453
Nate Begeman213541a2008-04-18 23:10:10 +00002454// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002455Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
2456Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002457
2458// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002459Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
2460Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002461
Ted Kremenek1237c672007-08-24 20:06:47 +00002462// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002463Stmt::child_iterator CastExpr::child_begin() { return &Op; }
2464Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002465
2466// BinaryOperator
2467Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002468 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00002469}
Ted Kremenek1237c672007-08-24 20:06:47 +00002470Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002471 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00002472}
2473
2474// ConditionalOperator
2475Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002476 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00002477}
Ted Kremenek1237c672007-08-24 20:06:47 +00002478Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002479 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00002480}
2481
2482// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002483Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
2484Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00002485
Ted Kremenek1237c672007-08-24 20:06:47 +00002486// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002487Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
2488Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002489
2490// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002491Stmt::child_iterator TypesCompatibleExpr::child_begin() {
2492 return child_iterator();
2493}
2494
2495Stmt::child_iterator TypesCompatibleExpr::child_end() {
2496 return child_iterator();
2497}
Ted Kremenek1237c672007-08-24 20:06:47 +00002498
2499// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002500Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
2501Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002502
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002503// GNUNullExpr
2504Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
2505Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
2506
Eli Friedmand38617c2008-05-14 19:38:39 +00002507// ShuffleVectorExpr
2508Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002509 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00002510}
2511Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002512 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00002513}
2514
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002515// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002516Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
2517Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002518
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002519// InitListExpr
2520Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002521 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002522}
2523Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002524 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002525}
2526
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002527// DesignatedInitExpr
Douglas Gregor05c13a32009-01-22 00:58:24 +00002528Stmt::child_iterator DesignatedInitExpr::child_begin() {
2529 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2530 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002531 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2532}
2533Stmt::child_iterator DesignatedInitExpr::child_end() {
2534 return child_iterator(&*child_begin() + NumSubExprs);
2535}
2536
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002537// ImplicitValueInitExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002538Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
2539 return child_iterator();
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002540}
2541
Mike Stump1eb44332009-09-09 15:08:12 +00002542Stmt::child_iterator ImplicitValueInitExpr::child_end() {
2543 return child_iterator();
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002544}
2545
Nate Begeman2ef13e52009-08-10 23:49:36 +00002546// ParenListExpr
2547Stmt::child_iterator ParenListExpr::child_begin() {
2548 return &Exprs[0];
2549}
2550Stmt::child_iterator ParenListExpr::child_end() {
2551 return &Exprs[0]+NumExprs;
2552}
2553
Ted Kremenek1237c672007-08-24 20:06:47 +00002554// ObjCStringLiteral
Mike Stump1eb44332009-09-09 15:08:12 +00002555Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002556 return &String;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002557}
2558Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002559 return &String+1;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002560}
Ted Kremenek1237c672007-08-24 20:06:47 +00002561
2562// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002563Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
2564Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00002565
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002566// ObjCSelectorExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002567Stmt::child_iterator ObjCSelectorExpr::child_begin() {
Ted Kremenek9ac59282007-10-18 23:28:49 +00002568 return child_iterator();
2569}
2570Stmt::child_iterator ObjCSelectorExpr::child_end() {
2571 return child_iterator();
2572}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002573
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002574// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002575Stmt::child_iterator ObjCProtocolExpr::child_begin() {
2576 return child_iterator();
2577}
2578Stmt::child_iterator ObjCProtocolExpr::child_end() {
2579 return child_iterator();
2580}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002581
Steve Naroff563477d2007-09-18 23:55:05 +00002582// ObjCMessageExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002583Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002584 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroff563477d2007-09-18 23:55:05 +00002585}
2586Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002587 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroff563477d2007-09-18 23:55:05 +00002588}
2589
Steve Naroff4eb206b2008-09-03 18:15:37 +00002590// Blocks
Steve Naroff56ee6892008-10-08 17:01:13 +00002591Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
2592Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff4eb206b2008-09-03 18:15:37 +00002593
Ted Kremenek9da13f92008-09-26 23:24:14 +00002594Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
2595Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }