blob: 6bafdf278d82481a1164d404b4e29c41938238ce [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
Sebastian Redl8b0b4752009-05-16 18:50:46 +000030PredefinedExpr* PredefinedExpr::Clone(ASTContext &C) const {
31 return new (C) PredefinedExpr(Loc, getType(), Type);
32}
33
Anders Carlssona135fb42009-03-15 18:34:13 +000034IntegerLiteral* IntegerLiteral::Clone(ASTContext &C) const {
35 return new (C) IntegerLiteral(Value, getType(), Loc);
36}
37
Sebastian Redl8b0b4752009-05-16 18:50:46 +000038CharacterLiteral* CharacterLiteral::Clone(ASTContext &C) const {
39 return new (C) CharacterLiteral(Value, IsWide, getType(), Loc);
40}
41
42FloatingLiteral* FloatingLiteral::Clone(ASTContext &C) const {
43 bool exact = IsExact;
44 return new (C) FloatingLiteral(Value, &exact, getType(), Loc);
45}
46
Douglas Gregord8ac4362009-05-18 22:38:38 +000047ImaginaryLiteral* ImaginaryLiteral::Clone(ASTContext &C) const {
48 // FIXME: Use virtual Clone(), once it is available
49 Expr *ClonedVal = 0;
50 if (const IntegerLiteral *IntLit = dyn_cast<IntegerLiteral>(Val))
51 ClonedVal = IntLit->Clone(C);
52 else
53 ClonedVal = cast<FloatingLiteral>(Val)->Clone(C);
54 return new (C) ImaginaryLiteral(ClonedVal, getType());
55}
56
Sebastian Redl8b0b4752009-05-16 18:50:46 +000057GNUNullExpr* GNUNullExpr::Clone(ASTContext &C) const {
58 return new (C) GNUNullExpr(getType(), TokenLoc);
59}
60
Chris Lattnerda8249e2008-06-07 22:13:43 +000061/// getValueAsApproximateDouble - This returns the value as an inaccurate
62/// double. Note that this may cause loss of precision, but is useful for
63/// debugging dumps, etc.
64double FloatingLiteral::getValueAsApproximateDouble() const {
65 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +000066 bool ignored;
67 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
68 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +000069 return V.convertToDouble();
70}
71
Chris Lattner2085fd62009-02-18 06:40:38 +000072StringLiteral *StringLiteral::Create(ASTContext &C, const char *StrData,
73 unsigned ByteLength, bool Wide,
74 QualType Ty,
Anders Carlssona135fb42009-03-15 18:34:13 +000075 const SourceLocation *Loc,
76 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +000077 // Allocate enough space for the StringLiteral plus an array of locations for
78 // any concatenated string tokens.
79 void *Mem = C.Allocate(sizeof(StringLiteral)+
80 sizeof(SourceLocation)*(NumStrs-1),
81 llvm::alignof<StringLiteral>());
82 StringLiteral *SL = new (Mem) StringLiteral(Ty);
83
Reid Spencer5f016e22007-07-11 17:01:13 +000084 // OPTIMIZE: could allocate this appended to the StringLiteral.
Chris Lattner2085fd62009-02-18 06:40:38 +000085 char *AStrData = new (C, 1) char[ByteLength];
86 memcpy(AStrData, StrData, ByteLength);
87 SL->StrData = AStrData;
88 SL->ByteLength = ByteLength;
89 SL->IsWide = Wide;
90 SL->TokLocs[0] = Loc[0];
91 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +000092
Chris Lattner726e1682009-02-18 05:49:11 +000093 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +000094 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
95 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +000096}
97
Douglas Gregor673ecd62009-04-15 16:35:07 +000098StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
99 void *Mem = C.Allocate(sizeof(StringLiteral)+
100 sizeof(SourceLocation)*(NumStrs-1),
101 llvm::alignof<StringLiteral>());
102 StringLiteral *SL = new (Mem) StringLiteral(QualType());
103 SL->StrData = 0;
104 SL->ByteLength = 0;
105 SL->NumConcatenated = NumStrs;
106 return SL;
107}
108
Anders Carlssona135fb42009-03-15 18:34:13 +0000109StringLiteral* StringLiteral::Clone(ASTContext &C) const {
110 return Create(C, StrData, ByteLength, IsWide, getType(),
111 TokLocs, NumConcatenated);
112}
Chris Lattner726e1682009-02-18 05:49:11 +0000113
Ted Kremenek6e94ef52009-02-06 19:55:15 +0000114void StringLiteral::Destroy(ASTContext &C) {
Ted Kremenek8189cde2009-02-07 01:47:29 +0000115 C.Deallocate(const_cast<char*>(StrData));
Ted Kremenek353ffce2009-02-09 17:10:09 +0000116 this->~StringLiteral();
117 C.Deallocate(this);
Reid Spencer5f016e22007-07-11 17:01:13 +0000118}
119
Douglas Gregor673ecd62009-04-15 16:35:07 +0000120void StringLiteral::setStrData(ASTContext &C, const char *Str, unsigned Len) {
121 if (StrData)
122 C.Deallocate(const_cast<char*>(StrData));
123
124 char *AStrData = new (C, 1) char[Len];
125 memcpy(AStrData, Str, Len);
126 StrData = AStrData;
127 ByteLength = Len;
128}
129
Reid Spencer5f016e22007-07-11 17:01:13 +0000130/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
131/// corresponds to, e.g. "sizeof" or "[pre]++".
132const char *UnaryOperator::getOpcodeStr(Opcode Op) {
133 switch (Op) {
134 default: assert(0 && "Unknown unary operator");
135 case PostInc: return "++";
136 case PostDec: return "--";
137 case PreInc: return "++";
138 case PreDec: return "--";
139 case AddrOf: return "&";
140 case Deref: return "*";
141 case Plus: return "+";
142 case Minus: return "-";
143 case Not: return "~";
144 case LNot: return "!";
145 case Real: return "__real";
146 case Imag: return "__imag";
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 case Extension: return "__extension__";
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000148 case OffsetOf: return "__builtin_offsetof";
Reid Spencer5f016e22007-07-11 17:01:13 +0000149 }
150}
151
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000152UnaryOperator::Opcode
153UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
154 switch (OO) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000155 default: assert(false && "No unary operator for overloaded function");
Chris Lattnerb7beee92009-03-22 00:10:22 +0000156 case OO_PlusPlus: return Postfix ? PostInc : PreInc;
157 case OO_MinusMinus: return Postfix ? PostDec : PreDec;
158 case OO_Amp: return AddrOf;
159 case OO_Star: return Deref;
160 case OO_Plus: return Plus;
161 case OO_Minus: return Minus;
162 case OO_Tilde: return Not;
163 case OO_Exclaim: return LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000164 }
165}
166
167OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
168 switch (Opc) {
169 case PostInc: case PreInc: return OO_PlusPlus;
170 case PostDec: case PreDec: return OO_MinusMinus;
171 case AddrOf: return OO_Amp;
172 case Deref: return OO_Star;
173 case Plus: return OO_Plus;
174 case Minus: return OO_Minus;
175 case Not: return OO_Tilde;
176 case LNot: return OO_Exclaim;
177 default: return OO_None;
178 }
179}
180
181
Reid Spencer5f016e22007-07-11 17:01:13 +0000182//===----------------------------------------------------------------------===//
183// Postfix Operators.
184//===----------------------------------------------------------------------===//
185
Ted Kremenek668bf912009-02-09 20:51:47 +0000186CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, Expr **args,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000187 unsigned numargs, QualType t, SourceLocation rparenloc)
Douglas Gregor898574e2008-12-05 23:32:09 +0000188 : Expr(SC, t,
189 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000190 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000191 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000192
193 SubExprs = new (C) Stmt*[numargs+1];
Douglas Gregorb4609802008-11-14 16:09:21 +0000194 SubExprs[FN] = fn;
195 for (unsigned i = 0; i != numargs; ++i)
196 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000197
Douglas Gregorb4609802008-11-14 16:09:21 +0000198 RParenLoc = rparenloc;
199}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000200
Ted Kremenek668bf912009-02-09 20:51:47 +0000201CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
202 QualType t, SourceLocation rparenloc)
Douglas Gregor898574e2008-12-05 23:32:09 +0000203 : Expr(CallExprClass, t,
204 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000205 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000206 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000207
208 SubExprs = new (C) Stmt*[numargs+1];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000209 SubExprs[FN] = fn;
Reid Spencer5f016e22007-07-11 17:01:13 +0000210 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000211 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000212
Reid Spencer5f016e22007-07-11 17:01:13 +0000213 RParenLoc = rparenloc;
214}
215
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000216CallExpr::CallExpr(ASTContext &C, EmptyShell Empty)
217 : Expr(CallExprClass, Empty), SubExprs(0), NumArgs(0) {
218 SubExprs = new (C) Stmt*[1];
219}
220
Ted Kremenek668bf912009-02-09 20:51:47 +0000221void CallExpr::Destroy(ASTContext& C) {
222 DestroyChildren(C);
223 if (SubExprs) C.Deallocate(SubExprs);
224 this->~CallExpr();
225 C.Deallocate(this);
226}
227
Chris Lattnerd18b3292007-12-28 05:25:02 +0000228/// setNumArgs - This changes the number of arguments present in this call.
229/// Any orphaned expressions are deleted by this, and any new operands are set
230/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000231void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000232 // No change, just return.
233 if (NumArgs == getNumArgs()) return;
234
235 // If shrinking # arguments, just delete the extras and forgot them.
236 if (NumArgs < getNumArgs()) {
237 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000238 getArg(i)->Destroy(C);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000239 this->NumArgs = NumArgs;
240 return;
241 }
242
243 // Otherwise, we are growing the # arguments. New an bigger argument array.
Ted Kremenek55499762008-06-17 02:43:46 +0000244 Stmt **NewSubExprs = new Stmt*[NumArgs+1];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000245 // Copy over args.
246 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
247 NewSubExprs[i] = SubExprs[i];
248 // Null out new args.
249 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
250 NewSubExprs[i] = 0;
251
Douglas Gregor88c9a462009-04-17 21:46:47 +0000252 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000253 SubExprs = NewSubExprs;
254 this->NumArgs = NumArgs;
255}
256
Chris Lattnercb888962008-10-06 05:00:53 +0000257/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
258/// not, return 0.
Douglas Gregor3c385e52009-02-14 18:57:46 +0000259unsigned CallExpr::isBuiltinCall(ASTContext &Context) const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000260 // All simple function calls (e.g. func()) are implicitly cast to pointer to
261 // function. As a result, we try and obtain the DeclRefExpr from the
262 // ImplicitCastExpr.
263 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
264 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000265 return 0;
266
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000267 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
268 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000269 return 0;
270
Anders Carlssonbcba2012008-01-31 02:13:57 +0000271 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
272 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000273 return 0;
274
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000275 if (!FDecl->getIdentifier())
276 return 0;
277
Douglas Gregor3c385e52009-02-14 18:57:46 +0000278 return FDecl->getBuiltinID(Context);
Chris Lattnercb888962008-10-06 05:00:53 +0000279}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000280
Chris Lattnercb888962008-10-06 05:00:53 +0000281
Reid Spencer5f016e22007-07-11 17:01:13 +0000282/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
283/// corresponds to, e.g. "<<=".
284const char *BinaryOperator::getOpcodeStr(Opcode Op) {
285 switch (Op) {
Douglas Gregorbaf53482009-03-12 22:51:37 +0000286 case PtrMemD: return ".*";
287 case PtrMemI: return "->*";
Reid Spencer5f016e22007-07-11 17:01:13 +0000288 case Mul: return "*";
289 case Div: return "/";
290 case Rem: return "%";
291 case Add: return "+";
292 case Sub: return "-";
293 case Shl: return "<<";
294 case Shr: return ">>";
295 case LT: return "<";
296 case GT: return ">";
297 case LE: return "<=";
298 case GE: return ">=";
299 case EQ: return "==";
300 case NE: return "!=";
301 case And: return "&";
302 case Xor: return "^";
303 case Or: return "|";
304 case LAnd: return "&&";
305 case LOr: return "||";
306 case Assign: return "=";
307 case MulAssign: return "*=";
308 case DivAssign: return "/=";
309 case RemAssign: return "%=";
310 case AddAssign: return "+=";
311 case SubAssign: return "-=";
312 case ShlAssign: return "<<=";
313 case ShrAssign: return ">>=";
314 case AndAssign: return "&=";
315 case XorAssign: return "^=";
316 case OrAssign: return "|=";
317 case Comma: return ",";
318 }
Douglas Gregorbaf53482009-03-12 22:51:37 +0000319
320 return "";
Reid Spencer5f016e22007-07-11 17:01:13 +0000321}
322
Douglas Gregor063daf62009-03-13 18:40:31 +0000323BinaryOperator::Opcode
324BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
325 switch (OO) {
Chris Lattnerb7beee92009-03-22 00:10:22 +0000326 default: assert(false && "Not an overloadable binary operator");
Douglas Gregor063daf62009-03-13 18:40:31 +0000327 case OO_Plus: return Add;
328 case OO_Minus: return Sub;
329 case OO_Star: return Mul;
330 case OO_Slash: return Div;
331 case OO_Percent: return Rem;
332 case OO_Caret: return Xor;
333 case OO_Amp: return And;
334 case OO_Pipe: return Or;
335 case OO_Equal: return Assign;
336 case OO_Less: return LT;
337 case OO_Greater: return GT;
338 case OO_PlusEqual: return AddAssign;
339 case OO_MinusEqual: return SubAssign;
340 case OO_StarEqual: return MulAssign;
341 case OO_SlashEqual: return DivAssign;
342 case OO_PercentEqual: return RemAssign;
343 case OO_CaretEqual: return XorAssign;
344 case OO_AmpEqual: return AndAssign;
345 case OO_PipeEqual: return OrAssign;
346 case OO_LessLess: return Shl;
347 case OO_GreaterGreater: return Shr;
348 case OO_LessLessEqual: return ShlAssign;
349 case OO_GreaterGreaterEqual: return ShrAssign;
350 case OO_EqualEqual: return EQ;
351 case OO_ExclaimEqual: return NE;
352 case OO_LessEqual: return LE;
353 case OO_GreaterEqual: return GE;
354 case OO_AmpAmp: return LAnd;
355 case OO_PipePipe: return LOr;
356 case OO_Comma: return Comma;
357 case OO_ArrowStar: return PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +0000358 }
359}
360
361OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
362 static const OverloadedOperatorKind OverOps[] = {
363 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
364 OO_Star, OO_Slash, OO_Percent,
365 OO_Plus, OO_Minus,
366 OO_LessLess, OO_GreaterGreater,
367 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
368 OO_EqualEqual, OO_ExclaimEqual,
369 OO_Amp,
370 OO_Caret,
371 OO_Pipe,
372 OO_AmpAmp,
373 OO_PipePipe,
374 OO_Equal, OO_StarEqual,
375 OO_SlashEqual, OO_PercentEqual,
376 OO_PlusEqual, OO_MinusEqual,
377 OO_LessLessEqual, OO_GreaterGreaterEqual,
378 OO_AmpEqual, OO_CaretEqual,
379 OO_PipeEqual,
380 OO_Comma
381 };
382 return OverOps[Opc];
383}
384
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000385InitListExpr::InitListExpr(SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +0000386 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +0000387 SourceLocation rbraceloc)
Steve Naroffc5ae8992008-05-01 02:04:18 +0000388 : Expr(InitListExprClass, QualType()),
Douglas Gregor0bb76892009-01-29 16:53:55 +0000389 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0),
Douglas Gregora9c87802009-01-29 19:42:23 +0000390 UnionFieldInit(0), HadArrayRangeDesignator(false) {
Chris Lattner418f6c72008-10-26 23:43:26 +0000391
392 InitExprs.insert(InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000393}
Reid Spencer5f016e22007-07-11 17:01:13 +0000394
Douglas Gregorfa219202009-03-20 23:58:33 +0000395void InitListExpr::reserveInits(unsigned NumInits) {
396 if (NumInits > InitExprs.size())
397 InitExprs.reserve(NumInits);
398}
399
Douglas Gregor4c678342009-01-28 21:54:33 +0000400void InitListExpr::resizeInits(ASTContext &Context, unsigned NumInits) {
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000401 for (unsigned Idx = NumInits, LastIdx = InitExprs.size();
Daniel Dunbarf592c922009-02-16 22:42:44 +0000402 Idx < LastIdx; ++Idx)
Douglas Gregor06863682009-03-20 23:38:03 +0000403 InitExprs[Idx]->Destroy(Context);
Douglas Gregor4c678342009-01-28 21:54:33 +0000404 InitExprs.resize(NumInits, 0);
405}
406
407Expr *InitListExpr::updateInit(unsigned Init, Expr *expr) {
408 if (Init >= InitExprs.size()) {
409 InitExprs.insert(InitExprs.end(), Init - InitExprs.size() + 1, 0);
410 InitExprs.back() = expr;
411 return 0;
412 }
413
414 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
415 InitExprs[Init] = expr;
416 return Result;
417}
418
Steve Naroffbfdcae62008-09-04 15:31:07 +0000419/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000420///
421const FunctionType *BlockExpr::getFunctionType() const {
422 return getType()->getAsBlockPointerType()->
423 getPointeeType()->getAsFunctionType();
424}
425
Steve Naroff56ee6892008-10-08 17:01:13 +0000426SourceLocation BlockExpr::getCaretLocation() const {
427 return TheBlock->getCaretLocation();
428}
Douglas Gregor72971342009-04-18 00:02:19 +0000429const Stmt *BlockExpr::getBody() const {
430 return TheBlock->getBody();
431}
432Stmt *BlockExpr::getBody() {
433 return TheBlock->getBody();
434}
Steve Naroff56ee6892008-10-08 17:01:13 +0000435
436
Reid Spencer5f016e22007-07-11 17:01:13 +0000437//===----------------------------------------------------------------------===//
438// Generic Expression Routines
439//===----------------------------------------------------------------------===//
440
Chris Lattner026dc962009-02-14 07:37:35 +0000441/// isUnusedResultAWarning - Return true if this immediate expression should
442/// be warned about if the result is unused. If so, fill in Loc and Ranges
443/// with location to warn on and the source range[s] to report with the
444/// warning.
445bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
446 SourceRange &R2) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +0000447 // Don't warn if the expr is type dependent. The type could end up
448 // instantiating to void.
449 if (isTypeDependent())
450 return false;
451
Reid Spencer5f016e22007-07-11 17:01:13 +0000452 switch (getStmtClass()) {
453 default:
Chris Lattner026dc962009-02-14 07:37:35 +0000454 Loc = getExprLoc();
455 R1 = getSourceRange();
456 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000457 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000458 return cast<ParenExpr>(this)->getSubExpr()->
459 isUnusedResultAWarning(Loc, R1, R2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000460 case UnaryOperatorClass: {
461 const UnaryOperator *UO = cast<UnaryOperator>(this);
462
463 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000464 default: break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000465 case UnaryOperator::PostInc:
466 case UnaryOperator::PostDec:
467 case UnaryOperator::PreInc:
Chris Lattner026dc962009-02-14 07:37:35 +0000468 case UnaryOperator::PreDec: // ++/--
469 return false; // Not a warning.
Reid Spencer5f016e22007-07-11 17:01:13 +0000470 case UnaryOperator::Deref:
471 // Dereferencing a volatile pointer is a side-effect.
Chris Lattner026dc962009-02-14 07:37:35 +0000472 if (getType().isVolatileQualified())
473 return false;
474 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000475 case UnaryOperator::Real:
476 case UnaryOperator::Imag:
477 // accessing a piece of a volatile complex is a side-effect.
Chris Lattner026dc962009-02-14 07:37:35 +0000478 if (UO->getSubExpr()->getType().isVolatileQualified())
479 return false;
480 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000481 case UnaryOperator::Extension:
Chris Lattner026dc962009-02-14 07:37:35 +0000482 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000483 }
Chris Lattner026dc962009-02-14 07:37:35 +0000484 Loc = UO->getOperatorLoc();
485 R1 = UO->getSubExpr()->getSourceRange();
486 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000487 }
Chris Lattnere7716e62007-12-01 06:07:34 +0000488 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000489 const BinaryOperator *BO = cast<BinaryOperator>(this);
490 // Consider comma to have side effects if the LHS or RHS does.
491 if (BO->getOpcode() == BinaryOperator::Comma)
492 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2) ||
493 BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattnere7716e62007-12-01 06:07:34 +0000494
Chris Lattner026dc962009-02-14 07:37:35 +0000495 if (BO->isAssignmentOp())
496 return false;
497 Loc = BO->getOperatorLoc();
498 R1 = BO->getLHS()->getSourceRange();
499 R2 = BO->getRHS()->getSourceRange();
500 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +0000501 }
Chris Lattnereb14fe82007-08-25 02:00:02 +0000502 case CompoundAssignOperatorClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000503 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000504
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000505 case ConditionalOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000506 // The condition must be evaluated, but if either the LHS or RHS is a
507 // warning, warn about them.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000508 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Mike Stumpbefbcf42009-02-27 03:16:57 +0000509 if (Exp->getLHS() && Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2))
Chris Lattner026dc962009-02-14 07:37:35 +0000510 return true;
511 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000512 }
513
Reid Spencer5f016e22007-07-11 17:01:13 +0000514 case MemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000515 // If the base pointer or element is to a volatile pointer/field, accessing
516 // it is a side effect.
517 if (getType().isVolatileQualified())
518 return false;
519 Loc = cast<MemberExpr>(this)->getMemberLoc();
520 R1 = SourceRange(Loc, Loc);
521 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
522 return true;
523
Reid Spencer5f016e22007-07-11 17:01:13 +0000524 case ArraySubscriptExprClass:
525 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +0000526 // it is a side effect.
527 if (getType().isVolatileQualified())
528 return false;
529 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
530 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
531 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
532 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +0000533
Reid Spencer5f016e22007-07-11 17:01:13 +0000534 case CallExprClass:
Eli Friedman852871a2009-04-29 16:35:53 +0000535 case CXXOperatorCallExprClass:
536 case CXXMemberCallExprClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000537 // If this is a direct call, get the callee.
538 const CallExpr *CE = cast<CallExpr>(this);
539 const Expr *CalleeExpr = CE->getCallee()->IgnoreParenCasts();
540 if (const DeclRefExpr *CalleeDRE = dyn_cast<DeclRefExpr>(CalleeExpr)) {
541 // If the callee has attribute pure, const, or warn_unused_result, warn
542 // about it. void foo() { strlen("bar"); } should warn.
543 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeDRE->getDecl()))
544 if (FD->getAttr<WarnUnusedResultAttr>() ||
545 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
546 Loc = CE->getCallee()->getLocStart();
547 R1 = CE->getCallee()->getSourceRange();
548
549 if (unsigned NumArgs = CE->getNumArgs())
550 R2 = SourceRange(CE->getArg(0)->getLocStart(),
551 CE->getArg(NumArgs-1)->getLocEnd());
552 return true;
553 }
554 }
555 return false;
556 }
Chris Lattnera9c01022007-09-26 22:06:30 +0000557 case ObjCMessageExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000558 return false;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000559 case StmtExprClass: {
560 // Statement exprs don't logically have side effects themselves, but are
561 // sometimes used in macros in ways that give them a type that is unused.
562 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
563 // however, if the result of the stmt expr is dead, we don't want to emit a
564 // warning.
565 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
566 if (!CS->body_empty())
567 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Chris Lattner026dc962009-02-14 07:37:35 +0000568 return E->isUnusedResultAWarning(Loc, R1, R2);
569
570 Loc = cast<StmtExpr>(this)->getLParenLoc();
571 R1 = getSourceRange();
572 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000573 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000574 case CStyleCastExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000575 // If this is a cast to void, check the operand. Otherwise, the result of
576 // the cast is unused.
577 if (getType()->isVoidType())
578 return cast<CastExpr>(this)->getSubExpr()->isUnusedResultAWarning(Loc,
579 R1, R2);
580 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
581 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
582 return true;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000583 case CXXFunctionalCastExprClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000584 // If this is a cast to void, check the operand. Otherwise, the result of
585 // the cast is unused.
586 if (getType()->isVoidType())
Chris Lattner026dc962009-02-14 07:37:35 +0000587 return cast<CastExpr>(this)->getSubExpr()->isUnusedResultAWarning(Loc,
588 R1, R2);
589 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
590 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
591 return true;
592
Eli Friedman4be1f472008-05-19 21:24:43 +0000593 case ImplicitCastExprClass:
594 // Check the operand, since implicit casts are inserted by Sema
Chris Lattner026dc962009-02-14 07:37:35 +0000595 return cast<ImplicitCastExpr>(this)
596 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Eli Friedman4be1f472008-05-19 21:24:43 +0000597
Chris Lattner04421082008-04-08 04:40:51 +0000598 case CXXDefaultArgExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000599 return cast<CXXDefaultArgExpr>(this)
600 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000601
602 case CXXNewExprClass:
603 // FIXME: In theory, there might be new expressions that don't have side
604 // effects (e.g. a placement new with an uninitialized POD).
605 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000606 return false;
Anders Carlsson6b1d2832009-05-17 21:11:30 +0000607 case CXXExprWithTemporariesClass:
608 return cast<CXXExprWithTemporaries>(this)
609 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000610 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000611}
612
Douglas Gregorba7e2102008-10-22 15:04:37 +0000613/// DeclCanBeLvalue - Determine whether the given declaration can be
614/// an lvalue. This is a helper routine for isLvalue.
615static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000616 // C++ [temp.param]p6:
617 // A non-type non-reference template-parameter is not an lvalue.
618 if (const NonTypeTemplateParmDecl *NTTParm
619 = dyn_cast<NonTypeTemplateParmDecl>(Decl))
620 return NTTParm->getType()->isReferenceType();
621
Douglas Gregor44b43212008-12-11 16:49:14 +0000622 return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) ||
Douglas Gregorba7e2102008-10-22 15:04:37 +0000623 // C++ 3.10p2: An lvalue refers to an object or function.
624 (Ctx.getLangOptions().CPlusPlus &&
625 (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl)));
626}
627
Reid Spencer5f016e22007-07-11 17:01:13 +0000628/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
629/// incomplete type other than void. Nonarray expressions that can be lvalues:
630/// - name, where name must be a variable
631/// - e[i]
632/// - (e), where e must be an lvalue
633/// - e.name, where e must be an lvalue
634/// - e->name
635/// - *e, the type of e cannot be a function type
636/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +0000637/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000638/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000639///
Chris Lattner28be73f2008-07-26 21:30:36 +0000640Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Eli Friedman53202852009-05-03 22:36:05 +0000641 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
642
643 isLvalueResult Res = isLvalueInternal(Ctx);
644 if (Res != LV_Valid || Ctx.getLangOptions().CPlusPlus)
645 return Res;
646
Douglas Gregor98cd5992008-10-21 23:43:52 +0000647 // first, check the type (C99 6.3.2.1). Expressions with function
648 // type in C are not lvalues, but they can be lvalues in C++.
Eli Friedman53202852009-05-03 22:36:05 +0000649 if (TR->isFunctionType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000650 return LV_NotObjectType;
651
Steve Naroffacb818a2008-02-10 01:39:04 +0000652 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattner28be73f2008-07-26 21:30:36 +0000653 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +0000654 return LV_IncompleteVoidType;
655
Eli Friedman53202852009-05-03 22:36:05 +0000656 return LV_Valid;
657}
Bill Wendling08ad47c2007-07-17 03:52:31 +0000658
Eli Friedman53202852009-05-03 22:36:05 +0000659// Check whether the expression can be sanely treated like an l-value
660Expr::isLvalueResult Expr::isLvalueInternal(ASTContext &Ctx) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000661 switch (getStmtClass()) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000662 case StringLiteralClass: // C99 6.5.1p4
663 case ObjCEncodeExprClass: // @encode behaves like its string in every way.
Anders Carlsson7323a622007-11-30 22:47:59 +0000664 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000665 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
666 // For vectors, make sure base is an lvalue (i.e. not a function call).
667 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner28be73f2008-07-26 21:30:36 +0000668 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000669 return LV_Valid;
Douglas Gregor1a49af92009-01-06 05:10:23 +0000670 case DeclRefExprClass:
671 case QualifiedDeclRefExprClass: { // C99 6.5.1p2
Douglas Gregorba7e2102008-10-22 15:04:37 +0000672 const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
673 if (DeclCanBeLvalue(RefdDecl, Ctx))
Reid Spencer5f016e22007-07-11 17:01:13 +0000674 return LV_Valid;
675 break;
Chris Lattner41110242008-06-17 18:05:57 +0000676 }
Steve Naroffdd972f22008-09-05 22:11:13 +0000677 case BlockDeclRefExprClass: {
678 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
Steve Naroff4f6a7d72008-09-26 14:41:28 +0000679 if (isa<VarDecl>(BDR->getDecl()))
Steve Naroffdd972f22008-09-05 22:11:13 +0000680 return LV_Valid;
681 break;
682 }
Douglas Gregor86f19402008-12-20 23:49:58 +0000683 case MemberExprClass: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000684 const MemberExpr *m = cast<MemberExpr>(this);
Douglas Gregor86f19402008-12-20 23:49:58 +0000685 if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4:
686 NamedDecl *Member = m->getMemberDecl();
687 // C++ [expr.ref]p4:
688 // If E2 is declared to have type "reference to T", then E1.E2
689 // is an lvalue.
690 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
691 if (Value->getType()->isReferenceType())
692 return LV_Valid;
693
694 // -- If E2 is a static data member [...] then E1.E2 is an lvalue.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000695 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
Douglas Gregor86f19402008-12-20 23:49:58 +0000696 return LV_Valid;
697
698 // -- If E2 is a non-static data member [...]. If E1 is an
699 // lvalue, then E1.E2 is an lvalue.
700 if (isa<FieldDecl>(Member))
701 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
702
703 // -- If it refers to a static member function [...], then
704 // E1.E2 is an lvalue.
705 // -- Otherwise, if E1.E2 refers to a non-static member
706 // function [...], then E1.E2 is not an lvalue.
707 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
708 return Method->isStatic()? LV_Valid : LV_MemberFunction;
709
710 // -- If E2 is a member enumerator [...], the expression E1.E2
711 // is not an lvalue.
712 if (isa<EnumConstantDecl>(Member))
713 return LV_InvalidExpression;
714
715 // Not an lvalue.
716 return LV_InvalidExpression;
717 }
718
719 // C99 6.5.2.3p4
Chris Lattner28be73f2008-07-26 21:30:36 +0000720 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000721 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000722 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000723 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +0000724 return LV_Valid; // C99 6.5.3p4
725
726 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattnerbaf0d662008-07-25 18:07:19 +0000727 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
728 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner28be73f2008-07-26 21:30:36 +0000729 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Douglas Gregor74253732008-11-19 15:42:04 +0000730
731 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1
732 (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc ||
733 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec))
734 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000735 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000736 case ImplicitCastExprClass:
737 return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid
738 : LV_InvalidExpression;
Reid Spencer5f016e22007-07-11 17:01:13 +0000739 case ParenExprClass: // C99 6.5.1p5
Chris Lattner28be73f2008-07-26 21:30:36 +0000740 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000741 case BinaryOperatorClass:
742 case CompoundAssignOperatorClass: {
743 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
Douglas Gregor337c6b92008-11-19 17:17:41 +0000744
745 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1
746 BinOp->getOpcode() == BinaryOperator::Comma)
747 return BinOp->getRHS()->isLvalue(Ctx);
748
Sebastian Redl22460502009-02-07 00:15:38 +0000749 // C++ [expr.mptr.oper]p6
750 if ((BinOp->getOpcode() == BinaryOperator::PtrMemD ||
751 BinOp->getOpcode() == BinaryOperator::PtrMemI) &&
752 !BinOp->getType()->isFunctionType())
753 return BinOp->getLHS()->isLvalue(Ctx);
754
Douglas Gregorbf3af052008-11-13 20:12:29 +0000755 if (!BinOp->isAssignmentOp())
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000756 return LV_InvalidExpression;
757
Douglas Gregorbf3af052008-11-13 20:12:29 +0000758 if (Ctx.getLangOptions().CPlusPlus)
759 // C++ [expr.ass]p1:
760 // The result of an assignment operation [...] is an lvalue.
761 return LV_Valid;
762
763
764 // C99 6.5.16:
765 // An assignment expression [...] is not an lvalue.
766 return LV_InvalidExpression;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000767 }
Douglas Gregorb4609802008-11-14 16:09:21 +0000768 case CallExprClass:
Douglas Gregor88a35142008-12-22 05:46:06 +0000769 case CXXOperatorCallExprClass:
770 case CXXMemberCallExprClass: {
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000771 // C++0x [expr.call]p10
Douglas Gregor9d293df2008-10-28 00:22:11 +0000772 // A function call is an lvalue if and only if the result type
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000773 // is an lvalue reference.
Douglas Gregor27c8dc02008-10-29 00:13:59 +0000774 QualType CalleeType = cast<CallExpr>(this)->getCallee()->getType();
Douglas Gregor9d293df2008-10-28 00:22:11 +0000775 if (const PointerType *FnTypePtr = CalleeType->getAsPointerType())
Douglas Gregor88a35142008-12-22 05:46:06 +0000776 CalleeType = FnTypePtr->getPointeeType();
777 if (const FunctionType *FnType = CalleeType->getAsFunctionType())
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000778 if (FnType->getResultType()->isLValueReferenceType())
Douglas Gregor88a35142008-12-22 05:46:06 +0000779 return LV_Valid;
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000780
Douglas Gregor9d293df2008-10-28 00:22:11 +0000781 break;
782 }
Steve Naroffe6386392007-12-05 04:00:10 +0000783 case CompoundLiteralExprClass: // C99 6.5.2.5p5
784 return LV_Valid;
Chris Lattner670a62c2008-12-12 05:35:08 +0000785 case ChooseExprClass:
786 // __builtin_choose_expr is an lvalue if the selected operand is.
Eli Friedman79769322009-03-04 05:52:32 +0000787 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->isLvalue(Ctx);
Nate Begeman213541a2008-04-18 23:10:10 +0000788 case ExtVectorElementExprClass:
789 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +0000790 return LV_DuplicateVectorComponents;
791 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +0000792 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
793 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +0000794 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
795 return LV_Valid;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000796 case ObjCKVCRefExprClass: // FIXME: check if read-only property.
Chris Lattner670a62c2008-12-12 05:35:08 +0000797 return LV_Valid;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000798 case PredefinedExprClass:
Douglas Gregor796da182008-11-04 14:32:21 +0000799 return LV_Valid;
Chris Lattner04421082008-04-08 04:40:51 +0000800 case CXXDefaultArgExprClass:
Chris Lattner28be73f2008-07-26 21:30:36 +0000801 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Argyrios Kyrtzidis24b41fa2008-09-11 04:22:26 +0000802 case CXXConditionDeclExprClass:
803 return LV_Valid;
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000804 case CStyleCastExprClass:
Douglas Gregor9d293df2008-10-28 00:22:11 +0000805 case CXXFunctionalCastExprClass:
806 case CXXStaticCastExprClass:
807 case CXXDynamicCastExprClass:
808 case CXXReinterpretCastExprClass:
809 case CXXConstCastExprClass:
810 // The result of an explicit cast is an lvalue if the type we are
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000811 // casting to is an lvalue reference type. See C++ [expr.cast]p1,
Douglas Gregor9d293df2008-10-28 00:22:11 +0000812 // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2,
813 // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000814 if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->
815 isLValueReferenceType())
Douglas Gregor9d293df2008-10-28 00:22:11 +0000816 return LV_Valid;
817 break;
Sebastian Redlc42e1182008-11-11 11:37:55 +0000818 case CXXTypeidExprClass:
819 // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ...
820 return LV_Valid;
Sebastian Redl76458502009-04-17 16:30:52 +0000821 case ConditionalOperatorClass: {
822 // Complicated handling is only for C++.
823 if (!Ctx.getLangOptions().CPlusPlus)
824 return LV_InvalidExpression;
825
826 // Sema should have taken care to ensure that a CXXTemporaryObjectExpr is
827 // everywhere there's an object converted to an rvalue. Also, any other
828 // casts should be wrapped by ImplicitCastExprs. There's just the special
829 // case involving throws to work out.
830 const ConditionalOperator *Cond = cast<ConditionalOperator>(this);
831 Expr *LHS = Cond->getLHS();
832 Expr *RHS = Cond->getRHS();
833 // C++0x 5.16p2
834 // If either the second or the third operand has type (cv) void, [...]
835 // the result [...] is an rvalue.
836 if (LHS->getType()->isVoidType() || RHS->getType()->isVoidType())
837 return LV_InvalidExpression;
838
839 // Both sides must be lvalues for the result to be an lvalue.
840 if (LHS->isLvalue(Ctx) != LV_Valid || RHS->isLvalue(Ctx) != LV_Valid)
841 return LV_InvalidExpression;
842
843 // That's it.
844 return LV_Valid;
845 }
846
Reid Spencer5f016e22007-07-11 17:01:13 +0000847 default:
848 break;
849 }
850 return LV_InvalidExpression;
851}
852
853/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
854/// does not have an incomplete type, does not have a const-qualified type, and
855/// if it is a structure or union, does not have any member (including,
856/// recursively, any member or element of all contained aggregates or unions)
857/// with a const-qualified type.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000858Expr::isModifiableLvalueResult
859Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
Chris Lattner28be73f2008-07-26 21:30:36 +0000860 isLvalueResult lvalResult = isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000861
862 switch (lvalResult) {
Douglas Gregorae8d4672008-10-22 00:03:08 +0000863 case LV_Valid:
864 // C++ 3.10p11: Functions cannot be modified, but pointers to
865 // functions can be modifiable.
866 if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
867 return MLV_NotObjectType;
868 break;
869
Reid Spencer5f016e22007-07-11 17:01:13 +0000870 case LV_NotObjectType: return MLV_NotObjectType;
871 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +0000872 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattnerca354fa2008-11-17 19:51:54 +0000873 case LV_InvalidExpression:
874 // If the top level is a C-style cast, and the subexpression is a valid
875 // lvalue, then this is probably a use of the old-school "cast as lvalue"
876 // GCC extension. We don't support it, but we want to produce good
877 // diagnostics when it happens so that the user knows why.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000878 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(IgnoreParens())) {
879 if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) {
880 if (Loc)
881 *Loc = CE->getLParenLoc();
Chris Lattnerca354fa2008-11-17 19:51:54 +0000882 return MLV_LValueCast;
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000883 }
884 }
Chris Lattnerca354fa2008-11-17 19:51:54 +0000885 return MLV_InvalidExpression;
Douglas Gregor86f19402008-12-20 23:49:58 +0000886 case LV_MemberFunction: return MLV_MemberFunction;
Reid Spencer5f016e22007-07-11 17:01:13 +0000887 }
Eli Friedman04831aa2009-03-22 23:26:56 +0000888
889 // The following is illegal:
890 // void takeclosure(void (^C)(void));
891 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
892 //
Chris Lattner7fd09952009-03-23 17:57:53 +0000893 if (isa<BlockDeclRefExpr>(this)) {
Eli Friedman04831aa2009-03-22 23:26:56 +0000894 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
895 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
896 return MLV_NotBlockQualified;
897 }
898
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000899 QualType CT = Ctx.getCanonicalType(getType());
900
901 if (CT.isConstQualified())
Reid Spencer5f016e22007-07-11 17:01:13 +0000902 return MLV_ConstQualified;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000903 if (CT->isArrayType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000904 return MLV_ArrayType;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000905 if (CT->isIncompleteType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000906 return MLV_IncompleteType;
907
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000908 if (const RecordType *r = CT->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000909 if (r->hasConstFields())
910 return MLV_ConstQualified;
911 }
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +0000912
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000913 // Assigning to an 'implicit' property?
Chris Lattner7fd09952009-03-23 17:57:53 +0000914 else if (isa<ObjCKVCRefExpr>(this)) {
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000915 const ObjCKVCRefExpr* KVCExpr = cast<ObjCKVCRefExpr>(this);
916 if (KVCExpr->getSetterMethod() == 0)
917 return MLV_NoSetterProperty;
918 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000919 return MLV_Valid;
920}
921
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000922/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner4cc62712007-11-27 21:35:27 +0000923/// duration. This means that the address of this expression is a link-time
924/// constant.
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000925bool Expr::hasGlobalStorage() const {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000926 switch (getStmtClass()) {
927 default:
928 return false;
Steve Naroff3aaa4822009-04-16 19:02:57 +0000929 case BlockExprClass:
930 return true;
Chris Lattner4cc62712007-11-27 21:35:27 +0000931 case ParenExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000932 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner4cc62712007-11-27 21:35:27 +0000933 case ImplicitCastExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000934 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffe9b12192008-01-14 18:19:28 +0000935 case CompoundLiteralExprClass:
936 return cast<CompoundLiteralExpr>(this)->isFileScope();
Douglas Gregor1a49af92009-01-06 05:10:23 +0000937 case DeclRefExprClass:
938 case QualifiedDeclRefExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000939 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
940 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000941 return VD->hasGlobalStorage();
Seo Sanghyeon63f067f2008-04-04 09:45:30 +0000942 if (isa<FunctionDecl>(D))
943 return true;
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000944 return false;
945 }
Chris Lattnerfb708062007-11-28 04:30:09 +0000946 case MemberExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000947 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000948 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerfb708062007-11-28 04:30:09 +0000949 }
Chris Lattner4cc62712007-11-27 21:35:27 +0000950 case ArraySubscriptExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000951 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattnerd9f69102008-08-10 01:53:14 +0000952 case PredefinedExprClass:
Chris Lattnerfa28b302008-01-12 08:14:25 +0000953 return true;
Chris Lattner04421082008-04-08 04:40:51 +0000954 case CXXDefaultArgExprClass:
955 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000956 }
957}
958
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000959/// isOBJCGCCandidate - Check if an expression is objc gc'able.
960///
961bool Expr::isOBJCGCCandidate() const {
962 switch (getStmtClass()) {
963 default:
964 return false;
965 case ObjCIvarRefExprClass:
966 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000967 case Expr::UnaryOperatorClass:
968 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate();
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000969 case ParenExprClass:
970 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate();
971 case ImplicitCastExprClass:
972 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate();
Fariborz Jahanian06b89122009-05-05 23:28:21 +0000973 case CStyleCastExprClass:
974 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate();
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000975 case DeclRefExprClass:
976 case QualifiedDeclRefExprClass: {
977 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
978 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
979 return VD->hasGlobalStorage();
980 return false;
981 }
982 case MemberExprClass: {
983 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanian06b89122009-05-05 23:28:21 +0000984 return M->getBase()->isOBJCGCCandidate();
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000985 }
986 case ArraySubscriptExprClass:
987 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate();
988 }
989}
Ted Kremenek4e99a5f2008-01-17 16:57:34 +0000990Expr* Expr::IgnoreParens() {
991 Expr* E = this;
992 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
993 E = P->getSubExpr();
994
995 return E;
996}
997
Chris Lattner56f34942008-02-13 01:02:39 +0000998/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
999/// or CastExprs or ImplicitCastExprs, returning their operand.
1000Expr *Expr::IgnoreParenCasts() {
1001 Expr *E = this;
1002 while (true) {
1003 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
1004 E = P->getSubExpr();
1005 else if (CastExpr *P = dyn_cast<CastExpr>(E))
1006 E = P->getSubExpr();
Chris Lattner56f34942008-02-13 01:02:39 +00001007 else
1008 return E;
1009 }
1010}
1011
Chris Lattnerecdd8412009-03-13 17:28:01 +00001012/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
1013/// value (including ptr->int casts of the same size). Strip off any
1014/// ParenExpr or CastExprs, returning their operand.
1015Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
1016 Expr *E = this;
1017 while (true) {
1018 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
1019 E = P->getSubExpr();
1020 continue;
1021 }
1022
1023 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
1024 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
1025 // ptr<->int casts of the same width. We also ignore all identify casts.
1026 Expr *SE = P->getSubExpr();
1027
1028 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
1029 E = SE;
1030 continue;
1031 }
1032
1033 if ((E->getType()->isPointerType() || E->getType()->isIntegralType()) &&
1034 (SE->getType()->isPointerType() || SE->getType()->isIntegralType()) &&
1035 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1036 E = SE;
1037 continue;
1038 }
1039 }
1040
1041 return E;
1042 }
1043}
1044
1045
Douglas Gregor898574e2008-12-05 23:32:09 +00001046/// hasAnyTypeDependentArguments - Determines if any of the expressions
1047/// in Exprs is type-dependent.
1048bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1049 for (unsigned I = 0; I < NumExprs; ++I)
1050 if (Exprs[I]->isTypeDependent())
1051 return true;
1052
1053 return false;
1054}
1055
1056/// hasAnyValueDependentArguments - Determines if any of the expressions
1057/// in Exprs is value-dependent.
1058bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1059 for (unsigned I = 0; I < NumExprs; ++I)
1060 if (Exprs[I]->isValueDependent())
1061 return true;
1062
1063 return false;
1064}
1065
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001066bool Expr::isConstantInitializer(ASTContext &Ctx) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001067 // This function is attempting whether an expression is an initializer
1068 // which can be evaluated at compile-time. isEvaluatable handles most
1069 // of the cases, but it can't deal with some initializer-specific
1070 // expressions, and it can't deal with aggregates; we deal with those here,
1071 // and fall back to isEvaluatable for the other cases.
1072
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001073 // FIXME: This function assumes the variable being assigned to
1074 // isn't a reference type!
1075
Anders Carlssone8a32b82008-11-24 05:23:59 +00001076 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001077 default: break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001078 case StringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001079 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00001080 return true;
Nate Begeman59b5da62009-01-18 03:20:47 +00001081 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001082 // This handles gcc's extension that allows global initializers like
1083 // "struct x {int x;} x = (struct x) {};".
1084 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00001085 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001086 return Exp->isConstantInitializer(Ctx);
Nate Begeman59b5da62009-01-18 03:20:47 +00001087 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00001088 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001089 // FIXME: This doesn't deal with fields with reference types correctly.
1090 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1091 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00001092 const InitListExpr *Exp = cast<InitListExpr>(this);
1093 unsigned numInits = Exp->getNumInits();
1094 for (unsigned i = 0; i < numInits; i++) {
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001095 if (!Exp->getInit(i)->isConstantInitializer(Ctx))
Anders Carlssone8a32b82008-11-24 05:23:59 +00001096 return false;
1097 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001098 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001099 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001100 case ImplicitValueInitExprClass:
1101 return true;
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001102 case ParenExprClass: {
1103 return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1104 }
1105 case UnaryOperatorClass: {
1106 const UnaryOperator* Exp = cast<UnaryOperator>(this);
1107 if (Exp->getOpcode() == UnaryOperator::Extension)
1108 return Exp->getSubExpr()->isConstantInitializer(Ctx);
1109 break;
1110 }
Chris Lattner81045d82009-04-21 05:19:11 +00001111 case ImplicitCastExprClass:
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001112 case CStyleCastExprClass:
1113 // Handle casts with a destination that's a struct or union; this
1114 // deals with both the gcc no-op struct cast extension and the
1115 // cast-to-union extension.
1116 if (getType()->isRecordType())
1117 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1118 break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001119 }
1120
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001121 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00001122}
1123
Reid Spencer5f016e22007-07-11 17:01:13 +00001124/// isIntegerConstantExpr - this recursive routine will test if an expression is
Eli Friedmane28d7192009-02-26 09:29:13 +00001125/// an integer constant expression.
Reid Spencer5f016e22007-07-11 17:01:13 +00001126
1127/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
1128/// comma, etc
1129///
Chris Lattnerce0afc02007-07-18 05:21:20 +00001130/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
1131/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
1132/// cast+dereference.
Daniel Dunbar2d6744f2009-02-18 00:47:45 +00001133
Eli Friedmane28d7192009-02-26 09:29:13 +00001134// CheckICE - This function does the fundamental ICE checking: the returned
1135// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
1136// Note that to reduce code duplication, this helper does no evaluation
1137// itself; the caller checks whether the expression is evaluatable, and
1138// in the rare cases where CheckICE actually cares about the evaluated
1139// value, it calls into Evalute.
1140//
1141// Meanings of Val:
1142// 0: This expression is an ICE if it can be evaluated by Evaluate.
1143// 1: This expression is not an ICE, but if it isn't evaluated, it's
1144// a legal subexpression for an ICE. This return value is used to handle
1145// the comma operator in C99 mode.
1146// 2: This expression is not an ICE, and is not a legal subexpression for one.
1147
1148struct ICEDiag {
1149 unsigned Val;
1150 SourceLocation Loc;
1151
1152 public:
1153 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
1154 ICEDiag() : Val(0) {}
1155};
1156
1157ICEDiag NoDiag() { return ICEDiag(); }
1158
Eli Friedman60ce9632009-02-27 04:07:58 +00001159static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
1160 Expr::EvalResult EVResult;
1161 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1162 !EVResult.Val.isInt()) {
1163 return ICEDiag(2, E->getLocStart());
1164 }
1165 return NoDiag();
1166}
1167
Eli Friedmane28d7192009-02-26 09:29:13 +00001168static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
Anders Carlssonc3082412009-03-14 00:33:21 +00001169 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001170 if (!E->getType()->isIntegralType()) {
1171 return ICEDiag(2, E->getLocStart());
Eli Friedmana6afa762008-11-13 06:09:17 +00001172 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001173
1174 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001175 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001176 return ICEDiag(2, E->getLocStart());
1177 case Expr::ParenExprClass:
1178 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
1179 case Expr::IntegerLiteralClass:
1180 case Expr::CharacterLiteralClass:
1181 case Expr::CXXBoolLiteralExprClass:
1182 case Expr::CXXZeroInitValueExprClass:
1183 case Expr::TypesCompatibleExprClass:
1184 case Expr::UnaryTypeTraitExprClass:
1185 return NoDiag();
1186 case Expr::CallExprClass:
1187 case Expr::CXXOperatorCallExprClass: {
1188 const CallExpr *CE = cast<CallExpr>(E);
Eli Friedman60ce9632009-02-27 04:07:58 +00001189 if (CE->isBuiltinCall(Ctx))
1190 return CheckEvalInICE(E, Ctx);
Eli Friedmane28d7192009-02-26 09:29:13 +00001191 return ICEDiag(2, E->getLocStart());
Chris Lattner2eadfb62007-07-15 23:32:58 +00001192 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001193 case Expr::DeclRefExprClass:
1194 case Expr::QualifiedDeclRefExprClass:
1195 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
1196 return NoDiag();
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001197 if (Ctx.getLangOptions().CPlusPlus &&
Eli Friedmane28d7192009-02-26 09:29:13 +00001198 E->getType().getCVRQualifiers() == QualType::Const) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001199 // C++ 7.1.5.1p2
1200 // A variable of non-volatile const-qualified integral or enumeration
1201 // type initialized by an ICE can be used in ICEs.
1202 if (const VarDecl *Dcl =
Eli Friedmane28d7192009-02-26 09:29:13 +00001203 dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001204 if (const Expr *Init = Dcl->getInit())
Eli Friedmane28d7192009-02-26 09:29:13 +00001205 return CheckICE(Init, Ctx);
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001206 }
1207 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001208 return ICEDiag(2, E->getLocStart());
1209 case Expr::UnaryOperatorClass: {
1210 const UnaryOperator *Exp = cast<UnaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001211 switch (Exp->getOpcode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001212 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001213 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001214 case UnaryOperator::Extension:
Eli Friedmane28d7192009-02-26 09:29:13 +00001215 case UnaryOperator::LNot:
Reid Spencer5f016e22007-07-11 17:01:13 +00001216 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001217 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001218 case UnaryOperator::Not:
Eli Friedman60ce9632009-02-27 04:07:58 +00001219 case UnaryOperator::Real:
1220 case UnaryOperator::Imag:
Eli Friedmane28d7192009-02-26 09:29:13 +00001221 return CheckICE(Exp->getSubExpr(), Ctx);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001222 case UnaryOperator::OffsetOf:
Eli Friedman60ce9632009-02-27 04:07:58 +00001223 // Note that per C99, offsetof must be an ICE. And AFAIK, using
1224 // Evaluate matches the proposed gcc behavior for cases like
1225 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
1226 // compliance: we should warn earlier for offsetof expressions with
1227 // array subscripts that aren't ICEs, and if the array subscripts
1228 // are ICEs, the value of the offsetof must be an integer constant.
1229 return CheckEvalInICE(E, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001230 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001231 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001232 case Expr::SizeOfAlignOfExprClass: {
1233 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
1234 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
1235 return ICEDiag(2, E->getLocStart());
1236 return NoDiag();
Reid Spencer5f016e22007-07-11 17:01:13 +00001237 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001238 case Expr::BinaryOperatorClass: {
1239 const BinaryOperator *Exp = cast<BinaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001240 switch (Exp->getOpcode()) {
1241 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001242 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001243 case BinaryOperator::Mul:
Reid Spencer5f016e22007-07-11 17:01:13 +00001244 case BinaryOperator::Div:
Reid Spencer5f016e22007-07-11 17:01:13 +00001245 case BinaryOperator::Rem:
Eli Friedmane28d7192009-02-26 09:29:13 +00001246 case BinaryOperator::Add:
1247 case BinaryOperator::Sub:
Reid Spencer5f016e22007-07-11 17:01:13 +00001248 case BinaryOperator::Shl:
Reid Spencer5f016e22007-07-11 17:01:13 +00001249 case BinaryOperator::Shr:
Eli Friedmane28d7192009-02-26 09:29:13 +00001250 case BinaryOperator::LT:
1251 case BinaryOperator::GT:
1252 case BinaryOperator::LE:
1253 case BinaryOperator::GE:
1254 case BinaryOperator::EQ:
1255 case BinaryOperator::NE:
1256 case BinaryOperator::And:
1257 case BinaryOperator::Xor:
1258 case BinaryOperator::Or:
1259 case BinaryOperator::Comma: {
1260 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1261 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001262 if (Exp->getOpcode() == BinaryOperator::Div ||
1263 Exp->getOpcode() == BinaryOperator::Rem) {
1264 // Evaluate gives an error for undefined Div/Rem, so make sure
1265 // we don't evaluate one.
1266 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
1267 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
1268 if (REval == 0)
1269 return ICEDiag(1, E->getLocStart());
1270 if (REval.isSigned() && REval.isAllOnesValue()) {
1271 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
1272 if (LEval.isMinSignedValue())
1273 return ICEDiag(1, E->getLocStart());
1274 }
1275 }
1276 }
1277 if (Exp->getOpcode() == BinaryOperator::Comma) {
1278 if (Ctx.getLangOptions().C99) {
1279 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
1280 // if it isn't evaluated.
1281 if (LHSResult.Val == 0 && RHSResult.Val == 0)
1282 return ICEDiag(1, E->getLocStart());
1283 } else {
1284 // In both C89 and C++, commas in ICEs are illegal.
1285 return ICEDiag(2, E->getLocStart());
1286 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001287 }
1288 if (LHSResult.Val >= RHSResult.Val)
1289 return LHSResult;
1290 return RHSResult;
1291 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001292 case BinaryOperator::LAnd:
Eli Friedmane28d7192009-02-26 09:29:13 +00001293 case BinaryOperator::LOr: {
1294 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1295 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
1296 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
1297 // Rare case where the RHS has a comma "side-effect"; we need
1298 // to actually check the condition to see whether the side
1299 // with the comma is evaluated.
Eli Friedmane28d7192009-02-26 09:29:13 +00001300 if ((Exp->getOpcode() == BinaryOperator::LAnd) !=
Eli Friedman60ce9632009-02-27 04:07:58 +00001301 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
Eli Friedmane28d7192009-02-26 09:29:13 +00001302 return RHSResult;
1303 return NoDiag();
Eli Friedmanb11e7782008-11-13 02:13:11 +00001304 }
Eli Friedman60ce9632009-02-27 04:07:58 +00001305
Eli Friedmane28d7192009-02-26 09:29:13 +00001306 if (LHSResult.Val >= RHSResult.Val)
1307 return LHSResult;
1308 return RHSResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001309 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001310 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001311 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001312 case Expr::ImplicitCastExprClass:
1313 case Expr::CStyleCastExprClass:
1314 case Expr::CXXFunctionalCastExprClass: {
1315 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
1316 if (SubExpr->getType()->isIntegralType())
1317 return CheckICE(SubExpr, Ctx);
1318 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
1319 return NoDiag();
1320 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001321 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001322 case Expr::ConditionalOperatorClass: {
1323 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
Chris Lattner28daa532008-12-12 06:55:44 +00001324 // If the condition (ignoring parens) is a __builtin_constant_p call,
1325 // then only the true side is actually considered in an integer constant
Chris Lattner42b83dd2008-12-12 18:00:51 +00001326 // expression, and it is fully evaluated. This is an important GNU
1327 // extension. See GCC PR38377 for discussion.
Eli Friedmane28d7192009-02-26 09:29:13 +00001328 if (const CallExpr *CallCE = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001329 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001330 Expr::EvalResult EVResult;
1331 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1332 !EVResult.Val.isInt()) {
Eli Friedman60ce9632009-02-27 04:07:58 +00001333 return ICEDiag(2, E->getLocStart());
Eli Friedmane28d7192009-02-26 09:29:13 +00001334 }
1335 return NoDiag();
Chris Lattner42b83dd2008-12-12 18:00:51 +00001336 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001337 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
1338 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
1339 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
1340 if (CondResult.Val == 2)
1341 return CondResult;
1342 if (TrueResult.Val == 2)
1343 return TrueResult;
1344 if (FalseResult.Val == 2)
1345 return FalseResult;
1346 if (CondResult.Val == 1)
1347 return CondResult;
1348 if (TrueResult.Val == 0 && FalseResult.Val == 0)
1349 return NoDiag();
1350 // Rare case where the diagnostics depend on which side is evaluated
1351 // Note that if we get here, CondResult is 0, and at least one of
1352 // TrueResult and FalseResult is non-zero.
Eli Friedman60ce9632009-02-27 04:07:58 +00001353 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001354 return FalseResult;
1355 }
1356 return TrueResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001357 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001358 case Expr::CXXDefaultArgExprClass:
1359 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001360 case Expr::ChooseExprClass: {
Eli Friedman79769322009-03-04 05:52:32 +00001361 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001362 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001363 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001364}
Reid Spencer5f016e22007-07-11 17:01:13 +00001365
Eli Friedmane28d7192009-02-26 09:29:13 +00001366bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
1367 SourceLocation *Loc, bool isEvaluated) const {
1368 ICEDiag d = CheckICE(this, Ctx);
1369 if (d.Val != 0) {
1370 if (Loc) *Loc = d.Loc;
1371 return false;
1372 }
1373 EvalResult EvalResult;
Eli Friedman60ce9632009-02-27 04:07:58 +00001374 if (!Evaluate(EvalResult, Ctx))
1375 assert(0 && "ICE cannot be evaluated!");
1376 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
1377 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001378 Result = EvalResult.Val.getInt();
Reid Spencer5f016e22007-07-11 17:01:13 +00001379 return true;
1380}
1381
Reid Spencer5f016e22007-07-11 17:01:13 +00001382/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1383/// integer constant expression with the value zero, or if this is one that is
1384/// cast to void*.
Anders Carlssonefa9b382008-12-01 02:13:57 +00001385bool Expr::isNullPointerConstant(ASTContext &Ctx) const
1386{
Sebastian Redl07779722008-10-31 14:43:28 +00001387 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001388 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00001389 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00001390 // Check that it is a cast to void*.
1391 if (const PointerType *PT = CE->getType()->getAsPointerType()) {
1392 QualType Pointee = PT->getPointeeType();
1393 if (Pointee.getCVRQualifiers() == 0 &&
1394 Pointee->isVoidType() && // to void*
1395 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Anders Carlssond2652772008-12-01 06:28:23 +00001396 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Sebastian Redl07779722008-10-31 14:43:28 +00001397 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001398 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001399 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1400 // Ignore the ImplicitCastExpr type entirely.
Anders Carlssond2652772008-12-01 06:28:23 +00001401 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
Steve Naroffaa58f002008-01-14 16:10:57 +00001402 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1403 // Accept ((void*)0) as a null pointer constant, as many other
1404 // implementations do.
Anders Carlssond2652772008-12-01 06:28:23 +00001405 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner8123a952008-04-10 02:22:51 +00001406 } else if (const CXXDefaultArgExpr *DefaultArg
1407 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001408 // See through default argument expressions
Anders Carlssond2652772008-12-01 06:28:23 +00001409 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001410 } else if (isa<GNUNullExpr>(this)) {
1411 // The GNU __null extension is always a null pointer constant.
1412 return true;
Steve Naroffaaffbf72008-01-14 02:53:34 +00001413 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001414
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001415 // C++0x nullptr_t is always a null pointer constant.
1416 if (getType()->isNullPtrType())
1417 return true;
1418
Steve Naroffaa58f002008-01-14 16:10:57 +00001419 // This expression must be an integer type.
1420 if (!getType()->isIntegerType())
1421 return false;
1422
Reid Spencer5f016e22007-07-11 17:01:13 +00001423 // If we have an integer constant expression, we need to *evaluate* it and
1424 // test for the value 0.
Eli Friedman09de1762009-04-25 22:37:12 +00001425 llvm::APSInt Result;
1426 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001427}
Steve Naroff31a45842007-07-28 23:10:27 +00001428
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001429FieldDecl *Expr::getBitField() {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001430 Expr *E = this->IgnoreParenCasts();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001431
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001432 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00001433 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001434 if (Field->isBitField())
1435 return Field;
1436
1437 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
1438 if (BinOp->isAssignmentOp() && BinOp->getLHS())
1439 return BinOp->getLHS()->getBitField();
1440
1441 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001442}
1443
Chris Lattner2140e902009-02-16 22:14:05 +00001444/// isArrow - Return true if the base expression is a pointer to vector,
1445/// return false if the base expression is a vector.
1446bool ExtVectorElementExpr::isArrow() const {
1447 return getBase()->getType()->isPointerType();
1448}
1449
Nate Begeman213541a2008-04-18 23:10:10 +00001450unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begeman8a997642008-05-09 06:41:27 +00001451 if (const VectorType *VT = getType()->getAsVectorType())
1452 return VT->getNumElements();
1453 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001454}
1455
Nate Begeman8a997642008-05-09 06:41:27 +00001456/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001457bool ExtVectorElementExpr::containsDuplicateElements() const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001458 const char *compStr = Accessor->getName();
1459 unsigned length = Accessor->getLength();
Nate Begeman190d6a22009-01-18 02:01:21 +00001460
1461 // Halving swizzles do not contain duplicate elements.
1462 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
1463 !strcmp(compStr, "even") || !strcmp(compStr, "odd"))
1464 return false;
1465
1466 // Advance past s-char prefix on hex swizzles.
1467 if (*compStr == 's') {
1468 compStr++;
1469 length--;
1470 }
Steve Narofffec0b492007-07-30 03:29:09 +00001471
Chris Lattner7e3e9b12008-11-19 07:55:04 +00001472 for (unsigned i = 0; i != length-1; i++) {
Steve Narofffec0b492007-07-30 03:29:09 +00001473 const char *s = compStr+i;
1474 for (const char c = *s++; *s; s++)
1475 if (c == *s)
1476 return true;
1477 }
1478 return false;
1479}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001480
Nate Begeman8a997642008-05-09 06:41:27 +00001481/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00001482void ExtVectorElementExpr::getEncodedElementAccess(
1483 llvm::SmallVectorImpl<unsigned> &Elts) const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001484 const char *compStr = Accessor->getName();
Nate Begeman353417a2009-01-18 01:47:54 +00001485 if (*compStr == 's')
1486 compStr++;
1487
1488 bool isHi = !strcmp(compStr, "hi");
1489 bool isLo = !strcmp(compStr, "lo");
1490 bool isEven = !strcmp(compStr, "even");
1491 bool isOdd = !strcmp(compStr, "odd");
1492
Nate Begeman8a997642008-05-09 06:41:27 +00001493 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1494 uint64_t Index;
1495
1496 if (isHi)
1497 Index = e + i;
1498 else if (isLo)
1499 Index = i;
1500 else if (isEven)
1501 Index = 2 * i;
1502 else if (isOdd)
1503 Index = 2 * i + 1;
1504 else
1505 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001506
Nate Begeman3b8d1162008-05-13 21:03:02 +00001507 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001508 }
Nate Begeman8a997642008-05-09 06:41:27 +00001509}
1510
Steve Naroff68d331a2007-09-27 14:38:14 +00001511// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001512ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001513 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001514 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001515 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001516 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001517 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001518 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001519 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00001520 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00001521 if (NumArgs) {
1522 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001523 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1524 }
Steve Naroff563477d2007-09-18 23:55:05 +00001525 LBracloc = LBrac;
1526 RBracloc = RBrac;
1527}
1528
Steve Naroff68d331a2007-09-27 14:38:14 +00001529// constructor for class messages.
1530// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001531ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001532 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001533 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001534 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001535 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001536 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001537 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001538 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenek4df728e2008-06-24 15:50:53 +00001539 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff49f109c2007-11-15 13:05:42 +00001540 if (NumArgs) {
1541 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001542 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1543 }
Steve Naroff563477d2007-09-18 23:55:05 +00001544 LBracloc = LBrac;
1545 RBracloc = RBrac;
1546}
1547
Ted Kremenek4df728e2008-06-24 15:50:53 +00001548// constructor for class messages.
1549ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1550 QualType retType, ObjCMethodDecl *mproto,
1551 SourceLocation LBrac, SourceLocation RBrac,
1552 Expr **ArgExprs, unsigned nargs)
1553: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1554MethodProto(mproto) {
1555 NumArgs = nargs;
1556 SubExprs = new Stmt*[NumArgs+1];
1557 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1558 if (NumArgs) {
1559 for (unsigned i = 0; i != NumArgs; ++i)
1560 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1561 }
1562 LBracloc = LBrac;
1563 RBracloc = RBrac;
1564}
1565
1566ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1567 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1568 switch (x & Flags) {
1569 default:
1570 assert(false && "Invalid ObjCMessageExpr.");
1571 case IsInstMeth:
1572 return ClassInfo(0, 0);
1573 case IsClsMethDeclUnknown:
1574 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1575 case IsClsMethDeclKnown: {
1576 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1577 return ClassInfo(D, D->getIdentifier());
1578 }
1579 }
1580}
1581
Chris Lattner0389e6b2009-04-26 00:44:05 +00001582void ObjCMessageExpr::setClassInfo(const ObjCMessageExpr::ClassInfo &CI) {
1583 if (CI.first == 0 && CI.second == 0)
1584 SubExprs[RECEIVER] = (Expr*)((uintptr_t)0 | IsInstMeth);
1585 else if (CI.first == 0)
1586 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.second | IsClsMethDeclUnknown);
1587 else
1588 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.first | IsClsMethDeclKnown);
1589}
1590
1591
Chris Lattner27437ca2007-10-25 00:29:32 +00001592bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Eli Friedman9a901bb2009-04-26 19:19:15 +00001593 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00001594}
1595
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001596void ShuffleVectorExpr::setExprs(Expr ** Exprs, unsigned NumExprs) {
1597 if (NumExprs)
1598 delete [] SubExprs;
1599
1600 SubExprs = new Stmt* [NumExprs];
1601 this->NumExprs = NumExprs;
1602 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
1603}
1604
Sebastian Redl05189992008-11-11 17:56:53 +00001605void SizeOfAlignOfExpr::Destroy(ASTContext& C) {
1606 // Override default behavior of traversing children. If this has a type
1607 // operand and the type is a variable-length array, the child iteration
1608 // will iterate over the size expression. However, this expression belongs
1609 // to the type, not to this, so we don't want to delete it.
1610 // We still want to delete this expression.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001611 if (isArgumentType()) {
1612 this->~SizeOfAlignOfExpr();
1613 C.Deallocate(this);
1614 }
Sebastian Redl05189992008-11-11 17:56:53 +00001615 else
1616 Expr::Destroy(C);
Daniel Dunbar90488912008-08-28 18:02:04 +00001617}
1618
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001619//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00001620// DesignatedInitExpr
1621//===----------------------------------------------------------------------===//
1622
1623IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
1624 assert(Kind == FieldDesignator && "Only valid on a field designator");
1625 if (Field.NameOrField & 0x01)
1626 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
1627 else
1628 return getField()->getIdentifier();
1629}
1630
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001631DesignatedInitExpr::DesignatedInitExpr(QualType Ty, unsigned NumDesignators,
1632 const Designator *Designators,
1633 SourceLocation EqualOrColonLoc,
1634 bool GNUSyntax,
1635 unsigned NumSubExprs)
1636 : Expr(DesignatedInitExprClass, Ty),
1637 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
1638 NumDesignators(NumDesignators), NumSubExprs(NumSubExprs) {
1639 this->Designators = new Designator[NumDesignators];
1640 for (unsigned I = 0; I != NumDesignators; ++I)
1641 this->Designators[I] = Designators[I];
1642}
1643
Douglas Gregor05c13a32009-01-22 00:58:24 +00001644DesignatedInitExpr *
1645DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
1646 unsigned NumDesignators,
1647 Expr **IndexExprs, unsigned NumIndexExprs,
1648 SourceLocation ColonOrEqualLoc,
1649 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00001650 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00001651 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001652 DesignatedInitExpr *DIE
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001653 = new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators, Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00001654 ColonOrEqualLoc, UsesColonSyntax,
1655 NumIndexExprs + 1);
1656
1657 // Fill in the designators
1658 unsigned ExpectedNumSubExprs = 0;
1659 designators_iterator Desig = DIE->designators_begin();
1660 for (unsigned Idx = 0; Idx < NumDesignators; ++Idx, ++Desig) {
Douglas Gregor05c13a32009-01-22 00:58:24 +00001661 if (Designators[Idx].isArrayDesignator())
1662 ++ExpectedNumSubExprs;
1663 else if (Designators[Idx].isArrayRangeDesignator())
1664 ExpectedNumSubExprs += 2;
1665 }
1666 assert(ExpectedNumSubExprs == NumIndexExprs && "Wrong number of indices!");
1667
1668 // Fill in the subexpressions, including the initializer expression.
1669 child_iterator Child = DIE->child_begin();
1670 *Child++ = Init;
1671 for (unsigned Idx = 0; Idx < NumIndexExprs; ++Idx, ++Child)
1672 *Child = IndexExprs[Idx];
1673
1674 return DIE;
1675}
1676
Douglas Gregord077d752009-04-16 00:55:48 +00001677DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
1678 unsigned NumIndexExprs) {
1679 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
1680 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
1681 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
1682}
1683
1684void DesignatedInitExpr::setDesignators(const Designator *Desigs,
1685 unsigned NumDesigs) {
1686 if (Designators)
1687 delete [] Designators;
1688
1689 Designators = new Designator[NumDesigs];
1690 NumDesignators = NumDesigs;
1691 for (unsigned I = 0; I != NumDesigs; ++I)
1692 Designators[I] = Desigs[I];
1693}
1694
Douglas Gregor05c13a32009-01-22 00:58:24 +00001695SourceRange DesignatedInitExpr::getSourceRange() const {
1696 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001697 Designator &First =
1698 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00001699 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00001700 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00001701 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
1702 else
1703 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
1704 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001705 StartLoc =
1706 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001707 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
1708}
1709
Douglas Gregor05c13a32009-01-22 00:58:24 +00001710Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
1711 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
1712 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1713 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001714 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1715 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1716}
1717
1718Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
1719 assert(D.Kind == Designator::ArrayRangeDesignator &&
1720 "Requires array range designator");
1721 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1722 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001723 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1724 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1725}
1726
1727Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
1728 assert(D.Kind == Designator::ArrayRangeDesignator &&
1729 "Requires array range designator");
1730 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1731 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001732 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1733 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
1734}
1735
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001736/// \brief Replaces the designator at index @p Idx with the series
1737/// of designators in [First, Last).
1738void DesignatedInitExpr::ExpandDesignator(unsigned Idx,
1739 const Designator *First,
1740 const Designator *Last) {
1741 unsigned NumNewDesignators = Last - First;
1742 if (NumNewDesignators == 0) {
1743 std::copy_backward(Designators + Idx + 1,
1744 Designators + NumDesignators,
1745 Designators + Idx);
1746 --NumNewDesignators;
1747 return;
1748 } else if (NumNewDesignators == 1) {
1749 Designators[Idx] = *First;
1750 return;
1751 }
1752
1753 Designator *NewDesignators
1754 = new Designator[NumDesignators - 1 + NumNewDesignators];
1755 std::copy(Designators, Designators + Idx, NewDesignators);
1756 std::copy(First, Last, NewDesignators + Idx);
1757 std::copy(Designators + Idx + 1, Designators + NumDesignators,
1758 NewDesignators + Idx + NumNewDesignators);
1759 delete [] Designators;
1760 Designators = NewDesignators;
1761 NumDesignators = NumDesignators - 1 + NumNewDesignators;
1762}
1763
1764void DesignatedInitExpr::Destroy(ASTContext &C) {
1765 delete [] Designators;
1766 Expr::Destroy(C);
1767}
1768
Douglas Gregor05c13a32009-01-22 00:58:24 +00001769//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00001770// ExprIterator.
1771//===----------------------------------------------------------------------===//
1772
1773Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
1774Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
1775Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
1776const Expr* ConstExprIterator::operator[](size_t idx) const {
1777 return cast<Expr>(I[idx]);
1778}
1779const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
1780const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
1781
1782//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001783// Child Iterators for iterating over subexpressions/substatements
1784//===----------------------------------------------------------------------===//
1785
1786// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001787Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1788Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001789
Steve Naroff7779db42007-11-12 14:29:37 +00001790// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001791Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1792Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00001793
Steve Naroffe3e9add2008-06-02 23:03:37 +00001794// ObjCPropertyRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001795Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1796Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffae784072008-05-30 00:40:33 +00001797
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00001798// ObjCKVCRefExpr
1799Stmt::child_iterator ObjCKVCRefExpr::child_begin() { return &Base; }
1800Stmt::child_iterator ObjCKVCRefExpr::child_end() { return &Base+1; }
1801
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001802// ObjCSuperExpr
1803Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
1804Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
1805
Chris Lattnerd9f69102008-08-10 01:53:14 +00001806// PredefinedExpr
1807Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
1808Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001809
1810// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001811Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1812Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001813
1814// CharacterLiteral
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001815Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek9ac59282007-10-18 23:28:49 +00001816Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001817
1818// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001819Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1820Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001821
Chris Lattner5d661452007-08-26 03:42:43 +00001822// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00001823Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1824Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00001825
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001826// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001827Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1828Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001829
1830// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001831Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1832Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001833
1834// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00001835Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1836Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001837
Sebastian Redl05189992008-11-11 17:56:53 +00001838// SizeOfAlignOfExpr
1839Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
1840 // If this is of a type and the type is a VLA type (and not a typedef), the
1841 // size expression of the VLA needs to be treated as an executable expression.
1842 // Why isn't this weirdness documented better in StmtIterator?
1843 if (isArgumentType()) {
1844 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
1845 getArgumentType().getTypePtr()))
1846 return child_iterator(T);
1847 return child_iterator();
1848 }
Sebastian Redld4575892008-12-03 23:17:54 +00001849 return child_iterator(&Argument.Ex);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001850}
Sebastian Redl05189992008-11-11 17:56:53 +00001851Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
1852 if (isArgumentType())
1853 return child_iterator();
Sebastian Redld4575892008-12-03 23:17:54 +00001854 return child_iterator(&Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001855}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001856
1857// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001858Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001859 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001860}
Ted Kremenek1237c672007-08-24 20:06:47 +00001861Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001862 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001863}
1864
1865// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001866Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001867 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001868}
Ted Kremenek1237c672007-08-24 20:06:47 +00001869Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001870 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001871}
Ted Kremenek1237c672007-08-24 20:06:47 +00001872
1873// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001874Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1875Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001876
Nate Begeman213541a2008-04-18 23:10:10 +00001877// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001878Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1879Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001880
1881// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001882Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1883Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001884
Ted Kremenek1237c672007-08-24 20:06:47 +00001885// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001886Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1887Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001888
1889// BinaryOperator
1890Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001891 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001892}
Ted Kremenek1237c672007-08-24 20:06:47 +00001893Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001894 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001895}
1896
1897// ConditionalOperator
1898Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001899 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001900}
Ted Kremenek1237c672007-08-24 20:06:47 +00001901Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001902 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001903}
1904
1905// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001906Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1907Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001908
Ted Kremenek1237c672007-08-24 20:06:47 +00001909// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001910Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1911Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001912
1913// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001914Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1915 return child_iterator();
1916}
1917
1918Stmt::child_iterator TypesCompatibleExpr::child_end() {
1919 return child_iterator();
1920}
Ted Kremenek1237c672007-08-24 20:06:47 +00001921
1922// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001923Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1924Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001925
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001926// GNUNullExpr
1927Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
1928Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
1929
Eli Friedmand38617c2008-05-14 19:38:39 +00001930// ShuffleVectorExpr
1931Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001932 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00001933}
1934Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001935 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00001936}
1937
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001938// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001939Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
1940Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001941
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001942// InitListExpr
1943Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001944 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001945}
1946Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001947 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001948}
1949
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001950// DesignatedInitExpr
Douglas Gregor05c13a32009-01-22 00:58:24 +00001951Stmt::child_iterator DesignatedInitExpr::child_begin() {
1952 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1953 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001954 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1955}
1956Stmt::child_iterator DesignatedInitExpr::child_end() {
1957 return child_iterator(&*child_begin() + NumSubExprs);
1958}
1959
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001960// ImplicitValueInitExpr
1961Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
1962 return child_iterator();
1963}
1964
1965Stmt::child_iterator ImplicitValueInitExpr::child_end() {
1966 return child_iterator();
1967}
1968
Ted Kremenek1237c672007-08-24 20:06:47 +00001969// ObjCStringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001970Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00001971 return &String;
Ted Kremenek9ac59282007-10-18 23:28:49 +00001972}
1973Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00001974 return &String+1;
Ted Kremenek9ac59282007-10-18 23:28:49 +00001975}
Ted Kremenek1237c672007-08-24 20:06:47 +00001976
1977// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001978Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
1979Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001980
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001981// ObjCSelectorExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001982Stmt::child_iterator ObjCSelectorExpr::child_begin() {
1983 return child_iterator();
1984}
1985Stmt::child_iterator ObjCSelectorExpr::child_end() {
1986 return child_iterator();
1987}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001988
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001989// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001990Stmt::child_iterator ObjCProtocolExpr::child_begin() {
1991 return child_iterator();
1992}
1993Stmt::child_iterator ObjCProtocolExpr::child_end() {
1994 return child_iterator();
1995}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001996
Steve Naroff563477d2007-09-18 23:55:05 +00001997// ObjCMessageExpr
Ted Kremenekea958e572008-05-01 17:26:20 +00001998Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001999 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroff563477d2007-09-18 23:55:05 +00002000}
2001Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002002 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroff563477d2007-09-18 23:55:05 +00002003}
2004
Steve Naroff4eb206b2008-09-03 18:15:37 +00002005// Blocks
Steve Naroff56ee6892008-10-08 17:01:13 +00002006Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
2007Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff4eb206b2008-09-03 18:15:37 +00002008
Ted Kremenek9da13f92008-09-26 23:24:14 +00002009Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
2010Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }