blob: f000ff63d0bc0cdf9d1a59c50a1df52ec755b7e8 [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();
553#endif
554 return true;
555 }
Chris Lattner611b2ec2008-07-26 19:51:01 +0000556 case StmtExprClass: {
557 // Statement exprs don't logically have side effects themselves, but are
558 // sometimes used in macros in ways that give them a type that is unused.
559 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
560 // however, if the result of the stmt expr is dead, we don't want to emit a
561 // warning.
562 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
563 if (!CS->body_empty())
564 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000565 return E->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattner026dc962009-02-14 07:37:35 +0000566
567 Loc = cast<StmtExpr>(this)->getLParenLoc();
568 R1 = getSourceRange();
569 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000570 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000571 case CStyleCastExprClass:
Chris Lattnerfb846642009-07-28 18:25:28 +0000572 // If this is an explicit cast to void, allow it. People do this when they
573 // think they know what they're doing :).
Chris Lattner026dc962009-02-14 07:37:35 +0000574 if (getType()->isVoidType())
Chris Lattnerfb846642009-07-28 18:25:28 +0000575 return false;
Chris Lattner026dc962009-02-14 07:37:35 +0000576 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
577 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
578 return true;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000579 case CXXFunctionalCastExprClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000580 // If this is a cast to void, check the operand. Otherwise, the result of
581 // the cast is unused.
582 if (getType()->isVoidType())
Douglas Gregor68584ed2009-06-18 16:11:24 +0000583 return cast<CastExpr>(this)->getSubExpr()
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000584 ->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattner026dc962009-02-14 07:37:35 +0000585 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
586 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
587 return true;
588
Eli Friedman4be1f472008-05-19 21:24:43 +0000589 case ImplicitCastExprClass:
590 // Check the operand, since implicit casts are inserted by Sema
Chris Lattner026dc962009-02-14 07:37:35 +0000591 return cast<ImplicitCastExpr>(this)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000592 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Eli Friedman4be1f472008-05-19 21:24:43 +0000593
Chris Lattner04421082008-04-08 04:40:51 +0000594 case CXXDefaultArgExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000595 return cast<CXXDefaultArgExpr>(this)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000596 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000597
598 case CXXNewExprClass:
599 // FIXME: In theory, there might be new expressions that don't have side
600 // effects (e.g. a placement new with an uninitialized POD).
601 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000602 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +0000603 case CXXBindTemporaryExprClass:
604 return cast<CXXBindTemporaryExpr>(this)
605 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Anders Carlsson6b1d2832009-05-17 21:11:30 +0000606 case CXXExprWithTemporariesClass:
607 return cast<CXXExprWithTemporaries>(this)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000608 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000609 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000610}
611
Douglas Gregorba7e2102008-10-22 15:04:37 +0000612/// DeclCanBeLvalue - Determine whether the given declaration can be
613/// an lvalue. This is a helper routine for isLvalue.
614static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000615 // C++ [temp.param]p6:
616 // A non-type non-reference template-parameter is not an lvalue.
617 if (const NonTypeTemplateParmDecl *NTTParm
618 = dyn_cast<NonTypeTemplateParmDecl>(Decl))
619 return NTTParm->getType()->isReferenceType();
620
Douglas Gregor44b43212008-12-11 16:49:14 +0000621 return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) ||
Douglas Gregorba7e2102008-10-22 15:04:37 +0000622 // C++ 3.10p2: An lvalue refers to an object or function.
623 (Ctx.getLangOptions().CPlusPlus &&
Douglas Gregor83314aa2009-07-08 20:55:45 +0000624 (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl) ||
625 isa<FunctionTemplateDecl>(Decl)));
Douglas Gregorba7e2102008-10-22 15:04:37 +0000626}
627
Reid Spencer5f016e22007-07-11 17:01:13 +0000628/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
629/// incomplete type other than void. Nonarray expressions that can be lvalues:
630/// - name, where name must be a variable
631/// - e[i]
632/// - (e), where e must be an lvalue
633/// - e.name, where e must be an lvalue
634/// - e->name
635/// - *e, the type of e cannot be a function type
636/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +0000637/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000638/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000639///
Chris Lattner28be73f2008-07-26 21:30:36 +0000640Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Eli Friedman53202852009-05-03 22:36:05 +0000641 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
642
643 isLvalueResult Res = isLvalueInternal(Ctx);
644 if (Res != LV_Valid || Ctx.getLangOptions().CPlusPlus)
645 return Res;
646
Douglas Gregor98cd5992008-10-21 23:43:52 +0000647 // first, check the type (C99 6.3.2.1). Expressions with function
648 // type in C are not lvalues, but they can be lvalues in C++.
Douglas Gregor83314aa2009-07-08 20:55:45 +0000649 if (TR->isFunctionType() || TR == Ctx.OverloadTy)
Reid Spencer5f016e22007-07-11 17:01:13 +0000650 return LV_NotObjectType;
651
Steve Naroffacb818a2008-02-10 01:39:04 +0000652 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattner28be73f2008-07-26 21:30:36 +0000653 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +0000654 return LV_IncompleteVoidType;
655
Eli Friedman53202852009-05-03 22:36:05 +0000656 return LV_Valid;
657}
Bill Wendling08ad47c2007-07-17 03:52:31 +0000658
Eli Friedman53202852009-05-03 22:36:05 +0000659// Check whether the expression can be sanely treated like an l-value
660Expr::isLvalueResult Expr::isLvalueInternal(ASTContext &Ctx) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000661 switch (getStmtClass()) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000662 case StringLiteralClass: // C99 6.5.1p4
663 case ObjCEncodeExprClass: // @encode behaves like its string in every way.
Anders Carlsson7323a622007-11-30 22:47:59 +0000664 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000665 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
666 // For vectors, make sure base is an lvalue (i.e. not a function call).
667 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner28be73f2008-07-26 21:30:36 +0000668 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000669 return LV_Valid;
Douglas Gregor1a49af92009-01-06 05:10:23 +0000670 case DeclRefExprClass:
671 case QualifiedDeclRefExprClass: { // C99 6.5.1p2
Douglas Gregorba7e2102008-10-22 15:04:37 +0000672 const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
673 if (DeclCanBeLvalue(RefdDecl, Ctx))
Reid Spencer5f016e22007-07-11 17:01:13 +0000674 return LV_Valid;
675 break;
Chris Lattner41110242008-06-17 18:05:57 +0000676 }
Steve Naroffdd972f22008-09-05 22:11:13 +0000677 case BlockDeclRefExprClass: {
678 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
Steve Naroff4f6a7d72008-09-26 14:41:28 +0000679 if (isa<VarDecl>(BDR->getDecl()))
Steve Naroffdd972f22008-09-05 22:11:13 +0000680 return LV_Valid;
681 break;
682 }
Douglas Gregor86f19402008-12-20 23:49:58 +0000683 case MemberExprClass: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000684 const MemberExpr *m = cast<MemberExpr>(this);
Douglas Gregor86f19402008-12-20 23:49:58 +0000685 if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4:
686 NamedDecl *Member = m->getMemberDecl();
687 // C++ [expr.ref]p4:
688 // If E2 is declared to have type "reference to T", then E1.E2
689 // is an lvalue.
690 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
691 if (Value->getType()->isReferenceType())
692 return LV_Valid;
693
694 // -- If E2 is a static data member [...] then E1.E2 is an lvalue.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000695 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
Douglas Gregor86f19402008-12-20 23:49:58 +0000696 return LV_Valid;
697
698 // -- If E2 is a non-static data member [...]. If E1 is an
699 // lvalue, then E1.E2 is an lvalue.
700 if (isa<FieldDecl>(Member))
701 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
702
703 // -- If it refers to a static member function [...], then
704 // E1.E2 is an lvalue.
705 // -- Otherwise, if E1.E2 refers to a non-static member
706 // function [...], then E1.E2 is not an lvalue.
707 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
708 return Method->isStatic()? LV_Valid : LV_MemberFunction;
709
710 // -- If E2 is a member enumerator [...], the expression E1.E2
711 // is not an lvalue.
712 if (isa<EnumConstantDecl>(Member))
713 return LV_InvalidExpression;
714
715 // Not an lvalue.
716 return LV_InvalidExpression;
717 }
718
719 // C99 6.5.2.3p4
Chris Lattner28be73f2008-07-26 21:30:36 +0000720 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000721 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000722 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000723 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +0000724 return LV_Valid; // C99 6.5.3p4
725
726 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattnerbaf0d662008-07-25 18:07:19 +0000727 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
728 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner28be73f2008-07-26 21:30:36 +0000729 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Douglas Gregor74253732008-11-19 15:42:04 +0000730
731 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1
732 (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc ||
733 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec))
734 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000735 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000736 case ImplicitCastExprClass:
737 return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid
738 : LV_InvalidExpression;
Reid Spencer5f016e22007-07-11 17:01:13 +0000739 case ParenExprClass: // C99 6.5.1p5
Chris Lattner28be73f2008-07-26 21:30:36 +0000740 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000741 case BinaryOperatorClass:
742 case CompoundAssignOperatorClass: {
743 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
Douglas Gregor337c6b92008-11-19 17:17:41 +0000744
745 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1
746 BinOp->getOpcode() == BinaryOperator::Comma)
747 return BinOp->getRHS()->isLvalue(Ctx);
748
Sebastian Redl22460502009-02-07 00:15:38 +0000749 // C++ [expr.mptr.oper]p6
750 if ((BinOp->getOpcode() == BinaryOperator::PtrMemD ||
751 BinOp->getOpcode() == BinaryOperator::PtrMemI) &&
752 !BinOp->getType()->isFunctionType())
753 return BinOp->getLHS()->isLvalue(Ctx);
754
Douglas Gregorbf3af052008-11-13 20:12:29 +0000755 if (!BinOp->isAssignmentOp())
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000756 return LV_InvalidExpression;
757
Douglas Gregorbf3af052008-11-13 20:12:29 +0000758 if (Ctx.getLangOptions().CPlusPlus)
759 // C++ [expr.ass]p1:
760 // The result of an assignment operation [...] is an lvalue.
761 return LV_Valid;
762
763
764 // C99 6.5.16:
765 // An assignment expression [...] is not an lvalue.
766 return LV_InvalidExpression;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000767 }
Douglas Gregorb4609802008-11-14 16:09:21 +0000768 case CallExprClass:
Douglas Gregor88a35142008-12-22 05:46:06 +0000769 case CXXOperatorCallExprClass:
770 case CXXMemberCallExprClass: {
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000771 // C++0x [expr.call]p10
Douglas Gregor9d293df2008-10-28 00:22:11 +0000772 // A function call is an lvalue if and only if the result type
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000773 // is an lvalue reference.
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000774 QualType ReturnType = cast<CallExpr>(this)->getCallReturnType();
775 if (ReturnType->isLValueReferenceType())
776 return LV_Valid;
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000777
Douglas Gregor9d293df2008-10-28 00:22:11 +0000778 break;
779 }
Steve Naroffe6386392007-12-05 04:00:10 +0000780 case CompoundLiteralExprClass: // C99 6.5.2.5p5
781 return LV_Valid;
Chris Lattner670a62c2008-12-12 05:35:08 +0000782 case ChooseExprClass:
783 // __builtin_choose_expr is an lvalue if the selected operand is.
Eli Friedman79769322009-03-04 05:52:32 +0000784 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->isLvalue(Ctx);
Nate Begeman213541a2008-04-18 23:10:10 +0000785 case ExtVectorElementExprClass:
786 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +0000787 return LV_DuplicateVectorComponents;
788 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +0000789 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
790 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +0000791 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
792 return LV_Valid;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000793 case ObjCKVCRefExprClass: // FIXME: check if read-only property.
Chris Lattner670a62c2008-12-12 05:35:08 +0000794 return LV_Valid;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000795 case PredefinedExprClass:
Douglas Gregor796da182008-11-04 14:32:21 +0000796 return LV_Valid;
Chris Lattner04421082008-04-08 04:40:51 +0000797 case CXXDefaultArgExprClass:
Chris Lattner28be73f2008-07-26 21:30:36 +0000798 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Argyrios Kyrtzidis24b41fa2008-09-11 04:22:26 +0000799 case CXXConditionDeclExprClass:
800 return LV_Valid;
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000801 case CStyleCastExprClass:
Douglas Gregor9d293df2008-10-28 00:22:11 +0000802 case CXXFunctionalCastExprClass:
803 case CXXStaticCastExprClass:
804 case CXXDynamicCastExprClass:
805 case CXXReinterpretCastExprClass:
806 case CXXConstCastExprClass:
807 // The result of an explicit cast is an lvalue if the type we are
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000808 // casting to is an lvalue reference type. See C++ [expr.cast]p1,
Douglas Gregor9d293df2008-10-28 00:22:11 +0000809 // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2,
810 // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000811 if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->
812 isLValueReferenceType())
Douglas Gregor9d293df2008-10-28 00:22:11 +0000813 return LV_Valid;
814 break;
Sebastian Redlc42e1182008-11-11 11:37:55 +0000815 case CXXTypeidExprClass:
816 // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ...
817 return LV_Valid;
Anders Carlsson6f680272009-08-16 03:42:12 +0000818 case CXXBindTemporaryExprClass:
819 return cast<CXXBindTemporaryExpr>(this)->getSubExpr()->
820 isLvalueInternal(Ctx);
Sebastian Redl76458502009-04-17 16:30:52 +0000821 case ConditionalOperatorClass: {
822 // Complicated handling is only for C++.
823 if (!Ctx.getLangOptions().CPlusPlus)
824 return LV_InvalidExpression;
825
826 // Sema should have taken care to ensure that a CXXTemporaryObjectExpr is
827 // everywhere there's an object converted to an rvalue. Also, any other
828 // casts should be wrapped by ImplicitCastExprs. There's just the special
829 // case involving throws to work out.
830 const ConditionalOperator *Cond = cast<ConditionalOperator>(this);
Douglas Gregord5f3a0f2009-05-19 20:13:50 +0000831 Expr *True = Cond->getTrueExpr();
832 Expr *False = Cond->getFalseExpr();
Sebastian Redl76458502009-04-17 16:30:52 +0000833 // C++0x 5.16p2
834 // If either the second or the third operand has type (cv) void, [...]
835 // the result [...] is an rvalue.
Douglas Gregord5f3a0f2009-05-19 20:13:50 +0000836 if (True->getType()->isVoidType() || False->getType()->isVoidType())
Sebastian Redl76458502009-04-17 16:30:52 +0000837 return LV_InvalidExpression;
838
839 // Both sides must be lvalues for the result to be an lvalue.
Douglas Gregord5f3a0f2009-05-19 20:13:50 +0000840 if (True->isLvalue(Ctx) != LV_Valid || False->isLvalue(Ctx) != LV_Valid)
Sebastian Redl76458502009-04-17 16:30:52 +0000841 return LV_InvalidExpression;
842
843 // That's it.
844 return LV_Valid;
845 }
846
Reid Spencer5f016e22007-07-11 17:01:13 +0000847 default:
848 break;
849 }
850 return LV_InvalidExpression;
851}
852
853/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
854/// does not have an incomplete type, does not have a const-qualified type, and
855/// if it is a structure or union, does not have any member (including,
856/// recursively, any member or element of all contained aggregates or unions)
857/// with a const-qualified type.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000858Expr::isModifiableLvalueResult
859Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
Chris Lattner28be73f2008-07-26 21:30:36 +0000860 isLvalueResult lvalResult = isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000861
862 switch (lvalResult) {
Douglas Gregorae8d4672008-10-22 00:03:08 +0000863 case LV_Valid:
864 // C++ 3.10p11: Functions cannot be modified, but pointers to
865 // functions can be modifiable.
866 if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
867 return MLV_NotObjectType;
868 break;
869
Reid Spencer5f016e22007-07-11 17:01:13 +0000870 case LV_NotObjectType: return MLV_NotObjectType;
871 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +0000872 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattnerca354fa2008-11-17 19:51:54 +0000873 case LV_InvalidExpression:
874 // If the top level is a C-style cast, and the subexpression is a valid
875 // lvalue, then this is probably a use of the old-school "cast as lvalue"
876 // GCC extension. We don't support it, but we want to produce good
877 // diagnostics when it happens so that the user knows why.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000878 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(IgnoreParens())) {
879 if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) {
880 if (Loc)
881 *Loc = CE->getLParenLoc();
Chris Lattnerca354fa2008-11-17 19:51:54 +0000882 return MLV_LValueCast;
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000883 }
884 }
Chris Lattnerca354fa2008-11-17 19:51:54 +0000885 return MLV_InvalidExpression;
Douglas Gregor86f19402008-12-20 23:49:58 +0000886 case LV_MemberFunction: return MLV_MemberFunction;
Reid Spencer5f016e22007-07-11 17:01:13 +0000887 }
Eli Friedman04831aa2009-03-22 23:26:56 +0000888
889 // The following is illegal:
890 // void takeclosure(void (^C)(void));
891 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
892 //
Chris Lattner7fd09952009-03-23 17:57:53 +0000893 if (isa<BlockDeclRefExpr>(this)) {
Eli Friedman04831aa2009-03-22 23:26:56 +0000894 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
895 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
896 return MLV_NotBlockQualified;
897 }
898
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000899 QualType CT = Ctx.getCanonicalType(getType());
900
901 if (CT.isConstQualified())
Reid Spencer5f016e22007-07-11 17:01:13 +0000902 return MLV_ConstQualified;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000903 if (CT->isArrayType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000904 return MLV_ArrayType;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000905 if (CT->isIncompleteType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000906 return MLV_IncompleteType;
907
Ted Kremenek6217b802009-07-29 21:53:49 +0000908 if (const RecordType *r = CT->getAs<RecordType>()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000909 if (r->hasConstFields())
910 return MLV_ConstQualified;
911 }
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +0000912
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000913 // Assigning to an 'implicit' property?
Chris Lattner7fd09952009-03-23 17:57:53 +0000914 else if (isa<ObjCKVCRefExpr>(this)) {
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000915 const ObjCKVCRefExpr* KVCExpr = cast<ObjCKVCRefExpr>(this);
916 if (KVCExpr->getSetterMethod() == 0)
917 return MLV_NoSetterProperty;
918 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000919 return MLV_Valid;
920}
921
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000922/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner4cc62712007-11-27 21:35:27 +0000923/// duration. This means that the address of this expression is a link-time
924/// constant.
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000925bool Expr::hasGlobalStorage() const {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000926 switch (getStmtClass()) {
927 default:
928 return false;
Steve Naroff3aaa4822009-04-16 19:02:57 +0000929 case BlockExprClass:
930 return true;
Chris Lattner4cc62712007-11-27 21:35:27 +0000931 case ParenExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000932 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner4cc62712007-11-27 21:35:27 +0000933 case ImplicitCastExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000934 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffe9b12192008-01-14 18:19:28 +0000935 case CompoundLiteralExprClass:
936 return cast<CompoundLiteralExpr>(this)->isFileScope();
Douglas Gregor1a49af92009-01-06 05:10:23 +0000937 case DeclRefExprClass:
938 case QualifiedDeclRefExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000939 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
940 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000941 return VD->hasGlobalStorage();
Seo Sanghyeon63f067f2008-04-04 09:45:30 +0000942 if (isa<FunctionDecl>(D))
943 return true;
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000944 return false;
945 }
Chris Lattnerfb708062007-11-28 04:30:09 +0000946 case MemberExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000947 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000948 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerfb708062007-11-28 04:30:09 +0000949 }
Chris Lattner4cc62712007-11-27 21:35:27 +0000950 case ArraySubscriptExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000951 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattnerd9f69102008-08-10 01:53:14 +0000952 case PredefinedExprClass:
Chris Lattnerfa28b302008-01-12 08:14:25 +0000953 return true;
Chris Lattner04421082008-04-08 04:40:51 +0000954 case CXXDefaultArgExprClass:
955 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000956 }
957}
958
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000959/// isOBJCGCCandidate - Check if an expression is objc gc'able.
960///
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000961bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000962 switch (getStmtClass()) {
963 default:
964 return false;
965 case ObjCIvarRefExprClass:
966 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000967 case Expr::UnaryOperatorClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000968 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000969 case ParenExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000970 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000971 case ImplicitCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000972 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +0000973 case CStyleCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000974 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000975 case DeclRefExprClass:
976 case QualifiedDeclRefExprClass: {
977 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000978 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
979 if (VD->hasGlobalStorage())
980 return true;
981 QualType T = VD->getType();
982 // dereferencing to an object pointer is always a gc'able candidate
983 if (T->isPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +0000984 T->getAs<PointerType>()->getPointeeType()->isObjCObjectPointerType())
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000985 return true;
986
987 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000988 return false;
989 }
990 case MemberExprClass: {
991 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000992 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000993 }
994 case ArraySubscriptExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000995 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000996 }
997}
Ted Kremenek4e99a5f2008-01-17 16:57:34 +0000998Expr* Expr::IgnoreParens() {
999 Expr* E = this;
1000 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
1001 E = P->getSubExpr();
1002
1003 return E;
1004}
1005
Chris Lattner56f34942008-02-13 01:02:39 +00001006/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
1007/// or CastExprs or ImplicitCastExprs, returning their operand.
1008Expr *Expr::IgnoreParenCasts() {
1009 Expr *E = this;
1010 while (true) {
1011 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
1012 E = P->getSubExpr();
1013 else if (CastExpr *P = dyn_cast<CastExpr>(E))
1014 E = P->getSubExpr();
Chris Lattner56f34942008-02-13 01:02:39 +00001015 else
1016 return E;
1017 }
1018}
1019
Chris Lattnerecdd8412009-03-13 17:28:01 +00001020/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
1021/// value (including ptr->int casts of the same size). Strip off any
1022/// ParenExpr or CastExprs, returning their operand.
1023Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
1024 Expr *E = this;
1025 while (true) {
1026 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
1027 E = P->getSubExpr();
1028 continue;
1029 }
1030
1031 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
1032 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
1033 // ptr<->int casts of the same width. We also ignore all identify casts.
1034 Expr *SE = P->getSubExpr();
1035
1036 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
1037 E = SE;
1038 continue;
1039 }
1040
1041 if ((E->getType()->isPointerType() || E->getType()->isIntegralType()) &&
1042 (SE->getType()->isPointerType() || SE->getType()->isIntegralType()) &&
1043 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1044 E = SE;
1045 continue;
1046 }
1047 }
1048
1049 return E;
1050 }
1051}
1052
1053
Douglas Gregor898574e2008-12-05 23:32:09 +00001054/// hasAnyTypeDependentArguments - Determines if any of the expressions
1055/// in Exprs is type-dependent.
1056bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1057 for (unsigned I = 0; I < NumExprs; ++I)
1058 if (Exprs[I]->isTypeDependent())
1059 return true;
1060
1061 return false;
1062}
1063
1064/// hasAnyValueDependentArguments - Determines if any of the expressions
1065/// in Exprs is value-dependent.
1066bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1067 for (unsigned I = 0; I < NumExprs; ++I)
1068 if (Exprs[I]->isValueDependent())
1069 return true;
1070
1071 return false;
1072}
1073
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001074bool Expr::isConstantInitializer(ASTContext &Ctx) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001075 // This function is attempting whether an expression is an initializer
1076 // which can be evaluated at compile-time. isEvaluatable handles most
1077 // of the cases, but it can't deal with some initializer-specific
1078 // expressions, and it can't deal with aggregates; we deal with those here,
1079 // and fall back to isEvaluatable for the other cases.
1080
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001081 // FIXME: This function assumes the variable being assigned to
1082 // isn't a reference type!
1083
Anders Carlssone8a32b82008-11-24 05:23:59 +00001084 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001085 default: break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001086 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00001087 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001088 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00001089 return true;
Nate Begeman59b5da62009-01-18 03:20:47 +00001090 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001091 // This handles gcc's extension that allows global initializers like
1092 // "struct x {int x;} x = (struct x) {};".
1093 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00001094 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001095 return Exp->isConstantInitializer(Ctx);
Nate Begeman59b5da62009-01-18 03:20:47 +00001096 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00001097 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001098 // FIXME: This doesn't deal with fields with reference types correctly.
1099 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1100 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00001101 const InitListExpr *Exp = cast<InitListExpr>(this);
1102 unsigned numInits = Exp->getNumInits();
1103 for (unsigned i = 0; i < numInits; i++) {
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001104 if (!Exp->getInit(i)->isConstantInitializer(Ctx))
Anders Carlssone8a32b82008-11-24 05:23:59 +00001105 return false;
1106 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001107 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001108 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001109 case ImplicitValueInitExprClass:
1110 return true;
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001111 case ParenExprClass: {
1112 return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1113 }
1114 case UnaryOperatorClass: {
1115 const UnaryOperator* Exp = cast<UnaryOperator>(this);
1116 if (Exp->getOpcode() == UnaryOperator::Extension)
1117 return Exp->getSubExpr()->isConstantInitializer(Ctx);
1118 break;
1119 }
Chris Lattner81045d82009-04-21 05:19:11 +00001120 case ImplicitCastExprClass:
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001121 case CStyleCastExprClass:
1122 // Handle casts with a destination that's a struct or union; this
1123 // deals with both the gcc no-op struct cast extension and the
1124 // cast-to-union extension.
1125 if (getType()->isRecordType())
1126 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1127 break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001128 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001129 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00001130}
1131
Reid Spencer5f016e22007-07-11 17:01:13 +00001132/// isIntegerConstantExpr - this recursive routine will test if an expression is
Eli Friedmane28d7192009-02-26 09:29:13 +00001133/// an integer constant expression.
Reid Spencer5f016e22007-07-11 17:01:13 +00001134
1135/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
1136/// comma, etc
1137///
Chris Lattnerce0afc02007-07-18 05:21:20 +00001138/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
1139/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
1140/// cast+dereference.
Daniel Dunbar2d6744f2009-02-18 00:47:45 +00001141
Eli Friedmane28d7192009-02-26 09:29:13 +00001142// CheckICE - This function does the fundamental ICE checking: the returned
1143// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
1144// Note that to reduce code duplication, this helper does no evaluation
1145// itself; the caller checks whether the expression is evaluatable, and
1146// in the rare cases where CheckICE actually cares about the evaluated
1147// value, it calls into Evalute.
1148//
1149// Meanings of Val:
1150// 0: This expression is an ICE if it can be evaluated by Evaluate.
1151// 1: This expression is not an ICE, but if it isn't evaluated, it's
1152// a legal subexpression for an ICE. This return value is used to handle
1153// the comma operator in C99 mode.
1154// 2: This expression is not an ICE, and is not a legal subexpression for one.
1155
1156struct ICEDiag {
1157 unsigned Val;
1158 SourceLocation Loc;
1159
1160 public:
1161 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
1162 ICEDiag() : Val(0) {}
1163};
1164
1165ICEDiag NoDiag() { return ICEDiag(); }
1166
Eli Friedman60ce9632009-02-27 04:07:58 +00001167static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
1168 Expr::EvalResult EVResult;
1169 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1170 !EVResult.Val.isInt()) {
1171 return ICEDiag(2, E->getLocStart());
1172 }
1173 return NoDiag();
1174}
1175
Eli Friedmane28d7192009-02-26 09:29:13 +00001176static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
Anders Carlssonc3082412009-03-14 00:33:21 +00001177 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001178 if (!E->getType()->isIntegralType()) {
1179 return ICEDiag(2, E->getLocStart());
Eli Friedmana6afa762008-11-13 06:09:17 +00001180 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001181
1182 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001183 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001184 return ICEDiag(2, E->getLocStart());
1185 case Expr::ParenExprClass:
1186 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
1187 case Expr::IntegerLiteralClass:
1188 case Expr::CharacterLiteralClass:
1189 case Expr::CXXBoolLiteralExprClass:
1190 case Expr::CXXZeroInitValueExprClass:
1191 case Expr::TypesCompatibleExprClass:
1192 case Expr::UnaryTypeTraitExprClass:
1193 return NoDiag();
1194 case Expr::CallExprClass:
1195 case Expr::CXXOperatorCallExprClass: {
1196 const CallExpr *CE = cast<CallExpr>(E);
Eli Friedman60ce9632009-02-27 04:07:58 +00001197 if (CE->isBuiltinCall(Ctx))
1198 return CheckEvalInICE(E, Ctx);
Eli Friedmane28d7192009-02-26 09:29:13 +00001199 return ICEDiag(2, E->getLocStart());
Chris Lattner2eadfb62007-07-15 23:32:58 +00001200 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001201 case Expr::DeclRefExprClass:
1202 case Expr::QualifiedDeclRefExprClass:
1203 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
1204 return NoDiag();
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001205 if (Ctx.getLangOptions().CPlusPlus &&
Eli Friedmane28d7192009-02-26 09:29:13 +00001206 E->getType().getCVRQualifiers() == QualType::Const) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001207 // C++ 7.1.5.1p2
1208 // A variable of non-volatile const-qualified integral or enumeration
1209 // type initialized by an ICE can be used in ICEs.
1210 if (const VarDecl *Dcl =
Eli Friedmane28d7192009-02-26 09:29:13 +00001211 dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) {
Douglas Gregor78d15832009-05-26 18:54:04 +00001212 if (Dcl->isInitKnownICE()) {
1213 // We have already checked whether this subexpression is an
1214 // integral constant expression.
1215 if (Dcl->isInitICE())
1216 return NoDiag();
1217 else
1218 return ICEDiag(2, E->getLocStart());
1219 }
1220
1221 if (const Expr *Init = Dcl->getInit()) {
1222 ICEDiag Result = CheckICE(Init, Ctx);
1223 // Cache the result of the ICE test.
1224 Dcl->setInitKnownICE(Ctx, Result.Val == 0);
1225 return Result;
1226 }
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001227 }
1228 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001229 return ICEDiag(2, E->getLocStart());
1230 case Expr::UnaryOperatorClass: {
1231 const UnaryOperator *Exp = cast<UnaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001232 switch (Exp->getOpcode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001233 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001234 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001235 case UnaryOperator::Extension:
Eli Friedmane28d7192009-02-26 09:29:13 +00001236 case UnaryOperator::LNot:
Reid Spencer5f016e22007-07-11 17:01:13 +00001237 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001238 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001239 case UnaryOperator::Not:
Eli Friedman60ce9632009-02-27 04:07:58 +00001240 case UnaryOperator::Real:
1241 case UnaryOperator::Imag:
Eli Friedmane28d7192009-02-26 09:29:13 +00001242 return CheckICE(Exp->getSubExpr(), Ctx);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001243 case UnaryOperator::OffsetOf:
Eli Friedman60ce9632009-02-27 04:07:58 +00001244 // Note that per C99, offsetof must be an ICE. And AFAIK, using
1245 // Evaluate matches the proposed gcc behavior for cases like
1246 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
1247 // compliance: we should warn earlier for offsetof expressions with
1248 // array subscripts that aren't ICEs, and if the array subscripts
1249 // are ICEs, the value of the offsetof must be an integer constant.
1250 return CheckEvalInICE(E, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001251 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001252 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001253 case Expr::SizeOfAlignOfExprClass: {
1254 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
1255 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
1256 return ICEDiag(2, E->getLocStart());
1257 return NoDiag();
Reid Spencer5f016e22007-07-11 17:01:13 +00001258 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001259 case Expr::BinaryOperatorClass: {
1260 const BinaryOperator *Exp = cast<BinaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001261 switch (Exp->getOpcode()) {
1262 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001263 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001264 case BinaryOperator::Mul:
Reid Spencer5f016e22007-07-11 17:01:13 +00001265 case BinaryOperator::Div:
Reid Spencer5f016e22007-07-11 17:01:13 +00001266 case BinaryOperator::Rem:
Eli Friedmane28d7192009-02-26 09:29:13 +00001267 case BinaryOperator::Add:
1268 case BinaryOperator::Sub:
Reid Spencer5f016e22007-07-11 17:01:13 +00001269 case BinaryOperator::Shl:
Reid Spencer5f016e22007-07-11 17:01:13 +00001270 case BinaryOperator::Shr:
Eli Friedmane28d7192009-02-26 09:29:13 +00001271 case BinaryOperator::LT:
1272 case BinaryOperator::GT:
1273 case BinaryOperator::LE:
1274 case BinaryOperator::GE:
1275 case BinaryOperator::EQ:
1276 case BinaryOperator::NE:
1277 case BinaryOperator::And:
1278 case BinaryOperator::Xor:
1279 case BinaryOperator::Or:
1280 case BinaryOperator::Comma: {
1281 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1282 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001283 if (Exp->getOpcode() == BinaryOperator::Div ||
1284 Exp->getOpcode() == BinaryOperator::Rem) {
1285 // Evaluate gives an error for undefined Div/Rem, so make sure
1286 // we don't evaluate one.
1287 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
1288 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
1289 if (REval == 0)
1290 return ICEDiag(1, E->getLocStart());
1291 if (REval.isSigned() && REval.isAllOnesValue()) {
1292 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
1293 if (LEval.isMinSignedValue())
1294 return ICEDiag(1, E->getLocStart());
1295 }
1296 }
1297 }
1298 if (Exp->getOpcode() == BinaryOperator::Comma) {
1299 if (Ctx.getLangOptions().C99) {
1300 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
1301 // if it isn't evaluated.
1302 if (LHSResult.Val == 0 && RHSResult.Val == 0)
1303 return ICEDiag(1, E->getLocStart());
1304 } else {
1305 // In both C89 and C++, commas in ICEs are illegal.
1306 return ICEDiag(2, E->getLocStart());
1307 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001308 }
1309 if (LHSResult.Val >= RHSResult.Val)
1310 return LHSResult;
1311 return RHSResult;
1312 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001313 case BinaryOperator::LAnd:
Eli Friedmane28d7192009-02-26 09:29:13 +00001314 case BinaryOperator::LOr: {
1315 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1316 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
1317 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
1318 // Rare case where the RHS has a comma "side-effect"; we need
1319 // to actually check the condition to see whether the side
1320 // with the comma is evaluated.
Eli Friedmane28d7192009-02-26 09:29:13 +00001321 if ((Exp->getOpcode() == BinaryOperator::LAnd) !=
Eli Friedman60ce9632009-02-27 04:07:58 +00001322 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
Eli Friedmane28d7192009-02-26 09:29:13 +00001323 return RHSResult;
1324 return NoDiag();
Eli Friedmanb11e7782008-11-13 02:13:11 +00001325 }
Eli Friedman60ce9632009-02-27 04:07:58 +00001326
Eli Friedmane28d7192009-02-26 09:29:13 +00001327 if (LHSResult.Val >= RHSResult.Val)
1328 return LHSResult;
1329 return RHSResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001330 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001331 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001332 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001333 case Expr::ImplicitCastExprClass:
1334 case Expr::CStyleCastExprClass:
1335 case Expr::CXXFunctionalCastExprClass: {
1336 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
1337 if (SubExpr->getType()->isIntegralType())
1338 return CheckICE(SubExpr, Ctx);
1339 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
1340 return NoDiag();
1341 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001342 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001343 case Expr::ConditionalOperatorClass: {
1344 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
Chris Lattner28daa532008-12-12 06:55:44 +00001345 // If the condition (ignoring parens) is a __builtin_constant_p call,
1346 // then only the true side is actually considered in an integer constant
Chris Lattner42b83dd2008-12-12 18:00:51 +00001347 // expression, and it is fully evaluated. This is an important GNU
1348 // extension. See GCC PR38377 for discussion.
Eli Friedmane28d7192009-02-26 09:29:13 +00001349 if (const CallExpr *CallCE = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001350 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001351 Expr::EvalResult EVResult;
1352 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1353 !EVResult.Val.isInt()) {
Eli Friedman60ce9632009-02-27 04:07:58 +00001354 return ICEDiag(2, E->getLocStart());
Eli Friedmane28d7192009-02-26 09:29:13 +00001355 }
1356 return NoDiag();
Chris Lattner42b83dd2008-12-12 18:00:51 +00001357 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001358 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
1359 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
1360 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
1361 if (CondResult.Val == 2)
1362 return CondResult;
1363 if (TrueResult.Val == 2)
1364 return TrueResult;
1365 if (FalseResult.Val == 2)
1366 return FalseResult;
1367 if (CondResult.Val == 1)
1368 return CondResult;
1369 if (TrueResult.Val == 0 && FalseResult.Val == 0)
1370 return NoDiag();
1371 // Rare case where the diagnostics depend on which side is evaluated
1372 // Note that if we get here, CondResult is 0, and at least one of
1373 // TrueResult and FalseResult is non-zero.
Eli Friedman60ce9632009-02-27 04:07:58 +00001374 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001375 return FalseResult;
1376 }
1377 return TrueResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001378 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001379 case Expr::CXXDefaultArgExprClass:
1380 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001381 case Expr::ChooseExprClass: {
Eli Friedman79769322009-03-04 05:52:32 +00001382 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001383 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001384 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001385}
Reid Spencer5f016e22007-07-11 17:01:13 +00001386
Eli Friedmane28d7192009-02-26 09:29:13 +00001387bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
1388 SourceLocation *Loc, bool isEvaluated) const {
1389 ICEDiag d = CheckICE(this, Ctx);
1390 if (d.Val != 0) {
1391 if (Loc) *Loc = d.Loc;
1392 return false;
1393 }
1394 EvalResult EvalResult;
Eli Friedman60ce9632009-02-27 04:07:58 +00001395 if (!Evaluate(EvalResult, Ctx))
1396 assert(0 && "ICE cannot be evaluated!");
1397 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
1398 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001399 Result = EvalResult.Val.getInt();
Reid Spencer5f016e22007-07-11 17:01:13 +00001400 return true;
1401}
1402
Reid Spencer5f016e22007-07-11 17:01:13 +00001403/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1404/// integer constant expression with the value zero, or if this is one that is
1405/// cast to void*.
Anders Carlssonefa9b382008-12-01 02:13:57 +00001406bool Expr::isNullPointerConstant(ASTContext &Ctx) const
1407{
Sebastian Redl07779722008-10-31 14:43:28 +00001408 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001409 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00001410 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00001411 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00001412 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00001413 QualType Pointee = PT->getPointeeType();
1414 if (Pointee.getCVRQualifiers() == 0 &&
1415 Pointee->isVoidType() && // to void*
1416 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Anders Carlssond2652772008-12-01 06:28:23 +00001417 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Sebastian Redl07779722008-10-31 14:43:28 +00001418 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001419 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001420 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1421 // Ignore the ImplicitCastExpr type entirely.
Anders Carlssond2652772008-12-01 06:28:23 +00001422 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
Steve Naroffaa58f002008-01-14 16:10:57 +00001423 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1424 // Accept ((void*)0) as a null pointer constant, as many other
1425 // implementations do.
Anders Carlssond2652772008-12-01 06:28:23 +00001426 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner8123a952008-04-10 02:22:51 +00001427 } else if (const CXXDefaultArgExpr *DefaultArg
1428 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001429 // See through default argument expressions
Anders Carlssond2652772008-12-01 06:28:23 +00001430 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001431 } else if (isa<GNUNullExpr>(this)) {
1432 // The GNU __null extension is always a null pointer constant.
1433 return true;
Steve Naroffaaffbf72008-01-14 02:53:34 +00001434 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001435
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001436 // C++0x nullptr_t is always a null pointer constant.
1437 if (getType()->isNullPtrType())
1438 return true;
1439
Steve Naroffaa58f002008-01-14 16:10:57 +00001440 // This expression must be an integer type.
1441 if (!getType()->isIntegerType())
1442 return false;
1443
Reid Spencer5f016e22007-07-11 17:01:13 +00001444 // If we have an integer constant expression, we need to *evaluate* it and
1445 // test for the value 0.
Eli Friedman09de1762009-04-25 22:37:12 +00001446 llvm::APSInt Result;
1447 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001448}
Steve Naroff31a45842007-07-28 23:10:27 +00001449
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001450FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00001451 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001452
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001453 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00001454 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001455 if (Field->isBitField())
1456 return Field;
1457
1458 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
1459 if (BinOp->isAssignmentOp() && BinOp->getLHS())
1460 return BinOp->getLHS()->getBitField();
1461
1462 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001463}
1464
Chris Lattner2140e902009-02-16 22:14:05 +00001465/// isArrow - Return true if the base expression is a pointer to vector,
1466/// return false if the base expression is a vector.
1467bool ExtVectorElementExpr::isArrow() const {
1468 return getBase()->getType()->isPointerType();
1469}
1470
Nate Begeman213541a2008-04-18 23:10:10 +00001471unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begeman8a997642008-05-09 06:41:27 +00001472 if (const VectorType *VT = getType()->getAsVectorType())
1473 return VT->getNumElements();
1474 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001475}
1476
Nate Begeman8a997642008-05-09 06:41:27 +00001477/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001478bool ExtVectorElementExpr::containsDuplicateElements() const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001479 const char *compStr = Accessor->getName();
1480 unsigned length = Accessor->getLength();
Nate Begeman190d6a22009-01-18 02:01:21 +00001481
1482 // Halving swizzles do not contain duplicate elements.
1483 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
1484 !strcmp(compStr, "even") || !strcmp(compStr, "odd"))
1485 return false;
1486
1487 // Advance past s-char prefix on hex swizzles.
Nate Begeman131f4652009-06-25 21:06:09 +00001488 if (*compStr == 's' || *compStr == 'S') {
Nate Begeman190d6a22009-01-18 02:01:21 +00001489 compStr++;
1490 length--;
1491 }
Steve Narofffec0b492007-07-30 03:29:09 +00001492
Chris Lattner7e3e9b12008-11-19 07:55:04 +00001493 for (unsigned i = 0; i != length-1; i++) {
Steve Narofffec0b492007-07-30 03:29:09 +00001494 const char *s = compStr+i;
1495 for (const char c = *s++; *s; s++)
1496 if (c == *s)
1497 return true;
1498 }
1499 return false;
1500}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001501
Nate Begeman8a997642008-05-09 06:41:27 +00001502/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00001503void ExtVectorElementExpr::getEncodedElementAccess(
1504 llvm::SmallVectorImpl<unsigned> &Elts) const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001505 const char *compStr = Accessor->getName();
Nate Begeman131f4652009-06-25 21:06:09 +00001506 if (*compStr == 's' || *compStr == 'S')
Nate Begeman353417a2009-01-18 01:47:54 +00001507 compStr++;
1508
1509 bool isHi = !strcmp(compStr, "hi");
1510 bool isLo = !strcmp(compStr, "lo");
1511 bool isEven = !strcmp(compStr, "even");
1512 bool isOdd = !strcmp(compStr, "odd");
1513
Nate Begeman8a997642008-05-09 06:41:27 +00001514 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1515 uint64_t Index;
1516
1517 if (isHi)
1518 Index = e + i;
1519 else if (isLo)
1520 Index = i;
1521 else if (isEven)
1522 Index = 2 * i;
1523 else if (isOdd)
1524 Index = 2 * i + 1;
1525 else
1526 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001527
Nate Begeman3b8d1162008-05-13 21:03:02 +00001528 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001529 }
Nate Begeman8a997642008-05-09 06:41:27 +00001530}
1531
Steve Naroff68d331a2007-09-27 14:38:14 +00001532// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001533ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001534 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001535 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001536 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001537 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001538 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001539 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001540 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00001541 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00001542 if (NumArgs) {
1543 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001544 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1545 }
Steve Naroff563477d2007-09-18 23:55:05 +00001546 LBracloc = LBrac;
1547 RBracloc = RBrac;
1548}
1549
Steve Naroff68d331a2007-09-27 14:38:14 +00001550// constructor for class messages.
1551// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001552ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001553 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001554 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001555 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001556 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001557 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001558 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001559 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenek4df728e2008-06-24 15:50:53 +00001560 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff49f109c2007-11-15 13:05:42 +00001561 if (NumArgs) {
1562 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001563 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1564 }
Steve Naroff563477d2007-09-18 23:55:05 +00001565 LBracloc = LBrac;
1566 RBracloc = RBrac;
1567}
1568
Ted Kremenek4df728e2008-06-24 15:50:53 +00001569// constructor for class messages.
1570ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1571 QualType retType, ObjCMethodDecl *mproto,
1572 SourceLocation LBrac, SourceLocation RBrac,
1573 Expr **ArgExprs, unsigned nargs)
1574: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1575MethodProto(mproto) {
1576 NumArgs = nargs;
1577 SubExprs = new Stmt*[NumArgs+1];
1578 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1579 if (NumArgs) {
1580 for (unsigned i = 0; i != NumArgs; ++i)
1581 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1582 }
1583 LBracloc = LBrac;
1584 RBracloc = RBrac;
1585}
1586
1587ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1588 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1589 switch (x & Flags) {
1590 default:
1591 assert(false && "Invalid ObjCMessageExpr.");
1592 case IsInstMeth:
1593 return ClassInfo(0, 0);
1594 case IsClsMethDeclUnknown:
1595 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1596 case IsClsMethDeclKnown: {
1597 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1598 return ClassInfo(D, D->getIdentifier());
1599 }
1600 }
1601}
1602
Chris Lattner0389e6b2009-04-26 00:44:05 +00001603void ObjCMessageExpr::setClassInfo(const ObjCMessageExpr::ClassInfo &CI) {
1604 if (CI.first == 0 && CI.second == 0)
1605 SubExprs[RECEIVER] = (Expr*)((uintptr_t)0 | IsInstMeth);
1606 else if (CI.first == 0)
1607 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.second | IsClsMethDeclUnknown);
1608 else
1609 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.first | IsClsMethDeclKnown);
1610}
1611
1612
Chris Lattner27437ca2007-10-25 00:29:32 +00001613bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Eli Friedman9a901bb2009-04-26 19:19:15 +00001614 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00001615}
1616
Nate Begeman888376a2009-08-12 02:28:50 +00001617void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
1618 unsigned NumExprs) {
1619 if (SubExprs) C.Deallocate(SubExprs);
1620
1621 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001622 this->NumExprs = NumExprs;
1623 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Nate Begeman888376a2009-08-12 02:28:50 +00001624}
1625
1626void ShuffleVectorExpr::DoDestroy(ASTContext& C) {
1627 DestroyChildren(C);
1628 if (SubExprs) C.Deallocate(SubExprs);
1629 this->~ShuffleVectorExpr();
1630 C.Deallocate(this);
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001631}
1632
Douglas Gregor42602bb2009-08-07 06:08:38 +00001633void SizeOfAlignOfExpr::DoDestroy(ASTContext& C) {
Sebastian Redl05189992008-11-11 17:56:53 +00001634 // Override default behavior of traversing children. If this has a type
1635 // operand and the type is a variable-length array, the child iteration
1636 // will iterate over the size expression. However, this expression belongs
1637 // to the type, not to this, so we don't want to delete it.
1638 // We still want to delete this expression.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001639 if (isArgumentType()) {
1640 this->~SizeOfAlignOfExpr();
1641 C.Deallocate(this);
1642 }
Sebastian Redl05189992008-11-11 17:56:53 +00001643 else
Douglas Gregor42602bb2009-08-07 06:08:38 +00001644 Expr::DoDestroy(C);
Daniel Dunbar90488912008-08-28 18:02:04 +00001645}
1646
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001647//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00001648// DesignatedInitExpr
1649//===----------------------------------------------------------------------===//
1650
1651IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
1652 assert(Kind == FieldDesignator && "Only valid on a field designator");
1653 if (Field.NameOrField & 0x01)
1654 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
1655 else
1656 return getField()->getIdentifier();
1657}
1658
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001659DesignatedInitExpr::DesignatedInitExpr(QualType Ty, unsigned NumDesignators,
1660 const Designator *Designators,
1661 SourceLocation EqualOrColonLoc,
1662 bool GNUSyntax,
Douglas Gregor9ea62762009-05-21 23:17:49 +00001663 Expr **IndexExprs,
1664 unsigned NumIndexExprs,
1665 Expr *Init)
1666 : Expr(DesignatedInitExprClass, Ty,
1667 Init->isTypeDependent(), Init->isValueDependent()),
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001668 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
Douglas Gregor9ea62762009-05-21 23:17:49 +00001669 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001670 this->Designators = new Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00001671
1672 // Record the initializer itself.
1673 child_iterator Child = child_begin();
1674 *Child++ = Init;
1675
1676 // Copy the designators and their subexpressions, computing
1677 // value-dependence along the way.
1678 unsigned IndexIdx = 0;
1679 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001680 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00001681
1682 if (this->Designators[I].isArrayDesignator()) {
1683 // Compute type- and value-dependence.
1684 Expr *Index = IndexExprs[IndexIdx];
1685 ValueDependent = ValueDependent ||
1686 Index->isTypeDependent() || Index->isValueDependent();
1687
1688 // Copy the index expressions into permanent storage.
1689 *Child++ = IndexExprs[IndexIdx++];
1690 } else if (this->Designators[I].isArrayRangeDesignator()) {
1691 // Compute type- and value-dependence.
1692 Expr *Start = IndexExprs[IndexIdx];
1693 Expr *End = IndexExprs[IndexIdx + 1];
1694 ValueDependent = ValueDependent ||
1695 Start->isTypeDependent() || Start->isValueDependent() ||
1696 End->isTypeDependent() || End->isValueDependent();
1697
1698 // Copy the start/end expressions into permanent storage.
1699 *Child++ = IndexExprs[IndexIdx++];
1700 *Child++ = IndexExprs[IndexIdx++];
1701 }
1702 }
1703
1704 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001705}
1706
Douglas Gregor05c13a32009-01-22 00:58:24 +00001707DesignatedInitExpr *
1708DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
1709 unsigned NumDesignators,
1710 Expr **IndexExprs, unsigned NumIndexExprs,
1711 SourceLocation ColonOrEqualLoc,
1712 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00001713 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00001714 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor9ea62762009-05-21 23:17:49 +00001715 return new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators, Designators,
1716 ColonOrEqualLoc, UsesColonSyntax,
1717 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001718}
1719
Douglas Gregord077d752009-04-16 00:55:48 +00001720DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
1721 unsigned NumIndexExprs) {
1722 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
1723 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
1724 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
1725}
1726
1727void DesignatedInitExpr::setDesignators(const Designator *Desigs,
1728 unsigned NumDesigs) {
1729 if (Designators)
1730 delete [] Designators;
1731
1732 Designators = new Designator[NumDesigs];
1733 NumDesignators = NumDesigs;
1734 for (unsigned I = 0; I != NumDesigs; ++I)
1735 Designators[I] = Desigs[I];
1736}
1737
Douglas Gregor05c13a32009-01-22 00:58:24 +00001738SourceRange DesignatedInitExpr::getSourceRange() const {
1739 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001740 Designator &First =
1741 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00001742 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00001743 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00001744 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
1745 else
1746 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
1747 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001748 StartLoc =
1749 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001750 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
1751}
1752
Douglas Gregor05c13a32009-01-22 00:58:24 +00001753Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
1754 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
1755 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1756 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001757 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1758 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1759}
1760
1761Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
1762 assert(D.Kind == Designator::ArrayRangeDesignator &&
1763 "Requires array range designator");
1764 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1765 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001766 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1767 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1768}
1769
1770Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
1771 assert(D.Kind == Designator::ArrayRangeDesignator &&
1772 "Requires array range designator");
1773 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1774 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001775 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1776 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
1777}
1778
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001779/// \brief Replaces the designator at index @p Idx with the series
1780/// of designators in [First, Last).
1781void DesignatedInitExpr::ExpandDesignator(unsigned Idx,
1782 const Designator *First,
1783 const Designator *Last) {
1784 unsigned NumNewDesignators = Last - First;
1785 if (NumNewDesignators == 0) {
1786 std::copy_backward(Designators + Idx + 1,
1787 Designators + NumDesignators,
1788 Designators + Idx);
1789 --NumNewDesignators;
1790 return;
1791 } else if (NumNewDesignators == 1) {
1792 Designators[Idx] = *First;
1793 return;
1794 }
1795
1796 Designator *NewDesignators
1797 = new Designator[NumDesignators - 1 + NumNewDesignators];
1798 std::copy(Designators, Designators + Idx, NewDesignators);
1799 std::copy(First, Last, NewDesignators + Idx);
1800 std::copy(Designators + Idx + 1, Designators + NumDesignators,
1801 NewDesignators + Idx + NumNewDesignators);
1802 delete [] Designators;
1803 Designators = NewDesignators;
1804 NumDesignators = NumDesignators - 1 + NumNewDesignators;
1805}
1806
Douglas Gregor42602bb2009-08-07 06:08:38 +00001807void DesignatedInitExpr::DoDestroy(ASTContext &C) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001808 delete [] Designators;
Douglas Gregor42602bb2009-08-07 06:08:38 +00001809 Expr::DoDestroy(C);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001810}
1811
Nate Begeman2ef13e52009-08-10 23:49:36 +00001812ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
1813 Expr **exprs, unsigned nexprs,
1814 SourceLocation rparenloc)
1815: Expr(ParenListExprClass, QualType(),
1816 hasAnyTypeDependentArguments(exprs, nexprs),
1817 hasAnyValueDependentArguments(exprs, nexprs)),
1818 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
1819
1820 Exprs = new (C) Stmt*[nexprs];
1821 for (unsigned i = 0; i != nexprs; ++i)
1822 Exprs[i] = exprs[i];
1823}
1824
1825void ParenListExpr::DoDestroy(ASTContext& C) {
1826 DestroyChildren(C);
1827 if (Exprs) C.Deallocate(Exprs);
1828 this->~ParenListExpr();
1829 C.Deallocate(this);
1830}
1831
Douglas Gregor05c13a32009-01-22 00:58:24 +00001832//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00001833// ExprIterator.
1834//===----------------------------------------------------------------------===//
1835
1836Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
1837Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
1838Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
1839const Expr* ConstExprIterator::operator[](size_t idx) const {
1840 return cast<Expr>(I[idx]);
1841}
1842const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
1843const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
1844
1845//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001846// Child Iterators for iterating over subexpressions/substatements
1847//===----------------------------------------------------------------------===//
1848
1849// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001850Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1851Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001852
Steve Naroff7779db42007-11-12 14:29:37 +00001853// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001854Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1855Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00001856
Steve Naroffe3e9add2008-06-02 23:03:37 +00001857// ObjCPropertyRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001858Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1859Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffae784072008-05-30 00:40:33 +00001860
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00001861// ObjCKVCRefExpr
1862Stmt::child_iterator ObjCKVCRefExpr::child_begin() { return &Base; }
1863Stmt::child_iterator ObjCKVCRefExpr::child_end() { return &Base+1; }
1864
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001865// ObjCSuperExpr
1866Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
1867Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
1868
Steve Narofff242b1b2009-07-24 17:54:45 +00001869// ObjCIsaExpr
1870Stmt::child_iterator ObjCIsaExpr::child_begin() { return &Base; }
1871Stmt::child_iterator ObjCIsaExpr::child_end() { return &Base+1; }
1872
Chris Lattnerd9f69102008-08-10 01:53:14 +00001873// PredefinedExpr
1874Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
1875Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001876
1877// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001878Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1879Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001880
1881// CharacterLiteral
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001882Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek9ac59282007-10-18 23:28:49 +00001883Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001884
1885// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001886Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1887Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001888
Chris Lattner5d661452007-08-26 03:42:43 +00001889// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00001890Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1891Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00001892
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001893// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001894Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1895Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001896
1897// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001898Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1899Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001900
1901// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00001902Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1903Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001904
Sebastian Redl05189992008-11-11 17:56:53 +00001905// SizeOfAlignOfExpr
1906Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
1907 // If this is of a type and the type is a VLA type (and not a typedef), the
1908 // size expression of the VLA needs to be treated as an executable expression.
1909 // Why isn't this weirdness documented better in StmtIterator?
1910 if (isArgumentType()) {
1911 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
1912 getArgumentType().getTypePtr()))
1913 return child_iterator(T);
1914 return child_iterator();
1915 }
Sebastian Redld4575892008-12-03 23:17:54 +00001916 return child_iterator(&Argument.Ex);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001917}
Sebastian Redl05189992008-11-11 17:56:53 +00001918Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
1919 if (isArgumentType())
1920 return child_iterator();
Sebastian Redld4575892008-12-03 23:17:54 +00001921 return child_iterator(&Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001922}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001923
1924// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001925Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001926 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001927}
Ted Kremenek1237c672007-08-24 20:06:47 +00001928Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001929 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001930}
1931
1932// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001933Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001934 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001935}
Ted Kremenek1237c672007-08-24 20:06:47 +00001936Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001937 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001938}
Ted Kremenek1237c672007-08-24 20:06:47 +00001939
1940// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001941Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1942Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001943
Nate Begeman213541a2008-04-18 23:10:10 +00001944// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001945Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1946Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001947
1948// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001949Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1950Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001951
Ted Kremenek1237c672007-08-24 20:06:47 +00001952// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001953Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1954Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001955
1956// BinaryOperator
1957Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001958 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001959}
Ted Kremenek1237c672007-08-24 20:06:47 +00001960Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001961 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001962}
1963
1964// ConditionalOperator
1965Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001966 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001967}
Ted Kremenek1237c672007-08-24 20:06:47 +00001968Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001969 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001970}
1971
1972// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001973Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1974Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001975
Ted Kremenek1237c672007-08-24 20:06:47 +00001976// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001977Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1978Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001979
1980// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001981Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1982 return child_iterator();
1983}
1984
1985Stmt::child_iterator TypesCompatibleExpr::child_end() {
1986 return child_iterator();
1987}
Ted Kremenek1237c672007-08-24 20:06:47 +00001988
1989// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001990Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1991Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001992
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001993// GNUNullExpr
1994Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
1995Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
1996
Eli Friedmand38617c2008-05-14 19:38:39 +00001997// ShuffleVectorExpr
1998Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001999 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00002000}
2001Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002002 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00002003}
2004
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002005// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00002006Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
2007Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002008
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002009// InitListExpr
2010Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002011 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002012}
2013Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002014 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002015}
2016
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002017// DesignatedInitExpr
Douglas Gregor05c13a32009-01-22 00:58:24 +00002018Stmt::child_iterator DesignatedInitExpr::child_begin() {
2019 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2020 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002021 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2022}
2023Stmt::child_iterator DesignatedInitExpr::child_end() {
2024 return child_iterator(&*child_begin() + NumSubExprs);
2025}
2026
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002027// ImplicitValueInitExpr
2028Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
2029 return child_iterator();
2030}
2031
2032Stmt::child_iterator ImplicitValueInitExpr::child_end() {
2033 return child_iterator();
2034}
2035
Nate Begeman2ef13e52009-08-10 23:49:36 +00002036// ParenListExpr
2037Stmt::child_iterator ParenListExpr::child_begin() {
2038 return &Exprs[0];
2039}
2040Stmt::child_iterator ParenListExpr::child_end() {
2041 return &Exprs[0]+NumExprs;
2042}
2043
Ted Kremenek1237c672007-08-24 20:06:47 +00002044// ObjCStringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002045Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002046 return &String;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002047}
2048Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002049 return &String+1;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002050}
Ted Kremenek1237c672007-08-24 20:06:47 +00002051
2052// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002053Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
2054Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00002055
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002056// ObjCSelectorExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002057Stmt::child_iterator ObjCSelectorExpr::child_begin() {
2058 return child_iterator();
2059}
2060Stmt::child_iterator ObjCSelectorExpr::child_end() {
2061 return child_iterator();
2062}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002063
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002064// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002065Stmt::child_iterator ObjCProtocolExpr::child_begin() {
2066 return child_iterator();
2067}
2068Stmt::child_iterator ObjCProtocolExpr::child_end() {
2069 return child_iterator();
2070}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002071
Steve Naroff563477d2007-09-18 23:55:05 +00002072// ObjCMessageExpr
Ted Kremenekea958e572008-05-01 17:26:20 +00002073Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002074 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroff563477d2007-09-18 23:55:05 +00002075}
2076Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002077 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroff563477d2007-09-18 23:55:05 +00002078}
2079
Steve Naroff4eb206b2008-09-03 18:15:37 +00002080// Blocks
Steve Naroff56ee6892008-10-08 17:01:13 +00002081Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
2082Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff4eb206b2008-09-03 18:15:37 +00002083
Ted Kremenek9da13f92008-09-26 23:24:14 +00002084Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
2085Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }