blob: c12dd6747c6d2fafd62fa0315a5135e7a34e8228 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbar64789f82008-08-11 05:35:13 +000014#include "clang/AST/Expr.h"
Chris Lattner1eee9402008-10-06 06:40:35 +000015#include "clang/AST/APValue.h"
Chris Lattner4b009652007-07-25 00:24:17 +000016#include "clang/AST/ASTContext.h"
Chris Lattner1eee9402008-10-06 06:40:35 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor6573cfd2008-10-21 23:43:52 +000018#include "clang/AST/DeclCXX.h"
Douglas Gregor279272e2009-02-04 19:02:06 +000019#include "clang/AST/DeclTemplate.h"
Daniel Dunbarde300732008-08-11 04:54:23 +000020#include "clang/AST/RecordLayout.h"
Chris Lattner4b009652007-07-25 00:24:17 +000021#include "clang/AST/StmtVisitor.h"
Chris Lattnerd9ffbc92007-11-27 18:22:04 +000022#include "clang/Basic/TargetInfo.h"
Douglas Gregorcc94ab72009-04-15 06:41:24 +000023#include <algorithm>
Chris Lattner4b009652007-07-25 00:24:17 +000024using namespace clang;
25
26//===----------------------------------------------------------------------===//
27// Primary Expressions.
28//===----------------------------------------------------------------------===//
29
Sebastian Redlf80e2612009-05-16 18:50:46 +000030PredefinedExpr* PredefinedExpr::Clone(ASTContext &C) const {
31 return new (C) PredefinedExpr(Loc, getType(), Type);
32}
33
Anders Carlsson7f2e7442009-03-15 18:34:13 +000034IntegerLiteral* IntegerLiteral::Clone(ASTContext &C) const {
35 return new (C) IntegerLiteral(Value, getType(), Loc);
36}
37
Sebastian Redlf80e2612009-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 Gregor4a951342009-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 Redlf80e2612009-05-16 18:50:46 +000057GNUNullExpr* GNUNullExpr::Clone(ASTContext &C) const {
58 return new (C) GNUNullExpr(getType(), TokenLoc);
59}
60
Chris Lattnere0391b22008-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 Johannesen2461f612008-10-09 23:02:32 +000066 bool ignored;
67 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
68 &ignored);
Chris Lattnere0391b22008-06-07 22:13:43 +000069 return V.convertToDouble();
70}
71
Chris Lattneraa491192009-02-18 06:40:38 +000072StringLiteral *StringLiteral::Create(ASTContext &C, const char *StrData,
73 unsigned ByteLength, bool Wide,
74 QualType Ty,
Anders Carlsson7f2e7442009-03-15 18:34:13 +000075 const SourceLocation *Loc,
76 unsigned NumStrs) {
Chris Lattneraa491192009-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
Chris Lattner4b009652007-07-25 00:24:17 +000084 // OPTIMIZE: could allocate this appended to the StringLiteral.
Chris Lattneraa491192009-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;
Chris Lattner4b009652007-07-25 00:24:17 +000092
Chris Lattnerc3144742009-02-18 05:49:11 +000093 if (NumStrs != 1)
Chris Lattneraa491192009-02-18 06:40:38 +000094 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
95 return SL;
Chris Lattnerc3144742009-02-18 05:49:11 +000096}
97
Douglas Gregor596e0932009-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 Carlsson7f2e7442009-03-15 18:34:13 +0000109StringLiteral* StringLiteral::Clone(ASTContext &C) const {
110 return Create(C, StrData, ByteLength, IsWide, getType(),
111 TokLocs, NumConcatenated);
112}
Chris Lattnerc3144742009-02-18 05:49:11 +0000113
Ted Kremenek4f530a92009-02-06 19:55:15 +0000114void StringLiteral::Destroy(ASTContext &C) {
Ted Kremenek0c97e042009-02-07 01:47:29 +0000115 C.Deallocate(const_cast<char*>(StrData));
Ted Kremenek32d760b2009-02-09 17:10:09 +0000116 this->~StringLiteral();
117 C.Deallocate(this);
Chris Lattner4b009652007-07-25 00:24:17 +0000118}
119
Douglas Gregor596e0932009-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
Chris Lattner4b009652007-07-25 00:24:17 +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";
Chris Lattner4b009652007-07-25 00:24:17 +0000147 case Extension: return "__extension__";
Chris Lattner0d9bcea2007-08-30 17:45:32 +0000148 case OffsetOf: return "__builtin_offsetof";
Chris Lattner4b009652007-07-25 00:24:17 +0000149 }
150}
151
Douglas Gregorc78182d2009-03-13 23:49:33 +0000152UnaryOperator::Opcode
153UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
154 switch (OO) {
Douglas Gregorc78182d2009-03-13 23:49:33 +0000155 default: assert(false && "No unary operator for overloaded function");
Chris Lattner6eea6bb2009-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 Gregorc78182d2009-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
Chris Lattner4b009652007-07-25 00:24:17 +0000182//===----------------------------------------------------------------------===//
183// Postfix Operators.
184//===----------------------------------------------------------------------===//
185
Ted Kremenek362abcd2009-02-09 20:51:47 +0000186CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, Expr **args,
Ted Kremenek0c97e042009-02-07 01:47:29 +0000187 unsigned numargs, QualType t, SourceLocation rparenloc)
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000188 : Expr(SC, t,
189 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerb6eccdc2009-02-16 22:33:34 +0000190 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000191 NumArgs(numargs) {
Ted Kremenek362abcd2009-02-09 20:51:47 +0000192
193 SubExprs = new (C) Stmt*[numargs+1];
Douglas Gregor65fedaf2008-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 Kremenek362abcd2009-02-09 20:51:47 +0000197
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000198 RParenLoc = rparenloc;
199}
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000200
Ted Kremenek362abcd2009-02-09 20:51:47 +0000201CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
202 QualType t, SourceLocation rparenloc)
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000203 : Expr(CallExprClass, t,
204 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerb6eccdc2009-02-16 22:33:34 +0000205 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000206 NumArgs(numargs) {
Ted Kremenek362abcd2009-02-09 20:51:47 +0000207
208 SubExprs = new (C) Stmt*[numargs+1];
Ted Kremeneke4acb9c2007-08-24 18:13:47 +0000209 SubExprs[FN] = fn;
Chris Lattner4b009652007-07-25 00:24:17 +0000210 for (unsigned i = 0; i != numargs; ++i)
Ted Kremeneke4acb9c2007-08-24 18:13:47 +0000211 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek362abcd2009-02-09 20:51:47 +0000212
Chris Lattner4b009652007-07-25 00:24:17 +0000213 RParenLoc = rparenloc;
214}
215
Douglas Gregor7e2b1cd2009-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 Kremenek362abcd2009-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 Lattnerc257c0d2007-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 Kremenek0c97e042009-02-07 01:47:29 +0000231void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerc257c0d2007-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 Kremenek0c97e042009-02-07 01:47:29 +0000238 getArg(i)->Destroy(C);
Chris Lattnerc257c0d2007-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 Kremenek2719e982008-06-17 02:43:46 +0000244 Stmt **NewSubExprs = new Stmt*[NumArgs+1];
Chris Lattnerc257c0d2007-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 Gregorb9f63642009-04-17 21:46:47 +0000252 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerc257c0d2007-12-28 05:25:02 +0000253 SubExprs = NewSubExprs;
254 this->NumArgs = NumArgs;
255}
256
Chris Lattnerc24915f2008-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 Gregorb5af7382009-02-14 18:57:46 +0000259unsigned CallExpr::isBuiltinCall(ASTContext &Context) const {
Steve Naroff44aec4c2008-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 Lattnerc24915f2008-10-06 05:00:53 +0000265 return 0;
266
Steve Naroff44aec4c2008-01-31 01:07:12 +0000267 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
268 if (!DRE)
Chris Lattnerc24915f2008-10-06 05:00:53 +0000269 return 0;
270
Anders Carlsson2ed959f2008-01-31 02:13:57 +0000271 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
272 if (!FDecl)
Chris Lattnerc24915f2008-10-06 05:00:53 +0000273 return 0;
274
Douglas Gregorcf4a8892008-11-21 15:30:19 +0000275 if (!FDecl->getIdentifier())
276 return 0;
277
Douglas Gregorb5af7382009-02-14 18:57:46 +0000278 return FDecl->getBuiltinID(Context);
Chris Lattnerc24915f2008-10-06 05:00:53 +0000279}
Anders Carlsson2ed959f2008-01-31 02:13:57 +0000280
Anders Carlsson66070902009-05-26 04:57:27 +0000281QualType CallExpr::getCallReturnType() const {
282 QualType CalleeType = getCallee()->getType();
283 if (const PointerType *FnTypePtr = CalleeType->getAsPointerType())
284 CalleeType = FnTypePtr->getPointeeType();
285 else if (const BlockPointerType *BPT = CalleeType->getAsBlockPointerType())
286 CalleeType = BPT->getPointeeType();
287
288 const FunctionType *FnType = CalleeType->getAsFunctionType();
289 return FnType->getResultType();
290}
Chris Lattnerc24915f2008-10-06 05:00:53 +0000291
Chris Lattner4b009652007-07-25 00:24:17 +0000292/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
293/// corresponds to, e.g. "<<=".
294const char *BinaryOperator::getOpcodeStr(Opcode Op) {
295 switch (Op) {
Douglas Gregor535f3122009-03-12 22:51:37 +0000296 case PtrMemD: return ".*";
297 case PtrMemI: return "->*";
Chris Lattner4b009652007-07-25 00:24:17 +0000298 case Mul: return "*";
299 case Div: return "/";
300 case Rem: return "%";
301 case Add: return "+";
302 case Sub: return "-";
303 case Shl: return "<<";
304 case Shr: return ">>";
305 case LT: return "<";
306 case GT: return ">";
307 case LE: return "<=";
308 case GE: return ">=";
309 case EQ: return "==";
310 case NE: return "!=";
311 case And: return "&";
312 case Xor: return "^";
313 case Or: return "|";
314 case LAnd: return "&&";
315 case LOr: return "||";
316 case Assign: return "=";
317 case MulAssign: return "*=";
318 case DivAssign: return "/=";
319 case RemAssign: return "%=";
320 case AddAssign: return "+=";
321 case SubAssign: return "-=";
322 case ShlAssign: return "<<=";
323 case ShrAssign: return ">>=";
324 case AndAssign: return "&=";
325 case XorAssign: return "^=";
326 case OrAssign: return "|=";
327 case Comma: return ",";
328 }
Douglas Gregor535f3122009-03-12 22:51:37 +0000329
330 return "";
Chris Lattner4b009652007-07-25 00:24:17 +0000331}
332
Douglas Gregor00fe3f62009-03-13 18:40:31 +0000333BinaryOperator::Opcode
334BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
335 switch (OO) {
Chris Lattner6eea6bb2009-03-22 00:10:22 +0000336 default: assert(false && "Not an overloadable binary operator");
Douglas Gregor00fe3f62009-03-13 18:40:31 +0000337 case OO_Plus: return Add;
338 case OO_Minus: return Sub;
339 case OO_Star: return Mul;
340 case OO_Slash: return Div;
341 case OO_Percent: return Rem;
342 case OO_Caret: return Xor;
343 case OO_Amp: return And;
344 case OO_Pipe: return Or;
345 case OO_Equal: return Assign;
346 case OO_Less: return LT;
347 case OO_Greater: return GT;
348 case OO_PlusEqual: return AddAssign;
349 case OO_MinusEqual: return SubAssign;
350 case OO_StarEqual: return MulAssign;
351 case OO_SlashEqual: return DivAssign;
352 case OO_PercentEqual: return RemAssign;
353 case OO_CaretEqual: return XorAssign;
354 case OO_AmpEqual: return AndAssign;
355 case OO_PipeEqual: return OrAssign;
356 case OO_LessLess: return Shl;
357 case OO_GreaterGreater: return Shr;
358 case OO_LessLessEqual: return ShlAssign;
359 case OO_GreaterGreaterEqual: return ShrAssign;
360 case OO_EqualEqual: return EQ;
361 case OO_ExclaimEqual: return NE;
362 case OO_LessEqual: return LE;
363 case OO_GreaterEqual: return GE;
364 case OO_AmpAmp: return LAnd;
365 case OO_PipePipe: return LOr;
366 case OO_Comma: return Comma;
367 case OO_ArrowStar: return PtrMemI;
Douglas Gregor00fe3f62009-03-13 18:40:31 +0000368 }
369}
370
371OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
372 static const OverloadedOperatorKind OverOps[] = {
373 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
374 OO_Star, OO_Slash, OO_Percent,
375 OO_Plus, OO_Minus,
376 OO_LessLess, OO_GreaterGreater,
377 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
378 OO_EqualEqual, OO_ExclaimEqual,
379 OO_Amp,
380 OO_Caret,
381 OO_Pipe,
382 OO_AmpAmp,
383 OO_PipePipe,
384 OO_Equal, OO_StarEqual,
385 OO_SlashEqual, OO_PercentEqual,
386 OO_PlusEqual, OO_MinusEqual,
387 OO_LessLessEqual, OO_GreaterGreaterEqual,
388 OO_AmpEqual, OO_CaretEqual,
389 OO_PipeEqual,
390 OO_Comma
391 };
392 return OverOps[Opc];
393}
394
Anders Carlsson762b7c72007-08-31 04:56:16 +0000395InitListExpr::InitListExpr(SourceLocation lbraceloc,
Chris Lattner71ca8c82008-10-26 23:43:26 +0000396 Expr **initExprs, unsigned numInits,
Douglas Gregorf603b472009-01-28 21:54:33 +0000397 SourceLocation rbraceloc)
Douglas Gregor3a7a06e2009-05-21 23:17:49 +0000398 : Expr(InitListExprClass, QualType(),
399 hasAnyTypeDependentArguments(initExprs, numInits),
400 hasAnyValueDependentArguments(initExprs, numInits)),
Douglas Gregor82462762009-01-29 16:53:55 +0000401 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0),
Douglas Gregor9fddded2009-01-29 19:42:23 +0000402 UnionFieldInit(0), HadArrayRangeDesignator(false) {
Chris Lattner71ca8c82008-10-26 23:43:26 +0000403
404 InitExprs.insert(InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson762b7c72007-08-31 04:56:16 +0000405}
Chris Lattner4b009652007-07-25 00:24:17 +0000406
Douglas Gregoree0792c2009-03-20 23:58:33 +0000407void InitListExpr::reserveInits(unsigned NumInits) {
408 if (NumInits > InitExprs.size())
409 InitExprs.reserve(NumInits);
410}
411
Douglas Gregorf603b472009-01-28 21:54:33 +0000412void InitListExpr::resizeInits(ASTContext &Context, unsigned NumInits) {
Chris Lattnerb6eccdc2009-02-16 22:33:34 +0000413 for (unsigned Idx = NumInits, LastIdx = InitExprs.size();
Daniel Dunbar20d4c882009-02-16 22:42:44 +0000414 Idx < LastIdx; ++Idx)
Douglas Gregor78e97132009-03-20 23:38:03 +0000415 InitExprs[Idx]->Destroy(Context);
Douglas Gregorf603b472009-01-28 21:54:33 +0000416 InitExprs.resize(NumInits, 0);
417}
418
419Expr *InitListExpr::updateInit(unsigned Init, Expr *expr) {
420 if (Init >= InitExprs.size()) {
421 InitExprs.insert(InitExprs.end(), Init - InitExprs.size() + 1, 0);
422 InitExprs.back() = expr;
423 return 0;
424 }
425
426 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
427 InitExprs[Init] = expr;
428 return Result;
429}
430
Steve Naroff6f373332008-09-04 15:31:07 +0000431/// getFunctionType - Return the underlying function type for this block.
Steve Naroff52a81c02008-09-03 18:15:37 +0000432///
433const FunctionType *BlockExpr::getFunctionType() const {
434 return getType()->getAsBlockPointerType()->
435 getPointeeType()->getAsFunctionType();
436}
437
Steve Naroff9ac456d2008-10-08 17:01:13 +0000438SourceLocation BlockExpr::getCaretLocation() const {
439 return TheBlock->getCaretLocation();
440}
Douglas Gregore3241e92009-04-18 00:02:19 +0000441const Stmt *BlockExpr::getBody() const {
442 return TheBlock->getBody();
443}
444Stmt *BlockExpr::getBody() {
445 return TheBlock->getBody();
446}
Steve Naroff9ac456d2008-10-08 17:01:13 +0000447
448
Chris Lattner4b009652007-07-25 00:24:17 +0000449//===----------------------------------------------------------------------===//
450// Generic Expression Routines
451//===----------------------------------------------------------------------===//
452
Chris Lattnerd2c66552009-02-14 07:37:35 +0000453/// isUnusedResultAWarning - Return true if this immediate expression should
454/// be warned about if the result is unused. If so, fill in Loc and Ranges
455/// with location to warn on and the source range[s] to report with the
456/// warning.
457bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
458 SourceRange &R2) const {
Anders Carlsson72d3c662009-05-15 23:10:19 +0000459 // Don't warn if the expr is type dependent. The type could end up
460 // instantiating to void.
461 if (isTypeDependent())
462 return false;
463
Chris Lattner4b009652007-07-25 00:24:17 +0000464 switch (getStmtClass()) {
465 default:
Chris Lattnerd2c66552009-02-14 07:37:35 +0000466 Loc = getExprLoc();
467 R1 = getSourceRange();
468 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000469 case ParenExprClass:
Chris Lattnerd2c66552009-02-14 07:37:35 +0000470 return cast<ParenExpr>(this)->getSubExpr()->
471 isUnusedResultAWarning(Loc, R1, R2);
Chris Lattner4b009652007-07-25 00:24:17 +0000472 case UnaryOperatorClass: {
473 const UnaryOperator *UO = cast<UnaryOperator>(this);
474
475 switch (UO->getOpcode()) {
Chris Lattnerd2c66552009-02-14 07:37:35 +0000476 default: break;
Chris Lattner4b009652007-07-25 00:24:17 +0000477 case UnaryOperator::PostInc:
478 case UnaryOperator::PostDec:
479 case UnaryOperator::PreInc:
Chris Lattnerd2c66552009-02-14 07:37:35 +0000480 case UnaryOperator::PreDec: // ++/--
481 return false; // Not a warning.
Chris Lattner4b009652007-07-25 00:24:17 +0000482 case UnaryOperator::Deref:
483 // Dereferencing a volatile pointer is a side-effect.
Chris Lattnerd2c66552009-02-14 07:37:35 +0000484 if (getType().isVolatileQualified())
485 return false;
486 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000487 case UnaryOperator::Real:
488 case UnaryOperator::Imag:
489 // accessing a piece of a volatile complex is a side-effect.
Chris Lattnerd2c66552009-02-14 07:37:35 +0000490 if (UO->getSubExpr()->getType().isVolatileQualified())
491 return false;
492 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000493 case UnaryOperator::Extension:
Chris Lattnerd2c66552009-02-14 07:37:35 +0000494 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattner4b009652007-07-25 00:24:17 +0000495 }
Chris Lattnerd2c66552009-02-14 07:37:35 +0000496 Loc = UO->getOperatorLoc();
497 R1 = UO->getSubExpr()->getSourceRange();
498 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000499 }
Chris Lattneref95ffd2007-12-01 06:07:34 +0000500 case BinaryOperatorClass: {
Chris Lattnerd2c66552009-02-14 07:37:35 +0000501 const BinaryOperator *BO = cast<BinaryOperator>(this);
502 // Consider comma to have side effects if the LHS or RHS does.
503 if (BO->getOpcode() == BinaryOperator::Comma)
504 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2) ||
505 BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattneref95ffd2007-12-01 06:07:34 +0000506
Chris Lattnerd2c66552009-02-14 07:37:35 +0000507 if (BO->isAssignmentOp())
508 return false;
509 Loc = BO->getOperatorLoc();
510 R1 = BO->getLHS()->getSourceRange();
511 R2 = BO->getRHS()->getSourceRange();
512 return true;
Chris Lattneref95ffd2007-12-01 06:07:34 +0000513 }
Chris Lattner06078d22007-08-25 02:00:02 +0000514 case CompoundAssignOperatorClass:
Chris Lattnerd2c66552009-02-14 07:37:35 +0000515 return false;
Chris Lattner4b009652007-07-25 00:24:17 +0000516
Fariborz Jahanian363c59b2007-12-01 19:58:28 +0000517 case ConditionalOperatorClass: {
Chris Lattnerd2c66552009-02-14 07:37:35 +0000518 // The condition must be evaluated, but if either the LHS or RHS is a
519 // warning, warn about them.
Fariborz Jahanian363c59b2007-12-01 19:58:28 +0000520 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Mike Stump399ad182009-02-27 03:16:57 +0000521 if (Exp->getLHS() && Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2))
Chris Lattnerd2c66552009-02-14 07:37:35 +0000522 return true;
523 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2);
Fariborz Jahanian363c59b2007-12-01 19:58:28 +0000524 }
525
Chris Lattner4b009652007-07-25 00:24:17 +0000526 case MemberExprClass:
Chris Lattnerd2c66552009-02-14 07:37:35 +0000527 // If the base pointer or element is to a volatile pointer/field, accessing
528 // it is a side effect.
529 if (getType().isVolatileQualified())
530 return false;
531 Loc = cast<MemberExpr>(this)->getMemberLoc();
532 R1 = SourceRange(Loc, Loc);
533 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
534 return true;
535
Chris Lattner4b009652007-07-25 00:24:17 +0000536 case ArraySubscriptExprClass:
537 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattnerd2c66552009-02-14 07:37:35 +0000538 // it is a side effect.
539 if (getType().isVolatileQualified())
540 return false;
541 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
542 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
543 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
544 return true;
Eli Friedman21fd0292008-05-27 15:24:04 +0000545
Chris Lattner4b009652007-07-25 00:24:17 +0000546 case CallExprClass:
Eli Friedmane2846cf2009-04-29 16:35:53 +0000547 case CXXOperatorCallExprClass:
548 case CXXMemberCallExprClass: {
Chris Lattnerd2c66552009-02-14 07:37:35 +0000549 // If this is a direct call, get the callee.
550 const CallExpr *CE = cast<CallExpr>(this);
551 const Expr *CalleeExpr = CE->getCallee()->IgnoreParenCasts();
552 if (const DeclRefExpr *CalleeDRE = dyn_cast<DeclRefExpr>(CalleeExpr)) {
553 // If the callee has attribute pure, const, or warn_unused_result, warn
554 // about it. void foo() { strlen("bar"); } should warn.
555 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeDRE->getDecl()))
556 if (FD->getAttr<WarnUnusedResultAttr>() ||
557 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
558 Loc = CE->getCallee()->getLocStart();
559 R1 = CE->getCallee()->getSourceRange();
560
561 if (unsigned NumArgs = CE->getNumArgs())
562 R2 = SourceRange(CE->getArg(0)->getLocStart(),
563 CE->getArg(NumArgs-1)->getLocEnd());
564 return true;
565 }
566 }
567 return false;
568 }
Chris Lattner99f5f0b2007-09-26 22:06:30 +0000569 case ObjCMessageExprClass:
Chris Lattnerd2c66552009-02-14 07:37:35 +0000570 return false;
Chris Lattner200964f2008-07-26 19:51:01 +0000571 case StmtExprClass: {
572 // Statement exprs don't logically have side effects themselves, but are
573 // sometimes used in macros in ways that give them a type that is unused.
574 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
575 // however, if the result of the stmt expr is dead, we don't want to emit a
576 // warning.
577 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
578 if (!CS->body_empty())
579 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Chris Lattnerd2c66552009-02-14 07:37:35 +0000580 return E->isUnusedResultAWarning(Loc, R1, R2);
581
582 Loc = cast<StmtExpr>(this)->getLParenLoc();
583 R1 = getSourceRange();
584 return true;
Chris Lattner200964f2008-07-26 19:51:01 +0000585 }
Douglas Gregor035d0882008-10-28 15:36:24 +0000586 case CStyleCastExprClass:
Chris Lattnerd2c66552009-02-14 07:37:35 +0000587 // If this is a cast to void, check the operand. Otherwise, the result of
588 // the cast is unused.
589 if (getType()->isVoidType())
590 return cast<CastExpr>(this)->getSubExpr()->isUnusedResultAWarning(Loc,
591 R1, R2);
592 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
593 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
594 return true;
Argiris Kirtzidis7a1e7412008-08-22 15:38:55 +0000595 case CXXFunctionalCastExprClass:
Chris Lattner4b009652007-07-25 00:24:17 +0000596 // If this is a cast to void, check the operand. Otherwise, the result of
597 // the cast is unused.
598 if (getType()->isVoidType())
Chris Lattnerd2c66552009-02-14 07:37:35 +0000599 return cast<CastExpr>(this)->getSubExpr()->isUnusedResultAWarning(Loc,
600 R1, R2);
601 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
602 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
603 return true;
604
Eli Friedmanb924c7f2008-05-19 21:24:43 +0000605 case ImplicitCastExprClass:
606 // Check the operand, since implicit casts are inserted by Sema
Chris Lattnerd2c66552009-02-14 07:37:35 +0000607 return cast<ImplicitCastExpr>(this)
608 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Eli Friedmanb924c7f2008-05-19 21:24:43 +0000609
Chris Lattner3e254fb2008-04-08 04:40:51 +0000610 case CXXDefaultArgExprClass:
Chris Lattnerd2c66552009-02-14 07:37:35 +0000611 return cast<CXXDefaultArgExpr>(this)
612 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl19fec9d2008-11-21 19:14:01 +0000613
614 case CXXNewExprClass:
615 // FIXME: In theory, there might be new expressions that don't have side
616 // effects (e.g. a placement new with an uninitialized POD).
617 case CXXDeleteExprClass:
Chris Lattnerd2c66552009-02-14 07:37:35 +0000618 return false;
Anders Carlsson18ca4772009-05-17 21:11:30 +0000619 case CXXExprWithTemporariesClass:
620 return cast<CXXExprWithTemporaries>(this)
621 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl19fec9d2008-11-21 19:14:01 +0000622 }
Chris Lattner4b009652007-07-25 00:24:17 +0000623}
624
Douglas Gregor4459bbe2008-10-22 15:04:37 +0000625/// DeclCanBeLvalue - Determine whether the given declaration can be
626/// an lvalue. This is a helper routine for isLvalue.
627static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) {
Douglas Gregordd861062008-12-05 18:15:24 +0000628 // C++ [temp.param]p6:
629 // A non-type non-reference template-parameter is not an lvalue.
630 if (const NonTypeTemplateParmDecl *NTTParm
631 = dyn_cast<NonTypeTemplateParmDecl>(Decl))
632 return NTTParm->getType()->isReferenceType();
633
Douglas Gregor8acb7272008-12-11 16:49:14 +0000634 return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) ||
Douglas Gregor4459bbe2008-10-22 15:04:37 +0000635 // C++ 3.10p2: An lvalue refers to an object or function.
636 (Ctx.getLangOptions().CPlusPlus &&
637 (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl)));
638}
639
Chris Lattner4b009652007-07-25 00:24:17 +0000640/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
641/// incomplete type other than void. Nonarray expressions that can be lvalues:
642/// - name, where name must be a variable
643/// - e[i]
644/// - (e), where e must be an lvalue
645/// - e.name, where e must be an lvalue
646/// - e->name
647/// - *e, the type of e cannot be a function type
648/// - string-constant
Chris Lattner5bf72022007-10-30 22:53:42 +0000649/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Chris Lattner4b009652007-07-25 00:24:17 +0000650/// - reference type [C++ [expr]]
651///
Chris Lattner25168a52008-07-26 21:30:36 +0000652Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Eli Friedmane7e4dac2009-05-03 22:36:05 +0000653 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
654
655 isLvalueResult Res = isLvalueInternal(Ctx);
656 if (Res != LV_Valid || Ctx.getLangOptions().CPlusPlus)
657 return Res;
658
Douglas Gregor6573cfd2008-10-21 23:43:52 +0000659 // first, check the type (C99 6.3.2.1). Expressions with function
660 // type in C are not lvalues, but they can be lvalues in C++.
Eli Friedmane7e4dac2009-05-03 22:36:05 +0000661 if (TR->isFunctionType())
Chris Lattner4b009652007-07-25 00:24:17 +0000662 return LV_NotObjectType;
663
Steve Naroffec7736d2008-02-10 01:39:04 +0000664 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattner25168a52008-07-26 21:30:36 +0000665 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers())
Steve Naroffec7736d2008-02-10 01:39:04 +0000666 return LV_IncompleteVoidType;
667
Eli Friedmane7e4dac2009-05-03 22:36:05 +0000668 return LV_Valid;
669}
Chris Lattner4b009652007-07-25 00:24:17 +0000670
Eli Friedmane7e4dac2009-05-03 22:36:05 +0000671// Check whether the expression can be sanely treated like an l-value
672Expr::isLvalueResult Expr::isLvalueInternal(ASTContext &Ctx) const {
Chris Lattner4b009652007-07-25 00:24:17 +0000673 switch (getStmtClass()) {
Chris Lattnerc5d32632009-02-24 22:18:39 +0000674 case StringLiteralClass: // C99 6.5.1p4
675 case ObjCEncodeExprClass: // @encode behaves like its string in every way.
Anders Carlsson9e933a22007-11-30 22:47:59 +0000676 return LV_Valid;
Chris Lattner4b009652007-07-25 00:24:17 +0000677 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
678 // For vectors, make sure base is an lvalue (i.e. not a function call).
679 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner25168a52008-07-26 21:30:36 +0000680 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000681 return LV_Valid;
Douglas Gregor566782a2009-01-06 05:10:23 +0000682 case DeclRefExprClass:
683 case QualifiedDeclRefExprClass: { // C99 6.5.1p2
Douglas Gregor4459bbe2008-10-22 15:04:37 +0000684 const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
685 if (DeclCanBeLvalue(RefdDecl, Ctx))
Chris Lattner4b009652007-07-25 00:24:17 +0000686 return LV_Valid;
687 break;
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000688 }
Steve Naroffd6163f32008-09-05 22:11:13 +0000689 case BlockDeclRefExprClass: {
690 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
Steve Naroff076d6cb2008-09-26 14:41:28 +0000691 if (isa<VarDecl>(BDR->getDecl()))
Steve Naroffd6163f32008-09-05 22:11:13 +0000692 return LV_Valid;
693 break;
694 }
Douglas Gregor82d44772008-12-20 23:49:58 +0000695 case MemberExprClass: {
Chris Lattner4b009652007-07-25 00:24:17 +0000696 const MemberExpr *m = cast<MemberExpr>(this);
Douglas Gregor82d44772008-12-20 23:49:58 +0000697 if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4:
698 NamedDecl *Member = m->getMemberDecl();
699 // C++ [expr.ref]p4:
700 // If E2 is declared to have type "reference to T", then E1.E2
701 // is an lvalue.
702 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
703 if (Value->getType()->isReferenceType())
704 return LV_Valid;
705
706 // -- If E2 is a static data member [...] then E1.E2 is an lvalue.
Douglas Gregor00660582009-03-11 20:22:50 +0000707 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
Douglas Gregor82d44772008-12-20 23:49:58 +0000708 return LV_Valid;
709
710 // -- If E2 is a non-static data member [...]. If E1 is an
711 // lvalue, then E1.E2 is an lvalue.
712 if (isa<FieldDecl>(Member))
713 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
714
715 // -- If it refers to a static member function [...], then
716 // E1.E2 is an lvalue.
717 // -- Otherwise, if E1.E2 refers to a non-static member
718 // function [...], then E1.E2 is not an lvalue.
719 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
720 return Method->isStatic()? LV_Valid : LV_MemberFunction;
721
722 // -- If E2 is a member enumerator [...], the expression E1.E2
723 // is not an lvalue.
724 if (isa<EnumConstantDecl>(Member))
725 return LV_InvalidExpression;
726
727 // Not an lvalue.
728 return LV_InvalidExpression;
729 }
730
731 // C99 6.5.2.3p4
Chris Lattner25168a52008-07-26 21:30:36 +0000732 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000733 }
Chris Lattner5bf72022007-10-30 22:53:42 +0000734 case UnaryOperatorClass:
Chris Lattner4b009652007-07-25 00:24:17 +0000735 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner5bf72022007-10-30 22:53:42 +0000736 return LV_Valid; // C99 6.5.3p4
737
738 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattner1b843a22008-07-25 18:07:19 +0000739 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
740 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner25168a52008-07-26 21:30:36 +0000741 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Douglas Gregor4f6904d2008-11-19 15:42:04 +0000742
743 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1
744 (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc ||
745 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec))
746 return LV_Valid;
Chris Lattner4b009652007-07-25 00:24:17 +0000747 break;
Douglas Gregor70d26122008-11-12 17:17:38 +0000748 case ImplicitCastExprClass:
749 return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid
750 : LV_InvalidExpression;
Chris Lattner4b009652007-07-25 00:24:17 +0000751 case ParenExprClass: // C99 6.5.1p5
Chris Lattner25168a52008-07-26 21:30:36 +0000752 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Douglas Gregor70d26122008-11-12 17:17:38 +0000753 case BinaryOperatorClass:
754 case CompoundAssignOperatorClass: {
755 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
Douglas Gregor80723c52008-11-19 17:17:41 +0000756
757 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1
758 BinOp->getOpcode() == BinaryOperator::Comma)
759 return BinOp->getRHS()->isLvalue(Ctx);
760
Sebastian Redl95216a62009-02-07 00:15:38 +0000761 // C++ [expr.mptr.oper]p6
762 if ((BinOp->getOpcode() == BinaryOperator::PtrMemD ||
763 BinOp->getOpcode() == BinaryOperator::PtrMemI) &&
764 !BinOp->getType()->isFunctionType())
765 return BinOp->getLHS()->isLvalue(Ctx);
766
Douglas Gregor3d4492e2008-11-13 20:12:29 +0000767 if (!BinOp->isAssignmentOp())
Douglas Gregor70d26122008-11-12 17:17:38 +0000768 return LV_InvalidExpression;
769
Douglas Gregor3d4492e2008-11-13 20:12:29 +0000770 if (Ctx.getLangOptions().CPlusPlus)
771 // C++ [expr.ass]p1:
772 // The result of an assignment operation [...] is an lvalue.
773 return LV_Valid;
774
775
776 // C99 6.5.16:
777 // An assignment expression [...] is not an lvalue.
778 return LV_InvalidExpression;
Douglas Gregor70d26122008-11-12 17:17:38 +0000779 }
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000780 case CallExprClass:
Douglas Gregor3257fb52008-12-22 05:46:06 +0000781 case CXXOperatorCallExprClass:
782 case CXXMemberCallExprClass: {
Sebastian Redlce6fff02009-03-16 23:22:08 +0000783 // C++0x [expr.call]p10
Douglas Gregor0d5d89d2008-10-28 00:22:11 +0000784 // A function call is an lvalue if and only if the result type
Sebastian Redlce6fff02009-03-16 23:22:08 +0000785 // is an lvalue reference.
Anders Carlsson66070902009-05-26 04:57:27 +0000786 QualType ReturnType = cast<CallExpr>(this)->getCallReturnType();
787 if (ReturnType->isLValueReferenceType())
788 return LV_Valid;
Sebastian Redlce6fff02009-03-16 23:22:08 +0000789
Douglas Gregor0d5d89d2008-10-28 00:22:11 +0000790 break;
791 }
Steve Naroffc7c66532007-12-05 04:00:10 +0000792 case CompoundLiteralExprClass: // C99 6.5.2.5p5
793 return LV_Valid;
Chris Lattnera5f779dc2008-12-12 05:35:08 +0000794 case ChooseExprClass:
795 // __builtin_choose_expr is an lvalue if the selected operand is.
Eli Friedmand540c112009-03-04 05:52:32 +0000796 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->isLvalue(Ctx);
Nate Begemanaf6ed502008-04-18 23:10:10 +0000797 case ExtVectorElementExprClass:
798 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Naroffba67f692007-07-30 03:29:09 +0000799 return LV_DuplicateVectorComponents;
800 return LV_Valid;
Steve Naroff46f18f22007-11-12 14:34:27 +0000801 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
802 return LV_Valid;
Steve Naroff8fff8ce2008-05-30 23:23:16 +0000803 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
804 return LV_Valid;
Fariborz Jahanianf18d4c82008-11-22 18:39:36 +0000805 case ObjCKVCRefExprClass: // FIXME: check if read-only property.
Chris Lattnera5f779dc2008-12-12 05:35:08 +0000806 return LV_Valid;
Chris Lattner69909292008-08-10 01:53:14 +0000807 case PredefinedExprClass:
Douglas Gregora5b022a2008-11-04 14:32:21 +0000808 return LV_Valid;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000809 case CXXDefaultArgExprClass:
Chris Lattner25168a52008-07-26 21:30:36 +0000810 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Argiris Kirtzidisc821c862008-09-11 04:22:26 +0000811 case CXXConditionDeclExprClass:
812 return LV_Valid;
Douglas Gregor035d0882008-10-28 15:36:24 +0000813 case CStyleCastExprClass:
Douglas Gregor0d5d89d2008-10-28 00:22:11 +0000814 case CXXFunctionalCastExprClass:
815 case CXXStaticCastExprClass:
816 case CXXDynamicCastExprClass:
817 case CXXReinterpretCastExprClass:
818 case CXXConstCastExprClass:
819 // The result of an explicit cast is an lvalue if the type we are
Sebastian Redlce6fff02009-03-16 23:22:08 +0000820 // casting to is an lvalue reference type. See C++ [expr.cast]p1,
Douglas Gregor0d5d89d2008-10-28 00:22:11 +0000821 // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2,
822 // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1.
Sebastian Redlce6fff02009-03-16 23:22:08 +0000823 if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->
824 isLValueReferenceType())
Douglas Gregor0d5d89d2008-10-28 00:22:11 +0000825 return LV_Valid;
826 break;
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000827 case CXXTypeidExprClass:
828 // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ...
829 return LV_Valid;
Sebastian Redld3169132009-04-17 16:30:52 +0000830 case ConditionalOperatorClass: {
831 // Complicated handling is only for C++.
832 if (!Ctx.getLangOptions().CPlusPlus)
833 return LV_InvalidExpression;
834
835 // Sema should have taken care to ensure that a CXXTemporaryObjectExpr is
836 // everywhere there's an object converted to an rvalue. Also, any other
837 // casts should be wrapped by ImplicitCastExprs. There's just the special
838 // case involving throws to work out.
839 const ConditionalOperator *Cond = cast<ConditionalOperator>(this);
Douglas Gregor0816e822009-05-19 20:13:50 +0000840 Expr *True = Cond->getTrueExpr();
841 Expr *False = Cond->getFalseExpr();
Sebastian Redld3169132009-04-17 16:30:52 +0000842 // C++0x 5.16p2
843 // If either the second or the third operand has type (cv) void, [...]
844 // the result [...] is an rvalue.
Douglas Gregor0816e822009-05-19 20:13:50 +0000845 if (True->getType()->isVoidType() || False->getType()->isVoidType())
Sebastian Redld3169132009-04-17 16:30:52 +0000846 return LV_InvalidExpression;
847
848 // Both sides must be lvalues for the result to be an lvalue.
Douglas Gregor0816e822009-05-19 20:13:50 +0000849 if (True->isLvalue(Ctx) != LV_Valid || False->isLvalue(Ctx) != LV_Valid)
Sebastian Redld3169132009-04-17 16:30:52 +0000850 return LV_InvalidExpression;
851
852 // That's it.
853 return LV_Valid;
854 }
855
Chris Lattner4b009652007-07-25 00:24:17 +0000856 default:
857 break;
858 }
859 return LV_InvalidExpression;
860}
861
862/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
863/// does not have an incomplete type, does not have a const-qualified type, and
864/// if it is a structure or union, does not have any member (including,
865/// recursively, any member or element of all contained aggregates or unions)
866/// with a const-qualified type.
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +0000867Expr::isModifiableLvalueResult
868Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
Chris Lattner25168a52008-07-26 21:30:36 +0000869 isLvalueResult lvalResult = isLvalue(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000870
871 switch (lvalResult) {
Douglas Gregor26a4c5f2008-10-22 00:03:08 +0000872 case LV_Valid:
873 // C++ 3.10p11: Functions cannot be modified, but pointers to
874 // functions can be modifiable.
875 if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
876 return MLV_NotObjectType;
877 break;
878
Chris Lattner4b009652007-07-25 00:24:17 +0000879 case LV_NotObjectType: return MLV_NotObjectType;
880 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Naroffba67f692007-07-30 03:29:09 +0000881 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattner37fb9402008-11-17 19:51:54 +0000882 case LV_InvalidExpression:
883 // If the top level is a C-style cast, and the subexpression is a valid
884 // lvalue, then this is probably a use of the old-school "cast as lvalue"
885 // GCC extension. We don't support it, but we want to produce good
886 // diagnostics when it happens so that the user knows why.
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +0000887 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(IgnoreParens())) {
888 if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) {
889 if (Loc)
890 *Loc = CE->getLParenLoc();
Chris Lattner37fb9402008-11-17 19:51:54 +0000891 return MLV_LValueCast;
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +0000892 }
893 }
Chris Lattner37fb9402008-11-17 19:51:54 +0000894 return MLV_InvalidExpression;
Douglas Gregor82d44772008-12-20 23:49:58 +0000895 case LV_MemberFunction: return MLV_MemberFunction;
Chris Lattner4b009652007-07-25 00:24:17 +0000896 }
Eli Friedman91571da2009-03-22 23:26:56 +0000897
898 // The following is illegal:
899 // void takeclosure(void (^C)(void));
900 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
901 //
Chris Lattnerfb52eba2009-03-23 17:57:53 +0000902 if (isa<BlockDeclRefExpr>(this)) {
Eli Friedman91571da2009-03-22 23:26:56 +0000903 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
904 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
905 return MLV_NotBlockQualified;
906 }
907
Chris Lattnera1923f62008-08-04 07:31:14 +0000908 QualType CT = Ctx.getCanonicalType(getType());
909
910 if (CT.isConstQualified())
Chris Lattner4b009652007-07-25 00:24:17 +0000911 return MLV_ConstQualified;
Chris Lattnera1923f62008-08-04 07:31:14 +0000912 if (CT->isArrayType())
Chris Lattner4b009652007-07-25 00:24:17 +0000913 return MLV_ArrayType;
Chris Lattnera1923f62008-08-04 07:31:14 +0000914 if (CT->isIncompleteType())
Chris Lattner4b009652007-07-25 00:24:17 +0000915 return MLV_IncompleteType;
916
Chris Lattnera1923f62008-08-04 07:31:14 +0000917 if (const RecordType *r = CT->getAsRecordType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000918 if (r->hasConstFields())
919 return MLV_ConstQualified;
920 }
Fariborz Jahanianf96ee9e2009-01-12 19:55:42 +0000921
Fariborz Jahanianc05da422008-11-22 20:25:50 +0000922 // Assigning to an 'implicit' property?
Chris Lattnerfb52eba2009-03-23 17:57:53 +0000923 else if (isa<ObjCKVCRefExpr>(this)) {
Fariborz Jahanianc05da422008-11-22 20:25:50 +0000924 const ObjCKVCRefExpr* KVCExpr = cast<ObjCKVCRefExpr>(this);
925 if (KVCExpr->getSetterMethod() == 0)
926 return MLV_NoSetterProperty;
927 }
Chris Lattner4b009652007-07-25 00:24:17 +0000928 return MLV_Valid;
929}
930
Ted Kremenek5778d622008-02-27 18:39:48 +0000931/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner743ec372007-11-27 21:35:27 +0000932/// duration. This means that the address of this expression is a link-time
933/// constant.
Ted Kremenek5778d622008-02-27 18:39:48 +0000934bool Expr::hasGlobalStorage() const {
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000935 switch (getStmtClass()) {
936 default:
937 return false;
Steve Naroff7ceff372009-04-16 19:02:57 +0000938 case BlockExprClass:
939 return true;
Chris Lattner743ec372007-11-27 21:35:27 +0000940 case ParenExprClass:
Ted Kremenek5778d622008-02-27 18:39:48 +0000941 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner743ec372007-11-27 21:35:27 +0000942 case ImplicitCastExprClass:
Ted Kremenek5778d622008-02-27 18:39:48 +0000943 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffbe37fc02008-01-14 18:19:28 +0000944 case CompoundLiteralExprClass:
945 return cast<CompoundLiteralExpr>(this)->isFileScope();
Douglas Gregor566782a2009-01-06 05:10:23 +0000946 case DeclRefExprClass:
947 case QualifiedDeclRefExprClass: {
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000948 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
949 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek5778d622008-02-27 18:39:48 +0000950 return VD->hasGlobalStorage();
Seo Sanghyeone330ae72008-04-04 09:45:30 +0000951 if (isa<FunctionDecl>(D))
952 return true;
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000953 return false;
954 }
Chris Lattnerdb586bf2007-11-28 04:30:09 +0000955 case MemberExprClass: {
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000956 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek5778d622008-02-27 18:39:48 +0000957 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerdb586bf2007-11-28 04:30:09 +0000958 }
Chris Lattner743ec372007-11-27 21:35:27 +0000959 case ArraySubscriptExprClass:
Ted Kremenek5778d622008-02-27 18:39:48 +0000960 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattner69909292008-08-10 01:53:14 +0000961 case PredefinedExprClass:
Chris Lattner7e637512008-01-12 08:14:25 +0000962 return true;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000963 case CXXDefaultArgExprClass:
964 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000965 }
966}
967
Fariborz Jahanian0c195b92009-02-22 18:40:18 +0000968/// isOBJCGCCandidate - Check if an expression is objc gc'able.
969///
Fariborz Jahanian0ceca872009-06-01 21:29:32 +0000970bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Fariborz Jahanian0c195b92009-02-22 18:40:18 +0000971 switch (getStmtClass()) {
972 default:
973 return false;
974 case ObjCIvarRefExprClass:
975 return true;
Fariborz Jahanian2224fb22009-02-23 18:59:50 +0000976 case Expr::UnaryOperatorClass:
Fariborz Jahanian0ceca872009-06-01 21:29:32 +0000977 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian0c195b92009-02-22 18:40:18 +0000978 case ParenExprClass:
Fariborz Jahanian0ceca872009-06-01 21:29:32 +0000979 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian0c195b92009-02-22 18:40:18 +0000980 case ImplicitCastExprClass:
Fariborz Jahanian0ceca872009-06-01 21:29:32 +0000981 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian2b6d9ed2009-05-05 23:28:21 +0000982 case CStyleCastExprClass:
Fariborz Jahanian0ceca872009-06-01 21:29:32 +0000983 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian0c195b92009-02-22 18:40:18 +0000984 case DeclRefExprClass:
985 case QualifiedDeclRefExprClass: {
986 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
Fariborz Jahanian0ceca872009-06-01 21:29:32 +0000987 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
988 if (VD->hasGlobalStorage())
989 return true;
990 QualType T = VD->getType();
991 // dereferencing to an object pointer is always a gc'able candidate
992 if (T->isPointerType() &&
993 Ctx.isObjCObjectPointerType(T->getAsPointerType()->getPointeeType()))
994 return true;
995
996 }
Fariborz Jahanian0c195b92009-02-22 18:40:18 +0000997 return false;
998 }
999 case MemberExprClass: {
1000 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanian0ceca872009-06-01 21:29:32 +00001001 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian0c195b92009-02-22 18:40:18 +00001002 }
1003 case ArraySubscriptExprClass:
Fariborz Jahanian0ceca872009-06-01 21:29:32 +00001004 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian0c195b92009-02-22 18:40:18 +00001005 }
1006}
Ted Kremenek87e30c52008-01-17 16:57:34 +00001007Expr* Expr::IgnoreParens() {
1008 Expr* E = this;
1009 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
1010 E = P->getSubExpr();
1011
1012 return E;
1013}
1014
Chris Lattner7a48d9c2008-02-13 01:02:39 +00001015/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
1016/// or CastExprs or ImplicitCastExprs, returning their operand.
1017Expr *Expr::IgnoreParenCasts() {
1018 Expr *E = this;
1019 while (true) {
1020 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
1021 E = P->getSubExpr();
1022 else if (CastExpr *P = dyn_cast<CastExpr>(E))
1023 E = P->getSubExpr();
Chris Lattner7a48d9c2008-02-13 01:02:39 +00001024 else
1025 return E;
1026 }
1027}
1028
Chris Lattnerab0b8b12009-03-13 17:28:01 +00001029/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
1030/// value (including ptr->int casts of the same size). Strip off any
1031/// ParenExpr or CastExprs, returning their operand.
1032Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
1033 Expr *E = this;
1034 while (true) {
1035 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
1036 E = P->getSubExpr();
1037 continue;
1038 }
1039
1040 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
1041 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
1042 // ptr<->int casts of the same width. We also ignore all identify casts.
1043 Expr *SE = P->getSubExpr();
1044
1045 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
1046 E = SE;
1047 continue;
1048 }
1049
1050 if ((E->getType()->isPointerType() || E->getType()->isIntegralType()) &&
1051 (SE->getType()->isPointerType() || SE->getType()->isIntegralType()) &&
1052 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1053 E = SE;
1054 continue;
1055 }
1056 }
1057
1058 return E;
1059 }
1060}
1061
1062
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001063/// hasAnyTypeDependentArguments - Determines if any of the expressions
1064/// in Exprs is type-dependent.
1065bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1066 for (unsigned I = 0; I < NumExprs; ++I)
1067 if (Exprs[I]->isTypeDependent())
1068 return true;
1069
1070 return false;
1071}
1072
1073/// hasAnyValueDependentArguments - Determines if any of the expressions
1074/// in Exprs is value-dependent.
1075bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1076 for (unsigned I = 0; I < NumExprs; ++I)
1077 if (Exprs[I]->isValueDependent())
1078 return true;
1079
1080 return false;
1081}
1082
Eli Friedmandee41122009-01-25 02:32:41 +00001083bool Expr::isConstantInitializer(ASTContext &Ctx) const {
Eli Friedman2b0dec52009-01-25 03:12:18 +00001084 // This function is attempting whether an expression is an initializer
1085 // which can be evaluated at compile-time. isEvaluatable handles most
1086 // of the cases, but it can't deal with some initializer-specific
1087 // expressions, and it can't deal with aggregates; we deal with those here,
1088 // and fall back to isEvaluatable for the other cases.
1089
Eli Friedman3dc50ed2009-02-20 02:36:22 +00001090 // FIXME: This function assumes the variable being assigned to
1091 // isn't a reference type!
1092
Anders Carlssona7fa2aa2008-11-24 05:23:59 +00001093 switch (getStmtClass()) {
Eli Friedman2b0dec52009-01-25 03:12:18 +00001094 default: break;
Anders Carlssona7fa2aa2008-11-24 05:23:59 +00001095 case StringLiteralClass:
Chris Lattnerc5d32632009-02-24 22:18:39 +00001096 case ObjCEncodeExprClass:
Anders Carlssona7fa2aa2008-11-24 05:23:59 +00001097 return true;
Nate Begemand6d2f772009-01-18 03:20:47 +00001098 case CompoundLiteralExprClass: {
Eli Friedman3dc50ed2009-02-20 02:36:22 +00001099 // This handles gcc's extension that allows global initializers like
1100 // "struct x {int x;} x = (struct x) {};".
1101 // FIXME: This accepts other cases it shouldn't!
Nate Begemand6d2f772009-01-18 03:20:47 +00001102 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
Eli Friedmandee41122009-01-25 02:32:41 +00001103 return Exp->isConstantInitializer(Ctx);
Nate Begemand6d2f772009-01-18 03:20:47 +00001104 }
Anders Carlssona7fa2aa2008-11-24 05:23:59 +00001105 case InitListExprClass: {
Eli Friedman3dc50ed2009-02-20 02:36:22 +00001106 // FIXME: This doesn't deal with fields with reference types correctly.
1107 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1108 // to bitfields.
Anders Carlssona7fa2aa2008-11-24 05:23:59 +00001109 const InitListExpr *Exp = cast<InitListExpr>(this);
1110 unsigned numInits = Exp->getNumInits();
1111 for (unsigned i = 0; i < numInits; i++) {
Eli Friedmandee41122009-01-25 02:32:41 +00001112 if (!Exp->getInit(i)->isConstantInitializer(Ctx))
Anders Carlssona7fa2aa2008-11-24 05:23:59 +00001113 return false;
1114 }
Eli Friedman2b0dec52009-01-25 03:12:18 +00001115 return true;
Anders Carlssona7fa2aa2008-11-24 05:23:59 +00001116 }
Douglas Gregorc9e012a2009-01-29 17:44:32 +00001117 case ImplicitValueInitExprClass:
1118 return true;
Eli Friedman2b0dec52009-01-25 03:12:18 +00001119 case ParenExprClass: {
1120 return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1121 }
1122 case UnaryOperatorClass: {
1123 const UnaryOperator* Exp = cast<UnaryOperator>(this);
1124 if (Exp->getOpcode() == UnaryOperator::Extension)
1125 return Exp->getSubExpr()->isConstantInitializer(Ctx);
1126 break;
1127 }
Chris Lattner3e0eaf82009-04-21 05:19:11 +00001128 case ImplicitCastExprClass:
Eli Friedman2b0dec52009-01-25 03:12:18 +00001129 case CStyleCastExprClass:
1130 // Handle casts with a destination that's a struct or union; this
1131 // deals with both the gcc no-op struct cast extension and the
1132 // cast-to-union extension.
1133 if (getType()->isRecordType())
1134 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1135 break;
Anders Carlssona7fa2aa2008-11-24 05:23:59 +00001136 }
1137
Eli Friedman2b0dec52009-01-25 03:12:18 +00001138 return isEvaluatable(Ctx);
Steve Naroff7c9d72d2007-09-02 20:30:18 +00001139}
1140
Chris Lattner4b009652007-07-25 00:24:17 +00001141/// isIntegerConstantExpr - this recursive routine will test if an expression is
Eli Friedman7beeda62009-02-26 09:29:13 +00001142/// an integer constant expression.
Chris Lattner4b009652007-07-25 00:24:17 +00001143
1144/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
1145/// comma, etc
1146///
Chris Lattner4b009652007-07-25 00:24:17 +00001147/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
1148/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
1149/// cast+dereference.
Daniel Dunbar168b20c2009-02-18 00:47:45 +00001150
Eli Friedman7beeda62009-02-26 09:29:13 +00001151// CheckICE - This function does the fundamental ICE checking: the returned
1152// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
1153// Note that to reduce code duplication, this helper does no evaluation
1154// itself; the caller checks whether the expression is evaluatable, and
1155// in the rare cases where CheckICE actually cares about the evaluated
1156// value, it calls into Evalute.
1157//
1158// Meanings of Val:
1159// 0: This expression is an ICE if it can be evaluated by Evaluate.
1160// 1: This expression is not an ICE, but if it isn't evaluated, it's
1161// a legal subexpression for an ICE. This return value is used to handle
1162// the comma operator in C99 mode.
1163// 2: This expression is not an ICE, and is not a legal subexpression for one.
1164
1165struct ICEDiag {
1166 unsigned Val;
1167 SourceLocation Loc;
1168
1169 public:
1170 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
1171 ICEDiag() : Val(0) {}
1172};
1173
1174ICEDiag NoDiag() { return ICEDiag(); }
1175
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001176static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
1177 Expr::EvalResult EVResult;
1178 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1179 !EVResult.Val.isInt()) {
1180 return ICEDiag(2, E->getLocStart());
1181 }
1182 return NoDiag();
1183}
1184
Eli Friedman7beeda62009-02-26 09:29:13 +00001185static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
Anders Carlsson8b842c52009-03-14 00:33:21 +00001186 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Eli Friedman7beeda62009-02-26 09:29:13 +00001187 if (!E->getType()->isIntegralType()) {
1188 return ICEDiag(2, E->getLocStart());
Eli Friedman14cc7542008-11-13 06:09:17 +00001189 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001190
1191 switch (E->getStmtClass()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001192 default:
Eli Friedman7beeda62009-02-26 09:29:13 +00001193 return ICEDiag(2, E->getLocStart());
1194 case Expr::ParenExprClass:
1195 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
1196 case Expr::IntegerLiteralClass:
1197 case Expr::CharacterLiteralClass:
1198 case Expr::CXXBoolLiteralExprClass:
1199 case Expr::CXXZeroInitValueExprClass:
1200 case Expr::TypesCompatibleExprClass:
1201 case Expr::UnaryTypeTraitExprClass:
1202 return NoDiag();
1203 case Expr::CallExprClass:
1204 case Expr::CXXOperatorCallExprClass: {
1205 const CallExpr *CE = cast<CallExpr>(E);
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001206 if (CE->isBuiltinCall(Ctx))
1207 return CheckEvalInICE(E, Ctx);
Eli Friedman7beeda62009-02-26 09:29:13 +00001208 return ICEDiag(2, E->getLocStart());
Chris Lattner4b009652007-07-25 00:24:17 +00001209 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001210 case Expr::DeclRefExprClass:
1211 case Expr::QualifiedDeclRefExprClass:
1212 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
1213 return NoDiag();
Sebastian Redl57ef46a2009-02-07 13:06:23 +00001214 if (Ctx.getLangOptions().CPlusPlus &&
Eli Friedman7beeda62009-02-26 09:29:13 +00001215 E->getType().getCVRQualifiers() == QualType::Const) {
Sebastian Redl57ef46a2009-02-07 13:06:23 +00001216 // C++ 7.1.5.1p2
1217 // A variable of non-volatile const-qualified integral or enumeration
1218 // type initialized by an ICE can be used in ICEs.
1219 if (const VarDecl *Dcl =
Eli Friedman7beeda62009-02-26 09:29:13 +00001220 dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) {
Douglas Gregor4833ff02009-05-26 18:54:04 +00001221 if (Dcl->isInitKnownICE()) {
1222 // We have already checked whether this subexpression is an
1223 // integral constant expression.
1224 if (Dcl->isInitICE())
1225 return NoDiag();
1226 else
1227 return ICEDiag(2, E->getLocStart());
1228 }
1229
1230 if (const Expr *Init = Dcl->getInit()) {
1231 ICEDiag Result = CheckICE(Init, Ctx);
1232 // Cache the result of the ICE test.
1233 Dcl->setInitKnownICE(Ctx, Result.Val == 0);
1234 return Result;
1235 }
Sebastian Redl57ef46a2009-02-07 13:06:23 +00001236 }
1237 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001238 return ICEDiag(2, E->getLocStart());
1239 case Expr::UnaryOperatorClass: {
1240 const UnaryOperator *Exp = cast<UnaryOperator>(E);
Chris Lattner4b009652007-07-25 00:24:17 +00001241 switch (Exp->getOpcode()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001242 default:
Eli Friedman7beeda62009-02-26 09:29:13 +00001243 return ICEDiag(2, E->getLocStart());
Chris Lattner4b009652007-07-25 00:24:17 +00001244 case UnaryOperator::Extension:
Eli Friedman7beeda62009-02-26 09:29:13 +00001245 case UnaryOperator::LNot:
Chris Lattner4b009652007-07-25 00:24:17 +00001246 case UnaryOperator::Plus:
Chris Lattner4b009652007-07-25 00:24:17 +00001247 case UnaryOperator::Minus:
Chris Lattner4b009652007-07-25 00:24:17 +00001248 case UnaryOperator::Not:
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001249 case UnaryOperator::Real:
1250 case UnaryOperator::Imag:
Eli Friedman7beeda62009-02-26 09:29:13 +00001251 return CheckICE(Exp->getSubExpr(), Ctx);
Anders Carlsson52774ad2008-01-29 15:56:48 +00001252 case UnaryOperator::OffsetOf:
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001253 // Note that per C99, offsetof must be an ICE. And AFAIK, using
1254 // Evaluate matches the proposed gcc behavior for cases like
1255 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
1256 // compliance: we should warn earlier for offsetof expressions with
1257 // array subscripts that aren't ICEs, and if the array subscripts
1258 // are ICEs, the value of the offsetof must be an integer constant.
1259 return CheckEvalInICE(E, Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +00001260 }
Chris Lattner4b009652007-07-25 00:24:17 +00001261 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001262 case Expr::SizeOfAlignOfExprClass: {
1263 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
1264 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
1265 return ICEDiag(2, E->getLocStart());
1266 return NoDiag();
Chris Lattner4b009652007-07-25 00:24:17 +00001267 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001268 case Expr::BinaryOperatorClass: {
1269 const BinaryOperator *Exp = cast<BinaryOperator>(E);
Chris Lattner4b009652007-07-25 00:24:17 +00001270 switch (Exp->getOpcode()) {
1271 default:
Eli Friedman7beeda62009-02-26 09:29:13 +00001272 return ICEDiag(2, E->getLocStart());
Chris Lattner4b009652007-07-25 00:24:17 +00001273 case BinaryOperator::Mul:
Chris Lattner4b009652007-07-25 00:24:17 +00001274 case BinaryOperator::Div:
Chris Lattner4b009652007-07-25 00:24:17 +00001275 case BinaryOperator::Rem:
Eli Friedman7beeda62009-02-26 09:29:13 +00001276 case BinaryOperator::Add:
1277 case BinaryOperator::Sub:
Chris Lattner4b009652007-07-25 00:24:17 +00001278 case BinaryOperator::Shl:
Chris Lattner4b009652007-07-25 00:24:17 +00001279 case BinaryOperator::Shr:
Eli Friedman7beeda62009-02-26 09:29:13 +00001280 case BinaryOperator::LT:
1281 case BinaryOperator::GT:
1282 case BinaryOperator::LE:
1283 case BinaryOperator::GE:
1284 case BinaryOperator::EQ:
1285 case BinaryOperator::NE:
1286 case BinaryOperator::And:
1287 case BinaryOperator::Xor:
1288 case BinaryOperator::Or:
1289 case BinaryOperator::Comma: {
1290 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1291 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001292 if (Exp->getOpcode() == BinaryOperator::Div ||
1293 Exp->getOpcode() == BinaryOperator::Rem) {
1294 // Evaluate gives an error for undefined Div/Rem, so make sure
1295 // we don't evaluate one.
1296 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
1297 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
1298 if (REval == 0)
1299 return ICEDiag(1, E->getLocStart());
1300 if (REval.isSigned() && REval.isAllOnesValue()) {
1301 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
1302 if (LEval.isMinSignedValue())
1303 return ICEDiag(1, E->getLocStart());
1304 }
1305 }
1306 }
1307 if (Exp->getOpcode() == BinaryOperator::Comma) {
1308 if (Ctx.getLangOptions().C99) {
1309 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
1310 // if it isn't evaluated.
1311 if (LHSResult.Val == 0 && RHSResult.Val == 0)
1312 return ICEDiag(1, E->getLocStart());
1313 } else {
1314 // In both C89 and C++, commas in ICEs are illegal.
1315 return ICEDiag(2, E->getLocStart());
1316 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001317 }
1318 if (LHSResult.Val >= RHSResult.Val)
1319 return LHSResult;
1320 return RHSResult;
1321 }
Chris Lattner4b009652007-07-25 00:24:17 +00001322 case BinaryOperator::LAnd:
Eli Friedman7beeda62009-02-26 09:29:13 +00001323 case BinaryOperator::LOr: {
1324 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1325 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
1326 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
1327 // Rare case where the RHS has a comma "side-effect"; we need
1328 // to actually check the condition to see whether the side
1329 // with the comma is evaluated.
Eli Friedman7beeda62009-02-26 09:29:13 +00001330 if ((Exp->getOpcode() == BinaryOperator::LAnd) !=
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001331 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
Eli Friedman7beeda62009-02-26 09:29:13 +00001332 return RHSResult;
1333 return NoDiag();
Eli Friedmanb2935ab2008-11-13 02:13:11 +00001334 }
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001335
Eli Friedman7beeda62009-02-26 09:29:13 +00001336 if (LHSResult.Val >= RHSResult.Val)
1337 return LHSResult;
1338 return RHSResult;
Chris Lattner4b009652007-07-25 00:24:17 +00001339 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001340 }
Chris Lattner4b009652007-07-25 00:24:17 +00001341 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001342 case Expr::ImplicitCastExprClass:
1343 case Expr::CStyleCastExprClass:
1344 case Expr::CXXFunctionalCastExprClass: {
1345 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
1346 if (SubExpr->getType()->isIntegralType())
1347 return CheckICE(SubExpr, Ctx);
1348 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
1349 return NoDiag();
1350 return ICEDiag(2, E->getLocStart());
Chris Lattner4b009652007-07-25 00:24:17 +00001351 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001352 case Expr::ConditionalOperatorClass: {
1353 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
Chris Lattner45e71bf2008-12-12 06:55:44 +00001354 // If the condition (ignoring parens) is a __builtin_constant_p call,
1355 // then only the true side is actually considered in an integer constant
Chris Lattner2a6a5b32008-12-12 18:00:51 +00001356 // expression, and it is fully evaluated. This is an important GNU
1357 // extension. See GCC PR38377 for discussion.
Eli Friedman7beeda62009-02-26 09:29:13 +00001358 if (const CallExpr *CallCE = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Douglas Gregorb5af7382009-02-14 18:57:46 +00001359 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
Eli Friedman7beeda62009-02-26 09:29:13 +00001360 Expr::EvalResult EVResult;
1361 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1362 !EVResult.Val.isInt()) {
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001363 return ICEDiag(2, E->getLocStart());
Eli Friedman7beeda62009-02-26 09:29:13 +00001364 }
1365 return NoDiag();
Chris Lattner2a6a5b32008-12-12 18:00:51 +00001366 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001367 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
1368 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
1369 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
1370 if (CondResult.Val == 2)
1371 return CondResult;
1372 if (TrueResult.Val == 2)
1373 return TrueResult;
1374 if (FalseResult.Val == 2)
1375 return FalseResult;
1376 if (CondResult.Val == 1)
1377 return CondResult;
1378 if (TrueResult.Val == 0 && FalseResult.Val == 0)
1379 return NoDiag();
1380 // Rare case where the diagnostics depend on which side is evaluated
1381 // Note that if we get here, CondResult is 0, and at least one of
1382 // TrueResult and FalseResult is non-zero.
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001383 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
Eli Friedman7beeda62009-02-26 09:29:13 +00001384 return FalseResult;
1385 }
1386 return TrueResult;
Chris Lattner4b009652007-07-25 00:24:17 +00001387 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001388 case Expr::CXXDefaultArgExprClass:
1389 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001390 case Expr::ChooseExprClass: {
Eli Friedmand540c112009-03-04 05:52:32 +00001391 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001392 }
Chris Lattner4b009652007-07-25 00:24:17 +00001393 }
Eli Friedman7beeda62009-02-26 09:29:13 +00001394}
Chris Lattner4b009652007-07-25 00:24:17 +00001395
Eli Friedman7beeda62009-02-26 09:29:13 +00001396bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
1397 SourceLocation *Loc, bool isEvaluated) const {
1398 ICEDiag d = CheckICE(this, Ctx);
1399 if (d.Val != 0) {
1400 if (Loc) *Loc = d.Loc;
1401 return false;
1402 }
1403 EvalResult EvalResult;
Eli Friedmand65bbbc2009-02-27 04:07:58 +00001404 if (!Evaluate(EvalResult, Ctx))
1405 assert(0 && "ICE cannot be evaluated!");
1406 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
1407 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
Eli Friedman7beeda62009-02-26 09:29:13 +00001408 Result = EvalResult.Val.getInt();
Chris Lattner4b009652007-07-25 00:24:17 +00001409 return true;
1410}
1411
Chris Lattner4b009652007-07-25 00:24:17 +00001412/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1413/// integer constant expression with the value zero, or if this is one that is
1414/// cast to void*.
Anders Carlsson2ce7c3d2008-12-01 02:13:57 +00001415bool Expr::isNullPointerConstant(ASTContext &Ctx) const
1416{
Sebastian Redl9ac68aa2008-10-31 14:43:28 +00001417 // Strip off a cast to void*, if it exists. Except in C++.
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00001418 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl3768d272008-11-04 11:45:54 +00001419 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl9ac68aa2008-10-31 14:43:28 +00001420 // Check that it is a cast to void*.
1421 if (const PointerType *PT = CE->getType()->getAsPointerType()) {
1422 QualType Pointee = PT->getPointeeType();
1423 if (Pointee.getCVRQualifiers() == 0 &&
1424 Pointee->isVoidType() && // to void*
1425 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Anders Carlssonf8aa8702008-12-01 06:28:23 +00001426 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Sebastian Redl9ac68aa2008-10-31 14:43:28 +00001427 }
Chris Lattner4b009652007-07-25 00:24:17 +00001428 }
Steve Naroffa2e53222008-01-14 16:10:57 +00001429 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1430 // Ignore the ImplicitCastExpr type entirely.
Anders Carlssonf8aa8702008-12-01 06:28:23 +00001431 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
Steve Naroffa2e53222008-01-14 16:10:57 +00001432 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1433 // Accept ((void*)0) as a null pointer constant, as many other
1434 // implementations do.
Anders Carlssonf8aa8702008-12-01 06:28:23 +00001435 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner97316c02008-04-10 02:22:51 +00001436 } else if (const CXXDefaultArgExpr *DefaultArg
1437 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00001438 // See through default argument expressions
Anders Carlssonf8aa8702008-12-01 06:28:23 +00001439 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Douglas Gregorad4b3792008-11-29 04:51:27 +00001440 } else if (isa<GNUNullExpr>(this)) {
1441 // The GNU __null extension is always a null pointer constant.
1442 return true;
Steve Narofff33a9852008-01-14 02:53:34 +00001443 }
Douglas Gregorad4b3792008-11-29 04:51:27 +00001444
Sebastian Redl5d0ead72009-05-10 18:38:11 +00001445 // C++0x nullptr_t is always a null pointer constant.
1446 if (getType()->isNullPtrType())
1447 return true;
1448
Steve Naroffa2e53222008-01-14 16:10:57 +00001449 // This expression must be an integer type.
1450 if (!getType()->isIntegerType())
1451 return false;
1452
Chris Lattner4b009652007-07-25 00:24:17 +00001453 // If we have an integer constant expression, we need to *evaluate* it and
1454 // test for the value 0.
Eli Friedman4b4e14b2009-04-25 22:37:12 +00001455 llvm::APSInt Result;
1456 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001457}
Steve Naroffc11705f2007-07-28 23:10:27 +00001458
Douglas Gregor531434b2009-05-02 02:18:30 +00001459FieldDecl *Expr::getBitField() {
Douglas Gregor81c29152008-10-29 00:13:59 +00001460 Expr *E = this->IgnoreParenCasts();
Douglas Gregor531434b2009-05-02 02:18:30 +00001461
Douglas Gregor81c29152008-10-29 00:13:59 +00001462 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor82d44772008-12-20 23:49:58 +00001463 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor531434b2009-05-02 02:18:30 +00001464 if (Field->isBitField())
1465 return Field;
1466
1467 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
1468 if (BinOp->isAssignmentOp() && BinOp->getLHS())
1469 return BinOp->getLHS()->getBitField();
1470
1471 return 0;
Douglas Gregor81c29152008-10-29 00:13:59 +00001472}
1473
Chris Lattner98e7fcc2009-02-16 22:14:05 +00001474/// isArrow - Return true if the base expression is a pointer to vector,
1475/// return false if the base expression is a vector.
1476bool ExtVectorElementExpr::isArrow() const {
1477 return getBase()->getType()->isPointerType();
1478}
1479
Nate Begemanaf6ed502008-04-18 23:10:10 +00001480unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begemanc8e51f82008-05-09 06:41:27 +00001481 if (const VectorType *VT = getType()->getAsVectorType())
1482 return VT->getNumElements();
1483 return 1;
Chris Lattner50547852007-08-03 16:00:20 +00001484}
1485
Nate Begemanc8e51f82008-05-09 06:41:27 +00001486/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begemanaf6ed502008-04-18 23:10:10 +00001487bool ExtVectorElementExpr::containsDuplicateElements() const {
Douglas Gregorec0b8292009-04-15 23:02:49 +00001488 const char *compStr = Accessor->getName();
1489 unsigned length = Accessor->getLength();
Nate Begemana8e117c2009-01-18 02:01:21 +00001490
1491 // Halving swizzles do not contain duplicate elements.
1492 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
1493 !strcmp(compStr, "even") || !strcmp(compStr, "odd"))
1494 return false;
1495
1496 // Advance past s-char prefix on hex swizzles.
1497 if (*compStr == 's') {
1498 compStr++;
1499 length--;
1500 }
Steve Naroffba67f692007-07-30 03:29:09 +00001501
Chris Lattner58d3fa52008-11-19 07:55:04 +00001502 for (unsigned i = 0; i != length-1; i++) {
Steve Naroffba67f692007-07-30 03:29:09 +00001503 const char *s = compStr+i;
1504 for (const char c = *s++; *s; s++)
1505 if (c == *s)
1506 return true;
1507 }
1508 return false;
1509}
Chris Lattner42158e72007-08-02 23:36:59 +00001510
Nate Begemanc8e51f82008-05-09 06:41:27 +00001511/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begemana1ae7442008-05-13 21:03:02 +00001512void ExtVectorElementExpr::getEncodedElementAccess(
1513 llvm::SmallVectorImpl<unsigned> &Elts) const {
Douglas Gregorec0b8292009-04-15 23:02:49 +00001514 const char *compStr = Accessor->getName();
Nate Begeman1486b502009-01-18 01:47:54 +00001515 if (*compStr == 's')
1516 compStr++;
1517
1518 bool isHi = !strcmp(compStr, "hi");
1519 bool isLo = !strcmp(compStr, "lo");
1520 bool isEven = !strcmp(compStr, "even");
1521 bool isOdd = !strcmp(compStr, "odd");
1522
Nate Begemanc8e51f82008-05-09 06:41:27 +00001523 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1524 uint64_t Index;
1525
1526 if (isHi)
1527 Index = e + i;
1528 else if (isLo)
1529 Index = i;
1530 else if (isEven)
1531 Index = 2 * i;
1532 else if (isOdd)
1533 Index = 2 * i + 1;
1534 else
1535 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattner42158e72007-08-02 23:36:59 +00001536
Nate Begemana1ae7442008-05-13 21:03:02 +00001537 Elts.push_back(Index);
Chris Lattner42158e72007-08-02 23:36:59 +00001538 }
Nate Begemanc8e51f82008-05-09 06:41:27 +00001539}
1540
Steve Naroff4ed9d662007-09-27 14:38:14 +00001541// constructor for instance messages.
Steve Naroff6cb1d362007-09-28 22:22:11 +00001542ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremenek42730c52008-01-07 19:49:32 +00001543 QualType retType, ObjCMethodDecl *mproto,
Steve Naroff1e1c3912007-11-03 16:37:59 +00001544 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff9f176d12007-11-15 13:05:42 +00001545 Expr **ArgExprs, unsigned nargs)
Steve Naroff1e1c3912007-11-03 16:37:59 +00001546 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekd029a6f2008-05-01 17:26:20 +00001547 MethodProto(mproto) {
Steve Naroff9f176d12007-11-15 13:05:42 +00001548 NumArgs = nargs;
Ted Kremenek2719e982008-06-17 02:43:46 +00001549 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff4ed9d662007-09-27 14:38:14 +00001550 SubExprs[RECEIVER] = receiver;
Steve Naroff9f176d12007-11-15 13:05:42 +00001551 if (NumArgs) {
1552 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff4ed9d662007-09-27 14:38:14 +00001553 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1554 }
Steve Naroffc39ca262007-09-18 23:55:05 +00001555 LBracloc = LBrac;
1556 RBracloc = RBrac;
1557}
1558
Anders Carlsson0ebbcba2009-06-07 19:51:47 +00001559ObjCStringLiteral* ObjCStringLiteral::Clone(ASTContext &C) const {
1560 // Clone the string literal.
1561 StringLiteral *NewString =
1562 String ? cast<StringLiteral>(String)->Clone(C) : 0;
1563
1564 return new (C) ObjCStringLiteral(NewString, getType(), AtLoc);
1565}
1566
1567ObjCSelectorExpr *ObjCSelectorExpr::Clone(ASTContext &C) const {
1568 return new (C) ObjCSelectorExpr(getType(), SelName, AtLoc, RParenLoc);
1569}
1570
1571ObjCProtocolExpr *ObjCProtocolExpr::Clone(ASTContext &C) const {
1572 return new (C) ObjCProtocolExpr(getType(), Protocol, AtLoc, RParenLoc);
1573}
1574
Steve Naroff4ed9d662007-09-27 14:38:14 +00001575// constructor for class messages.
1576// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroff6cb1d362007-09-28 22:22:11 +00001577ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremenek42730c52008-01-07 19:49:32 +00001578 QualType retType, ObjCMethodDecl *mproto,
Steve Naroff1e1c3912007-11-03 16:37:59 +00001579 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff9f176d12007-11-15 13:05:42 +00001580 Expr **ArgExprs, unsigned nargs)
Steve Naroff1e1c3912007-11-03 16:37:59 +00001581 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekd029a6f2008-05-01 17:26:20 +00001582 MethodProto(mproto) {
Steve Naroff9f176d12007-11-15 13:05:42 +00001583 NumArgs = nargs;
Ted Kremenek2719e982008-06-17 02:43:46 +00001584 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenekee2c9fd2008-06-24 15:50:53 +00001585 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff9f176d12007-11-15 13:05:42 +00001586 if (NumArgs) {
1587 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff4ed9d662007-09-27 14:38:14 +00001588 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1589 }
Steve Naroffc39ca262007-09-18 23:55:05 +00001590 LBracloc = LBrac;
1591 RBracloc = RBrac;
1592}
1593
Ted Kremenekee2c9fd2008-06-24 15:50:53 +00001594// constructor for class messages.
1595ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1596 QualType retType, ObjCMethodDecl *mproto,
1597 SourceLocation LBrac, SourceLocation RBrac,
1598 Expr **ArgExprs, unsigned nargs)
1599: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1600MethodProto(mproto) {
1601 NumArgs = nargs;
1602 SubExprs = new Stmt*[NumArgs+1];
1603 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1604 if (NumArgs) {
1605 for (unsigned i = 0; i != NumArgs; ++i)
1606 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1607 }
1608 LBracloc = LBrac;
1609 RBracloc = RBrac;
1610}
1611
1612ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1613 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1614 switch (x & Flags) {
1615 default:
1616 assert(false && "Invalid ObjCMessageExpr.");
1617 case IsInstMeth:
1618 return ClassInfo(0, 0);
1619 case IsClsMethDeclUnknown:
1620 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1621 case IsClsMethDeclKnown: {
1622 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1623 return ClassInfo(D, D->getIdentifier());
1624 }
1625 }
1626}
1627
Chris Lattnerc0478bf2009-04-26 00:44:05 +00001628void ObjCMessageExpr::setClassInfo(const ObjCMessageExpr::ClassInfo &CI) {
1629 if (CI.first == 0 && CI.second == 0)
1630 SubExprs[RECEIVER] = (Expr*)((uintptr_t)0 | IsInstMeth);
1631 else if (CI.first == 0)
1632 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.second | IsClsMethDeclUnknown);
1633 else
1634 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.first | IsClsMethDeclKnown);
1635}
1636
1637
Chris Lattnerf624cd22007-10-25 00:29:32 +00001638bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Eli Friedman5255e7a2009-04-26 19:19:15 +00001639 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattnerf624cd22007-10-25 00:29:32 +00001640}
1641
Douglas Gregor725e94b2009-04-16 00:01:45 +00001642void ShuffleVectorExpr::setExprs(Expr ** Exprs, unsigned NumExprs) {
1643 if (NumExprs)
1644 delete [] SubExprs;
1645
1646 SubExprs = new Stmt* [NumExprs];
1647 this->NumExprs = NumExprs;
1648 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
1649}
1650
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001651void SizeOfAlignOfExpr::Destroy(ASTContext& C) {
1652 // Override default behavior of traversing children. If this has a type
1653 // operand and the type is a variable-length array, the child iteration
1654 // will iterate over the size expression. However, this expression belongs
1655 // to the type, not to this, so we don't want to delete it.
1656 // We still want to delete this expression.
Ted Kremenek0c97e042009-02-07 01:47:29 +00001657 if (isArgumentType()) {
1658 this->~SizeOfAlignOfExpr();
1659 C.Deallocate(this);
1660 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001661 else
1662 Expr::Destroy(C);
Daniel Dunbar7cfb85b2008-08-28 18:02:04 +00001663}
1664
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001665//===----------------------------------------------------------------------===//
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001666// DesignatedInitExpr
1667//===----------------------------------------------------------------------===//
1668
1669IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
1670 assert(Kind == FieldDesignator && "Only valid on a field designator");
1671 if (Field.NameOrField & 0x01)
1672 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
1673 else
1674 return getField()->getIdentifier();
1675}
1676
Douglas Gregorcc94ab72009-04-15 06:41:24 +00001677DesignatedInitExpr::DesignatedInitExpr(QualType Ty, unsigned NumDesignators,
1678 const Designator *Designators,
1679 SourceLocation EqualOrColonLoc,
1680 bool GNUSyntax,
Douglas Gregor3a7a06e2009-05-21 23:17:49 +00001681 Expr **IndexExprs,
1682 unsigned NumIndexExprs,
1683 Expr *Init)
1684 : Expr(DesignatedInitExprClass, Ty,
1685 Init->isTypeDependent(), Init->isValueDependent()),
Douglas Gregorcc94ab72009-04-15 06:41:24 +00001686 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
Douglas Gregor3a7a06e2009-05-21 23:17:49 +00001687 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregorcc94ab72009-04-15 06:41:24 +00001688 this->Designators = new Designator[NumDesignators];
Douglas Gregor3a7a06e2009-05-21 23:17:49 +00001689
1690 // Record the initializer itself.
1691 child_iterator Child = child_begin();
1692 *Child++ = Init;
1693
1694 // Copy the designators and their subexpressions, computing
1695 // value-dependence along the way.
1696 unsigned IndexIdx = 0;
1697 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorcc94ab72009-04-15 06:41:24 +00001698 this->Designators[I] = Designators[I];
Douglas Gregor3a7a06e2009-05-21 23:17:49 +00001699
1700 if (this->Designators[I].isArrayDesignator()) {
1701 // Compute type- and value-dependence.
1702 Expr *Index = IndexExprs[IndexIdx];
1703 ValueDependent = ValueDependent ||
1704 Index->isTypeDependent() || Index->isValueDependent();
1705
1706 // Copy the index expressions into permanent storage.
1707 *Child++ = IndexExprs[IndexIdx++];
1708 } else if (this->Designators[I].isArrayRangeDesignator()) {
1709 // Compute type- and value-dependence.
1710 Expr *Start = IndexExprs[IndexIdx];
1711 Expr *End = IndexExprs[IndexIdx + 1];
1712 ValueDependent = ValueDependent ||
1713 Start->isTypeDependent() || Start->isValueDependent() ||
1714 End->isTypeDependent() || End->isValueDependent();
1715
1716 // Copy the start/end expressions into permanent storage.
1717 *Child++ = IndexExprs[IndexIdx++];
1718 *Child++ = IndexExprs[IndexIdx++];
1719 }
1720 }
1721
1722 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorcc94ab72009-04-15 06:41:24 +00001723}
1724
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001725DesignatedInitExpr *
1726DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
1727 unsigned NumDesignators,
1728 Expr **IndexExprs, unsigned NumIndexExprs,
1729 SourceLocation ColonOrEqualLoc,
1730 bool UsesColonSyntax, Expr *Init) {
Steve Naroff207b9ec2009-01-27 23:20:32 +00001731 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroff207b9ec2009-01-27 23:20:32 +00001732 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor3a7a06e2009-05-21 23:17:49 +00001733 return new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators, Designators,
1734 ColonOrEqualLoc, UsesColonSyntax,
1735 IndexExprs, NumIndexExprs, Init);
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001736}
1737
Douglas Gregor6710a3c2009-04-16 00:55:48 +00001738DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
1739 unsigned NumIndexExprs) {
1740 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
1741 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
1742 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
1743}
1744
1745void DesignatedInitExpr::setDesignators(const Designator *Desigs,
1746 unsigned NumDesigs) {
1747 if (Designators)
1748 delete [] Designators;
1749
1750 Designators = new Designator[NumDesigs];
1751 NumDesignators = NumDesigs;
1752 for (unsigned I = 0; I != NumDesigs; ++I)
1753 Designators[I] = Desigs[I];
1754}
1755
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001756SourceRange DesignatedInitExpr::getSourceRange() const {
1757 SourceLocation StartLoc;
Chris Lattnerb6eccdc2009-02-16 22:33:34 +00001758 Designator &First =
1759 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001760 if (First.isFieldDesignator()) {
Douglas Gregor5f34f0e2009-03-28 00:41:23 +00001761 if (GNUSyntax)
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001762 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
1763 else
1764 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
1765 } else
Chris Lattnerb6eccdc2009-02-16 22:33:34 +00001766 StartLoc =
1767 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001768 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
1769}
1770
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001771Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
1772 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
1773 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1774 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001775 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1776 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1777}
1778
1779Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
1780 assert(D.Kind == Designator::ArrayRangeDesignator &&
1781 "Requires array range designator");
1782 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1783 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001784 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1785 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1786}
1787
1788Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
1789 assert(D.Kind == Designator::ArrayRangeDesignator &&
1790 "Requires array range designator");
1791 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1792 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001793 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1794 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
1795}
1796
Douglas Gregorcc94ab72009-04-15 06:41:24 +00001797/// \brief Replaces the designator at index @p Idx with the series
1798/// of designators in [First, Last).
1799void DesignatedInitExpr::ExpandDesignator(unsigned Idx,
1800 const Designator *First,
1801 const Designator *Last) {
1802 unsigned NumNewDesignators = Last - First;
1803 if (NumNewDesignators == 0) {
1804 std::copy_backward(Designators + Idx + 1,
1805 Designators + NumDesignators,
1806 Designators + Idx);
1807 --NumNewDesignators;
1808 return;
1809 } else if (NumNewDesignators == 1) {
1810 Designators[Idx] = *First;
1811 return;
1812 }
1813
1814 Designator *NewDesignators
1815 = new Designator[NumDesignators - 1 + NumNewDesignators];
1816 std::copy(Designators, Designators + Idx, NewDesignators);
1817 std::copy(First, Last, NewDesignators + Idx);
1818 std::copy(Designators + Idx + 1, Designators + NumDesignators,
1819 NewDesignators + Idx + NumNewDesignators);
1820 delete [] Designators;
1821 Designators = NewDesignators;
1822 NumDesignators = NumDesignators - 1 + NumNewDesignators;
1823}
1824
1825void DesignatedInitExpr::Destroy(ASTContext &C) {
1826 delete [] Designators;
1827 Expr::Destroy(C);
1828}
1829
Douglas Gregor3a7a06e2009-05-21 23:17:49 +00001830ImplicitValueInitExpr *ImplicitValueInitExpr::Clone(ASTContext &C) const {
1831 return new (C) ImplicitValueInitExpr(getType());
1832}
1833
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001834//===----------------------------------------------------------------------===//
Ted Kremenekb30de272008-10-27 18:40:21 +00001835// ExprIterator.
1836//===----------------------------------------------------------------------===//
1837
1838Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
1839Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
1840Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
1841const Expr* ConstExprIterator::operator[](size_t idx) const {
1842 return cast<Expr>(I[idx]);
1843}
1844const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
1845const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
1846
1847//===----------------------------------------------------------------------===//
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001848// Child Iterators for iterating over subexpressions/substatements
1849//===----------------------------------------------------------------------===//
1850
1851// DeclRefExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001852Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1853Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001854
Steve Naroff5eb2a4a2007-11-12 14:29:37 +00001855// ObjCIvarRefExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001856Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1857Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff5eb2a4a2007-11-12 14:29:37 +00001858
Steve Naroff6f786252008-06-02 23:03:37 +00001859// ObjCPropertyRefExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001860Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1861Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroff05391d22008-05-30 00:40:33 +00001862
Fariborz Jahanianf18d4c82008-11-22 18:39:36 +00001863// ObjCKVCRefExpr
1864Stmt::child_iterator ObjCKVCRefExpr::child_begin() { return &Base; }
1865Stmt::child_iterator ObjCKVCRefExpr::child_end() { return &Base+1; }
1866
Douglas Gregord8606632008-11-04 14:56:14 +00001867// ObjCSuperExpr
1868Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
1869Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
1870
Chris Lattner69909292008-08-10 01:53:14 +00001871// PredefinedExpr
1872Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
1873Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001874
1875// IntegerLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001876Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1877Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001878
1879// CharacterLiteral
Chris Lattnerb6eccdc2009-02-16 22:33:34 +00001880Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremeneka6478552007-10-18 23:28:49 +00001881Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001882
1883// FloatingLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001884Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1885Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001886
Chris Lattner1de66eb2007-08-26 03:42:43 +00001887// ImaginaryLiteral
Ted Kremenek2719e982008-06-17 02:43:46 +00001888Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1889Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner1de66eb2007-08-26 03:42:43 +00001890
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001891// StringLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001892Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1893Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001894
1895// ParenExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001896Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1897Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001898
1899// UnaryOperator
Ted Kremenek2719e982008-06-17 02:43:46 +00001900Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1901Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001902
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001903// SizeOfAlignOfExpr
1904Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
1905 // If this is of a type and the type is a VLA type (and not a typedef), the
1906 // size expression of the VLA needs to be treated as an executable expression.
1907 // Why isn't this weirdness documented better in StmtIterator?
1908 if (isArgumentType()) {
1909 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
1910 getArgumentType().getTypePtr()))
1911 return child_iterator(T);
1912 return child_iterator();
1913 }
Sebastian Redl9f81c3f2008-12-03 23:17:54 +00001914 return child_iterator(&Argument.Ex);
Ted Kremeneka6478552007-10-18 23:28:49 +00001915}
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001916Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
1917 if (isArgumentType())
1918 return child_iterator();
Sebastian Redl9f81c3f2008-12-03 23:17:54 +00001919 return child_iterator(&Argument.Ex + 1);
Ted Kremeneka6478552007-10-18 23:28:49 +00001920}
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001921
1922// ArraySubscriptExpr
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001923Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001924 return &SubExprs[0];
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001925}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001926Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001927 return &SubExprs[0]+END_EXPR;
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001928}
1929
1930// CallExpr
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001931Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001932 return &SubExprs[0];
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001933}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001934Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001935 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001936}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001937
1938// MemberExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001939Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1940Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001941
Nate Begemanaf6ed502008-04-18 23:10:10 +00001942// ExtVectorElementExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001943Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1944Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001945
1946// CompoundLiteralExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001947Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1948Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001949
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001950// CastExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001951Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1952Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001953
1954// BinaryOperator
1955Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001956 return &SubExprs[0];
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001957}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001958Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001959 return &SubExprs[0]+END_EXPR;
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001960}
1961
1962// ConditionalOperator
1963Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001964 return &SubExprs[0];
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001965}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001966Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001967 return &SubExprs[0]+END_EXPR;
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001968}
1969
1970// AddrLabelExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001971Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1972Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001973
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001974// StmtExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001975Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1976Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001977
1978// TypesCompatibleExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001979Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1980 return child_iterator();
1981}
1982
1983Stmt::child_iterator TypesCompatibleExpr::child_end() {
1984 return child_iterator();
1985}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001986
1987// ChooseExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001988Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1989Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001990
Douglas Gregorad4b3792008-11-29 04:51:27 +00001991// GNUNullExpr
1992Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
1993Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
1994
Eli Friedmand0e9d092008-05-14 19:38:39 +00001995// ShuffleVectorExpr
1996Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001997 return &SubExprs[0];
Eli Friedmand0e9d092008-05-14 19:38:39 +00001998}
1999Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00002000 return &SubExprs[0]+NumExprs;
Eli Friedmand0e9d092008-05-14 19:38:39 +00002001}
2002
Anders Carlsson36760332007-10-15 20:28:48 +00002003// VAArgExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00002004Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
2005Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson36760332007-10-15 20:28:48 +00002006
Anders Carlsson762b7c72007-08-31 04:56:16 +00002007// InitListExpr
2008Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00002009 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson762b7c72007-08-31 04:56:16 +00002010}
2011Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00002012 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson762b7c72007-08-31 04:56:16 +00002013}
2014
Douglas Gregorc9e012a2009-01-29 17:44:32 +00002015// DesignatedInitExpr
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00002016Stmt::child_iterator DesignatedInitExpr::child_begin() {
2017 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2018 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00002019 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2020}
2021Stmt::child_iterator DesignatedInitExpr::child_end() {
2022 return child_iterator(&*child_begin() + NumSubExprs);
2023}
2024
Douglas Gregorc9e012a2009-01-29 17:44:32 +00002025// ImplicitValueInitExpr
2026Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
2027 return child_iterator();
2028}
2029
2030Stmt::child_iterator ImplicitValueInitExpr::child_end() {
2031 return child_iterator();
2032}
2033
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00002034// ObjCStringLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00002035Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattner2c499632009-02-18 06:53:08 +00002036 return &String;
Ted Kremeneka6478552007-10-18 23:28:49 +00002037}
2038Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattner2c499632009-02-18 06:53:08 +00002039 return &String+1;
Ted Kremeneka6478552007-10-18 23:28:49 +00002040}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00002041
2042// ObjCEncodeExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00002043Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
2044Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00002045
Fariborz Jahanianf807c202007-10-16 20:40:23 +00002046// ObjCSelectorExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00002047Stmt::child_iterator ObjCSelectorExpr::child_begin() {
2048 return child_iterator();
2049}
2050Stmt::child_iterator ObjCSelectorExpr::child_end() {
2051 return child_iterator();
2052}
Fariborz Jahanianf807c202007-10-16 20:40:23 +00002053
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00002054// ObjCProtocolExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00002055Stmt::child_iterator ObjCProtocolExpr::child_begin() {
2056 return child_iterator();
2057}
2058Stmt::child_iterator ObjCProtocolExpr::child_end() {
2059 return child_iterator();
2060}
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00002061
Steve Naroffc39ca262007-09-18 23:55:05 +00002062// ObjCMessageExpr
Ted Kremenekd029a6f2008-05-01 17:26:20 +00002063Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00002064 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroffc39ca262007-09-18 23:55:05 +00002065}
2066Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00002067 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroffc39ca262007-09-18 23:55:05 +00002068}
2069
Steve Naroff52a81c02008-09-03 18:15:37 +00002070// Blocks
Steve Naroff9ac456d2008-10-08 17:01:13 +00002071Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
2072Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff52a81c02008-09-03 18:15:37 +00002073
Ted Kremenek4a1f5de2008-09-26 23:24:14 +00002074Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
2075Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }