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