Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- Expr.cpp - Expression AST Node Implementation --------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Expr class and subclasses. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 14 | #include "clang/AST/Expr.h" |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 15 | #include "clang/AST/APValue.h" |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclObjC.h" |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclCXX.h" |
Daniel Dunbar | e91593e | 2008-08-11 04:54:23 +0000 | [diff] [blame] | 19 | #include "clang/AST/RecordLayout.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 20 | #include "clang/AST/StmtVisitor.h" |
Chris Lattner | da5a6b6 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 21 | #include "clang/Basic/TargetInfo.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 22 | using namespace clang; |
| 23 | |
| 24 | //===----------------------------------------------------------------------===// |
| 25 | // Primary Expressions. |
| 26 | //===----------------------------------------------------------------------===// |
| 27 | |
Chris Lattner | da8249e | 2008-06-07 22:13:43 +0000 | [diff] [blame] | 28 | /// getValueAsApproximateDouble - This returns the value as an inaccurate |
| 29 | /// double. Note that this may cause loss of precision, but is useful for |
| 30 | /// debugging dumps, etc. |
| 31 | double FloatingLiteral::getValueAsApproximateDouble() const { |
| 32 | llvm::APFloat V = getValue(); |
Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 33 | bool ignored; |
| 34 | V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven, |
| 35 | &ignored); |
Chris Lattner | da8249e | 2008-06-07 22:13:43 +0000 | [diff] [blame] | 36 | return V.convertToDouble(); |
| 37 | } |
| 38 | |
| 39 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 40 | StringLiteral::StringLiteral(const char *strData, unsigned byteLength, |
| 41 | bool Wide, QualType t, SourceLocation firstLoc, |
| 42 | SourceLocation lastLoc) : |
| 43 | Expr(StringLiteralClass, t) { |
| 44 | // OPTIMIZE: could allocate this appended to the StringLiteral. |
| 45 | char *AStrData = new char[byteLength]; |
| 46 | memcpy(AStrData, strData, byteLength); |
| 47 | StrData = AStrData; |
| 48 | ByteLength = byteLength; |
| 49 | IsWide = Wide; |
| 50 | firstTokLoc = firstLoc; |
| 51 | lastTokLoc = lastLoc; |
| 52 | } |
| 53 | |
| 54 | StringLiteral::~StringLiteral() { |
| 55 | delete[] StrData; |
| 56 | } |
| 57 | |
| 58 | bool UnaryOperator::isPostfix(Opcode Op) { |
| 59 | switch (Op) { |
| 60 | case PostInc: |
| 61 | case PostDec: |
| 62 | return true; |
| 63 | default: |
| 64 | return false; |
| 65 | } |
| 66 | } |
| 67 | |
Ted Kremenek | 5a56ac3 | 2008-07-23 22:18:43 +0000 | [diff] [blame] | 68 | bool UnaryOperator::isPrefix(Opcode Op) { |
| 69 | switch (Op) { |
| 70 | case PreInc: |
| 71 | case PreDec: |
| 72 | return true; |
| 73 | default: |
| 74 | return false; |
| 75 | } |
| 76 | } |
| 77 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 78 | /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it |
| 79 | /// corresponds to, e.g. "sizeof" or "[pre]++". |
| 80 | const char *UnaryOperator::getOpcodeStr(Opcode Op) { |
| 81 | switch (Op) { |
| 82 | default: assert(0 && "Unknown unary operator"); |
| 83 | case PostInc: return "++"; |
| 84 | case PostDec: return "--"; |
| 85 | case PreInc: return "++"; |
| 86 | case PreDec: return "--"; |
| 87 | case AddrOf: return "&"; |
| 88 | case Deref: return "*"; |
| 89 | case Plus: return "+"; |
| 90 | case Minus: return "-"; |
| 91 | case Not: return "~"; |
| 92 | case LNot: return "!"; |
| 93 | case Real: return "__real"; |
| 94 | case Imag: return "__imag"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 95 | case Extension: return "__extension__"; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 96 | case OffsetOf: return "__builtin_offsetof"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 97 | } |
| 98 | } |
| 99 | |
| 100 | //===----------------------------------------------------------------------===// |
| 101 | // Postfix Operators. |
| 102 | //===----------------------------------------------------------------------===// |
| 103 | |
Douglas Gregor | b460980 | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 104 | CallExpr::CallExpr(StmtClass SC, Expr *fn, Expr **args, unsigned numargs, |
| 105 | QualType t, SourceLocation rparenloc) |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 106 | : Expr(SC, t, |
| 107 | fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs), |
| 108 | fn->isValueDependent() || hasAnyValueDependentArguments(args, numargs)), |
| 109 | NumArgs(numargs) { |
Douglas Gregor | b460980 | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 110 | SubExprs = new Stmt*[numargs+1]; |
| 111 | SubExprs[FN] = fn; |
| 112 | for (unsigned i = 0; i != numargs; ++i) |
| 113 | SubExprs[i+ARGS_START] = args[i]; |
| 114 | RParenLoc = rparenloc; |
| 115 | } |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 116 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 117 | CallExpr::CallExpr(Expr *fn, Expr **args, unsigned numargs, QualType t, |
| 118 | SourceLocation rparenloc) |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 119 | : Expr(CallExprClass, t, |
| 120 | fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs), |
| 121 | fn->isValueDependent() || hasAnyValueDependentArguments(args, numargs)), |
| 122 | NumArgs(numargs) { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 123 | SubExprs = new Stmt*[numargs+1]; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 124 | SubExprs[FN] = fn; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 125 | for (unsigned i = 0; i != numargs; ++i) |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 126 | SubExprs[i+ARGS_START] = args[i]; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 127 | RParenLoc = rparenloc; |
| 128 | } |
| 129 | |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 130 | /// setNumArgs - This changes the number of arguments present in this call. |
| 131 | /// Any orphaned expressions are deleted by this, and any new operands are set |
| 132 | /// to null. |
| 133 | void CallExpr::setNumArgs(unsigned NumArgs) { |
| 134 | // No change, just return. |
| 135 | if (NumArgs == getNumArgs()) return; |
| 136 | |
| 137 | // If shrinking # arguments, just delete the extras and forgot them. |
| 138 | if (NumArgs < getNumArgs()) { |
| 139 | for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i) |
| 140 | delete getArg(i); |
| 141 | this->NumArgs = NumArgs; |
| 142 | return; |
| 143 | } |
| 144 | |
| 145 | // Otherwise, we are growing the # arguments. New an bigger argument array. |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 146 | Stmt **NewSubExprs = new Stmt*[NumArgs+1]; |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 147 | // Copy over args. |
| 148 | for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i) |
| 149 | NewSubExprs[i] = SubExprs[i]; |
| 150 | // Null out new args. |
| 151 | for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i) |
| 152 | NewSubExprs[i] = 0; |
| 153 | |
| 154 | delete[] SubExprs; |
| 155 | SubExprs = NewSubExprs; |
| 156 | this->NumArgs = NumArgs; |
| 157 | } |
| 158 | |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 159 | /// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If |
| 160 | /// not, return 0. |
| 161 | unsigned CallExpr::isBuiltinCall() const { |
Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 162 | // All simple function calls (e.g. func()) are implicitly cast to pointer to |
| 163 | // function. As a result, we try and obtain the DeclRefExpr from the |
| 164 | // ImplicitCastExpr. |
| 165 | const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee()); |
| 166 | if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()). |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 167 | return 0; |
| 168 | |
Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 169 | const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()); |
| 170 | if (!DRE) |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 171 | return 0; |
| 172 | |
Anders Carlsson | bcba201 | 2008-01-31 02:13:57 +0000 | [diff] [blame] | 173 | const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl()); |
| 174 | if (!FDecl) |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 175 | return 0; |
| 176 | |
Douglas Gregor | 4fcd399 | 2008-11-21 15:30:19 +0000 | [diff] [blame] | 177 | if (!FDecl->getIdentifier()) |
| 178 | return 0; |
| 179 | |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 180 | return FDecl->getIdentifier()->getBuiltinID(); |
| 181 | } |
Anders Carlsson | bcba201 | 2008-01-31 02:13:57 +0000 | [diff] [blame] | 182 | |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 183 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 184 | /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it |
| 185 | /// corresponds to, e.g. "<<=". |
| 186 | const char *BinaryOperator::getOpcodeStr(Opcode Op) { |
| 187 | switch (Op) { |
| 188 | default: assert(0 && "Unknown binary operator"); |
| 189 | case Mul: return "*"; |
| 190 | case Div: return "/"; |
| 191 | case Rem: return "%"; |
| 192 | case Add: return "+"; |
| 193 | case Sub: return "-"; |
| 194 | case Shl: return "<<"; |
| 195 | case Shr: return ">>"; |
| 196 | case LT: return "<"; |
| 197 | case GT: return ">"; |
| 198 | case LE: return "<="; |
| 199 | case GE: return ">="; |
| 200 | case EQ: return "=="; |
| 201 | case NE: return "!="; |
| 202 | case And: return "&"; |
| 203 | case Xor: return "^"; |
| 204 | case Or: return "|"; |
| 205 | case LAnd: return "&&"; |
| 206 | case LOr: return "||"; |
| 207 | case Assign: return "="; |
| 208 | case MulAssign: return "*="; |
| 209 | case DivAssign: return "/="; |
| 210 | case RemAssign: return "%="; |
| 211 | case AddAssign: return "+="; |
| 212 | case SubAssign: return "-="; |
| 213 | case ShlAssign: return "<<="; |
| 214 | case ShrAssign: return ">>="; |
| 215 | case AndAssign: return "&="; |
| 216 | case XorAssign: return "^="; |
| 217 | case OrAssign: return "|="; |
| 218 | case Comma: return ","; |
| 219 | } |
| 220 | } |
| 221 | |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 222 | InitListExpr::InitListExpr(SourceLocation lbraceloc, |
Chris Lattner | 418f6c7 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 223 | Expr **initExprs, unsigned numInits, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 224 | SourceLocation rbraceloc) |
Steve Naroff | c5ae899 | 2008-05-01 02:04:18 +0000 | [diff] [blame] | 225 | : Expr(InitListExprClass, QualType()), |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 226 | LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0), |
Douglas Gregor | a9c8780 | 2009-01-29 19:42:23 +0000 | [diff] [blame^] | 227 | UnionFieldInit(0), HadArrayRangeDesignator(false) { |
Chris Lattner | 418f6c7 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 228 | |
| 229 | InitExprs.insert(InitExprs.end(), initExprs, initExprs+numInits); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 230 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 231 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 232 | void InitListExpr::resizeInits(ASTContext &Context, unsigned NumInits) { |
| 233 | for (unsigned Idx = NumInits, LastIdx = InitExprs.size(); Idx < LastIdx; ++Idx) |
| 234 | delete InitExprs[Idx]; |
| 235 | InitExprs.resize(NumInits, 0); |
| 236 | } |
| 237 | |
| 238 | Expr *InitListExpr::updateInit(unsigned Init, Expr *expr) { |
| 239 | if (Init >= InitExprs.size()) { |
| 240 | InitExprs.insert(InitExprs.end(), Init - InitExprs.size() + 1, 0); |
| 241 | InitExprs.back() = expr; |
| 242 | return 0; |
| 243 | } |
| 244 | |
| 245 | Expr *Result = cast_or_null<Expr>(InitExprs[Init]); |
| 246 | InitExprs[Init] = expr; |
| 247 | return Result; |
| 248 | } |
| 249 | |
Steve Naroff | bfdcae6 | 2008-09-04 15:31:07 +0000 | [diff] [blame] | 250 | /// getFunctionType - Return the underlying function type for this block. |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 251 | /// |
| 252 | const FunctionType *BlockExpr::getFunctionType() const { |
| 253 | return getType()->getAsBlockPointerType()-> |
| 254 | getPointeeType()->getAsFunctionType(); |
| 255 | } |
| 256 | |
Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 257 | SourceLocation BlockExpr::getCaretLocation() const { |
| 258 | return TheBlock->getCaretLocation(); |
| 259 | } |
| 260 | const Stmt *BlockExpr::getBody() const { return TheBlock->getBody(); } |
| 261 | Stmt *BlockExpr::getBody() { return TheBlock->getBody(); } |
| 262 | |
| 263 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 264 | //===----------------------------------------------------------------------===// |
| 265 | // Generic Expression Routines |
| 266 | //===----------------------------------------------------------------------===// |
| 267 | |
| 268 | /// hasLocalSideEffect - Return true if this immediate expression has side |
| 269 | /// effects, not counting any sub-expressions. |
| 270 | bool Expr::hasLocalSideEffect() const { |
| 271 | switch (getStmtClass()) { |
| 272 | default: |
| 273 | return false; |
| 274 | case ParenExprClass: |
| 275 | return cast<ParenExpr>(this)->getSubExpr()->hasLocalSideEffect(); |
| 276 | case UnaryOperatorClass: { |
| 277 | const UnaryOperator *UO = cast<UnaryOperator>(this); |
| 278 | |
| 279 | switch (UO->getOpcode()) { |
| 280 | default: return false; |
| 281 | case UnaryOperator::PostInc: |
| 282 | case UnaryOperator::PostDec: |
| 283 | case UnaryOperator::PreInc: |
| 284 | case UnaryOperator::PreDec: |
| 285 | return true; // ++/-- |
| 286 | |
| 287 | case UnaryOperator::Deref: |
| 288 | // Dereferencing a volatile pointer is a side-effect. |
| 289 | return getType().isVolatileQualified(); |
| 290 | case UnaryOperator::Real: |
| 291 | case UnaryOperator::Imag: |
| 292 | // accessing a piece of a volatile complex is a side-effect. |
| 293 | return UO->getSubExpr()->getType().isVolatileQualified(); |
| 294 | |
| 295 | case UnaryOperator::Extension: |
| 296 | return UO->getSubExpr()->hasLocalSideEffect(); |
| 297 | } |
| 298 | } |
Chris Lattner | e7716e6 | 2007-12-01 06:07:34 +0000 | [diff] [blame] | 299 | case BinaryOperatorClass: { |
| 300 | const BinaryOperator *BinOp = cast<BinaryOperator>(this); |
| 301 | // Consider comma to have side effects if the LHS and RHS both do. |
| 302 | if (BinOp->getOpcode() == BinaryOperator::Comma) |
| 303 | return BinOp->getLHS()->hasLocalSideEffect() && |
| 304 | BinOp->getRHS()->hasLocalSideEffect(); |
| 305 | |
| 306 | return BinOp->isAssignmentOp(); |
| 307 | } |
Chris Lattner | eb14fe8 | 2007-08-25 02:00:02 +0000 | [diff] [blame] | 308 | case CompoundAssignOperatorClass: |
Chris Lattner | 1f683e9 | 2007-08-25 01:55:00 +0000 | [diff] [blame] | 309 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 310 | |
Fariborz Jahanian | ab38e4b | 2007-12-01 19:58:28 +0000 | [diff] [blame] | 311 | case ConditionalOperatorClass: { |
| 312 | const ConditionalOperator *Exp = cast<ConditionalOperator>(this); |
| 313 | return Exp->getCond()->hasLocalSideEffect() |
| 314 | || (Exp->getLHS() && Exp->getLHS()->hasLocalSideEffect()) |
| 315 | || (Exp->getRHS() && Exp->getRHS()->hasLocalSideEffect()); |
| 316 | } |
| 317 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 318 | case MemberExprClass: |
| 319 | case ArraySubscriptExprClass: |
| 320 | // If the base pointer or element is to a volatile pointer/field, accessing |
| 321 | // if is a side effect. |
| 322 | return getType().isVolatileQualified(); |
Eli Friedman | 211f6ad | 2008-05-27 15:24:04 +0000 | [diff] [blame] | 323 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 324 | case CallExprClass: |
Douglas Gregor | b460980 | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 325 | case CXXOperatorCallExprClass: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 326 | // TODO: check attributes for pure/const. "void foo() { strlen("bar"); }" |
| 327 | // should warn. |
| 328 | return true; |
Chris Lattner | a9c0102 | 2007-09-26 22:06:30 +0000 | [diff] [blame] | 329 | case ObjCMessageExprClass: |
| 330 | return true; |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 331 | case StmtExprClass: { |
| 332 | // Statement exprs don't logically have side effects themselves, but are |
| 333 | // sometimes used in macros in ways that give them a type that is unused. |
| 334 | // For example ({ blah; foo(); }) will end up with a type if foo has a type. |
| 335 | // however, if the result of the stmt expr is dead, we don't want to emit a |
| 336 | // warning. |
| 337 | const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt(); |
| 338 | if (!CS->body_empty()) |
| 339 | if (const Expr *E = dyn_cast<Expr>(CS->body_back())) |
| 340 | return E->hasLocalSideEffect(); |
| 341 | return false; |
| 342 | } |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 343 | case CStyleCastExprClass: |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 344 | case CXXFunctionalCastExprClass: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 345 | // If this is a cast to void, check the operand. Otherwise, the result of |
| 346 | // the cast is unused. |
| 347 | if (getType()->isVoidType()) |
| 348 | return cast<CastExpr>(this)->getSubExpr()->hasLocalSideEffect(); |
| 349 | return false; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 350 | |
Eli Friedman | 4be1f47 | 2008-05-19 21:24:43 +0000 | [diff] [blame] | 351 | case ImplicitCastExprClass: |
| 352 | // Check the operand, since implicit casts are inserted by Sema |
| 353 | return cast<ImplicitCastExpr>(this)->getSubExpr()->hasLocalSideEffect(); |
| 354 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 355 | case CXXDefaultArgExprClass: |
| 356 | return cast<CXXDefaultArgExpr>(this)->getExpr()->hasLocalSideEffect(); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 357 | |
| 358 | case CXXNewExprClass: |
| 359 | // FIXME: In theory, there might be new expressions that don't have side |
| 360 | // effects (e.g. a placement new with an uninitialized POD). |
| 361 | case CXXDeleteExprClass: |
| 362 | return true; |
| 363 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 364 | } |
| 365 | |
Douglas Gregor | ba7e210 | 2008-10-22 15:04:37 +0000 | [diff] [blame] | 366 | /// DeclCanBeLvalue - Determine whether the given declaration can be |
| 367 | /// an lvalue. This is a helper routine for isLvalue. |
| 368 | static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) { |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 369 | // C++ [temp.param]p6: |
| 370 | // A non-type non-reference template-parameter is not an lvalue. |
| 371 | if (const NonTypeTemplateParmDecl *NTTParm |
| 372 | = dyn_cast<NonTypeTemplateParmDecl>(Decl)) |
| 373 | return NTTParm->getType()->isReferenceType(); |
| 374 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 375 | return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) || |
Douglas Gregor | ba7e210 | 2008-10-22 15:04:37 +0000 | [diff] [blame] | 376 | // C++ 3.10p2: An lvalue refers to an object or function. |
| 377 | (Ctx.getLangOptions().CPlusPlus && |
| 378 | (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl))); |
| 379 | } |
| 380 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 381 | /// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an |
| 382 | /// incomplete type other than void. Nonarray expressions that can be lvalues: |
| 383 | /// - name, where name must be a variable |
| 384 | /// - e[i] |
| 385 | /// - (e), where e must be an lvalue |
| 386 | /// - e.name, where e must be an lvalue |
| 387 | /// - e->name |
| 388 | /// - *e, the type of e cannot be a function type |
| 389 | /// - string-constant |
Chris Lattner | 7da36f6 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 390 | /// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension] |
Bill Wendling | 08ad47c | 2007-07-17 03:52:31 +0000 | [diff] [blame] | 391 | /// - reference type [C++ [expr]] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 392 | /// |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 393 | Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 394 | // first, check the type (C99 6.3.2.1). Expressions with function |
| 395 | // type in C are not lvalues, but they can be lvalues in C++. |
| 396 | if (!Ctx.getLangOptions().CPlusPlus && TR->isFunctionType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 397 | return LV_NotObjectType; |
| 398 | |
Steve Naroff | acb818a | 2008-02-10 01:39:04 +0000 | [diff] [blame] | 399 | // Allow qualified void which is an incomplete type other than void (yuck). |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 400 | if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers()) |
Steve Naroff | acb818a | 2008-02-10 01:39:04 +0000 | [diff] [blame] | 401 | return LV_IncompleteVoidType; |
| 402 | |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 403 | /// FIXME: Expressions can't have reference type, so the following |
| 404 | /// isn't needed. |
Chris Lattner | cb4f9a6 | 2007-07-21 05:33:26 +0000 | [diff] [blame] | 405 | if (TR->isReferenceType()) // C++ [expr] |
Bill Wendling | 08ad47c | 2007-07-17 03:52:31 +0000 | [diff] [blame] | 406 | return LV_Valid; |
| 407 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 408 | // the type looks fine, now check the expression |
| 409 | switch (getStmtClass()) { |
| 410 | case StringLiteralClass: // C99 6.5.1p4 |
Anders Carlsson | 7323a62 | 2007-11-30 22:47:59 +0000 | [diff] [blame] | 411 | return LV_Valid; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 412 | case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2)))) |
| 413 | // For vectors, make sure base is an lvalue (i.e. not a function call). |
| 414 | if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType()) |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 415 | return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 416 | return LV_Valid; |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 417 | case DeclRefExprClass: |
| 418 | case QualifiedDeclRefExprClass: { // C99 6.5.1p2 |
Douglas Gregor | ba7e210 | 2008-10-22 15:04:37 +0000 | [diff] [blame] | 419 | const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl(); |
| 420 | if (DeclCanBeLvalue(RefdDecl, Ctx)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 421 | return LV_Valid; |
| 422 | break; |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 423 | } |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 424 | case BlockDeclRefExprClass: { |
| 425 | const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this); |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 426 | if (isa<VarDecl>(BDR->getDecl())) |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 427 | return LV_Valid; |
| 428 | break; |
| 429 | } |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 430 | case MemberExprClass: { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 431 | const MemberExpr *m = cast<MemberExpr>(this); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 432 | if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4: |
| 433 | NamedDecl *Member = m->getMemberDecl(); |
| 434 | // C++ [expr.ref]p4: |
| 435 | // If E2 is declared to have type "reference to T", then E1.E2 |
| 436 | // is an lvalue. |
| 437 | if (ValueDecl *Value = dyn_cast<ValueDecl>(Member)) |
| 438 | if (Value->getType()->isReferenceType()) |
| 439 | return LV_Valid; |
| 440 | |
| 441 | // -- If E2 is a static data member [...] then E1.E2 is an lvalue. |
| 442 | if (isa<CXXClassVarDecl>(Member)) |
| 443 | return LV_Valid; |
| 444 | |
| 445 | // -- If E2 is a non-static data member [...]. If E1 is an |
| 446 | // lvalue, then E1.E2 is an lvalue. |
| 447 | if (isa<FieldDecl>(Member)) |
| 448 | return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx); |
| 449 | |
| 450 | // -- If it refers to a static member function [...], then |
| 451 | // E1.E2 is an lvalue. |
| 452 | // -- Otherwise, if E1.E2 refers to a non-static member |
| 453 | // function [...], then E1.E2 is not an lvalue. |
| 454 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) |
| 455 | return Method->isStatic()? LV_Valid : LV_MemberFunction; |
| 456 | |
| 457 | // -- If E2 is a member enumerator [...], the expression E1.E2 |
| 458 | // is not an lvalue. |
| 459 | if (isa<EnumConstantDecl>(Member)) |
| 460 | return LV_InvalidExpression; |
| 461 | |
| 462 | // Not an lvalue. |
| 463 | return LV_InvalidExpression; |
| 464 | } |
| 465 | |
| 466 | // C99 6.5.2.3p4 |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 467 | return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx); |
Anton Korobeynikov | fdd7566 | 2007-07-12 15:26:50 +0000 | [diff] [blame] | 468 | } |
Chris Lattner | 7da36f6 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 469 | case UnaryOperatorClass: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 470 | if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref) |
Chris Lattner | 7da36f6 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 471 | return LV_Valid; // C99 6.5.3p4 |
| 472 | |
| 473 | if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real || |
Chris Lattner | baf0d66 | 2008-07-25 18:07:19 +0000 | [diff] [blame] | 474 | cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag || |
| 475 | cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension) |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 476 | return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU. |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 477 | |
| 478 | if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1 |
| 479 | (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc || |
| 480 | cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec)) |
| 481 | return LV_Valid; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 482 | break; |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 483 | case ImplicitCastExprClass: |
| 484 | return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid |
| 485 | : LV_InvalidExpression; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 486 | case ParenExprClass: // C99 6.5.1p5 |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 487 | return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 488 | case BinaryOperatorClass: |
| 489 | case CompoundAssignOperatorClass: { |
| 490 | const BinaryOperator *BinOp = cast<BinaryOperator>(this); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 491 | |
| 492 | if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1 |
| 493 | BinOp->getOpcode() == BinaryOperator::Comma) |
| 494 | return BinOp->getRHS()->isLvalue(Ctx); |
| 495 | |
Douglas Gregor | bf3af05 | 2008-11-13 20:12:29 +0000 | [diff] [blame] | 496 | if (!BinOp->isAssignmentOp()) |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 497 | return LV_InvalidExpression; |
| 498 | |
Douglas Gregor | bf3af05 | 2008-11-13 20:12:29 +0000 | [diff] [blame] | 499 | if (Ctx.getLangOptions().CPlusPlus) |
| 500 | // C++ [expr.ass]p1: |
| 501 | // The result of an assignment operation [...] is an lvalue. |
| 502 | return LV_Valid; |
| 503 | |
| 504 | |
| 505 | // C99 6.5.16: |
| 506 | // An assignment expression [...] is not an lvalue. |
| 507 | return LV_InvalidExpression; |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 508 | } |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 509 | // FIXME: OverloadExprClass |
Douglas Gregor | b460980 | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 510 | case CallExprClass: |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 511 | case CXXOperatorCallExprClass: |
| 512 | case CXXMemberCallExprClass: { |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 513 | // C++ [expr.call]p10: |
| 514 | // A function call is an lvalue if and only if the result type |
| 515 | // is a reference. |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 516 | QualType CalleeType = cast<CallExpr>(this)->getCallee()->getType(); |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 517 | if (const PointerType *FnTypePtr = CalleeType->getAsPointerType()) |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 518 | CalleeType = FnTypePtr->getPointeeType(); |
| 519 | if (const FunctionType *FnType = CalleeType->getAsFunctionType()) |
| 520 | if (FnType->getResultType()->isReferenceType()) |
| 521 | return LV_Valid; |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 522 | |
| 523 | break; |
| 524 | } |
Steve Naroff | e638639 | 2007-12-05 04:00:10 +0000 | [diff] [blame] | 525 | case CompoundLiteralExprClass: // C99 6.5.2.5p5 |
| 526 | return LV_Valid; |
Chris Lattner | 670a62c | 2008-12-12 05:35:08 +0000 | [diff] [blame] | 527 | case ChooseExprClass: |
| 528 | // __builtin_choose_expr is an lvalue if the selected operand is. |
| 529 | if (cast<ChooseExpr>(this)->isConditionTrue(Ctx)) |
| 530 | return cast<ChooseExpr>(this)->getLHS()->isLvalue(Ctx); |
| 531 | else |
| 532 | return cast<ChooseExpr>(this)->getRHS()->isLvalue(Ctx); |
| 533 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 534 | case ExtVectorElementExprClass: |
| 535 | if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements()) |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 536 | return LV_DuplicateVectorComponents; |
| 537 | return LV_Valid; |
Steve Naroff | 027282d | 2007-11-12 14:34:27 +0000 | [diff] [blame] | 538 | case ObjCIvarRefExprClass: // ObjC instance variables are lvalues. |
| 539 | return LV_Valid; |
Steve Naroff | 799a6a6 | 2008-05-30 23:23:16 +0000 | [diff] [blame] | 540 | case ObjCPropertyRefExprClass: // FIXME: check if read-only property. |
| 541 | return LV_Valid; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 542 | case ObjCKVCRefExprClass: // FIXME: check if read-only property. |
Chris Lattner | 670a62c | 2008-12-12 05:35:08 +0000 | [diff] [blame] | 543 | return LV_Valid; |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 544 | case PredefinedExprClass: |
Douglas Gregor | 796da18 | 2008-11-04 14:32:21 +0000 | [diff] [blame] | 545 | return LV_Valid; |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 546 | case VAArgExprClass: |
| 547 | return LV_Valid; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 548 | case CXXDefaultArgExprClass: |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 549 | return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx); |
Argyrios Kyrtzidis | 24b41fa | 2008-09-11 04:22:26 +0000 | [diff] [blame] | 550 | case CXXConditionDeclExprClass: |
| 551 | return LV_Valid; |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 552 | case CStyleCastExprClass: |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 553 | case CXXFunctionalCastExprClass: |
| 554 | case CXXStaticCastExprClass: |
| 555 | case CXXDynamicCastExprClass: |
| 556 | case CXXReinterpretCastExprClass: |
| 557 | case CXXConstCastExprClass: |
| 558 | // The result of an explicit cast is an lvalue if the type we are |
| 559 | // casting to is a reference type. See C++ [expr.cast]p1, |
| 560 | // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2, |
| 561 | // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1. |
| 562 | if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->isReferenceType()) |
| 563 | return LV_Valid; |
| 564 | break; |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 565 | case CXXTypeidExprClass: |
| 566 | // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ... |
| 567 | return LV_Valid; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 568 | default: |
| 569 | break; |
| 570 | } |
| 571 | return LV_InvalidExpression; |
| 572 | } |
| 573 | |
| 574 | /// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type, |
| 575 | /// does not have an incomplete type, does not have a const-qualified type, and |
| 576 | /// if it is a structure or union, does not have any member (including, |
| 577 | /// recursively, any member or element of all contained aggregates or unions) |
| 578 | /// with a const-qualified type. |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 579 | Expr::isModifiableLvalueResult Expr::isModifiableLvalue(ASTContext &Ctx) const { |
| 580 | isLvalueResult lvalResult = isLvalue(Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 581 | |
| 582 | switch (lvalResult) { |
Douglas Gregor | ae8d467 | 2008-10-22 00:03:08 +0000 | [diff] [blame] | 583 | case LV_Valid: |
| 584 | // C++ 3.10p11: Functions cannot be modified, but pointers to |
| 585 | // functions can be modifiable. |
| 586 | if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType()) |
| 587 | return MLV_NotObjectType; |
| 588 | break; |
| 589 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 590 | case LV_NotObjectType: return MLV_NotObjectType; |
| 591 | case LV_IncompleteVoidType: return MLV_IncompleteVoidType; |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 592 | case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 593 | case LV_InvalidExpression: |
| 594 | // If the top level is a C-style cast, and the subexpression is a valid |
| 595 | // lvalue, then this is probably a use of the old-school "cast as lvalue" |
| 596 | // GCC extension. We don't support it, but we want to produce good |
| 597 | // diagnostics when it happens so that the user knows why. |
| 598 | if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(this)) |
| 599 | if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) |
| 600 | return MLV_LValueCast; |
| 601 | return MLV_InvalidExpression; |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 602 | case LV_MemberFunction: return MLV_MemberFunction; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 603 | } |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 604 | |
| 605 | QualType CT = Ctx.getCanonicalType(getType()); |
| 606 | |
| 607 | if (CT.isConstQualified()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 608 | return MLV_ConstQualified; |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 609 | if (CT->isArrayType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 610 | return MLV_ArrayType; |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 611 | if (CT->isIncompleteType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 612 | return MLV_IncompleteType; |
| 613 | |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 614 | if (const RecordType *r = CT->getAsRecordType()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 615 | if (r->hasConstFields()) |
| 616 | return MLV_ConstQualified; |
| 617 | } |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 618 | // The following is illegal: |
| 619 | // void takeclosure(void (^C)(void)); |
| 620 | // void func() { int x = 1; takeclosure(^{ x = 7 }); } |
| 621 | // |
| 622 | if (getStmtClass() == BlockDeclRefExprClass) { |
| 623 | const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this); |
| 624 | if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl())) |
| 625 | return MLV_NotBlockQualified; |
| 626 | } |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 627 | |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 628 | // Assigning to an 'implicit' property? |
Fariborz Jahanian | 6669db9 | 2008-11-25 17:56:43 +0000 | [diff] [blame] | 629 | else if (getStmtClass() == ObjCKVCRefExprClass) { |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 630 | const ObjCKVCRefExpr* KVCExpr = cast<ObjCKVCRefExpr>(this); |
| 631 | if (KVCExpr->getSetterMethod() == 0) |
| 632 | return MLV_NoSetterProperty; |
| 633 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 634 | return MLV_Valid; |
| 635 | } |
| 636 | |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 637 | /// hasGlobalStorage - Return true if this expression has static storage |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 638 | /// duration. This means that the address of this expression is a link-time |
| 639 | /// constant. |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 640 | bool Expr::hasGlobalStorage() const { |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 641 | switch (getStmtClass()) { |
| 642 | default: |
| 643 | return false; |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 644 | case ParenExprClass: |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 645 | return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage(); |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 646 | case ImplicitCastExprClass: |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 647 | return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 648 | case CompoundLiteralExprClass: |
| 649 | return cast<CompoundLiteralExpr>(this)->isFileScope(); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 650 | case DeclRefExprClass: |
| 651 | case QualifiedDeclRefExprClass: { |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 652 | const Decl *D = cast<DeclRefExpr>(this)->getDecl(); |
| 653 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 654 | return VD->hasGlobalStorage(); |
Seo Sanghyeon | 63f067f | 2008-04-04 09:45:30 +0000 | [diff] [blame] | 655 | if (isa<FunctionDecl>(D)) |
| 656 | return true; |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 657 | return false; |
| 658 | } |
Chris Lattner | fb70806 | 2007-11-28 04:30:09 +0000 | [diff] [blame] | 659 | case MemberExprClass: { |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 660 | const MemberExpr *M = cast<MemberExpr>(this); |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 661 | return !M->isArrow() && M->getBase()->hasGlobalStorage(); |
Chris Lattner | fb70806 | 2007-11-28 04:30:09 +0000 | [diff] [blame] | 662 | } |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 663 | case ArraySubscriptExprClass: |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 664 | return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage(); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 665 | case PredefinedExprClass: |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 666 | return true; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 667 | case CXXDefaultArgExprClass: |
| 668 | return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage(); |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 669 | } |
| 670 | } |
| 671 | |
Ted Kremenek | 4e99a5f | 2008-01-17 16:57:34 +0000 | [diff] [blame] | 672 | Expr* Expr::IgnoreParens() { |
| 673 | Expr* E = this; |
| 674 | while (ParenExpr* P = dyn_cast<ParenExpr>(E)) |
| 675 | E = P->getSubExpr(); |
| 676 | |
| 677 | return E; |
| 678 | } |
| 679 | |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 680 | /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr |
| 681 | /// or CastExprs or ImplicitCastExprs, returning their operand. |
| 682 | Expr *Expr::IgnoreParenCasts() { |
| 683 | Expr *E = this; |
| 684 | while (true) { |
| 685 | if (ParenExpr *P = dyn_cast<ParenExpr>(E)) |
| 686 | E = P->getSubExpr(); |
| 687 | else if (CastExpr *P = dyn_cast<CastExpr>(E)) |
| 688 | E = P->getSubExpr(); |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 689 | else |
| 690 | return E; |
| 691 | } |
| 692 | } |
| 693 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 694 | /// hasAnyTypeDependentArguments - Determines if any of the expressions |
| 695 | /// in Exprs is type-dependent. |
| 696 | bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) { |
| 697 | for (unsigned I = 0; I < NumExprs; ++I) |
| 698 | if (Exprs[I]->isTypeDependent()) |
| 699 | return true; |
| 700 | |
| 701 | return false; |
| 702 | } |
| 703 | |
| 704 | /// hasAnyValueDependentArguments - Determines if any of the expressions |
| 705 | /// in Exprs is value-dependent. |
| 706 | bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) { |
| 707 | for (unsigned I = 0; I < NumExprs; ++I) |
| 708 | if (Exprs[I]->isValueDependent()) |
| 709 | return true; |
| 710 | |
| 711 | return false; |
| 712 | } |
| 713 | |
Eli Friedman | c9e8f60 | 2009-01-25 02:32:41 +0000 | [diff] [blame] | 714 | bool Expr::isConstantInitializer(ASTContext &Ctx) const { |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 715 | // This function is attempting whether an expression is an initializer |
| 716 | // which can be evaluated at compile-time. isEvaluatable handles most |
| 717 | // of the cases, but it can't deal with some initializer-specific |
| 718 | // expressions, and it can't deal with aggregates; we deal with those here, |
| 719 | // and fall back to isEvaluatable for the other cases. |
| 720 | |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 721 | switch (getStmtClass()) { |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 722 | default: break; |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 723 | case StringLiteralClass: |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 724 | return true; |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 725 | case CompoundLiteralExprClass: { |
| 726 | const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer(); |
Eli Friedman | c9e8f60 | 2009-01-25 02:32:41 +0000 | [diff] [blame] | 727 | return Exp->isConstantInitializer(Ctx); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 728 | } |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 729 | case InitListExprClass: { |
| 730 | const InitListExpr *Exp = cast<InitListExpr>(this); |
| 731 | unsigned numInits = Exp->getNumInits(); |
| 732 | for (unsigned i = 0; i < numInits; i++) { |
Eli Friedman | c9e8f60 | 2009-01-25 02:32:41 +0000 | [diff] [blame] | 733 | if (!Exp->getInit(i)->isConstantInitializer(Ctx)) |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 734 | return false; |
| 735 | } |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 736 | return true; |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 737 | } |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 738 | case ImplicitValueInitExprClass: |
| 739 | return true; |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 740 | case ParenExprClass: { |
| 741 | return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx); |
| 742 | } |
| 743 | case UnaryOperatorClass: { |
| 744 | const UnaryOperator* Exp = cast<UnaryOperator>(this); |
| 745 | if (Exp->getOpcode() == UnaryOperator::Extension) |
| 746 | return Exp->getSubExpr()->isConstantInitializer(Ctx); |
| 747 | break; |
| 748 | } |
| 749 | case CStyleCastExprClass: |
| 750 | // Handle casts with a destination that's a struct or union; this |
| 751 | // deals with both the gcc no-op struct cast extension and the |
| 752 | // cast-to-union extension. |
| 753 | if (getType()->isRecordType()) |
| 754 | return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx); |
| 755 | break; |
Eli Friedman | 32a311e | 2009-01-25 03:27:40 +0000 | [diff] [blame] | 756 | case DesignatedInitExprClass: |
Sebastian Redl | 4e716e0 | 2009-01-25 13:34:47 +0000 | [diff] [blame] | 757 | return cast<DesignatedInitExpr>(this)-> |
| 758 | getInit()->isConstantInitializer(Ctx); |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 759 | } |
| 760 | |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 761 | return isEvaluatable(Ctx); |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 762 | } |
| 763 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 764 | /// isIntegerConstantExpr - this recursive routine will test if an expression is |
| 765 | /// an integer constant expression. Note: With the introduction of VLA's in |
| 766 | /// C99 the result of the sizeof operator is no longer always a constant |
| 767 | /// expression. The generalization of the wording to include any subexpression |
| 768 | /// that is not evaluated (C99 6.6p3) means that nonconstant subexpressions |
| 769 | /// can appear as operands to other operators (e.g. &&, ||, ?:). For instance, |
Nuno Lopes | 5f6b632 | 2008-07-08 21:13:06 +0000 | [diff] [blame] | 770 | /// "0 || f()" can be treated as a constant expression. In C90 this expression, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 771 | /// occurring in a context requiring a constant, would have been a constraint |
| 772 | /// violation. FIXME: This routine currently implements C90 semantics. |
| 773 | /// To properly implement C99 semantics this routine will need to evaluate |
| 774 | /// expressions involving operators previously mentioned. |
| 775 | |
| 776 | /// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero, |
| 777 | /// comma, etc |
| 778 | /// |
| 779 | /// FIXME: This should ext-warn on overflow during evaluation! ISO C does not |
Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 780 | /// permit this. This includes things like (int)1e1000 |
Chris Lattner | ce0afc0 | 2007-07-18 05:21:20 +0000 | [diff] [blame] | 781 | /// |
| 782 | /// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof |
| 783 | /// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer |
| 784 | /// cast+dereference. |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 785 | bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx, |
| 786 | SourceLocation *Loc, bool isEvaluated) const { |
Eli Friedman | a6afa76 | 2008-11-13 06:09:17 +0000 | [diff] [blame] | 787 | // Pretest for integral type; some parts of the code crash for types that |
| 788 | // can't be sized. |
| 789 | if (!getType()->isIntegralType()) { |
| 790 | if (Loc) *Loc = getLocStart(); |
| 791 | return false; |
| 792 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 793 | switch (getStmtClass()) { |
| 794 | default: |
| 795 | if (Loc) *Loc = getLocStart(); |
| 796 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 797 | case ParenExprClass: |
| 798 | return cast<ParenExpr>(this)->getSubExpr()-> |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 799 | isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 800 | case IntegerLiteralClass: |
| 801 | Result = cast<IntegerLiteral>(this)->getValue(); |
| 802 | break; |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 803 | case CharacterLiteralClass: { |
| 804 | const CharacterLiteral *CL = cast<CharacterLiteral>(this); |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 805 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 806 | Result = CL->getValue(); |
Chris Lattner | f0fbcb3 | 2007-07-16 21:04:56 +0000 | [diff] [blame] | 807 | Result.setIsUnsigned(!getType()->isSignedIntegerType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 808 | break; |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 809 | } |
Anders Carlsson | b88d45e | 2008-08-23 21:12:35 +0000 | [diff] [blame] | 810 | case CXXBoolLiteralExprClass: { |
| 811 | const CXXBoolLiteralExpr *BL = cast<CXXBoolLiteralExpr>(this); |
| 812 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
| 813 | Result = BL->getValue(); |
| 814 | Result.setIsUnsigned(!getType()->isSignedIntegerType()); |
| 815 | break; |
| 816 | } |
Argyrios Kyrtzidis | 7267f78 | 2008-08-23 19:35:47 +0000 | [diff] [blame] | 817 | case CXXZeroInitValueExprClass: |
| 818 | Result.clear(); |
| 819 | break; |
Steve Naroff | 7b658aa | 2007-08-02 04:09:23 +0000 | [diff] [blame] | 820 | case TypesCompatibleExprClass: { |
| 821 | const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this); |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 822 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Daniel Dunbar | ac620de | 2008-10-24 08:07:57 +0000 | [diff] [blame] | 823 | // Per gcc docs "this built-in function ignores top level |
| 824 | // qualifiers". We need to use the canonical version to properly |
| 825 | // be able to strip CRV qualifiers from the type. |
| 826 | QualType T0 = Ctx.getCanonicalType(TCE->getArgType1()); |
| 827 | QualType T1 = Ctx.getCanonicalType(TCE->getArgType2()); |
| 828 | Result = Ctx.typesAreCompatible(T0.getUnqualifiedType(), |
| 829 | T1.getUnqualifiedType()); |
Steve Naroff | 389cecc | 2007-08-02 00:13:27 +0000 | [diff] [blame] | 830 | break; |
Steve Naroff | 7b658aa | 2007-08-02 04:09:23 +0000 | [diff] [blame] | 831 | } |
Douglas Gregor | b460980 | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 832 | case CallExprClass: |
| 833 | case CXXOperatorCallExprClass: { |
Steve Naroff | 13b7c5f | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 834 | const CallExpr *CE = cast<CallExpr>(this); |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 835 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 836 | |
| 837 | // If this is a call to a builtin function, constant fold it otherwise |
| 838 | // reject it. |
| 839 | if (CE->isBuiltinCall()) { |
Anders Carlsson | 1c0cfd4 | 2008-12-19 20:58:05 +0000 | [diff] [blame] | 840 | EvalResult EvalResult; |
| 841 | if (CE->Evaluate(EvalResult, Ctx)) { |
| 842 | assert(!EvalResult.HasSideEffects && |
| 843 | "Foldable builtin call should not have side effects!"); |
| 844 | Result = EvalResult.Val.getInt(); |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 845 | break; // It is a constant, expand it. |
| 846 | } |
| 847 | } |
| 848 | |
Steve Naroff | 13b7c5f | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 849 | if (Loc) *Loc = getLocStart(); |
| 850 | return false; |
| 851 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 852 | case DeclRefExprClass: |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 853 | case QualifiedDeclRefExprClass: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 854 | if (const EnumConstantDecl *D = |
| 855 | dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) { |
| 856 | Result = D->getInitVal(); |
| 857 | break; |
| 858 | } |
| 859 | if (Loc) *Loc = getLocStart(); |
| 860 | return false; |
| 861 | case UnaryOperatorClass: { |
| 862 | const UnaryOperator *Exp = cast<UnaryOperator>(this); |
| 863 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 864 | // Get the operand value. If this is offsetof, do not evalute the |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 865 | // operand. This affects C99 6.6p3. |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 866 | if (!Exp->isOffsetOfOp() && !Exp->getSubExpr()-> |
| 867 | isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 868 | return false; |
| 869 | |
| 870 | switch (Exp->getOpcode()) { |
| 871 | // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. |
| 872 | // See C99 6.6p3. |
| 873 | default: |
| 874 | if (Loc) *Loc = Exp->getOperatorLoc(); |
| 875 | return false; |
| 876 | case UnaryOperator::Extension: |
Chris Lattner | 76e773a | 2007-07-18 18:38:36 +0000 | [diff] [blame] | 877 | return true; // FIXME: this is wrong. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 878 | case UnaryOperator::LNot: { |
Chris Lattner | bf75538 | 2008-01-25 19:16:19 +0000 | [diff] [blame] | 879 | bool Val = Result == 0; |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 880 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 881 | Result = Val; |
| 882 | break; |
| 883 | } |
| 884 | case UnaryOperator::Plus: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 885 | break; |
| 886 | case UnaryOperator::Minus: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 887 | Result = -Result; |
| 888 | break; |
| 889 | case UnaryOperator::Not: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 890 | Result = ~Result; |
| 891 | break; |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 892 | case UnaryOperator::OffsetOf: |
Daniel Dunbar | aa1f9f1 | 2008-08-28 18:42:20 +0000 | [diff] [blame] | 893 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 894 | Result = Exp->evaluateOffsetOf(Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 895 | } |
| 896 | break; |
| 897 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 898 | case SizeOfAlignOfExprClass: { |
| 899 | const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(this); |
Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 900 | |
| 901 | // Return the result in the right width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 902 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 903 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 904 | QualType ArgTy = Exp->getTypeOfArgument(); |
Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 905 | // sizeof(void) and __alignof__(void) = 1 as a gcc extension. |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 906 | if (ArgTy->isVoidType()) { |
Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 907 | Result = 1; |
| 908 | break; |
| 909 | } |
| 910 | |
| 911 | // alignof always evaluates to a constant, sizeof does if arg is not VLA. |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 912 | if (Exp->isSizeOf() && !ArgTy->isConstantSizeType()) { |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 913 | if (Loc) *Loc = Exp->getOperatorLoc(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 914 | return false; |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 915 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 916 | |
Chris Lattner | 76e773a | 2007-07-18 18:38:36 +0000 | [diff] [blame] | 917 | // Get information about the size or align. |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 918 | if (ArgTy->isFunctionType()) { |
Chris Lattner | efdd157 | 2008-01-02 21:54:09 +0000 | [diff] [blame] | 919 | // GCC extension: sizeof(function) = 1. |
| 920 | Result = Exp->isSizeOf() ? 1 : 4; |
Anders Carlsson | 6a24acb | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 921 | } else { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 922 | unsigned CharSize = Ctx.Target.getCharWidth(); |
Anders Carlsson | 6a24acb | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 923 | if (Exp->isSizeOf()) |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 924 | Result = Ctx.getTypeSize(ArgTy) / CharSize; |
Anders Carlsson | 6a24acb | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 925 | else |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 926 | Result = Ctx.getTypeAlign(ArgTy) / CharSize; |
Ted Kremenek | 060e470 | 2007-12-17 17:38:43 +0000 | [diff] [blame] | 927 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 928 | break; |
| 929 | } |
| 930 | case BinaryOperatorClass: { |
| 931 | const BinaryOperator *Exp = cast<BinaryOperator>(this); |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 932 | llvm::APSInt LHS, RHS; |
| 933 | |
| 934 | // Initialize result to have correct signedness and width. |
| 935 | Result = llvm::APSInt(static_cast<uint32_t>(Ctx.getTypeSize(getType())), |
Eli Friedman | b11e778 | 2008-11-13 02:13:11 +0000 | [diff] [blame] | 936 | !getType()->isSignedIntegerType()); |
| 937 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 938 | // The LHS of a constant expr is always evaluated and needed. |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 939 | if (!Exp->getLHS()->isIntegerConstantExpr(LHS, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 940 | return false; |
| 941 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 942 | // The short-circuiting &&/|| operators don't necessarily evaluate their |
| 943 | // RHS. Make sure to pass isEvaluated down correctly. |
| 944 | if (Exp->isLogicalOp()) { |
| 945 | bool RHSEval; |
| 946 | if (Exp->getOpcode() == BinaryOperator::LAnd) |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 947 | RHSEval = LHS != 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 948 | else { |
| 949 | assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical"); |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 950 | RHSEval = LHS == 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 951 | } |
| 952 | |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 953 | if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 954 | isEvaluated & RHSEval)) |
| 955 | return false; |
| 956 | } else { |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 957 | if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 958 | return false; |
| 959 | } |
| 960 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 961 | switch (Exp->getOpcode()) { |
| 962 | default: |
| 963 | if (Loc) *Loc = getLocStart(); |
| 964 | return false; |
| 965 | case BinaryOperator::Mul: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 966 | Result = LHS * RHS; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 967 | break; |
| 968 | case BinaryOperator::Div: |
| 969 | if (RHS == 0) { |
| 970 | if (!isEvaluated) break; |
| 971 | if (Loc) *Loc = getLocStart(); |
| 972 | return false; |
| 973 | } |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 974 | Result = LHS / RHS; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 975 | break; |
| 976 | case BinaryOperator::Rem: |
| 977 | if (RHS == 0) { |
| 978 | if (!isEvaluated) break; |
| 979 | if (Loc) *Loc = getLocStart(); |
| 980 | return false; |
| 981 | } |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 982 | Result = LHS % RHS; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 983 | break; |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 984 | case BinaryOperator::Add: Result = LHS + RHS; break; |
| 985 | case BinaryOperator::Sub: Result = LHS - RHS; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 986 | case BinaryOperator::Shl: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 987 | Result = LHS << |
| 988 | static_cast<uint32_t>(RHS.getLimitedValue(LHS.getBitWidth()-1)); |
| 989 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 990 | case BinaryOperator::Shr: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 991 | Result = LHS >> |
| 992 | static_cast<uint32_t>(RHS.getLimitedValue(LHS.getBitWidth()-1)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 993 | break; |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 994 | case BinaryOperator::LT: Result = LHS < RHS; break; |
| 995 | case BinaryOperator::GT: Result = LHS > RHS; break; |
| 996 | case BinaryOperator::LE: Result = LHS <= RHS; break; |
| 997 | case BinaryOperator::GE: Result = LHS >= RHS; break; |
| 998 | case BinaryOperator::EQ: Result = LHS == RHS; break; |
| 999 | case BinaryOperator::NE: Result = LHS != RHS; break; |
| 1000 | case BinaryOperator::And: Result = LHS & RHS; break; |
| 1001 | case BinaryOperator::Xor: Result = LHS ^ RHS; break; |
| 1002 | case BinaryOperator::Or: Result = LHS | RHS; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1003 | case BinaryOperator::LAnd: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1004 | Result = LHS != 0 && RHS != 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1005 | break; |
| 1006 | case BinaryOperator::LOr: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1007 | Result = LHS != 0 || RHS != 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1008 | break; |
Eli Friedman | b11e778 | 2008-11-13 02:13:11 +0000 | [diff] [blame] | 1009 | |
| 1010 | case BinaryOperator::Comma: |
| 1011 | // C99 6.6p3: "shall not contain assignment, ..., or comma operators, |
| 1012 | // *except* when they are contained within a subexpression that is not |
| 1013 | // evaluated". Note that Assignment can never happen due to constraints |
| 1014 | // on the LHS subexpr, so we don't need to check it here. |
| 1015 | if (isEvaluated) { |
| 1016 | if (Loc) *Loc = getLocStart(); |
| 1017 | return false; |
| 1018 | } |
| 1019 | |
| 1020 | // The result of the constant expr is the RHS. |
| 1021 | Result = RHS; |
| 1022 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1023 | } |
| 1024 | |
| 1025 | assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!"); |
| 1026 | break; |
| 1027 | } |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1028 | case ImplicitCastExprClass: |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 1029 | case CStyleCastExprClass: |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 1030 | case CXXFunctionalCastExprClass: { |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 1031 | const Expr *SubExpr = cast<CastExpr>(this)->getSubExpr(); |
| 1032 | SourceLocation CastLoc = getLocStart(); |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1033 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1034 | // C99 6.6p6: shall only convert arithmetic types to integer types. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1035 | if (!SubExpr->getType()->isArithmeticType() || |
| 1036 | !getType()->isIntegerType()) { |
| 1037 | if (Loc) *Loc = SubExpr->getLocStart(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1038 | return false; |
| 1039 | } |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1040 | |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1041 | uint32_t DestWidth = static_cast<uint32_t>(Ctx.getTypeSize(getType())); |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1042 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1043 | // Handle simple integer->integer casts. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1044 | if (SubExpr->getType()->isIntegerType()) { |
| 1045 | if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1046 | return false; |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1047 | |
| 1048 | // Figure out if this is a truncate, extend or noop cast. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1049 | // If the input is signed, do a sign extend, noop, or truncate. |
Chris Lattner | c0a356b | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 1050 | if (getType()->isBooleanType()) { |
| 1051 | // Conversion to bool compares against zero. |
| 1052 | Result = Result != 0; |
| 1053 | Result.zextOrTrunc(DestWidth); |
| 1054 | } else if (SubExpr->getType()->isSignedIntegerType()) |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1055 | Result.sextOrTrunc(DestWidth); |
| 1056 | else // If the input is unsigned, do a zero extend, noop, or truncate. |
| 1057 | Result.zextOrTrunc(DestWidth); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1058 | break; |
| 1059 | } |
| 1060 | |
| 1061 | // Allow floating constants that are the immediate operands of casts or that |
| 1062 | // are parenthesized. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1063 | const Expr *Operand = SubExpr; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1064 | while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand)) |
| 1065 | Operand = PE->getSubExpr(); |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1066 | |
| 1067 | // If this isn't a floating literal, we can't handle it. |
| 1068 | const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand); |
| 1069 | if (!FL) { |
| 1070 | if (Loc) *Loc = Operand->getLocStart(); |
| 1071 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1072 | } |
Chris Lattner | c0a356b | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 1073 | |
| 1074 | // If the destination is boolean, compare against zero. |
| 1075 | if (getType()->isBooleanType()) { |
| 1076 | Result = !FL->getValue().isZero(); |
| 1077 | Result.zextOrTrunc(DestWidth); |
| 1078 | break; |
| 1079 | } |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1080 | |
| 1081 | // Determine whether we are converting to unsigned or signed. |
| 1082 | bool DestSigned = getType()->isSignedIntegerType(); |
Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 1083 | |
| 1084 | // TODO: Warn on overflow, but probably not here: isIntegerConstantExpr can |
| 1085 | // be called multiple times per AST. |
Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 1086 | uint64_t Space[4]; |
| 1087 | bool ignored; |
Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 1088 | (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned, |
Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 1089 | llvm::APFloat::rmTowardZero, |
| 1090 | &ignored); |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1091 | Result = llvm::APInt(DestWidth, 4, Space); |
| 1092 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1093 | } |
| 1094 | case ConditionalOperatorClass: { |
| 1095 | const ConditionalOperator *Exp = cast<ConditionalOperator>(this); |
| 1096 | |
Chris Lattner | 28daa53 | 2008-12-12 06:55:44 +0000 | [diff] [blame] | 1097 | const Expr *Cond = Exp->getCond(); |
| 1098 | |
| 1099 | if (!Cond->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1100 | return false; |
| 1101 | |
| 1102 | const Expr *TrueExp = Exp->getLHS(); |
| 1103 | const Expr *FalseExp = Exp->getRHS(); |
| 1104 | if (Result == 0) std::swap(TrueExp, FalseExp); |
| 1105 | |
Chris Lattner | 28daa53 | 2008-12-12 06:55:44 +0000 | [diff] [blame] | 1106 | // If the condition (ignoring parens) is a __builtin_constant_p call, |
| 1107 | // then only the true side is actually considered in an integer constant |
Chris Lattner | 42b83dd | 2008-12-12 18:00:51 +0000 | [diff] [blame] | 1108 | // expression, and it is fully evaluated. This is an important GNU |
| 1109 | // extension. See GCC PR38377 for discussion. |
Chris Lattner | 28daa53 | 2008-12-12 06:55:44 +0000 | [diff] [blame] | 1110 | if (const CallExpr *CallCE = dyn_cast<CallExpr>(Cond->IgnoreParenCasts())) |
Chris Lattner | 42b83dd | 2008-12-12 18:00:51 +0000 | [diff] [blame] | 1111 | if (CallCE->isBuiltinCall() == Builtin::BI__builtin_constant_p) { |
| 1112 | EvalResult EVResult; |
| 1113 | if (!Evaluate(EVResult, Ctx) || EVResult.HasSideEffects) |
| 1114 | return false; |
| 1115 | assert(EVResult.Val.isInt() && "FP conditional expr not expected"); |
| 1116 | Result = EVResult.Val.getInt(); |
| 1117 | if (Loc) *Loc = EVResult.DiagLoc; |
| 1118 | return true; |
| 1119 | } |
Chris Lattner | 28daa53 | 2008-12-12 06:55:44 +0000 | [diff] [blame] | 1120 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1121 | // Evaluate the false one first, discard the result. |
Anders Carlsson | 3907323 | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 1122 | if (FalseExp && !FalseExp->isIntegerConstantExpr(Result, Ctx, Loc, false)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1123 | return false; |
| 1124 | // Evalute the true one, capture the result. |
Anders Carlsson | 3907323 | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 1125 | if (TrueExp && |
| 1126 | !TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1127 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1128 | break; |
| 1129 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1130 | case CXXDefaultArgExprClass: |
| 1131 | return cast<CXXDefaultArgExpr>(this) |
| 1132 | ->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 1133 | |
| 1134 | case UnaryTypeTraitExprClass: |
| 1135 | Result = cast<UnaryTypeTraitExpr>(this)->Evaluate(); |
| 1136 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1137 | } |
| 1138 | |
| 1139 | // Cases that are valid constant exprs fall through to here. |
| 1140 | Result.setIsUnsigned(getType()->isUnsignedIntegerType()); |
| 1141 | return true; |
| 1142 | } |
| 1143 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1144 | /// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an |
| 1145 | /// integer constant expression with the value zero, or if this is one that is |
| 1146 | /// cast to void*. |
Anders Carlsson | efa9b38 | 2008-12-01 02:13:57 +0000 | [diff] [blame] | 1147 | bool Expr::isNullPointerConstant(ASTContext &Ctx) const |
| 1148 | { |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 1149 | // Strip off a cast to void*, if it exists. Except in C++. |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 1150 | if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) { |
Sebastian Redl | 6215dee | 2008-11-04 11:45:54 +0000 | [diff] [blame] | 1151 | if (!Ctx.getLangOptions().CPlusPlus) { |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 1152 | // Check that it is a cast to void*. |
| 1153 | if (const PointerType *PT = CE->getType()->getAsPointerType()) { |
| 1154 | QualType Pointee = PT->getPointeeType(); |
| 1155 | if (Pointee.getCVRQualifiers() == 0 && |
| 1156 | Pointee->isVoidType() && // to void* |
| 1157 | CE->getSubExpr()->getType()->isIntegerType()) // from int. |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1158 | return CE->getSubExpr()->isNullPointerConstant(Ctx); |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 1159 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1160 | } |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1161 | } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) { |
| 1162 | // Ignore the ImplicitCastExpr type entirely. |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1163 | return ICE->getSubExpr()->isNullPointerConstant(Ctx); |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1164 | } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) { |
| 1165 | // Accept ((void*)0) as a null pointer constant, as many other |
| 1166 | // implementations do. |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1167 | return PE->getSubExpr()->isNullPointerConstant(Ctx); |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 1168 | } else if (const CXXDefaultArgExpr *DefaultArg |
| 1169 | = dyn_cast<CXXDefaultArgExpr>(this)) { |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1170 | // See through default argument expressions |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1171 | return DefaultArg->getExpr()->isNullPointerConstant(Ctx); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 1172 | } else if (isa<GNUNullExpr>(this)) { |
| 1173 | // The GNU __null extension is always a null pointer constant. |
| 1174 | return true; |
Steve Naroff | aaffbf7 | 2008-01-14 02:53:34 +0000 | [diff] [blame] | 1175 | } |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 1176 | |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1177 | // This expression must be an integer type. |
| 1178 | if (!getType()->isIntegerType()) |
| 1179 | return false; |
| 1180 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1181 | // If we have an integer constant expression, we need to *evaluate* it and |
| 1182 | // test for the value 0. |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1183 | // FIXME: We should probably return false if we're compiling in strict mode |
| 1184 | // and Diag is not null (this indicates that the value was foldable but not |
| 1185 | // an ICE. |
| 1186 | EvalResult Result; |
Anders Carlsson | efa9b38 | 2008-12-01 02:13:57 +0000 | [diff] [blame] | 1187 | return Evaluate(Result, Ctx) && !Result.HasSideEffects && |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1188 | Result.Val.isInt() && Result.Val.getInt() == 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1189 | } |
Steve Naroff | 31a4584 | 2007-07-28 23:10:27 +0000 | [diff] [blame] | 1190 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 1191 | /// isBitField - Return true if this expression is a bit-field. |
| 1192 | bool Expr::isBitField() { |
| 1193 | Expr *E = this->IgnoreParenCasts(); |
| 1194 | if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E)) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1195 | if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl())) |
| 1196 | return Field->isBitField(); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 1197 | return false; |
| 1198 | } |
| 1199 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1200 | unsigned ExtVectorElementExpr::getNumElements() const { |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1201 | if (const VectorType *VT = getType()->getAsVectorType()) |
| 1202 | return VT->getNumElements(); |
| 1203 | return 1; |
Chris Lattner | 4d0ac88 | 2007-08-03 16:00:20 +0000 | [diff] [blame] | 1204 | } |
| 1205 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1206 | /// containsDuplicateElements - Return true if any element access is repeated. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1207 | bool ExtVectorElementExpr::containsDuplicateElements() const { |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 1208 | const char *compStr = Accessor.getName(); |
Chris Lattner | 7e3e9b1 | 2008-11-19 07:55:04 +0000 | [diff] [blame] | 1209 | unsigned length = Accessor.getLength(); |
Nate Begeman | 190d6a2 | 2009-01-18 02:01:21 +0000 | [diff] [blame] | 1210 | |
| 1211 | // Halving swizzles do not contain duplicate elements. |
| 1212 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
| 1213 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) |
| 1214 | return false; |
| 1215 | |
| 1216 | // Advance past s-char prefix on hex swizzles. |
| 1217 | if (*compStr == 's') { |
| 1218 | compStr++; |
| 1219 | length--; |
| 1220 | } |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 1221 | |
Chris Lattner | 7e3e9b1 | 2008-11-19 07:55:04 +0000 | [diff] [blame] | 1222 | for (unsigned i = 0; i != length-1; i++) { |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 1223 | const char *s = compStr+i; |
| 1224 | for (const char c = *s++; *s; s++) |
| 1225 | if (c == *s) |
| 1226 | return true; |
| 1227 | } |
| 1228 | return false; |
| 1229 | } |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1230 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1231 | /// getEncodedElementAccess - We encode the fields as a llvm ConstantArray. |
Nate Begeman | 3b8d116 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 1232 | void ExtVectorElementExpr::getEncodedElementAccess( |
| 1233 | llvm::SmallVectorImpl<unsigned> &Elts) const { |
Chris Lattner | 7e3e9b1 | 2008-11-19 07:55:04 +0000 | [diff] [blame] | 1234 | const char *compStr = Accessor.getName(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1235 | if (*compStr == 's') |
| 1236 | compStr++; |
| 1237 | |
| 1238 | bool isHi = !strcmp(compStr, "hi"); |
| 1239 | bool isLo = !strcmp(compStr, "lo"); |
| 1240 | bool isEven = !strcmp(compStr, "even"); |
| 1241 | bool isOdd = !strcmp(compStr, "odd"); |
| 1242 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1243 | for (unsigned i = 0, e = getNumElements(); i != e; ++i) { |
| 1244 | uint64_t Index; |
| 1245 | |
| 1246 | if (isHi) |
| 1247 | Index = e + i; |
| 1248 | else if (isLo) |
| 1249 | Index = i; |
| 1250 | else if (isEven) |
| 1251 | Index = 2 * i; |
| 1252 | else if (isOdd) |
| 1253 | Index = 2 * i + 1; |
| 1254 | else |
| 1255 | Index = ExtVectorType::getAccessorIdx(compStr[i]); |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1256 | |
Nate Begeman | 3b8d116 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 1257 | Elts.push_back(Index); |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1258 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1259 | } |
| 1260 | |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1261 | // constructor for instance messages. |
Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 1262 | ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo, |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1263 | QualType retType, ObjCMethodDecl *mproto, |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1264 | SourceLocation LBrac, SourceLocation RBrac, |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1265 | Expr **ArgExprs, unsigned nargs) |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1266 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1267 | MethodProto(mproto) { |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1268 | NumArgs = nargs; |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1269 | SubExprs = new Stmt*[NumArgs+1]; |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1270 | SubExprs[RECEIVER] = receiver; |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1271 | if (NumArgs) { |
| 1272 | for (unsigned i = 0; i != NumArgs; ++i) |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1273 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1274 | } |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1275 | LBracloc = LBrac; |
| 1276 | RBracloc = RBrac; |
| 1277 | } |
| 1278 | |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1279 | // constructor for class messages. |
| 1280 | // FIXME: clsName should be typed to ObjCInterfaceType |
Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 1281 | ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo, |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1282 | QualType retType, ObjCMethodDecl *mproto, |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1283 | SourceLocation LBrac, SourceLocation RBrac, |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1284 | Expr **ArgExprs, unsigned nargs) |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1285 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1286 | MethodProto(mproto) { |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1287 | NumArgs = nargs; |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1288 | SubExprs = new Stmt*[NumArgs+1]; |
Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 1289 | SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown); |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1290 | if (NumArgs) { |
| 1291 | for (unsigned i = 0; i != NumArgs; ++i) |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1292 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1293 | } |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1294 | LBracloc = LBrac; |
| 1295 | RBracloc = RBrac; |
| 1296 | } |
| 1297 | |
Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 1298 | // constructor for class messages. |
| 1299 | ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo, |
| 1300 | QualType retType, ObjCMethodDecl *mproto, |
| 1301 | SourceLocation LBrac, SourceLocation RBrac, |
| 1302 | Expr **ArgExprs, unsigned nargs) |
| 1303 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
| 1304 | MethodProto(mproto) { |
| 1305 | NumArgs = nargs; |
| 1306 | SubExprs = new Stmt*[NumArgs+1]; |
| 1307 | SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown); |
| 1308 | if (NumArgs) { |
| 1309 | for (unsigned i = 0; i != NumArgs; ++i) |
| 1310 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1311 | } |
| 1312 | LBracloc = LBrac; |
| 1313 | RBracloc = RBrac; |
| 1314 | } |
| 1315 | |
| 1316 | ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const { |
| 1317 | uintptr_t x = (uintptr_t) SubExprs[RECEIVER]; |
| 1318 | switch (x & Flags) { |
| 1319 | default: |
| 1320 | assert(false && "Invalid ObjCMessageExpr."); |
| 1321 | case IsInstMeth: |
| 1322 | return ClassInfo(0, 0); |
| 1323 | case IsClsMethDeclUnknown: |
| 1324 | return ClassInfo(0, (IdentifierInfo*) (x & ~Flags)); |
| 1325 | case IsClsMethDeclKnown: { |
| 1326 | ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags); |
| 1327 | return ClassInfo(D, D->getIdentifier()); |
| 1328 | } |
| 1329 | } |
| 1330 | } |
| 1331 | |
Chris Lattner | 27437ca | 2007-10-25 00:29:32 +0000 | [diff] [blame] | 1332 | bool ChooseExpr::isConditionTrue(ASTContext &C) const { |
Daniel Dunbar | 32442bb | 2008-08-13 23:47:13 +0000 | [diff] [blame] | 1333 | return getCond()->getIntegerConstantExprValue(C) != 0; |
Chris Lattner | 27437ca | 2007-10-25 00:29:32 +0000 | [diff] [blame] | 1334 | } |
| 1335 | |
Chris Lattner | 670a62c | 2008-12-12 05:35:08 +0000 | [diff] [blame] | 1336 | static int64_t evaluateOffsetOf(ASTContext& C, const Expr *E) { |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1337 | if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { |
| 1338 | QualType Ty = ME->getBase()->getType(); |
| 1339 | |
| 1340 | RecordDecl *RD = Ty->getAsRecordType()->getDecl(); |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1341 | const ASTRecordLayout &RL = C.getASTRecordLayout(RD); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1342 | if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) { |
| 1343 | // FIXME: This is linear time. And the fact that we're indexing |
| 1344 | // into the layout by position in the record means that we're |
| 1345 | // either stuck numbering the fields in the AST or we have to keep |
| 1346 | // the linear search (yuck and yuck). |
| 1347 | unsigned i = 0; |
| 1348 | for (RecordDecl::field_iterator Field = RD->field_begin(), |
| 1349 | FieldEnd = RD->field_end(); |
| 1350 | Field != FieldEnd; (void)++Field, ++i) { |
| 1351 | if (*Field == FD) |
| 1352 | break; |
| 1353 | } |
| 1354 | |
| 1355 | return RL.getFieldOffset(i) + evaluateOffsetOf(C, ME->getBase()); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1356 | } |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1357 | } else if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) { |
| 1358 | const Expr *Base = ASE->getBase(); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1359 | |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1360 | int64_t size = C.getTypeSize(ASE->getType()); |
Daniel Dunbar | 32442bb | 2008-08-13 23:47:13 +0000 | [diff] [blame] | 1361 | size *= ASE->getIdx()->getIntegerConstantExprValue(C).getSExtValue(); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1362 | |
| 1363 | return size + evaluateOffsetOf(C, Base); |
| 1364 | } else if (isa<CompoundLiteralExpr>(E)) |
| 1365 | return 0; |
| 1366 | |
| 1367 | assert(0 && "Unknown offsetof subexpression!"); |
| 1368 | return 0; |
| 1369 | } |
| 1370 | |
| 1371 | int64_t UnaryOperator::evaluateOffsetOf(ASTContext& C) const |
| 1372 | { |
| 1373 | assert(Opc == OffsetOf && "Unary operator not offsetof!"); |
| 1374 | |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1375 | unsigned CharSize = C.Target.getCharWidth(); |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1376 | return ::evaluateOffsetOf(C, cast<Expr>(Val)) / CharSize; |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1377 | } |
| 1378 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1379 | void SizeOfAlignOfExpr::Destroy(ASTContext& C) { |
| 1380 | // Override default behavior of traversing children. If this has a type |
| 1381 | // operand and the type is a variable-length array, the child iteration |
| 1382 | // will iterate over the size expression. However, this expression belongs |
| 1383 | // to the type, not to this, so we don't want to delete it. |
| 1384 | // We still want to delete this expression. |
| 1385 | // FIXME: Same as in Stmt::Destroy - will be eventually in ASTContext's |
| 1386 | // pool allocator. |
| 1387 | if (isArgumentType()) |
| 1388 | delete this; |
| 1389 | else |
| 1390 | Expr::Destroy(C); |
Daniel Dunbar | 9048891 | 2008-08-28 18:02:04 +0000 | [diff] [blame] | 1391 | } |
| 1392 | |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1393 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1394 | // DesignatedInitExpr |
| 1395 | //===----------------------------------------------------------------------===// |
| 1396 | |
| 1397 | IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() { |
| 1398 | assert(Kind == FieldDesignator && "Only valid on a field designator"); |
| 1399 | if (Field.NameOrField & 0x01) |
| 1400 | return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01); |
| 1401 | else |
| 1402 | return getField()->getIdentifier(); |
| 1403 | } |
| 1404 | |
| 1405 | DesignatedInitExpr * |
| 1406 | DesignatedInitExpr::Create(ASTContext &C, Designator *Designators, |
| 1407 | unsigned NumDesignators, |
| 1408 | Expr **IndexExprs, unsigned NumIndexExprs, |
| 1409 | SourceLocation ColonOrEqualLoc, |
| 1410 | bool UsesColonSyntax, Expr *Init) { |
Steve Naroff | c0ac492 | 2009-01-27 23:20:32 +0000 | [diff] [blame] | 1411 | void *Mem = C.Allocate(sizeof(DesignatedInitExpr) + |
| 1412 | sizeof(Designator) * NumDesignators + |
| 1413 | sizeof(Stmt *) * (NumIndexExprs + 1), 8); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1414 | DesignatedInitExpr *DIE |
| 1415 | = new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators, |
| 1416 | ColonOrEqualLoc, UsesColonSyntax, |
| 1417 | NumIndexExprs + 1); |
| 1418 | |
| 1419 | // Fill in the designators |
| 1420 | unsigned ExpectedNumSubExprs = 0; |
| 1421 | designators_iterator Desig = DIE->designators_begin(); |
| 1422 | for (unsigned Idx = 0; Idx < NumDesignators; ++Idx, ++Desig) { |
| 1423 | new (static_cast<void*>(Desig)) Designator(Designators[Idx]); |
| 1424 | if (Designators[Idx].isArrayDesignator()) |
| 1425 | ++ExpectedNumSubExprs; |
| 1426 | else if (Designators[Idx].isArrayRangeDesignator()) |
| 1427 | ExpectedNumSubExprs += 2; |
| 1428 | } |
| 1429 | assert(ExpectedNumSubExprs == NumIndexExprs && "Wrong number of indices!"); |
| 1430 | |
| 1431 | // Fill in the subexpressions, including the initializer expression. |
| 1432 | child_iterator Child = DIE->child_begin(); |
| 1433 | *Child++ = Init; |
| 1434 | for (unsigned Idx = 0; Idx < NumIndexExprs; ++Idx, ++Child) |
| 1435 | *Child = IndexExprs[Idx]; |
| 1436 | |
| 1437 | return DIE; |
| 1438 | } |
| 1439 | |
| 1440 | SourceRange DesignatedInitExpr::getSourceRange() const { |
| 1441 | SourceLocation StartLoc; |
| 1442 | Designator &First = *const_cast<DesignatedInitExpr*>(this)->designators_begin(); |
| 1443 | if (First.isFieldDesignator()) { |
| 1444 | if (UsesColonSyntax) |
| 1445 | StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc); |
| 1446 | else |
| 1447 | StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc); |
| 1448 | } else |
| 1449 | StartLoc = SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc); |
| 1450 | return SourceRange(StartLoc, getInit()->getSourceRange().getEnd()); |
| 1451 | } |
| 1452 | |
| 1453 | DesignatedInitExpr::designators_iterator DesignatedInitExpr::designators_begin() { |
| 1454 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 1455 | Ptr += sizeof(DesignatedInitExpr); |
| 1456 | return static_cast<Designator*>(static_cast<void*>(Ptr)); |
| 1457 | } |
| 1458 | |
| 1459 | DesignatedInitExpr::designators_iterator DesignatedInitExpr::designators_end() { |
| 1460 | return designators_begin() + NumDesignators; |
| 1461 | } |
| 1462 | |
| 1463 | Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) { |
| 1464 | assert(D.Kind == Designator::ArrayDesignator && "Requires array designator"); |
| 1465 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 1466 | Ptr += sizeof(DesignatedInitExpr); |
| 1467 | Ptr += sizeof(Designator) * NumDesignators; |
| 1468 | Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 1469 | return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1)); |
| 1470 | } |
| 1471 | |
| 1472 | Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) { |
| 1473 | assert(D.Kind == Designator::ArrayRangeDesignator && |
| 1474 | "Requires array range designator"); |
| 1475 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 1476 | Ptr += sizeof(DesignatedInitExpr); |
| 1477 | Ptr += sizeof(Designator) * NumDesignators; |
| 1478 | Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 1479 | return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1)); |
| 1480 | } |
| 1481 | |
| 1482 | Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) { |
| 1483 | assert(D.Kind == Designator::ArrayRangeDesignator && |
| 1484 | "Requires array range designator"); |
| 1485 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 1486 | Ptr += sizeof(DesignatedInitExpr); |
| 1487 | Ptr += sizeof(Designator) * NumDesignators; |
| 1488 | Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 1489 | return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2)); |
| 1490 | } |
| 1491 | |
| 1492 | //===----------------------------------------------------------------------===// |
Ted Kremenek | ce2fc3a | 2008-10-27 18:40:21 +0000 | [diff] [blame] | 1493 | // ExprIterator. |
| 1494 | //===----------------------------------------------------------------------===// |
| 1495 | |
| 1496 | Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); } |
| 1497 | Expr* ExprIterator::operator*() const { return cast<Expr>(*I); } |
| 1498 | Expr* ExprIterator::operator->() const { return cast<Expr>(*I); } |
| 1499 | const Expr* ConstExprIterator::operator[](size_t idx) const { |
| 1500 | return cast<Expr>(I[idx]); |
| 1501 | } |
| 1502 | const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); } |
| 1503 | const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); } |
| 1504 | |
| 1505 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1506 | // Child Iterators for iterating over subexpressions/substatements |
| 1507 | //===----------------------------------------------------------------------===// |
| 1508 | |
| 1509 | // DeclRefExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1510 | Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); } |
| 1511 | Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1512 | |
Steve Naroff | 7779db4 | 2007-11-12 14:29:37 +0000 | [diff] [blame] | 1513 | // ObjCIvarRefExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1514 | Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; } |
| 1515 | Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; } |
Steve Naroff | 7779db4 | 2007-11-12 14:29:37 +0000 | [diff] [blame] | 1516 | |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 1517 | // ObjCPropertyRefExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1518 | Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; } |
| 1519 | Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; } |
Steve Naroff | ae78407 | 2008-05-30 00:40:33 +0000 | [diff] [blame] | 1520 | |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 1521 | // ObjCKVCRefExpr |
| 1522 | Stmt::child_iterator ObjCKVCRefExpr::child_begin() { return &Base; } |
| 1523 | Stmt::child_iterator ObjCKVCRefExpr::child_end() { return &Base+1; } |
| 1524 | |
Douglas Gregor | cd9b46e | 2008-11-04 14:56:14 +0000 | [diff] [blame] | 1525 | // ObjCSuperExpr |
| 1526 | Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); } |
| 1527 | Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); } |
| 1528 | |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1529 | // PredefinedExpr |
| 1530 | Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); } |
| 1531 | Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1532 | |
| 1533 | // IntegerLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1534 | Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); } |
| 1535 | Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1536 | |
| 1537 | // CharacterLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1538 | Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator(); } |
| 1539 | Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1540 | |
| 1541 | // FloatingLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1542 | Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); } |
| 1543 | Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1544 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1545 | // ImaginaryLiteral |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1546 | Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; } |
| 1547 | Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; } |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1548 | |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1549 | // StringLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1550 | Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); } |
| 1551 | Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1552 | |
| 1553 | // ParenExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1554 | Stmt::child_iterator ParenExpr::child_begin() { return &Val; } |
| 1555 | Stmt::child_iterator ParenExpr::child_end() { return &Val+1; } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1556 | |
| 1557 | // UnaryOperator |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1558 | Stmt::child_iterator UnaryOperator::child_begin() { return &Val; } |
| 1559 | Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1560 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1561 | // SizeOfAlignOfExpr |
| 1562 | Stmt::child_iterator SizeOfAlignOfExpr::child_begin() { |
| 1563 | // If this is of a type and the type is a VLA type (and not a typedef), the |
| 1564 | // size expression of the VLA needs to be treated as an executable expression. |
| 1565 | // Why isn't this weirdness documented better in StmtIterator? |
| 1566 | if (isArgumentType()) { |
| 1567 | if (VariableArrayType* T = dyn_cast<VariableArrayType>( |
| 1568 | getArgumentType().getTypePtr())) |
| 1569 | return child_iterator(T); |
| 1570 | return child_iterator(); |
| 1571 | } |
Sebastian Redl | d457589 | 2008-12-03 23:17:54 +0000 | [diff] [blame] | 1572 | return child_iterator(&Argument.Ex); |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1573 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1574 | Stmt::child_iterator SizeOfAlignOfExpr::child_end() { |
| 1575 | if (isArgumentType()) |
| 1576 | return child_iterator(); |
Sebastian Redl | d457589 | 2008-12-03 23:17:54 +0000 | [diff] [blame] | 1577 | return child_iterator(&Argument.Ex + 1); |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1578 | } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1579 | |
| 1580 | // ArraySubscriptExpr |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1581 | Stmt::child_iterator ArraySubscriptExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1582 | return &SubExprs[0]; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1583 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1584 | Stmt::child_iterator ArraySubscriptExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1585 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1586 | } |
| 1587 | |
| 1588 | // CallExpr |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1589 | Stmt::child_iterator CallExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1590 | return &SubExprs[0]; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1591 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1592 | Stmt::child_iterator CallExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1593 | return &SubExprs[0]+NumArgs+ARGS_START; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1594 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1595 | |
| 1596 | // MemberExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1597 | Stmt::child_iterator MemberExpr::child_begin() { return &Base; } |
| 1598 | Stmt::child_iterator MemberExpr::child_end() { return &Base+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1599 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1600 | // ExtVectorElementExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1601 | Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; } |
| 1602 | Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1603 | |
| 1604 | // CompoundLiteralExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1605 | Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; } |
| 1606 | Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1607 | |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1608 | // CastExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1609 | Stmt::child_iterator CastExpr::child_begin() { return &Op; } |
| 1610 | Stmt::child_iterator CastExpr::child_end() { return &Op+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1611 | |
| 1612 | // BinaryOperator |
| 1613 | Stmt::child_iterator BinaryOperator::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1614 | return &SubExprs[0]; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1615 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1616 | Stmt::child_iterator BinaryOperator::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1617 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1618 | } |
| 1619 | |
| 1620 | // ConditionalOperator |
| 1621 | Stmt::child_iterator ConditionalOperator::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1622 | return &SubExprs[0]; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1623 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1624 | Stmt::child_iterator ConditionalOperator::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1625 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1626 | } |
| 1627 | |
| 1628 | // AddrLabelExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1629 | Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); } |
| 1630 | Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1631 | |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1632 | // StmtExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1633 | Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; } |
| 1634 | Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1635 | |
| 1636 | // TypesCompatibleExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1637 | Stmt::child_iterator TypesCompatibleExpr::child_begin() { |
| 1638 | return child_iterator(); |
| 1639 | } |
| 1640 | |
| 1641 | Stmt::child_iterator TypesCompatibleExpr::child_end() { |
| 1642 | return child_iterator(); |
| 1643 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1644 | |
| 1645 | // ChooseExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1646 | Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; } |
| 1647 | Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1648 | |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 1649 | // GNUNullExpr |
| 1650 | Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); } |
| 1651 | Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); } |
| 1652 | |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 1653 | // OverloadExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1654 | Stmt::child_iterator OverloadExpr::child_begin() { return &SubExprs[0]; } |
| 1655 | Stmt::child_iterator OverloadExpr::child_end() { return &SubExprs[0]+NumExprs; } |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 1656 | |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1657 | // ShuffleVectorExpr |
| 1658 | Stmt::child_iterator ShuffleVectorExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1659 | return &SubExprs[0]; |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1660 | } |
| 1661 | Stmt::child_iterator ShuffleVectorExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1662 | return &SubExprs[0]+NumExprs; |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1663 | } |
| 1664 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1665 | // VAArgExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1666 | Stmt::child_iterator VAArgExpr::child_begin() { return &Val; } |
| 1667 | Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; } |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1668 | |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1669 | // InitListExpr |
| 1670 | Stmt::child_iterator InitListExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1671 | return InitExprs.size() ? &InitExprs[0] : 0; |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1672 | } |
| 1673 | Stmt::child_iterator InitListExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1674 | return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0; |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1675 | } |
| 1676 | |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 1677 | // DesignatedInitExpr |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1678 | Stmt::child_iterator DesignatedInitExpr::child_begin() { |
| 1679 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 1680 | Ptr += sizeof(DesignatedInitExpr); |
| 1681 | Ptr += sizeof(Designator) * NumDesignators; |
| 1682 | return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 1683 | } |
| 1684 | Stmt::child_iterator DesignatedInitExpr::child_end() { |
| 1685 | return child_iterator(&*child_begin() + NumSubExprs); |
| 1686 | } |
| 1687 | |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 1688 | // ImplicitValueInitExpr |
| 1689 | Stmt::child_iterator ImplicitValueInitExpr::child_begin() { |
| 1690 | return child_iterator(); |
| 1691 | } |
| 1692 | |
| 1693 | Stmt::child_iterator ImplicitValueInitExpr::child_end() { |
| 1694 | return child_iterator(); |
| 1695 | } |
| 1696 | |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1697 | // ObjCStringLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1698 | Stmt::child_iterator ObjCStringLiteral::child_begin() { |
| 1699 | return child_iterator(); |
| 1700 | } |
| 1701 | Stmt::child_iterator ObjCStringLiteral::child_end() { |
| 1702 | return child_iterator(); |
| 1703 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1704 | |
| 1705 | // ObjCEncodeExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1706 | Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); } |
| 1707 | Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1708 | |
Fariborz Jahanian | b62f681 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1709 | // ObjCSelectorExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1710 | Stmt::child_iterator ObjCSelectorExpr::child_begin() { |
| 1711 | return child_iterator(); |
| 1712 | } |
| 1713 | Stmt::child_iterator ObjCSelectorExpr::child_end() { |
| 1714 | return child_iterator(); |
| 1715 | } |
Fariborz Jahanian | b62f681 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1716 | |
Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1717 | // ObjCProtocolExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1718 | Stmt::child_iterator ObjCProtocolExpr::child_begin() { |
| 1719 | return child_iterator(); |
| 1720 | } |
| 1721 | Stmt::child_iterator ObjCProtocolExpr::child_end() { |
| 1722 | return child_iterator(); |
| 1723 | } |
Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1724 | |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1725 | // ObjCMessageExpr |
Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1726 | Stmt::child_iterator ObjCMessageExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1727 | return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START; |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1728 | } |
| 1729 | Stmt::child_iterator ObjCMessageExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1730 | return &SubExprs[0]+ARGS_START+getNumArgs(); |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1731 | } |
| 1732 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1733 | // Blocks |
Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 1734 | Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); } |
| 1735 | Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); } |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1736 | |
Ted Kremenek | 9da13f9 | 2008-09-26 23:24:14 +0000 | [diff] [blame] | 1737 | Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();} |
| 1738 | Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); } |