blob: 46dce59d3e9d1536108cba04f05df86920f9d101 [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"
Chris Lattnera4d55d82008-10-06 06:40:35 +000015#include "clang/AST/APValue.h"
Chris Lattner2eadfb62007-07-15 23:32:58 +000016#include "clang/AST/ASTContext.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor98cd5992008-10-21 23:43:52 +000018#include "clang/AST/DeclCXX.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000019#include "clang/AST/DeclTemplate.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000020#include "clang/AST/RecordLayout.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "clang/AST/StmtVisitor.h"
Chris Lattnerda5a6b62007-11-27 18:22:04 +000022#include "clang/Basic/TargetInfo.h"
Douglas Gregorffb4b6e2009-04-15 06:41:24 +000023#include <algorithm>
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25
26//===----------------------------------------------------------------------===//
27// Primary Expressions.
28//===----------------------------------------------------------------------===//
29
Anders Carlssona135fb42009-03-15 18:34:13 +000030IntegerLiteral* IntegerLiteral::Clone(ASTContext &C) const {
31 return new (C) IntegerLiteral(Value, getType(), Loc);
32}
33
Chris Lattnerda8249e2008-06-07 22:13:43 +000034/// getValueAsApproximateDouble - This returns the value as an inaccurate
35/// double. Note that this may cause loss of precision, but is useful for
36/// debugging dumps, etc.
37double FloatingLiteral::getValueAsApproximateDouble() const {
38 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +000039 bool ignored;
40 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
41 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +000042 return V.convertToDouble();
43}
44
Chris Lattner2085fd62009-02-18 06:40:38 +000045StringLiteral *StringLiteral::Create(ASTContext &C, const char *StrData,
46 unsigned ByteLength, bool Wide,
47 QualType Ty,
Anders Carlssona135fb42009-03-15 18:34:13 +000048 const SourceLocation *Loc,
49 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +000050 // Allocate enough space for the StringLiteral plus an array of locations for
51 // any concatenated string tokens.
52 void *Mem = C.Allocate(sizeof(StringLiteral)+
53 sizeof(SourceLocation)*(NumStrs-1),
54 llvm::alignof<StringLiteral>());
55 StringLiteral *SL = new (Mem) StringLiteral(Ty);
56
Reid Spencer5f016e22007-07-11 17:01:13 +000057 // OPTIMIZE: could allocate this appended to the StringLiteral.
Chris Lattner2085fd62009-02-18 06:40:38 +000058 char *AStrData = new (C, 1) char[ByteLength];
59 memcpy(AStrData, StrData, ByteLength);
60 SL->StrData = AStrData;
61 SL->ByteLength = ByteLength;
62 SL->IsWide = Wide;
63 SL->TokLocs[0] = Loc[0];
64 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +000065
Chris Lattner726e1682009-02-18 05:49:11 +000066 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +000067 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
68 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +000069}
70
Douglas Gregor673ecd62009-04-15 16:35:07 +000071StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
72 void *Mem = C.Allocate(sizeof(StringLiteral)+
73 sizeof(SourceLocation)*(NumStrs-1),
74 llvm::alignof<StringLiteral>());
75 StringLiteral *SL = new (Mem) StringLiteral(QualType());
76 SL->StrData = 0;
77 SL->ByteLength = 0;
78 SL->NumConcatenated = NumStrs;
79 return SL;
80}
81
Anders Carlssona135fb42009-03-15 18:34:13 +000082StringLiteral* StringLiteral::Clone(ASTContext &C) const {
83 return Create(C, StrData, ByteLength, IsWide, getType(),
84 TokLocs, NumConcatenated);
85}
Chris Lattner726e1682009-02-18 05:49:11 +000086
Ted Kremenek6e94ef52009-02-06 19:55:15 +000087void StringLiteral::Destroy(ASTContext &C) {
Ted Kremenek8189cde2009-02-07 01:47:29 +000088 C.Deallocate(const_cast<char*>(StrData));
Ted Kremenek353ffce2009-02-09 17:10:09 +000089 this->~StringLiteral();
90 C.Deallocate(this);
Reid Spencer5f016e22007-07-11 17:01:13 +000091}
92
Douglas Gregor673ecd62009-04-15 16:35:07 +000093void StringLiteral::setStrData(ASTContext &C, const char *Str, unsigned Len) {
94 if (StrData)
95 C.Deallocate(const_cast<char*>(StrData));
96
97 char *AStrData = new (C, 1) char[Len];
98 memcpy(AStrData, Str, Len);
99 StrData = AStrData;
100 ByteLength = Len;
101}
102
Reid Spencer5f016e22007-07-11 17:01:13 +0000103/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
104/// corresponds to, e.g. "sizeof" or "[pre]++".
105const char *UnaryOperator::getOpcodeStr(Opcode Op) {
106 switch (Op) {
107 default: assert(0 && "Unknown unary operator");
108 case PostInc: return "++";
109 case PostDec: return "--";
110 case PreInc: return "++";
111 case PreDec: return "--";
112 case AddrOf: return "&";
113 case Deref: return "*";
114 case Plus: return "+";
115 case Minus: return "-";
116 case Not: return "~";
117 case LNot: return "!";
118 case Real: return "__real";
119 case Imag: return "__imag";
Reid Spencer5f016e22007-07-11 17:01:13 +0000120 case Extension: return "__extension__";
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000121 case OffsetOf: return "__builtin_offsetof";
Reid Spencer5f016e22007-07-11 17:01:13 +0000122 }
123}
124
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000125UnaryOperator::Opcode
126UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
127 switch (OO) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000128 default: assert(false && "No unary operator for overloaded function");
Chris Lattnerb7beee92009-03-22 00:10:22 +0000129 case OO_PlusPlus: return Postfix ? PostInc : PreInc;
130 case OO_MinusMinus: return Postfix ? PostDec : PreDec;
131 case OO_Amp: return AddrOf;
132 case OO_Star: return Deref;
133 case OO_Plus: return Plus;
134 case OO_Minus: return Minus;
135 case OO_Tilde: return Not;
136 case OO_Exclaim: return LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000137 }
138}
139
140OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
141 switch (Opc) {
142 case PostInc: case PreInc: return OO_PlusPlus;
143 case PostDec: case PreDec: return OO_MinusMinus;
144 case AddrOf: return OO_Amp;
145 case Deref: return OO_Star;
146 case Plus: return OO_Plus;
147 case Minus: return OO_Minus;
148 case Not: return OO_Tilde;
149 case LNot: return OO_Exclaim;
150 default: return OO_None;
151 }
152}
153
154
Reid Spencer5f016e22007-07-11 17:01:13 +0000155//===----------------------------------------------------------------------===//
156// Postfix Operators.
157//===----------------------------------------------------------------------===//
158
Ted Kremenek668bf912009-02-09 20:51:47 +0000159CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, Expr **args,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000160 unsigned numargs, QualType t, SourceLocation rparenloc)
Douglas Gregor898574e2008-12-05 23:32:09 +0000161 : Expr(SC, t,
162 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000163 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000164 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000165
166 SubExprs = new (C) Stmt*[numargs+1];
Douglas Gregorb4609802008-11-14 16:09:21 +0000167 SubExprs[FN] = fn;
168 for (unsigned i = 0; i != numargs; ++i)
169 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000170
Douglas Gregorb4609802008-11-14 16:09:21 +0000171 RParenLoc = rparenloc;
172}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000173
Ted Kremenek668bf912009-02-09 20:51:47 +0000174CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
175 QualType t, SourceLocation rparenloc)
Douglas Gregor898574e2008-12-05 23:32:09 +0000176 : Expr(CallExprClass, t,
177 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000178 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000179 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000180
181 SubExprs = new (C) Stmt*[numargs+1];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000182 SubExprs[FN] = fn;
Reid Spencer5f016e22007-07-11 17:01:13 +0000183 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000184 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000185
Reid Spencer5f016e22007-07-11 17:01:13 +0000186 RParenLoc = rparenloc;
187}
188
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000189CallExpr::CallExpr(ASTContext &C, EmptyShell Empty)
190 : Expr(CallExprClass, Empty), SubExprs(0), NumArgs(0) {
191 SubExprs = new (C) Stmt*[1];
192}
193
Ted Kremenek668bf912009-02-09 20:51:47 +0000194void CallExpr::Destroy(ASTContext& C) {
195 DestroyChildren(C);
196 if (SubExprs) C.Deallocate(SubExprs);
197 this->~CallExpr();
198 C.Deallocate(this);
199}
200
Chris Lattnerd18b3292007-12-28 05:25:02 +0000201/// setNumArgs - This changes the number of arguments present in this call.
202/// Any orphaned expressions are deleted by this, and any new operands are set
203/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000204void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000205 // No change, just return.
206 if (NumArgs == getNumArgs()) return;
207
208 // If shrinking # arguments, just delete the extras and forgot them.
209 if (NumArgs < getNumArgs()) {
210 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000211 getArg(i)->Destroy(C);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000212 this->NumArgs = NumArgs;
213 return;
214 }
215
216 // Otherwise, we are growing the # arguments. New an bigger argument array.
Ted Kremenek55499762008-06-17 02:43:46 +0000217 Stmt **NewSubExprs = new Stmt*[NumArgs+1];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000218 // Copy over args.
219 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
220 NewSubExprs[i] = SubExprs[i];
221 // Null out new args.
222 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
223 NewSubExprs[i] = 0;
224
Douglas Gregor88c9a462009-04-17 21:46:47 +0000225 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000226 SubExprs = NewSubExprs;
227 this->NumArgs = NumArgs;
228}
229
Chris Lattnercb888962008-10-06 05:00:53 +0000230/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
231/// not, return 0.
Douglas Gregor3c385e52009-02-14 18:57:46 +0000232unsigned CallExpr::isBuiltinCall(ASTContext &Context) const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000233 // All simple function calls (e.g. func()) are implicitly cast to pointer to
234 // function. As a result, we try and obtain the DeclRefExpr from the
235 // ImplicitCastExpr.
236 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
237 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000238 return 0;
239
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000240 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
241 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000242 return 0;
243
Anders Carlssonbcba2012008-01-31 02:13:57 +0000244 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
245 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000246 return 0;
247
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000248 if (!FDecl->getIdentifier())
249 return 0;
250
Douglas Gregor3c385e52009-02-14 18:57:46 +0000251 return FDecl->getBuiltinID(Context);
Chris Lattnercb888962008-10-06 05:00:53 +0000252}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000253
Chris Lattnercb888962008-10-06 05:00:53 +0000254
Reid Spencer5f016e22007-07-11 17:01:13 +0000255/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
256/// corresponds to, e.g. "<<=".
257const char *BinaryOperator::getOpcodeStr(Opcode Op) {
258 switch (Op) {
Douglas Gregorbaf53482009-03-12 22:51:37 +0000259 case PtrMemD: return ".*";
260 case PtrMemI: return "->*";
Reid Spencer5f016e22007-07-11 17:01:13 +0000261 case Mul: return "*";
262 case Div: return "/";
263 case Rem: return "%";
264 case Add: return "+";
265 case Sub: return "-";
266 case Shl: return "<<";
267 case Shr: return ">>";
268 case LT: return "<";
269 case GT: return ">";
270 case LE: return "<=";
271 case GE: return ">=";
272 case EQ: return "==";
273 case NE: return "!=";
274 case And: return "&";
275 case Xor: return "^";
276 case Or: return "|";
277 case LAnd: return "&&";
278 case LOr: return "||";
279 case Assign: return "=";
280 case MulAssign: return "*=";
281 case DivAssign: return "/=";
282 case RemAssign: return "%=";
283 case AddAssign: return "+=";
284 case SubAssign: return "-=";
285 case ShlAssign: return "<<=";
286 case ShrAssign: return ">>=";
287 case AndAssign: return "&=";
288 case XorAssign: return "^=";
289 case OrAssign: return "|=";
290 case Comma: return ",";
291 }
Douglas Gregorbaf53482009-03-12 22:51:37 +0000292
293 return "";
Reid Spencer5f016e22007-07-11 17:01:13 +0000294}
295
Douglas Gregor063daf62009-03-13 18:40:31 +0000296BinaryOperator::Opcode
297BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
298 switch (OO) {
Chris Lattnerb7beee92009-03-22 00:10:22 +0000299 default: assert(false && "Not an overloadable binary operator");
Douglas Gregor063daf62009-03-13 18:40:31 +0000300 case OO_Plus: return Add;
301 case OO_Minus: return Sub;
302 case OO_Star: return Mul;
303 case OO_Slash: return Div;
304 case OO_Percent: return Rem;
305 case OO_Caret: return Xor;
306 case OO_Amp: return And;
307 case OO_Pipe: return Or;
308 case OO_Equal: return Assign;
309 case OO_Less: return LT;
310 case OO_Greater: return GT;
311 case OO_PlusEqual: return AddAssign;
312 case OO_MinusEqual: return SubAssign;
313 case OO_StarEqual: return MulAssign;
314 case OO_SlashEqual: return DivAssign;
315 case OO_PercentEqual: return RemAssign;
316 case OO_CaretEqual: return XorAssign;
317 case OO_AmpEqual: return AndAssign;
318 case OO_PipeEqual: return OrAssign;
319 case OO_LessLess: return Shl;
320 case OO_GreaterGreater: return Shr;
321 case OO_LessLessEqual: return ShlAssign;
322 case OO_GreaterGreaterEqual: return ShrAssign;
323 case OO_EqualEqual: return EQ;
324 case OO_ExclaimEqual: return NE;
325 case OO_LessEqual: return LE;
326 case OO_GreaterEqual: return GE;
327 case OO_AmpAmp: return LAnd;
328 case OO_PipePipe: return LOr;
329 case OO_Comma: return Comma;
330 case OO_ArrowStar: return PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +0000331 }
332}
333
334OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
335 static const OverloadedOperatorKind OverOps[] = {
336 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
337 OO_Star, OO_Slash, OO_Percent,
338 OO_Plus, OO_Minus,
339 OO_LessLess, OO_GreaterGreater,
340 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
341 OO_EqualEqual, OO_ExclaimEqual,
342 OO_Amp,
343 OO_Caret,
344 OO_Pipe,
345 OO_AmpAmp,
346 OO_PipePipe,
347 OO_Equal, OO_StarEqual,
348 OO_SlashEqual, OO_PercentEqual,
349 OO_PlusEqual, OO_MinusEqual,
350 OO_LessLessEqual, OO_GreaterGreaterEqual,
351 OO_AmpEqual, OO_CaretEqual,
352 OO_PipeEqual,
353 OO_Comma
354 };
355 return OverOps[Opc];
356}
357
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000358InitListExpr::InitListExpr(SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +0000359 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +0000360 SourceLocation rbraceloc)
Steve Naroffc5ae8992008-05-01 02:04:18 +0000361 : Expr(InitListExprClass, QualType()),
Douglas Gregor0bb76892009-01-29 16:53:55 +0000362 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0),
Douglas Gregora9c87802009-01-29 19:42:23 +0000363 UnionFieldInit(0), HadArrayRangeDesignator(false) {
Chris Lattner418f6c72008-10-26 23:43:26 +0000364
365 InitExprs.insert(InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000366}
Reid Spencer5f016e22007-07-11 17:01:13 +0000367
Douglas Gregorfa219202009-03-20 23:58:33 +0000368void InitListExpr::reserveInits(unsigned NumInits) {
369 if (NumInits > InitExprs.size())
370 InitExprs.reserve(NumInits);
371}
372
Douglas Gregor4c678342009-01-28 21:54:33 +0000373void InitListExpr::resizeInits(ASTContext &Context, unsigned NumInits) {
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000374 for (unsigned Idx = NumInits, LastIdx = InitExprs.size();
Daniel Dunbarf592c922009-02-16 22:42:44 +0000375 Idx < LastIdx; ++Idx)
Douglas Gregor06863682009-03-20 23:38:03 +0000376 InitExprs[Idx]->Destroy(Context);
Douglas Gregor4c678342009-01-28 21:54:33 +0000377 InitExprs.resize(NumInits, 0);
378}
379
380Expr *InitListExpr::updateInit(unsigned Init, Expr *expr) {
381 if (Init >= InitExprs.size()) {
382 InitExprs.insert(InitExprs.end(), Init - InitExprs.size() + 1, 0);
383 InitExprs.back() = expr;
384 return 0;
385 }
386
387 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
388 InitExprs[Init] = expr;
389 return Result;
390}
391
Steve Naroffbfdcae62008-09-04 15:31:07 +0000392/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000393///
394const FunctionType *BlockExpr::getFunctionType() const {
395 return getType()->getAsBlockPointerType()->
396 getPointeeType()->getAsFunctionType();
397}
398
Steve Naroff56ee6892008-10-08 17:01:13 +0000399SourceLocation BlockExpr::getCaretLocation() const {
400 return TheBlock->getCaretLocation();
401}
Douglas Gregor72971342009-04-18 00:02:19 +0000402const Stmt *BlockExpr::getBody() const {
403 return TheBlock->getBody();
404}
405Stmt *BlockExpr::getBody() {
406 return TheBlock->getBody();
407}
Steve Naroff56ee6892008-10-08 17:01:13 +0000408
409
Reid Spencer5f016e22007-07-11 17:01:13 +0000410//===----------------------------------------------------------------------===//
411// Generic Expression Routines
412//===----------------------------------------------------------------------===//
413
Chris Lattner026dc962009-02-14 07:37:35 +0000414/// isUnusedResultAWarning - Return true if this immediate expression should
415/// be warned about if the result is unused. If so, fill in Loc and Ranges
416/// with location to warn on and the source range[s] to report with the
417/// warning.
418bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
419 SourceRange &R2) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000420 switch (getStmtClass()) {
421 default:
Chris Lattner026dc962009-02-14 07:37:35 +0000422 Loc = getExprLoc();
423 R1 = getSourceRange();
424 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000425 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000426 return cast<ParenExpr>(this)->getSubExpr()->
427 isUnusedResultAWarning(Loc, R1, R2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000428 case UnaryOperatorClass: {
429 const UnaryOperator *UO = cast<UnaryOperator>(this);
430
431 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000432 default: break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000433 case UnaryOperator::PostInc:
434 case UnaryOperator::PostDec:
435 case UnaryOperator::PreInc:
Chris Lattner026dc962009-02-14 07:37:35 +0000436 case UnaryOperator::PreDec: // ++/--
437 return false; // Not a warning.
Reid Spencer5f016e22007-07-11 17:01:13 +0000438 case UnaryOperator::Deref:
439 // Dereferencing a volatile pointer is a side-effect.
Chris Lattner026dc962009-02-14 07:37:35 +0000440 if (getType().isVolatileQualified())
441 return false;
442 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000443 case UnaryOperator::Real:
444 case UnaryOperator::Imag:
445 // accessing a piece of a volatile complex is a side-effect.
Chris Lattner026dc962009-02-14 07:37:35 +0000446 if (UO->getSubExpr()->getType().isVolatileQualified())
447 return false;
448 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000449 case UnaryOperator::Extension:
Chris Lattner026dc962009-02-14 07:37:35 +0000450 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000451 }
Chris Lattner026dc962009-02-14 07:37:35 +0000452 Loc = UO->getOperatorLoc();
453 R1 = UO->getSubExpr()->getSourceRange();
454 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000455 }
Chris Lattnere7716e62007-12-01 06:07:34 +0000456 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000457 const BinaryOperator *BO = cast<BinaryOperator>(this);
458 // Consider comma to have side effects if the LHS or RHS does.
459 if (BO->getOpcode() == BinaryOperator::Comma)
460 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2) ||
461 BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattnere7716e62007-12-01 06:07:34 +0000462
Chris Lattner026dc962009-02-14 07:37:35 +0000463 if (BO->isAssignmentOp())
464 return false;
465 Loc = BO->getOperatorLoc();
466 R1 = BO->getLHS()->getSourceRange();
467 R2 = BO->getRHS()->getSourceRange();
468 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +0000469 }
Chris Lattnereb14fe82007-08-25 02:00:02 +0000470 case CompoundAssignOperatorClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000471 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000472
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000473 case ConditionalOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000474 // The condition must be evaluated, but if either the LHS or RHS is a
475 // warning, warn about them.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000476 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Mike Stumpbefbcf42009-02-27 03:16:57 +0000477 if (Exp->getLHS() && Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2))
Chris Lattner026dc962009-02-14 07:37:35 +0000478 return true;
479 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000480 }
481
Reid Spencer5f016e22007-07-11 17:01:13 +0000482 case MemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000483 // If the base pointer or element is to a volatile pointer/field, accessing
484 // it is a side effect.
485 if (getType().isVolatileQualified())
486 return false;
487 Loc = cast<MemberExpr>(this)->getMemberLoc();
488 R1 = SourceRange(Loc, Loc);
489 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
490 return true;
491
Reid Spencer5f016e22007-07-11 17:01:13 +0000492 case ArraySubscriptExprClass:
493 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +0000494 // it is a side effect.
495 if (getType().isVolatileQualified())
496 return false;
497 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
498 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
499 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
500 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +0000501
Reid Spencer5f016e22007-07-11 17:01:13 +0000502 case CallExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000503 case CXXOperatorCallExprClass: {
504 // If this is a direct call, get the callee.
505 const CallExpr *CE = cast<CallExpr>(this);
506 const Expr *CalleeExpr = CE->getCallee()->IgnoreParenCasts();
507 if (const DeclRefExpr *CalleeDRE = dyn_cast<DeclRefExpr>(CalleeExpr)) {
508 // If the callee has attribute pure, const, or warn_unused_result, warn
509 // about it. void foo() { strlen("bar"); } should warn.
510 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeDRE->getDecl()))
511 if (FD->getAttr<WarnUnusedResultAttr>() ||
512 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
513 Loc = CE->getCallee()->getLocStart();
514 R1 = CE->getCallee()->getSourceRange();
515
516 if (unsigned NumArgs = CE->getNumArgs())
517 R2 = SourceRange(CE->getArg(0)->getLocStart(),
518 CE->getArg(NumArgs-1)->getLocEnd());
519 return true;
520 }
521 }
522 return false;
523 }
Chris Lattnera9c01022007-09-26 22:06:30 +0000524 case ObjCMessageExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000525 return false;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000526 case StmtExprClass: {
527 // Statement exprs don't logically have side effects themselves, but are
528 // sometimes used in macros in ways that give them a type that is unused.
529 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
530 // however, if the result of the stmt expr is dead, we don't want to emit a
531 // warning.
532 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
533 if (!CS->body_empty())
534 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Chris Lattner026dc962009-02-14 07:37:35 +0000535 return E->isUnusedResultAWarning(Loc, R1, R2);
536
537 Loc = cast<StmtExpr>(this)->getLParenLoc();
538 R1 = getSourceRange();
539 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000540 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000541 case CStyleCastExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000542 // If this is a cast to void, check the operand. Otherwise, the result of
543 // the cast is unused.
544 if (getType()->isVoidType())
545 return cast<CastExpr>(this)->getSubExpr()->isUnusedResultAWarning(Loc,
546 R1, R2);
547 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
548 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
549 return true;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000550 case CXXFunctionalCastExprClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000551 // If this is a cast to void, check the operand. Otherwise, the result of
552 // the cast is unused.
553 if (getType()->isVoidType())
Chris Lattner026dc962009-02-14 07:37:35 +0000554 return cast<CastExpr>(this)->getSubExpr()->isUnusedResultAWarning(Loc,
555 R1, R2);
556 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
557 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
558 return true;
559
Eli Friedman4be1f472008-05-19 21:24:43 +0000560 case ImplicitCastExprClass:
561 // Check the operand, since implicit casts are inserted by Sema
Chris Lattner026dc962009-02-14 07:37:35 +0000562 return cast<ImplicitCastExpr>(this)
563 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Eli Friedman4be1f472008-05-19 21:24:43 +0000564
Chris Lattner04421082008-04-08 04:40:51 +0000565 case CXXDefaultArgExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000566 return cast<CXXDefaultArgExpr>(this)
567 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000568
569 case CXXNewExprClass:
570 // FIXME: In theory, there might be new expressions that don't have side
571 // effects (e.g. a placement new with an uninitialized POD).
572 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000573 return false;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000574 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000575}
576
Douglas Gregorba7e2102008-10-22 15:04:37 +0000577/// DeclCanBeLvalue - Determine whether the given declaration can be
578/// an lvalue. This is a helper routine for isLvalue.
579static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000580 // C++ [temp.param]p6:
581 // A non-type non-reference template-parameter is not an lvalue.
582 if (const NonTypeTemplateParmDecl *NTTParm
583 = dyn_cast<NonTypeTemplateParmDecl>(Decl))
584 return NTTParm->getType()->isReferenceType();
585
Douglas Gregor44b43212008-12-11 16:49:14 +0000586 return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) ||
Douglas Gregorba7e2102008-10-22 15:04:37 +0000587 // C++ 3.10p2: An lvalue refers to an object or function.
588 (Ctx.getLangOptions().CPlusPlus &&
589 (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl)));
590}
591
Reid Spencer5f016e22007-07-11 17:01:13 +0000592/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
593/// incomplete type other than void. Nonarray expressions that can be lvalues:
594/// - name, where name must be a variable
595/// - e[i]
596/// - (e), where e must be an lvalue
597/// - e.name, where e must be an lvalue
598/// - e->name
599/// - *e, the type of e cannot be a function type
600/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +0000601/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000602/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000603///
Chris Lattner28be73f2008-07-26 21:30:36 +0000604Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Douglas Gregor98cd5992008-10-21 23:43:52 +0000605 // first, check the type (C99 6.3.2.1). Expressions with function
606 // type in C are not lvalues, but they can be lvalues in C++.
607 if (!Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000608 return LV_NotObjectType;
609
Steve Naroffacb818a2008-02-10 01:39:04 +0000610 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattner28be73f2008-07-26 21:30:36 +0000611 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +0000612 return LV_IncompleteVoidType;
613
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000614 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
Bill Wendling08ad47c2007-07-17 03:52:31 +0000615
Reid Spencer5f016e22007-07-11 17:01:13 +0000616 // the type looks fine, now check the expression
617 switch (getStmtClass()) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000618 case StringLiteralClass: // C99 6.5.1p4
619 case ObjCEncodeExprClass: // @encode behaves like its string in every way.
Anders Carlsson7323a622007-11-30 22:47:59 +0000620 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000621 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
622 // For vectors, make sure base is an lvalue (i.e. not a function call).
623 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner28be73f2008-07-26 21:30:36 +0000624 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000625 return LV_Valid;
Douglas Gregor1a49af92009-01-06 05:10:23 +0000626 case DeclRefExprClass:
627 case QualifiedDeclRefExprClass: { // C99 6.5.1p2
Douglas Gregorba7e2102008-10-22 15:04:37 +0000628 const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
629 if (DeclCanBeLvalue(RefdDecl, Ctx))
Reid Spencer5f016e22007-07-11 17:01:13 +0000630 return LV_Valid;
631 break;
Chris Lattner41110242008-06-17 18:05:57 +0000632 }
Steve Naroffdd972f22008-09-05 22:11:13 +0000633 case BlockDeclRefExprClass: {
634 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
Steve Naroff4f6a7d72008-09-26 14:41:28 +0000635 if (isa<VarDecl>(BDR->getDecl()))
Steve Naroffdd972f22008-09-05 22:11:13 +0000636 return LV_Valid;
637 break;
638 }
Douglas Gregor86f19402008-12-20 23:49:58 +0000639 case MemberExprClass: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000640 const MemberExpr *m = cast<MemberExpr>(this);
Douglas Gregor86f19402008-12-20 23:49:58 +0000641 if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4:
642 NamedDecl *Member = m->getMemberDecl();
643 // C++ [expr.ref]p4:
644 // If E2 is declared to have type "reference to T", then E1.E2
645 // is an lvalue.
646 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
647 if (Value->getType()->isReferenceType())
648 return LV_Valid;
649
650 // -- If E2 is a static data member [...] then E1.E2 is an lvalue.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000651 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
Douglas Gregor86f19402008-12-20 23:49:58 +0000652 return LV_Valid;
653
654 // -- If E2 is a non-static data member [...]. If E1 is an
655 // lvalue, then E1.E2 is an lvalue.
656 if (isa<FieldDecl>(Member))
657 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
658
659 // -- If it refers to a static member function [...], then
660 // E1.E2 is an lvalue.
661 // -- Otherwise, if E1.E2 refers to a non-static member
662 // function [...], then E1.E2 is not an lvalue.
663 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
664 return Method->isStatic()? LV_Valid : LV_MemberFunction;
665
666 // -- If E2 is a member enumerator [...], the expression E1.E2
667 // is not an lvalue.
668 if (isa<EnumConstantDecl>(Member))
669 return LV_InvalidExpression;
670
671 // Not an lvalue.
672 return LV_InvalidExpression;
673 }
674
675 // C99 6.5.2.3p4
Chris Lattner28be73f2008-07-26 21:30:36 +0000676 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000677 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000678 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000679 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +0000680 return LV_Valid; // C99 6.5.3p4
681
682 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattnerbaf0d662008-07-25 18:07:19 +0000683 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
684 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner28be73f2008-07-26 21:30:36 +0000685 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Douglas Gregor74253732008-11-19 15:42:04 +0000686
687 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1
688 (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc ||
689 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec))
690 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000691 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000692 case ImplicitCastExprClass:
693 return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid
694 : LV_InvalidExpression;
Reid Spencer5f016e22007-07-11 17:01:13 +0000695 case ParenExprClass: // C99 6.5.1p5
Chris Lattner28be73f2008-07-26 21:30:36 +0000696 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000697 case BinaryOperatorClass:
698 case CompoundAssignOperatorClass: {
699 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
Douglas Gregor337c6b92008-11-19 17:17:41 +0000700
701 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1
702 BinOp->getOpcode() == BinaryOperator::Comma)
703 return BinOp->getRHS()->isLvalue(Ctx);
704
Sebastian Redl22460502009-02-07 00:15:38 +0000705 // C++ [expr.mptr.oper]p6
706 if ((BinOp->getOpcode() == BinaryOperator::PtrMemD ||
707 BinOp->getOpcode() == BinaryOperator::PtrMemI) &&
708 !BinOp->getType()->isFunctionType())
709 return BinOp->getLHS()->isLvalue(Ctx);
710
Douglas Gregorbf3af052008-11-13 20:12:29 +0000711 if (!BinOp->isAssignmentOp())
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000712 return LV_InvalidExpression;
713
Douglas Gregorbf3af052008-11-13 20:12:29 +0000714 if (Ctx.getLangOptions().CPlusPlus)
715 // C++ [expr.ass]p1:
716 // The result of an assignment operation [...] is an lvalue.
717 return LV_Valid;
718
719
720 // C99 6.5.16:
721 // An assignment expression [...] is not an lvalue.
722 return LV_InvalidExpression;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000723 }
Douglas Gregorb4609802008-11-14 16:09:21 +0000724 case CallExprClass:
Douglas Gregor88a35142008-12-22 05:46:06 +0000725 case CXXOperatorCallExprClass:
726 case CXXMemberCallExprClass: {
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000727 // C++0x [expr.call]p10
Douglas Gregor9d293df2008-10-28 00:22:11 +0000728 // A function call is an lvalue if and only if the result type
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000729 // is an lvalue reference.
Douglas Gregor27c8dc02008-10-29 00:13:59 +0000730 QualType CalleeType = cast<CallExpr>(this)->getCallee()->getType();
Douglas Gregor9d293df2008-10-28 00:22:11 +0000731 if (const PointerType *FnTypePtr = CalleeType->getAsPointerType())
Douglas Gregor88a35142008-12-22 05:46:06 +0000732 CalleeType = FnTypePtr->getPointeeType();
733 if (const FunctionType *FnType = CalleeType->getAsFunctionType())
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000734 if (FnType->getResultType()->isLValueReferenceType())
Douglas Gregor88a35142008-12-22 05:46:06 +0000735 return LV_Valid;
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000736
Douglas Gregor9d293df2008-10-28 00:22:11 +0000737 break;
738 }
Steve Naroffe6386392007-12-05 04:00:10 +0000739 case CompoundLiteralExprClass: // C99 6.5.2.5p5
740 return LV_Valid;
Chris Lattner670a62c2008-12-12 05:35:08 +0000741 case ChooseExprClass:
742 // __builtin_choose_expr is an lvalue if the selected operand is.
Eli Friedman79769322009-03-04 05:52:32 +0000743 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->isLvalue(Ctx);
Nate Begeman213541a2008-04-18 23:10:10 +0000744 case ExtVectorElementExprClass:
745 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +0000746 return LV_DuplicateVectorComponents;
747 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +0000748 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
749 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +0000750 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
751 return LV_Valid;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000752 case ObjCKVCRefExprClass: // FIXME: check if read-only property.
Chris Lattner670a62c2008-12-12 05:35:08 +0000753 return LV_Valid;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000754 case PredefinedExprClass:
Douglas Gregor796da182008-11-04 14:32:21 +0000755 return LV_Valid;
Douglas Gregor9d293df2008-10-28 00:22:11 +0000756 case VAArgExprClass:
Daniel Dunbaradadd8d2009-02-12 09:21:08 +0000757 return LV_NotObjectType;
Chris Lattner04421082008-04-08 04:40:51 +0000758 case CXXDefaultArgExprClass:
Chris Lattner28be73f2008-07-26 21:30:36 +0000759 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Argyrios Kyrtzidis24b41fa2008-09-11 04:22:26 +0000760 case CXXConditionDeclExprClass:
761 return LV_Valid;
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000762 case CStyleCastExprClass:
Douglas Gregor9d293df2008-10-28 00:22:11 +0000763 case CXXFunctionalCastExprClass:
764 case CXXStaticCastExprClass:
765 case CXXDynamicCastExprClass:
766 case CXXReinterpretCastExprClass:
767 case CXXConstCastExprClass:
768 // The result of an explicit cast is an lvalue if the type we are
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000769 // casting to is an lvalue reference type. See C++ [expr.cast]p1,
Douglas Gregor9d293df2008-10-28 00:22:11 +0000770 // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2,
771 // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000772 if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->
773 isLValueReferenceType())
Douglas Gregor9d293df2008-10-28 00:22:11 +0000774 return LV_Valid;
775 break;
Sebastian Redlc42e1182008-11-11 11:37:55 +0000776 case CXXTypeidExprClass:
777 // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ...
778 return LV_Valid;
Sebastian Redl76458502009-04-17 16:30:52 +0000779 case ConditionalOperatorClass: {
780 // Complicated handling is only for C++.
781 if (!Ctx.getLangOptions().CPlusPlus)
782 return LV_InvalidExpression;
783
784 // Sema should have taken care to ensure that a CXXTemporaryObjectExpr is
785 // everywhere there's an object converted to an rvalue. Also, any other
786 // casts should be wrapped by ImplicitCastExprs. There's just the special
787 // case involving throws to work out.
788 const ConditionalOperator *Cond = cast<ConditionalOperator>(this);
789 Expr *LHS = Cond->getLHS();
790 Expr *RHS = Cond->getRHS();
791 // C++0x 5.16p2
792 // If either the second or the third operand has type (cv) void, [...]
793 // the result [...] is an rvalue.
794 if (LHS->getType()->isVoidType() || RHS->getType()->isVoidType())
795 return LV_InvalidExpression;
796
797 // Both sides must be lvalues for the result to be an lvalue.
798 if (LHS->isLvalue(Ctx) != LV_Valid || RHS->isLvalue(Ctx) != LV_Valid)
799 return LV_InvalidExpression;
800
801 // That's it.
802 return LV_Valid;
803 }
804
Reid Spencer5f016e22007-07-11 17:01:13 +0000805 default:
806 break;
807 }
808 return LV_InvalidExpression;
809}
810
811/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
812/// does not have an incomplete type, does not have a const-qualified type, and
813/// if it is a structure or union, does not have any member (including,
814/// recursively, any member or element of all contained aggregates or unions)
815/// with a const-qualified type.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000816Expr::isModifiableLvalueResult
817Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
Chris Lattner28be73f2008-07-26 21:30:36 +0000818 isLvalueResult lvalResult = isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000819
820 switch (lvalResult) {
Douglas Gregorae8d4672008-10-22 00:03:08 +0000821 case LV_Valid:
822 // C++ 3.10p11: Functions cannot be modified, but pointers to
823 // functions can be modifiable.
824 if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
825 return MLV_NotObjectType;
826 break;
827
Reid Spencer5f016e22007-07-11 17:01:13 +0000828 case LV_NotObjectType: return MLV_NotObjectType;
829 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +0000830 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattnerca354fa2008-11-17 19:51:54 +0000831 case LV_InvalidExpression:
832 // If the top level is a C-style cast, and the subexpression is a valid
833 // lvalue, then this is probably a use of the old-school "cast as lvalue"
834 // GCC extension. We don't support it, but we want to produce good
835 // diagnostics when it happens so that the user knows why.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000836 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(IgnoreParens())) {
837 if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) {
838 if (Loc)
839 *Loc = CE->getLParenLoc();
Chris Lattnerca354fa2008-11-17 19:51:54 +0000840 return MLV_LValueCast;
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000841 }
842 }
Chris Lattnerca354fa2008-11-17 19:51:54 +0000843 return MLV_InvalidExpression;
Douglas Gregor86f19402008-12-20 23:49:58 +0000844 case LV_MemberFunction: return MLV_MemberFunction;
Reid Spencer5f016e22007-07-11 17:01:13 +0000845 }
Eli Friedman04831aa2009-03-22 23:26:56 +0000846
847 // The following is illegal:
848 // void takeclosure(void (^C)(void));
849 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
850 //
Chris Lattner7fd09952009-03-23 17:57:53 +0000851 if (isa<BlockDeclRefExpr>(this)) {
Eli Friedman04831aa2009-03-22 23:26:56 +0000852 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
853 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
854 return MLV_NotBlockQualified;
855 }
856
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000857 QualType CT = Ctx.getCanonicalType(getType());
858
859 if (CT.isConstQualified())
Reid Spencer5f016e22007-07-11 17:01:13 +0000860 return MLV_ConstQualified;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000861 if (CT->isArrayType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000862 return MLV_ArrayType;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000863 if (CT->isIncompleteType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000864 return MLV_IncompleteType;
865
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000866 if (const RecordType *r = CT->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000867 if (r->hasConstFields())
868 return MLV_ConstQualified;
869 }
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +0000870
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000871 // Assigning to an 'implicit' property?
Chris Lattner7fd09952009-03-23 17:57:53 +0000872 else if (isa<ObjCKVCRefExpr>(this)) {
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000873 const ObjCKVCRefExpr* KVCExpr = cast<ObjCKVCRefExpr>(this);
874 if (KVCExpr->getSetterMethod() == 0)
875 return MLV_NoSetterProperty;
876 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 return MLV_Valid;
878}
879
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000880/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner4cc62712007-11-27 21:35:27 +0000881/// duration. This means that the address of this expression is a link-time
882/// constant.
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000883bool Expr::hasGlobalStorage() const {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000884 switch (getStmtClass()) {
885 default:
886 return false;
Steve Naroff3aaa4822009-04-16 19:02:57 +0000887 case BlockExprClass:
888 return true;
Chris Lattner4cc62712007-11-27 21:35:27 +0000889 case ParenExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000890 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner4cc62712007-11-27 21:35:27 +0000891 case ImplicitCastExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000892 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffe9b12192008-01-14 18:19:28 +0000893 case CompoundLiteralExprClass:
894 return cast<CompoundLiteralExpr>(this)->isFileScope();
Douglas Gregor1a49af92009-01-06 05:10:23 +0000895 case DeclRefExprClass:
896 case QualifiedDeclRefExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000897 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
898 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000899 return VD->hasGlobalStorage();
Seo Sanghyeon63f067f2008-04-04 09:45:30 +0000900 if (isa<FunctionDecl>(D))
901 return true;
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000902 return false;
903 }
Chris Lattnerfb708062007-11-28 04:30:09 +0000904 case MemberExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000905 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000906 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerfb708062007-11-28 04:30:09 +0000907 }
Chris Lattner4cc62712007-11-27 21:35:27 +0000908 case ArraySubscriptExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000909 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattnerd9f69102008-08-10 01:53:14 +0000910 case PredefinedExprClass:
Chris Lattnerfa28b302008-01-12 08:14:25 +0000911 return true;
Chris Lattner04421082008-04-08 04:40:51 +0000912 case CXXDefaultArgExprClass:
913 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000914 }
915}
916
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000917/// isOBJCGCCandidate - Check if an expression is objc gc'able.
918///
919bool Expr::isOBJCGCCandidate() const {
920 switch (getStmtClass()) {
921 default:
922 return false;
923 case ObjCIvarRefExprClass:
924 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000925 case Expr::UnaryOperatorClass:
926 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate();
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000927 case ParenExprClass:
928 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate();
929 case ImplicitCastExprClass:
930 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate();
931 case DeclRefExprClass:
932 case QualifiedDeclRefExprClass: {
933 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
934 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
935 return VD->hasGlobalStorage();
936 return false;
937 }
938 case MemberExprClass: {
939 const MemberExpr *M = cast<MemberExpr>(this);
940 return !M->isArrow() && M->getBase()->isOBJCGCCandidate();
941 }
942 case ArraySubscriptExprClass:
943 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate();
944 }
945}
Ted Kremenek4e99a5f2008-01-17 16:57:34 +0000946Expr* Expr::IgnoreParens() {
947 Expr* E = this;
948 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
949 E = P->getSubExpr();
950
951 return E;
952}
953
Chris Lattner56f34942008-02-13 01:02:39 +0000954/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
955/// or CastExprs or ImplicitCastExprs, returning their operand.
956Expr *Expr::IgnoreParenCasts() {
957 Expr *E = this;
958 while (true) {
959 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
960 E = P->getSubExpr();
961 else if (CastExpr *P = dyn_cast<CastExpr>(E))
962 E = P->getSubExpr();
Chris Lattner56f34942008-02-13 01:02:39 +0000963 else
964 return E;
965 }
966}
967
Chris Lattnerecdd8412009-03-13 17:28:01 +0000968/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
969/// value (including ptr->int casts of the same size). Strip off any
970/// ParenExpr or CastExprs, returning their operand.
971Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
972 Expr *E = this;
973 while (true) {
974 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
975 E = P->getSubExpr();
976 continue;
977 }
978
979 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
980 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
981 // ptr<->int casts of the same width. We also ignore all identify casts.
982 Expr *SE = P->getSubExpr();
983
984 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
985 E = SE;
986 continue;
987 }
988
989 if ((E->getType()->isPointerType() || E->getType()->isIntegralType()) &&
990 (SE->getType()->isPointerType() || SE->getType()->isIntegralType()) &&
991 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
992 E = SE;
993 continue;
994 }
995 }
996
997 return E;
998 }
999}
1000
1001
Douglas Gregor898574e2008-12-05 23:32:09 +00001002/// hasAnyTypeDependentArguments - Determines if any of the expressions
1003/// in Exprs is type-dependent.
1004bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1005 for (unsigned I = 0; I < NumExprs; ++I)
1006 if (Exprs[I]->isTypeDependent())
1007 return true;
1008
1009 return false;
1010}
1011
1012/// hasAnyValueDependentArguments - Determines if any of the expressions
1013/// in Exprs is value-dependent.
1014bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1015 for (unsigned I = 0; I < NumExprs; ++I)
1016 if (Exprs[I]->isValueDependent())
1017 return true;
1018
1019 return false;
1020}
1021
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001022bool Expr::isConstantInitializer(ASTContext &Ctx) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001023 // This function is attempting whether an expression is an initializer
1024 // which can be evaluated at compile-time. isEvaluatable handles most
1025 // of the cases, but it can't deal with some initializer-specific
1026 // expressions, and it can't deal with aggregates; we deal with those here,
1027 // and fall back to isEvaluatable for the other cases.
1028
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001029 // FIXME: This function assumes the variable being assigned to
1030 // isn't a reference type!
1031
Anders Carlssone8a32b82008-11-24 05:23:59 +00001032 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001033 default: break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001034 case StringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001035 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00001036 return true;
Nate Begeman59b5da62009-01-18 03:20:47 +00001037 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001038 // This handles gcc's extension that allows global initializers like
1039 // "struct x {int x;} x = (struct x) {};".
1040 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00001041 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001042 return Exp->isConstantInitializer(Ctx);
Nate Begeman59b5da62009-01-18 03:20:47 +00001043 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00001044 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001045 // FIXME: This doesn't deal with fields with reference types correctly.
1046 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1047 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00001048 const InitListExpr *Exp = cast<InitListExpr>(this);
1049 unsigned numInits = Exp->getNumInits();
1050 for (unsigned i = 0; i < numInits; i++) {
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001051 if (!Exp->getInit(i)->isConstantInitializer(Ctx))
Anders Carlssone8a32b82008-11-24 05:23:59 +00001052 return false;
1053 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001054 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001055 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001056 case ImplicitValueInitExprClass:
1057 return true;
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001058 case ParenExprClass: {
1059 return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1060 }
1061 case UnaryOperatorClass: {
1062 const UnaryOperator* Exp = cast<UnaryOperator>(this);
1063 if (Exp->getOpcode() == UnaryOperator::Extension)
1064 return Exp->getSubExpr()->isConstantInitializer(Ctx);
1065 break;
1066 }
1067 case CStyleCastExprClass:
1068 // Handle casts with a destination that's a struct or union; this
1069 // deals with both the gcc no-op struct cast extension and the
1070 // cast-to-union extension.
1071 if (getType()->isRecordType())
1072 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1073 break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001074 }
1075
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001076 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00001077}
1078
Reid Spencer5f016e22007-07-11 17:01:13 +00001079/// isIntegerConstantExpr - this recursive routine will test if an expression is
Eli Friedmane28d7192009-02-26 09:29:13 +00001080/// an integer constant expression.
Reid Spencer5f016e22007-07-11 17:01:13 +00001081
1082/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
1083/// comma, etc
1084///
Chris Lattnerce0afc02007-07-18 05:21:20 +00001085/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
1086/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
1087/// cast+dereference.
Daniel Dunbar2d6744f2009-02-18 00:47:45 +00001088
Eli Friedmane28d7192009-02-26 09:29:13 +00001089// CheckICE - This function does the fundamental ICE checking: the returned
1090// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
1091// Note that to reduce code duplication, this helper does no evaluation
1092// itself; the caller checks whether the expression is evaluatable, and
1093// in the rare cases where CheckICE actually cares about the evaluated
1094// value, it calls into Evalute.
1095//
1096// Meanings of Val:
1097// 0: This expression is an ICE if it can be evaluated by Evaluate.
1098// 1: This expression is not an ICE, but if it isn't evaluated, it's
1099// a legal subexpression for an ICE. This return value is used to handle
1100// the comma operator in C99 mode.
1101// 2: This expression is not an ICE, and is not a legal subexpression for one.
1102
1103struct ICEDiag {
1104 unsigned Val;
1105 SourceLocation Loc;
1106
1107 public:
1108 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
1109 ICEDiag() : Val(0) {}
1110};
1111
1112ICEDiag NoDiag() { return ICEDiag(); }
1113
Eli Friedman60ce9632009-02-27 04:07:58 +00001114static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
1115 Expr::EvalResult EVResult;
1116 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1117 !EVResult.Val.isInt()) {
1118 return ICEDiag(2, E->getLocStart());
1119 }
1120 return NoDiag();
1121}
1122
Eli Friedmane28d7192009-02-26 09:29:13 +00001123static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
Anders Carlssonc3082412009-03-14 00:33:21 +00001124 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001125 if (!E->getType()->isIntegralType()) {
1126 return ICEDiag(2, E->getLocStart());
Eli Friedmana6afa762008-11-13 06:09:17 +00001127 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001128
1129 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001130 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001131 return ICEDiag(2, E->getLocStart());
1132 case Expr::ParenExprClass:
1133 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
1134 case Expr::IntegerLiteralClass:
1135 case Expr::CharacterLiteralClass:
1136 case Expr::CXXBoolLiteralExprClass:
1137 case Expr::CXXZeroInitValueExprClass:
1138 case Expr::TypesCompatibleExprClass:
1139 case Expr::UnaryTypeTraitExprClass:
1140 return NoDiag();
1141 case Expr::CallExprClass:
1142 case Expr::CXXOperatorCallExprClass: {
1143 const CallExpr *CE = cast<CallExpr>(E);
Eli Friedman60ce9632009-02-27 04:07:58 +00001144 if (CE->isBuiltinCall(Ctx))
1145 return CheckEvalInICE(E, Ctx);
Eli Friedmane28d7192009-02-26 09:29:13 +00001146 return ICEDiag(2, E->getLocStart());
Chris Lattner2eadfb62007-07-15 23:32:58 +00001147 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001148 case Expr::DeclRefExprClass:
1149 case Expr::QualifiedDeclRefExprClass:
1150 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
1151 return NoDiag();
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001152 if (Ctx.getLangOptions().CPlusPlus &&
Eli Friedmane28d7192009-02-26 09:29:13 +00001153 E->getType().getCVRQualifiers() == QualType::Const) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001154 // C++ 7.1.5.1p2
1155 // A variable of non-volatile const-qualified integral or enumeration
1156 // type initialized by an ICE can be used in ICEs.
1157 if (const VarDecl *Dcl =
Eli Friedmane28d7192009-02-26 09:29:13 +00001158 dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001159 if (const Expr *Init = Dcl->getInit())
Eli Friedmane28d7192009-02-26 09:29:13 +00001160 return CheckICE(Init, Ctx);
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001161 }
1162 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001163 return ICEDiag(2, E->getLocStart());
1164 case Expr::UnaryOperatorClass: {
1165 const UnaryOperator *Exp = cast<UnaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001166 switch (Exp->getOpcode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001167 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001168 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001169 case UnaryOperator::Extension:
Eli Friedmane28d7192009-02-26 09:29:13 +00001170 case UnaryOperator::LNot:
Reid Spencer5f016e22007-07-11 17:01:13 +00001171 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001172 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001173 case UnaryOperator::Not:
Eli Friedman60ce9632009-02-27 04:07:58 +00001174 case UnaryOperator::Real:
1175 case UnaryOperator::Imag:
Eli Friedmane28d7192009-02-26 09:29:13 +00001176 return CheckICE(Exp->getSubExpr(), Ctx);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001177 case UnaryOperator::OffsetOf:
Eli Friedman60ce9632009-02-27 04:07:58 +00001178 // Note that per C99, offsetof must be an ICE. And AFAIK, using
1179 // Evaluate matches the proposed gcc behavior for cases like
1180 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
1181 // compliance: we should warn earlier for offsetof expressions with
1182 // array subscripts that aren't ICEs, and if the array subscripts
1183 // are ICEs, the value of the offsetof must be an integer constant.
1184 return CheckEvalInICE(E, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001185 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001186 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001187 case Expr::SizeOfAlignOfExprClass: {
1188 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
1189 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
1190 return ICEDiag(2, E->getLocStart());
1191 return NoDiag();
Reid Spencer5f016e22007-07-11 17:01:13 +00001192 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001193 case Expr::BinaryOperatorClass: {
1194 const BinaryOperator *Exp = cast<BinaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001195 switch (Exp->getOpcode()) {
1196 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001197 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001198 case BinaryOperator::Mul:
Reid Spencer5f016e22007-07-11 17:01:13 +00001199 case BinaryOperator::Div:
Reid Spencer5f016e22007-07-11 17:01:13 +00001200 case BinaryOperator::Rem:
Eli Friedmane28d7192009-02-26 09:29:13 +00001201 case BinaryOperator::Add:
1202 case BinaryOperator::Sub:
Reid Spencer5f016e22007-07-11 17:01:13 +00001203 case BinaryOperator::Shl:
Reid Spencer5f016e22007-07-11 17:01:13 +00001204 case BinaryOperator::Shr:
Eli Friedmane28d7192009-02-26 09:29:13 +00001205 case BinaryOperator::LT:
1206 case BinaryOperator::GT:
1207 case BinaryOperator::LE:
1208 case BinaryOperator::GE:
1209 case BinaryOperator::EQ:
1210 case BinaryOperator::NE:
1211 case BinaryOperator::And:
1212 case BinaryOperator::Xor:
1213 case BinaryOperator::Or:
1214 case BinaryOperator::Comma: {
1215 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1216 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001217 if (Exp->getOpcode() == BinaryOperator::Div ||
1218 Exp->getOpcode() == BinaryOperator::Rem) {
1219 // Evaluate gives an error for undefined Div/Rem, so make sure
1220 // we don't evaluate one.
1221 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
1222 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
1223 if (REval == 0)
1224 return ICEDiag(1, E->getLocStart());
1225 if (REval.isSigned() && REval.isAllOnesValue()) {
1226 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
1227 if (LEval.isMinSignedValue())
1228 return ICEDiag(1, E->getLocStart());
1229 }
1230 }
1231 }
1232 if (Exp->getOpcode() == BinaryOperator::Comma) {
1233 if (Ctx.getLangOptions().C99) {
1234 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
1235 // if it isn't evaluated.
1236 if (LHSResult.Val == 0 && RHSResult.Val == 0)
1237 return ICEDiag(1, E->getLocStart());
1238 } else {
1239 // In both C89 and C++, commas in ICEs are illegal.
1240 return ICEDiag(2, E->getLocStart());
1241 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001242 }
1243 if (LHSResult.Val >= RHSResult.Val)
1244 return LHSResult;
1245 return RHSResult;
1246 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001247 case BinaryOperator::LAnd:
Eli Friedmane28d7192009-02-26 09:29:13 +00001248 case BinaryOperator::LOr: {
1249 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1250 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
1251 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
1252 // Rare case where the RHS has a comma "side-effect"; we need
1253 // to actually check the condition to see whether the side
1254 // with the comma is evaluated.
Eli Friedmane28d7192009-02-26 09:29:13 +00001255 if ((Exp->getOpcode() == BinaryOperator::LAnd) !=
Eli Friedman60ce9632009-02-27 04:07:58 +00001256 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
Eli Friedmane28d7192009-02-26 09:29:13 +00001257 return RHSResult;
1258 return NoDiag();
Eli Friedmanb11e7782008-11-13 02:13:11 +00001259 }
Eli Friedman60ce9632009-02-27 04:07:58 +00001260
Eli Friedmane28d7192009-02-26 09:29:13 +00001261 if (LHSResult.Val >= RHSResult.Val)
1262 return LHSResult;
1263 return RHSResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001264 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001265 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001266 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001267 case Expr::ImplicitCastExprClass:
1268 case Expr::CStyleCastExprClass:
1269 case Expr::CXXFunctionalCastExprClass: {
1270 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
1271 if (SubExpr->getType()->isIntegralType())
1272 return CheckICE(SubExpr, Ctx);
1273 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
1274 return NoDiag();
1275 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001276 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001277 case Expr::ConditionalOperatorClass: {
1278 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
Chris Lattner28daa532008-12-12 06:55:44 +00001279 // If the condition (ignoring parens) is a __builtin_constant_p call,
1280 // then only the true side is actually considered in an integer constant
Chris Lattner42b83dd2008-12-12 18:00:51 +00001281 // expression, and it is fully evaluated. This is an important GNU
1282 // extension. See GCC PR38377 for discussion.
Eli Friedmane28d7192009-02-26 09:29:13 +00001283 if (const CallExpr *CallCE = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001284 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001285 Expr::EvalResult EVResult;
1286 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1287 !EVResult.Val.isInt()) {
Eli Friedman60ce9632009-02-27 04:07:58 +00001288 return ICEDiag(2, E->getLocStart());
Eli Friedmane28d7192009-02-26 09:29:13 +00001289 }
1290 return NoDiag();
Chris Lattner42b83dd2008-12-12 18:00:51 +00001291 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001292 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
1293 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
1294 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
1295 if (CondResult.Val == 2)
1296 return CondResult;
1297 if (TrueResult.Val == 2)
1298 return TrueResult;
1299 if (FalseResult.Val == 2)
1300 return FalseResult;
1301 if (CondResult.Val == 1)
1302 return CondResult;
1303 if (TrueResult.Val == 0 && FalseResult.Val == 0)
1304 return NoDiag();
1305 // Rare case where the diagnostics depend on which side is evaluated
1306 // Note that if we get here, CondResult is 0, and at least one of
1307 // TrueResult and FalseResult is non-zero.
Eli Friedman60ce9632009-02-27 04:07:58 +00001308 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001309 return FalseResult;
1310 }
1311 return TrueResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001312 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001313 case Expr::CXXDefaultArgExprClass:
1314 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001315 case Expr::ChooseExprClass: {
Eli Friedman79769322009-03-04 05:52:32 +00001316 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001317 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001318 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001319}
Reid Spencer5f016e22007-07-11 17:01:13 +00001320
Eli Friedmane28d7192009-02-26 09:29:13 +00001321bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
1322 SourceLocation *Loc, bool isEvaluated) const {
1323 ICEDiag d = CheckICE(this, Ctx);
1324 if (d.Val != 0) {
1325 if (Loc) *Loc = d.Loc;
1326 return false;
1327 }
1328 EvalResult EvalResult;
Eli Friedman60ce9632009-02-27 04:07:58 +00001329 if (!Evaluate(EvalResult, Ctx))
1330 assert(0 && "ICE cannot be evaluated!");
1331 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
1332 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001333 Result = EvalResult.Val.getInt();
Reid Spencer5f016e22007-07-11 17:01:13 +00001334 return true;
1335}
1336
Reid Spencer5f016e22007-07-11 17:01:13 +00001337/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1338/// integer constant expression with the value zero, or if this is one that is
1339/// cast to void*.
Anders Carlssonefa9b382008-12-01 02:13:57 +00001340bool Expr::isNullPointerConstant(ASTContext &Ctx) const
1341{
Sebastian Redl07779722008-10-31 14:43:28 +00001342 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001343 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00001344 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00001345 // Check that it is a cast to void*.
1346 if (const PointerType *PT = CE->getType()->getAsPointerType()) {
1347 QualType Pointee = PT->getPointeeType();
1348 if (Pointee.getCVRQualifiers() == 0 &&
1349 Pointee->isVoidType() && // to void*
1350 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Anders Carlssond2652772008-12-01 06:28:23 +00001351 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Sebastian Redl07779722008-10-31 14:43:28 +00001352 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001353 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001354 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1355 // Ignore the ImplicitCastExpr type entirely.
Anders Carlssond2652772008-12-01 06:28:23 +00001356 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
Steve Naroffaa58f002008-01-14 16:10:57 +00001357 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1358 // Accept ((void*)0) as a null pointer constant, as many other
1359 // implementations do.
Anders Carlssond2652772008-12-01 06:28:23 +00001360 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner8123a952008-04-10 02:22:51 +00001361 } else if (const CXXDefaultArgExpr *DefaultArg
1362 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001363 // See through default argument expressions
Anders Carlssond2652772008-12-01 06:28:23 +00001364 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001365 } else if (isa<GNUNullExpr>(this)) {
1366 // The GNU __null extension is always a null pointer constant.
1367 return true;
Steve Naroffaaffbf72008-01-14 02:53:34 +00001368 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001369
Steve Naroffaa58f002008-01-14 16:10:57 +00001370 // This expression must be an integer type.
1371 if (!getType()->isIntegerType())
1372 return false;
1373
Reid Spencer5f016e22007-07-11 17:01:13 +00001374 // If we have an integer constant expression, we need to *evaluate* it and
1375 // test for the value 0.
Anders Carlssond2652772008-12-01 06:28:23 +00001376 // FIXME: We should probably return false if we're compiling in strict mode
1377 // and Diag is not null (this indicates that the value was foldable but not
1378 // an ICE.
1379 EvalResult Result;
Anders Carlssonefa9b382008-12-01 02:13:57 +00001380 return Evaluate(Result, Ctx) && !Result.HasSideEffects &&
Anders Carlssond2652772008-12-01 06:28:23 +00001381 Result.Val.isInt() && Result.Val.getInt() == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001382}
Steve Naroff31a45842007-07-28 23:10:27 +00001383
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001384/// isBitField - Return true if this expression is a bit-field.
1385bool Expr::isBitField() {
1386 Expr *E = this->IgnoreParenCasts();
1387 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00001388 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
1389 return Field->isBitField();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001390 return false;
1391}
1392
Chris Lattner2140e902009-02-16 22:14:05 +00001393/// isArrow - Return true if the base expression is a pointer to vector,
1394/// return false if the base expression is a vector.
1395bool ExtVectorElementExpr::isArrow() const {
1396 return getBase()->getType()->isPointerType();
1397}
1398
Nate Begeman213541a2008-04-18 23:10:10 +00001399unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begeman8a997642008-05-09 06:41:27 +00001400 if (const VectorType *VT = getType()->getAsVectorType())
1401 return VT->getNumElements();
1402 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001403}
1404
Nate Begeman8a997642008-05-09 06:41:27 +00001405/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001406bool ExtVectorElementExpr::containsDuplicateElements() const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001407 const char *compStr = Accessor->getName();
1408 unsigned length = Accessor->getLength();
Nate Begeman190d6a22009-01-18 02:01:21 +00001409
1410 // Halving swizzles do not contain duplicate elements.
1411 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
1412 !strcmp(compStr, "even") || !strcmp(compStr, "odd"))
1413 return false;
1414
1415 // Advance past s-char prefix on hex swizzles.
1416 if (*compStr == 's') {
1417 compStr++;
1418 length--;
1419 }
Steve Narofffec0b492007-07-30 03:29:09 +00001420
Chris Lattner7e3e9b12008-11-19 07:55:04 +00001421 for (unsigned i = 0; i != length-1; i++) {
Steve Narofffec0b492007-07-30 03:29:09 +00001422 const char *s = compStr+i;
1423 for (const char c = *s++; *s; s++)
1424 if (c == *s)
1425 return true;
1426 }
1427 return false;
1428}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001429
Nate Begeman8a997642008-05-09 06:41:27 +00001430/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00001431void ExtVectorElementExpr::getEncodedElementAccess(
1432 llvm::SmallVectorImpl<unsigned> &Elts) const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001433 const char *compStr = Accessor->getName();
Nate Begeman353417a2009-01-18 01:47:54 +00001434 if (*compStr == 's')
1435 compStr++;
1436
1437 bool isHi = !strcmp(compStr, "hi");
1438 bool isLo = !strcmp(compStr, "lo");
1439 bool isEven = !strcmp(compStr, "even");
1440 bool isOdd = !strcmp(compStr, "odd");
1441
Nate Begeman8a997642008-05-09 06:41:27 +00001442 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1443 uint64_t Index;
1444
1445 if (isHi)
1446 Index = e + i;
1447 else if (isLo)
1448 Index = i;
1449 else if (isEven)
1450 Index = 2 * i;
1451 else if (isOdd)
1452 Index = 2 * i + 1;
1453 else
1454 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001455
Nate Begeman3b8d1162008-05-13 21:03:02 +00001456 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001457 }
Nate Begeman8a997642008-05-09 06:41:27 +00001458}
1459
Steve Naroff68d331a2007-09-27 14:38:14 +00001460// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001461ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001462 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001463 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001464 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001465 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001466 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001467 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001468 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00001469 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00001470 if (NumArgs) {
1471 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001472 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1473 }
Steve Naroff563477d2007-09-18 23:55:05 +00001474 LBracloc = LBrac;
1475 RBracloc = RBrac;
1476}
1477
Steve Naroff68d331a2007-09-27 14:38:14 +00001478// constructor for class messages.
1479// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001480ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001481 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001482 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001483 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001484 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001485 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001486 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001487 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenek4df728e2008-06-24 15:50:53 +00001488 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff49f109c2007-11-15 13:05:42 +00001489 if (NumArgs) {
1490 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001491 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1492 }
Steve Naroff563477d2007-09-18 23:55:05 +00001493 LBracloc = LBrac;
1494 RBracloc = RBrac;
1495}
1496
Ted Kremenek4df728e2008-06-24 15:50:53 +00001497// constructor for class messages.
1498ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1499 QualType retType, ObjCMethodDecl *mproto,
1500 SourceLocation LBrac, SourceLocation RBrac,
1501 Expr **ArgExprs, unsigned nargs)
1502: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1503MethodProto(mproto) {
1504 NumArgs = nargs;
1505 SubExprs = new Stmt*[NumArgs+1];
1506 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1507 if (NumArgs) {
1508 for (unsigned i = 0; i != NumArgs; ++i)
1509 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1510 }
1511 LBracloc = LBrac;
1512 RBracloc = RBrac;
1513}
1514
1515ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1516 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1517 switch (x & Flags) {
1518 default:
1519 assert(false && "Invalid ObjCMessageExpr.");
1520 case IsInstMeth:
1521 return ClassInfo(0, 0);
1522 case IsClsMethDeclUnknown:
1523 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1524 case IsClsMethDeclKnown: {
1525 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1526 return ClassInfo(D, D->getIdentifier());
1527 }
1528 }
1529}
1530
Chris Lattner27437ca2007-10-25 00:29:32 +00001531bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Daniel Dunbar32442bb2008-08-13 23:47:13 +00001532 return getCond()->getIntegerConstantExprValue(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00001533}
1534
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001535void ShuffleVectorExpr::setExprs(Expr ** Exprs, unsigned NumExprs) {
1536 if (NumExprs)
1537 delete [] SubExprs;
1538
1539 SubExprs = new Stmt* [NumExprs];
1540 this->NumExprs = NumExprs;
1541 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
1542}
1543
Sebastian Redl05189992008-11-11 17:56:53 +00001544void SizeOfAlignOfExpr::Destroy(ASTContext& C) {
1545 // Override default behavior of traversing children. If this has a type
1546 // operand and the type is a variable-length array, the child iteration
1547 // will iterate over the size expression. However, this expression belongs
1548 // to the type, not to this, so we don't want to delete it.
1549 // We still want to delete this expression.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001550 if (isArgumentType()) {
1551 this->~SizeOfAlignOfExpr();
1552 C.Deallocate(this);
1553 }
Sebastian Redl05189992008-11-11 17:56:53 +00001554 else
1555 Expr::Destroy(C);
Daniel Dunbar90488912008-08-28 18:02:04 +00001556}
1557
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001558//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00001559// DesignatedInitExpr
1560//===----------------------------------------------------------------------===//
1561
1562IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
1563 assert(Kind == FieldDesignator && "Only valid on a field designator");
1564 if (Field.NameOrField & 0x01)
1565 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
1566 else
1567 return getField()->getIdentifier();
1568}
1569
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001570DesignatedInitExpr::DesignatedInitExpr(QualType Ty, unsigned NumDesignators,
1571 const Designator *Designators,
1572 SourceLocation EqualOrColonLoc,
1573 bool GNUSyntax,
1574 unsigned NumSubExprs)
1575 : Expr(DesignatedInitExprClass, Ty),
1576 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
1577 NumDesignators(NumDesignators), NumSubExprs(NumSubExprs) {
1578 this->Designators = new Designator[NumDesignators];
1579 for (unsigned I = 0; I != NumDesignators; ++I)
1580 this->Designators[I] = Designators[I];
1581}
1582
Douglas Gregor05c13a32009-01-22 00:58:24 +00001583DesignatedInitExpr *
1584DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
1585 unsigned NumDesignators,
1586 Expr **IndexExprs, unsigned NumIndexExprs,
1587 SourceLocation ColonOrEqualLoc,
1588 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00001589 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00001590 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001591 DesignatedInitExpr *DIE
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001592 = new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators, Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00001593 ColonOrEqualLoc, UsesColonSyntax,
1594 NumIndexExprs + 1);
1595
1596 // Fill in the designators
1597 unsigned ExpectedNumSubExprs = 0;
1598 designators_iterator Desig = DIE->designators_begin();
1599 for (unsigned Idx = 0; Idx < NumDesignators; ++Idx, ++Desig) {
Douglas Gregor05c13a32009-01-22 00:58:24 +00001600 if (Designators[Idx].isArrayDesignator())
1601 ++ExpectedNumSubExprs;
1602 else if (Designators[Idx].isArrayRangeDesignator())
1603 ExpectedNumSubExprs += 2;
1604 }
1605 assert(ExpectedNumSubExprs == NumIndexExprs && "Wrong number of indices!");
1606
1607 // Fill in the subexpressions, including the initializer expression.
1608 child_iterator Child = DIE->child_begin();
1609 *Child++ = Init;
1610 for (unsigned Idx = 0; Idx < NumIndexExprs; ++Idx, ++Child)
1611 *Child = IndexExprs[Idx];
1612
1613 return DIE;
1614}
1615
Douglas Gregord077d752009-04-16 00:55:48 +00001616DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
1617 unsigned NumIndexExprs) {
1618 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
1619 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
1620 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
1621}
1622
1623void DesignatedInitExpr::setDesignators(const Designator *Desigs,
1624 unsigned NumDesigs) {
1625 if (Designators)
1626 delete [] Designators;
1627
1628 Designators = new Designator[NumDesigs];
1629 NumDesignators = NumDesigs;
1630 for (unsigned I = 0; I != NumDesigs; ++I)
1631 Designators[I] = Desigs[I];
1632}
1633
Douglas Gregor05c13a32009-01-22 00:58:24 +00001634SourceRange DesignatedInitExpr::getSourceRange() const {
1635 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001636 Designator &First =
1637 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00001638 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00001639 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00001640 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
1641 else
1642 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
1643 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001644 StartLoc =
1645 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001646 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
1647}
1648
Douglas Gregor05c13a32009-01-22 00:58:24 +00001649Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
1650 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
1651 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1652 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001653 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1654 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1655}
1656
1657Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
1658 assert(D.Kind == Designator::ArrayRangeDesignator &&
1659 "Requires array range designator");
1660 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1661 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001662 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1663 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1664}
1665
1666Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
1667 assert(D.Kind == Designator::ArrayRangeDesignator &&
1668 "Requires array range designator");
1669 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1670 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001671 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1672 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
1673}
1674
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001675/// \brief Replaces the designator at index @p Idx with the series
1676/// of designators in [First, Last).
1677void DesignatedInitExpr::ExpandDesignator(unsigned Idx,
1678 const Designator *First,
1679 const Designator *Last) {
1680 unsigned NumNewDesignators = Last - First;
1681 if (NumNewDesignators == 0) {
1682 std::copy_backward(Designators + Idx + 1,
1683 Designators + NumDesignators,
1684 Designators + Idx);
1685 --NumNewDesignators;
1686 return;
1687 } else if (NumNewDesignators == 1) {
1688 Designators[Idx] = *First;
1689 return;
1690 }
1691
1692 Designator *NewDesignators
1693 = new Designator[NumDesignators - 1 + NumNewDesignators];
1694 std::copy(Designators, Designators + Idx, NewDesignators);
1695 std::copy(First, Last, NewDesignators + Idx);
1696 std::copy(Designators + Idx + 1, Designators + NumDesignators,
1697 NewDesignators + Idx + NumNewDesignators);
1698 delete [] Designators;
1699 Designators = NewDesignators;
1700 NumDesignators = NumDesignators - 1 + NumNewDesignators;
1701}
1702
1703void DesignatedInitExpr::Destroy(ASTContext &C) {
1704 delete [] Designators;
1705 Expr::Destroy(C);
1706}
1707
Douglas Gregor05c13a32009-01-22 00:58:24 +00001708//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00001709// ExprIterator.
1710//===----------------------------------------------------------------------===//
1711
1712Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
1713Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
1714Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
1715const Expr* ConstExprIterator::operator[](size_t idx) const {
1716 return cast<Expr>(I[idx]);
1717}
1718const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
1719const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
1720
1721//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001722// Child Iterators for iterating over subexpressions/substatements
1723//===----------------------------------------------------------------------===//
1724
1725// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001726Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1727Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001728
Steve Naroff7779db42007-11-12 14:29:37 +00001729// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001730Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1731Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00001732
Steve Naroffe3e9add2008-06-02 23:03:37 +00001733// ObjCPropertyRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001734Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1735Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffae784072008-05-30 00:40:33 +00001736
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00001737// ObjCKVCRefExpr
1738Stmt::child_iterator ObjCKVCRefExpr::child_begin() { return &Base; }
1739Stmt::child_iterator ObjCKVCRefExpr::child_end() { return &Base+1; }
1740
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001741// ObjCSuperExpr
1742Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
1743Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
1744
Chris Lattnerd9f69102008-08-10 01:53:14 +00001745// PredefinedExpr
1746Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
1747Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001748
1749// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001750Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1751Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001752
1753// CharacterLiteral
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001754Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek9ac59282007-10-18 23:28:49 +00001755Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001756
1757// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001758Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1759Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001760
Chris Lattner5d661452007-08-26 03:42:43 +00001761// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00001762Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1763Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00001764
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001765// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001766Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1767Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001768
1769// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001770Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1771Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001772
1773// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00001774Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1775Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001776
Sebastian Redl05189992008-11-11 17:56:53 +00001777// SizeOfAlignOfExpr
1778Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
1779 // If this is of a type and the type is a VLA type (and not a typedef), the
1780 // size expression of the VLA needs to be treated as an executable expression.
1781 // Why isn't this weirdness documented better in StmtIterator?
1782 if (isArgumentType()) {
1783 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
1784 getArgumentType().getTypePtr()))
1785 return child_iterator(T);
1786 return child_iterator();
1787 }
Sebastian Redld4575892008-12-03 23:17:54 +00001788 return child_iterator(&Argument.Ex);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001789}
Sebastian Redl05189992008-11-11 17:56:53 +00001790Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
1791 if (isArgumentType())
1792 return child_iterator();
Sebastian Redld4575892008-12-03 23:17:54 +00001793 return child_iterator(&Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001794}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001795
1796// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001797Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001798 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001799}
Ted Kremenek1237c672007-08-24 20:06:47 +00001800Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001801 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001802}
1803
1804// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001805Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001806 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001807}
Ted Kremenek1237c672007-08-24 20:06:47 +00001808Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001809 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001810}
Ted Kremenek1237c672007-08-24 20:06:47 +00001811
1812// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001813Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1814Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001815
Nate Begeman213541a2008-04-18 23:10:10 +00001816// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001817Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1818Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001819
1820// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001821Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1822Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001823
Ted Kremenek1237c672007-08-24 20:06:47 +00001824// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001825Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1826Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001827
1828// BinaryOperator
1829Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001830 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001831}
Ted Kremenek1237c672007-08-24 20:06:47 +00001832Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001833 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001834}
1835
1836// ConditionalOperator
1837Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001838 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001839}
Ted Kremenek1237c672007-08-24 20:06:47 +00001840Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001841 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001842}
1843
1844// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001845Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1846Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001847
Ted Kremenek1237c672007-08-24 20:06:47 +00001848// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001849Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1850Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001851
1852// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001853Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1854 return child_iterator();
1855}
1856
1857Stmt::child_iterator TypesCompatibleExpr::child_end() {
1858 return child_iterator();
1859}
Ted Kremenek1237c672007-08-24 20:06:47 +00001860
1861// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001862Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1863Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001864
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001865// GNUNullExpr
1866Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
1867Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
1868
Eli Friedmand38617c2008-05-14 19:38:39 +00001869// ShuffleVectorExpr
1870Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001871 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00001872}
1873Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001874 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00001875}
1876
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001877// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001878Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
1879Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001880
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001881// InitListExpr
1882Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001883 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001884}
1885Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001886 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001887}
1888
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001889// DesignatedInitExpr
Douglas Gregor05c13a32009-01-22 00:58:24 +00001890Stmt::child_iterator DesignatedInitExpr::child_begin() {
1891 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1892 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001893 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1894}
1895Stmt::child_iterator DesignatedInitExpr::child_end() {
1896 return child_iterator(&*child_begin() + NumSubExprs);
1897}
1898
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001899// ImplicitValueInitExpr
1900Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
1901 return child_iterator();
1902}
1903
1904Stmt::child_iterator ImplicitValueInitExpr::child_end() {
1905 return child_iterator();
1906}
1907
Ted Kremenek1237c672007-08-24 20:06:47 +00001908// ObjCStringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001909Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00001910 return &String;
Ted Kremenek9ac59282007-10-18 23:28:49 +00001911}
1912Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00001913 return &String+1;
Ted Kremenek9ac59282007-10-18 23:28:49 +00001914}
Ted Kremenek1237c672007-08-24 20:06:47 +00001915
1916// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001917Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
1918Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001919
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001920// ObjCSelectorExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001921Stmt::child_iterator ObjCSelectorExpr::child_begin() {
1922 return child_iterator();
1923}
1924Stmt::child_iterator ObjCSelectorExpr::child_end() {
1925 return child_iterator();
1926}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001927
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001928// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001929Stmt::child_iterator ObjCProtocolExpr::child_begin() {
1930 return child_iterator();
1931}
1932Stmt::child_iterator ObjCProtocolExpr::child_end() {
1933 return child_iterator();
1934}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001935
Steve Naroff563477d2007-09-18 23:55:05 +00001936// ObjCMessageExpr
Ted Kremenekea958e572008-05-01 17:26:20 +00001937Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001938 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroff563477d2007-09-18 23:55:05 +00001939}
1940Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001941 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroff563477d2007-09-18 23:55:05 +00001942}
1943
Steve Naroff4eb206b2008-09-03 18:15:37 +00001944// Blocks
Steve Naroff56ee6892008-10-08 17:01:13 +00001945Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
1946Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff4eb206b2008-09-03 18:15:37 +00001947
Ted Kremenek9da13f92008-09-26 23:24:14 +00001948Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
1949Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }