blob: 9a860033dfd00e1c92a2ebdddaa92d13f5363ab8 [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 {
Anders Carlssonffce2df2009-05-15 23:10:19 +0000420 // Don't warn if the expr is type dependent. The type could end up
421 // instantiating to void.
422 if (isTypeDependent())
423 return false;
424
Reid Spencer5f016e22007-07-11 17:01:13 +0000425 switch (getStmtClass()) {
426 default:
Chris Lattner026dc962009-02-14 07:37:35 +0000427 Loc = getExprLoc();
428 R1 = getSourceRange();
429 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000430 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000431 return cast<ParenExpr>(this)->getSubExpr()->
432 isUnusedResultAWarning(Loc, R1, R2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000433 case UnaryOperatorClass: {
434 const UnaryOperator *UO = cast<UnaryOperator>(this);
435
436 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000437 default: break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000438 case UnaryOperator::PostInc:
439 case UnaryOperator::PostDec:
440 case UnaryOperator::PreInc:
Chris Lattner026dc962009-02-14 07:37:35 +0000441 case UnaryOperator::PreDec: // ++/--
442 return false; // Not a warning.
Reid Spencer5f016e22007-07-11 17:01:13 +0000443 case UnaryOperator::Deref:
444 // Dereferencing a volatile pointer is a side-effect.
Chris Lattner026dc962009-02-14 07:37:35 +0000445 if (getType().isVolatileQualified())
446 return false;
447 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000448 case UnaryOperator::Real:
449 case UnaryOperator::Imag:
450 // accessing a piece of a volatile complex is a side-effect.
Chris Lattner026dc962009-02-14 07:37:35 +0000451 if (UO->getSubExpr()->getType().isVolatileQualified())
452 return false;
453 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000454 case UnaryOperator::Extension:
Chris Lattner026dc962009-02-14 07:37:35 +0000455 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000456 }
Chris Lattner026dc962009-02-14 07:37:35 +0000457 Loc = UO->getOperatorLoc();
458 R1 = UO->getSubExpr()->getSourceRange();
459 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000460 }
Chris Lattnere7716e62007-12-01 06:07:34 +0000461 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000462 const BinaryOperator *BO = cast<BinaryOperator>(this);
463 // Consider comma to have side effects if the LHS or RHS does.
464 if (BO->getOpcode() == BinaryOperator::Comma)
465 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2) ||
466 BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattnere7716e62007-12-01 06:07:34 +0000467
Chris Lattner026dc962009-02-14 07:37:35 +0000468 if (BO->isAssignmentOp())
469 return false;
470 Loc = BO->getOperatorLoc();
471 R1 = BO->getLHS()->getSourceRange();
472 R2 = BO->getRHS()->getSourceRange();
473 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +0000474 }
Chris Lattnereb14fe82007-08-25 02:00:02 +0000475 case CompoundAssignOperatorClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000476 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000477
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000478 case ConditionalOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000479 // The condition must be evaluated, but if either the LHS or RHS is a
480 // warning, warn about them.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000481 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Mike Stumpbefbcf42009-02-27 03:16:57 +0000482 if (Exp->getLHS() && Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2))
Chris Lattner026dc962009-02-14 07:37:35 +0000483 return true;
484 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000485 }
486
Reid Spencer5f016e22007-07-11 17:01:13 +0000487 case MemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000488 // If the base pointer or element is to a volatile pointer/field, accessing
489 // it is a side effect.
490 if (getType().isVolatileQualified())
491 return false;
492 Loc = cast<MemberExpr>(this)->getMemberLoc();
493 R1 = SourceRange(Loc, Loc);
494 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
495 return true;
496
Reid Spencer5f016e22007-07-11 17:01:13 +0000497 case ArraySubscriptExprClass:
498 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +0000499 // it is a side effect.
500 if (getType().isVolatileQualified())
501 return false;
502 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
503 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
504 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
505 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +0000506
Reid Spencer5f016e22007-07-11 17:01:13 +0000507 case CallExprClass:
Eli Friedman852871a2009-04-29 16:35:53 +0000508 case CXXOperatorCallExprClass:
509 case CXXMemberCallExprClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000510 // If this is a direct call, get the callee.
511 const CallExpr *CE = cast<CallExpr>(this);
512 const Expr *CalleeExpr = CE->getCallee()->IgnoreParenCasts();
513 if (const DeclRefExpr *CalleeDRE = dyn_cast<DeclRefExpr>(CalleeExpr)) {
514 // If the callee has attribute pure, const, or warn_unused_result, warn
515 // about it. void foo() { strlen("bar"); } should warn.
516 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeDRE->getDecl()))
517 if (FD->getAttr<WarnUnusedResultAttr>() ||
518 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
519 Loc = CE->getCallee()->getLocStart();
520 R1 = CE->getCallee()->getSourceRange();
521
522 if (unsigned NumArgs = CE->getNumArgs())
523 R2 = SourceRange(CE->getArg(0)->getLocStart(),
524 CE->getArg(NumArgs-1)->getLocEnd());
525 return true;
526 }
527 }
528 return false;
529 }
Chris Lattnera9c01022007-09-26 22:06:30 +0000530 case ObjCMessageExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000531 return false;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000532 case StmtExprClass: {
533 // Statement exprs don't logically have side effects themselves, but are
534 // sometimes used in macros in ways that give them a type that is unused.
535 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
536 // however, if the result of the stmt expr is dead, we don't want to emit a
537 // warning.
538 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
539 if (!CS->body_empty())
540 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Chris Lattner026dc962009-02-14 07:37:35 +0000541 return E->isUnusedResultAWarning(Loc, R1, R2);
542
543 Loc = cast<StmtExpr>(this)->getLParenLoc();
544 R1 = getSourceRange();
545 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000546 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000547 case CStyleCastExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000548 // If this is a cast to void, check the operand. Otherwise, the result of
549 // the cast is unused.
550 if (getType()->isVoidType())
551 return cast<CastExpr>(this)->getSubExpr()->isUnusedResultAWarning(Loc,
552 R1, R2);
553 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
554 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
555 return true;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000556 case CXXFunctionalCastExprClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000557 // If this is a cast to void, check the operand. Otherwise, the result of
558 // the cast is unused.
559 if (getType()->isVoidType())
Chris Lattner026dc962009-02-14 07:37:35 +0000560 return cast<CastExpr>(this)->getSubExpr()->isUnusedResultAWarning(Loc,
561 R1, R2);
562 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
563 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
564 return true;
565
Eli Friedman4be1f472008-05-19 21:24:43 +0000566 case ImplicitCastExprClass:
567 // Check the operand, since implicit casts are inserted by Sema
Chris Lattner026dc962009-02-14 07:37:35 +0000568 return cast<ImplicitCastExpr>(this)
569 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Eli Friedman4be1f472008-05-19 21:24:43 +0000570
Chris Lattner04421082008-04-08 04:40:51 +0000571 case CXXDefaultArgExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000572 return cast<CXXDefaultArgExpr>(this)
573 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000574
575 case CXXNewExprClass:
576 // FIXME: In theory, there might be new expressions that don't have side
577 // effects (e.g. a placement new with an uninitialized POD).
578 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000579 return false;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000580 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000581}
582
Douglas Gregorba7e2102008-10-22 15:04:37 +0000583/// DeclCanBeLvalue - Determine whether the given declaration can be
584/// an lvalue. This is a helper routine for isLvalue.
585static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000586 // C++ [temp.param]p6:
587 // A non-type non-reference template-parameter is not an lvalue.
588 if (const NonTypeTemplateParmDecl *NTTParm
589 = dyn_cast<NonTypeTemplateParmDecl>(Decl))
590 return NTTParm->getType()->isReferenceType();
591
Douglas Gregor44b43212008-12-11 16:49:14 +0000592 return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) ||
Douglas Gregorba7e2102008-10-22 15:04:37 +0000593 // C++ 3.10p2: An lvalue refers to an object or function.
594 (Ctx.getLangOptions().CPlusPlus &&
595 (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl)));
596}
597
Reid Spencer5f016e22007-07-11 17:01:13 +0000598/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
599/// incomplete type other than void. Nonarray expressions that can be lvalues:
600/// - name, where name must be a variable
601/// - e[i]
602/// - (e), where e must be an lvalue
603/// - e.name, where e must be an lvalue
604/// - e->name
605/// - *e, the type of e cannot be a function type
606/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +0000607/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000608/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000609///
Chris Lattner28be73f2008-07-26 21:30:36 +0000610Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Eli Friedman53202852009-05-03 22:36:05 +0000611 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
612
613 isLvalueResult Res = isLvalueInternal(Ctx);
614 if (Res != LV_Valid || Ctx.getLangOptions().CPlusPlus)
615 return Res;
616
Douglas Gregor98cd5992008-10-21 23:43:52 +0000617 // first, check the type (C99 6.3.2.1). Expressions with function
618 // type in C are not lvalues, but they can be lvalues in C++.
Eli Friedman53202852009-05-03 22:36:05 +0000619 if (TR->isFunctionType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000620 return LV_NotObjectType;
621
Steve Naroffacb818a2008-02-10 01:39:04 +0000622 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattner28be73f2008-07-26 21:30:36 +0000623 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +0000624 return LV_IncompleteVoidType;
625
Eli Friedman53202852009-05-03 22:36:05 +0000626 return LV_Valid;
627}
Bill Wendling08ad47c2007-07-17 03:52:31 +0000628
Eli Friedman53202852009-05-03 22:36:05 +0000629// Check whether the expression can be sanely treated like an l-value
630Expr::isLvalueResult Expr::isLvalueInternal(ASTContext &Ctx) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000631 switch (getStmtClass()) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000632 case StringLiteralClass: // C99 6.5.1p4
633 case ObjCEncodeExprClass: // @encode behaves like its string in every way.
Anders Carlsson7323a622007-11-30 22:47:59 +0000634 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000635 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
636 // For vectors, make sure base is an lvalue (i.e. not a function call).
637 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner28be73f2008-07-26 21:30:36 +0000638 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000639 return LV_Valid;
Douglas Gregor1a49af92009-01-06 05:10:23 +0000640 case DeclRefExprClass:
641 case QualifiedDeclRefExprClass: { // C99 6.5.1p2
Douglas Gregorba7e2102008-10-22 15:04:37 +0000642 const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
643 if (DeclCanBeLvalue(RefdDecl, Ctx))
Reid Spencer5f016e22007-07-11 17:01:13 +0000644 return LV_Valid;
645 break;
Chris Lattner41110242008-06-17 18:05:57 +0000646 }
Steve Naroffdd972f22008-09-05 22:11:13 +0000647 case BlockDeclRefExprClass: {
648 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
Steve Naroff4f6a7d72008-09-26 14:41:28 +0000649 if (isa<VarDecl>(BDR->getDecl()))
Steve Naroffdd972f22008-09-05 22:11:13 +0000650 return LV_Valid;
651 break;
652 }
Douglas Gregor86f19402008-12-20 23:49:58 +0000653 case MemberExprClass: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000654 const MemberExpr *m = cast<MemberExpr>(this);
Douglas Gregor86f19402008-12-20 23:49:58 +0000655 if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4:
656 NamedDecl *Member = m->getMemberDecl();
657 // C++ [expr.ref]p4:
658 // If E2 is declared to have type "reference to T", then E1.E2
659 // is an lvalue.
660 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
661 if (Value->getType()->isReferenceType())
662 return LV_Valid;
663
664 // -- If E2 is a static data member [...] then E1.E2 is an lvalue.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000665 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
Douglas Gregor86f19402008-12-20 23:49:58 +0000666 return LV_Valid;
667
668 // -- If E2 is a non-static data member [...]. If E1 is an
669 // lvalue, then E1.E2 is an lvalue.
670 if (isa<FieldDecl>(Member))
671 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
672
673 // -- If it refers to a static member function [...], then
674 // E1.E2 is an lvalue.
675 // -- Otherwise, if E1.E2 refers to a non-static member
676 // function [...], then E1.E2 is not an lvalue.
677 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
678 return Method->isStatic()? LV_Valid : LV_MemberFunction;
679
680 // -- If E2 is a member enumerator [...], the expression E1.E2
681 // is not an lvalue.
682 if (isa<EnumConstantDecl>(Member))
683 return LV_InvalidExpression;
684
685 // Not an lvalue.
686 return LV_InvalidExpression;
687 }
688
689 // C99 6.5.2.3p4
Chris Lattner28be73f2008-07-26 21:30:36 +0000690 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000691 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000692 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000693 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +0000694 return LV_Valid; // C99 6.5.3p4
695
696 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattnerbaf0d662008-07-25 18:07:19 +0000697 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
698 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner28be73f2008-07-26 21:30:36 +0000699 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Douglas Gregor74253732008-11-19 15:42:04 +0000700
701 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1
702 (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc ||
703 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec))
704 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000705 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000706 case ImplicitCastExprClass:
707 return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid
708 : LV_InvalidExpression;
Reid Spencer5f016e22007-07-11 17:01:13 +0000709 case ParenExprClass: // C99 6.5.1p5
Chris Lattner28be73f2008-07-26 21:30:36 +0000710 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000711 case BinaryOperatorClass:
712 case CompoundAssignOperatorClass: {
713 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
Douglas Gregor337c6b92008-11-19 17:17:41 +0000714
715 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1
716 BinOp->getOpcode() == BinaryOperator::Comma)
717 return BinOp->getRHS()->isLvalue(Ctx);
718
Sebastian Redl22460502009-02-07 00:15:38 +0000719 // C++ [expr.mptr.oper]p6
720 if ((BinOp->getOpcode() == BinaryOperator::PtrMemD ||
721 BinOp->getOpcode() == BinaryOperator::PtrMemI) &&
722 !BinOp->getType()->isFunctionType())
723 return BinOp->getLHS()->isLvalue(Ctx);
724
Douglas Gregorbf3af052008-11-13 20:12:29 +0000725 if (!BinOp->isAssignmentOp())
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000726 return LV_InvalidExpression;
727
Douglas Gregorbf3af052008-11-13 20:12:29 +0000728 if (Ctx.getLangOptions().CPlusPlus)
729 // C++ [expr.ass]p1:
730 // The result of an assignment operation [...] is an lvalue.
731 return LV_Valid;
732
733
734 // C99 6.5.16:
735 // An assignment expression [...] is not an lvalue.
736 return LV_InvalidExpression;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000737 }
Douglas Gregorb4609802008-11-14 16:09:21 +0000738 case CallExprClass:
Douglas Gregor88a35142008-12-22 05:46:06 +0000739 case CXXOperatorCallExprClass:
740 case CXXMemberCallExprClass: {
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000741 // C++0x [expr.call]p10
Douglas Gregor9d293df2008-10-28 00:22:11 +0000742 // A function call is an lvalue if and only if the result type
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000743 // is an lvalue reference.
Douglas Gregor27c8dc02008-10-29 00:13:59 +0000744 QualType CalleeType = cast<CallExpr>(this)->getCallee()->getType();
Douglas Gregor9d293df2008-10-28 00:22:11 +0000745 if (const PointerType *FnTypePtr = CalleeType->getAsPointerType())
Douglas Gregor88a35142008-12-22 05:46:06 +0000746 CalleeType = FnTypePtr->getPointeeType();
747 if (const FunctionType *FnType = CalleeType->getAsFunctionType())
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000748 if (FnType->getResultType()->isLValueReferenceType())
Douglas Gregor88a35142008-12-22 05:46:06 +0000749 return LV_Valid;
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000750
Douglas Gregor9d293df2008-10-28 00:22:11 +0000751 break;
752 }
Steve Naroffe6386392007-12-05 04:00:10 +0000753 case CompoundLiteralExprClass: // C99 6.5.2.5p5
754 return LV_Valid;
Chris Lattner670a62c2008-12-12 05:35:08 +0000755 case ChooseExprClass:
756 // __builtin_choose_expr is an lvalue if the selected operand is.
Eli Friedman79769322009-03-04 05:52:32 +0000757 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->isLvalue(Ctx);
Nate Begeman213541a2008-04-18 23:10:10 +0000758 case ExtVectorElementExprClass:
759 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +0000760 return LV_DuplicateVectorComponents;
761 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +0000762 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
763 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +0000764 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
765 return LV_Valid;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000766 case ObjCKVCRefExprClass: // FIXME: check if read-only property.
Chris Lattner670a62c2008-12-12 05:35:08 +0000767 return LV_Valid;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000768 case PredefinedExprClass:
Douglas Gregor796da182008-11-04 14:32:21 +0000769 return LV_Valid;
Chris Lattner04421082008-04-08 04:40:51 +0000770 case CXXDefaultArgExprClass:
Chris Lattner28be73f2008-07-26 21:30:36 +0000771 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Argyrios Kyrtzidis24b41fa2008-09-11 04:22:26 +0000772 case CXXConditionDeclExprClass:
773 return LV_Valid;
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000774 case CStyleCastExprClass:
Douglas Gregor9d293df2008-10-28 00:22:11 +0000775 case CXXFunctionalCastExprClass:
776 case CXXStaticCastExprClass:
777 case CXXDynamicCastExprClass:
778 case CXXReinterpretCastExprClass:
779 case CXXConstCastExprClass:
780 // The result of an explicit cast is an lvalue if the type we are
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000781 // casting to is an lvalue reference type. See C++ [expr.cast]p1,
Douglas Gregor9d293df2008-10-28 00:22:11 +0000782 // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2,
783 // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000784 if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->
785 isLValueReferenceType())
Douglas Gregor9d293df2008-10-28 00:22:11 +0000786 return LV_Valid;
787 break;
Sebastian Redlc42e1182008-11-11 11:37:55 +0000788 case CXXTypeidExprClass:
789 // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ...
790 return LV_Valid;
Sebastian Redl76458502009-04-17 16:30:52 +0000791 case ConditionalOperatorClass: {
792 // Complicated handling is only for C++.
793 if (!Ctx.getLangOptions().CPlusPlus)
794 return LV_InvalidExpression;
795
796 // Sema should have taken care to ensure that a CXXTemporaryObjectExpr is
797 // everywhere there's an object converted to an rvalue. Also, any other
798 // casts should be wrapped by ImplicitCastExprs. There's just the special
799 // case involving throws to work out.
800 const ConditionalOperator *Cond = cast<ConditionalOperator>(this);
801 Expr *LHS = Cond->getLHS();
802 Expr *RHS = Cond->getRHS();
803 // C++0x 5.16p2
804 // If either the second or the third operand has type (cv) void, [...]
805 // the result [...] is an rvalue.
806 if (LHS->getType()->isVoidType() || RHS->getType()->isVoidType())
807 return LV_InvalidExpression;
808
809 // Both sides must be lvalues for the result to be an lvalue.
810 if (LHS->isLvalue(Ctx) != LV_Valid || RHS->isLvalue(Ctx) != LV_Valid)
811 return LV_InvalidExpression;
812
813 // That's it.
814 return LV_Valid;
815 }
816
Reid Spencer5f016e22007-07-11 17:01:13 +0000817 default:
818 break;
819 }
820 return LV_InvalidExpression;
821}
822
823/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
824/// does not have an incomplete type, does not have a const-qualified type, and
825/// if it is a structure or union, does not have any member (including,
826/// recursively, any member or element of all contained aggregates or unions)
827/// with a const-qualified type.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000828Expr::isModifiableLvalueResult
829Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
Chris Lattner28be73f2008-07-26 21:30:36 +0000830 isLvalueResult lvalResult = isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000831
832 switch (lvalResult) {
Douglas Gregorae8d4672008-10-22 00:03:08 +0000833 case LV_Valid:
834 // C++ 3.10p11: Functions cannot be modified, but pointers to
835 // functions can be modifiable.
836 if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
837 return MLV_NotObjectType;
838 break;
839
Reid Spencer5f016e22007-07-11 17:01:13 +0000840 case LV_NotObjectType: return MLV_NotObjectType;
841 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +0000842 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattnerca354fa2008-11-17 19:51:54 +0000843 case LV_InvalidExpression:
844 // If the top level is a C-style cast, and the subexpression is a valid
845 // lvalue, then this is probably a use of the old-school "cast as lvalue"
846 // GCC extension. We don't support it, but we want to produce good
847 // diagnostics when it happens so that the user knows why.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000848 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(IgnoreParens())) {
849 if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) {
850 if (Loc)
851 *Loc = CE->getLParenLoc();
Chris Lattnerca354fa2008-11-17 19:51:54 +0000852 return MLV_LValueCast;
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000853 }
854 }
Chris Lattnerca354fa2008-11-17 19:51:54 +0000855 return MLV_InvalidExpression;
Douglas Gregor86f19402008-12-20 23:49:58 +0000856 case LV_MemberFunction: return MLV_MemberFunction;
Reid Spencer5f016e22007-07-11 17:01:13 +0000857 }
Eli Friedman04831aa2009-03-22 23:26:56 +0000858
859 // The following is illegal:
860 // void takeclosure(void (^C)(void));
861 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
862 //
Chris Lattner7fd09952009-03-23 17:57:53 +0000863 if (isa<BlockDeclRefExpr>(this)) {
Eli Friedman04831aa2009-03-22 23:26:56 +0000864 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
865 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
866 return MLV_NotBlockQualified;
867 }
868
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000869 QualType CT = Ctx.getCanonicalType(getType());
870
871 if (CT.isConstQualified())
Reid Spencer5f016e22007-07-11 17:01:13 +0000872 return MLV_ConstQualified;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000873 if (CT->isArrayType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000874 return MLV_ArrayType;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000875 if (CT->isIncompleteType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000876 return MLV_IncompleteType;
877
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000878 if (const RecordType *r = CT->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000879 if (r->hasConstFields())
880 return MLV_ConstQualified;
881 }
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +0000882
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000883 // Assigning to an 'implicit' property?
Chris Lattner7fd09952009-03-23 17:57:53 +0000884 else if (isa<ObjCKVCRefExpr>(this)) {
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000885 const ObjCKVCRefExpr* KVCExpr = cast<ObjCKVCRefExpr>(this);
886 if (KVCExpr->getSetterMethod() == 0)
887 return MLV_NoSetterProperty;
888 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000889 return MLV_Valid;
890}
891
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000892/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner4cc62712007-11-27 21:35:27 +0000893/// duration. This means that the address of this expression is a link-time
894/// constant.
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000895bool Expr::hasGlobalStorage() const {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000896 switch (getStmtClass()) {
897 default:
898 return false;
Steve Naroff3aaa4822009-04-16 19:02:57 +0000899 case BlockExprClass:
900 return true;
Chris Lattner4cc62712007-11-27 21:35:27 +0000901 case ParenExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000902 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner4cc62712007-11-27 21:35:27 +0000903 case ImplicitCastExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000904 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffe9b12192008-01-14 18:19:28 +0000905 case CompoundLiteralExprClass:
906 return cast<CompoundLiteralExpr>(this)->isFileScope();
Douglas Gregor1a49af92009-01-06 05:10:23 +0000907 case DeclRefExprClass:
908 case QualifiedDeclRefExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000909 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
910 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000911 return VD->hasGlobalStorage();
Seo Sanghyeon63f067f2008-04-04 09:45:30 +0000912 if (isa<FunctionDecl>(D))
913 return true;
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000914 return false;
915 }
Chris Lattnerfb708062007-11-28 04:30:09 +0000916 case MemberExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000917 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000918 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerfb708062007-11-28 04:30:09 +0000919 }
Chris Lattner4cc62712007-11-27 21:35:27 +0000920 case ArraySubscriptExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000921 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattnerd9f69102008-08-10 01:53:14 +0000922 case PredefinedExprClass:
Chris Lattnerfa28b302008-01-12 08:14:25 +0000923 return true;
Chris Lattner04421082008-04-08 04:40:51 +0000924 case CXXDefaultArgExprClass:
925 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000926 }
927}
928
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000929/// isOBJCGCCandidate - Check if an expression is objc gc'able.
930///
931bool Expr::isOBJCGCCandidate() const {
932 switch (getStmtClass()) {
933 default:
934 return false;
935 case ObjCIvarRefExprClass:
936 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000937 case Expr::UnaryOperatorClass:
938 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate();
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000939 case ParenExprClass:
940 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate();
941 case ImplicitCastExprClass:
942 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate();
Fariborz Jahanian06b89122009-05-05 23:28:21 +0000943 case CStyleCastExprClass:
944 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate();
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000945 case DeclRefExprClass:
946 case QualifiedDeclRefExprClass: {
947 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
948 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
949 return VD->hasGlobalStorage();
950 return false;
951 }
952 case MemberExprClass: {
953 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanian06b89122009-05-05 23:28:21 +0000954 return M->getBase()->isOBJCGCCandidate();
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000955 }
956 case ArraySubscriptExprClass:
957 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate();
958 }
959}
Ted Kremenek4e99a5f2008-01-17 16:57:34 +0000960Expr* Expr::IgnoreParens() {
961 Expr* E = this;
962 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
963 E = P->getSubExpr();
964
965 return E;
966}
967
Chris Lattner56f34942008-02-13 01:02:39 +0000968/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
969/// or CastExprs or ImplicitCastExprs, returning their operand.
970Expr *Expr::IgnoreParenCasts() {
971 Expr *E = this;
972 while (true) {
973 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
974 E = P->getSubExpr();
975 else if (CastExpr *P = dyn_cast<CastExpr>(E))
976 E = P->getSubExpr();
Chris Lattner56f34942008-02-13 01:02:39 +0000977 else
978 return E;
979 }
980}
981
Chris Lattnerecdd8412009-03-13 17:28:01 +0000982/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
983/// value (including ptr->int casts of the same size). Strip off any
984/// ParenExpr or CastExprs, returning their operand.
985Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
986 Expr *E = this;
987 while (true) {
988 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
989 E = P->getSubExpr();
990 continue;
991 }
992
993 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
994 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
995 // ptr<->int casts of the same width. We also ignore all identify casts.
996 Expr *SE = P->getSubExpr();
997
998 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
999 E = SE;
1000 continue;
1001 }
1002
1003 if ((E->getType()->isPointerType() || E->getType()->isIntegralType()) &&
1004 (SE->getType()->isPointerType() || SE->getType()->isIntegralType()) &&
1005 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1006 E = SE;
1007 continue;
1008 }
1009 }
1010
1011 return E;
1012 }
1013}
1014
1015
Douglas Gregor898574e2008-12-05 23:32:09 +00001016/// hasAnyTypeDependentArguments - Determines if any of the expressions
1017/// in Exprs is type-dependent.
1018bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1019 for (unsigned I = 0; I < NumExprs; ++I)
1020 if (Exprs[I]->isTypeDependent())
1021 return true;
1022
1023 return false;
1024}
1025
1026/// hasAnyValueDependentArguments - Determines if any of the expressions
1027/// in Exprs is value-dependent.
1028bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1029 for (unsigned I = 0; I < NumExprs; ++I)
1030 if (Exprs[I]->isValueDependent())
1031 return true;
1032
1033 return false;
1034}
1035
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001036bool Expr::isConstantInitializer(ASTContext &Ctx) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001037 // This function is attempting whether an expression is an initializer
1038 // which can be evaluated at compile-time. isEvaluatable handles most
1039 // of the cases, but it can't deal with some initializer-specific
1040 // expressions, and it can't deal with aggregates; we deal with those here,
1041 // and fall back to isEvaluatable for the other cases.
1042
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001043 // FIXME: This function assumes the variable being assigned to
1044 // isn't a reference type!
1045
Anders Carlssone8a32b82008-11-24 05:23:59 +00001046 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001047 default: break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001048 case StringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001049 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00001050 return true;
Nate Begeman59b5da62009-01-18 03:20:47 +00001051 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001052 // This handles gcc's extension that allows global initializers like
1053 // "struct x {int x;} x = (struct x) {};".
1054 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00001055 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001056 return Exp->isConstantInitializer(Ctx);
Nate Begeman59b5da62009-01-18 03:20:47 +00001057 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00001058 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001059 // FIXME: This doesn't deal with fields with reference types correctly.
1060 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1061 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00001062 const InitListExpr *Exp = cast<InitListExpr>(this);
1063 unsigned numInits = Exp->getNumInits();
1064 for (unsigned i = 0; i < numInits; i++) {
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001065 if (!Exp->getInit(i)->isConstantInitializer(Ctx))
Anders Carlssone8a32b82008-11-24 05:23:59 +00001066 return false;
1067 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001068 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001069 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001070 case ImplicitValueInitExprClass:
1071 return true;
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001072 case ParenExprClass: {
1073 return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1074 }
1075 case UnaryOperatorClass: {
1076 const UnaryOperator* Exp = cast<UnaryOperator>(this);
1077 if (Exp->getOpcode() == UnaryOperator::Extension)
1078 return Exp->getSubExpr()->isConstantInitializer(Ctx);
1079 break;
1080 }
Chris Lattner81045d82009-04-21 05:19:11 +00001081 case ImplicitCastExprClass:
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001082 case CStyleCastExprClass:
1083 // Handle casts with a destination that's a struct or union; this
1084 // deals with both the gcc no-op struct cast extension and the
1085 // cast-to-union extension.
1086 if (getType()->isRecordType())
1087 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1088 break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001089 }
1090
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001091 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00001092}
1093
Reid Spencer5f016e22007-07-11 17:01:13 +00001094/// isIntegerConstantExpr - this recursive routine will test if an expression is
Eli Friedmane28d7192009-02-26 09:29:13 +00001095/// an integer constant expression.
Reid Spencer5f016e22007-07-11 17:01:13 +00001096
1097/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
1098/// comma, etc
1099///
Chris Lattnerce0afc02007-07-18 05:21:20 +00001100/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
1101/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
1102/// cast+dereference.
Daniel Dunbar2d6744f2009-02-18 00:47:45 +00001103
Eli Friedmane28d7192009-02-26 09:29:13 +00001104// CheckICE - This function does the fundamental ICE checking: the returned
1105// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
1106// Note that to reduce code duplication, this helper does no evaluation
1107// itself; the caller checks whether the expression is evaluatable, and
1108// in the rare cases where CheckICE actually cares about the evaluated
1109// value, it calls into Evalute.
1110//
1111// Meanings of Val:
1112// 0: This expression is an ICE if it can be evaluated by Evaluate.
1113// 1: This expression is not an ICE, but if it isn't evaluated, it's
1114// a legal subexpression for an ICE. This return value is used to handle
1115// the comma operator in C99 mode.
1116// 2: This expression is not an ICE, and is not a legal subexpression for one.
1117
1118struct ICEDiag {
1119 unsigned Val;
1120 SourceLocation Loc;
1121
1122 public:
1123 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
1124 ICEDiag() : Val(0) {}
1125};
1126
1127ICEDiag NoDiag() { return ICEDiag(); }
1128
Eli Friedman60ce9632009-02-27 04:07:58 +00001129static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
1130 Expr::EvalResult EVResult;
1131 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1132 !EVResult.Val.isInt()) {
1133 return ICEDiag(2, E->getLocStart());
1134 }
1135 return NoDiag();
1136}
1137
Eli Friedmane28d7192009-02-26 09:29:13 +00001138static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
Anders Carlssonc3082412009-03-14 00:33:21 +00001139 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001140 if (!E->getType()->isIntegralType()) {
1141 return ICEDiag(2, E->getLocStart());
Eli Friedmana6afa762008-11-13 06:09:17 +00001142 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001143
1144 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001145 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001146 return ICEDiag(2, E->getLocStart());
1147 case Expr::ParenExprClass:
1148 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
1149 case Expr::IntegerLiteralClass:
1150 case Expr::CharacterLiteralClass:
1151 case Expr::CXXBoolLiteralExprClass:
1152 case Expr::CXXZeroInitValueExprClass:
1153 case Expr::TypesCompatibleExprClass:
1154 case Expr::UnaryTypeTraitExprClass:
1155 return NoDiag();
1156 case Expr::CallExprClass:
1157 case Expr::CXXOperatorCallExprClass: {
1158 const CallExpr *CE = cast<CallExpr>(E);
Eli Friedman60ce9632009-02-27 04:07:58 +00001159 if (CE->isBuiltinCall(Ctx))
1160 return CheckEvalInICE(E, Ctx);
Eli Friedmane28d7192009-02-26 09:29:13 +00001161 return ICEDiag(2, E->getLocStart());
Chris Lattner2eadfb62007-07-15 23:32:58 +00001162 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001163 case Expr::DeclRefExprClass:
1164 case Expr::QualifiedDeclRefExprClass:
1165 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
1166 return NoDiag();
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001167 if (Ctx.getLangOptions().CPlusPlus &&
Eli Friedmane28d7192009-02-26 09:29:13 +00001168 E->getType().getCVRQualifiers() == QualType::Const) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001169 // C++ 7.1.5.1p2
1170 // A variable of non-volatile const-qualified integral or enumeration
1171 // type initialized by an ICE can be used in ICEs.
1172 if (const VarDecl *Dcl =
Eli Friedmane28d7192009-02-26 09:29:13 +00001173 dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001174 if (const Expr *Init = Dcl->getInit())
Eli Friedmane28d7192009-02-26 09:29:13 +00001175 return CheckICE(Init, Ctx);
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001176 }
1177 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001178 return ICEDiag(2, E->getLocStart());
1179 case Expr::UnaryOperatorClass: {
1180 const UnaryOperator *Exp = cast<UnaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001181 switch (Exp->getOpcode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001182 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001183 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001184 case UnaryOperator::Extension:
Eli Friedmane28d7192009-02-26 09:29:13 +00001185 case UnaryOperator::LNot:
Reid Spencer5f016e22007-07-11 17:01:13 +00001186 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001187 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001188 case UnaryOperator::Not:
Eli Friedman60ce9632009-02-27 04:07:58 +00001189 case UnaryOperator::Real:
1190 case UnaryOperator::Imag:
Eli Friedmane28d7192009-02-26 09:29:13 +00001191 return CheckICE(Exp->getSubExpr(), Ctx);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001192 case UnaryOperator::OffsetOf:
Eli Friedman60ce9632009-02-27 04:07:58 +00001193 // Note that per C99, offsetof must be an ICE. And AFAIK, using
1194 // Evaluate matches the proposed gcc behavior for cases like
1195 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
1196 // compliance: we should warn earlier for offsetof expressions with
1197 // array subscripts that aren't ICEs, and if the array subscripts
1198 // are ICEs, the value of the offsetof must be an integer constant.
1199 return CheckEvalInICE(E, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001200 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001201 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001202 case Expr::SizeOfAlignOfExprClass: {
1203 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
1204 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
1205 return ICEDiag(2, E->getLocStart());
1206 return NoDiag();
Reid Spencer5f016e22007-07-11 17:01:13 +00001207 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001208 case Expr::BinaryOperatorClass: {
1209 const BinaryOperator *Exp = cast<BinaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001210 switch (Exp->getOpcode()) {
1211 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001212 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001213 case BinaryOperator::Mul:
Reid Spencer5f016e22007-07-11 17:01:13 +00001214 case BinaryOperator::Div:
Reid Spencer5f016e22007-07-11 17:01:13 +00001215 case BinaryOperator::Rem:
Eli Friedmane28d7192009-02-26 09:29:13 +00001216 case BinaryOperator::Add:
1217 case BinaryOperator::Sub:
Reid Spencer5f016e22007-07-11 17:01:13 +00001218 case BinaryOperator::Shl:
Reid Spencer5f016e22007-07-11 17:01:13 +00001219 case BinaryOperator::Shr:
Eli Friedmane28d7192009-02-26 09:29:13 +00001220 case BinaryOperator::LT:
1221 case BinaryOperator::GT:
1222 case BinaryOperator::LE:
1223 case BinaryOperator::GE:
1224 case BinaryOperator::EQ:
1225 case BinaryOperator::NE:
1226 case BinaryOperator::And:
1227 case BinaryOperator::Xor:
1228 case BinaryOperator::Or:
1229 case BinaryOperator::Comma: {
1230 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1231 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001232 if (Exp->getOpcode() == BinaryOperator::Div ||
1233 Exp->getOpcode() == BinaryOperator::Rem) {
1234 // Evaluate gives an error for undefined Div/Rem, so make sure
1235 // we don't evaluate one.
1236 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
1237 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
1238 if (REval == 0)
1239 return ICEDiag(1, E->getLocStart());
1240 if (REval.isSigned() && REval.isAllOnesValue()) {
1241 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
1242 if (LEval.isMinSignedValue())
1243 return ICEDiag(1, E->getLocStart());
1244 }
1245 }
1246 }
1247 if (Exp->getOpcode() == BinaryOperator::Comma) {
1248 if (Ctx.getLangOptions().C99) {
1249 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
1250 // if it isn't evaluated.
1251 if (LHSResult.Val == 0 && RHSResult.Val == 0)
1252 return ICEDiag(1, E->getLocStart());
1253 } else {
1254 // In both C89 and C++, commas in ICEs are illegal.
1255 return ICEDiag(2, E->getLocStart());
1256 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001257 }
1258 if (LHSResult.Val >= RHSResult.Val)
1259 return LHSResult;
1260 return RHSResult;
1261 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001262 case BinaryOperator::LAnd:
Eli Friedmane28d7192009-02-26 09:29:13 +00001263 case BinaryOperator::LOr: {
1264 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1265 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
1266 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
1267 // Rare case where the RHS has a comma "side-effect"; we need
1268 // to actually check the condition to see whether the side
1269 // with the comma is evaluated.
Eli Friedmane28d7192009-02-26 09:29:13 +00001270 if ((Exp->getOpcode() == BinaryOperator::LAnd) !=
Eli Friedman60ce9632009-02-27 04:07:58 +00001271 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
Eli Friedmane28d7192009-02-26 09:29:13 +00001272 return RHSResult;
1273 return NoDiag();
Eli Friedmanb11e7782008-11-13 02:13:11 +00001274 }
Eli Friedman60ce9632009-02-27 04:07:58 +00001275
Eli Friedmane28d7192009-02-26 09:29:13 +00001276 if (LHSResult.Val >= RHSResult.Val)
1277 return LHSResult;
1278 return RHSResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001279 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001280 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001281 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001282 case Expr::ImplicitCastExprClass:
1283 case Expr::CStyleCastExprClass:
1284 case Expr::CXXFunctionalCastExprClass: {
1285 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
1286 if (SubExpr->getType()->isIntegralType())
1287 return CheckICE(SubExpr, Ctx);
1288 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
1289 return NoDiag();
1290 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001291 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001292 case Expr::ConditionalOperatorClass: {
1293 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
Chris Lattner28daa532008-12-12 06:55:44 +00001294 // If the condition (ignoring parens) is a __builtin_constant_p call,
1295 // then only the true side is actually considered in an integer constant
Chris Lattner42b83dd2008-12-12 18:00:51 +00001296 // expression, and it is fully evaluated. This is an important GNU
1297 // extension. See GCC PR38377 for discussion.
Eli Friedmane28d7192009-02-26 09:29:13 +00001298 if (const CallExpr *CallCE = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001299 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001300 Expr::EvalResult EVResult;
1301 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1302 !EVResult.Val.isInt()) {
Eli Friedman60ce9632009-02-27 04:07:58 +00001303 return ICEDiag(2, E->getLocStart());
Eli Friedmane28d7192009-02-26 09:29:13 +00001304 }
1305 return NoDiag();
Chris Lattner42b83dd2008-12-12 18:00:51 +00001306 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001307 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
1308 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
1309 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
1310 if (CondResult.Val == 2)
1311 return CondResult;
1312 if (TrueResult.Val == 2)
1313 return TrueResult;
1314 if (FalseResult.Val == 2)
1315 return FalseResult;
1316 if (CondResult.Val == 1)
1317 return CondResult;
1318 if (TrueResult.Val == 0 && FalseResult.Val == 0)
1319 return NoDiag();
1320 // Rare case where the diagnostics depend on which side is evaluated
1321 // Note that if we get here, CondResult is 0, and at least one of
1322 // TrueResult and FalseResult is non-zero.
Eli Friedman60ce9632009-02-27 04:07:58 +00001323 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001324 return FalseResult;
1325 }
1326 return TrueResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001327 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001328 case Expr::CXXDefaultArgExprClass:
1329 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001330 case Expr::ChooseExprClass: {
Eli Friedman79769322009-03-04 05:52:32 +00001331 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001332 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001333 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001334}
Reid Spencer5f016e22007-07-11 17:01:13 +00001335
Eli Friedmane28d7192009-02-26 09:29:13 +00001336bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
1337 SourceLocation *Loc, bool isEvaluated) const {
1338 ICEDiag d = CheckICE(this, Ctx);
1339 if (d.Val != 0) {
1340 if (Loc) *Loc = d.Loc;
1341 return false;
1342 }
1343 EvalResult EvalResult;
Eli Friedman60ce9632009-02-27 04:07:58 +00001344 if (!Evaluate(EvalResult, Ctx))
1345 assert(0 && "ICE cannot be evaluated!");
1346 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
1347 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001348 Result = EvalResult.Val.getInt();
Reid Spencer5f016e22007-07-11 17:01:13 +00001349 return true;
1350}
1351
Reid Spencer5f016e22007-07-11 17:01:13 +00001352/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1353/// integer constant expression with the value zero, or if this is one that is
1354/// cast to void*.
Anders Carlssonefa9b382008-12-01 02:13:57 +00001355bool Expr::isNullPointerConstant(ASTContext &Ctx) const
1356{
Sebastian Redl07779722008-10-31 14:43:28 +00001357 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001358 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00001359 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00001360 // Check that it is a cast to void*.
1361 if (const PointerType *PT = CE->getType()->getAsPointerType()) {
1362 QualType Pointee = PT->getPointeeType();
1363 if (Pointee.getCVRQualifiers() == 0 &&
1364 Pointee->isVoidType() && // to void*
1365 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Anders Carlssond2652772008-12-01 06:28:23 +00001366 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Sebastian Redl07779722008-10-31 14:43:28 +00001367 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001368 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001369 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1370 // Ignore the ImplicitCastExpr type entirely.
Anders Carlssond2652772008-12-01 06:28:23 +00001371 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
Steve Naroffaa58f002008-01-14 16:10:57 +00001372 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1373 // Accept ((void*)0) as a null pointer constant, as many other
1374 // implementations do.
Anders Carlssond2652772008-12-01 06:28:23 +00001375 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner8123a952008-04-10 02:22:51 +00001376 } else if (const CXXDefaultArgExpr *DefaultArg
1377 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001378 // See through default argument expressions
Anders Carlssond2652772008-12-01 06:28:23 +00001379 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001380 } else if (isa<GNUNullExpr>(this)) {
1381 // The GNU __null extension is always a null pointer constant.
1382 return true;
Steve Naroffaaffbf72008-01-14 02:53:34 +00001383 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001384
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001385 // C++0x nullptr_t is always a null pointer constant.
1386 if (getType()->isNullPtrType())
1387 return true;
1388
Steve Naroffaa58f002008-01-14 16:10:57 +00001389 // This expression must be an integer type.
1390 if (!getType()->isIntegerType())
1391 return false;
1392
Reid Spencer5f016e22007-07-11 17:01:13 +00001393 // If we have an integer constant expression, we need to *evaluate* it and
1394 // test for the value 0.
Eli Friedman09de1762009-04-25 22:37:12 +00001395 llvm::APSInt Result;
1396 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001397}
Steve Naroff31a45842007-07-28 23:10:27 +00001398
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001399FieldDecl *Expr::getBitField() {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001400 Expr *E = this->IgnoreParenCasts();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001401
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001402 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00001403 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001404 if (Field->isBitField())
1405 return Field;
1406
1407 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
1408 if (BinOp->isAssignmentOp() && BinOp->getLHS())
1409 return BinOp->getLHS()->getBitField();
1410
1411 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001412}
1413
Chris Lattner2140e902009-02-16 22:14:05 +00001414/// isArrow - Return true if the base expression is a pointer to vector,
1415/// return false if the base expression is a vector.
1416bool ExtVectorElementExpr::isArrow() const {
1417 return getBase()->getType()->isPointerType();
1418}
1419
Nate Begeman213541a2008-04-18 23:10:10 +00001420unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begeman8a997642008-05-09 06:41:27 +00001421 if (const VectorType *VT = getType()->getAsVectorType())
1422 return VT->getNumElements();
1423 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001424}
1425
Nate Begeman8a997642008-05-09 06:41:27 +00001426/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001427bool ExtVectorElementExpr::containsDuplicateElements() const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001428 const char *compStr = Accessor->getName();
1429 unsigned length = Accessor->getLength();
Nate Begeman190d6a22009-01-18 02:01:21 +00001430
1431 // Halving swizzles do not contain duplicate elements.
1432 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
1433 !strcmp(compStr, "even") || !strcmp(compStr, "odd"))
1434 return false;
1435
1436 // Advance past s-char prefix on hex swizzles.
1437 if (*compStr == 's') {
1438 compStr++;
1439 length--;
1440 }
Steve Narofffec0b492007-07-30 03:29:09 +00001441
Chris Lattner7e3e9b12008-11-19 07:55:04 +00001442 for (unsigned i = 0; i != length-1; i++) {
Steve Narofffec0b492007-07-30 03:29:09 +00001443 const char *s = compStr+i;
1444 for (const char c = *s++; *s; s++)
1445 if (c == *s)
1446 return true;
1447 }
1448 return false;
1449}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001450
Nate Begeman8a997642008-05-09 06:41:27 +00001451/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00001452void ExtVectorElementExpr::getEncodedElementAccess(
1453 llvm::SmallVectorImpl<unsigned> &Elts) const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001454 const char *compStr = Accessor->getName();
Nate Begeman353417a2009-01-18 01:47:54 +00001455 if (*compStr == 's')
1456 compStr++;
1457
1458 bool isHi = !strcmp(compStr, "hi");
1459 bool isLo = !strcmp(compStr, "lo");
1460 bool isEven = !strcmp(compStr, "even");
1461 bool isOdd = !strcmp(compStr, "odd");
1462
Nate Begeman8a997642008-05-09 06:41:27 +00001463 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1464 uint64_t Index;
1465
1466 if (isHi)
1467 Index = e + i;
1468 else if (isLo)
1469 Index = i;
1470 else if (isEven)
1471 Index = 2 * i;
1472 else if (isOdd)
1473 Index = 2 * i + 1;
1474 else
1475 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001476
Nate Begeman3b8d1162008-05-13 21:03:02 +00001477 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001478 }
Nate Begeman8a997642008-05-09 06:41:27 +00001479}
1480
Steve Naroff68d331a2007-09-27 14:38:14 +00001481// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001482ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001483 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001484 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001485 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001486 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001487 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001488 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001489 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00001490 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00001491 if (NumArgs) {
1492 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001493 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1494 }
Steve Naroff563477d2007-09-18 23:55:05 +00001495 LBracloc = LBrac;
1496 RBracloc = RBrac;
1497}
1498
Steve Naroff68d331a2007-09-27 14:38:14 +00001499// constructor for class messages.
1500// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001501ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001502 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001503 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001504 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001505 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001506 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001507 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001508 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenek4df728e2008-06-24 15:50:53 +00001509 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff49f109c2007-11-15 13:05:42 +00001510 if (NumArgs) {
1511 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001512 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1513 }
Steve Naroff563477d2007-09-18 23:55:05 +00001514 LBracloc = LBrac;
1515 RBracloc = RBrac;
1516}
1517
Ted Kremenek4df728e2008-06-24 15:50:53 +00001518// constructor for class messages.
1519ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1520 QualType retType, ObjCMethodDecl *mproto,
1521 SourceLocation LBrac, SourceLocation RBrac,
1522 Expr **ArgExprs, unsigned nargs)
1523: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1524MethodProto(mproto) {
1525 NumArgs = nargs;
1526 SubExprs = new Stmt*[NumArgs+1];
1527 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1528 if (NumArgs) {
1529 for (unsigned i = 0; i != NumArgs; ++i)
1530 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1531 }
1532 LBracloc = LBrac;
1533 RBracloc = RBrac;
1534}
1535
1536ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1537 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1538 switch (x & Flags) {
1539 default:
1540 assert(false && "Invalid ObjCMessageExpr.");
1541 case IsInstMeth:
1542 return ClassInfo(0, 0);
1543 case IsClsMethDeclUnknown:
1544 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1545 case IsClsMethDeclKnown: {
1546 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1547 return ClassInfo(D, D->getIdentifier());
1548 }
1549 }
1550}
1551
Chris Lattner0389e6b2009-04-26 00:44:05 +00001552void ObjCMessageExpr::setClassInfo(const ObjCMessageExpr::ClassInfo &CI) {
1553 if (CI.first == 0 && CI.second == 0)
1554 SubExprs[RECEIVER] = (Expr*)((uintptr_t)0 | IsInstMeth);
1555 else if (CI.first == 0)
1556 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.second | IsClsMethDeclUnknown);
1557 else
1558 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.first | IsClsMethDeclKnown);
1559}
1560
1561
Chris Lattner27437ca2007-10-25 00:29:32 +00001562bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Eli Friedman9a901bb2009-04-26 19:19:15 +00001563 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00001564}
1565
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001566void ShuffleVectorExpr::setExprs(Expr ** Exprs, unsigned NumExprs) {
1567 if (NumExprs)
1568 delete [] SubExprs;
1569
1570 SubExprs = new Stmt* [NumExprs];
1571 this->NumExprs = NumExprs;
1572 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
1573}
1574
Sebastian Redl05189992008-11-11 17:56:53 +00001575void SizeOfAlignOfExpr::Destroy(ASTContext& C) {
1576 // Override default behavior of traversing children. If this has a type
1577 // operand and the type is a variable-length array, the child iteration
1578 // will iterate over the size expression. However, this expression belongs
1579 // to the type, not to this, so we don't want to delete it.
1580 // We still want to delete this expression.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001581 if (isArgumentType()) {
1582 this->~SizeOfAlignOfExpr();
1583 C.Deallocate(this);
1584 }
Sebastian Redl05189992008-11-11 17:56:53 +00001585 else
1586 Expr::Destroy(C);
Daniel Dunbar90488912008-08-28 18:02:04 +00001587}
1588
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001589//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00001590// DesignatedInitExpr
1591//===----------------------------------------------------------------------===//
1592
1593IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
1594 assert(Kind == FieldDesignator && "Only valid on a field designator");
1595 if (Field.NameOrField & 0x01)
1596 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
1597 else
1598 return getField()->getIdentifier();
1599}
1600
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001601DesignatedInitExpr::DesignatedInitExpr(QualType Ty, unsigned NumDesignators,
1602 const Designator *Designators,
1603 SourceLocation EqualOrColonLoc,
1604 bool GNUSyntax,
1605 unsigned NumSubExprs)
1606 : Expr(DesignatedInitExprClass, Ty),
1607 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
1608 NumDesignators(NumDesignators), NumSubExprs(NumSubExprs) {
1609 this->Designators = new Designator[NumDesignators];
1610 for (unsigned I = 0; I != NumDesignators; ++I)
1611 this->Designators[I] = Designators[I];
1612}
1613
Douglas Gregor05c13a32009-01-22 00:58:24 +00001614DesignatedInitExpr *
1615DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
1616 unsigned NumDesignators,
1617 Expr **IndexExprs, unsigned NumIndexExprs,
1618 SourceLocation ColonOrEqualLoc,
1619 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00001620 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00001621 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001622 DesignatedInitExpr *DIE
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001623 = new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators, Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00001624 ColonOrEqualLoc, UsesColonSyntax,
1625 NumIndexExprs + 1);
1626
1627 // Fill in the designators
1628 unsigned ExpectedNumSubExprs = 0;
1629 designators_iterator Desig = DIE->designators_begin();
1630 for (unsigned Idx = 0; Idx < NumDesignators; ++Idx, ++Desig) {
Douglas Gregor05c13a32009-01-22 00:58:24 +00001631 if (Designators[Idx].isArrayDesignator())
1632 ++ExpectedNumSubExprs;
1633 else if (Designators[Idx].isArrayRangeDesignator())
1634 ExpectedNumSubExprs += 2;
1635 }
1636 assert(ExpectedNumSubExprs == NumIndexExprs && "Wrong number of indices!");
1637
1638 // Fill in the subexpressions, including the initializer expression.
1639 child_iterator Child = DIE->child_begin();
1640 *Child++ = Init;
1641 for (unsigned Idx = 0; Idx < NumIndexExprs; ++Idx, ++Child)
1642 *Child = IndexExprs[Idx];
1643
1644 return DIE;
1645}
1646
Douglas Gregord077d752009-04-16 00:55:48 +00001647DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
1648 unsigned NumIndexExprs) {
1649 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
1650 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
1651 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
1652}
1653
1654void DesignatedInitExpr::setDesignators(const Designator *Desigs,
1655 unsigned NumDesigs) {
1656 if (Designators)
1657 delete [] Designators;
1658
1659 Designators = new Designator[NumDesigs];
1660 NumDesignators = NumDesigs;
1661 for (unsigned I = 0; I != NumDesigs; ++I)
1662 Designators[I] = Desigs[I];
1663}
1664
Douglas Gregor05c13a32009-01-22 00:58:24 +00001665SourceRange DesignatedInitExpr::getSourceRange() const {
1666 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001667 Designator &First =
1668 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00001669 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00001670 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00001671 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
1672 else
1673 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
1674 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001675 StartLoc =
1676 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001677 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
1678}
1679
Douglas Gregor05c13a32009-01-22 00:58:24 +00001680Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
1681 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
1682 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1683 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001684 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1685 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1686}
1687
1688Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
1689 assert(D.Kind == Designator::ArrayRangeDesignator &&
1690 "Requires array range designator");
1691 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1692 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001693 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1694 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1695}
1696
1697Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
1698 assert(D.Kind == Designator::ArrayRangeDesignator &&
1699 "Requires array range designator");
1700 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1701 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001702 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1703 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
1704}
1705
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001706/// \brief Replaces the designator at index @p Idx with the series
1707/// of designators in [First, Last).
1708void DesignatedInitExpr::ExpandDesignator(unsigned Idx,
1709 const Designator *First,
1710 const Designator *Last) {
1711 unsigned NumNewDesignators = Last - First;
1712 if (NumNewDesignators == 0) {
1713 std::copy_backward(Designators + Idx + 1,
1714 Designators + NumDesignators,
1715 Designators + Idx);
1716 --NumNewDesignators;
1717 return;
1718 } else if (NumNewDesignators == 1) {
1719 Designators[Idx] = *First;
1720 return;
1721 }
1722
1723 Designator *NewDesignators
1724 = new Designator[NumDesignators - 1 + NumNewDesignators];
1725 std::copy(Designators, Designators + Idx, NewDesignators);
1726 std::copy(First, Last, NewDesignators + Idx);
1727 std::copy(Designators + Idx + 1, Designators + NumDesignators,
1728 NewDesignators + Idx + NumNewDesignators);
1729 delete [] Designators;
1730 Designators = NewDesignators;
1731 NumDesignators = NumDesignators - 1 + NumNewDesignators;
1732}
1733
1734void DesignatedInitExpr::Destroy(ASTContext &C) {
1735 delete [] Designators;
1736 Expr::Destroy(C);
1737}
1738
Douglas Gregor05c13a32009-01-22 00:58:24 +00001739//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00001740// ExprIterator.
1741//===----------------------------------------------------------------------===//
1742
1743Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
1744Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
1745Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
1746const Expr* ConstExprIterator::operator[](size_t idx) const {
1747 return cast<Expr>(I[idx]);
1748}
1749const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
1750const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
1751
1752//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001753// Child Iterators for iterating over subexpressions/substatements
1754//===----------------------------------------------------------------------===//
1755
1756// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001757Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1758Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001759
Steve Naroff7779db42007-11-12 14:29:37 +00001760// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001761Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1762Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00001763
Steve Naroffe3e9add2008-06-02 23:03:37 +00001764// ObjCPropertyRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001765Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1766Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffae784072008-05-30 00:40:33 +00001767
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00001768// ObjCKVCRefExpr
1769Stmt::child_iterator ObjCKVCRefExpr::child_begin() { return &Base; }
1770Stmt::child_iterator ObjCKVCRefExpr::child_end() { return &Base+1; }
1771
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001772// ObjCSuperExpr
1773Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
1774Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
1775
Chris Lattnerd9f69102008-08-10 01:53:14 +00001776// PredefinedExpr
1777Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
1778Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001779
1780// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001781Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1782Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001783
1784// CharacterLiteral
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001785Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek9ac59282007-10-18 23:28:49 +00001786Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001787
1788// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001789Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1790Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001791
Chris Lattner5d661452007-08-26 03:42:43 +00001792// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00001793Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1794Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00001795
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001796// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001797Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1798Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001799
1800// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001801Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1802Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001803
1804// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00001805Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1806Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001807
Sebastian Redl05189992008-11-11 17:56:53 +00001808// SizeOfAlignOfExpr
1809Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
1810 // If this is of a type and the type is a VLA type (and not a typedef), the
1811 // size expression of the VLA needs to be treated as an executable expression.
1812 // Why isn't this weirdness documented better in StmtIterator?
1813 if (isArgumentType()) {
1814 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
1815 getArgumentType().getTypePtr()))
1816 return child_iterator(T);
1817 return child_iterator();
1818 }
Sebastian Redld4575892008-12-03 23:17:54 +00001819 return child_iterator(&Argument.Ex);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001820}
Sebastian Redl05189992008-11-11 17:56:53 +00001821Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
1822 if (isArgumentType())
1823 return child_iterator();
Sebastian Redld4575892008-12-03 23:17:54 +00001824 return child_iterator(&Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001825}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001826
1827// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001828Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001829 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001830}
Ted Kremenek1237c672007-08-24 20:06:47 +00001831Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001832 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001833}
1834
1835// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001836Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001837 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001838}
Ted Kremenek1237c672007-08-24 20:06:47 +00001839Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001840 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001841}
Ted Kremenek1237c672007-08-24 20:06:47 +00001842
1843// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001844Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1845Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001846
Nate Begeman213541a2008-04-18 23:10:10 +00001847// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001848Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1849Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001850
1851// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001852Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1853Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001854
Ted Kremenek1237c672007-08-24 20:06:47 +00001855// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001856Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1857Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001858
1859// BinaryOperator
1860Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001861 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001862}
Ted Kremenek1237c672007-08-24 20:06:47 +00001863Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001864 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001865}
1866
1867// ConditionalOperator
1868Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001869 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001870}
Ted Kremenek1237c672007-08-24 20:06:47 +00001871Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001872 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001873}
1874
1875// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001876Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1877Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001878
Ted Kremenek1237c672007-08-24 20:06:47 +00001879// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001880Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1881Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001882
1883// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001884Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1885 return child_iterator();
1886}
1887
1888Stmt::child_iterator TypesCompatibleExpr::child_end() {
1889 return child_iterator();
1890}
Ted Kremenek1237c672007-08-24 20:06:47 +00001891
1892// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001893Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1894Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001895
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001896// GNUNullExpr
1897Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
1898Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
1899
Eli Friedmand38617c2008-05-14 19:38:39 +00001900// ShuffleVectorExpr
1901Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001902 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00001903}
1904Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001905 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00001906}
1907
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001908// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001909Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
1910Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001911
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001912// InitListExpr
1913Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001914 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001915}
1916Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001917 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001918}
1919
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001920// DesignatedInitExpr
Douglas Gregor05c13a32009-01-22 00:58:24 +00001921Stmt::child_iterator DesignatedInitExpr::child_begin() {
1922 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1923 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001924 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1925}
1926Stmt::child_iterator DesignatedInitExpr::child_end() {
1927 return child_iterator(&*child_begin() + NumSubExprs);
1928}
1929
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001930// ImplicitValueInitExpr
1931Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
1932 return child_iterator();
1933}
1934
1935Stmt::child_iterator ImplicitValueInitExpr::child_end() {
1936 return child_iterator();
1937}
1938
Ted Kremenek1237c672007-08-24 20:06:47 +00001939// ObjCStringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001940Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00001941 return &String;
Ted Kremenek9ac59282007-10-18 23:28:49 +00001942}
1943Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00001944 return &String+1;
Ted Kremenek9ac59282007-10-18 23:28:49 +00001945}
Ted Kremenek1237c672007-08-24 20:06:47 +00001946
1947// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001948Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
1949Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001950
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001951// ObjCSelectorExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001952Stmt::child_iterator ObjCSelectorExpr::child_begin() {
1953 return child_iterator();
1954}
1955Stmt::child_iterator ObjCSelectorExpr::child_end() {
1956 return child_iterator();
1957}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001958
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001959// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001960Stmt::child_iterator ObjCProtocolExpr::child_begin() {
1961 return child_iterator();
1962}
1963Stmt::child_iterator ObjCProtocolExpr::child_end() {
1964 return child_iterator();
1965}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001966
Steve Naroff563477d2007-09-18 23:55:05 +00001967// ObjCMessageExpr
Ted Kremenekea958e572008-05-01 17:26:20 +00001968Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001969 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroff563477d2007-09-18 23:55:05 +00001970}
1971Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001972 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroff563477d2007-09-18 23:55:05 +00001973}
1974
Steve Naroff4eb206b2008-09-03 18:15:37 +00001975// Blocks
Steve Naroff56ee6892008-10-08 17:01:13 +00001976Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
1977Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff4eb206b2008-09-03 18:15:37 +00001978
Ted Kremenek9da13f92008-09-26 23:24:14 +00001979Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
1980Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }