blob: 34790d27d27fc3111941ea719dee1dc3d1737a66 [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,
113 NamedDecl *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) {
John McCallba135432009-11-21 08:51:07 +0000121 assert(!isa<OverloadedFunctionDecl>(D));
Douglas Gregora2813ce2009-10-23 18:54:35 +0000122 if (Qualifier) {
123 NameQualifier *NQ = getNameQualifier();
124 NQ->NNS = Qualifier;
125 NQ->Range = QualifierRange;
126 }
127
John McCalld5532b62009-11-23 01:53:49 +0000128 if (TemplateArgs)
129 getExplicitTemplateArgumentList()->initializeFrom(*TemplateArgs);
Douglas Gregor0da76df2009-11-23 11:41:28 +0000130
131 computeDependence();
Douglas Gregora2813ce2009-10-23 18:54:35 +0000132}
133
134DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
135 NestedNameSpecifier *Qualifier,
136 SourceRange QualifierRange,
137 NamedDecl *D,
138 SourceLocation NameLoc,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000139 QualType T,
140 const TemplateArgumentListInfo *TemplateArgs) {
Douglas Gregora2813ce2009-10-23 18:54:35 +0000141 std::size_t Size = sizeof(DeclRefExpr);
142 if (Qualifier != 0)
143 Size += sizeof(NameQualifier);
144
John McCalld5532b62009-11-23 01:53:49 +0000145 if (TemplateArgs)
146 Size += ExplicitTemplateArgumentList::sizeFor(*TemplateArgs);
Douglas Gregora2813ce2009-10-23 18:54:35 +0000147
148 void *Mem = Context.Allocate(Size, llvm::alignof<DeclRefExpr>());
149 return new (Mem) DeclRefExpr(Qualifier, QualifierRange, D, NameLoc,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000150 TemplateArgs, T);
Douglas Gregora2813ce2009-10-23 18:54:35 +0000151}
152
153SourceRange DeclRefExpr::getSourceRange() const {
154 // FIXME: Does not handle multi-token names well, e.g., operator[].
155 SourceRange R(Loc);
156
157 if (hasQualifier())
158 R.setBegin(getQualifierRange().getBegin());
159 if (hasExplicitTemplateArgumentList())
160 R.setEnd(getRAngleLoc());
161 return R;
162}
163
Anders Carlsson3a082d82009-09-08 18:24:21 +0000164// FIXME: Maybe this should use DeclPrinter with a special "print predefined
165// expr" policy instead.
166std::string PredefinedExpr::ComputeName(ASTContext &Context, IdentType IT,
167 const Decl *CurrentDecl) {
168 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
169 if (IT != PrettyFunction)
170 return FD->getNameAsString();
171
172 llvm::SmallString<256> Name;
173 llvm::raw_svector_ostream Out(Name);
174
175 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
176 if (MD->isVirtual())
177 Out << "virtual ";
178 }
179
180 PrintingPolicy Policy(Context.getLangOptions());
181 Policy.SuppressTagKind = true;
182
183 std::string Proto = FD->getQualifiedNameAsString(Policy);
184
John McCall183700f2009-09-21 23:43:11 +0000185 const FunctionType *AFT = FD->getType()->getAs<FunctionType>();
Anders Carlsson3a082d82009-09-08 18:24:21 +0000186 const FunctionProtoType *FT = 0;
187 if (FD->hasWrittenPrototype())
188 FT = dyn_cast<FunctionProtoType>(AFT);
189
190 Proto += "(";
191 if (FT) {
192 llvm::raw_string_ostream POut(Proto);
193 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
194 if (i) POut << ", ";
195 std::string Param;
196 FD->getParamDecl(i)->getType().getAsStringInternal(Param, Policy);
197 POut << Param;
198 }
199
200 if (FT->isVariadic()) {
201 if (FD->getNumParams()) POut << ", ";
202 POut << "...";
203 }
204 }
205 Proto += ")";
206
207 AFT->getResultType().getAsStringInternal(Proto, Policy);
208
209 Out << Proto;
210
211 Out.flush();
212 return Name.str().str();
213 }
214 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
215 llvm::SmallString<256> Name;
216 llvm::raw_svector_ostream Out(Name);
217 Out << (MD->isInstanceMethod() ? '-' : '+');
218 Out << '[';
219 Out << MD->getClassInterface()->getNameAsString();
220 if (const ObjCCategoryImplDecl *CID =
221 dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext())) {
222 Out << '(';
223 Out << CID->getNameAsString();
224 Out << ')';
225 }
226 Out << ' ';
227 Out << MD->getSelector().getAsString();
228 Out << ']';
229
230 Out.flush();
231 return Name.str().str();
232 }
233 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
234 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
235 return "top level";
236 }
237 return "";
238}
239
Chris Lattnerda8249e2008-06-07 22:13:43 +0000240/// getValueAsApproximateDouble - This returns the value as an inaccurate
241/// double. Note that this may cause loss of precision, but is useful for
242/// debugging dumps, etc.
243double FloatingLiteral::getValueAsApproximateDouble() const {
244 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +0000245 bool ignored;
246 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
247 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +0000248 return V.convertToDouble();
249}
250
Chris Lattner2085fd62009-02-18 06:40:38 +0000251StringLiteral *StringLiteral::Create(ASTContext &C, const char *StrData,
252 unsigned ByteLength, bool Wide,
253 QualType Ty,
Mike Stump1eb44332009-09-09 15:08:12 +0000254 const SourceLocation *Loc,
Anders Carlssona135fb42009-03-15 18:34:13 +0000255 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +0000256 // Allocate enough space for the StringLiteral plus an array of locations for
257 // any concatenated string tokens.
258 void *Mem = C.Allocate(sizeof(StringLiteral)+
259 sizeof(SourceLocation)*(NumStrs-1),
260 llvm::alignof<StringLiteral>());
261 StringLiteral *SL = new (Mem) StringLiteral(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000262
Reid Spencer5f016e22007-07-11 17:01:13 +0000263 // OPTIMIZE: could allocate this appended to the StringLiteral.
Chris Lattner2085fd62009-02-18 06:40:38 +0000264 char *AStrData = new (C, 1) char[ByteLength];
265 memcpy(AStrData, StrData, ByteLength);
266 SL->StrData = AStrData;
267 SL->ByteLength = ByteLength;
268 SL->IsWide = Wide;
269 SL->TokLocs[0] = Loc[0];
270 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000271
Chris Lattner726e1682009-02-18 05:49:11 +0000272 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +0000273 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
274 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +0000275}
276
Douglas Gregor673ecd62009-04-15 16:35:07 +0000277StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
278 void *Mem = C.Allocate(sizeof(StringLiteral)+
279 sizeof(SourceLocation)*(NumStrs-1),
280 llvm::alignof<StringLiteral>());
281 StringLiteral *SL = new (Mem) StringLiteral(QualType());
282 SL->StrData = 0;
283 SL->ByteLength = 0;
284 SL->NumConcatenated = NumStrs;
285 return SL;
286}
287
Douglas Gregor42602bb2009-08-07 06:08:38 +0000288void StringLiteral::DoDestroy(ASTContext &C) {
Ted Kremenek8189cde2009-02-07 01:47:29 +0000289 C.Deallocate(const_cast<char*>(StrData));
Douglas Gregor42602bb2009-08-07 06:08:38 +0000290 Expr::DoDestroy(C);
Reid Spencer5f016e22007-07-11 17:01:13 +0000291}
292
Daniel Dunbarb6480232009-09-22 03:27:33 +0000293void StringLiteral::setString(ASTContext &C, llvm::StringRef Str) {
Douglas Gregor673ecd62009-04-15 16:35:07 +0000294 if (StrData)
295 C.Deallocate(const_cast<char*>(StrData));
296
Daniel Dunbarb6480232009-09-22 03:27:33 +0000297 char *AStrData = new (C, 1) char[Str.size()];
298 memcpy(AStrData, Str.data(), Str.size());
Douglas Gregor673ecd62009-04-15 16:35:07 +0000299 StrData = AStrData;
Daniel Dunbarb6480232009-09-22 03:27:33 +0000300 ByteLength = Str.size();
Douglas Gregor673ecd62009-04-15 16:35:07 +0000301}
302
Reid Spencer5f016e22007-07-11 17:01:13 +0000303/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
304/// corresponds to, e.g. "sizeof" or "[pre]++".
305const char *UnaryOperator::getOpcodeStr(Opcode Op) {
306 switch (Op) {
307 default: assert(0 && "Unknown unary operator");
308 case PostInc: return "++";
309 case PostDec: return "--";
310 case PreInc: return "++";
311 case PreDec: return "--";
312 case AddrOf: return "&";
313 case Deref: return "*";
314 case Plus: return "+";
315 case Minus: return "-";
316 case Not: return "~";
317 case LNot: return "!";
318 case Real: return "__real";
319 case Imag: return "__imag";
Reid Spencer5f016e22007-07-11 17:01:13 +0000320 case Extension: return "__extension__";
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000321 case OffsetOf: return "__builtin_offsetof";
Reid Spencer5f016e22007-07-11 17:01:13 +0000322 }
323}
324
Mike Stump1eb44332009-09-09 15:08:12 +0000325UnaryOperator::Opcode
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000326UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
327 switch (OO) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000328 default: assert(false && "No unary operator for overloaded function");
Chris Lattnerb7beee92009-03-22 00:10:22 +0000329 case OO_PlusPlus: return Postfix ? PostInc : PreInc;
330 case OO_MinusMinus: return Postfix ? PostDec : PreDec;
331 case OO_Amp: return AddrOf;
332 case OO_Star: return Deref;
333 case OO_Plus: return Plus;
334 case OO_Minus: return Minus;
335 case OO_Tilde: return Not;
336 case OO_Exclaim: return LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000337 }
338}
339
340OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
341 switch (Opc) {
342 case PostInc: case PreInc: return OO_PlusPlus;
343 case PostDec: case PreDec: return OO_MinusMinus;
344 case AddrOf: return OO_Amp;
345 case Deref: return OO_Star;
346 case Plus: return OO_Plus;
347 case Minus: return OO_Minus;
348 case Not: return OO_Tilde;
349 case LNot: return OO_Exclaim;
350 default: return OO_None;
351 }
352}
353
354
Reid Spencer5f016e22007-07-11 17:01:13 +0000355//===----------------------------------------------------------------------===//
356// Postfix Operators.
357//===----------------------------------------------------------------------===//
358
Ted Kremenek668bf912009-02-09 20:51:47 +0000359CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, Expr **args,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000360 unsigned numargs, QualType t, SourceLocation rparenloc)
Mike Stump1eb44332009-09-09 15:08:12 +0000361 : Expr(SC, t,
Douglas Gregor898574e2008-12-05 23:32:09 +0000362 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000363 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000364 NumArgs(numargs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000365
Ted Kremenek668bf912009-02-09 20:51:47 +0000366 SubExprs = new (C) Stmt*[numargs+1];
Douglas Gregorb4609802008-11-14 16:09:21 +0000367 SubExprs[FN] = fn;
368 for (unsigned i = 0; i != numargs; ++i)
369 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000370
Douglas Gregorb4609802008-11-14 16:09:21 +0000371 RParenLoc = rparenloc;
372}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000373
Ted Kremenek668bf912009-02-09 20:51:47 +0000374CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
375 QualType t, SourceLocation rparenloc)
Douglas Gregor898574e2008-12-05 23:32:09 +0000376 : Expr(CallExprClass, t,
377 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000378 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000379 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000380
381 SubExprs = new (C) Stmt*[numargs+1];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000382 SubExprs[FN] = fn;
Reid Spencer5f016e22007-07-11 17:01:13 +0000383 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000384 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000385
Reid Spencer5f016e22007-07-11 17:01:13 +0000386 RParenLoc = rparenloc;
387}
388
Mike Stump1eb44332009-09-09 15:08:12 +0000389CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
390 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000391 SubExprs = new (C) Stmt*[1];
392}
393
Douglas Gregor42602bb2009-08-07 06:08:38 +0000394void CallExpr::DoDestroy(ASTContext& C) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000395 DestroyChildren(C);
396 if (SubExprs) C.Deallocate(SubExprs);
397 this->~CallExpr();
398 C.Deallocate(this);
399}
400
Zhongxing Xua0042542009-07-17 07:29:51 +0000401FunctionDecl *CallExpr::getDirectCallee() {
402 Expr *CEE = getCallee()->IgnoreParenCasts();
Chris Lattner6346f962009-07-17 15:46:27 +0000403 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Zhongxing Xua0042542009-07-17 07:29:51 +0000404 return dyn_cast<FunctionDecl>(DRE->getDecl());
Zhongxing Xua0042542009-07-17 07:29:51 +0000405
406 return 0;
407}
408
Chris Lattnerd18b3292007-12-28 05:25:02 +0000409/// setNumArgs - This changes the number of arguments present in this call.
410/// Any orphaned expressions are deleted by this, and any new operands are set
411/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000412void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000413 // No change, just return.
414 if (NumArgs == getNumArgs()) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000415
Chris Lattnerd18b3292007-12-28 05:25:02 +0000416 // If shrinking # arguments, just delete the extras and forgot them.
417 if (NumArgs < getNumArgs()) {
418 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000419 getArg(i)->Destroy(C);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000420 this->NumArgs = NumArgs;
421 return;
422 }
423
424 // Otherwise, we are growing the # arguments. New an bigger argument array.
Daniel Dunbar68a049c2009-07-28 06:29:46 +0000425 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+1];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000426 // Copy over args.
427 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
428 NewSubExprs[i] = SubExprs[i];
429 // Null out new args.
430 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
431 NewSubExprs[i] = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000432
Douglas Gregor88c9a462009-04-17 21:46:47 +0000433 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000434 SubExprs = NewSubExprs;
435 this->NumArgs = NumArgs;
436}
437
Chris Lattnercb888962008-10-06 05:00:53 +0000438/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
439/// not, return 0.
Douglas Gregor3c385e52009-02-14 18:57:46 +0000440unsigned CallExpr::isBuiltinCall(ASTContext &Context) const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000441 // All simple function calls (e.g. func()) are implicitly cast to pointer to
Mike Stump1eb44332009-09-09 15:08:12 +0000442 // function. As a result, we try and obtain the DeclRefExpr from the
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000443 // ImplicitCastExpr.
444 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
445 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000446 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000447
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000448 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
449 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000450 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000451
Anders Carlssonbcba2012008-01-31 02:13:57 +0000452 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
453 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000454 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000455
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000456 if (!FDecl->getIdentifier())
457 return 0;
458
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000459 return FDecl->getBuiltinID();
Chris Lattnercb888962008-10-06 05:00:53 +0000460}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000461
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000462QualType CallExpr::getCallReturnType() const {
463 QualType CalleeType = getCallee()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000464 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000465 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000466 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000467 CalleeType = BPT->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000468
John McCall183700f2009-09-21 23:43:11 +0000469 const FunctionType *FnType = CalleeType->getAs<FunctionType>();
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000470 return FnType->getResultType();
471}
Chris Lattnercb888962008-10-06 05:00:53 +0000472
Mike Stump1eb44332009-09-09 15:08:12 +0000473MemberExpr::MemberExpr(Expr *base, bool isarrow, NestedNameSpecifier *qual,
474 SourceRange qualrange, NamedDecl *memberdecl,
John McCalld5532b62009-11-23 01:53:49 +0000475 SourceLocation l, const TemplateArgumentListInfo *targs,
476 QualType ty)
Mike Stump1eb44332009-09-09 15:08:12 +0000477 : Expr(MemberExprClass, ty,
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000478 base->isTypeDependent() || (qual && qual->isDependent()),
479 base->isValueDependent() || (qual && qual->isDependent())),
480 Base(base), MemberDecl(memberdecl), MemberLoc(l), IsArrow(isarrow),
John McCalld5532b62009-11-23 01:53:49 +0000481 HasQualifier(qual != 0), HasExplicitTemplateArgumentList(targs) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000482 // Initialize the qualifier, if any.
483 if (HasQualifier) {
484 NameQualifier *NQ = getMemberQualifier();
485 NQ->NNS = qual;
486 NQ->Range = qualrange;
487 }
Mike Stump1eb44332009-09-09 15:08:12 +0000488
Douglas Gregorc4bf26f2009-09-01 00:37:14 +0000489 // Initialize the explicit template argument list, if any.
John McCalld5532b62009-11-23 01:53:49 +0000490 if (targs)
491 getExplicitTemplateArgumentList()->initializeFrom(*targs);
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000492}
493
Mike Stump1eb44332009-09-09 15:08:12 +0000494MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
495 NestedNameSpecifier *qual,
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000496 SourceRange qualrange,
Mike Stump1eb44332009-09-09 15:08:12 +0000497 NamedDecl *memberdecl,
498 SourceLocation l,
John McCalld5532b62009-11-23 01:53:49 +0000499 const TemplateArgumentListInfo *targs,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +0000500 QualType ty) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000501 std::size_t Size = sizeof(MemberExpr);
502 if (qual != 0)
503 Size += sizeof(NameQualifier);
Mike Stump1eb44332009-09-09 15:08:12 +0000504
John McCalld5532b62009-11-23 01:53:49 +0000505 if (targs)
506 Size += ExplicitTemplateArgumentList::sizeFor(*targs);
Mike Stump1eb44332009-09-09 15:08:12 +0000507
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000508 void *Mem = C.Allocate(Size, llvm::alignof<MemberExpr>());
Douglas Gregorc4bf26f2009-09-01 00:37:14 +0000509 return new (Mem) MemberExpr(base, isarrow, qual, qualrange, memberdecl, l,
John McCalld5532b62009-11-23 01:53:49 +0000510 targs, ty);
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000511}
512
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000513const char *CastExpr::getCastKindName() const {
514 switch (getCastKind()) {
515 case CastExpr::CK_Unknown:
516 return "Unknown";
517 case CastExpr::CK_BitCast:
518 return "BitCast";
519 case CastExpr::CK_NoOp:
520 return "NoOp";
Anders Carlsson11de6de2009-11-12 16:43:42 +0000521 case CastExpr::CK_BaseToDerived:
522 return "BaseToDerived";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000523 case CastExpr::CK_DerivedToBase:
524 return "DerivedToBase";
525 case CastExpr::CK_Dynamic:
526 return "Dynamic";
527 case CastExpr::CK_ToUnion:
528 return "ToUnion";
529 case CastExpr::CK_ArrayToPointerDecay:
530 return "ArrayToPointerDecay";
531 case CastExpr::CK_FunctionToPointerDecay:
532 return "FunctionToPointerDecay";
533 case CastExpr::CK_NullToMemberPointer:
534 return "NullToMemberPointer";
535 case CastExpr::CK_BaseToDerivedMemberPointer:
536 return "BaseToDerivedMemberPointer";
Anders Carlsson1a31a182009-10-30 00:46:35 +0000537 case CastExpr::CK_DerivedToBaseMemberPointer:
538 return "DerivedToBaseMemberPointer";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000539 case CastExpr::CK_UserDefinedConversion:
540 return "UserDefinedConversion";
541 case CastExpr::CK_ConstructorConversion:
542 return "ConstructorConversion";
Anders Carlsson7f9e6462009-09-15 04:48:33 +0000543 case CastExpr::CK_IntegralToPointer:
544 return "IntegralToPointer";
545 case CastExpr::CK_PointerToIntegral:
546 return "PointerToIntegral";
Anders Carlssonebeaf202009-10-16 02:35:04 +0000547 case CastExpr::CK_ToVoid:
548 return "ToVoid";
Anders Carlsson16a89042009-10-16 05:23:41 +0000549 case CastExpr::CK_VectorSplat:
550 return "VectorSplat";
Anders Carlsson82debc72009-10-18 18:12:03 +0000551 case CastExpr::CK_IntegralCast:
552 return "IntegralCast";
553 case CastExpr::CK_IntegralToFloating:
554 return "IntegralToFloating";
555 case CastExpr::CK_FloatingToIntegral:
556 return "FloatingToIntegral";
Benjamin Kramerc6b29162009-10-18 19:02:15 +0000557 case CastExpr::CK_FloatingCast:
558 return "FloatingCast";
Anders Carlssonbc0e0782009-11-23 20:04:44 +0000559 case CastExpr::CK_MemberPointerToBoolean:
560 return "MemberPointerToBoolean";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000561 }
Mike Stump1eb44332009-09-09 15:08:12 +0000562
Anders Carlssonf8ec55a2009-09-03 00:59:21 +0000563 assert(0 && "Unhandled cast kind!");
564 return 0;
565}
566
Reid Spencer5f016e22007-07-11 17:01:13 +0000567/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
568/// corresponds to, e.g. "<<=".
569const char *BinaryOperator::getOpcodeStr(Opcode Op) {
570 switch (Op) {
Douglas Gregorbaf53482009-03-12 22:51:37 +0000571 case PtrMemD: return ".*";
572 case PtrMemI: return "->*";
Reid Spencer5f016e22007-07-11 17:01:13 +0000573 case Mul: return "*";
574 case Div: return "/";
575 case Rem: return "%";
576 case Add: return "+";
577 case Sub: return "-";
578 case Shl: return "<<";
579 case Shr: return ">>";
580 case LT: return "<";
581 case GT: return ">";
582 case LE: return "<=";
583 case GE: return ">=";
584 case EQ: return "==";
585 case NE: return "!=";
586 case And: return "&";
587 case Xor: return "^";
588 case Or: return "|";
589 case LAnd: return "&&";
590 case LOr: return "||";
591 case Assign: return "=";
592 case MulAssign: return "*=";
593 case DivAssign: return "/=";
594 case RemAssign: return "%=";
595 case AddAssign: return "+=";
596 case SubAssign: return "-=";
597 case ShlAssign: return "<<=";
598 case ShrAssign: return ">>=";
599 case AndAssign: return "&=";
600 case XorAssign: return "^=";
601 case OrAssign: return "|=";
602 case Comma: return ",";
603 }
Douglas Gregorbaf53482009-03-12 22:51:37 +0000604
605 return "";
Reid Spencer5f016e22007-07-11 17:01:13 +0000606}
607
Mike Stump1eb44332009-09-09 15:08:12 +0000608BinaryOperator::Opcode
Douglas Gregor063daf62009-03-13 18:40:31 +0000609BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
610 switch (OO) {
Chris Lattnerb7beee92009-03-22 00:10:22 +0000611 default: assert(false && "Not an overloadable binary operator");
Douglas Gregor063daf62009-03-13 18:40:31 +0000612 case OO_Plus: return Add;
613 case OO_Minus: return Sub;
614 case OO_Star: return Mul;
615 case OO_Slash: return Div;
616 case OO_Percent: return Rem;
617 case OO_Caret: return Xor;
618 case OO_Amp: return And;
619 case OO_Pipe: return Or;
620 case OO_Equal: return Assign;
621 case OO_Less: return LT;
622 case OO_Greater: return GT;
623 case OO_PlusEqual: return AddAssign;
624 case OO_MinusEqual: return SubAssign;
625 case OO_StarEqual: return MulAssign;
626 case OO_SlashEqual: return DivAssign;
627 case OO_PercentEqual: return RemAssign;
628 case OO_CaretEqual: return XorAssign;
629 case OO_AmpEqual: return AndAssign;
630 case OO_PipeEqual: return OrAssign;
631 case OO_LessLess: return Shl;
632 case OO_GreaterGreater: return Shr;
633 case OO_LessLessEqual: return ShlAssign;
634 case OO_GreaterGreaterEqual: return ShrAssign;
635 case OO_EqualEqual: return EQ;
636 case OO_ExclaimEqual: return NE;
637 case OO_LessEqual: return LE;
638 case OO_GreaterEqual: return GE;
639 case OO_AmpAmp: return LAnd;
640 case OO_PipePipe: return LOr;
641 case OO_Comma: return Comma;
642 case OO_ArrowStar: return PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +0000643 }
644}
645
646OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
647 static const OverloadedOperatorKind OverOps[] = {
648 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
649 OO_Star, OO_Slash, OO_Percent,
650 OO_Plus, OO_Minus,
651 OO_LessLess, OO_GreaterGreater,
652 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
653 OO_EqualEqual, OO_ExclaimEqual,
654 OO_Amp,
655 OO_Caret,
656 OO_Pipe,
657 OO_AmpAmp,
658 OO_PipePipe,
659 OO_Equal, OO_StarEqual,
660 OO_SlashEqual, OO_PercentEqual,
661 OO_PlusEqual, OO_MinusEqual,
662 OO_LessLessEqual, OO_GreaterGreaterEqual,
663 OO_AmpEqual, OO_CaretEqual,
664 OO_PipeEqual,
665 OO_Comma
666 };
667 return OverOps[Opc];
668}
669
Mike Stump1eb44332009-09-09 15:08:12 +0000670InitListExpr::InitListExpr(SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +0000671 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +0000672 SourceLocation rbraceloc)
Douglas Gregor73460a32009-11-19 23:25:22 +0000673 : Expr(InitListExprClass, QualType(), false, false),
Mike Stump1eb44332009-09-09 15:08:12 +0000674 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0),
Douglas Gregor73460a32009-11-19 23:25:22 +0000675 UnionFieldInit(0), HadArrayRangeDesignator(false)
676{
677 for (unsigned I = 0; I != numInits; ++I) {
678 if (initExprs[I]->isTypeDependent())
679 TypeDependent = true;
680 if (initExprs[I]->isValueDependent())
681 ValueDependent = true;
682 }
683
Chris Lattner418f6c72008-10-26 23:43:26 +0000684 InitExprs.insert(InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000685}
Reid Spencer5f016e22007-07-11 17:01:13 +0000686
Douglas Gregorfa219202009-03-20 23:58:33 +0000687void InitListExpr::reserveInits(unsigned NumInits) {
688 if (NumInits > InitExprs.size())
689 InitExprs.reserve(NumInits);
690}
691
Douglas Gregor4c678342009-01-28 21:54:33 +0000692void InitListExpr::resizeInits(ASTContext &Context, unsigned NumInits) {
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000693 for (unsigned Idx = NumInits, LastIdx = InitExprs.size();
Daniel Dunbarf592c922009-02-16 22:42:44 +0000694 Idx < LastIdx; ++Idx)
Douglas Gregor06863682009-03-20 23:38:03 +0000695 InitExprs[Idx]->Destroy(Context);
Douglas Gregor4c678342009-01-28 21:54:33 +0000696 InitExprs.resize(NumInits, 0);
697}
698
699Expr *InitListExpr::updateInit(unsigned Init, Expr *expr) {
700 if (Init >= InitExprs.size()) {
701 InitExprs.insert(InitExprs.end(), Init - InitExprs.size() + 1, 0);
702 InitExprs.back() = expr;
703 return 0;
704 }
Mike Stump1eb44332009-09-09 15:08:12 +0000705
Douglas Gregor4c678342009-01-28 21:54:33 +0000706 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
707 InitExprs[Init] = expr;
708 return Result;
709}
710
Steve Naroffbfdcae62008-09-04 15:31:07 +0000711/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000712///
713const FunctionType *BlockExpr::getFunctionType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000714 return getType()->getAs<BlockPointerType>()->
John McCall183700f2009-09-21 23:43:11 +0000715 getPointeeType()->getAs<FunctionType>();
Steve Naroff4eb206b2008-09-03 18:15:37 +0000716}
717
Mike Stump1eb44332009-09-09 15:08:12 +0000718SourceLocation BlockExpr::getCaretLocation() const {
719 return TheBlock->getCaretLocation();
Steve Naroff56ee6892008-10-08 17:01:13 +0000720}
Mike Stump1eb44332009-09-09 15:08:12 +0000721const Stmt *BlockExpr::getBody() const {
Douglas Gregor72971342009-04-18 00:02:19 +0000722 return TheBlock->getBody();
723}
Mike Stump1eb44332009-09-09 15:08:12 +0000724Stmt *BlockExpr::getBody() {
725 return TheBlock->getBody();
Douglas Gregor72971342009-04-18 00:02:19 +0000726}
Steve Naroff56ee6892008-10-08 17:01:13 +0000727
728
Reid Spencer5f016e22007-07-11 17:01:13 +0000729//===----------------------------------------------------------------------===//
730// Generic Expression Routines
731//===----------------------------------------------------------------------===//
732
Chris Lattner026dc962009-02-14 07:37:35 +0000733/// isUnusedResultAWarning - Return true if this immediate expression should
734/// be warned about if the result is unused. If so, fill in Loc and Ranges
735/// with location to warn on and the source range[s] to report with the
736/// warning.
737bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
Mike Stumpdf317bf2009-11-03 23:25:48 +0000738 SourceRange &R2, ASTContext &Ctx) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +0000739 // Don't warn if the expr is type dependent. The type could end up
740 // instantiating to void.
741 if (isTypeDependent())
742 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000743
Reid Spencer5f016e22007-07-11 17:01:13 +0000744 switch (getStmtClass()) {
745 default:
Chris Lattner026dc962009-02-14 07:37:35 +0000746 Loc = getExprLoc();
747 R1 = getSourceRange();
748 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000749 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000750 return cast<ParenExpr>(this)->getSubExpr()->
Mike Stumpdf317bf2009-11-03 23:25:48 +0000751 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000752 case UnaryOperatorClass: {
753 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +0000754
Reid Spencer5f016e22007-07-11 17:01:13 +0000755 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000756 default: break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000757 case UnaryOperator::PostInc:
758 case UnaryOperator::PostDec:
759 case UnaryOperator::PreInc:
Chris Lattner026dc962009-02-14 07:37:35 +0000760 case UnaryOperator::PreDec: // ++/--
761 return false; // Not a warning.
Reid Spencer5f016e22007-07-11 17:01:13 +0000762 case UnaryOperator::Deref:
763 // Dereferencing a volatile pointer is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +0000764 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +0000765 return false;
766 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000767 case UnaryOperator::Real:
768 case UnaryOperator::Imag:
769 // accessing a piece of a volatile complex is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +0000770 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
771 .isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +0000772 return false;
773 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000774 case UnaryOperator::Extension:
Mike Stumpdf317bf2009-11-03 23:25:48 +0000775 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000776 }
Chris Lattner026dc962009-02-14 07:37:35 +0000777 Loc = UO->getOperatorLoc();
778 R1 = UO->getSubExpr()->getSourceRange();
779 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000780 }
Chris Lattnere7716e62007-12-01 06:07:34 +0000781 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000782 const BinaryOperator *BO = cast<BinaryOperator>(this);
783 // Consider comma to have side effects if the LHS or RHS does.
784 if (BO->getOpcode() == BinaryOperator::Comma)
Mike Stumpdf317bf2009-11-03 23:25:48 +0000785 return (BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx) ||
786 BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Mike Stump1eb44332009-09-09 15:08:12 +0000787
Chris Lattner026dc962009-02-14 07:37:35 +0000788 if (BO->isAssignmentOp())
789 return false;
790 Loc = BO->getOperatorLoc();
791 R1 = BO->getLHS()->getSourceRange();
792 R2 = BO->getRHS()->getSourceRange();
793 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +0000794 }
Chris Lattnereb14fe82007-08-25 02:00:02 +0000795 case CompoundAssignOperatorClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000796 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000797
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000798 case ConditionalOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000799 // The condition must be evaluated, but if either the LHS or RHS is a
800 // warning, warn about them.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000801 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +0000802 if (Exp->getLHS() &&
Mike Stumpdf317bf2009-11-03 23:25:48 +0000803 Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
Chris Lattner026dc962009-02-14 07:37:35 +0000804 return true;
Mike Stumpdf317bf2009-11-03 23:25:48 +0000805 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000806 }
807
Reid Spencer5f016e22007-07-11 17:01:13 +0000808 case MemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000809 // If the base pointer or element is to a volatile pointer/field, accessing
810 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +0000811 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +0000812 return false;
813 Loc = cast<MemberExpr>(this)->getMemberLoc();
814 R1 = SourceRange(Loc, Loc);
815 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
816 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000817
Reid Spencer5f016e22007-07-11 17:01:13 +0000818 case ArraySubscriptExprClass:
819 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +0000820 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +0000821 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +0000822 return false;
823 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
824 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
825 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
826 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +0000827
Reid Spencer5f016e22007-07-11 17:01:13 +0000828 case CallExprClass:
Eli Friedman852871a2009-04-29 16:35:53 +0000829 case CXXOperatorCallExprClass:
830 case CXXMemberCallExprClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000831 // If this is a direct call, get the callee.
832 const CallExpr *CE = cast<CallExpr>(this);
Chris Lattnerbc8d42c2009-10-13 04:53:48 +0000833 if (const FunctionDecl *FD = CE->getDirectCallee()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000834 // If the callee has attribute pure, const, or warn_unused_result, warn
835 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattnerbc8d42c2009-10-13 04:53:48 +0000836 //
837 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
838 // updated to match for QoI.
839 if (FD->getAttr<WarnUnusedResultAttr>() ||
840 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
841 Loc = CE->getCallee()->getLocStart();
842 R1 = CE->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000843
Chris Lattnerbc8d42c2009-10-13 04:53:48 +0000844 if (unsigned NumArgs = CE->getNumArgs())
845 R2 = SourceRange(CE->getArg(0)->getLocStart(),
846 CE->getArg(NumArgs-1)->getLocEnd());
847 return true;
848 }
Chris Lattner026dc962009-02-14 07:37:35 +0000849 }
850 return false;
851 }
Anders Carlsson58beed92009-11-17 17:11:23 +0000852
853 case CXXTemporaryObjectExprClass:
854 case CXXConstructExprClass:
855 return false;
856
Chris Lattnera9c01022007-09-26 22:06:30 +0000857 case ObjCMessageExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000858 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000859
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000860 case ObjCImplicitSetterGetterRefExprClass: { // Dot syntax for message send.
Chris Lattnera50089e2009-08-16 16:45:18 +0000861#if 0
Mike Stump1eb44332009-09-09 15:08:12 +0000862 const ObjCImplicitSetterGetterRefExpr *Ref =
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000863 cast<ObjCImplicitSetterGetterRefExpr>(this);
Chris Lattnera50089e2009-08-16 16:45:18 +0000864 // FIXME: We really want the location of the '.' here.
Fariborz Jahanian154440e2009-08-18 20:50:23 +0000865 Loc = Ref->getLocation();
866 R1 = SourceRange(Ref->getLocation(), Ref->getLocation());
867 if (Ref->getBase())
868 R2 = Ref->getBase()->getSourceRange();
Chris Lattner5e94a0d2009-08-16 16:51:50 +0000869#else
870 Loc = getExprLoc();
871 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +0000872#endif
873 return true;
874 }
Chris Lattner611b2ec2008-07-26 19:51:01 +0000875 case StmtExprClass: {
876 // Statement exprs don't logically have side effects themselves, but are
877 // sometimes used in macros in ways that give them a type that is unused.
878 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
879 // however, if the result of the stmt expr is dead, we don't want to emit a
880 // warning.
881 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
882 if (!CS->body_empty())
883 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Mike Stumpdf317bf2009-11-03 23:25:48 +0000884 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Mike Stump1eb44332009-09-09 15:08:12 +0000885
Chris Lattner026dc962009-02-14 07:37:35 +0000886 Loc = cast<StmtExpr>(this)->getLParenLoc();
887 R1 = getSourceRange();
888 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000889 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000890 case CStyleCastExprClass:
Chris Lattnerfb846642009-07-28 18:25:28 +0000891 // If this is an explicit cast to void, allow it. People do this when they
892 // think they know what they're doing :).
Chris Lattner026dc962009-02-14 07:37:35 +0000893 if (getType()->isVoidType())
Chris Lattnerfb846642009-07-28 18:25:28 +0000894 return false;
Chris Lattner026dc962009-02-14 07:37:35 +0000895 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
896 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
897 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +0000898 case CXXFunctionalCastExprClass: {
899 const CastExpr *CE = cast<CastExpr>(this);
900
901 // If this is a cast to void or a constructor conversion, check the operand.
902 // Otherwise, the result of the cast is unused.
903 if (CE->getCastKind() == CastExpr::CK_ToVoid ||
904 CE->getCastKind() == CastExpr::CK_ConstructorConversion)
Mike Stumpdf317bf2009-11-03 23:25:48 +0000905 return (cast<CastExpr>(this)->getSubExpr()
906 ->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Chris Lattner026dc962009-02-14 07:37:35 +0000907 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
908 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
909 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +0000910 }
Mike Stump1eb44332009-09-09 15:08:12 +0000911
Eli Friedman4be1f472008-05-19 21:24:43 +0000912 case ImplicitCastExprClass:
913 // Check the operand, since implicit casts are inserted by Sema
Mike Stumpdf317bf2009-11-03 23:25:48 +0000914 return (cast<ImplicitCastExpr>(this)
915 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Eli Friedman4be1f472008-05-19 21:24:43 +0000916
Chris Lattner04421082008-04-08 04:40:51 +0000917 case CXXDefaultArgExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +0000918 return (cast<CXXDefaultArgExpr>(this)
919 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000920
921 case CXXNewExprClass:
922 // FIXME: In theory, there might be new expressions that don't have side
923 // effects (e.g. a placement new with an uninitialized POD).
924 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000925 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +0000926 case CXXBindTemporaryExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +0000927 return (cast<CXXBindTemporaryExpr>(this)
928 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Anders Carlsson6b1d2832009-05-17 21:11:30 +0000929 case CXXExprWithTemporariesClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +0000930 return (cast<CXXExprWithTemporaries>(this)
931 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000932 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000933}
934
Douglas Gregorba7e2102008-10-22 15:04:37 +0000935/// DeclCanBeLvalue - Determine whether the given declaration can be
936/// an lvalue. This is a helper routine for isLvalue.
937static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000938 // C++ [temp.param]p6:
939 // A non-type non-reference template-parameter is not an lvalue.
Mike Stump1eb44332009-09-09 15:08:12 +0000940 if (const NonTypeTemplateParmDecl *NTTParm
Douglas Gregor72c3f312008-12-05 18:15:24 +0000941 = dyn_cast<NonTypeTemplateParmDecl>(Decl))
942 return NTTParm->getType()->isReferenceType();
943
Douglas Gregor44b43212008-12-11 16:49:14 +0000944 return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) ||
Douglas Gregorba7e2102008-10-22 15:04:37 +0000945 // C++ 3.10p2: An lvalue refers to an object or function.
946 (Ctx.getLangOptions().CPlusPlus &&
Douglas Gregor83314aa2009-07-08 20:55:45 +0000947 (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl) ||
948 isa<FunctionTemplateDecl>(Decl)));
Douglas Gregorba7e2102008-10-22 15:04:37 +0000949}
950
Reid Spencer5f016e22007-07-11 17:01:13 +0000951/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
952/// incomplete type other than void. Nonarray expressions that can be lvalues:
953/// - name, where name must be a variable
954/// - e[i]
955/// - (e), where e must be an lvalue
956/// - e.name, where e must be an lvalue
957/// - e->name
958/// - *e, the type of e cannot be a function type
959/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +0000960/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000961/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000962///
Chris Lattner28be73f2008-07-26 21:30:36 +0000963Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Eli Friedman53202852009-05-03 22:36:05 +0000964 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
965
966 isLvalueResult Res = isLvalueInternal(Ctx);
967 if (Res != LV_Valid || Ctx.getLangOptions().CPlusPlus)
968 return Res;
969
Douglas Gregor98cd5992008-10-21 23:43:52 +0000970 // first, check the type (C99 6.3.2.1). Expressions with function
971 // type in C are not lvalues, but they can be lvalues in C++.
Douglas Gregor83314aa2009-07-08 20:55:45 +0000972 if (TR->isFunctionType() || TR == Ctx.OverloadTy)
Reid Spencer5f016e22007-07-11 17:01:13 +0000973 return LV_NotObjectType;
974
Steve Naroffacb818a2008-02-10 01:39:04 +0000975 // Allow qualified void which is an incomplete type other than void (yuck).
John McCall0953e762009-09-24 19:53:00 +0000976 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).hasQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +0000977 return LV_IncompleteVoidType;
978
Eli Friedman53202852009-05-03 22:36:05 +0000979 return LV_Valid;
980}
Bill Wendling08ad47c2007-07-17 03:52:31 +0000981
Eli Friedman53202852009-05-03 22:36:05 +0000982// Check whether the expression can be sanely treated like an l-value
983Expr::isLvalueResult Expr::isLvalueInternal(ASTContext &Ctx) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000984 switch (getStmtClass()) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000985 case StringLiteralClass: // C99 6.5.1p4
986 case ObjCEncodeExprClass: // @encode behaves like its string in every way.
Anders Carlsson7323a622007-11-30 22:47:59 +0000987 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000988 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
989 // For vectors, make sure base is an lvalue (i.e. not a function call).
990 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner28be73f2008-07-26 21:30:36 +0000991 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000992 return LV_Valid;
Douglas Gregora2813ce2009-10-23 18:54:35 +0000993 case DeclRefExprClass: { // C99 6.5.1p2
Douglas Gregorba7e2102008-10-22 15:04:37 +0000994 const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
995 if (DeclCanBeLvalue(RefdDecl, Ctx))
Reid Spencer5f016e22007-07-11 17:01:13 +0000996 return LV_Valid;
997 break;
Chris Lattner41110242008-06-17 18:05:57 +0000998 }
Steve Naroffdd972f22008-09-05 22:11:13 +0000999 case BlockDeclRefExprClass: {
1000 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
Steve Naroff4f6a7d72008-09-26 14:41:28 +00001001 if (isa<VarDecl>(BDR->getDecl()))
Steve Naroffdd972f22008-09-05 22:11:13 +00001002 return LV_Valid;
1003 break;
1004 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001005 case MemberExprClass: {
Reid Spencer5f016e22007-07-11 17:01:13 +00001006 const MemberExpr *m = cast<MemberExpr>(this);
Douglas Gregor86f19402008-12-20 23:49:58 +00001007 if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4:
1008 NamedDecl *Member = m->getMemberDecl();
1009 // C++ [expr.ref]p4:
1010 // If E2 is declared to have type "reference to T", then E1.E2
1011 // is an lvalue.
1012 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
1013 if (Value->getType()->isReferenceType())
1014 return LV_Valid;
1015
1016 // -- If E2 is a static data member [...] then E1.E2 is an lvalue.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001017 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
Douglas Gregor86f19402008-12-20 23:49:58 +00001018 return LV_Valid;
1019
1020 // -- If E2 is a non-static data member [...]. If E1 is an
1021 // lvalue, then E1.E2 is an lvalue.
1022 if (isa<FieldDecl>(Member))
1023 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
1024
1025 // -- If it refers to a static member function [...], then
1026 // E1.E2 is an lvalue.
1027 // -- Otherwise, if E1.E2 refers to a non-static member
1028 // function [...], then E1.E2 is not an lvalue.
1029 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
1030 return Method->isStatic()? LV_Valid : LV_MemberFunction;
1031
1032 // -- If E2 is a member enumerator [...], the expression E1.E2
1033 // is not an lvalue.
1034 if (isa<EnumConstantDecl>(Member))
1035 return LV_InvalidExpression;
1036
1037 // Not an lvalue.
1038 return LV_InvalidExpression;
Mike Stump1eb44332009-09-09 15:08:12 +00001039 }
Douglas Gregor86f19402008-12-20 23:49:58 +00001040
1041 // C99 6.5.2.3p4
Chris Lattner28be73f2008-07-26 21:30:36 +00001042 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Anton Korobeynikovfdd75662007-07-12 15:26:50 +00001043 }
Chris Lattner7da36f62007-10-30 22:53:42 +00001044 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +00001045 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +00001046 return LV_Valid; // C99 6.5.3p4
1047
1048 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattnerbaf0d662008-07-25 18:07:19 +00001049 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
1050 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner28be73f2008-07-26 21:30:36 +00001051 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Douglas Gregor74253732008-11-19 15:42:04 +00001052
1053 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1
1054 (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc ||
1055 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec))
1056 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +00001057 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001058 case ImplicitCastExprClass:
Mike Stump1eb44332009-09-09 15:08:12 +00001059 return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001060 : LV_InvalidExpression;
Reid Spencer5f016e22007-07-11 17:01:13 +00001061 case ParenExprClass: // C99 6.5.1p5
Chris Lattner28be73f2008-07-26 21:30:36 +00001062 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001063 case BinaryOperatorClass:
1064 case CompoundAssignOperatorClass: {
1065 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
Douglas Gregor337c6b92008-11-19 17:17:41 +00001066
1067 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1
1068 BinOp->getOpcode() == BinaryOperator::Comma)
1069 return BinOp->getRHS()->isLvalue(Ctx);
1070
Sebastian Redl22460502009-02-07 00:15:38 +00001071 // C++ [expr.mptr.oper]p6
Fariborz Jahanian27d4be52009-10-08 18:00:39 +00001072 // The result of a .* expression is an lvalue only if its first operand is
1073 // an lvalue and its second operand is a pointer to data member.
1074 if (BinOp->getOpcode() == BinaryOperator::PtrMemD &&
Sebastian Redl22460502009-02-07 00:15:38 +00001075 !BinOp->getType()->isFunctionType())
1076 return BinOp->getLHS()->isLvalue(Ctx);
1077
Fariborz Jahanian27d4be52009-10-08 18:00:39 +00001078 // The result of an ->* expression is an lvalue only if its second operand
1079 // is a pointer to data member.
1080 if (BinOp->getOpcode() == BinaryOperator::PtrMemI &&
1081 !BinOp->getType()->isFunctionType()) {
1082 QualType Ty = BinOp->getRHS()->getType();
1083 if (Ty->isMemberPointerType() && !Ty->isMemberFunctionPointerType())
1084 return LV_Valid;
1085 }
1086
Douglas Gregorbf3af052008-11-13 20:12:29 +00001087 if (!BinOp->isAssignmentOp())
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001088 return LV_InvalidExpression;
1089
Douglas Gregorbf3af052008-11-13 20:12:29 +00001090 if (Ctx.getLangOptions().CPlusPlus)
Mike Stump1eb44332009-09-09 15:08:12 +00001091 // C++ [expr.ass]p1:
Douglas Gregorbf3af052008-11-13 20:12:29 +00001092 // The result of an assignment operation [...] is an lvalue.
1093 return LV_Valid;
1094
1095
1096 // C99 6.5.16:
1097 // An assignment expression [...] is not an lvalue.
1098 return LV_InvalidExpression;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001099 }
Mike Stump1eb44332009-09-09 15:08:12 +00001100 case CallExprClass:
Douglas Gregor88a35142008-12-22 05:46:06 +00001101 case CXXOperatorCallExprClass:
1102 case CXXMemberCallExprClass: {
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001103 // C++0x [expr.call]p10
Douglas Gregor9d293df2008-10-28 00:22:11 +00001104 // A function call is an lvalue if and only if the result type
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001105 // is an lvalue reference.
Anders Carlsson6dde78f2009-05-26 04:57:27 +00001106 QualType ReturnType = cast<CallExpr>(this)->getCallReturnType();
1107 if (ReturnType->isLValueReferenceType())
1108 return LV_Valid;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001109
Douglas Gregor9d293df2008-10-28 00:22:11 +00001110 break;
1111 }
Steve Naroffe6386392007-12-05 04:00:10 +00001112 case CompoundLiteralExprClass: // C99 6.5.2.5p5
1113 return LV_Valid;
Chris Lattner670a62c2008-12-12 05:35:08 +00001114 case ChooseExprClass:
1115 // __builtin_choose_expr is an lvalue if the selected operand is.
Eli Friedman79769322009-03-04 05:52:32 +00001116 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->isLvalue(Ctx);
Nate Begeman213541a2008-04-18 23:10:10 +00001117 case ExtVectorElementExprClass:
1118 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +00001119 return LV_DuplicateVectorComponents;
1120 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +00001121 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
1122 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +00001123 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
1124 return LV_Valid;
Fariborz Jahanian09105f52009-08-20 17:02:02 +00001125 case ObjCImplicitSetterGetterRefExprClass: // FIXME: check if read-only property.
Chris Lattner670a62c2008-12-12 05:35:08 +00001126 return LV_Valid;
Chris Lattnerd9f69102008-08-10 01:53:14 +00001127 case PredefinedExprClass:
Douglas Gregor796da182008-11-04 14:32:21 +00001128 return LV_Valid;
John McCallba135432009-11-21 08:51:07 +00001129 case UnresolvedLookupExprClass:
1130 return LV_Valid;
Chris Lattner04421082008-04-08 04:40:51 +00001131 case CXXDefaultArgExprClass:
Chris Lattner28be73f2008-07-26 21:30:36 +00001132 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Argyrios Kyrtzidis24b41fa2008-09-11 04:22:26 +00001133 case CXXConditionDeclExprClass:
1134 return LV_Valid;
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001135 case CStyleCastExprClass:
Douglas Gregor9d293df2008-10-28 00:22:11 +00001136 case CXXFunctionalCastExprClass:
1137 case CXXStaticCastExprClass:
1138 case CXXDynamicCastExprClass:
1139 case CXXReinterpretCastExprClass:
1140 case CXXConstCastExprClass:
1141 // The result of an explicit cast is an lvalue if the type we are
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001142 // casting to is an lvalue reference type. See C++ [expr.cast]p1,
Douglas Gregor9d293df2008-10-28 00:22:11 +00001143 // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2,
1144 // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001145 if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->
1146 isLValueReferenceType())
Douglas Gregor9d293df2008-10-28 00:22:11 +00001147 return LV_Valid;
1148 break;
Sebastian Redlc42e1182008-11-11 11:37:55 +00001149 case CXXTypeidExprClass:
1150 // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ...
1151 return LV_Valid;
Anders Carlsson6f680272009-08-16 03:42:12 +00001152 case CXXBindTemporaryExprClass:
1153 return cast<CXXBindTemporaryExpr>(this)->getSubExpr()->
1154 isLvalueInternal(Ctx);
Sebastian Redl76458502009-04-17 16:30:52 +00001155 case ConditionalOperatorClass: {
1156 // Complicated handling is only for C++.
1157 if (!Ctx.getLangOptions().CPlusPlus)
1158 return LV_InvalidExpression;
1159
1160 // Sema should have taken care to ensure that a CXXTemporaryObjectExpr is
1161 // everywhere there's an object converted to an rvalue. Also, any other
1162 // casts should be wrapped by ImplicitCastExprs. There's just the special
1163 // case involving throws to work out.
1164 const ConditionalOperator *Cond = cast<ConditionalOperator>(this);
Douglas Gregord5f3a0f2009-05-19 20:13:50 +00001165 Expr *True = Cond->getTrueExpr();
1166 Expr *False = Cond->getFalseExpr();
Sebastian Redl76458502009-04-17 16:30:52 +00001167 // C++0x 5.16p2
1168 // If either the second or the third operand has type (cv) void, [...]
1169 // the result [...] is an rvalue.
Douglas Gregord5f3a0f2009-05-19 20:13:50 +00001170 if (True->getType()->isVoidType() || False->getType()->isVoidType())
Sebastian Redl76458502009-04-17 16:30:52 +00001171 return LV_InvalidExpression;
1172
1173 // Both sides must be lvalues for the result to be an lvalue.
Douglas Gregord5f3a0f2009-05-19 20:13:50 +00001174 if (True->isLvalue(Ctx) != LV_Valid || False->isLvalue(Ctx) != LV_Valid)
Sebastian Redl76458502009-04-17 16:30:52 +00001175 return LV_InvalidExpression;
1176
1177 // That's it.
1178 return LV_Valid;
1179 }
1180
Douglas Gregor3eefb1c2009-10-24 04:59:53 +00001181 case TemplateIdRefExprClass: {
1182 const TemplateIdRefExpr *TID = cast<TemplateIdRefExpr>(this);
1183 TemplateName Template = TID->getTemplateName();
1184 NamedDecl *ND = Template.getAsTemplateDecl();
1185 if (!ND)
1186 ND = Template.getAsOverloadedFunctionDecl();
1187 if (ND && DeclCanBeLvalue(ND, Ctx))
1188 return LV_Valid;
1189
1190 break;
1191 }
1192
Reid Spencer5f016e22007-07-11 17:01:13 +00001193 default:
1194 break;
1195 }
1196 return LV_InvalidExpression;
1197}
1198
1199/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
1200/// does not have an incomplete type, does not have a const-qualified type, and
Mike Stump1eb44332009-09-09 15:08:12 +00001201/// if it is a structure or union, does not have any member (including,
Reid Spencer5f016e22007-07-11 17:01:13 +00001202/// recursively, any member or element of all contained aggregates or unions)
1203/// with a const-qualified type.
Mike Stump1eb44332009-09-09 15:08:12 +00001204Expr::isModifiableLvalueResult
Daniel Dunbar44e35f72009-04-15 00:08:05 +00001205Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
Chris Lattner28be73f2008-07-26 21:30:36 +00001206 isLvalueResult lvalResult = isLvalue(Ctx);
Mike Stump1eb44332009-09-09 15:08:12 +00001207
Reid Spencer5f016e22007-07-11 17:01:13 +00001208 switch (lvalResult) {
Mike Stump1eb44332009-09-09 15:08:12 +00001209 case LV_Valid:
Douglas Gregorae8d4672008-10-22 00:03:08 +00001210 // C++ 3.10p11: Functions cannot be modified, but pointers to
1211 // functions can be modifiable.
1212 if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
1213 return MLV_NotObjectType;
1214 break;
1215
Reid Spencer5f016e22007-07-11 17:01:13 +00001216 case LV_NotObjectType: return MLV_NotObjectType;
1217 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +00001218 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattnerca354fa2008-11-17 19:51:54 +00001219 case LV_InvalidExpression:
1220 // If the top level is a C-style cast, and the subexpression is a valid
1221 // lvalue, then this is probably a use of the old-school "cast as lvalue"
1222 // GCC extension. We don't support it, but we want to produce good
1223 // diagnostics when it happens so that the user knows why.
Daniel Dunbar44e35f72009-04-15 00:08:05 +00001224 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(IgnoreParens())) {
1225 if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) {
1226 if (Loc)
1227 *Loc = CE->getLParenLoc();
Chris Lattnerca354fa2008-11-17 19:51:54 +00001228 return MLV_LValueCast;
Daniel Dunbar44e35f72009-04-15 00:08:05 +00001229 }
1230 }
Chris Lattnerca354fa2008-11-17 19:51:54 +00001231 return MLV_InvalidExpression;
Douglas Gregor86f19402008-12-20 23:49:58 +00001232 case LV_MemberFunction: return MLV_MemberFunction;
Reid Spencer5f016e22007-07-11 17:01:13 +00001233 }
Eli Friedman04831aa2009-03-22 23:26:56 +00001234
1235 // The following is illegal:
1236 // void takeclosure(void (^C)(void));
1237 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
1238 //
Fariborz Jahanianc3f48cd2009-09-14 16:40:48 +00001239 if (const BlockDeclRefExpr *BDR = dyn_cast<BlockDeclRefExpr>(this)) {
Eli Friedman04831aa2009-03-22 23:26:56 +00001240 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
1241 return MLV_NotBlockQualified;
1242 }
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001243
Fariborz Jahanianc3f48cd2009-09-14 16:40:48 +00001244 // Assigning to an 'implicit' property?
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001245 if (const ObjCImplicitSetterGetterRefExpr* Expr =
Fariborz Jahanianc3f48cd2009-09-14 16:40:48 +00001246 dyn_cast<ObjCImplicitSetterGetterRefExpr>(this)) {
1247 if (Expr->getSetterMethod() == 0)
1248 return MLV_NoSetterProperty;
1249 }
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001250
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001251 QualType CT = Ctx.getCanonicalType(getType());
Mike Stump1eb44332009-09-09 15:08:12 +00001252
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001253 if (CT.isConstQualified())
Reid Spencer5f016e22007-07-11 17:01:13 +00001254 return MLV_ConstQualified;
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001255 if (CT->isArrayType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001256 return MLV_ArrayType;
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001257 if (CT->isIncompleteType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001258 return MLV_IncompleteType;
Mike Stump1eb44332009-09-09 15:08:12 +00001259
Ted Kremenek6217b802009-07-29 21:53:49 +00001260 if (const RecordType *r = CT->getAs<RecordType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001261 if (r->hasConstFields())
Reid Spencer5f016e22007-07-11 17:01:13 +00001262 return MLV_ConstQualified;
1263 }
Mike Stump1eb44332009-09-09 15:08:12 +00001264
Mike Stump1eb44332009-09-09 15:08:12 +00001265 return MLV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +00001266}
1267
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001268/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian7f4f86a2009-09-08 23:38:54 +00001269/// returns true, if it is; false otherwise.
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001270bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001271 switch (getStmtClass()) {
1272 default:
1273 return false;
1274 case ObjCIvarRefExprClass:
1275 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +00001276 case Expr::UnaryOperatorClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001277 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001278 case ParenExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001279 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001280 case ImplicitCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001281 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +00001282 case CStyleCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001283 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregora2813ce2009-10-23 18:54:35 +00001284 case DeclRefExprClass: {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001285 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001286 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1287 if (VD->hasGlobalStorage())
1288 return true;
1289 QualType T = VD->getType();
Fariborz Jahanian59a53fa2009-09-16 18:09:18 +00001290 // dereferencing to a pointer is always a gc'able candidate,
1291 // unless it is __weak.
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001292 return T->isPointerType() &&
John McCall0953e762009-09-24 19:53:00 +00001293 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001294 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001295 return false;
1296 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001297 case MemberExprClass: {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001298 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001299 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001300 }
1301 case ArraySubscriptExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001302 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001303 }
1304}
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001305Expr* Expr::IgnoreParens() {
1306 Expr* E = this;
1307 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
1308 E = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00001309
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001310 return E;
1311}
1312
Chris Lattner56f34942008-02-13 01:02:39 +00001313/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
1314/// or CastExprs or ImplicitCastExprs, returning their operand.
1315Expr *Expr::IgnoreParenCasts() {
1316 Expr *E = this;
1317 while (true) {
1318 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
1319 E = P->getSubExpr();
1320 else if (CastExpr *P = dyn_cast<CastExpr>(E))
1321 E = P->getSubExpr();
Chris Lattner56f34942008-02-13 01:02:39 +00001322 else
1323 return E;
1324 }
1325}
1326
Chris Lattnerecdd8412009-03-13 17:28:01 +00001327/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
1328/// value (including ptr->int casts of the same size). Strip off any
1329/// ParenExpr or CastExprs, returning their operand.
1330Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
1331 Expr *E = this;
1332 while (true) {
1333 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
1334 E = P->getSubExpr();
1335 continue;
1336 }
Mike Stump1eb44332009-09-09 15:08:12 +00001337
Chris Lattnerecdd8412009-03-13 17:28:01 +00001338 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
1339 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
1340 // ptr<->int casts of the same width. We also ignore all identify casts.
1341 Expr *SE = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00001342
Chris Lattnerecdd8412009-03-13 17:28:01 +00001343 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
1344 E = SE;
1345 continue;
1346 }
Mike Stump1eb44332009-09-09 15:08:12 +00001347
Chris Lattnerecdd8412009-03-13 17:28:01 +00001348 if ((E->getType()->isPointerType() || E->getType()->isIntegralType()) &&
1349 (SE->getType()->isPointerType() || SE->getType()->isIntegralType()) &&
1350 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1351 E = SE;
1352 continue;
1353 }
1354 }
Mike Stump1eb44332009-09-09 15:08:12 +00001355
Chris Lattnerecdd8412009-03-13 17:28:01 +00001356 return E;
1357 }
1358}
1359
1360
Douglas Gregor898574e2008-12-05 23:32:09 +00001361/// hasAnyTypeDependentArguments - Determines if any of the expressions
1362/// in Exprs is type-dependent.
1363bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1364 for (unsigned I = 0; I < NumExprs; ++I)
1365 if (Exprs[I]->isTypeDependent())
1366 return true;
1367
1368 return false;
1369}
1370
1371/// hasAnyValueDependentArguments - Determines if any of the expressions
1372/// in Exprs is value-dependent.
1373bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1374 for (unsigned I = 0; I < NumExprs; ++I)
1375 if (Exprs[I]->isValueDependent())
1376 return true;
1377
1378 return false;
1379}
1380
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001381bool Expr::isConstantInitializer(ASTContext &Ctx) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001382 // This function is attempting whether an expression is an initializer
1383 // which can be evaluated at compile-time. isEvaluatable handles most
1384 // of the cases, but it can't deal with some initializer-specific
1385 // expressions, and it can't deal with aggregates; we deal with those here,
1386 // and fall back to isEvaluatable for the other cases.
1387
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001388 // FIXME: This function assumes the variable being assigned to
1389 // isn't a reference type!
1390
Anders Carlssone8a32b82008-11-24 05:23:59 +00001391 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001392 default: break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001393 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00001394 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001395 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00001396 return true;
Nate Begeman59b5da62009-01-18 03:20:47 +00001397 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001398 // This handles gcc's extension that allows global initializers like
1399 // "struct x {int x;} x = (struct x) {};".
1400 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00001401 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001402 return Exp->isConstantInitializer(Ctx);
Nate Begeman59b5da62009-01-18 03:20:47 +00001403 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00001404 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001405 // FIXME: This doesn't deal with fields with reference types correctly.
1406 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1407 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00001408 const InitListExpr *Exp = cast<InitListExpr>(this);
1409 unsigned numInits = Exp->getNumInits();
1410 for (unsigned i = 0; i < numInits; i++) {
Mike Stump1eb44332009-09-09 15:08:12 +00001411 if (!Exp->getInit(i)->isConstantInitializer(Ctx))
Anders Carlssone8a32b82008-11-24 05:23:59 +00001412 return false;
1413 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001414 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001415 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001416 case ImplicitValueInitExprClass:
1417 return true;
Chris Lattner3ae9f482009-10-13 07:14:16 +00001418 case ParenExprClass:
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001419 return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001420 case UnaryOperatorClass: {
1421 const UnaryOperator* Exp = cast<UnaryOperator>(this);
1422 if (Exp->getOpcode() == UnaryOperator::Extension)
1423 return Exp->getSubExpr()->isConstantInitializer(Ctx);
1424 break;
1425 }
Chris Lattner3ae9f482009-10-13 07:14:16 +00001426 case BinaryOperatorClass: {
1427 // Special case &&foo - &&bar. It would be nice to generalize this somehow
1428 // but this handles the common case.
1429 const BinaryOperator *Exp = cast<BinaryOperator>(this);
1430 if (Exp->getOpcode() == BinaryOperator::Sub &&
1431 isa<AddrLabelExpr>(Exp->getLHS()->IgnoreParenNoopCasts(Ctx)) &&
1432 isa<AddrLabelExpr>(Exp->getRHS()->IgnoreParenNoopCasts(Ctx)))
1433 return true;
1434 break;
1435 }
Chris Lattner81045d82009-04-21 05:19:11 +00001436 case ImplicitCastExprClass:
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001437 case CStyleCastExprClass:
1438 // Handle casts with a destination that's a struct or union; this
1439 // deals with both the gcc no-op struct cast extension and the
1440 // cast-to-union extension.
1441 if (getType()->isRecordType())
1442 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
Chris Lattner430656e2009-10-13 22:12:09 +00001443
1444 // Integer->integer casts can be handled here, which is important for
1445 // things like (int)(&&x-&&y). Scary but true.
1446 if (getType()->isIntegerType() &&
1447 cast<CastExpr>(this)->getSubExpr()->getType()->isIntegerType())
1448 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1449
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001450 break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001451 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001452 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00001453}
1454
Reid Spencer5f016e22007-07-11 17:01:13 +00001455/// isIntegerConstantExpr - this recursive routine will test if an expression is
Eli Friedmane28d7192009-02-26 09:29:13 +00001456/// an integer constant expression.
Reid Spencer5f016e22007-07-11 17:01:13 +00001457
1458/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
1459/// comma, etc
1460///
Chris Lattnerce0afc02007-07-18 05:21:20 +00001461/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
1462/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
1463/// cast+dereference.
Daniel Dunbar2d6744f2009-02-18 00:47:45 +00001464
Eli Friedmane28d7192009-02-26 09:29:13 +00001465// CheckICE - This function does the fundamental ICE checking: the returned
1466// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
1467// Note that to reduce code duplication, this helper does no evaluation
Mike Stump1eb44332009-09-09 15:08:12 +00001468// itself; the caller checks whether the expression is evaluatable, and
Eli Friedmane28d7192009-02-26 09:29:13 +00001469// in the rare cases where CheckICE actually cares about the evaluated
Mike Stump1eb44332009-09-09 15:08:12 +00001470// value, it calls into Evalute.
Eli Friedmane28d7192009-02-26 09:29:13 +00001471//
1472// Meanings of Val:
1473// 0: This expression is an ICE if it can be evaluated by Evaluate.
1474// 1: This expression is not an ICE, but if it isn't evaluated, it's
1475// a legal subexpression for an ICE. This return value is used to handle
1476// the comma operator in C99 mode.
1477// 2: This expression is not an ICE, and is not a legal subexpression for one.
1478
1479struct ICEDiag {
1480 unsigned Val;
1481 SourceLocation Loc;
1482
1483 public:
1484 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
1485 ICEDiag() : Val(0) {}
1486};
1487
1488ICEDiag NoDiag() { return ICEDiag(); }
1489
Eli Friedman60ce9632009-02-27 04:07:58 +00001490static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
1491 Expr::EvalResult EVResult;
1492 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1493 !EVResult.Val.isInt()) {
1494 return ICEDiag(2, E->getLocStart());
1495 }
1496 return NoDiag();
1497}
1498
Eli Friedmane28d7192009-02-26 09:29:13 +00001499static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
Anders Carlssonc3082412009-03-14 00:33:21 +00001500 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001501 if (!E->getType()->isIntegralType()) {
1502 return ICEDiag(2, E->getLocStart());
Eli Friedmana6afa762008-11-13 06:09:17 +00001503 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001504
1505 switch (E->getStmtClass()) {
Douglas Gregorf2991242009-09-10 23:31:45 +00001506#define STMT(Node, Base) case Expr::Node##Class:
1507#define EXPR(Node, Base)
1508#include "clang/AST/StmtNodes.def"
1509 case Expr::PredefinedExprClass:
1510 case Expr::FloatingLiteralClass:
1511 case Expr::ImaginaryLiteralClass:
1512 case Expr::StringLiteralClass:
1513 case Expr::ArraySubscriptExprClass:
1514 case Expr::MemberExprClass:
1515 case Expr::CompoundAssignOperatorClass:
1516 case Expr::CompoundLiteralExprClass:
1517 case Expr::ExtVectorElementExprClass:
1518 case Expr::InitListExprClass:
1519 case Expr::DesignatedInitExprClass:
1520 case Expr::ImplicitValueInitExprClass:
1521 case Expr::ParenListExprClass:
1522 case Expr::VAArgExprClass:
1523 case Expr::AddrLabelExprClass:
1524 case Expr::StmtExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001525 case Expr::CXXMemberCallExprClass:
1526 case Expr::CXXDynamicCastExprClass:
1527 case Expr::CXXTypeidExprClass:
1528 case Expr::CXXNullPtrLiteralExprClass:
1529 case Expr::CXXThisExprClass:
1530 case Expr::CXXThrowExprClass:
1531 case Expr::CXXConditionDeclExprClass: // FIXME: is this correct?
1532 case Expr::CXXNewExprClass:
1533 case Expr::CXXDeleteExprClass:
1534 case Expr::CXXPseudoDestructorExprClass:
John McCallba135432009-11-21 08:51:07 +00001535 case Expr::UnresolvedLookupExprClass:
John McCall865d4472009-11-19 22:55:06 +00001536 case Expr::DependentScopeDeclRefExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001537 case Expr::TemplateIdRefExprClass:
1538 case Expr::CXXConstructExprClass:
1539 case Expr::CXXBindTemporaryExprClass:
1540 case Expr::CXXExprWithTemporariesClass:
1541 case Expr::CXXTemporaryObjectExprClass:
1542 case Expr::CXXUnresolvedConstructExprClass:
John McCall865d4472009-11-19 22:55:06 +00001543 case Expr::CXXDependentScopeMemberExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001544 case Expr::ObjCStringLiteralClass:
1545 case Expr::ObjCEncodeExprClass:
1546 case Expr::ObjCMessageExprClass:
1547 case Expr::ObjCSelectorExprClass:
1548 case Expr::ObjCProtocolExprClass:
1549 case Expr::ObjCIvarRefExprClass:
1550 case Expr::ObjCPropertyRefExprClass:
1551 case Expr::ObjCImplicitSetterGetterRefExprClass:
1552 case Expr::ObjCSuperExprClass:
1553 case Expr::ObjCIsaExprClass:
1554 case Expr::ShuffleVectorExprClass:
1555 case Expr::BlockExprClass:
1556 case Expr::BlockDeclRefExprClass:
1557 case Expr::NoStmtClass:
1558 case Expr::ExprClass:
Eli Friedmane28d7192009-02-26 09:29:13 +00001559 return ICEDiag(2, E->getLocStart());
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001560
Douglas Gregor043cad22009-09-11 00:18:58 +00001561 case Expr::GNUNullExprClass:
1562 // GCC considers the GNU __null value to be an integral constant expression.
1563 return NoDiag();
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001564
Eli Friedmane28d7192009-02-26 09:29:13 +00001565 case Expr::ParenExprClass:
1566 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
1567 case Expr::IntegerLiteralClass:
1568 case Expr::CharacterLiteralClass:
1569 case Expr::CXXBoolLiteralExprClass:
1570 case Expr::CXXZeroInitValueExprClass:
1571 case Expr::TypesCompatibleExprClass:
1572 case Expr::UnaryTypeTraitExprClass:
1573 return NoDiag();
Mike Stump1eb44332009-09-09 15:08:12 +00001574 case Expr::CallExprClass:
Eli Friedmane28d7192009-02-26 09:29:13 +00001575 case Expr::CXXOperatorCallExprClass: {
1576 const CallExpr *CE = cast<CallExpr>(E);
Eli Friedman60ce9632009-02-27 04:07:58 +00001577 if (CE->isBuiltinCall(Ctx))
1578 return CheckEvalInICE(E, Ctx);
Eli Friedmane28d7192009-02-26 09:29:13 +00001579 return ICEDiag(2, E->getLocStart());
Chris Lattner2eadfb62007-07-15 23:32:58 +00001580 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001581 case Expr::DeclRefExprClass:
Eli Friedmane28d7192009-02-26 09:29:13 +00001582 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
1583 return NoDiag();
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001584 if (Ctx.getLangOptions().CPlusPlus &&
John McCall0953e762009-09-24 19:53:00 +00001585 E->getType().getCVRQualifiers() == Qualifiers::Const) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001586 // C++ 7.1.5.1p2
1587 // A variable of non-volatile const-qualified integral or enumeration
1588 // type initialized by an ICE can be used in ICEs.
1589 if (const VarDecl *Dcl =
Eli Friedmane28d7192009-02-26 09:29:13 +00001590 dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) {
Douglas Gregorcf3293e2009-11-01 20:32:48 +00001591 Qualifiers Quals = Ctx.getCanonicalType(Dcl->getType()).getQualifiers();
1592 if (Quals.hasVolatile() || !Quals.hasConst())
1593 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
1594
1595 // Look for the definition of this variable, which will actually have
1596 // an initializer.
1597 const VarDecl *Def = 0;
1598 const Expr *Init = Dcl->getDefinition(Def);
1599 if (Init) {
1600 if (Def->isInitKnownICE()) {
1601 // We have already checked whether this subexpression is an
1602 // integral constant expression.
1603 if (Def->isInitICE())
1604 return NoDiag();
1605 else
1606 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
1607 }
Douglas Gregor78d15832009-05-26 18:54:04 +00001608
Douglas Gregorcf3293e2009-11-01 20:32:48 +00001609 // C++ [class.static.data]p4:
1610 // If a static data member is of const integral or const
1611 // enumeration type, its declaration in the class definition can
1612 // specify a constant-initializer which shall be an integral
1613 // constant expression (5.19). In that case, the member can appear
1614 // in integral constant expressions.
1615 if (Def->isOutOfLine()) {
1616 Dcl->setInitKnownICE(Ctx, false);
1617 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
1618 }
1619
Douglas Gregor78d15832009-05-26 18:54:04 +00001620 ICEDiag Result = CheckICE(Init, Ctx);
1621 // Cache the result of the ICE test.
1622 Dcl->setInitKnownICE(Ctx, Result.Val == 0);
1623 return Result;
1624 }
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001625 }
1626 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001627 return ICEDiag(2, E->getLocStart());
1628 case Expr::UnaryOperatorClass: {
1629 const UnaryOperator *Exp = cast<UnaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001630 switch (Exp->getOpcode()) {
Douglas Gregorf2991242009-09-10 23:31:45 +00001631 case UnaryOperator::PostInc:
1632 case UnaryOperator::PostDec:
1633 case UnaryOperator::PreInc:
1634 case UnaryOperator::PreDec:
1635 case UnaryOperator::AddrOf:
1636 case UnaryOperator::Deref:
Eli Friedmane28d7192009-02-26 09:29:13 +00001637 return ICEDiag(2, E->getLocStart());
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001638
Reid Spencer5f016e22007-07-11 17:01:13 +00001639 case UnaryOperator::Extension:
Eli Friedmane28d7192009-02-26 09:29:13 +00001640 case UnaryOperator::LNot:
Reid Spencer5f016e22007-07-11 17:01:13 +00001641 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001642 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001643 case UnaryOperator::Not:
Eli Friedman60ce9632009-02-27 04:07:58 +00001644 case UnaryOperator::Real:
1645 case UnaryOperator::Imag:
Eli Friedmane28d7192009-02-26 09:29:13 +00001646 return CheckICE(Exp->getSubExpr(), Ctx);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001647 case UnaryOperator::OffsetOf:
Eli Friedman60ce9632009-02-27 04:07:58 +00001648 // Note that per C99, offsetof must be an ICE. And AFAIK, using
1649 // Evaluate matches the proposed gcc behavior for cases like
1650 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
1651 // compliance: we should warn earlier for offsetof expressions with
1652 // array subscripts that aren't ICEs, and if the array subscripts
1653 // are ICEs, the value of the offsetof must be an integer constant.
1654 return CheckEvalInICE(E, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001655 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001656 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001657 case Expr::SizeOfAlignOfExprClass: {
1658 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
1659 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
1660 return ICEDiag(2, E->getLocStart());
1661 return NoDiag();
Reid Spencer5f016e22007-07-11 17:01:13 +00001662 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001663 case Expr::BinaryOperatorClass: {
1664 const BinaryOperator *Exp = cast<BinaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001665 switch (Exp->getOpcode()) {
Douglas Gregorf2991242009-09-10 23:31:45 +00001666 case BinaryOperator::PtrMemD:
1667 case BinaryOperator::PtrMemI:
1668 case BinaryOperator::Assign:
1669 case BinaryOperator::MulAssign:
1670 case BinaryOperator::DivAssign:
1671 case BinaryOperator::RemAssign:
1672 case BinaryOperator::AddAssign:
1673 case BinaryOperator::SubAssign:
1674 case BinaryOperator::ShlAssign:
1675 case BinaryOperator::ShrAssign:
1676 case BinaryOperator::AndAssign:
1677 case BinaryOperator::XorAssign:
1678 case BinaryOperator::OrAssign:
Eli Friedmane28d7192009-02-26 09:29:13 +00001679 return ICEDiag(2, E->getLocStart());
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001680
Reid Spencer5f016e22007-07-11 17:01:13 +00001681 case BinaryOperator::Mul:
Reid Spencer5f016e22007-07-11 17:01:13 +00001682 case BinaryOperator::Div:
Reid Spencer5f016e22007-07-11 17:01:13 +00001683 case BinaryOperator::Rem:
Eli Friedmane28d7192009-02-26 09:29:13 +00001684 case BinaryOperator::Add:
1685 case BinaryOperator::Sub:
Reid Spencer5f016e22007-07-11 17:01:13 +00001686 case BinaryOperator::Shl:
Reid Spencer5f016e22007-07-11 17:01:13 +00001687 case BinaryOperator::Shr:
Eli Friedmane28d7192009-02-26 09:29:13 +00001688 case BinaryOperator::LT:
1689 case BinaryOperator::GT:
1690 case BinaryOperator::LE:
1691 case BinaryOperator::GE:
1692 case BinaryOperator::EQ:
1693 case BinaryOperator::NE:
1694 case BinaryOperator::And:
1695 case BinaryOperator::Xor:
1696 case BinaryOperator::Or:
1697 case BinaryOperator::Comma: {
1698 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1699 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001700 if (Exp->getOpcode() == BinaryOperator::Div ||
1701 Exp->getOpcode() == BinaryOperator::Rem) {
1702 // Evaluate gives an error for undefined Div/Rem, so make sure
1703 // we don't evaluate one.
1704 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
1705 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
1706 if (REval == 0)
1707 return ICEDiag(1, E->getLocStart());
1708 if (REval.isSigned() && REval.isAllOnesValue()) {
1709 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
1710 if (LEval.isMinSignedValue())
1711 return ICEDiag(1, E->getLocStart());
1712 }
1713 }
1714 }
1715 if (Exp->getOpcode() == BinaryOperator::Comma) {
1716 if (Ctx.getLangOptions().C99) {
1717 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
1718 // if it isn't evaluated.
1719 if (LHSResult.Val == 0 && RHSResult.Val == 0)
1720 return ICEDiag(1, E->getLocStart());
1721 } else {
1722 // In both C89 and C++, commas in ICEs are illegal.
1723 return ICEDiag(2, E->getLocStart());
1724 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001725 }
1726 if (LHSResult.Val >= RHSResult.Val)
1727 return LHSResult;
1728 return RHSResult;
1729 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001730 case BinaryOperator::LAnd:
Eli Friedmane28d7192009-02-26 09:29:13 +00001731 case BinaryOperator::LOr: {
1732 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1733 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
1734 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
1735 // Rare case where the RHS has a comma "side-effect"; we need
1736 // to actually check the condition to see whether the side
1737 // with the comma is evaluated.
Eli Friedmane28d7192009-02-26 09:29:13 +00001738 if ((Exp->getOpcode() == BinaryOperator::LAnd) !=
Eli Friedman60ce9632009-02-27 04:07:58 +00001739 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
Eli Friedmane28d7192009-02-26 09:29:13 +00001740 return RHSResult;
1741 return NoDiag();
Eli Friedmanb11e7782008-11-13 02:13:11 +00001742 }
Eli Friedman60ce9632009-02-27 04:07:58 +00001743
Eli Friedmane28d7192009-02-26 09:29:13 +00001744 if (LHSResult.Val >= RHSResult.Val)
1745 return LHSResult;
1746 return RHSResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001747 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001748 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001749 }
Douglas Gregorf2991242009-09-10 23:31:45 +00001750 case Expr::CastExprClass:
Eli Friedmane28d7192009-02-26 09:29:13 +00001751 case Expr::ImplicitCastExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001752 case Expr::ExplicitCastExprClass:
Eli Friedmane28d7192009-02-26 09:29:13 +00001753 case Expr::CStyleCastExprClass:
Douglas Gregor59600d82009-09-10 17:44:23 +00001754 case Expr::CXXFunctionalCastExprClass:
Douglas Gregorf2991242009-09-10 23:31:45 +00001755 case Expr::CXXNamedCastExprClass:
Douglas Gregor59600d82009-09-10 17:44:23 +00001756 case Expr::CXXStaticCastExprClass:
1757 case Expr::CXXReinterpretCastExprClass:
1758 case Expr::CXXConstCastExprClass: {
Eli Friedmane28d7192009-02-26 09:29:13 +00001759 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
1760 if (SubExpr->getType()->isIntegralType())
1761 return CheckICE(SubExpr, Ctx);
1762 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
1763 return NoDiag();
1764 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001765 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001766 case Expr::ConditionalOperatorClass: {
1767 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001768 // If the condition (ignoring parens) is a __builtin_constant_p call,
Chris Lattner28daa532008-12-12 06:55:44 +00001769 // then only the true side is actually considered in an integer constant
Chris Lattner42b83dd2008-12-12 18:00:51 +00001770 // expression, and it is fully evaluated. This is an important GNU
1771 // extension. See GCC PR38377 for discussion.
Eli Friedmane28d7192009-02-26 09:29:13 +00001772 if (const CallExpr *CallCE = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001773 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001774 Expr::EvalResult EVResult;
1775 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1776 !EVResult.Val.isInt()) {
Eli Friedman60ce9632009-02-27 04:07:58 +00001777 return ICEDiag(2, E->getLocStart());
Eli Friedmane28d7192009-02-26 09:29:13 +00001778 }
1779 return NoDiag();
Chris Lattner42b83dd2008-12-12 18:00:51 +00001780 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001781 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
1782 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
1783 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
1784 if (CondResult.Val == 2)
1785 return CondResult;
1786 if (TrueResult.Val == 2)
1787 return TrueResult;
1788 if (FalseResult.Val == 2)
1789 return FalseResult;
1790 if (CondResult.Val == 1)
1791 return CondResult;
1792 if (TrueResult.Val == 0 && FalseResult.Val == 0)
1793 return NoDiag();
1794 // Rare case where the diagnostics depend on which side is evaluated
1795 // Note that if we get here, CondResult is 0, and at least one of
1796 // TrueResult and FalseResult is non-zero.
Eli Friedman60ce9632009-02-27 04:07:58 +00001797 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001798 return FalseResult;
1799 }
1800 return TrueResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001801 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001802 case Expr::CXXDefaultArgExprClass:
1803 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001804 case Expr::ChooseExprClass: {
Eli Friedman79769322009-03-04 05:52:32 +00001805 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001806 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001807 }
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001808
Douglas Gregorf2991242009-09-10 23:31:45 +00001809 // Silence a GCC warning
1810 return ICEDiag(2, E->getLocStart());
Eli Friedmane28d7192009-02-26 09:29:13 +00001811}
Reid Spencer5f016e22007-07-11 17:01:13 +00001812
Eli Friedmane28d7192009-02-26 09:29:13 +00001813bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
1814 SourceLocation *Loc, bool isEvaluated) const {
1815 ICEDiag d = CheckICE(this, Ctx);
1816 if (d.Val != 0) {
1817 if (Loc) *Loc = d.Loc;
1818 return false;
1819 }
1820 EvalResult EvalResult;
Eli Friedman60ce9632009-02-27 04:07:58 +00001821 if (!Evaluate(EvalResult, Ctx))
Douglas Gregorcf3293e2009-11-01 20:32:48 +00001822 llvm::llvm_unreachable("ICE cannot be evaluated!");
Eli Friedman60ce9632009-02-27 04:07:58 +00001823 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
1824 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001825 Result = EvalResult.Val.getInt();
Reid Spencer5f016e22007-07-11 17:01:13 +00001826 return true;
1827}
1828
Reid Spencer5f016e22007-07-11 17:01:13 +00001829/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1830/// integer constant expression with the value zero, or if this is one that is
1831/// cast to void*.
Douglas Gregorce940492009-09-25 04:25:58 +00001832bool Expr::isNullPointerConstant(ASTContext &Ctx,
1833 NullPointerConstantValueDependence NPC) const {
1834 if (isValueDependent()) {
1835 switch (NPC) {
1836 case NPC_NeverValueDependent:
1837 assert(false && "Unexpected value dependent expression!");
1838 // If the unthinkable happens, fall through to the safest alternative.
1839
1840 case NPC_ValueDependentIsNull:
1841 return isTypeDependent() || getType()->isIntegralType();
1842
1843 case NPC_ValueDependentIsNotNull:
1844 return false;
1845 }
1846 }
Daniel Dunbarf515b222009-09-18 08:46:16 +00001847
Sebastian Redl07779722008-10-31 14:43:28 +00001848 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001849 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00001850 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00001851 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00001852 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00001853 QualType Pointee = PT->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00001854 if (!Pointee.hasQualifiers() &&
Sebastian Redl07779722008-10-31 14:43:28 +00001855 Pointee->isVoidType() && // to void*
1856 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregorce940492009-09-25 04:25:58 +00001857 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl07779722008-10-31 14:43:28 +00001858 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001859 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001860 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1861 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregorce940492009-09-25 04:25:58 +00001862 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroffaa58f002008-01-14 16:10:57 +00001863 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1864 // Accept ((void*)0) as a null pointer constant, as many other
1865 // implementations do.
Douglas Gregorce940492009-09-25 04:25:58 +00001866 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump1eb44332009-09-09 15:08:12 +00001867 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner8123a952008-04-10 02:22:51 +00001868 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001869 // See through default argument expressions
Douglas Gregorce940492009-09-25 04:25:58 +00001870 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001871 } else if (isa<GNUNullExpr>(this)) {
1872 // The GNU __null extension is always a null pointer constant.
1873 return true;
Steve Naroffaaffbf72008-01-14 02:53:34 +00001874 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001875
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001876 // C++0x nullptr_t is always a null pointer constant.
1877 if (getType()->isNullPtrType())
1878 return true;
1879
Steve Naroffaa58f002008-01-14 16:10:57 +00001880 // This expression must be an integer type.
Fariborz Jahanian56fc0d12009-10-06 00:09:31 +00001881 if (!getType()->isIntegerType() ||
1882 (Ctx.getLangOptions().CPlusPlus && getType()->isEnumeralType()))
Steve Naroffaa58f002008-01-14 16:10:57 +00001883 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001884
Reid Spencer5f016e22007-07-11 17:01:13 +00001885 // If we have an integer constant expression, we need to *evaluate* it and
1886 // test for the value 0.
Eli Friedman09de1762009-04-25 22:37:12 +00001887 llvm::APSInt Result;
1888 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001889}
Steve Naroff31a45842007-07-28 23:10:27 +00001890
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001891FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00001892 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001893
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001894 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00001895 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001896 if (Field->isBitField())
1897 return Field;
1898
1899 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
1900 if (BinOp->isAssignmentOp() && BinOp->getLHS())
1901 return BinOp->getLHS()->getBitField();
1902
1903 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001904}
1905
Chris Lattner2140e902009-02-16 22:14:05 +00001906/// isArrow - Return true if the base expression is a pointer to vector,
1907/// return false if the base expression is a vector.
1908bool ExtVectorElementExpr::isArrow() const {
1909 return getBase()->getType()->isPointerType();
1910}
1911
Nate Begeman213541a2008-04-18 23:10:10 +00001912unsigned ExtVectorElementExpr::getNumElements() const {
John McCall183700f2009-09-21 23:43:11 +00001913 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begeman8a997642008-05-09 06:41:27 +00001914 return VT->getNumElements();
1915 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001916}
1917
Nate Begeman8a997642008-05-09 06:41:27 +00001918/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001919bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbara2b34eb2009-10-18 02:09:09 +00001920 // FIXME: Refactor this code to an accessor on the AST node which returns the
1921 // "type" of component access, and share with code below and in Sema.
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001922 llvm::StringRef Comp = Accessor->getName();
Nate Begeman190d6a22009-01-18 02:01:21 +00001923
1924 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar15027422009-10-17 23:53:04 +00001925 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman190d6a22009-01-18 02:01:21 +00001926 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001927
Nate Begeman190d6a22009-01-18 02:01:21 +00001928 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar15027422009-10-17 23:53:04 +00001929 if (Comp[0] == 's' || Comp[0] == 'S')
1930 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001931
Daniel Dunbar15027422009-10-17 23:53:04 +00001932 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
1933 if (Comp.substr(i + 1).find(Comp[i]) != llvm::StringRef::npos)
Steve Narofffec0b492007-07-30 03:29:09 +00001934 return true;
Daniel Dunbar15027422009-10-17 23:53:04 +00001935
Steve Narofffec0b492007-07-30 03:29:09 +00001936 return false;
1937}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001938
Nate Begeman8a997642008-05-09 06:41:27 +00001939/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00001940void ExtVectorElementExpr::getEncodedElementAccess(
1941 llvm::SmallVectorImpl<unsigned> &Elts) const {
Daniel Dunbar4b55b242009-10-18 02:09:31 +00001942 llvm::StringRef Comp = Accessor->getName();
1943 if (Comp[0] == 's' || Comp[0] == 'S')
1944 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001945
Daniel Dunbar4b55b242009-10-18 02:09:31 +00001946 bool isHi = Comp == "hi";
1947 bool isLo = Comp == "lo";
1948 bool isEven = Comp == "even";
1949 bool isOdd = Comp == "odd";
Mike Stump1eb44332009-09-09 15:08:12 +00001950
Nate Begeman8a997642008-05-09 06:41:27 +00001951 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1952 uint64_t Index;
Mike Stump1eb44332009-09-09 15:08:12 +00001953
Nate Begeman8a997642008-05-09 06:41:27 +00001954 if (isHi)
1955 Index = e + i;
1956 else if (isLo)
1957 Index = i;
1958 else if (isEven)
1959 Index = 2 * i;
1960 else if (isOdd)
1961 Index = 2 * i + 1;
1962 else
Daniel Dunbar4b55b242009-10-18 02:09:31 +00001963 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001964
Nate Begeman3b8d1162008-05-13 21:03:02 +00001965 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001966 }
Nate Begeman8a997642008-05-09 06:41:27 +00001967}
1968
Steve Naroff68d331a2007-09-27 14:38:14 +00001969// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001970ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001971 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001972 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001973 Expr **ArgExprs, unsigned nargs)
Mike Stump1eb44332009-09-09 15:08:12 +00001974 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001975 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001976 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001977 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00001978 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00001979 if (NumArgs) {
1980 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001981 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1982 }
Steve Naroff563477d2007-09-18 23:55:05 +00001983 LBracloc = LBrac;
1984 RBracloc = RBrac;
1985}
1986
Mike Stump1eb44332009-09-09 15:08:12 +00001987// constructor for class messages.
Steve Naroff68d331a2007-09-27 14:38:14 +00001988// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001989ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001990 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001991 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001992 Expr **ArgExprs, unsigned nargs)
Mike Stump1eb44332009-09-09 15:08:12 +00001993 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001994 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001995 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001996 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenek4df728e2008-06-24 15:50:53 +00001997 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff49f109c2007-11-15 13:05:42 +00001998 if (NumArgs) {
1999 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00002000 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
2001 }
Steve Naroff563477d2007-09-18 23:55:05 +00002002 LBracloc = LBrac;
2003 RBracloc = RBrac;
2004}
2005
Mike Stump1eb44332009-09-09 15:08:12 +00002006// constructor for class messages.
Ted Kremenek4df728e2008-06-24 15:50:53 +00002007ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
2008 QualType retType, ObjCMethodDecl *mproto,
2009 SourceLocation LBrac, SourceLocation RBrac,
2010 Expr **ArgExprs, unsigned nargs)
Mike Stump1eb44332009-09-09 15:08:12 +00002011: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenek4df728e2008-06-24 15:50:53 +00002012MethodProto(mproto) {
2013 NumArgs = nargs;
2014 SubExprs = new Stmt*[NumArgs+1];
2015 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
2016 if (NumArgs) {
2017 for (unsigned i = 0; i != NumArgs; ++i)
2018 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
2019 }
2020 LBracloc = LBrac;
2021 RBracloc = RBrac;
2022}
2023
2024ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
2025 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
2026 switch (x & Flags) {
2027 default:
2028 assert(false && "Invalid ObjCMessageExpr.");
2029 case IsInstMeth:
2030 return ClassInfo(0, 0);
2031 case IsClsMethDeclUnknown:
2032 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
2033 case IsClsMethDeclKnown: {
2034 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
2035 return ClassInfo(D, D->getIdentifier());
2036 }
2037 }
2038}
2039
Chris Lattner0389e6b2009-04-26 00:44:05 +00002040void ObjCMessageExpr::setClassInfo(const ObjCMessageExpr::ClassInfo &CI) {
2041 if (CI.first == 0 && CI.second == 0)
2042 SubExprs[RECEIVER] = (Expr*)((uintptr_t)0 | IsInstMeth);
2043 else if (CI.first == 0)
2044 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.second | IsClsMethDeclUnknown);
2045 else
2046 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.first | IsClsMethDeclKnown);
2047}
2048
2049
Chris Lattner27437ca2007-10-25 00:29:32 +00002050bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Eli Friedman9a901bb2009-04-26 19:19:15 +00002051 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00002052}
2053
Nate Begeman888376a2009-08-12 02:28:50 +00002054void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
2055 unsigned NumExprs) {
2056 if (SubExprs) C.Deallocate(SubExprs);
2057
2058 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00002059 this->NumExprs = NumExprs;
2060 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump1eb44332009-09-09 15:08:12 +00002061}
Nate Begeman888376a2009-08-12 02:28:50 +00002062
2063void ShuffleVectorExpr::DoDestroy(ASTContext& C) {
2064 DestroyChildren(C);
2065 if (SubExprs) C.Deallocate(SubExprs);
2066 this->~ShuffleVectorExpr();
2067 C.Deallocate(this);
Douglas Gregor94cd5d12009-04-16 00:01:45 +00002068}
2069
Douglas Gregor42602bb2009-08-07 06:08:38 +00002070void SizeOfAlignOfExpr::DoDestroy(ASTContext& C) {
Sebastian Redl05189992008-11-11 17:56:53 +00002071 // Override default behavior of traversing children. If this has a type
2072 // operand and the type is a variable-length array, the child iteration
2073 // will iterate over the size expression. However, this expression belongs
2074 // to the type, not to this, so we don't want to delete it.
2075 // We still want to delete this expression.
Ted Kremenek8189cde2009-02-07 01:47:29 +00002076 if (isArgumentType()) {
2077 this->~SizeOfAlignOfExpr();
2078 C.Deallocate(this);
2079 }
Sebastian Redl05189992008-11-11 17:56:53 +00002080 else
Douglas Gregor42602bb2009-08-07 06:08:38 +00002081 Expr::DoDestroy(C);
Daniel Dunbar90488912008-08-28 18:02:04 +00002082}
2083
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002084//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00002085// DesignatedInitExpr
2086//===----------------------------------------------------------------------===//
2087
2088IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
2089 assert(Kind == FieldDesignator && "Only valid on a field designator");
2090 if (Field.NameOrField & 0x01)
2091 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
2092 else
2093 return getField()->getIdentifier();
2094}
2095
Mike Stump1eb44332009-09-09 15:08:12 +00002096DesignatedInitExpr::DesignatedInitExpr(QualType Ty, unsigned NumDesignators,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002097 const Designator *Designators,
Mike Stump1eb44332009-09-09 15:08:12 +00002098 SourceLocation EqualOrColonLoc,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002099 bool GNUSyntax,
Mike Stump1eb44332009-09-09 15:08:12 +00002100 Expr **IndexExprs,
Douglas Gregor9ea62762009-05-21 23:17:49 +00002101 unsigned NumIndexExprs,
2102 Expr *Init)
Mike Stump1eb44332009-09-09 15:08:12 +00002103 : Expr(DesignatedInitExprClass, Ty,
Douglas Gregor9ea62762009-05-21 23:17:49 +00002104 Init->isTypeDependent(), Init->isValueDependent()),
Mike Stump1eb44332009-09-09 15:08:12 +00002105 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
2106 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002107 this->Designators = new Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00002108
2109 // Record the initializer itself.
2110 child_iterator Child = child_begin();
2111 *Child++ = Init;
2112
2113 // Copy the designators and their subexpressions, computing
2114 // value-dependence along the way.
2115 unsigned IndexIdx = 0;
2116 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002117 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00002118
2119 if (this->Designators[I].isArrayDesignator()) {
2120 // Compute type- and value-dependence.
2121 Expr *Index = IndexExprs[IndexIdx];
Mike Stump1eb44332009-09-09 15:08:12 +00002122 ValueDependent = ValueDependent ||
Douglas Gregor9ea62762009-05-21 23:17:49 +00002123 Index->isTypeDependent() || Index->isValueDependent();
2124
2125 // Copy the index expressions into permanent storage.
2126 *Child++ = IndexExprs[IndexIdx++];
2127 } else if (this->Designators[I].isArrayRangeDesignator()) {
2128 // Compute type- and value-dependence.
2129 Expr *Start = IndexExprs[IndexIdx];
2130 Expr *End = IndexExprs[IndexIdx + 1];
Mike Stump1eb44332009-09-09 15:08:12 +00002131 ValueDependent = ValueDependent ||
Douglas Gregor9ea62762009-05-21 23:17:49 +00002132 Start->isTypeDependent() || Start->isValueDependent() ||
2133 End->isTypeDependent() || End->isValueDependent();
2134
2135 // Copy the start/end expressions into permanent storage.
2136 *Child++ = IndexExprs[IndexIdx++];
2137 *Child++ = IndexExprs[IndexIdx++];
2138 }
2139 }
2140
2141 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002142}
2143
Douglas Gregor05c13a32009-01-22 00:58:24 +00002144DesignatedInitExpr *
Mike Stump1eb44332009-09-09 15:08:12 +00002145DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00002146 unsigned NumDesignators,
2147 Expr **IndexExprs, unsigned NumIndexExprs,
2148 SourceLocation ColonOrEqualLoc,
2149 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00002150 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00002151 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor9ea62762009-05-21 23:17:49 +00002152 return new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators, Designators,
2153 ColonOrEqualLoc, UsesColonSyntax,
2154 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002155}
2156
Mike Stump1eb44332009-09-09 15:08:12 +00002157DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregord077d752009-04-16 00:55:48 +00002158 unsigned NumIndexExprs) {
2159 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
2160 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
2161 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
2162}
2163
Mike Stump1eb44332009-09-09 15:08:12 +00002164void DesignatedInitExpr::setDesignators(const Designator *Desigs,
Douglas Gregord077d752009-04-16 00:55:48 +00002165 unsigned NumDesigs) {
2166 if (Designators)
2167 delete [] Designators;
2168
2169 Designators = new Designator[NumDesigs];
2170 NumDesignators = NumDesigs;
2171 for (unsigned I = 0; I != NumDesigs; ++I)
2172 Designators[I] = Desigs[I];
2173}
2174
Douglas Gregor05c13a32009-01-22 00:58:24 +00002175SourceRange DesignatedInitExpr::getSourceRange() const {
2176 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00002177 Designator &First =
2178 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00002179 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00002180 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00002181 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
2182 else
2183 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
2184 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00002185 StartLoc =
2186 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002187 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
2188}
2189
Douglas Gregor05c13a32009-01-22 00:58:24 +00002190Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
2191 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
2192 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2193 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002194 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2195 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
2196}
2197
2198Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00002199 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00002200 "Requires array range designator");
2201 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2202 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002203 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2204 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
2205}
2206
2207Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00002208 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00002209 "Requires array range designator");
2210 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2211 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002212 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2213 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
2214}
2215
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002216/// \brief Replaces the designator at index @p Idx with the series
2217/// of designators in [First, Last).
Mike Stump1eb44332009-09-09 15:08:12 +00002218void DesignatedInitExpr::ExpandDesignator(unsigned Idx,
2219 const Designator *First,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002220 const Designator *Last) {
2221 unsigned NumNewDesignators = Last - First;
2222 if (NumNewDesignators == 0) {
2223 std::copy_backward(Designators + Idx + 1,
2224 Designators + NumDesignators,
2225 Designators + Idx);
2226 --NumNewDesignators;
2227 return;
2228 } else if (NumNewDesignators == 1) {
2229 Designators[Idx] = *First;
2230 return;
2231 }
2232
Mike Stump1eb44332009-09-09 15:08:12 +00002233 Designator *NewDesignators
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002234 = new Designator[NumDesignators - 1 + NumNewDesignators];
2235 std::copy(Designators, Designators + Idx, NewDesignators);
2236 std::copy(First, Last, NewDesignators + Idx);
2237 std::copy(Designators + Idx + 1, Designators + NumDesignators,
2238 NewDesignators + Idx + NumNewDesignators);
2239 delete [] Designators;
2240 Designators = NewDesignators;
2241 NumDesignators = NumDesignators - 1 + NumNewDesignators;
2242}
2243
Douglas Gregor42602bb2009-08-07 06:08:38 +00002244void DesignatedInitExpr::DoDestroy(ASTContext &C) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002245 delete [] Designators;
Douglas Gregor42602bb2009-08-07 06:08:38 +00002246 Expr::DoDestroy(C);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00002247}
2248
Mike Stump1eb44332009-09-09 15:08:12 +00002249ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00002250 Expr **exprs, unsigned nexprs,
2251 SourceLocation rparenloc)
2252: Expr(ParenListExprClass, QualType(),
2253 hasAnyTypeDependentArguments(exprs, nexprs),
Mike Stump1eb44332009-09-09 15:08:12 +00002254 hasAnyValueDependentArguments(exprs, nexprs)),
Nate Begeman2ef13e52009-08-10 23:49:36 +00002255 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
Mike Stump1eb44332009-09-09 15:08:12 +00002256
Nate Begeman2ef13e52009-08-10 23:49:36 +00002257 Exprs = new (C) Stmt*[nexprs];
2258 for (unsigned i = 0; i != nexprs; ++i)
2259 Exprs[i] = exprs[i];
2260}
2261
2262void ParenListExpr::DoDestroy(ASTContext& C) {
2263 DestroyChildren(C);
2264 if (Exprs) C.Deallocate(Exprs);
2265 this->~ParenListExpr();
2266 C.Deallocate(this);
2267}
2268
Douglas Gregor05c13a32009-01-22 00:58:24 +00002269//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00002270// ExprIterator.
2271//===----------------------------------------------------------------------===//
2272
2273Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
2274Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
2275Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
2276const Expr* ConstExprIterator::operator[](size_t idx) const {
2277 return cast<Expr>(I[idx]);
2278}
2279const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
2280const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
2281
2282//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002283// Child Iterators for iterating over subexpressions/substatements
2284//===----------------------------------------------------------------------===//
2285
2286// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002287Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
2288Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002289
Steve Naroff7779db42007-11-12 14:29:37 +00002290// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002291Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
2292Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00002293
Steve Naroffe3e9add2008-06-02 23:03:37 +00002294// ObjCPropertyRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002295Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
2296Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffae784072008-05-30 00:40:33 +00002297
Fariborz Jahanian09105f52009-08-20 17:02:02 +00002298// ObjCImplicitSetterGetterRefExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002299Stmt::child_iterator ObjCImplicitSetterGetterRefExpr::child_begin() {
2300 return &Base;
Fariborz Jahanian154440e2009-08-18 20:50:23 +00002301}
Mike Stump1eb44332009-09-09 15:08:12 +00002302Stmt::child_iterator ObjCImplicitSetterGetterRefExpr::child_end() {
2303 return &Base+1;
Fariborz Jahanian154440e2009-08-18 20:50:23 +00002304}
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00002305
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00002306// ObjCSuperExpr
2307Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
2308Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
2309
Steve Narofff242b1b2009-07-24 17:54:45 +00002310// ObjCIsaExpr
2311Stmt::child_iterator ObjCIsaExpr::child_begin() { return &Base; }
2312Stmt::child_iterator ObjCIsaExpr::child_end() { return &Base+1; }
2313
Chris Lattnerd9f69102008-08-10 01:53:14 +00002314// PredefinedExpr
2315Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
2316Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002317
2318// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002319Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
2320Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002321
2322// CharacterLiteral
Chris Lattnerd603eaa2009-02-16 22:33:34 +00002323Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek9ac59282007-10-18 23:28:49 +00002324Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002325
2326// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002327Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
2328Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002329
Chris Lattner5d661452007-08-26 03:42:43 +00002330// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00002331Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
2332Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00002333
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002334// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002335Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
2336Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002337
2338// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002339Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
2340Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002341
2342// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00002343Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
2344Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002345
Sebastian Redl05189992008-11-11 17:56:53 +00002346// SizeOfAlignOfExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002347Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
Sebastian Redl05189992008-11-11 17:56:53 +00002348 // If this is of a type and the type is a VLA type (and not a typedef), the
2349 // size expression of the VLA needs to be treated as an executable expression.
2350 // Why isn't this weirdness documented better in StmtIterator?
2351 if (isArgumentType()) {
2352 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
2353 getArgumentType().getTypePtr()))
2354 return child_iterator(T);
2355 return child_iterator();
2356 }
Sebastian Redld4575892008-12-03 23:17:54 +00002357 return child_iterator(&Argument.Ex);
Ted Kremenek9ac59282007-10-18 23:28:49 +00002358}
Sebastian Redl05189992008-11-11 17:56:53 +00002359Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
2360 if (isArgumentType())
2361 return child_iterator();
Sebastian Redld4575892008-12-03 23:17:54 +00002362 return child_iterator(&Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00002363}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002364
2365// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00002366Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002367 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002368}
Ted Kremenek1237c672007-08-24 20:06:47 +00002369Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002370 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002371}
2372
2373// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00002374Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002375 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002376}
Ted Kremenek1237c672007-08-24 20:06:47 +00002377Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002378 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00002379}
Ted Kremenek1237c672007-08-24 20:06:47 +00002380
2381// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002382Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
2383Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002384
Nate Begeman213541a2008-04-18 23:10:10 +00002385// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002386Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
2387Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002388
2389// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002390Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
2391Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002392
Ted Kremenek1237c672007-08-24 20:06:47 +00002393// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002394Stmt::child_iterator CastExpr::child_begin() { return &Op; }
2395Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002396
2397// BinaryOperator
2398Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002399 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00002400}
Ted Kremenek1237c672007-08-24 20:06:47 +00002401Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002402 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00002403}
2404
2405// ConditionalOperator
2406Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002407 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00002408}
Ted Kremenek1237c672007-08-24 20:06:47 +00002409Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002410 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00002411}
2412
2413// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002414Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
2415Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00002416
Ted Kremenek1237c672007-08-24 20:06:47 +00002417// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002418Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
2419Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002420
2421// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002422Stmt::child_iterator TypesCompatibleExpr::child_begin() {
2423 return child_iterator();
2424}
2425
2426Stmt::child_iterator TypesCompatibleExpr::child_end() {
2427 return child_iterator();
2428}
Ted Kremenek1237c672007-08-24 20:06:47 +00002429
2430// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002431Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
2432Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00002433
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002434// GNUNullExpr
2435Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
2436Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
2437
Eli Friedmand38617c2008-05-14 19:38:39 +00002438// ShuffleVectorExpr
2439Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002440 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00002441}
2442Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002443 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00002444}
2445
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002446// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002447Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
2448Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002449
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002450// InitListExpr
2451Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002452 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002453}
2454Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002455 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002456}
2457
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002458// DesignatedInitExpr
Douglas Gregor05c13a32009-01-22 00:58:24 +00002459Stmt::child_iterator DesignatedInitExpr::child_begin() {
2460 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2461 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002462 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2463}
2464Stmt::child_iterator DesignatedInitExpr::child_end() {
2465 return child_iterator(&*child_begin() + NumSubExprs);
2466}
2467
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002468// ImplicitValueInitExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002469Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
2470 return child_iterator();
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002471}
2472
Mike Stump1eb44332009-09-09 15:08:12 +00002473Stmt::child_iterator ImplicitValueInitExpr::child_end() {
2474 return child_iterator();
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002475}
2476
Nate Begeman2ef13e52009-08-10 23:49:36 +00002477// ParenListExpr
2478Stmt::child_iterator ParenListExpr::child_begin() {
2479 return &Exprs[0];
2480}
2481Stmt::child_iterator ParenListExpr::child_end() {
2482 return &Exprs[0]+NumExprs;
2483}
2484
Ted Kremenek1237c672007-08-24 20:06:47 +00002485// ObjCStringLiteral
Mike Stump1eb44332009-09-09 15:08:12 +00002486Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002487 return &String;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002488}
2489Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002490 return &String+1;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002491}
Ted Kremenek1237c672007-08-24 20:06:47 +00002492
2493// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002494Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
2495Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00002496
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002497// ObjCSelectorExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002498Stmt::child_iterator ObjCSelectorExpr::child_begin() {
Ted Kremenek9ac59282007-10-18 23:28:49 +00002499 return child_iterator();
2500}
2501Stmt::child_iterator ObjCSelectorExpr::child_end() {
2502 return child_iterator();
2503}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002504
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002505// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002506Stmt::child_iterator ObjCProtocolExpr::child_begin() {
2507 return child_iterator();
2508}
2509Stmt::child_iterator ObjCProtocolExpr::child_end() {
2510 return child_iterator();
2511}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002512
Steve Naroff563477d2007-09-18 23:55:05 +00002513// ObjCMessageExpr
Mike Stump1eb44332009-09-09 15:08:12 +00002514Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002515 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroff563477d2007-09-18 23:55:05 +00002516}
2517Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002518 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroff563477d2007-09-18 23:55:05 +00002519}
2520
Steve Naroff4eb206b2008-09-03 18:15:37 +00002521// Blocks
Steve Naroff56ee6892008-10-08 17:01:13 +00002522Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
2523Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff4eb206b2008-09-03 18:15:37 +00002524
Ted Kremenek9da13f92008-09-26 23:24:14 +00002525Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
2526Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }