blob: ec44584585c2bd2469f33fca1ad87c9ceccc2de9 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000014#include "clang/AST/Expr.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000015#include "clang/AST/APValue.h"
Chris Lattner2eadfb62007-07-15 23:32:58 +000016#include "clang/AST/ASTContext.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor98cd5992008-10-21 23:43:52 +000018#include "clang/AST/DeclCXX.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000019#include "clang/AST/DeclTemplate.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000020#include "clang/AST/RecordLayout.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "clang/AST/StmtVisitor.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000022#include "clang/Basic/Builtins.h"
Chris Lattnerda5a6b62007-11-27 18:22:04 +000023#include "clang/Basic/TargetInfo.h"
Douglas Gregorffb4b6e2009-04-15 06:41:24 +000024#include <algorithm>
Reid Spencer5f016e22007-07-11 17:01:13 +000025using namespace clang;
26
27//===----------------------------------------------------------------------===//
28// Primary Expressions.
29//===----------------------------------------------------------------------===//
30
Chris Lattnerda8249e2008-06-07 22:13:43 +000031/// getValueAsApproximateDouble - This returns the value as an inaccurate
32/// double. Note that this may cause loss of precision, but is useful for
33/// debugging dumps, etc.
34double FloatingLiteral::getValueAsApproximateDouble() const {
35 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +000036 bool ignored;
37 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
38 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +000039 return V.convertToDouble();
40}
41
Chris Lattner2085fd62009-02-18 06:40:38 +000042StringLiteral *StringLiteral::Create(ASTContext &C, const char *StrData,
43 unsigned ByteLength, bool Wide,
44 QualType Ty,
Anders Carlssona135fb42009-03-15 18:34:13 +000045 const SourceLocation *Loc,
46 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +000047 // Allocate enough space for the StringLiteral plus an array of locations for
48 // any concatenated string tokens.
49 void *Mem = C.Allocate(sizeof(StringLiteral)+
50 sizeof(SourceLocation)*(NumStrs-1),
51 llvm::alignof<StringLiteral>());
52 StringLiteral *SL = new (Mem) StringLiteral(Ty);
53
Reid Spencer5f016e22007-07-11 17:01:13 +000054 // OPTIMIZE: could allocate this appended to the StringLiteral.
Chris Lattner2085fd62009-02-18 06:40:38 +000055 char *AStrData = new (C, 1) char[ByteLength];
56 memcpy(AStrData, StrData, ByteLength);
57 SL->StrData = AStrData;
58 SL->ByteLength = ByteLength;
59 SL->IsWide = Wide;
60 SL->TokLocs[0] = Loc[0];
61 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +000062
Chris Lattner726e1682009-02-18 05:49:11 +000063 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +000064 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
65 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +000066}
67
Douglas Gregor673ecd62009-04-15 16:35:07 +000068StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
69 void *Mem = C.Allocate(sizeof(StringLiteral)+
70 sizeof(SourceLocation)*(NumStrs-1),
71 llvm::alignof<StringLiteral>());
72 StringLiteral *SL = new (Mem) StringLiteral(QualType());
73 SL->StrData = 0;
74 SL->ByteLength = 0;
75 SL->NumConcatenated = NumStrs;
76 return SL;
77}
78
Douglas Gregor42602bb2009-08-07 06:08:38 +000079void StringLiteral::DoDestroy(ASTContext &C) {
Ted Kremenek8189cde2009-02-07 01:47:29 +000080 C.Deallocate(const_cast<char*>(StrData));
Douglas Gregor42602bb2009-08-07 06:08:38 +000081 Expr::DoDestroy(C);
Reid Spencer5f016e22007-07-11 17:01:13 +000082}
83
Douglas Gregor673ecd62009-04-15 16:35:07 +000084void StringLiteral::setStrData(ASTContext &C, const char *Str, unsigned Len) {
85 if (StrData)
86 C.Deallocate(const_cast<char*>(StrData));
87
88 char *AStrData = new (C, 1) char[Len];
89 memcpy(AStrData, Str, Len);
90 StrData = AStrData;
91 ByteLength = Len;
92}
93
Reid Spencer5f016e22007-07-11 17:01:13 +000094/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
95/// corresponds to, e.g. "sizeof" or "[pre]++".
96const char *UnaryOperator::getOpcodeStr(Opcode Op) {
97 switch (Op) {
98 default: assert(0 && "Unknown unary operator");
99 case PostInc: return "++";
100 case PostDec: return "--";
101 case PreInc: return "++";
102 case PreDec: return "--";
103 case AddrOf: return "&";
104 case Deref: return "*";
105 case Plus: return "+";
106 case Minus: return "-";
107 case Not: return "~";
108 case LNot: return "!";
109 case Real: return "__real";
110 case Imag: return "__imag";
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 case Extension: return "__extension__";
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000112 case OffsetOf: return "__builtin_offsetof";
Reid Spencer5f016e22007-07-11 17:01:13 +0000113 }
114}
115
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000116UnaryOperator::Opcode
117UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
118 switch (OO) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000119 default: assert(false && "No unary operator for overloaded function");
Chris Lattnerb7beee92009-03-22 00:10:22 +0000120 case OO_PlusPlus: return Postfix ? PostInc : PreInc;
121 case OO_MinusMinus: return Postfix ? PostDec : PreDec;
122 case OO_Amp: return AddrOf;
123 case OO_Star: return Deref;
124 case OO_Plus: return Plus;
125 case OO_Minus: return Minus;
126 case OO_Tilde: return Not;
127 case OO_Exclaim: return LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000128 }
129}
130
131OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
132 switch (Opc) {
133 case PostInc: case PreInc: return OO_PlusPlus;
134 case PostDec: case PreDec: return OO_MinusMinus;
135 case AddrOf: return OO_Amp;
136 case Deref: return OO_Star;
137 case Plus: return OO_Plus;
138 case Minus: return OO_Minus;
139 case Not: return OO_Tilde;
140 case LNot: return OO_Exclaim;
141 default: return OO_None;
142 }
143}
144
145
Reid Spencer5f016e22007-07-11 17:01:13 +0000146//===----------------------------------------------------------------------===//
147// Postfix Operators.
148//===----------------------------------------------------------------------===//
149
Ted Kremenek668bf912009-02-09 20:51:47 +0000150CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, Expr **args,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000151 unsigned numargs, QualType t, SourceLocation rparenloc)
Douglas Gregor898574e2008-12-05 23:32:09 +0000152 : Expr(SC, t,
153 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000154 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000155 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000156
157 SubExprs = new (C) Stmt*[numargs+1];
Douglas Gregorb4609802008-11-14 16:09:21 +0000158 SubExprs[FN] = fn;
159 for (unsigned i = 0; i != numargs; ++i)
160 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000161
Douglas Gregorb4609802008-11-14 16:09:21 +0000162 RParenLoc = rparenloc;
163}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000164
Ted Kremenek668bf912009-02-09 20:51:47 +0000165CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
166 QualType t, SourceLocation rparenloc)
Douglas Gregor898574e2008-12-05 23:32:09 +0000167 : Expr(CallExprClass, t,
168 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000169 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000170 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000171
172 SubExprs = new (C) Stmt*[numargs+1];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000173 SubExprs[FN] = fn;
Reid Spencer5f016e22007-07-11 17:01:13 +0000174 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000175 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000176
Reid Spencer5f016e22007-07-11 17:01:13 +0000177 RParenLoc = rparenloc;
178}
179
Argyrios Kyrtzidisba0a9002009-07-14 03:19:21 +0000180CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
181 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000182 SubExprs = new (C) Stmt*[1];
183}
184
Douglas Gregor42602bb2009-08-07 06:08:38 +0000185void CallExpr::DoDestroy(ASTContext& C) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000186 DestroyChildren(C);
187 if (SubExprs) C.Deallocate(SubExprs);
188 this->~CallExpr();
189 C.Deallocate(this);
190}
191
Zhongxing Xua0042542009-07-17 07:29:51 +0000192FunctionDecl *CallExpr::getDirectCallee() {
193 Expr *CEE = getCallee()->IgnoreParenCasts();
Chris Lattner6346f962009-07-17 15:46:27 +0000194 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Zhongxing Xua0042542009-07-17 07:29:51 +0000195 return dyn_cast<FunctionDecl>(DRE->getDecl());
Zhongxing Xua0042542009-07-17 07:29:51 +0000196
197 return 0;
198}
199
Chris Lattnerd18b3292007-12-28 05:25:02 +0000200/// setNumArgs - This changes the number of arguments present in this call.
201/// Any orphaned expressions are deleted by this, and any new operands are set
202/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000203void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000204 // No change, just return.
205 if (NumArgs == getNumArgs()) return;
206
207 // If shrinking # arguments, just delete the extras and forgot them.
208 if (NumArgs < getNumArgs()) {
209 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000210 getArg(i)->Destroy(C);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000211 this->NumArgs = NumArgs;
212 return;
213 }
214
215 // Otherwise, we are growing the # arguments. New an bigger argument array.
Daniel Dunbar68a049c2009-07-28 06:29:46 +0000216 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+1];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000217 // Copy over args.
218 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
219 NewSubExprs[i] = SubExprs[i];
220 // Null out new args.
221 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
222 NewSubExprs[i] = 0;
223
Douglas Gregor88c9a462009-04-17 21:46:47 +0000224 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000225 SubExprs = NewSubExprs;
226 this->NumArgs = NumArgs;
227}
228
Chris Lattnercb888962008-10-06 05:00:53 +0000229/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
230/// not, return 0.
Douglas Gregor3c385e52009-02-14 18:57:46 +0000231unsigned CallExpr::isBuiltinCall(ASTContext &Context) const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000232 // All simple function calls (e.g. func()) are implicitly cast to pointer to
233 // function. As a result, we try and obtain the DeclRefExpr from the
234 // ImplicitCastExpr.
235 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
236 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000237 return 0;
238
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000239 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
240 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000241 return 0;
242
Anders Carlssonbcba2012008-01-31 02:13:57 +0000243 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
244 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000245 return 0;
246
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000247 if (!FDecl->getIdentifier())
248 return 0;
249
Douglas Gregor3c385e52009-02-14 18:57:46 +0000250 return FDecl->getBuiltinID(Context);
Chris Lattnercb888962008-10-06 05:00:53 +0000251}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000252
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000253QualType CallExpr::getCallReturnType() const {
254 QualType CalleeType = getCallee()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000255 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000256 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000257 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000258 CalleeType = BPT->getPointeeType();
259
260 const FunctionType *FnType = CalleeType->getAsFunctionType();
261 return FnType->getResultType();
262}
Chris Lattnercb888962008-10-06 05:00:53 +0000263
Reid Spencer5f016e22007-07-11 17:01:13 +0000264/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
265/// corresponds to, e.g. "<<=".
266const char *BinaryOperator::getOpcodeStr(Opcode Op) {
267 switch (Op) {
Douglas Gregorbaf53482009-03-12 22:51:37 +0000268 case PtrMemD: return ".*";
269 case PtrMemI: return "->*";
Reid Spencer5f016e22007-07-11 17:01:13 +0000270 case Mul: return "*";
271 case Div: return "/";
272 case Rem: return "%";
273 case Add: return "+";
274 case Sub: return "-";
275 case Shl: return "<<";
276 case Shr: return ">>";
277 case LT: return "<";
278 case GT: return ">";
279 case LE: return "<=";
280 case GE: return ">=";
281 case EQ: return "==";
282 case NE: return "!=";
283 case And: return "&";
284 case Xor: return "^";
285 case Or: return "|";
286 case LAnd: return "&&";
287 case LOr: return "||";
288 case Assign: return "=";
289 case MulAssign: return "*=";
290 case DivAssign: return "/=";
291 case RemAssign: return "%=";
292 case AddAssign: return "+=";
293 case SubAssign: return "-=";
294 case ShlAssign: return "<<=";
295 case ShrAssign: return ">>=";
296 case AndAssign: return "&=";
297 case XorAssign: return "^=";
298 case OrAssign: return "|=";
299 case Comma: return ",";
300 }
Douglas Gregorbaf53482009-03-12 22:51:37 +0000301
302 return "";
Reid Spencer5f016e22007-07-11 17:01:13 +0000303}
304
Douglas Gregor063daf62009-03-13 18:40:31 +0000305BinaryOperator::Opcode
306BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
307 switch (OO) {
Chris Lattnerb7beee92009-03-22 00:10:22 +0000308 default: assert(false && "Not an overloadable binary operator");
Douglas Gregor063daf62009-03-13 18:40:31 +0000309 case OO_Plus: return Add;
310 case OO_Minus: return Sub;
311 case OO_Star: return Mul;
312 case OO_Slash: return Div;
313 case OO_Percent: return Rem;
314 case OO_Caret: return Xor;
315 case OO_Amp: return And;
316 case OO_Pipe: return Or;
317 case OO_Equal: return Assign;
318 case OO_Less: return LT;
319 case OO_Greater: return GT;
320 case OO_PlusEqual: return AddAssign;
321 case OO_MinusEqual: return SubAssign;
322 case OO_StarEqual: return MulAssign;
323 case OO_SlashEqual: return DivAssign;
324 case OO_PercentEqual: return RemAssign;
325 case OO_CaretEqual: return XorAssign;
326 case OO_AmpEqual: return AndAssign;
327 case OO_PipeEqual: return OrAssign;
328 case OO_LessLess: return Shl;
329 case OO_GreaterGreater: return Shr;
330 case OO_LessLessEqual: return ShlAssign;
331 case OO_GreaterGreaterEqual: return ShrAssign;
332 case OO_EqualEqual: return EQ;
333 case OO_ExclaimEqual: return NE;
334 case OO_LessEqual: return LE;
335 case OO_GreaterEqual: return GE;
336 case OO_AmpAmp: return LAnd;
337 case OO_PipePipe: return LOr;
338 case OO_Comma: return Comma;
339 case OO_ArrowStar: return PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +0000340 }
341}
342
343OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
344 static const OverloadedOperatorKind OverOps[] = {
345 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
346 OO_Star, OO_Slash, OO_Percent,
347 OO_Plus, OO_Minus,
348 OO_LessLess, OO_GreaterGreater,
349 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
350 OO_EqualEqual, OO_ExclaimEqual,
351 OO_Amp,
352 OO_Caret,
353 OO_Pipe,
354 OO_AmpAmp,
355 OO_PipePipe,
356 OO_Equal, OO_StarEqual,
357 OO_SlashEqual, OO_PercentEqual,
358 OO_PlusEqual, OO_MinusEqual,
359 OO_LessLessEqual, OO_GreaterGreaterEqual,
360 OO_AmpEqual, OO_CaretEqual,
361 OO_PipeEqual,
362 OO_Comma
363 };
364 return OverOps[Opc];
365}
366
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000367InitListExpr::InitListExpr(SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +0000368 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +0000369 SourceLocation rbraceloc)
Douglas Gregor9ea62762009-05-21 23:17:49 +0000370 : Expr(InitListExprClass, QualType(),
371 hasAnyTypeDependentArguments(initExprs, numInits),
372 hasAnyValueDependentArguments(initExprs, numInits)),
Douglas Gregor0bb76892009-01-29 16:53:55 +0000373 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0),
Douglas Gregora9c87802009-01-29 19:42:23 +0000374 UnionFieldInit(0), HadArrayRangeDesignator(false) {
Chris Lattner418f6c72008-10-26 23:43:26 +0000375
376 InitExprs.insert(InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000377}
Reid Spencer5f016e22007-07-11 17:01:13 +0000378
Douglas Gregorfa219202009-03-20 23:58:33 +0000379void InitListExpr::reserveInits(unsigned NumInits) {
380 if (NumInits > InitExprs.size())
381 InitExprs.reserve(NumInits);
382}
383
Douglas Gregor4c678342009-01-28 21:54:33 +0000384void InitListExpr::resizeInits(ASTContext &Context, unsigned NumInits) {
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000385 for (unsigned Idx = NumInits, LastIdx = InitExprs.size();
Daniel Dunbarf592c922009-02-16 22:42:44 +0000386 Idx < LastIdx; ++Idx)
Douglas Gregor06863682009-03-20 23:38:03 +0000387 InitExprs[Idx]->Destroy(Context);
Douglas Gregor4c678342009-01-28 21:54:33 +0000388 InitExprs.resize(NumInits, 0);
389}
390
391Expr *InitListExpr::updateInit(unsigned Init, Expr *expr) {
392 if (Init >= InitExprs.size()) {
393 InitExprs.insert(InitExprs.end(), Init - InitExprs.size() + 1, 0);
394 InitExprs.back() = expr;
395 return 0;
396 }
397
398 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
399 InitExprs[Init] = expr;
400 return Result;
401}
402
Steve Naroffbfdcae62008-09-04 15:31:07 +0000403/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000404///
405const FunctionType *BlockExpr::getFunctionType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000406 return getType()->getAs<BlockPointerType>()->
Steve Naroff4eb206b2008-09-03 18:15:37 +0000407 getPointeeType()->getAsFunctionType();
408}
409
Steve Naroff56ee6892008-10-08 17:01:13 +0000410SourceLocation BlockExpr::getCaretLocation() const {
411 return TheBlock->getCaretLocation();
412}
Douglas Gregor72971342009-04-18 00:02:19 +0000413const Stmt *BlockExpr::getBody() const {
414 return TheBlock->getBody();
415}
416Stmt *BlockExpr::getBody() {
417 return TheBlock->getBody();
418}
Steve Naroff56ee6892008-10-08 17:01:13 +0000419
420
Reid Spencer5f016e22007-07-11 17:01:13 +0000421//===----------------------------------------------------------------------===//
422// Generic Expression Routines
423//===----------------------------------------------------------------------===//
424
Chris Lattner026dc962009-02-14 07:37:35 +0000425/// isUnusedResultAWarning - Return true if this immediate expression should
426/// be warned about if the result is unused. If so, fill in Loc and Ranges
427/// with location to warn on and the source range[s] to report with the
428/// warning.
429bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000430 SourceRange &R2) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +0000431 // Don't warn if the expr is type dependent. The type could end up
432 // instantiating to void.
433 if (isTypeDependent())
434 return false;
435
Reid Spencer5f016e22007-07-11 17:01:13 +0000436 switch (getStmtClass()) {
437 default:
Chris Lattner026dc962009-02-14 07:37:35 +0000438 Loc = getExprLoc();
439 R1 = getSourceRange();
440 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000441 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000442 return cast<ParenExpr>(this)->getSubExpr()->
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000443 isUnusedResultAWarning(Loc, R1, R2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000444 case UnaryOperatorClass: {
445 const UnaryOperator *UO = cast<UnaryOperator>(this);
446
447 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000448 default: break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000449 case UnaryOperator::PostInc:
450 case UnaryOperator::PostDec:
451 case UnaryOperator::PreInc:
Chris Lattner026dc962009-02-14 07:37:35 +0000452 case UnaryOperator::PreDec: // ++/--
453 return false; // Not a warning.
Reid Spencer5f016e22007-07-11 17:01:13 +0000454 case UnaryOperator::Deref:
455 // Dereferencing a volatile pointer is a side-effect.
Chris Lattner026dc962009-02-14 07:37:35 +0000456 if (getType().isVolatileQualified())
457 return false;
458 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000459 case UnaryOperator::Real:
460 case UnaryOperator::Imag:
461 // accessing a piece of a volatile complex is a side-effect.
Chris Lattner026dc962009-02-14 07:37:35 +0000462 if (UO->getSubExpr()->getType().isVolatileQualified())
463 return false;
464 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000465 case UnaryOperator::Extension:
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000466 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000467 }
Chris Lattner026dc962009-02-14 07:37:35 +0000468 Loc = UO->getOperatorLoc();
469 R1 = UO->getSubExpr()->getSourceRange();
470 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000471 }
Chris Lattnere7716e62007-12-01 06:07:34 +0000472 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000473 const BinaryOperator *BO = cast<BinaryOperator>(this);
474 // Consider comma to have side effects if the LHS or RHS does.
475 if (BO->getOpcode() == BinaryOperator::Comma)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000476 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2) ||
477 BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattnere7716e62007-12-01 06:07:34 +0000478
Chris Lattner026dc962009-02-14 07:37:35 +0000479 if (BO->isAssignmentOp())
480 return false;
481 Loc = BO->getOperatorLoc();
482 R1 = BO->getLHS()->getSourceRange();
483 R2 = BO->getRHS()->getSourceRange();
484 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +0000485 }
Chris Lattnereb14fe82007-08-25 02:00:02 +0000486 case CompoundAssignOperatorClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000487 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000488
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000489 case ConditionalOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000490 // The condition must be evaluated, but if either the LHS or RHS is a
491 // warning, warn about them.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000492 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Douglas Gregor68584ed2009-06-18 16:11:24 +0000493 if (Exp->getLHS() &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000494 Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2))
Chris Lattner026dc962009-02-14 07:37:35 +0000495 return true;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000496 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000497 }
498
Reid Spencer5f016e22007-07-11 17:01:13 +0000499 case MemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000500 // If the base pointer or element is to a volatile pointer/field, accessing
501 // it is a side effect.
502 if (getType().isVolatileQualified())
503 return false;
504 Loc = cast<MemberExpr>(this)->getMemberLoc();
505 R1 = SourceRange(Loc, Loc);
506 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
507 return true;
508
Reid Spencer5f016e22007-07-11 17:01:13 +0000509 case ArraySubscriptExprClass:
510 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +0000511 // it is a side effect.
512 if (getType().isVolatileQualified())
513 return false;
514 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
515 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
516 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
517 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +0000518
Reid Spencer5f016e22007-07-11 17:01:13 +0000519 case CallExprClass:
Eli Friedman852871a2009-04-29 16:35:53 +0000520 case CXXOperatorCallExprClass:
521 case CXXMemberCallExprClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000522 // If this is a direct call, get the callee.
523 const CallExpr *CE = cast<CallExpr>(this);
524 const Expr *CalleeExpr = CE->getCallee()->IgnoreParenCasts();
525 if (const DeclRefExpr *CalleeDRE = dyn_cast<DeclRefExpr>(CalleeExpr)) {
526 // If the callee has attribute pure, const, or warn_unused_result, warn
527 // about it. void foo() { strlen("bar"); } should warn.
528 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeDRE->getDecl()))
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000529 if (FD->getAttr<WarnUnusedResultAttr>() ||
530 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000531 Loc = CE->getCallee()->getLocStart();
532 R1 = CE->getCallee()->getSourceRange();
533
534 if (unsigned NumArgs = CE->getNumArgs())
535 R2 = SourceRange(CE->getArg(0)->getLocStart(),
536 CE->getArg(NumArgs-1)->getLocEnd());
537 return true;
538 }
539 }
540 return false;
541 }
Chris Lattnera9c01022007-09-26 22:06:30 +0000542 case ObjCMessageExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000543 return false;
Chris Lattnera50089e2009-08-16 16:45:18 +0000544
545 case ObjCKVCRefExprClass: { // Dot syntax for message send.
546#if 0
547 const ObjCKVCRefExpr *KVCRef = cast<ObjCKVCRefExpr>(this);
548 // FIXME: We really want the location of the '.' here.
549 Loc = KVCRef->getLocation();
550 R1 = SourceRange(KVCRef->getLocation(), KVCRef->getLocation());
551 if (KVCRef->getBase())
552 R2 = KVCRef->getBase()->getSourceRange();
Chris Lattner5e94a0d2009-08-16 16:51:50 +0000553#else
554 Loc = getExprLoc();
555 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +0000556#endif
557 return true;
558 }
Chris Lattner611b2ec2008-07-26 19:51:01 +0000559 case StmtExprClass: {
560 // Statement exprs don't logically have side effects themselves, but are
561 // sometimes used in macros in ways that give them a type that is unused.
562 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
563 // however, if the result of the stmt expr is dead, we don't want to emit a
564 // warning.
565 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
566 if (!CS->body_empty())
567 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000568 return E->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattner026dc962009-02-14 07:37:35 +0000569
570 Loc = cast<StmtExpr>(this)->getLParenLoc();
571 R1 = getSourceRange();
572 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000573 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000574 case CStyleCastExprClass:
Chris Lattnerfb846642009-07-28 18:25:28 +0000575 // If this is an explicit cast to void, allow it. People do this when they
576 // think they know what they're doing :).
Chris Lattner026dc962009-02-14 07:37:35 +0000577 if (getType()->isVoidType())
Chris Lattnerfb846642009-07-28 18:25:28 +0000578 return false;
Chris Lattner026dc962009-02-14 07:37:35 +0000579 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
580 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
581 return true;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000582 case CXXFunctionalCastExprClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000583 // If this is a cast to void, check the operand. Otherwise, the result of
584 // the cast is unused.
585 if (getType()->isVoidType())
Douglas Gregor68584ed2009-06-18 16:11:24 +0000586 return cast<CastExpr>(this)->getSubExpr()
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000587 ->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattner026dc962009-02-14 07:37:35 +0000588 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
589 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
590 return true;
591
Eli Friedman4be1f472008-05-19 21:24:43 +0000592 case ImplicitCastExprClass:
593 // Check the operand, since implicit casts are inserted by Sema
Chris Lattner026dc962009-02-14 07:37:35 +0000594 return cast<ImplicitCastExpr>(this)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000595 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Eli Friedman4be1f472008-05-19 21:24:43 +0000596
Chris Lattner04421082008-04-08 04:40:51 +0000597 case CXXDefaultArgExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000598 return cast<CXXDefaultArgExpr>(this)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000599 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000600
601 case CXXNewExprClass:
602 // FIXME: In theory, there might be new expressions that don't have side
603 // effects (e.g. a placement new with an uninitialized POD).
604 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000605 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +0000606 case CXXBindTemporaryExprClass:
607 return cast<CXXBindTemporaryExpr>(this)
608 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Anders Carlsson6b1d2832009-05-17 21:11:30 +0000609 case CXXExprWithTemporariesClass:
610 return cast<CXXExprWithTemporaries>(this)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000611 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000612 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000613}
614
Douglas Gregorba7e2102008-10-22 15:04:37 +0000615/// DeclCanBeLvalue - Determine whether the given declaration can be
616/// an lvalue. This is a helper routine for isLvalue.
617static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000618 // C++ [temp.param]p6:
619 // A non-type non-reference template-parameter is not an lvalue.
620 if (const NonTypeTemplateParmDecl *NTTParm
621 = dyn_cast<NonTypeTemplateParmDecl>(Decl))
622 return NTTParm->getType()->isReferenceType();
623
Douglas Gregor44b43212008-12-11 16:49:14 +0000624 return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) ||
Douglas Gregorba7e2102008-10-22 15:04:37 +0000625 // C++ 3.10p2: An lvalue refers to an object or function.
626 (Ctx.getLangOptions().CPlusPlus &&
Douglas Gregor83314aa2009-07-08 20:55:45 +0000627 (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl) ||
628 isa<FunctionTemplateDecl>(Decl)));
Douglas Gregorba7e2102008-10-22 15:04:37 +0000629}
630
Reid Spencer5f016e22007-07-11 17:01:13 +0000631/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
632/// incomplete type other than void. Nonarray expressions that can be lvalues:
633/// - name, where name must be a variable
634/// - e[i]
635/// - (e), where e must be an lvalue
636/// - e.name, where e must be an lvalue
637/// - e->name
638/// - *e, the type of e cannot be a function type
639/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +0000640/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000641/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000642///
Chris Lattner28be73f2008-07-26 21:30:36 +0000643Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Eli Friedman53202852009-05-03 22:36:05 +0000644 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
645
646 isLvalueResult Res = isLvalueInternal(Ctx);
647 if (Res != LV_Valid || Ctx.getLangOptions().CPlusPlus)
648 return Res;
649
Douglas Gregor98cd5992008-10-21 23:43:52 +0000650 // first, check the type (C99 6.3.2.1). Expressions with function
651 // type in C are not lvalues, but they can be lvalues in C++.
Douglas Gregor83314aa2009-07-08 20:55:45 +0000652 if (TR->isFunctionType() || TR == Ctx.OverloadTy)
Reid Spencer5f016e22007-07-11 17:01:13 +0000653 return LV_NotObjectType;
654
Steve Naroffacb818a2008-02-10 01:39:04 +0000655 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattner28be73f2008-07-26 21:30:36 +0000656 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +0000657 return LV_IncompleteVoidType;
658
Eli Friedman53202852009-05-03 22:36:05 +0000659 return LV_Valid;
660}
Bill Wendling08ad47c2007-07-17 03:52:31 +0000661
Eli Friedman53202852009-05-03 22:36:05 +0000662// Check whether the expression can be sanely treated like an l-value
663Expr::isLvalueResult Expr::isLvalueInternal(ASTContext &Ctx) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000664 switch (getStmtClass()) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000665 case StringLiteralClass: // C99 6.5.1p4
666 case ObjCEncodeExprClass: // @encode behaves like its string in every way.
Anders Carlsson7323a622007-11-30 22:47:59 +0000667 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000668 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
669 // For vectors, make sure base is an lvalue (i.e. not a function call).
670 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner28be73f2008-07-26 21:30:36 +0000671 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000672 return LV_Valid;
Douglas Gregor1a49af92009-01-06 05:10:23 +0000673 case DeclRefExprClass:
674 case QualifiedDeclRefExprClass: { // C99 6.5.1p2
Douglas Gregorba7e2102008-10-22 15:04:37 +0000675 const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
676 if (DeclCanBeLvalue(RefdDecl, Ctx))
Reid Spencer5f016e22007-07-11 17:01:13 +0000677 return LV_Valid;
678 break;
Chris Lattner41110242008-06-17 18:05:57 +0000679 }
Steve Naroffdd972f22008-09-05 22:11:13 +0000680 case BlockDeclRefExprClass: {
681 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
Steve Naroff4f6a7d72008-09-26 14:41:28 +0000682 if (isa<VarDecl>(BDR->getDecl()))
Steve Naroffdd972f22008-09-05 22:11:13 +0000683 return LV_Valid;
684 break;
685 }
Douglas Gregor86f19402008-12-20 23:49:58 +0000686 case MemberExprClass: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000687 const MemberExpr *m = cast<MemberExpr>(this);
Douglas Gregor86f19402008-12-20 23:49:58 +0000688 if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4:
689 NamedDecl *Member = m->getMemberDecl();
690 // C++ [expr.ref]p4:
691 // If E2 is declared to have type "reference to T", then E1.E2
692 // is an lvalue.
693 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
694 if (Value->getType()->isReferenceType())
695 return LV_Valid;
696
697 // -- If E2 is a static data member [...] then E1.E2 is an lvalue.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000698 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
Douglas Gregor86f19402008-12-20 23:49:58 +0000699 return LV_Valid;
700
701 // -- If E2 is a non-static data member [...]. If E1 is an
702 // lvalue, then E1.E2 is an lvalue.
703 if (isa<FieldDecl>(Member))
704 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
705
706 // -- If it refers to a static member function [...], then
707 // E1.E2 is an lvalue.
708 // -- Otherwise, if E1.E2 refers to a non-static member
709 // function [...], then E1.E2 is not an lvalue.
710 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
711 return Method->isStatic()? LV_Valid : LV_MemberFunction;
712
713 // -- If E2 is a member enumerator [...], the expression E1.E2
714 // is not an lvalue.
715 if (isa<EnumConstantDecl>(Member))
716 return LV_InvalidExpression;
717
718 // Not an lvalue.
719 return LV_InvalidExpression;
720 }
721
722 // C99 6.5.2.3p4
Chris Lattner28be73f2008-07-26 21:30:36 +0000723 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000724 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000725 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000726 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +0000727 return LV_Valid; // C99 6.5.3p4
728
729 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattnerbaf0d662008-07-25 18:07:19 +0000730 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
731 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner28be73f2008-07-26 21:30:36 +0000732 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Douglas Gregor74253732008-11-19 15:42:04 +0000733
734 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1
735 (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc ||
736 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec))
737 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000738 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000739 case ImplicitCastExprClass:
740 return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid
741 : LV_InvalidExpression;
Reid Spencer5f016e22007-07-11 17:01:13 +0000742 case ParenExprClass: // C99 6.5.1p5
Chris Lattner28be73f2008-07-26 21:30:36 +0000743 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000744 case BinaryOperatorClass:
745 case CompoundAssignOperatorClass: {
746 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
Douglas Gregor337c6b92008-11-19 17:17:41 +0000747
748 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1
749 BinOp->getOpcode() == BinaryOperator::Comma)
750 return BinOp->getRHS()->isLvalue(Ctx);
751
Sebastian Redl22460502009-02-07 00:15:38 +0000752 // C++ [expr.mptr.oper]p6
753 if ((BinOp->getOpcode() == BinaryOperator::PtrMemD ||
754 BinOp->getOpcode() == BinaryOperator::PtrMemI) &&
755 !BinOp->getType()->isFunctionType())
756 return BinOp->getLHS()->isLvalue(Ctx);
757
Douglas Gregorbf3af052008-11-13 20:12:29 +0000758 if (!BinOp->isAssignmentOp())
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000759 return LV_InvalidExpression;
760
Douglas Gregorbf3af052008-11-13 20:12:29 +0000761 if (Ctx.getLangOptions().CPlusPlus)
762 // C++ [expr.ass]p1:
763 // The result of an assignment operation [...] is an lvalue.
764 return LV_Valid;
765
766
767 // C99 6.5.16:
768 // An assignment expression [...] is not an lvalue.
769 return LV_InvalidExpression;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000770 }
Douglas Gregorb4609802008-11-14 16:09:21 +0000771 case CallExprClass:
Douglas Gregor88a35142008-12-22 05:46:06 +0000772 case CXXOperatorCallExprClass:
773 case CXXMemberCallExprClass: {
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000774 // C++0x [expr.call]p10
Douglas Gregor9d293df2008-10-28 00:22:11 +0000775 // A function call is an lvalue if and only if the result type
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000776 // is an lvalue reference.
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000777 QualType ReturnType = cast<CallExpr>(this)->getCallReturnType();
778 if (ReturnType->isLValueReferenceType())
779 return LV_Valid;
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000780
Douglas Gregor9d293df2008-10-28 00:22:11 +0000781 break;
782 }
Steve Naroffe6386392007-12-05 04:00:10 +0000783 case CompoundLiteralExprClass: // C99 6.5.2.5p5
784 return LV_Valid;
Chris Lattner670a62c2008-12-12 05:35:08 +0000785 case ChooseExprClass:
786 // __builtin_choose_expr is an lvalue if the selected operand is.
Eli Friedman79769322009-03-04 05:52:32 +0000787 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->isLvalue(Ctx);
Nate Begeman213541a2008-04-18 23:10:10 +0000788 case ExtVectorElementExprClass:
789 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +0000790 return LV_DuplicateVectorComponents;
791 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +0000792 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
793 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +0000794 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
795 return LV_Valid;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000796 case ObjCKVCRefExprClass: // FIXME: check if read-only property.
Chris Lattner670a62c2008-12-12 05:35:08 +0000797 return LV_Valid;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000798 case PredefinedExprClass:
Douglas Gregor796da182008-11-04 14:32:21 +0000799 return LV_Valid;
Chris Lattner04421082008-04-08 04:40:51 +0000800 case CXXDefaultArgExprClass:
Chris Lattner28be73f2008-07-26 21:30:36 +0000801 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Argyrios Kyrtzidis24b41fa2008-09-11 04:22:26 +0000802 case CXXConditionDeclExprClass:
803 return LV_Valid;
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000804 case CStyleCastExprClass:
Douglas Gregor9d293df2008-10-28 00:22:11 +0000805 case CXXFunctionalCastExprClass:
806 case CXXStaticCastExprClass:
807 case CXXDynamicCastExprClass:
808 case CXXReinterpretCastExprClass:
809 case CXXConstCastExprClass:
810 // The result of an explicit cast is an lvalue if the type we are
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000811 // casting to is an lvalue reference type. See C++ [expr.cast]p1,
Douglas Gregor9d293df2008-10-28 00:22:11 +0000812 // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2,
813 // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000814 if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->
815 isLValueReferenceType())
Douglas Gregor9d293df2008-10-28 00:22:11 +0000816 return LV_Valid;
817 break;
Sebastian Redlc42e1182008-11-11 11:37:55 +0000818 case CXXTypeidExprClass:
819 // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ...
820 return LV_Valid;
Anders Carlsson6f680272009-08-16 03:42:12 +0000821 case CXXBindTemporaryExprClass:
822 return cast<CXXBindTemporaryExpr>(this)->getSubExpr()->
823 isLvalueInternal(Ctx);
Sebastian Redl76458502009-04-17 16:30:52 +0000824 case ConditionalOperatorClass: {
825 // Complicated handling is only for C++.
826 if (!Ctx.getLangOptions().CPlusPlus)
827 return LV_InvalidExpression;
828
829 // Sema should have taken care to ensure that a CXXTemporaryObjectExpr is
830 // everywhere there's an object converted to an rvalue. Also, any other
831 // casts should be wrapped by ImplicitCastExprs. There's just the special
832 // case involving throws to work out.
833 const ConditionalOperator *Cond = cast<ConditionalOperator>(this);
Douglas Gregord5f3a0f2009-05-19 20:13:50 +0000834 Expr *True = Cond->getTrueExpr();
835 Expr *False = Cond->getFalseExpr();
Sebastian Redl76458502009-04-17 16:30:52 +0000836 // C++0x 5.16p2
837 // If either the second or the third operand has type (cv) void, [...]
838 // the result [...] is an rvalue.
Douglas Gregord5f3a0f2009-05-19 20:13:50 +0000839 if (True->getType()->isVoidType() || False->getType()->isVoidType())
Sebastian Redl76458502009-04-17 16:30:52 +0000840 return LV_InvalidExpression;
841
842 // Both sides must be lvalues for the result to be an lvalue.
Douglas Gregord5f3a0f2009-05-19 20:13:50 +0000843 if (True->isLvalue(Ctx) != LV_Valid || False->isLvalue(Ctx) != LV_Valid)
Sebastian Redl76458502009-04-17 16:30:52 +0000844 return LV_InvalidExpression;
845
846 // That's it.
847 return LV_Valid;
848 }
849
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 default:
851 break;
852 }
853 return LV_InvalidExpression;
854}
855
856/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
857/// does not have an incomplete type, does not have a const-qualified type, and
858/// if it is a structure or union, does not have any member (including,
859/// recursively, any member or element of all contained aggregates or unions)
860/// with a const-qualified type.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000861Expr::isModifiableLvalueResult
862Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
Chris Lattner28be73f2008-07-26 21:30:36 +0000863 isLvalueResult lvalResult = isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000864
865 switch (lvalResult) {
Douglas Gregorae8d4672008-10-22 00:03:08 +0000866 case LV_Valid:
867 // C++ 3.10p11: Functions cannot be modified, but pointers to
868 // functions can be modifiable.
869 if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
870 return MLV_NotObjectType;
871 break;
872
Reid Spencer5f016e22007-07-11 17:01:13 +0000873 case LV_NotObjectType: return MLV_NotObjectType;
874 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +0000875 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattnerca354fa2008-11-17 19:51:54 +0000876 case LV_InvalidExpression:
877 // If the top level is a C-style cast, and the subexpression is a valid
878 // lvalue, then this is probably a use of the old-school "cast as lvalue"
879 // GCC extension. We don't support it, but we want to produce good
880 // diagnostics when it happens so that the user knows why.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000881 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(IgnoreParens())) {
882 if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) {
883 if (Loc)
884 *Loc = CE->getLParenLoc();
Chris Lattnerca354fa2008-11-17 19:51:54 +0000885 return MLV_LValueCast;
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000886 }
887 }
Chris Lattnerca354fa2008-11-17 19:51:54 +0000888 return MLV_InvalidExpression;
Douglas Gregor86f19402008-12-20 23:49:58 +0000889 case LV_MemberFunction: return MLV_MemberFunction;
Reid Spencer5f016e22007-07-11 17:01:13 +0000890 }
Eli Friedman04831aa2009-03-22 23:26:56 +0000891
892 // The following is illegal:
893 // void takeclosure(void (^C)(void));
894 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
895 //
Chris Lattner7fd09952009-03-23 17:57:53 +0000896 if (isa<BlockDeclRefExpr>(this)) {
Eli Friedman04831aa2009-03-22 23:26:56 +0000897 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
898 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
899 return MLV_NotBlockQualified;
900 }
901
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000902 QualType CT = Ctx.getCanonicalType(getType());
903
904 if (CT.isConstQualified())
Reid Spencer5f016e22007-07-11 17:01:13 +0000905 return MLV_ConstQualified;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000906 if (CT->isArrayType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000907 return MLV_ArrayType;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000908 if (CT->isIncompleteType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000909 return MLV_IncompleteType;
910
Ted Kremenek6217b802009-07-29 21:53:49 +0000911 if (const RecordType *r = CT->getAs<RecordType>()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000912 if (r->hasConstFields())
913 return MLV_ConstQualified;
914 }
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +0000915
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000916 // Assigning to an 'implicit' property?
Chris Lattner7fd09952009-03-23 17:57:53 +0000917 else if (isa<ObjCKVCRefExpr>(this)) {
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000918 const ObjCKVCRefExpr* KVCExpr = cast<ObjCKVCRefExpr>(this);
919 if (KVCExpr->getSetterMethod() == 0)
920 return MLV_NoSetterProperty;
921 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000922 return MLV_Valid;
923}
924
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000925/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner4cc62712007-11-27 21:35:27 +0000926/// duration. This means that the address of this expression is a link-time
927/// constant.
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000928bool Expr::hasGlobalStorage() const {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000929 switch (getStmtClass()) {
930 default:
931 return false;
Steve Naroff3aaa4822009-04-16 19:02:57 +0000932 case BlockExprClass:
933 return true;
Chris Lattner4cc62712007-11-27 21:35:27 +0000934 case ParenExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000935 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner4cc62712007-11-27 21:35:27 +0000936 case ImplicitCastExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000937 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffe9b12192008-01-14 18:19:28 +0000938 case CompoundLiteralExprClass:
939 return cast<CompoundLiteralExpr>(this)->isFileScope();
Douglas Gregor1a49af92009-01-06 05:10:23 +0000940 case DeclRefExprClass:
941 case QualifiedDeclRefExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000942 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
943 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000944 return VD->hasGlobalStorage();
Seo Sanghyeon63f067f2008-04-04 09:45:30 +0000945 if (isa<FunctionDecl>(D))
946 return true;
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000947 return false;
948 }
Chris Lattnerfb708062007-11-28 04:30:09 +0000949 case MemberExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000950 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000951 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerfb708062007-11-28 04:30:09 +0000952 }
Chris Lattner4cc62712007-11-27 21:35:27 +0000953 case ArraySubscriptExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000954 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattnerd9f69102008-08-10 01:53:14 +0000955 case PredefinedExprClass:
Chris Lattnerfa28b302008-01-12 08:14:25 +0000956 return true;
Chris Lattner04421082008-04-08 04:40:51 +0000957 case CXXDefaultArgExprClass:
958 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000959 }
960}
961
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000962/// isOBJCGCCandidate - Check if an expression is objc gc'able.
963///
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000964bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000965 switch (getStmtClass()) {
966 default:
967 return false;
968 case ObjCIvarRefExprClass:
969 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000970 case Expr::UnaryOperatorClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000971 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000972 case ParenExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000973 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000974 case ImplicitCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000975 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +0000976 case CStyleCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000977 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000978 case DeclRefExprClass:
979 case QualifiedDeclRefExprClass: {
980 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000981 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
982 if (VD->hasGlobalStorage())
983 return true;
984 QualType T = VD->getType();
985 // dereferencing to an object pointer is always a gc'able candidate
986 if (T->isPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +0000987 T->getAs<PointerType>()->getPointeeType()->isObjCObjectPointerType())
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000988 return true;
989
990 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000991 return false;
992 }
993 case MemberExprClass: {
994 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000995 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000996 }
997 case ArraySubscriptExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000998 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000999 }
1000}
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001001Expr* Expr::IgnoreParens() {
1002 Expr* E = this;
1003 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
1004 E = P->getSubExpr();
1005
1006 return E;
1007}
1008
Chris Lattner56f34942008-02-13 01:02:39 +00001009/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
1010/// or CastExprs or ImplicitCastExprs, returning their operand.
1011Expr *Expr::IgnoreParenCasts() {
1012 Expr *E = this;
1013 while (true) {
1014 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
1015 E = P->getSubExpr();
1016 else if (CastExpr *P = dyn_cast<CastExpr>(E))
1017 E = P->getSubExpr();
Chris Lattner56f34942008-02-13 01:02:39 +00001018 else
1019 return E;
1020 }
1021}
1022
Chris Lattnerecdd8412009-03-13 17:28:01 +00001023/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
1024/// value (including ptr->int casts of the same size). Strip off any
1025/// ParenExpr or CastExprs, returning their operand.
1026Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
1027 Expr *E = this;
1028 while (true) {
1029 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
1030 E = P->getSubExpr();
1031 continue;
1032 }
1033
1034 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
1035 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
1036 // ptr<->int casts of the same width. We also ignore all identify casts.
1037 Expr *SE = P->getSubExpr();
1038
1039 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
1040 E = SE;
1041 continue;
1042 }
1043
1044 if ((E->getType()->isPointerType() || E->getType()->isIntegralType()) &&
1045 (SE->getType()->isPointerType() || SE->getType()->isIntegralType()) &&
1046 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1047 E = SE;
1048 continue;
1049 }
1050 }
1051
1052 return E;
1053 }
1054}
1055
1056
Douglas Gregor898574e2008-12-05 23:32:09 +00001057/// hasAnyTypeDependentArguments - Determines if any of the expressions
1058/// in Exprs is type-dependent.
1059bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1060 for (unsigned I = 0; I < NumExprs; ++I)
1061 if (Exprs[I]->isTypeDependent())
1062 return true;
1063
1064 return false;
1065}
1066
1067/// hasAnyValueDependentArguments - Determines if any of the expressions
1068/// in Exprs is value-dependent.
1069bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1070 for (unsigned I = 0; I < NumExprs; ++I)
1071 if (Exprs[I]->isValueDependent())
1072 return true;
1073
1074 return false;
1075}
1076
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001077bool Expr::isConstantInitializer(ASTContext &Ctx) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001078 // This function is attempting whether an expression is an initializer
1079 // which can be evaluated at compile-time. isEvaluatable handles most
1080 // of the cases, but it can't deal with some initializer-specific
1081 // expressions, and it can't deal with aggregates; we deal with those here,
1082 // and fall back to isEvaluatable for the other cases.
1083
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001084 // FIXME: This function assumes the variable being assigned to
1085 // isn't a reference type!
1086
Anders Carlssone8a32b82008-11-24 05:23:59 +00001087 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001088 default: break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001089 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00001090 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001091 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00001092 return true;
Nate Begeman59b5da62009-01-18 03:20:47 +00001093 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001094 // This handles gcc's extension that allows global initializers like
1095 // "struct x {int x;} x = (struct x) {};".
1096 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00001097 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001098 return Exp->isConstantInitializer(Ctx);
Nate Begeman59b5da62009-01-18 03:20:47 +00001099 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00001100 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001101 // FIXME: This doesn't deal with fields with reference types correctly.
1102 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1103 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00001104 const InitListExpr *Exp = cast<InitListExpr>(this);
1105 unsigned numInits = Exp->getNumInits();
1106 for (unsigned i = 0; i < numInits; i++) {
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001107 if (!Exp->getInit(i)->isConstantInitializer(Ctx))
Anders Carlssone8a32b82008-11-24 05:23:59 +00001108 return false;
1109 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001110 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001111 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001112 case ImplicitValueInitExprClass:
1113 return true;
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001114 case ParenExprClass: {
1115 return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1116 }
1117 case UnaryOperatorClass: {
1118 const UnaryOperator* Exp = cast<UnaryOperator>(this);
1119 if (Exp->getOpcode() == UnaryOperator::Extension)
1120 return Exp->getSubExpr()->isConstantInitializer(Ctx);
1121 break;
1122 }
Chris Lattner81045d82009-04-21 05:19:11 +00001123 case ImplicitCastExprClass:
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001124 case CStyleCastExprClass:
1125 // Handle casts with a destination that's a struct or union; this
1126 // deals with both the gcc no-op struct cast extension and the
1127 // cast-to-union extension.
1128 if (getType()->isRecordType())
1129 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1130 break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001131 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001132 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00001133}
1134
Reid Spencer5f016e22007-07-11 17:01:13 +00001135/// isIntegerConstantExpr - this recursive routine will test if an expression is
Eli Friedmane28d7192009-02-26 09:29:13 +00001136/// an integer constant expression.
Reid Spencer5f016e22007-07-11 17:01:13 +00001137
1138/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
1139/// comma, etc
1140///
Chris Lattnerce0afc02007-07-18 05:21:20 +00001141/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
1142/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
1143/// cast+dereference.
Daniel Dunbar2d6744f2009-02-18 00:47:45 +00001144
Eli Friedmane28d7192009-02-26 09:29:13 +00001145// CheckICE - This function does the fundamental ICE checking: the returned
1146// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
1147// Note that to reduce code duplication, this helper does no evaluation
1148// itself; the caller checks whether the expression is evaluatable, and
1149// in the rare cases where CheckICE actually cares about the evaluated
1150// value, it calls into Evalute.
1151//
1152// Meanings of Val:
1153// 0: This expression is an ICE if it can be evaluated by Evaluate.
1154// 1: This expression is not an ICE, but if it isn't evaluated, it's
1155// a legal subexpression for an ICE. This return value is used to handle
1156// the comma operator in C99 mode.
1157// 2: This expression is not an ICE, and is not a legal subexpression for one.
1158
1159struct ICEDiag {
1160 unsigned Val;
1161 SourceLocation Loc;
1162
1163 public:
1164 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
1165 ICEDiag() : Val(0) {}
1166};
1167
1168ICEDiag NoDiag() { return ICEDiag(); }
1169
Eli Friedman60ce9632009-02-27 04:07:58 +00001170static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
1171 Expr::EvalResult EVResult;
1172 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1173 !EVResult.Val.isInt()) {
1174 return ICEDiag(2, E->getLocStart());
1175 }
1176 return NoDiag();
1177}
1178
Eli Friedmane28d7192009-02-26 09:29:13 +00001179static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
Anders Carlssonc3082412009-03-14 00:33:21 +00001180 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001181 if (!E->getType()->isIntegralType()) {
1182 return ICEDiag(2, E->getLocStart());
Eli Friedmana6afa762008-11-13 06:09:17 +00001183 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001184
1185 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001186 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001187 return ICEDiag(2, E->getLocStart());
1188 case Expr::ParenExprClass:
1189 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
1190 case Expr::IntegerLiteralClass:
1191 case Expr::CharacterLiteralClass:
1192 case Expr::CXXBoolLiteralExprClass:
1193 case Expr::CXXZeroInitValueExprClass:
1194 case Expr::TypesCompatibleExprClass:
1195 case Expr::UnaryTypeTraitExprClass:
1196 return NoDiag();
1197 case Expr::CallExprClass:
1198 case Expr::CXXOperatorCallExprClass: {
1199 const CallExpr *CE = cast<CallExpr>(E);
Eli Friedman60ce9632009-02-27 04:07:58 +00001200 if (CE->isBuiltinCall(Ctx))
1201 return CheckEvalInICE(E, Ctx);
Eli Friedmane28d7192009-02-26 09:29:13 +00001202 return ICEDiag(2, E->getLocStart());
Chris Lattner2eadfb62007-07-15 23:32:58 +00001203 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001204 case Expr::DeclRefExprClass:
1205 case Expr::QualifiedDeclRefExprClass:
1206 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
1207 return NoDiag();
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001208 if (Ctx.getLangOptions().CPlusPlus &&
Eli Friedmane28d7192009-02-26 09:29:13 +00001209 E->getType().getCVRQualifiers() == QualType::Const) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001210 // C++ 7.1.5.1p2
1211 // A variable of non-volatile const-qualified integral or enumeration
1212 // type initialized by an ICE can be used in ICEs.
1213 if (const VarDecl *Dcl =
Eli Friedmane28d7192009-02-26 09:29:13 +00001214 dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) {
Douglas Gregor78d15832009-05-26 18:54:04 +00001215 if (Dcl->isInitKnownICE()) {
1216 // We have already checked whether this subexpression is an
1217 // integral constant expression.
1218 if (Dcl->isInitICE())
1219 return NoDiag();
1220 else
1221 return ICEDiag(2, E->getLocStart());
1222 }
1223
1224 if (const Expr *Init = Dcl->getInit()) {
1225 ICEDiag Result = CheckICE(Init, Ctx);
1226 // Cache the result of the ICE test.
1227 Dcl->setInitKnownICE(Ctx, Result.Val == 0);
1228 return Result;
1229 }
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001230 }
1231 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001232 return ICEDiag(2, E->getLocStart());
1233 case Expr::UnaryOperatorClass: {
1234 const UnaryOperator *Exp = cast<UnaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001235 switch (Exp->getOpcode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001236 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001237 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001238 case UnaryOperator::Extension:
Eli Friedmane28d7192009-02-26 09:29:13 +00001239 case UnaryOperator::LNot:
Reid Spencer5f016e22007-07-11 17:01:13 +00001240 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001241 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001242 case UnaryOperator::Not:
Eli Friedman60ce9632009-02-27 04:07:58 +00001243 case UnaryOperator::Real:
1244 case UnaryOperator::Imag:
Eli Friedmane28d7192009-02-26 09:29:13 +00001245 return CheckICE(Exp->getSubExpr(), Ctx);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001246 case UnaryOperator::OffsetOf:
Eli Friedman60ce9632009-02-27 04:07:58 +00001247 // Note that per C99, offsetof must be an ICE. And AFAIK, using
1248 // Evaluate matches the proposed gcc behavior for cases like
1249 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
1250 // compliance: we should warn earlier for offsetof expressions with
1251 // array subscripts that aren't ICEs, and if the array subscripts
1252 // are ICEs, the value of the offsetof must be an integer constant.
1253 return CheckEvalInICE(E, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001254 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001255 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001256 case Expr::SizeOfAlignOfExprClass: {
1257 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
1258 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
1259 return ICEDiag(2, E->getLocStart());
1260 return NoDiag();
Reid Spencer5f016e22007-07-11 17:01:13 +00001261 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001262 case Expr::BinaryOperatorClass: {
1263 const BinaryOperator *Exp = cast<BinaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001264 switch (Exp->getOpcode()) {
1265 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001266 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001267 case BinaryOperator::Mul:
Reid Spencer5f016e22007-07-11 17:01:13 +00001268 case BinaryOperator::Div:
Reid Spencer5f016e22007-07-11 17:01:13 +00001269 case BinaryOperator::Rem:
Eli Friedmane28d7192009-02-26 09:29:13 +00001270 case BinaryOperator::Add:
1271 case BinaryOperator::Sub:
Reid Spencer5f016e22007-07-11 17:01:13 +00001272 case BinaryOperator::Shl:
Reid Spencer5f016e22007-07-11 17:01:13 +00001273 case BinaryOperator::Shr:
Eli Friedmane28d7192009-02-26 09:29:13 +00001274 case BinaryOperator::LT:
1275 case BinaryOperator::GT:
1276 case BinaryOperator::LE:
1277 case BinaryOperator::GE:
1278 case BinaryOperator::EQ:
1279 case BinaryOperator::NE:
1280 case BinaryOperator::And:
1281 case BinaryOperator::Xor:
1282 case BinaryOperator::Or:
1283 case BinaryOperator::Comma: {
1284 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1285 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001286 if (Exp->getOpcode() == BinaryOperator::Div ||
1287 Exp->getOpcode() == BinaryOperator::Rem) {
1288 // Evaluate gives an error for undefined Div/Rem, so make sure
1289 // we don't evaluate one.
1290 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
1291 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
1292 if (REval == 0)
1293 return ICEDiag(1, E->getLocStart());
1294 if (REval.isSigned() && REval.isAllOnesValue()) {
1295 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
1296 if (LEval.isMinSignedValue())
1297 return ICEDiag(1, E->getLocStart());
1298 }
1299 }
1300 }
1301 if (Exp->getOpcode() == BinaryOperator::Comma) {
1302 if (Ctx.getLangOptions().C99) {
1303 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
1304 // if it isn't evaluated.
1305 if (LHSResult.Val == 0 && RHSResult.Val == 0)
1306 return ICEDiag(1, E->getLocStart());
1307 } else {
1308 // In both C89 and C++, commas in ICEs are illegal.
1309 return ICEDiag(2, E->getLocStart());
1310 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001311 }
1312 if (LHSResult.Val >= RHSResult.Val)
1313 return LHSResult;
1314 return RHSResult;
1315 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001316 case BinaryOperator::LAnd:
Eli Friedmane28d7192009-02-26 09:29:13 +00001317 case BinaryOperator::LOr: {
1318 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1319 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
1320 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
1321 // Rare case where the RHS has a comma "side-effect"; we need
1322 // to actually check the condition to see whether the side
1323 // with the comma is evaluated.
Eli Friedmane28d7192009-02-26 09:29:13 +00001324 if ((Exp->getOpcode() == BinaryOperator::LAnd) !=
Eli Friedman60ce9632009-02-27 04:07:58 +00001325 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
Eli Friedmane28d7192009-02-26 09:29:13 +00001326 return RHSResult;
1327 return NoDiag();
Eli Friedmanb11e7782008-11-13 02:13:11 +00001328 }
Eli Friedman60ce9632009-02-27 04:07:58 +00001329
Eli Friedmane28d7192009-02-26 09:29:13 +00001330 if (LHSResult.Val >= RHSResult.Val)
1331 return LHSResult;
1332 return RHSResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001333 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001334 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001335 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001336 case Expr::ImplicitCastExprClass:
1337 case Expr::CStyleCastExprClass:
1338 case Expr::CXXFunctionalCastExprClass: {
1339 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
1340 if (SubExpr->getType()->isIntegralType())
1341 return CheckICE(SubExpr, Ctx);
1342 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
1343 return NoDiag();
1344 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001345 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001346 case Expr::ConditionalOperatorClass: {
1347 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
Chris Lattner28daa532008-12-12 06:55:44 +00001348 // If the condition (ignoring parens) is a __builtin_constant_p call,
1349 // then only the true side is actually considered in an integer constant
Chris Lattner42b83dd2008-12-12 18:00:51 +00001350 // expression, and it is fully evaluated. This is an important GNU
1351 // extension. See GCC PR38377 for discussion.
Eli Friedmane28d7192009-02-26 09:29:13 +00001352 if (const CallExpr *CallCE = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001353 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001354 Expr::EvalResult EVResult;
1355 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1356 !EVResult.Val.isInt()) {
Eli Friedman60ce9632009-02-27 04:07:58 +00001357 return ICEDiag(2, E->getLocStart());
Eli Friedmane28d7192009-02-26 09:29:13 +00001358 }
1359 return NoDiag();
Chris Lattner42b83dd2008-12-12 18:00:51 +00001360 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001361 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
1362 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
1363 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
1364 if (CondResult.Val == 2)
1365 return CondResult;
1366 if (TrueResult.Val == 2)
1367 return TrueResult;
1368 if (FalseResult.Val == 2)
1369 return FalseResult;
1370 if (CondResult.Val == 1)
1371 return CondResult;
1372 if (TrueResult.Val == 0 && FalseResult.Val == 0)
1373 return NoDiag();
1374 // Rare case where the diagnostics depend on which side is evaluated
1375 // Note that if we get here, CondResult is 0, and at least one of
1376 // TrueResult and FalseResult is non-zero.
Eli Friedman60ce9632009-02-27 04:07:58 +00001377 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001378 return FalseResult;
1379 }
1380 return TrueResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001381 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001382 case Expr::CXXDefaultArgExprClass:
1383 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001384 case Expr::ChooseExprClass: {
Eli Friedman79769322009-03-04 05:52:32 +00001385 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001386 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001387 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001388}
Reid Spencer5f016e22007-07-11 17:01:13 +00001389
Eli Friedmane28d7192009-02-26 09:29:13 +00001390bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
1391 SourceLocation *Loc, bool isEvaluated) const {
1392 ICEDiag d = CheckICE(this, Ctx);
1393 if (d.Val != 0) {
1394 if (Loc) *Loc = d.Loc;
1395 return false;
1396 }
1397 EvalResult EvalResult;
Eli Friedman60ce9632009-02-27 04:07:58 +00001398 if (!Evaluate(EvalResult, Ctx))
1399 assert(0 && "ICE cannot be evaluated!");
1400 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
1401 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001402 Result = EvalResult.Val.getInt();
Reid Spencer5f016e22007-07-11 17:01:13 +00001403 return true;
1404}
1405
Reid Spencer5f016e22007-07-11 17:01:13 +00001406/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1407/// integer constant expression with the value zero, or if this is one that is
1408/// cast to void*.
Anders Carlssonefa9b382008-12-01 02:13:57 +00001409bool Expr::isNullPointerConstant(ASTContext &Ctx) const
1410{
Sebastian Redl07779722008-10-31 14:43:28 +00001411 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001412 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00001413 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00001414 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00001415 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00001416 QualType Pointee = PT->getPointeeType();
1417 if (Pointee.getCVRQualifiers() == 0 &&
1418 Pointee->isVoidType() && // to void*
1419 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Anders Carlssond2652772008-12-01 06:28:23 +00001420 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Sebastian Redl07779722008-10-31 14:43:28 +00001421 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001422 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001423 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1424 // Ignore the ImplicitCastExpr type entirely.
Anders Carlssond2652772008-12-01 06:28:23 +00001425 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
Steve Naroffaa58f002008-01-14 16:10:57 +00001426 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1427 // Accept ((void*)0) as a null pointer constant, as many other
1428 // implementations do.
Anders Carlssond2652772008-12-01 06:28:23 +00001429 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner8123a952008-04-10 02:22:51 +00001430 } else if (const CXXDefaultArgExpr *DefaultArg
1431 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001432 // See through default argument expressions
Anders Carlssond2652772008-12-01 06:28:23 +00001433 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001434 } else if (isa<GNUNullExpr>(this)) {
1435 // The GNU __null extension is always a null pointer constant.
1436 return true;
Steve Naroffaaffbf72008-01-14 02:53:34 +00001437 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001438
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001439 // C++0x nullptr_t is always a null pointer constant.
1440 if (getType()->isNullPtrType())
1441 return true;
1442
Steve Naroffaa58f002008-01-14 16:10:57 +00001443 // This expression must be an integer type.
1444 if (!getType()->isIntegerType())
1445 return false;
1446
Reid Spencer5f016e22007-07-11 17:01:13 +00001447 // If we have an integer constant expression, we need to *evaluate* it and
1448 // test for the value 0.
Eli Friedman09de1762009-04-25 22:37:12 +00001449 llvm::APSInt Result;
1450 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001451}
Steve Naroff31a45842007-07-28 23:10:27 +00001452
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001453FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00001454 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001455
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001456 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00001457 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001458 if (Field->isBitField())
1459 return Field;
1460
1461 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
1462 if (BinOp->isAssignmentOp() && BinOp->getLHS())
1463 return BinOp->getLHS()->getBitField();
1464
1465 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001466}
1467
Chris Lattner2140e902009-02-16 22:14:05 +00001468/// isArrow - Return true if the base expression is a pointer to vector,
1469/// return false if the base expression is a vector.
1470bool ExtVectorElementExpr::isArrow() const {
1471 return getBase()->getType()->isPointerType();
1472}
1473
Nate Begeman213541a2008-04-18 23:10:10 +00001474unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begeman8a997642008-05-09 06:41:27 +00001475 if (const VectorType *VT = getType()->getAsVectorType())
1476 return VT->getNumElements();
1477 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001478}
1479
Nate Begeman8a997642008-05-09 06:41:27 +00001480/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001481bool ExtVectorElementExpr::containsDuplicateElements() const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001482 const char *compStr = Accessor->getName();
1483 unsigned length = Accessor->getLength();
Nate Begeman190d6a22009-01-18 02:01:21 +00001484
1485 // Halving swizzles do not contain duplicate elements.
1486 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
1487 !strcmp(compStr, "even") || !strcmp(compStr, "odd"))
1488 return false;
1489
1490 // Advance past s-char prefix on hex swizzles.
Nate Begeman131f4652009-06-25 21:06:09 +00001491 if (*compStr == 's' || *compStr == 'S') {
Nate Begeman190d6a22009-01-18 02:01:21 +00001492 compStr++;
1493 length--;
1494 }
Steve Narofffec0b492007-07-30 03:29:09 +00001495
Chris Lattner7e3e9b12008-11-19 07:55:04 +00001496 for (unsigned i = 0; i != length-1; i++) {
Steve Narofffec0b492007-07-30 03:29:09 +00001497 const char *s = compStr+i;
1498 for (const char c = *s++; *s; s++)
1499 if (c == *s)
1500 return true;
1501 }
1502 return false;
1503}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001504
Nate Begeman8a997642008-05-09 06:41:27 +00001505/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00001506void ExtVectorElementExpr::getEncodedElementAccess(
1507 llvm::SmallVectorImpl<unsigned> &Elts) const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001508 const char *compStr = Accessor->getName();
Nate Begeman131f4652009-06-25 21:06:09 +00001509 if (*compStr == 's' || *compStr == 'S')
Nate Begeman353417a2009-01-18 01:47:54 +00001510 compStr++;
1511
1512 bool isHi = !strcmp(compStr, "hi");
1513 bool isLo = !strcmp(compStr, "lo");
1514 bool isEven = !strcmp(compStr, "even");
1515 bool isOdd = !strcmp(compStr, "odd");
1516
Nate Begeman8a997642008-05-09 06:41:27 +00001517 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1518 uint64_t Index;
1519
1520 if (isHi)
1521 Index = e + i;
1522 else if (isLo)
1523 Index = i;
1524 else if (isEven)
1525 Index = 2 * i;
1526 else if (isOdd)
1527 Index = 2 * i + 1;
1528 else
1529 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001530
Nate Begeman3b8d1162008-05-13 21:03:02 +00001531 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001532 }
Nate Begeman8a997642008-05-09 06:41:27 +00001533}
1534
Steve Naroff68d331a2007-09-27 14:38:14 +00001535// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001536ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001537 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001538 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001539 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001540 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001541 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001542 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001543 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00001544 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00001545 if (NumArgs) {
1546 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001547 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1548 }
Steve Naroff563477d2007-09-18 23:55:05 +00001549 LBracloc = LBrac;
1550 RBracloc = RBrac;
1551}
1552
Steve Naroff68d331a2007-09-27 14:38:14 +00001553// constructor for class messages.
1554// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001555ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001556 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001557 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001558 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001559 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001560 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001561 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001562 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenek4df728e2008-06-24 15:50:53 +00001563 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff49f109c2007-11-15 13:05:42 +00001564 if (NumArgs) {
1565 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001566 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1567 }
Steve Naroff563477d2007-09-18 23:55:05 +00001568 LBracloc = LBrac;
1569 RBracloc = RBrac;
1570}
1571
Ted Kremenek4df728e2008-06-24 15:50:53 +00001572// constructor for class messages.
1573ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1574 QualType retType, ObjCMethodDecl *mproto,
1575 SourceLocation LBrac, SourceLocation RBrac,
1576 Expr **ArgExprs, unsigned nargs)
1577: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1578MethodProto(mproto) {
1579 NumArgs = nargs;
1580 SubExprs = new Stmt*[NumArgs+1];
1581 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1582 if (NumArgs) {
1583 for (unsigned i = 0; i != NumArgs; ++i)
1584 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1585 }
1586 LBracloc = LBrac;
1587 RBracloc = RBrac;
1588}
1589
1590ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1591 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1592 switch (x & Flags) {
1593 default:
1594 assert(false && "Invalid ObjCMessageExpr.");
1595 case IsInstMeth:
1596 return ClassInfo(0, 0);
1597 case IsClsMethDeclUnknown:
1598 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1599 case IsClsMethDeclKnown: {
1600 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1601 return ClassInfo(D, D->getIdentifier());
1602 }
1603 }
1604}
1605
Chris Lattner0389e6b2009-04-26 00:44:05 +00001606void ObjCMessageExpr::setClassInfo(const ObjCMessageExpr::ClassInfo &CI) {
1607 if (CI.first == 0 && CI.second == 0)
1608 SubExprs[RECEIVER] = (Expr*)((uintptr_t)0 | IsInstMeth);
1609 else if (CI.first == 0)
1610 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.second | IsClsMethDeclUnknown);
1611 else
1612 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.first | IsClsMethDeclKnown);
1613}
1614
1615
Chris Lattner27437ca2007-10-25 00:29:32 +00001616bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Eli Friedman9a901bb2009-04-26 19:19:15 +00001617 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00001618}
1619
Nate Begeman888376a2009-08-12 02:28:50 +00001620void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
1621 unsigned NumExprs) {
1622 if (SubExprs) C.Deallocate(SubExprs);
1623
1624 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001625 this->NumExprs = NumExprs;
1626 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Nate Begeman888376a2009-08-12 02:28:50 +00001627}
1628
1629void ShuffleVectorExpr::DoDestroy(ASTContext& C) {
1630 DestroyChildren(C);
1631 if (SubExprs) C.Deallocate(SubExprs);
1632 this->~ShuffleVectorExpr();
1633 C.Deallocate(this);
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001634}
1635
Douglas Gregor42602bb2009-08-07 06:08:38 +00001636void SizeOfAlignOfExpr::DoDestroy(ASTContext& C) {
Sebastian Redl05189992008-11-11 17:56:53 +00001637 // Override default behavior of traversing children. If this has a type
1638 // operand and the type is a variable-length array, the child iteration
1639 // will iterate over the size expression. However, this expression belongs
1640 // to the type, not to this, so we don't want to delete it.
1641 // We still want to delete this expression.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001642 if (isArgumentType()) {
1643 this->~SizeOfAlignOfExpr();
1644 C.Deallocate(this);
1645 }
Sebastian Redl05189992008-11-11 17:56:53 +00001646 else
Douglas Gregor42602bb2009-08-07 06:08:38 +00001647 Expr::DoDestroy(C);
Daniel Dunbar90488912008-08-28 18:02:04 +00001648}
1649
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001650//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00001651// DesignatedInitExpr
1652//===----------------------------------------------------------------------===//
1653
1654IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
1655 assert(Kind == FieldDesignator && "Only valid on a field designator");
1656 if (Field.NameOrField & 0x01)
1657 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
1658 else
1659 return getField()->getIdentifier();
1660}
1661
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001662DesignatedInitExpr::DesignatedInitExpr(QualType Ty, unsigned NumDesignators,
1663 const Designator *Designators,
1664 SourceLocation EqualOrColonLoc,
1665 bool GNUSyntax,
Douglas Gregor9ea62762009-05-21 23:17:49 +00001666 Expr **IndexExprs,
1667 unsigned NumIndexExprs,
1668 Expr *Init)
1669 : Expr(DesignatedInitExprClass, Ty,
1670 Init->isTypeDependent(), Init->isValueDependent()),
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001671 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
Douglas Gregor9ea62762009-05-21 23:17:49 +00001672 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001673 this->Designators = new Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00001674
1675 // Record the initializer itself.
1676 child_iterator Child = child_begin();
1677 *Child++ = Init;
1678
1679 // Copy the designators and their subexpressions, computing
1680 // value-dependence along the way.
1681 unsigned IndexIdx = 0;
1682 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001683 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00001684
1685 if (this->Designators[I].isArrayDesignator()) {
1686 // Compute type- and value-dependence.
1687 Expr *Index = IndexExprs[IndexIdx];
1688 ValueDependent = ValueDependent ||
1689 Index->isTypeDependent() || Index->isValueDependent();
1690
1691 // Copy the index expressions into permanent storage.
1692 *Child++ = IndexExprs[IndexIdx++];
1693 } else if (this->Designators[I].isArrayRangeDesignator()) {
1694 // Compute type- and value-dependence.
1695 Expr *Start = IndexExprs[IndexIdx];
1696 Expr *End = IndexExprs[IndexIdx + 1];
1697 ValueDependent = ValueDependent ||
1698 Start->isTypeDependent() || Start->isValueDependent() ||
1699 End->isTypeDependent() || End->isValueDependent();
1700
1701 // Copy the start/end expressions into permanent storage.
1702 *Child++ = IndexExprs[IndexIdx++];
1703 *Child++ = IndexExprs[IndexIdx++];
1704 }
1705 }
1706
1707 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001708}
1709
Douglas Gregor05c13a32009-01-22 00:58:24 +00001710DesignatedInitExpr *
1711DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
1712 unsigned NumDesignators,
1713 Expr **IndexExprs, unsigned NumIndexExprs,
1714 SourceLocation ColonOrEqualLoc,
1715 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00001716 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00001717 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor9ea62762009-05-21 23:17:49 +00001718 return new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators, Designators,
1719 ColonOrEqualLoc, UsesColonSyntax,
1720 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001721}
1722
Douglas Gregord077d752009-04-16 00:55:48 +00001723DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
1724 unsigned NumIndexExprs) {
1725 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
1726 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
1727 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
1728}
1729
1730void DesignatedInitExpr::setDesignators(const Designator *Desigs,
1731 unsigned NumDesigs) {
1732 if (Designators)
1733 delete [] Designators;
1734
1735 Designators = new Designator[NumDesigs];
1736 NumDesignators = NumDesigs;
1737 for (unsigned I = 0; I != NumDesigs; ++I)
1738 Designators[I] = Desigs[I];
1739}
1740
Douglas Gregor05c13a32009-01-22 00:58:24 +00001741SourceRange DesignatedInitExpr::getSourceRange() const {
1742 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001743 Designator &First =
1744 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00001745 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00001746 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00001747 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
1748 else
1749 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
1750 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001751 StartLoc =
1752 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001753 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
1754}
1755
Douglas Gregor05c13a32009-01-22 00:58:24 +00001756Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
1757 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
1758 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1759 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001760 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1761 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1762}
1763
1764Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
1765 assert(D.Kind == Designator::ArrayRangeDesignator &&
1766 "Requires array range designator");
1767 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1768 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001769 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1770 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1771}
1772
1773Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
1774 assert(D.Kind == Designator::ArrayRangeDesignator &&
1775 "Requires array range designator");
1776 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1777 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001778 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1779 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
1780}
1781
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001782/// \brief Replaces the designator at index @p Idx with the series
1783/// of designators in [First, Last).
1784void DesignatedInitExpr::ExpandDesignator(unsigned Idx,
1785 const Designator *First,
1786 const Designator *Last) {
1787 unsigned NumNewDesignators = Last - First;
1788 if (NumNewDesignators == 0) {
1789 std::copy_backward(Designators + Idx + 1,
1790 Designators + NumDesignators,
1791 Designators + Idx);
1792 --NumNewDesignators;
1793 return;
1794 } else if (NumNewDesignators == 1) {
1795 Designators[Idx] = *First;
1796 return;
1797 }
1798
1799 Designator *NewDesignators
1800 = new Designator[NumDesignators - 1 + NumNewDesignators];
1801 std::copy(Designators, Designators + Idx, NewDesignators);
1802 std::copy(First, Last, NewDesignators + Idx);
1803 std::copy(Designators + Idx + 1, Designators + NumDesignators,
1804 NewDesignators + Idx + NumNewDesignators);
1805 delete [] Designators;
1806 Designators = NewDesignators;
1807 NumDesignators = NumDesignators - 1 + NumNewDesignators;
1808}
1809
Douglas Gregor42602bb2009-08-07 06:08:38 +00001810void DesignatedInitExpr::DoDestroy(ASTContext &C) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001811 delete [] Designators;
Douglas Gregor42602bb2009-08-07 06:08:38 +00001812 Expr::DoDestroy(C);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001813}
1814
Nate Begeman2ef13e52009-08-10 23:49:36 +00001815ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
1816 Expr **exprs, unsigned nexprs,
1817 SourceLocation rparenloc)
1818: Expr(ParenListExprClass, QualType(),
1819 hasAnyTypeDependentArguments(exprs, nexprs),
1820 hasAnyValueDependentArguments(exprs, nexprs)),
1821 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
1822
1823 Exprs = new (C) Stmt*[nexprs];
1824 for (unsigned i = 0; i != nexprs; ++i)
1825 Exprs[i] = exprs[i];
1826}
1827
1828void ParenListExpr::DoDestroy(ASTContext& C) {
1829 DestroyChildren(C);
1830 if (Exprs) C.Deallocate(Exprs);
1831 this->~ParenListExpr();
1832 C.Deallocate(this);
1833}
1834
Douglas Gregor05c13a32009-01-22 00:58:24 +00001835//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00001836// ExprIterator.
1837//===----------------------------------------------------------------------===//
1838
1839Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
1840Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
1841Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
1842const Expr* ConstExprIterator::operator[](size_t idx) const {
1843 return cast<Expr>(I[idx]);
1844}
1845const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
1846const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
1847
1848//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001849// Child Iterators for iterating over subexpressions/substatements
1850//===----------------------------------------------------------------------===//
1851
1852// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001853Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1854Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001855
Steve Naroff7779db42007-11-12 14:29:37 +00001856// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001857Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1858Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00001859
Steve Naroffe3e9add2008-06-02 23:03:37 +00001860// ObjCPropertyRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001861Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1862Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffae784072008-05-30 00:40:33 +00001863
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00001864// ObjCKVCRefExpr
1865Stmt::child_iterator ObjCKVCRefExpr::child_begin() { return &Base; }
1866Stmt::child_iterator ObjCKVCRefExpr::child_end() { return &Base+1; }
1867
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001868// ObjCSuperExpr
1869Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
1870Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
1871
Steve Narofff242b1b2009-07-24 17:54:45 +00001872// ObjCIsaExpr
1873Stmt::child_iterator ObjCIsaExpr::child_begin() { return &Base; }
1874Stmt::child_iterator ObjCIsaExpr::child_end() { return &Base+1; }
1875
Chris Lattnerd9f69102008-08-10 01:53:14 +00001876// PredefinedExpr
1877Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
1878Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001879
1880// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001881Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1882Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001883
1884// CharacterLiteral
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001885Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek9ac59282007-10-18 23:28:49 +00001886Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001887
1888// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001889Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1890Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001891
Chris Lattner5d661452007-08-26 03:42:43 +00001892// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00001893Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1894Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00001895
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001896// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001897Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1898Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001899
1900// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001901Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1902Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001903
1904// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00001905Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1906Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001907
Sebastian Redl05189992008-11-11 17:56:53 +00001908// SizeOfAlignOfExpr
1909Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
1910 // If this is of a type and the type is a VLA type (and not a typedef), the
1911 // size expression of the VLA needs to be treated as an executable expression.
1912 // Why isn't this weirdness documented better in StmtIterator?
1913 if (isArgumentType()) {
1914 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
1915 getArgumentType().getTypePtr()))
1916 return child_iterator(T);
1917 return child_iterator();
1918 }
Sebastian Redld4575892008-12-03 23:17:54 +00001919 return child_iterator(&Argument.Ex);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001920}
Sebastian Redl05189992008-11-11 17:56:53 +00001921Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
1922 if (isArgumentType())
1923 return child_iterator();
Sebastian Redld4575892008-12-03 23:17:54 +00001924 return child_iterator(&Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001925}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001926
1927// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001928Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001929 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001930}
Ted Kremenek1237c672007-08-24 20:06:47 +00001931Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001932 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001933}
1934
1935// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001936Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001937 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001938}
Ted Kremenek1237c672007-08-24 20:06:47 +00001939Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001940 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001941}
Ted Kremenek1237c672007-08-24 20:06:47 +00001942
1943// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001944Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1945Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001946
Nate Begeman213541a2008-04-18 23:10:10 +00001947// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001948Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1949Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001950
1951// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001952Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1953Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001954
Ted Kremenek1237c672007-08-24 20:06:47 +00001955// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001956Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1957Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001958
1959// BinaryOperator
1960Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001961 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001962}
Ted Kremenek1237c672007-08-24 20:06:47 +00001963Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001964 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001965}
1966
1967// ConditionalOperator
1968Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001969 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001970}
Ted Kremenek1237c672007-08-24 20:06:47 +00001971Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001972 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001973}
1974
1975// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001976Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1977Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001978
Ted Kremenek1237c672007-08-24 20:06:47 +00001979// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001980Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1981Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001982
1983// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001984Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1985 return child_iterator();
1986}
1987
1988Stmt::child_iterator TypesCompatibleExpr::child_end() {
1989 return child_iterator();
1990}
Ted Kremenek1237c672007-08-24 20:06:47 +00001991
1992// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001993Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1994Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001995
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001996// GNUNullExpr
1997Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
1998Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
1999
Eli Friedmand38617c2008-05-14 19:38:39 +00002000// ShuffleVectorExpr
2001Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002002 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00002003}
2004Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002005 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00002006}
2007
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002008// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002009Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
2010Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002011
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002012// InitListExpr
2013Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002014 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002015}
2016Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002017 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002018}
2019
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002020// DesignatedInitExpr
Douglas Gregor05c13a32009-01-22 00:58:24 +00002021Stmt::child_iterator DesignatedInitExpr::child_begin() {
2022 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2023 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002024 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2025}
2026Stmt::child_iterator DesignatedInitExpr::child_end() {
2027 return child_iterator(&*child_begin() + NumSubExprs);
2028}
2029
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002030// ImplicitValueInitExpr
2031Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
2032 return child_iterator();
2033}
2034
2035Stmt::child_iterator ImplicitValueInitExpr::child_end() {
2036 return child_iterator();
2037}
2038
Nate Begeman2ef13e52009-08-10 23:49:36 +00002039// ParenListExpr
2040Stmt::child_iterator ParenListExpr::child_begin() {
2041 return &Exprs[0];
2042}
2043Stmt::child_iterator ParenListExpr::child_end() {
2044 return &Exprs[0]+NumExprs;
2045}
2046
Ted Kremenek1237c672007-08-24 20:06:47 +00002047// ObjCStringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002048Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002049 return &String;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002050}
2051Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002052 return &String+1;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002053}
Ted Kremenek1237c672007-08-24 20:06:47 +00002054
2055// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002056Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
2057Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00002058
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002059// ObjCSelectorExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002060Stmt::child_iterator ObjCSelectorExpr::child_begin() {
2061 return child_iterator();
2062}
2063Stmt::child_iterator ObjCSelectorExpr::child_end() {
2064 return child_iterator();
2065}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002066
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002067// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002068Stmt::child_iterator ObjCProtocolExpr::child_begin() {
2069 return child_iterator();
2070}
2071Stmt::child_iterator ObjCProtocolExpr::child_end() {
2072 return child_iterator();
2073}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002074
Steve Naroff563477d2007-09-18 23:55:05 +00002075// ObjCMessageExpr
Ted Kremenekea958e572008-05-01 17:26:20 +00002076Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002077 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroff563477d2007-09-18 23:55:05 +00002078}
2079Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002080 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroff563477d2007-09-18 23:55:05 +00002081}
2082
Steve Naroff4eb206b2008-09-03 18:15:37 +00002083// Blocks
Steve Naroff56ee6892008-10-08 17:01:13 +00002084Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
2085Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff4eb206b2008-09-03 18:15:37 +00002086
Ted Kremenek9da13f92008-09-26 23:24:14 +00002087Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
2088Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }