blob: 1410f7e05ca2ffce1079b5836d41ba8176562488 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbar64789f82008-08-11 05:35:13 +000014#include "clang/AST/Expr.h"
15#include "clang/AST/DeclObjC.h"
Chris Lattner4b009652007-07-25 00:24:17 +000016#include "clang/AST/ASTContext.h"
Daniel Dunbarde300732008-08-11 04:54:23 +000017#include "clang/AST/RecordLayout.h"
Chris Lattner4b009652007-07-25 00:24:17 +000018#include "clang/AST/StmtVisitor.h"
Chris Lattnerd9ffbc92007-11-27 18:22:04 +000019#include "clang/Basic/TargetInfo.h"
Chris Lattner4b009652007-07-25 00:24:17 +000020using namespace clang;
21
22//===----------------------------------------------------------------------===//
23// Primary Expressions.
24//===----------------------------------------------------------------------===//
25
Chris Lattnere0391b22008-06-07 22:13:43 +000026/// getValueAsApproximateDouble - This returns the value as an inaccurate
27/// double. Note that this may cause loss of precision, but is useful for
28/// debugging dumps, etc.
29double FloatingLiteral::getValueAsApproximateDouble() const {
30 llvm::APFloat V = getValue();
31 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven);
32 return V.convertToDouble();
33}
34
35
Chris Lattner4b009652007-07-25 00:24:17 +000036StringLiteral::StringLiteral(const char *strData, unsigned byteLength,
37 bool Wide, QualType t, SourceLocation firstLoc,
38 SourceLocation lastLoc) :
39 Expr(StringLiteralClass, t) {
40 // OPTIMIZE: could allocate this appended to the StringLiteral.
41 char *AStrData = new char[byteLength];
42 memcpy(AStrData, strData, byteLength);
43 StrData = AStrData;
44 ByteLength = byteLength;
45 IsWide = Wide;
46 firstTokLoc = firstLoc;
47 lastTokLoc = lastLoc;
48}
49
50StringLiteral::~StringLiteral() {
51 delete[] StrData;
52}
53
54bool UnaryOperator::isPostfix(Opcode Op) {
55 switch (Op) {
56 case PostInc:
57 case PostDec:
58 return true;
59 default:
60 return false;
61 }
62}
63
Ted Kremenek97318dd2008-07-23 22:18:43 +000064bool UnaryOperator::isPrefix(Opcode Op) {
65 switch (Op) {
66 case PreInc:
67 case PreDec:
68 return true;
69 default:
70 return false;
71 }
72}
73
Chris Lattner4b009652007-07-25 00:24:17 +000074/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
75/// corresponds to, e.g. "sizeof" or "[pre]++".
76const char *UnaryOperator::getOpcodeStr(Opcode Op) {
77 switch (Op) {
78 default: assert(0 && "Unknown unary operator");
79 case PostInc: return "++";
80 case PostDec: return "--";
81 case PreInc: return "++";
82 case PreDec: return "--";
83 case AddrOf: return "&";
84 case Deref: return "*";
85 case Plus: return "+";
86 case Minus: return "-";
87 case Not: return "~";
88 case LNot: return "!";
89 case Real: return "__real";
90 case Imag: return "__imag";
91 case SizeOf: return "sizeof";
92 case AlignOf: return "alignof";
93 case Extension: return "__extension__";
Chris Lattner0d9bcea2007-08-30 17:45:32 +000094 case OffsetOf: return "__builtin_offsetof";
Chris Lattner4b009652007-07-25 00:24:17 +000095 }
96}
97
98//===----------------------------------------------------------------------===//
99// Postfix Operators.
100//===----------------------------------------------------------------------===//
101
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000102
Chris Lattner4b009652007-07-25 00:24:17 +0000103CallExpr::CallExpr(Expr *fn, Expr **args, unsigned numargs, QualType t,
104 SourceLocation rparenloc)
Ted Kremeneke4acb9c2007-08-24 18:13:47 +0000105 : Expr(CallExprClass, t), NumArgs(numargs) {
Ted Kremenek2719e982008-06-17 02:43:46 +0000106 SubExprs = new Stmt*[numargs+1];
Ted Kremeneke4acb9c2007-08-24 18:13:47 +0000107 SubExprs[FN] = fn;
Chris Lattner4b009652007-07-25 00:24:17 +0000108 for (unsigned i = 0; i != numargs; ++i)
Ted Kremeneke4acb9c2007-08-24 18:13:47 +0000109 SubExprs[i+ARGS_START] = args[i];
Chris Lattner4b009652007-07-25 00:24:17 +0000110 RParenLoc = rparenloc;
111}
112
Chris Lattnerc257c0d2007-12-28 05:25:02 +0000113/// setNumArgs - This changes the number of arguments present in this call.
114/// Any orphaned expressions are deleted by this, and any new operands are set
115/// to null.
116void CallExpr::setNumArgs(unsigned NumArgs) {
117 // No change, just return.
118 if (NumArgs == getNumArgs()) return;
119
120 // If shrinking # arguments, just delete the extras and forgot them.
121 if (NumArgs < getNumArgs()) {
122 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
123 delete getArg(i);
124 this->NumArgs = NumArgs;
125 return;
126 }
127
128 // Otherwise, we are growing the # arguments. New an bigger argument array.
Ted Kremenek2719e982008-06-17 02:43:46 +0000129 Stmt **NewSubExprs = new Stmt*[NumArgs+1];
Chris Lattnerc257c0d2007-12-28 05:25:02 +0000130 // Copy over args.
131 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
132 NewSubExprs[i] = SubExprs[i];
133 // Null out new args.
134 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
135 NewSubExprs[i] = 0;
136
137 delete[] SubExprs;
138 SubExprs = NewSubExprs;
139 this->NumArgs = NumArgs;
140}
141
Steve Naroff44aec4c2008-01-31 01:07:12 +0000142bool CallExpr::isBuiltinConstantExpr() const {
143 // All simple function calls (e.g. func()) are implicitly cast to pointer to
144 // function. As a result, we try and obtain the DeclRefExpr from the
145 // ImplicitCastExpr.
146 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
147 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
148 return false;
149
150 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
151 if (!DRE)
152 return false;
153
Anders Carlsson2ed959f2008-01-31 02:13:57 +0000154 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
155 if (!FDecl)
156 return false;
157
158 unsigned builtinID = FDecl->getIdentifier()->getBuiltinID();
159 if (!builtinID)
160 return false;
161
162 // We have a builtin that is a constant expression
Eli Friedman8845a812008-05-16 13:28:37 +0000163 return builtinID == Builtin::BI__builtin___CFStringMakeConstantString ||
Anders Carlsson40b90772008-08-25 03:27:15 +0000164 builtinID == Builtin::BI__builtin_classify_type ||
165 builtinID == Builtin::BI__builtin_huge_valf;
Steve Naroff44aec4c2008-01-31 01:07:12 +0000166}
Chris Lattnerc257c0d2007-12-28 05:25:02 +0000167
Steve Naroff8d3b1702007-08-08 22:15:55 +0000168bool CallExpr::isBuiltinClassifyType(llvm::APSInt &Result) const {
169 // The following enum mimics gcc's internal "typeclass.h" file.
170 enum gcc_type_class {
171 no_type_class = -1,
172 void_type_class, integer_type_class, char_type_class,
173 enumeral_type_class, boolean_type_class,
174 pointer_type_class, reference_type_class, offset_type_class,
175 real_type_class, complex_type_class,
176 function_type_class, method_type_class,
177 record_type_class, union_type_class,
178 array_type_class, string_type_class,
179 lang_type_class
180 };
181 Result.setIsSigned(true);
182
183 // All simple function calls (e.g. func()) are implicitly cast to pointer to
184 // function. As a result, we try and obtain the DeclRefExpr from the
185 // ImplicitCastExpr.
186 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
187 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
188 return false;
189 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
190 if (!DRE)
191 return false;
192
193 // We have a DeclRefExpr.
194 if (strcmp(DRE->getDecl()->getName(), "__builtin_classify_type") == 0) {
195 // If no argument was supplied, default to "no_type_class". This isn't
196 // ideal, however it's what gcc does.
197 Result = static_cast<uint64_t>(no_type_class);
198 if (NumArgs >= 1) {
199 QualType argType = getArg(0)->getType();
200
201 if (argType->isVoidType())
202 Result = void_type_class;
203 else if (argType->isEnumeralType())
204 Result = enumeral_type_class;
205 else if (argType->isBooleanType())
206 Result = boolean_type_class;
207 else if (argType->isCharType())
208 Result = string_type_class; // gcc doesn't appear to use char_type_class
209 else if (argType->isIntegerType())
210 Result = integer_type_class;
211 else if (argType->isPointerType())
212 Result = pointer_type_class;
213 else if (argType->isReferenceType())
214 Result = reference_type_class;
215 else if (argType->isRealType())
216 Result = real_type_class;
217 else if (argType->isComplexType())
218 Result = complex_type_class;
219 else if (argType->isFunctionType())
220 Result = function_type_class;
221 else if (argType->isStructureType())
222 Result = record_type_class;
223 else if (argType->isUnionType())
224 Result = union_type_class;
225 else if (argType->isArrayType())
226 Result = array_type_class;
227 else if (argType->isUnionType())
228 Result = union_type_class;
229 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
Chris Lattner19b8f1a2007-11-08 17:56:40 +0000230 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
Steve Naroff8d3b1702007-08-08 22:15:55 +0000231 }
232 return true;
233 }
234 return false;
235}
236
Chris Lattner4b009652007-07-25 00:24:17 +0000237/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
238/// corresponds to, e.g. "<<=".
239const char *BinaryOperator::getOpcodeStr(Opcode Op) {
240 switch (Op) {
241 default: assert(0 && "Unknown binary operator");
242 case Mul: return "*";
243 case Div: return "/";
244 case Rem: return "%";
245 case Add: return "+";
246 case Sub: return "-";
247 case Shl: return "<<";
248 case Shr: return ">>";
249 case LT: return "<";
250 case GT: return ">";
251 case LE: return "<=";
252 case GE: return ">=";
253 case EQ: return "==";
254 case NE: return "!=";
255 case And: return "&";
256 case Xor: return "^";
257 case Or: return "|";
258 case LAnd: return "&&";
259 case LOr: return "||";
260 case Assign: return "=";
261 case MulAssign: return "*=";
262 case DivAssign: return "/=";
263 case RemAssign: return "%=";
264 case AddAssign: return "+=";
265 case SubAssign: return "-=";
266 case ShlAssign: return "<<=";
267 case ShrAssign: return ">>=";
268 case AndAssign: return "&=";
269 case XorAssign: return "^=";
270 case OrAssign: return "|=";
271 case Comma: return ",";
272 }
273}
274
Anders Carlsson762b7c72007-08-31 04:56:16 +0000275InitListExpr::InitListExpr(SourceLocation lbraceloc,
276 Expr **initexprs, unsigned numinits,
277 SourceLocation rbraceloc)
Steve Naroff2e335472008-05-01 02:04:18 +0000278 : Expr(InitListExprClass, QualType()),
279 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc)
Anders Carlsson762b7c72007-08-31 04:56:16 +0000280{
Anders Carlsson762b7c72007-08-31 04:56:16 +0000281 for (unsigned i = 0; i != numinits; i++)
Steve Naroff2e335472008-05-01 02:04:18 +0000282 InitExprs.push_back(initexprs[i]);
Anders Carlsson762b7c72007-08-31 04:56:16 +0000283}
Chris Lattner4b009652007-07-25 00:24:17 +0000284
285//===----------------------------------------------------------------------===//
286// Generic Expression Routines
287//===----------------------------------------------------------------------===//
288
289/// hasLocalSideEffect - Return true if this immediate expression has side
290/// effects, not counting any sub-expressions.
291bool Expr::hasLocalSideEffect() const {
292 switch (getStmtClass()) {
293 default:
294 return false;
295 case ParenExprClass:
296 return cast<ParenExpr>(this)->getSubExpr()->hasLocalSideEffect();
297 case UnaryOperatorClass: {
298 const UnaryOperator *UO = cast<UnaryOperator>(this);
299
300 switch (UO->getOpcode()) {
301 default: return false;
302 case UnaryOperator::PostInc:
303 case UnaryOperator::PostDec:
304 case UnaryOperator::PreInc:
305 case UnaryOperator::PreDec:
306 return true; // ++/--
307
308 case UnaryOperator::Deref:
309 // Dereferencing a volatile pointer is a side-effect.
310 return getType().isVolatileQualified();
311 case UnaryOperator::Real:
312 case UnaryOperator::Imag:
313 // accessing a piece of a volatile complex is a side-effect.
314 return UO->getSubExpr()->getType().isVolatileQualified();
315
316 case UnaryOperator::Extension:
317 return UO->getSubExpr()->hasLocalSideEffect();
318 }
319 }
Chris Lattneref95ffd2007-12-01 06:07:34 +0000320 case BinaryOperatorClass: {
321 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
322 // Consider comma to have side effects if the LHS and RHS both do.
323 if (BinOp->getOpcode() == BinaryOperator::Comma)
324 return BinOp->getLHS()->hasLocalSideEffect() &&
325 BinOp->getRHS()->hasLocalSideEffect();
326
327 return BinOp->isAssignmentOp();
328 }
Chris Lattner06078d22007-08-25 02:00:02 +0000329 case CompoundAssignOperatorClass:
Chris Lattner9c0da3b2007-08-25 01:55:00 +0000330 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000331
Fariborz Jahanian363c59b2007-12-01 19:58:28 +0000332 case ConditionalOperatorClass: {
333 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
334 return Exp->getCond()->hasLocalSideEffect()
335 || (Exp->getLHS() && Exp->getLHS()->hasLocalSideEffect())
336 || (Exp->getRHS() && Exp->getRHS()->hasLocalSideEffect());
337 }
338
Chris Lattner4b009652007-07-25 00:24:17 +0000339 case MemberExprClass:
340 case ArraySubscriptExprClass:
341 // If the base pointer or element is to a volatile pointer/field, accessing
342 // if is a side effect.
343 return getType().isVolatileQualified();
Eli Friedman21fd0292008-05-27 15:24:04 +0000344
Chris Lattner4b009652007-07-25 00:24:17 +0000345 case CallExprClass:
346 // TODO: check attributes for pure/const. "void foo() { strlen("bar"); }"
347 // should warn.
348 return true;
Chris Lattner99f5f0b2007-09-26 22:06:30 +0000349 case ObjCMessageExprClass:
350 return true;
Chris Lattner200964f2008-07-26 19:51:01 +0000351 case StmtExprClass: {
352 // Statement exprs don't logically have side effects themselves, but are
353 // sometimes used in macros in ways that give them a type that is unused.
354 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
355 // however, if the result of the stmt expr is dead, we don't want to emit a
356 // warning.
357 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
358 if (!CS->body_empty())
359 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
360 return E->hasLocalSideEffect();
361 return false;
362 }
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +0000363 case ExplicitCastExprClass:
Argiris Kirtzidis7a1e7412008-08-22 15:38:55 +0000364 case CXXFunctionalCastExprClass:
Chris Lattner4b009652007-07-25 00:24:17 +0000365 // If this is a cast to void, check the operand. Otherwise, the result of
366 // the cast is unused.
367 if (getType()->isVoidType())
368 return cast<CastExpr>(this)->getSubExpr()->hasLocalSideEffect();
369 return false;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000370
Eli Friedmanb924c7f2008-05-19 21:24:43 +0000371 case ImplicitCastExprClass:
372 // Check the operand, since implicit casts are inserted by Sema
373 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasLocalSideEffect();
374
Chris Lattner3e254fb2008-04-08 04:40:51 +0000375 case CXXDefaultArgExprClass:
376 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasLocalSideEffect();
Chris Lattner4b009652007-07-25 00:24:17 +0000377 }
378}
379
380/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
381/// incomplete type other than void. Nonarray expressions that can be lvalues:
382/// - name, where name must be a variable
383/// - e[i]
384/// - (e), where e must be an lvalue
385/// - e.name, where e must be an lvalue
386/// - e->name
387/// - *e, the type of e cannot be a function type
388/// - string-constant
Chris Lattner5bf72022007-10-30 22:53:42 +0000389/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Chris Lattner4b009652007-07-25 00:24:17 +0000390/// - reference type [C++ [expr]]
391///
Chris Lattner25168a52008-07-26 21:30:36 +0000392Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Chris Lattner4b009652007-07-25 00:24:17 +0000393 // first, check the type (C99 6.3.2.1)
394 if (TR->isFunctionType()) // from isObjectType()
395 return LV_NotObjectType;
396
Steve Naroffec7736d2008-02-10 01:39:04 +0000397 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattner25168a52008-07-26 21:30:36 +0000398 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers())
Steve Naroffec7736d2008-02-10 01:39:04 +0000399 return LV_IncompleteVoidType;
400
Chris Lattner4b009652007-07-25 00:24:17 +0000401 if (TR->isReferenceType()) // C++ [expr]
402 return LV_Valid;
403
404 // the type looks fine, now check the expression
405 switch (getStmtClass()) {
406 case StringLiteralClass: // C99 6.5.1p4
Anders Carlsson9e933a22007-11-30 22:47:59 +0000407 return LV_Valid;
Chris Lattner4b009652007-07-25 00:24:17 +0000408 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
409 // For vectors, make sure base is an lvalue (i.e. not a function call).
410 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner25168a52008-07-26 21:30:36 +0000411 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000412 return LV_Valid;
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000413 case DeclRefExprClass: { // C99 6.5.1p2
414 const Decl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
415 if (isa<VarDecl>(RefdDecl) || isa<ImplicitParamDecl>(RefdDecl))
Chris Lattner4b009652007-07-25 00:24:17 +0000416 return LV_Valid;
417 break;
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000418 }
Chris Lattner4b009652007-07-25 00:24:17 +0000419 case MemberExprClass: { // C99 6.5.2.3p4
420 const MemberExpr *m = cast<MemberExpr>(this);
Chris Lattner25168a52008-07-26 21:30:36 +0000421 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000422 }
Chris Lattner5bf72022007-10-30 22:53:42 +0000423 case UnaryOperatorClass:
Chris Lattner4b009652007-07-25 00:24:17 +0000424 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner5bf72022007-10-30 22:53:42 +0000425 return LV_Valid; // C99 6.5.3p4
426
427 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattner1b843a22008-07-25 18:07:19 +0000428 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
429 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner25168a52008-07-26 21:30:36 +0000430 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Chris Lattner4b009652007-07-25 00:24:17 +0000431 break;
432 case ParenExprClass: // C99 6.5.1p5
Chris Lattner25168a52008-07-26 21:30:36 +0000433 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Steve Naroffc7c66532007-12-05 04:00:10 +0000434 case CompoundLiteralExprClass: // C99 6.5.2.5p5
435 return LV_Valid;
Nate Begemanaf6ed502008-04-18 23:10:10 +0000436 case ExtVectorElementExprClass:
437 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Naroffba67f692007-07-30 03:29:09 +0000438 return LV_DuplicateVectorComponents;
439 return LV_Valid;
Steve Naroff46f18f22007-11-12 14:34:27 +0000440 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
441 return LV_Valid;
Steve Naroff8fff8ce2008-05-30 23:23:16 +0000442 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
443 return LV_Valid;
Chris Lattner69909292008-08-10 01:53:14 +0000444 case PredefinedExprClass:
445 return (cast<PredefinedExpr>(this)->getIdentType()
446 == PredefinedExpr::CXXThis
Chris Lattnerc21abaf2008-07-25 23:30:42 +0000447 ? LV_InvalidExpression : LV_Valid);
Chris Lattner3e254fb2008-04-08 04:40:51 +0000448 case CXXDefaultArgExprClass:
Chris Lattner25168a52008-07-26 21:30:36 +0000449 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000450 default:
451 break;
452 }
453 return LV_InvalidExpression;
454}
455
456/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
457/// does not have an incomplete type, does not have a const-qualified type, and
458/// if it is a structure or union, does not have any member (including,
459/// recursively, any member or element of all contained aggregates or unions)
460/// with a const-qualified type.
Chris Lattner25168a52008-07-26 21:30:36 +0000461Expr::isModifiableLvalueResult Expr::isModifiableLvalue(ASTContext &Ctx) const {
462 isLvalueResult lvalResult = isLvalue(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000463
464 switch (lvalResult) {
465 case LV_Valid: break;
466 case LV_NotObjectType: return MLV_NotObjectType;
467 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Naroffba67f692007-07-30 03:29:09 +0000468 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattner4b009652007-07-25 00:24:17 +0000469 case LV_InvalidExpression: return MLV_InvalidExpression;
470 }
Chris Lattnera1923f62008-08-04 07:31:14 +0000471
472 QualType CT = Ctx.getCanonicalType(getType());
473
474 if (CT.isConstQualified())
Chris Lattner4b009652007-07-25 00:24:17 +0000475 return MLV_ConstQualified;
Chris Lattnera1923f62008-08-04 07:31:14 +0000476 if (CT->isArrayType())
Chris Lattner4b009652007-07-25 00:24:17 +0000477 return MLV_ArrayType;
Chris Lattnera1923f62008-08-04 07:31:14 +0000478 if (CT->isIncompleteType())
Chris Lattner4b009652007-07-25 00:24:17 +0000479 return MLV_IncompleteType;
480
Chris Lattnera1923f62008-08-04 07:31:14 +0000481 if (const RecordType *r = CT->getAsRecordType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000482 if (r->hasConstFields())
483 return MLV_ConstQualified;
484 }
485 return MLV_Valid;
486}
487
Ted Kremenek5778d622008-02-27 18:39:48 +0000488/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner743ec372007-11-27 21:35:27 +0000489/// duration. This means that the address of this expression is a link-time
490/// constant.
Ted Kremenek5778d622008-02-27 18:39:48 +0000491bool Expr::hasGlobalStorage() const {
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000492 switch (getStmtClass()) {
493 default:
494 return false;
Chris Lattner743ec372007-11-27 21:35:27 +0000495 case ParenExprClass:
Ted Kremenek5778d622008-02-27 18:39:48 +0000496 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner743ec372007-11-27 21:35:27 +0000497 case ImplicitCastExprClass:
Ted Kremenek5778d622008-02-27 18:39:48 +0000498 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffbe37fc02008-01-14 18:19:28 +0000499 case CompoundLiteralExprClass:
500 return cast<CompoundLiteralExpr>(this)->isFileScope();
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000501 case DeclRefExprClass: {
502 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
503 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek5778d622008-02-27 18:39:48 +0000504 return VD->hasGlobalStorage();
Seo Sanghyeone330ae72008-04-04 09:45:30 +0000505 if (isa<FunctionDecl>(D))
506 return true;
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000507 return false;
508 }
Chris Lattnerdb586bf2007-11-28 04:30:09 +0000509 case MemberExprClass: {
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000510 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek5778d622008-02-27 18:39:48 +0000511 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerdb586bf2007-11-28 04:30:09 +0000512 }
Chris Lattner743ec372007-11-27 21:35:27 +0000513 case ArraySubscriptExprClass:
Ted Kremenek5778d622008-02-27 18:39:48 +0000514 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattner69909292008-08-10 01:53:14 +0000515 case PredefinedExprClass:
Chris Lattner7e637512008-01-12 08:14:25 +0000516 return true;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000517 case CXXDefaultArgExprClass:
518 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000519 }
520}
521
Ted Kremenek87e30c52008-01-17 16:57:34 +0000522Expr* Expr::IgnoreParens() {
523 Expr* E = this;
524 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
525 E = P->getSubExpr();
526
527 return E;
528}
529
Chris Lattner7a48d9c2008-02-13 01:02:39 +0000530/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
531/// or CastExprs or ImplicitCastExprs, returning their operand.
532Expr *Expr::IgnoreParenCasts() {
533 Expr *E = this;
534 while (true) {
535 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
536 E = P->getSubExpr();
537 else if (CastExpr *P = dyn_cast<CastExpr>(E))
538 E = P->getSubExpr();
Chris Lattner7a48d9c2008-02-13 01:02:39 +0000539 else
540 return E;
541 }
542}
543
544
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000545bool Expr::isConstantExpr(ASTContext &Ctx, SourceLocation *Loc) const {
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000546 switch (getStmtClass()) {
547 default:
548 if (Loc) *Loc = getLocStart();
549 return false;
550 case ParenExprClass:
551 return cast<ParenExpr>(this)->getSubExpr()->isConstantExpr(Ctx, Loc);
552 case StringLiteralClass:
Steve Naroff4fdea132007-11-09 15:00:03 +0000553 case ObjCStringLiteralClass:
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000554 case FloatingLiteralClass:
555 case IntegerLiteralClass:
556 case CharacterLiteralClass:
557 case ImaginaryLiteralClass:
Anders Carlsson855d78d2007-10-17 00:52:43 +0000558 case TypesCompatibleExprClass:
559 case CXXBoolLiteralExprClass:
Anders Carlsson458deb72008-08-23 18:49:32 +0000560 case AddrLabelExprClass:
Chris Lattner06db6132007-10-18 00:20:32 +0000561 return true;
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000562 case CallExprClass: {
563 const CallExpr *CE = cast<CallExpr>(this);
Steve Naroff44aec4c2008-01-31 01:07:12 +0000564 if (CE->isBuiltinConstantExpr())
565 return true;
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000566 if (Loc) *Loc = getLocStart();
567 return false;
568 }
Chris Lattner42e86b62007-11-01 02:45:17 +0000569 case DeclRefExprClass: {
570 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
571 // Accept address of function.
572 if (isa<EnumConstantDecl>(D) || isa<FunctionDecl>(D))
Chris Lattner06db6132007-10-18 00:20:32 +0000573 return true;
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000574 if (Loc) *Loc = getLocStart();
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000575 if (isa<VarDecl>(D))
576 return TR->isArrayType();
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000577 return false;
Chris Lattner42e86b62007-11-01 02:45:17 +0000578 }
Steve Narofff91f9722008-01-09 00:05:37 +0000579 case CompoundLiteralExprClass:
580 if (Loc) *Loc = getLocStart();
581 // Allow "(int []){2,4}", since the array will be converted to a pointer.
Nate Begemanc4e28e42008-01-25 05:34:48 +0000582 // Allow "(vector type){2,4}" since the elements are all constant.
583 return TR->isArrayType() || TR->isVectorType();
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000584 case UnaryOperatorClass: {
585 const UnaryOperator *Exp = cast<UnaryOperator>(this);
586
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000587 // C99 6.6p9
Chris Lattner35b662f2007-12-11 23:11:17 +0000588 if (Exp->getOpcode() == UnaryOperator::AddrOf) {
Ted Kremenek5778d622008-02-27 18:39:48 +0000589 if (!Exp->getSubExpr()->hasGlobalStorage()) {
Chris Lattner35b662f2007-12-11 23:11:17 +0000590 if (Loc) *Loc = getLocStart();
591 return false;
592 }
593 return true;
594 }
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000595
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000596 // Get the operand value. If this is sizeof/alignof, do not evalute the
597 // operand. This affects C99 6.6p3.
Steve Narofff0b23542008-01-10 22:15:12 +0000598 if (!Exp->isSizeOfAlignOfOp() &&
599 Exp->getOpcode() != UnaryOperator::OffsetOf &&
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000600 !Exp->getSubExpr()->isConstantExpr(Ctx, Loc))
601 return false;
602
603 switch (Exp->getOpcode()) {
604 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
605 // See C99 6.6p3.
606 default:
607 if (Loc) *Loc = Exp->getOperatorLoc();
608 return false;
609 case UnaryOperator::Extension:
610 return true; // FIXME: this is wrong.
611 case UnaryOperator::SizeOf:
612 case UnaryOperator::AlignOf:
Steve Narofff0b23542008-01-10 22:15:12 +0000613 case UnaryOperator::OffsetOf:
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000614 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Eli Friedman62f67fd2008-02-15 12:20:59 +0000615 if (!Exp->getSubExpr()->getType()->isConstantSizeType()) {
Chris Lattnerb3ff0822007-12-18 07:15:40 +0000616 if (Loc) *Loc = Exp->getOperatorLoc();
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000617 return false;
Chris Lattnerb3ff0822007-12-18 07:15:40 +0000618 }
Chris Lattner06db6132007-10-18 00:20:32 +0000619 return true;
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000620 case UnaryOperator::LNot:
621 case UnaryOperator::Plus:
622 case UnaryOperator::Minus:
623 case UnaryOperator::Not:
Chris Lattner06db6132007-10-18 00:20:32 +0000624 return true;
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000625 }
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000626 }
627 case SizeOfAlignOfTypeExprClass: {
628 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this);
629 // alignof always evaluates to a constant.
Chris Lattner20515462008-02-21 05:45:29 +0000630 if (Exp->isSizeOf() && !Exp->getArgumentType()->isVoidType() &&
631 !Exp->getArgumentType()->isConstantSizeType()) {
Chris Lattnerb3ff0822007-12-18 07:15:40 +0000632 if (Loc) *Loc = Exp->getOperatorLoc();
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000633 return false;
Chris Lattnerb3ff0822007-12-18 07:15:40 +0000634 }
Chris Lattner06db6132007-10-18 00:20:32 +0000635 return true;
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000636 }
637 case BinaryOperatorClass: {
638 const BinaryOperator *Exp = cast<BinaryOperator>(this);
639
640 // The LHS of a constant expr is always evaluated and needed.
641 if (!Exp->getLHS()->isConstantExpr(Ctx, Loc))
642 return false;
643
644 if (!Exp->getRHS()->isConstantExpr(Ctx, Loc))
645 return false;
Chris Lattner06db6132007-10-18 00:20:32 +0000646 return true;
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000647 }
648 case ImplicitCastExprClass:
Argiris Kirtzidis7a1e7412008-08-22 15:38:55 +0000649 case ExplicitCastExprClass:
650 case CXXFunctionalCastExprClass: {
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +0000651 const Expr *SubExpr = cast<CastExpr>(this)->getSubExpr();
652 SourceLocation CastLoc = getLocStart();
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000653 if (!SubExpr->isConstantExpr(Ctx, Loc)) {
654 if (Loc) *Loc = SubExpr->getLocStart();
655 return false;
656 }
Chris Lattner06db6132007-10-18 00:20:32 +0000657 return true;
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000658 }
659 case ConditionalOperatorClass: {
660 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Chris Lattner06db6132007-10-18 00:20:32 +0000661 if (!Exp->getCond()->isConstantExpr(Ctx, Loc) ||
Anders Carlsson37365fc2007-11-30 19:04:31 +0000662 // Handle the GNU extension for missing LHS.
663 !(Exp->getLHS() && Exp->getLHS()->isConstantExpr(Ctx, Loc)) ||
Chris Lattner06db6132007-10-18 00:20:32 +0000664 !Exp->getRHS()->isConstantExpr(Ctx, Loc))
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000665 return false;
Chris Lattner06db6132007-10-18 00:20:32 +0000666 return true;
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000667 }
Steve Narofff0b23542008-01-10 22:15:12 +0000668 case InitListExprClass: {
669 const InitListExpr *Exp = cast<InitListExpr>(this);
670 unsigned numInits = Exp->getNumInits();
671 for (unsigned i = 0; i < numInits; i++) {
672 if (!Exp->getInit(i)->isConstantExpr(Ctx, Loc)) {
673 if (Loc) *Loc = Exp->getInit(i)->getLocStart();
674 return false;
675 }
676 }
677 return true;
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000678 }
Chris Lattner3e254fb2008-04-08 04:40:51 +0000679 case CXXDefaultArgExprClass:
680 return cast<CXXDefaultArgExpr>(this)->getExpr()->isConstantExpr(Ctx, Loc);
Steve Narofff0b23542008-01-10 22:15:12 +0000681 }
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000682}
683
Chris Lattner4b009652007-07-25 00:24:17 +0000684/// isIntegerConstantExpr - this recursive routine will test if an expression is
685/// an integer constant expression. Note: With the introduction of VLA's in
686/// C99 the result of the sizeof operator is no longer always a constant
687/// expression. The generalization of the wording to include any subexpression
688/// that is not evaluated (C99 6.6p3) means that nonconstant subexpressions
689/// can appear as operands to other operators (e.g. &&, ||, ?:). For instance,
Nuno Lopese1b10a12008-07-08 21:13:06 +0000690/// "0 || f()" can be treated as a constant expression. In C90 this expression,
Chris Lattner4b009652007-07-25 00:24:17 +0000691/// occurring in a context requiring a constant, would have been a constraint
692/// violation. FIXME: This routine currently implements C90 semantics.
693/// To properly implement C99 semantics this routine will need to evaluate
694/// expressions involving operators previously mentioned.
695
696/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
697/// comma, etc
698///
699/// FIXME: This should ext-warn on overflow during evaluation! ISO C does not
Chris Lattner9d020b32007-09-26 00:47:26 +0000700/// permit this. This includes things like (int)1e1000
Chris Lattner4b009652007-07-25 00:24:17 +0000701///
702/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
703/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
704/// cast+dereference.
705bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
706 SourceLocation *Loc, bool isEvaluated) const {
707 switch (getStmtClass()) {
708 default:
709 if (Loc) *Loc = getLocStart();
710 return false;
711 case ParenExprClass:
712 return cast<ParenExpr>(this)->getSubExpr()->
713 isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
714 case IntegerLiteralClass:
715 Result = cast<IntegerLiteral>(this)->getValue();
716 break;
717 case CharacterLiteralClass: {
718 const CharacterLiteral *CL = cast<CharacterLiteral>(this);
Chris Lattner8cd0e932008-03-05 18:54:05 +0000719 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner4b009652007-07-25 00:24:17 +0000720 Result = CL->getValue();
721 Result.setIsUnsigned(!getType()->isSignedIntegerType());
722 break;
723 }
Anders Carlssoned6c2142008-08-23 21:12:35 +0000724 case CXXBoolLiteralExprClass: {
725 const CXXBoolLiteralExpr *BL = cast<CXXBoolLiteralExpr>(this);
726 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
727 Result = BL->getValue();
728 Result.setIsUnsigned(!getType()->isSignedIntegerType());
729 break;
730 }
Argiris Kirtzidis750eb972008-08-23 19:35:47 +0000731 case CXXZeroInitValueExprClass:
732 Result.clear();
733 break;
Steve Naroffc6f0fd32007-08-02 04:09:23 +0000734 case TypesCompatibleExprClass: {
735 const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this);
Chris Lattner8cd0e932008-03-05 18:54:05 +0000736 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Steve Naroff85f0dc52007-10-15 20:41:53 +0000737 Result = Ctx.typesAreCompatible(TCE->getArgType1(), TCE->getArgType2());
Steve Naroff1200b5a2007-08-02 00:13:27 +0000738 break;
Steve Naroffc6f0fd32007-08-02 04:09:23 +0000739 }
Steve Naroff8d3b1702007-08-08 22:15:55 +0000740 case CallExprClass: {
741 const CallExpr *CE = cast<CallExpr>(this);
Chris Lattner8cd0e932008-03-05 18:54:05 +0000742 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Steve Naroff8d3b1702007-08-08 22:15:55 +0000743 if (CE->isBuiltinClassifyType(Result))
744 break;
745 if (Loc) *Loc = getLocStart();
746 return false;
747 }
Chris Lattner4b009652007-07-25 00:24:17 +0000748 case DeclRefExprClass:
749 if (const EnumConstantDecl *D =
750 dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) {
751 Result = D->getInitVal();
752 break;
753 }
754 if (Loc) *Loc = getLocStart();
755 return false;
756 case UnaryOperatorClass: {
757 const UnaryOperator *Exp = cast<UnaryOperator>(this);
758
759 // Get the operand value. If this is sizeof/alignof, do not evalute the
760 // operand. This affects C99 6.6p3.
Anders Carlsson52774ad2008-01-29 15:56:48 +0000761 if (!Exp->isSizeOfAlignOfOp() && !Exp->isOffsetOfOp() &&
Chris Lattner5a9b6242007-08-23 21:42:50 +0000762 !Exp->getSubExpr()->isIntegerConstantExpr(Result, Ctx, Loc,isEvaluated))
Chris Lattner4b009652007-07-25 00:24:17 +0000763 return false;
764
765 switch (Exp->getOpcode()) {
766 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
767 // See C99 6.6p3.
768 default:
769 if (Loc) *Loc = Exp->getOperatorLoc();
770 return false;
771 case UnaryOperator::Extension:
772 return true; // FIXME: this is wrong.
773 case UnaryOperator::SizeOf:
774 case UnaryOperator::AlignOf:
Chris Lattner20515462008-02-21 05:45:29 +0000775 // Return the result in the right width.
Chris Lattner8cd0e932008-03-05 18:54:05 +0000776 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner20515462008-02-21 05:45:29 +0000777
778 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
779 if (Exp->getSubExpr()->getType()->isVoidType()) {
780 Result = 1;
781 break;
782 }
783
Chris Lattner4b009652007-07-25 00:24:17 +0000784 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Eli Friedman62f67fd2008-02-15 12:20:59 +0000785 if (!Exp->getSubExpr()->getType()->isConstantSizeType()) {
Chris Lattnerb3ff0822007-12-18 07:15:40 +0000786 if (Loc) *Loc = Exp->getOperatorLoc();
Chris Lattner4b009652007-07-25 00:24:17 +0000787 return false;
Chris Lattnerb3ff0822007-12-18 07:15:40 +0000788 }
Chris Lattner4b009652007-07-25 00:24:17 +0000789
Chris Lattner4b009652007-07-25 00:24:17 +0000790 // Get information about the size or align.
Chris Lattnerd4dc2672008-01-02 21:54:09 +0000791 if (Exp->getSubExpr()->getType()->isFunctionType()) {
792 // GCC extension: sizeof(function) = 1.
793 Result = Exp->getOpcode() == UnaryOperator::AlignOf ? 4 : 1;
Chris Lattnerd9ffbc92007-11-27 18:22:04 +0000794 } else {
Chris Lattner8cd0e932008-03-05 18:54:05 +0000795 unsigned CharSize = Ctx.Target.getCharWidth();
Anders Carlsson1f86b032008-02-18 07:10:45 +0000796 if (Exp->getOpcode() == UnaryOperator::AlignOf)
Chris Lattner8cd0e932008-03-05 18:54:05 +0000797 Result = Ctx.getTypeAlign(Exp->getSubExpr()->getType()) / CharSize;
Anders Carlsson1f86b032008-02-18 07:10:45 +0000798 else
Chris Lattner8cd0e932008-03-05 18:54:05 +0000799 Result = Ctx.getTypeSize(Exp->getSubExpr()->getType()) / CharSize;
Chris Lattnerd9ffbc92007-11-27 18:22:04 +0000800 }
Chris Lattner4b009652007-07-25 00:24:17 +0000801 break;
802 case UnaryOperator::LNot: {
Chris Lattnerf00fdc02008-01-25 19:16:19 +0000803 bool Val = Result == 0;
Chris Lattner8cd0e932008-03-05 18:54:05 +0000804 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner4b009652007-07-25 00:24:17 +0000805 Result = Val;
806 break;
807 }
808 case UnaryOperator::Plus:
809 break;
810 case UnaryOperator::Minus:
811 Result = -Result;
812 break;
813 case UnaryOperator::Not:
814 Result = ~Result;
815 break;
Anders Carlsson52774ad2008-01-29 15:56:48 +0000816 case UnaryOperator::OffsetOf:
Daniel Dunbar461d08c2008-08-28 18:42:20 +0000817 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Anders Carlsson52774ad2008-01-29 15:56:48 +0000818 Result = Exp->evaluateOffsetOf(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000819 }
820 break;
821 }
822 case SizeOfAlignOfTypeExprClass: {
823 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this);
Chris Lattner20515462008-02-21 05:45:29 +0000824
825 // Return the result in the right width.
Chris Lattner8cd0e932008-03-05 18:54:05 +0000826 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner20515462008-02-21 05:45:29 +0000827
828 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
829 if (Exp->getArgumentType()->isVoidType()) {
830 Result = 1;
831 break;
832 }
833
834 // alignof always evaluates to a constant, sizeof does if arg is not VLA.
Eli Friedman62f67fd2008-02-15 12:20:59 +0000835 if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType()) {
Chris Lattnerb3ff0822007-12-18 07:15:40 +0000836 if (Loc) *Loc = Exp->getOperatorLoc();
Chris Lattner4b009652007-07-25 00:24:17 +0000837 return false;
Chris Lattnerb3ff0822007-12-18 07:15:40 +0000838 }
Chris Lattner4b009652007-07-25 00:24:17 +0000839
Chris Lattner4b009652007-07-25 00:24:17 +0000840 // Get information about the size or align.
Chris Lattnerd4dc2672008-01-02 21:54:09 +0000841 if (Exp->getArgumentType()->isFunctionType()) {
842 // GCC extension: sizeof(function) = 1.
843 Result = Exp->isSizeOf() ? 1 : 4;
Anders Carlsson8d2b2b72008-02-16 01:20:23 +0000844 } else {
Chris Lattner8cd0e932008-03-05 18:54:05 +0000845 unsigned CharSize = Ctx.Target.getCharWidth();
Anders Carlsson8d2b2b72008-02-16 01:20:23 +0000846 if (Exp->isSizeOf())
Chris Lattner8cd0e932008-03-05 18:54:05 +0000847 Result = Ctx.getTypeSize(Exp->getArgumentType()) / CharSize;
Anders Carlsson8d2b2b72008-02-16 01:20:23 +0000848 else
Chris Lattner8cd0e932008-03-05 18:54:05 +0000849 Result = Ctx.getTypeAlign(Exp->getArgumentType()) / CharSize;
Ted Kremeneka9d0fd92007-12-17 17:38:43 +0000850 }
Chris Lattner4b009652007-07-25 00:24:17 +0000851 break;
852 }
853 case BinaryOperatorClass: {
854 const BinaryOperator *Exp = cast<BinaryOperator>(this);
855
856 // The LHS of a constant expr is always evaluated and needed.
857 if (!Exp->getLHS()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
858 return false;
859
860 llvm::APSInt RHS(Result);
861
862 // The short-circuiting &&/|| operators don't necessarily evaluate their
863 // RHS. Make sure to pass isEvaluated down correctly.
864 if (Exp->isLogicalOp()) {
865 bool RHSEval;
866 if (Exp->getOpcode() == BinaryOperator::LAnd)
867 RHSEval = Result != 0;
868 else {
869 assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical");
870 RHSEval = Result == 0;
871 }
872
873 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc,
874 isEvaluated & RHSEval))
875 return false;
876 } else {
877 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated))
878 return false;
879 }
880
881 switch (Exp->getOpcode()) {
882 default:
883 if (Loc) *Loc = getLocStart();
884 return false;
885 case BinaryOperator::Mul:
886 Result *= RHS;
887 break;
888 case BinaryOperator::Div:
889 if (RHS == 0) {
890 if (!isEvaluated) break;
891 if (Loc) *Loc = getLocStart();
892 return false;
893 }
894 Result /= RHS;
895 break;
896 case BinaryOperator::Rem:
897 if (RHS == 0) {
898 if (!isEvaluated) break;
899 if (Loc) *Loc = getLocStart();
900 return false;
901 }
902 Result %= RHS;
903 break;
904 case BinaryOperator::Add: Result += RHS; break;
905 case BinaryOperator::Sub: Result -= RHS; break;
906 case BinaryOperator::Shl:
Chris Lattner3496d522007-09-04 02:45:27 +0000907 Result <<=
908 static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1));
Chris Lattner4b009652007-07-25 00:24:17 +0000909 break;
910 case BinaryOperator::Shr:
Chris Lattner3496d522007-09-04 02:45:27 +0000911 Result >>=
912 static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1));
Chris Lattner4b009652007-07-25 00:24:17 +0000913 break;
914 case BinaryOperator::LT: Result = Result < RHS; break;
915 case BinaryOperator::GT: Result = Result > RHS; break;
916 case BinaryOperator::LE: Result = Result <= RHS; break;
917 case BinaryOperator::GE: Result = Result >= RHS; break;
918 case BinaryOperator::EQ: Result = Result == RHS; break;
919 case BinaryOperator::NE: Result = Result != RHS; break;
920 case BinaryOperator::And: Result &= RHS; break;
921 case BinaryOperator::Xor: Result ^= RHS; break;
922 case BinaryOperator::Or: Result |= RHS; break;
923 case BinaryOperator::LAnd:
924 Result = Result != 0 && RHS != 0;
925 break;
926 case BinaryOperator::LOr:
927 Result = Result != 0 || RHS != 0;
928 break;
929
930 case BinaryOperator::Comma:
931 // C99 6.6p3: "shall not contain assignment, ..., or comma operators,
932 // *except* when they are contained within a subexpression that is not
933 // evaluated". Note that Assignment can never happen due to constraints
934 // on the LHS subexpr, so we don't need to check it here.
935 if (isEvaluated) {
936 if (Loc) *Loc = getLocStart();
937 return false;
938 }
939
940 // The result of the constant expr is the RHS.
941 Result = RHS;
942 return true;
943 }
944
945 assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!");
946 break;
947 }
948 case ImplicitCastExprClass:
Argiris Kirtzidis7a1e7412008-08-22 15:38:55 +0000949 case ExplicitCastExprClass:
950 case CXXFunctionalCastExprClass: {
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +0000951 const Expr *SubExpr = cast<CastExpr>(this)->getSubExpr();
952 SourceLocation CastLoc = getLocStart();
Chris Lattner4b009652007-07-25 00:24:17 +0000953
954 // C99 6.6p6: shall only convert arithmetic types to integer types.
955 if (!SubExpr->getType()->isArithmeticType() ||
956 !getType()->isIntegerType()) {
957 if (Loc) *Loc = SubExpr->getLocStart();
958 return false;
959 }
Chris Lattner76a0c1b2007-09-22 19:04:13 +0000960
Chris Lattner8cd0e932008-03-05 18:54:05 +0000961 uint32_t DestWidth = static_cast<uint32_t>(Ctx.getTypeSize(getType()));
Chris Lattner76a0c1b2007-09-22 19:04:13 +0000962
Chris Lattner4b009652007-07-25 00:24:17 +0000963 // Handle simple integer->integer casts.
964 if (SubExpr->getType()->isIntegerType()) {
965 if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
966 return false;
967
968 // Figure out if this is a truncate, extend or noop cast.
Chris Lattner4b009652007-07-25 00:24:17 +0000969 // If the input is signed, do a sign extend, noop, or truncate.
Chris Lattner000c4102008-01-09 18:59:34 +0000970 if (getType()->isBooleanType()) {
971 // Conversion to bool compares against zero.
972 Result = Result != 0;
973 Result.zextOrTrunc(DestWidth);
974 } else if (SubExpr->getType()->isSignedIntegerType())
Chris Lattner4b009652007-07-25 00:24:17 +0000975 Result.sextOrTrunc(DestWidth);
976 else // If the input is unsigned, do a zero extend, noop, or truncate.
977 Result.zextOrTrunc(DestWidth);
978 break;
979 }
980
981 // Allow floating constants that are the immediate operands of casts or that
982 // are parenthesized.
983 const Expr *Operand = SubExpr;
984 while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand))
985 Operand = PE->getSubExpr();
Chris Lattner76a0c1b2007-09-22 19:04:13 +0000986
987 // If this isn't a floating literal, we can't handle it.
988 const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand);
989 if (!FL) {
990 if (Loc) *Loc = Operand->getLocStart();
991 return false;
Chris Lattner4b009652007-07-25 00:24:17 +0000992 }
Chris Lattner000c4102008-01-09 18:59:34 +0000993
994 // If the destination is boolean, compare against zero.
995 if (getType()->isBooleanType()) {
996 Result = !FL->getValue().isZero();
997 Result.zextOrTrunc(DestWidth);
998 break;
999 }
Chris Lattner76a0c1b2007-09-22 19:04:13 +00001000
1001 // Determine whether we are converting to unsigned or signed.
1002 bool DestSigned = getType()->isSignedIntegerType();
Chris Lattner9d020b32007-09-26 00:47:26 +00001003
1004 // TODO: Warn on overflow, but probably not here: isIntegerConstantExpr can
1005 // be called multiple times per AST.
Chris Lattner76a0c1b2007-09-22 19:04:13 +00001006 uint64_t Space[4];
Chris Lattner9d020b32007-09-26 00:47:26 +00001007 (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned,
1008 llvm::APFloat::rmTowardZero);
Chris Lattner76a0c1b2007-09-22 19:04:13 +00001009 Result = llvm::APInt(DestWidth, 4, Space);
1010 break;
Chris Lattner4b009652007-07-25 00:24:17 +00001011 }
1012 case ConditionalOperatorClass: {
1013 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
1014
1015 if (!Exp->getCond()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
1016 return false;
1017
1018 const Expr *TrueExp = Exp->getLHS();
1019 const Expr *FalseExp = Exp->getRHS();
1020 if (Result == 0) std::swap(TrueExp, FalseExp);
1021
1022 // Evaluate the false one first, discard the result.
Anders Carlsson37365fc2007-11-30 19:04:31 +00001023 if (FalseExp && !FalseExp->isIntegerConstantExpr(Result, Ctx, Loc, false))
Chris Lattner4b009652007-07-25 00:24:17 +00001024 return false;
1025 // Evalute the true one, capture the result.
Anders Carlsson37365fc2007-11-30 19:04:31 +00001026 if (TrueExp &&
1027 !TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Chris Lattner4b009652007-07-25 00:24:17 +00001028 return false;
1029 break;
1030 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00001031 case CXXDefaultArgExprClass:
1032 return cast<CXXDefaultArgExpr>(this)
1033 ->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
Chris Lattner4b009652007-07-25 00:24:17 +00001034 }
1035
1036 // Cases that are valid constant exprs fall through to here.
1037 Result.setIsUnsigned(getType()->isUnsignedIntegerType());
1038 return true;
1039}
1040
Chris Lattner4b009652007-07-25 00:24:17 +00001041/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1042/// integer constant expression with the value zero, or if this is one that is
1043/// cast to void*.
1044bool Expr::isNullPointerConstant(ASTContext &Ctx) const {
Steve Naroffa2e53222008-01-14 16:10:57 +00001045 // Strip off a cast to void*, if it exists.
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00001046 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Steve Naroffa2e53222008-01-14 16:10:57 +00001047 // Check that it is a cast to void*.
Eli Friedmand899dbe2008-02-13 17:29:58 +00001048 if (const PointerType *PT = CE->getType()->getAsPointerType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001049 QualType Pointee = PT->getPointeeType();
Chris Lattner35fef522008-02-20 20:55:12 +00001050 if (Pointee.getCVRQualifiers() == 0 &&
1051 Pointee->isVoidType() && // to void*
Steve Naroffa2e53222008-01-14 16:10:57 +00001052 CE->getSubExpr()->getType()->isIntegerType()) // from int.
1053 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +00001054 }
Steve Naroffa2e53222008-01-14 16:10:57 +00001055 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1056 // Ignore the ImplicitCastExpr type entirely.
1057 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
1058 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1059 // Accept ((void*)0) as a null pointer constant, as many other
1060 // implementations do.
1061 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner97316c02008-04-10 02:22:51 +00001062 } else if (const CXXDefaultArgExpr *DefaultArg
1063 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00001064 // See through default argument expressions
1065 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Steve Narofff33a9852008-01-14 02:53:34 +00001066 }
Steve Naroffa2e53222008-01-14 16:10:57 +00001067
1068 // This expression must be an integer type.
1069 if (!getType()->isIntegerType())
1070 return false;
1071
Chris Lattner4b009652007-07-25 00:24:17 +00001072 // If we have an integer constant expression, we need to *evaluate* it and
1073 // test for the value 0.
1074 llvm::APSInt Val(32);
Steve Naroffa2e53222008-01-14 16:10:57 +00001075 return isIntegerConstantExpr(Val, Ctx, 0, true) && Val == 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001076}
Steve Naroffc11705f2007-07-28 23:10:27 +00001077
Nate Begemanaf6ed502008-04-18 23:10:10 +00001078unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begemanc8e51f82008-05-09 06:41:27 +00001079 if (const VectorType *VT = getType()->getAsVectorType())
1080 return VT->getNumElements();
1081 return 1;
Chris Lattner50547852007-08-03 16:00:20 +00001082}
1083
Nate Begemanc8e51f82008-05-09 06:41:27 +00001084/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begemanaf6ed502008-04-18 23:10:10 +00001085bool ExtVectorElementExpr::containsDuplicateElements() const {
Steve Naroffba67f692007-07-30 03:29:09 +00001086 const char *compStr = Accessor.getName();
1087 unsigned length = strlen(compStr);
1088
1089 for (unsigned i = 0; i < length-1; i++) {
1090 const char *s = compStr+i;
1091 for (const char c = *s++; *s; s++)
1092 if (c == *s)
1093 return true;
1094 }
1095 return false;
1096}
Chris Lattner42158e72007-08-02 23:36:59 +00001097
Nate Begemanc8e51f82008-05-09 06:41:27 +00001098/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begemana1ae7442008-05-13 21:03:02 +00001099void ExtVectorElementExpr::getEncodedElementAccess(
1100 llvm::SmallVectorImpl<unsigned> &Elts) const {
Chris Lattner42158e72007-08-02 23:36:59 +00001101 const char *compStr = Accessor.getName();
Nate Begemanc8e51f82008-05-09 06:41:27 +00001102
1103 bool isHi = !strcmp(compStr, "hi");
1104 bool isLo = !strcmp(compStr, "lo");
1105 bool isEven = !strcmp(compStr, "e");
1106 bool isOdd = !strcmp(compStr, "o");
1107
1108 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1109 uint64_t Index;
1110
1111 if (isHi)
1112 Index = e + i;
1113 else if (isLo)
1114 Index = i;
1115 else if (isEven)
1116 Index = 2 * i;
1117 else if (isOdd)
1118 Index = 2 * i + 1;
1119 else
1120 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattner42158e72007-08-02 23:36:59 +00001121
Nate Begemana1ae7442008-05-13 21:03:02 +00001122 Elts.push_back(Index);
Chris Lattner42158e72007-08-02 23:36:59 +00001123 }
Nate Begemanc8e51f82008-05-09 06:41:27 +00001124}
1125
Steve Naroff4ed9d662007-09-27 14:38:14 +00001126// constructor for instance messages.
Steve Naroff6cb1d362007-09-28 22:22:11 +00001127ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremenek42730c52008-01-07 19:49:32 +00001128 QualType retType, ObjCMethodDecl *mproto,
Steve Naroff1e1c3912007-11-03 16:37:59 +00001129 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff9f176d12007-11-15 13:05:42 +00001130 Expr **ArgExprs, unsigned nargs)
Steve Naroff1e1c3912007-11-03 16:37:59 +00001131 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekd029a6f2008-05-01 17:26:20 +00001132 MethodProto(mproto) {
Steve Naroff9f176d12007-11-15 13:05:42 +00001133 NumArgs = nargs;
Ted Kremenek2719e982008-06-17 02:43:46 +00001134 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff4ed9d662007-09-27 14:38:14 +00001135 SubExprs[RECEIVER] = receiver;
Steve Naroff9f176d12007-11-15 13:05:42 +00001136 if (NumArgs) {
1137 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff4ed9d662007-09-27 14:38:14 +00001138 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1139 }
Steve Naroffc39ca262007-09-18 23:55:05 +00001140 LBracloc = LBrac;
1141 RBracloc = RBrac;
1142}
1143
Steve Naroff4ed9d662007-09-27 14:38:14 +00001144// constructor for class messages.
1145// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroff6cb1d362007-09-28 22:22:11 +00001146ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremenek42730c52008-01-07 19:49:32 +00001147 QualType retType, ObjCMethodDecl *mproto,
Steve Naroff1e1c3912007-11-03 16:37:59 +00001148 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff9f176d12007-11-15 13:05:42 +00001149 Expr **ArgExprs, unsigned nargs)
Steve Naroff1e1c3912007-11-03 16:37:59 +00001150 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekd029a6f2008-05-01 17:26:20 +00001151 MethodProto(mproto) {
Steve Naroff9f176d12007-11-15 13:05:42 +00001152 NumArgs = nargs;
Ted Kremenek2719e982008-06-17 02:43:46 +00001153 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenekee2c9fd2008-06-24 15:50:53 +00001154 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff9f176d12007-11-15 13:05:42 +00001155 if (NumArgs) {
1156 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff4ed9d662007-09-27 14:38:14 +00001157 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1158 }
Steve Naroffc39ca262007-09-18 23:55:05 +00001159 LBracloc = LBrac;
1160 RBracloc = RBrac;
1161}
1162
Ted Kremenekee2c9fd2008-06-24 15:50:53 +00001163// constructor for class messages.
1164ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1165 QualType retType, ObjCMethodDecl *mproto,
1166 SourceLocation LBrac, SourceLocation RBrac,
1167 Expr **ArgExprs, unsigned nargs)
1168: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1169MethodProto(mproto) {
1170 NumArgs = nargs;
1171 SubExprs = new Stmt*[NumArgs+1];
1172 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1173 if (NumArgs) {
1174 for (unsigned i = 0; i != NumArgs; ++i)
1175 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1176 }
1177 LBracloc = LBrac;
1178 RBracloc = RBrac;
1179}
1180
1181ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1182 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1183 switch (x & Flags) {
1184 default:
1185 assert(false && "Invalid ObjCMessageExpr.");
1186 case IsInstMeth:
1187 return ClassInfo(0, 0);
1188 case IsClsMethDeclUnknown:
1189 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1190 case IsClsMethDeclKnown: {
1191 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1192 return ClassInfo(D, D->getIdentifier());
1193 }
1194 }
1195}
1196
Chris Lattnerf624cd22007-10-25 00:29:32 +00001197bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Daniel Dunbar7cbcbf42008-08-13 23:47:13 +00001198 return getCond()->getIntegerConstantExprValue(C) != 0;
Chris Lattnerf624cd22007-10-25 00:29:32 +00001199}
1200
Anders Carlsson52774ad2008-01-29 15:56:48 +00001201static int64_t evaluateOffsetOf(ASTContext& C, const Expr *E)
1202{
1203 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1204 QualType Ty = ME->getBase()->getType();
1205
1206 RecordDecl *RD = Ty->getAsRecordType()->getDecl();
Chris Lattner8cd0e932008-03-05 18:54:05 +00001207 const ASTRecordLayout &RL = C.getASTRecordLayout(RD);
Anders Carlsson52774ad2008-01-29 15:56:48 +00001208 FieldDecl *FD = ME->getMemberDecl();
1209
1210 // FIXME: This is linear time.
1211 unsigned i = 0, e = 0;
1212 for (i = 0, e = RD->getNumMembers(); i != e; i++) {
1213 if (RD->getMember(i) == FD)
1214 break;
1215 }
1216
1217 return RL.getFieldOffset(i) + evaluateOffsetOf(C, ME->getBase());
1218 } else if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) {
1219 const Expr *Base = ASE->getBase();
Anders Carlsson52774ad2008-01-29 15:56:48 +00001220
Chris Lattner8cd0e932008-03-05 18:54:05 +00001221 int64_t size = C.getTypeSize(ASE->getType());
Daniel Dunbar7cbcbf42008-08-13 23:47:13 +00001222 size *= ASE->getIdx()->getIntegerConstantExprValue(C).getSExtValue();
Anders Carlsson52774ad2008-01-29 15:56:48 +00001223
1224 return size + evaluateOffsetOf(C, Base);
1225 } else if (isa<CompoundLiteralExpr>(E))
1226 return 0;
1227
1228 assert(0 && "Unknown offsetof subexpression!");
1229 return 0;
1230}
1231
1232int64_t UnaryOperator::evaluateOffsetOf(ASTContext& C) const
1233{
1234 assert(Opc == OffsetOf && "Unary operator not offsetof!");
1235
Chris Lattner8cd0e932008-03-05 18:54:05 +00001236 unsigned CharSize = C.Target.getCharWidth();
Ted Kremenek2719e982008-06-17 02:43:46 +00001237 return ::evaluateOffsetOf(C, cast<Expr>(Val)) / CharSize;
Anders Carlsson52774ad2008-01-29 15:56:48 +00001238}
1239
Daniel Dunbar7cfb85b2008-08-28 18:02:04 +00001240void SizeOfAlignOfTypeExpr::Destroy(ASTContext& C) {
1241 // Override default behavior of traversing children. We do not want
1242 // to delete the type.
1243}
1244
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001245//===----------------------------------------------------------------------===//
1246// Child Iterators for iterating over subexpressions/substatements
1247//===----------------------------------------------------------------------===//
1248
1249// DeclRefExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001250Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1251Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001252
Steve Naroff5eb2a4a2007-11-12 14:29:37 +00001253// ObjCIvarRefExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001254Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1255Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff5eb2a4a2007-11-12 14:29:37 +00001256
Steve Naroff6f786252008-06-02 23:03:37 +00001257// ObjCPropertyRefExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001258Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1259Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroff05391d22008-05-30 00:40:33 +00001260
Chris Lattner69909292008-08-10 01:53:14 +00001261// PredefinedExpr
1262Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
1263Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001264
1265// IntegerLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001266Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1267Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001268
1269// CharacterLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001270Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator(); }
1271Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001272
1273// FloatingLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001274Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1275Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001276
Chris Lattner1de66eb2007-08-26 03:42:43 +00001277// ImaginaryLiteral
Ted Kremenek2719e982008-06-17 02:43:46 +00001278Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1279Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner1de66eb2007-08-26 03:42:43 +00001280
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001281// StringLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001282Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1283Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001284
1285// ParenExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001286Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1287Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001288
1289// UnaryOperator
Ted Kremenek2719e982008-06-17 02:43:46 +00001290Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1291Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001292
1293// SizeOfAlignOfTypeExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001294Stmt::child_iterator SizeOfAlignOfTypeExpr::child_begin() {
Ted Kremenekb7cf0952007-12-14 22:52:23 +00001295 // If the type is a VLA type (and not a typedef), the size expression of the
1296 // VLA needs to be treated as an executable expression.
1297 if (VariableArrayType* T = dyn_cast<VariableArrayType>(Ty.getTypePtr()))
1298 return child_iterator(T);
1299 else
1300 return child_iterator();
Ted Kremeneka6478552007-10-18 23:28:49 +00001301}
1302Stmt::child_iterator SizeOfAlignOfTypeExpr::child_end() {
Ted Kremenekb7cf0952007-12-14 22:52:23 +00001303 return child_iterator();
Ted Kremeneka6478552007-10-18 23:28:49 +00001304}
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001305
1306// ArraySubscriptExpr
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001307Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001308 return &SubExprs[0];
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001309}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001310Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001311 return &SubExprs[0]+END_EXPR;
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001312}
1313
1314// CallExpr
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001315Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001316 return &SubExprs[0];
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001317}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001318Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001319 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001320}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001321
1322// MemberExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001323Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1324Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001325
Nate Begemanaf6ed502008-04-18 23:10:10 +00001326// ExtVectorElementExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001327Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1328Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001329
1330// CompoundLiteralExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001331Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1332Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001333
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001334// CastExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001335Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1336Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001337
1338// BinaryOperator
1339Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001340 return &SubExprs[0];
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001341}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001342Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001343 return &SubExprs[0]+END_EXPR;
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001344}
1345
1346// ConditionalOperator
1347Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001348 return &SubExprs[0];
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001349}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001350Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001351 return &SubExprs[0]+END_EXPR;
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001352}
1353
1354// AddrLabelExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001355Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1356Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001357
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001358// StmtExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001359Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1360Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001361
1362// TypesCompatibleExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001363Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1364 return child_iterator();
1365}
1366
1367Stmt::child_iterator TypesCompatibleExpr::child_end() {
1368 return child_iterator();
1369}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001370
1371// ChooseExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001372Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1373Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001374
Nate Begeman9f3bfb72008-01-17 17:46:27 +00001375// OverloadExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001376Stmt::child_iterator OverloadExpr::child_begin() { return &SubExprs[0]; }
1377Stmt::child_iterator OverloadExpr::child_end() { return &SubExprs[0]+NumExprs; }
Nate Begeman9f3bfb72008-01-17 17:46:27 +00001378
Eli Friedmand0e9d092008-05-14 19:38:39 +00001379// ShuffleVectorExpr
1380Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001381 return &SubExprs[0];
Eli Friedmand0e9d092008-05-14 19:38:39 +00001382}
1383Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001384 return &SubExprs[0]+NumExprs;
Eli Friedmand0e9d092008-05-14 19:38:39 +00001385}
1386
Anders Carlsson36760332007-10-15 20:28:48 +00001387// VAArgExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001388Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
1389Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson36760332007-10-15 20:28:48 +00001390
Anders Carlsson762b7c72007-08-31 04:56:16 +00001391// InitListExpr
1392Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001393 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson762b7c72007-08-31 04:56:16 +00001394}
1395Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001396 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson762b7c72007-08-31 04:56:16 +00001397}
1398
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001399// ObjCStringLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001400Stmt::child_iterator ObjCStringLiteral::child_begin() {
1401 return child_iterator();
1402}
1403Stmt::child_iterator ObjCStringLiteral::child_end() {
1404 return child_iterator();
1405}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001406
1407// ObjCEncodeExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001408Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
1409Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001410
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001411// ObjCSelectorExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001412Stmt::child_iterator ObjCSelectorExpr::child_begin() {
1413 return child_iterator();
1414}
1415Stmt::child_iterator ObjCSelectorExpr::child_end() {
1416 return child_iterator();
1417}
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001418
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00001419// ObjCProtocolExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001420Stmt::child_iterator ObjCProtocolExpr::child_begin() {
1421 return child_iterator();
1422}
1423Stmt::child_iterator ObjCProtocolExpr::child_end() {
1424 return child_iterator();
1425}
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00001426
Steve Naroffc39ca262007-09-18 23:55:05 +00001427// ObjCMessageExpr
Ted Kremenekd029a6f2008-05-01 17:26:20 +00001428Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001429 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroffc39ca262007-09-18 23:55:05 +00001430}
1431Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001432 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroffc39ca262007-09-18 23:55:05 +00001433}
1434