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); |
Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 337 | if (Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2)) |
| 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. |
| 606 | if (cast<ChooseExpr>(this)->isConditionTrue(Ctx)) |
| 607 | return cast<ChooseExpr>(this)->getLHS()->isLvalue(Ctx); |
| 608 | else |
| 609 | return cast<ChooseExpr>(this)->getRHS()->isLvalue(Ctx); |
| 610 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 611 | case ExtVectorElementExprClass: |
| 612 | if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements()) |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 613 | return LV_DuplicateVectorComponents; |
| 614 | return LV_Valid; |
Steve Naroff | 027282d | 2007-11-12 14:34:27 +0000 | [diff] [blame] | 615 | case ObjCIvarRefExprClass: // ObjC instance variables are lvalues. |
| 616 | return LV_Valid; |
Steve Naroff | 799a6a6 | 2008-05-30 23:23:16 +0000 | [diff] [blame] | 617 | case ObjCPropertyRefExprClass: // FIXME: check if read-only property. |
| 618 | return LV_Valid; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 619 | case ObjCKVCRefExprClass: // FIXME: check if read-only property. |
Chris Lattner | 670a62c | 2008-12-12 05:35:08 +0000 | [diff] [blame] | 620 | return LV_Valid; |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 621 | case PredefinedExprClass: |
Douglas Gregor | 796da18 | 2008-11-04 14:32:21 +0000 | [diff] [blame] | 622 | return LV_Valid; |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 623 | case VAArgExprClass: |
Daniel Dunbar | adadd8d | 2009-02-12 09:21:08 +0000 | [diff] [blame] | 624 | return LV_NotObjectType; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 625 | case CXXDefaultArgExprClass: |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 626 | return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx); |
Argyrios Kyrtzidis | 24b41fa | 2008-09-11 04:22:26 +0000 | [diff] [blame] | 627 | case CXXConditionDeclExprClass: |
| 628 | return LV_Valid; |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 629 | case CStyleCastExprClass: |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 630 | case CXXFunctionalCastExprClass: |
| 631 | case CXXStaticCastExprClass: |
| 632 | case CXXDynamicCastExprClass: |
| 633 | case CXXReinterpretCastExprClass: |
| 634 | case CXXConstCastExprClass: |
| 635 | // The result of an explicit cast is an lvalue if the type we are |
| 636 | // casting to is a reference type. See C++ [expr.cast]p1, |
| 637 | // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2, |
| 638 | // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1. |
| 639 | if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->isReferenceType()) |
| 640 | return LV_Valid; |
| 641 | break; |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 642 | case CXXTypeidExprClass: |
| 643 | // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ... |
| 644 | return LV_Valid; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 645 | default: |
| 646 | break; |
| 647 | } |
| 648 | return LV_InvalidExpression; |
| 649 | } |
| 650 | |
| 651 | /// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type, |
| 652 | /// does not have an incomplete type, does not have a const-qualified type, and |
| 653 | /// if it is a structure or union, does not have any member (including, |
| 654 | /// recursively, any member or element of all contained aggregates or unions) |
| 655 | /// with a const-qualified type. |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 656 | Expr::isModifiableLvalueResult Expr::isModifiableLvalue(ASTContext &Ctx) const { |
| 657 | isLvalueResult lvalResult = isLvalue(Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 658 | |
| 659 | switch (lvalResult) { |
Douglas Gregor | ae8d467 | 2008-10-22 00:03:08 +0000 | [diff] [blame] | 660 | case LV_Valid: |
| 661 | // C++ 3.10p11: Functions cannot be modified, but pointers to |
| 662 | // functions can be modifiable. |
| 663 | if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType()) |
| 664 | return MLV_NotObjectType; |
| 665 | break; |
| 666 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 667 | case LV_NotObjectType: return MLV_NotObjectType; |
| 668 | case LV_IncompleteVoidType: return MLV_IncompleteVoidType; |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 669 | case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 670 | case LV_InvalidExpression: |
| 671 | // If the top level is a C-style cast, and the subexpression is a valid |
| 672 | // lvalue, then this is probably a use of the old-school "cast as lvalue" |
| 673 | // GCC extension. We don't support it, but we want to produce good |
| 674 | // diagnostics when it happens so that the user knows why. |
| 675 | if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(this)) |
| 676 | if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) |
| 677 | return MLV_LValueCast; |
| 678 | return MLV_InvalidExpression; |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 679 | case LV_MemberFunction: return MLV_MemberFunction; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 680 | } |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 681 | |
| 682 | QualType CT = Ctx.getCanonicalType(getType()); |
| 683 | |
| 684 | if (CT.isConstQualified()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 685 | return MLV_ConstQualified; |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 686 | if (CT->isArrayType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 687 | return MLV_ArrayType; |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 688 | if (CT->isIncompleteType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 689 | return MLV_IncompleteType; |
| 690 | |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 691 | if (const RecordType *r = CT->getAsRecordType()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 692 | if (r->hasConstFields()) |
| 693 | return MLV_ConstQualified; |
| 694 | } |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 695 | // The following is illegal: |
| 696 | // void takeclosure(void (^C)(void)); |
| 697 | // void func() { int x = 1; takeclosure(^{ x = 7 }); } |
| 698 | // |
| 699 | if (getStmtClass() == BlockDeclRefExprClass) { |
| 700 | const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this); |
| 701 | if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl())) |
| 702 | return MLV_NotBlockQualified; |
| 703 | } |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 704 | |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 705 | // Assigning to an 'implicit' property? |
Fariborz Jahanian | 6669db9 | 2008-11-25 17:56:43 +0000 | [diff] [blame] | 706 | else if (getStmtClass() == ObjCKVCRefExprClass) { |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 707 | const ObjCKVCRefExpr* KVCExpr = cast<ObjCKVCRefExpr>(this); |
| 708 | if (KVCExpr->getSetterMethod() == 0) |
| 709 | return MLV_NoSetterProperty; |
| 710 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 711 | return MLV_Valid; |
| 712 | } |
| 713 | |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 714 | /// hasGlobalStorage - Return true if this expression has static storage |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 715 | /// duration. This means that the address of this expression is a link-time |
| 716 | /// constant. |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 717 | bool Expr::hasGlobalStorage() const { |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 718 | switch (getStmtClass()) { |
| 719 | default: |
| 720 | return false; |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 721 | case ParenExprClass: |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 722 | return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage(); |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 723 | case ImplicitCastExprClass: |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 724 | return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 725 | case CompoundLiteralExprClass: |
| 726 | return cast<CompoundLiteralExpr>(this)->isFileScope(); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 727 | case DeclRefExprClass: |
| 728 | case QualifiedDeclRefExprClass: { |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 729 | const Decl *D = cast<DeclRefExpr>(this)->getDecl(); |
| 730 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 731 | return VD->hasGlobalStorage(); |
Seo Sanghyeon | 63f067f | 2008-04-04 09:45:30 +0000 | [diff] [blame] | 732 | if (isa<FunctionDecl>(D)) |
| 733 | return true; |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 734 | return false; |
| 735 | } |
Chris Lattner | fb70806 | 2007-11-28 04:30:09 +0000 | [diff] [blame] | 736 | case MemberExprClass: { |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 737 | const MemberExpr *M = cast<MemberExpr>(this); |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 738 | return !M->isArrow() && M->getBase()->hasGlobalStorage(); |
Chris Lattner | fb70806 | 2007-11-28 04:30:09 +0000 | [diff] [blame] | 739 | } |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 740 | case ArraySubscriptExprClass: |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 741 | return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage(); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 742 | case PredefinedExprClass: |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 743 | return true; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 744 | case CXXDefaultArgExprClass: |
| 745 | return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage(); |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 746 | } |
| 747 | } |
| 748 | |
Fariborz Jahanian | 44baa8a | 2009-02-22 18:40:18 +0000 | [diff] [blame] | 749 | /// isOBJCGCCandidate - Check if an expression is objc gc'able. |
| 750 | /// |
| 751 | bool Expr::isOBJCGCCandidate() const { |
| 752 | switch (getStmtClass()) { |
| 753 | default: |
| 754 | return false; |
| 755 | case ObjCIvarRefExprClass: |
| 756 | return true; |
Fariborz Jahanian | 207c521 | 2009-02-23 18:59:50 +0000 | [diff] [blame] | 757 | case Expr::UnaryOperatorClass: |
| 758 | return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate(); |
Fariborz Jahanian | 44baa8a | 2009-02-22 18:40:18 +0000 | [diff] [blame] | 759 | case ParenExprClass: |
| 760 | return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate(); |
| 761 | case ImplicitCastExprClass: |
| 762 | return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(); |
| 763 | case DeclRefExprClass: |
| 764 | case QualifiedDeclRefExprClass: { |
| 765 | const Decl *D = cast<DeclRefExpr>(this)->getDecl(); |
| 766 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 767 | return VD->hasGlobalStorage(); |
| 768 | return false; |
| 769 | } |
| 770 | case MemberExprClass: { |
| 771 | const MemberExpr *M = cast<MemberExpr>(this); |
| 772 | return !M->isArrow() && M->getBase()->isOBJCGCCandidate(); |
| 773 | } |
| 774 | case ArraySubscriptExprClass: |
| 775 | return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate(); |
| 776 | } |
| 777 | } |
Ted Kremenek | 4e99a5f | 2008-01-17 16:57:34 +0000 | [diff] [blame] | 778 | Expr* Expr::IgnoreParens() { |
| 779 | Expr* E = this; |
| 780 | while (ParenExpr* P = dyn_cast<ParenExpr>(E)) |
| 781 | E = P->getSubExpr(); |
| 782 | |
| 783 | return E; |
| 784 | } |
| 785 | |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 786 | /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr |
| 787 | /// or CastExprs or ImplicitCastExprs, returning their operand. |
| 788 | Expr *Expr::IgnoreParenCasts() { |
| 789 | Expr *E = this; |
| 790 | while (true) { |
| 791 | if (ParenExpr *P = dyn_cast<ParenExpr>(E)) |
| 792 | E = P->getSubExpr(); |
| 793 | else if (CastExpr *P = dyn_cast<CastExpr>(E)) |
| 794 | E = P->getSubExpr(); |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 795 | else |
| 796 | return E; |
| 797 | } |
| 798 | } |
| 799 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 800 | /// hasAnyTypeDependentArguments - Determines if any of the expressions |
| 801 | /// in Exprs is type-dependent. |
| 802 | bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) { |
| 803 | for (unsigned I = 0; I < NumExprs; ++I) |
| 804 | if (Exprs[I]->isTypeDependent()) |
| 805 | return true; |
| 806 | |
| 807 | return false; |
| 808 | } |
| 809 | |
| 810 | /// hasAnyValueDependentArguments - Determines if any of the expressions |
| 811 | /// in Exprs is value-dependent. |
| 812 | bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) { |
| 813 | for (unsigned I = 0; I < NumExprs; ++I) |
| 814 | if (Exprs[I]->isValueDependent()) |
| 815 | return true; |
| 816 | |
| 817 | return false; |
| 818 | } |
| 819 | |
Eli Friedman | c9e8f60 | 2009-01-25 02:32:41 +0000 | [diff] [blame] | 820 | bool Expr::isConstantInitializer(ASTContext &Ctx) const { |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 821 | // This function is attempting whether an expression is an initializer |
| 822 | // which can be evaluated at compile-time. isEvaluatable handles most |
| 823 | // of the cases, but it can't deal with some initializer-specific |
| 824 | // expressions, and it can't deal with aggregates; we deal with those here, |
| 825 | // and fall back to isEvaluatable for the other cases. |
| 826 | |
Eli Friedman | 1f4a6db | 2009-02-20 02:36:22 +0000 | [diff] [blame] | 827 | // FIXME: This function assumes the variable being assigned to |
| 828 | // isn't a reference type! |
| 829 | |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 830 | switch (getStmtClass()) { |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 831 | default: break; |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 832 | case StringLiteralClass: |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 833 | case ObjCEncodeExprClass: |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 834 | return true; |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 835 | case CompoundLiteralExprClass: { |
Eli Friedman | 1f4a6db | 2009-02-20 02:36:22 +0000 | [diff] [blame] | 836 | // This handles gcc's extension that allows global initializers like |
| 837 | // "struct x {int x;} x = (struct x) {};". |
| 838 | // FIXME: This accepts other cases it shouldn't! |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 839 | const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer(); |
Eli Friedman | c9e8f60 | 2009-01-25 02:32:41 +0000 | [diff] [blame] | 840 | return Exp->isConstantInitializer(Ctx); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 841 | } |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 842 | case InitListExprClass: { |
Eli Friedman | 1f4a6db | 2009-02-20 02:36:22 +0000 | [diff] [blame] | 843 | // FIXME: This doesn't deal with fields with reference types correctly. |
| 844 | // FIXME: This incorrectly allows pointers cast to integers to be assigned |
| 845 | // to bitfields. |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 846 | const InitListExpr *Exp = cast<InitListExpr>(this); |
| 847 | unsigned numInits = Exp->getNumInits(); |
| 848 | for (unsigned i = 0; i < numInits; i++) { |
Eli Friedman | c9e8f60 | 2009-01-25 02:32:41 +0000 | [diff] [blame] | 849 | if (!Exp->getInit(i)->isConstantInitializer(Ctx)) |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 850 | return false; |
| 851 | } |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 852 | return true; |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 853 | } |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 854 | case ImplicitValueInitExprClass: |
| 855 | return true; |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 856 | case ParenExprClass: { |
| 857 | return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx); |
| 858 | } |
| 859 | case UnaryOperatorClass: { |
| 860 | const UnaryOperator* Exp = cast<UnaryOperator>(this); |
| 861 | if (Exp->getOpcode() == UnaryOperator::Extension) |
| 862 | return Exp->getSubExpr()->isConstantInitializer(Ctx); |
| 863 | break; |
| 864 | } |
| 865 | case CStyleCastExprClass: |
| 866 | // Handle casts with a destination that's a struct or union; this |
| 867 | // deals with both the gcc no-op struct cast extension and the |
| 868 | // cast-to-union extension. |
| 869 | if (getType()->isRecordType()) |
| 870 | return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx); |
| 871 | break; |
Anders Carlsson | e8a32b8 | 2008-11-24 05:23:59 +0000 | [diff] [blame] | 872 | } |
| 873 | |
Eli Friedman | c39dc9a | 2009-01-25 03:12:18 +0000 | [diff] [blame] | 874 | return isEvaluatable(Ctx); |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 875 | } |
| 876 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 877 | /// isIntegerConstantExpr - this recursive routine will test if an expression is |
| 878 | /// an integer constant expression. Note: With the introduction of VLA's in |
| 879 | /// C99 the result of the sizeof operator is no longer always a constant |
| 880 | /// expression. The generalization of the wording to include any subexpression |
| 881 | /// that is not evaluated (C99 6.6p3) means that nonconstant subexpressions |
| 882 | /// can appear as operands to other operators (e.g. &&, ||, ?:). For instance, |
Nuno Lopes | 5f6b632 | 2008-07-08 21:13:06 +0000 | [diff] [blame] | 883 | /// "0 || f()" can be treated as a constant expression. In C90 this expression, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 884 | /// occurring in a context requiring a constant, would have been a constraint |
| 885 | /// violation. FIXME: This routine currently implements C90 semantics. |
| 886 | /// To properly implement C99 semantics this routine will need to evaluate |
| 887 | /// expressions involving operators previously mentioned. |
| 888 | |
| 889 | /// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero, |
| 890 | /// comma, etc |
| 891 | /// |
| 892 | /// FIXME: This should ext-warn on overflow during evaluation! ISO C does not |
Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 893 | /// permit this. This includes things like (int)1e1000 |
Chris Lattner | ce0afc0 | 2007-07-18 05:21:20 +0000 | [diff] [blame] | 894 | /// |
| 895 | /// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof |
| 896 | /// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer |
| 897 | /// cast+dereference. |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 898 | bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx, |
| 899 | SourceLocation *Loc, bool isEvaluated) const { |
Daniel Dunbar | 2d6744f | 2009-02-18 00:47:45 +0000 | [diff] [blame] | 900 | if (!isIntegerConstantExprInternal(Result, Ctx, Loc, isEvaluated)) |
| 901 | return false; |
| 902 | assert(Result == EvaluateAsInt(Ctx) && "Inconsistent Evaluate() result!"); |
| 903 | return true; |
| 904 | } |
| 905 | |
| 906 | bool Expr::isIntegerConstantExprInternal(llvm::APSInt &Result, ASTContext &Ctx, |
| 907 | SourceLocation *Loc, bool isEvaluated) const { |
| 908 | |
Eli Friedman | a6afa76 | 2008-11-13 06:09:17 +0000 | [diff] [blame] | 909 | // Pretest for integral type; some parts of the code crash for types that |
| 910 | // can't be sized. |
| 911 | if (!getType()->isIntegralType()) { |
| 912 | if (Loc) *Loc = getLocStart(); |
| 913 | return false; |
| 914 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 915 | switch (getStmtClass()) { |
| 916 | default: |
| 917 | if (Loc) *Loc = getLocStart(); |
| 918 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 919 | case ParenExprClass: |
| 920 | return cast<ParenExpr>(this)->getSubExpr()-> |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 921 | isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 922 | case IntegerLiteralClass: |
Daniel Dunbar | 2d6744f | 2009-02-18 00:47:45 +0000 | [diff] [blame] | 923 | // NOTE: getValue() returns an APInt, we must set sign. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 924 | Result = cast<IntegerLiteral>(this)->getValue(); |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 925 | Result.setIsUnsigned(getType()->isUnsignedIntegerType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 926 | break; |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 927 | case CharacterLiteralClass: { |
| 928 | const CharacterLiteral *CL = cast<CharacterLiteral>(this); |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 929 | Result = Ctx.MakeIntValue(CL->getValue(), getType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 930 | break; |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 931 | } |
Anders Carlsson | b88d45e | 2008-08-23 21:12:35 +0000 | [diff] [blame] | 932 | case CXXBoolLiteralExprClass: { |
| 933 | const CXXBoolLiteralExpr *BL = cast<CXXBoolLiteralExpr>(this); |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 934 | Result = Ctx.MakeIntValue(BL->getValue(), getType()); |
Anders Carlsson | b88d45e | 2008-08-23 21:12:35 +0000 | [diff] [blame] | 935 | break; |
| 936 | } |
Argyrios Kyrtzidis | 7267f78 | 2008-08-23 19:35:47 +0000 | [diff] [blame] | 937 | case CXXZeroInitValueExprClass: |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 938 | Result = Ctx.MakeIntValue(0, getType()); |
Argyrios Kyrtzidis | 7267f78 | 2008-08-23 19:35:47 +0000 | [diff] [blame] | 939 | break; |
Steve Naroff | 7b658aa | 2007-08-02 04:09:23 +0000 | [diff] [blame] | 940 | case TypesCompatibleExprClass: { |
| 941 | const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this); |
Daniel Dunbar | ac620de | 2008-10-24 08:07:57 +0000 | [diff] [blame] | 942 | // Per gcc docs "this built-in function ignores top level |
| 943 | // qualifiers". We need to use the canonical version to properly |
| 944 | // be able to strip CRV qualifiers from the type. |
| 945 | QualType T0 = Ctx.getCanonicalType(TCE->getArgType1()); |
| 946 | QualType T1 = Ctx.getCanonicalType(TCE->getArgType2()); |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 947 | Result = Ctx.MakeIntValue(Ctx.typesAreCompatible(T0.getUnqualifiedType(), |
| 948 | T1.getUnqualifiedType()), |
| 949 | getType()); |
Steve Naroff | 389cecc | 2007-08-02 00:13:27 +0000 | [diff] [blame] | 950 | break; |
Steve Naroff | 7b658aa | 2007-08-02 04:09:23 +0000 | [diff] [blame] | 951 | } |
Douglas Gregor | b460980 | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 952 | case CallExprClass: |
| 953 | case CXXOperatorCallExprClass: { |
Steve Naroff | 13b7c5f | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 954 | const CallExpr *CE = cast<CallExpr>(this); |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 955 | |
| 956 | // If this is a call to a builtin function, constant fold it otherwise |
| 957 | // reject it. |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 958 | if (CE->isBuiltinCall(Ctx)) { |
Anders Carlsson | 1c0cfd4 | 2008-12-19 20:58:05 +0000 | [diff] [blame] | 959 | EvalResult EvalResult; |
| 960 | if (CE->Evaluate(EvalResult, Ctx)) { |
| 961 | assert(!EvalResult.HasSideEffects && |
| 962 | "Foldable builtin call should not have side effects!"); |
| 963 | Result = EvalResult.Val.getInt(); |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 964 | break; // It is a constant, expand it. |
| 965 | } |
| 966 | } |
| 967 | |
Steve Naroff | 13b7c5f | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 968 | if (Loc) *Loc = getLocStart(); |
| 969 | return false; |
| 970 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 971 | case DeclRefExprClass: |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 972 | case QualifiedDeclRefExprClass: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 973 | if (const EnumConstantDecl *D = |
| 974 | dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) { |
| 975 | Result = D->getInitVal(); |
| 976 | break; |
| 977 | } |
Sebastian Redl | 4a4251b | 2009-02-07 13:06:23 +0000 | [diff] [blame] | 978 | if (Ctx.getLangOptions().CPlusPlus && |
| 979 | getType().getCVRQualifiers() == QualType::Const) { |
| 980 | // C++ 7.1.5.1p2 |
| 981 | // A variable of non-volatile const-qualified integral or enumeration |
| 982 | // type initialized by an ICE can be used in ICEs. |
| 983 | if (const VarDecl *Dcl = |
| 984 | dyn_cast<VarDecl>(cast<DeclRefExpr>(this)->getDecl())) { |
| 985 | if (const Expr *Init = Dcl->getInit()) |
| 986 | return Init->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); |
| 987 | } |
| 988 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 989 | if (Loc) *Loc = getLocStart(); |
| 990 | return false; |
| 991 | case UnaryOperatorClass: { |
| 992 | const UnaryOperator *Exp = cast<UnaryOperator>(this); |
| 993 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 994 | // Get the operand value. If this is offsetof, do not evalute the |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 995 | // operand. This affects C99 6.6p3. |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 996 | if (!Exp->isOffsetOfOp() && !Exp->getSubExpr()-> |
| 997 | isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 998 | return false; |
| 999 | |
| 1000 | switch (Exp->getOpcode()) { |
| 1001 | // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. |
| 1002 | // See C99 6.6p3. |
| 1003 | default: |
| 1004 | if (Loc) *Loc = Exp->getOperatorLoc(); |
| 1005 | return false; |
| 1006 | case UnaryOperator::Extension: |
Chris Lattner | 76e773a | 2007-07-18 18:38:36 +0000 | [diff] [blame] | 1007 | return true; // FIXME: this is wrong. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1008 | case UnaryOperator::LNot: { |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1009 | Result = Ctx.MakeIntValue(Result == 0, getType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1010 | break; |
| 1011 | } |
| 1012 | case UnaryOperator::Plus: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1013 | break; |
| 1014 | case UnaryOperator::Minus: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1015 | Result = -Result; |
| 1016 | break; |
| 1017 | case UnaryOperator::Not: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1018 | Result = ~Result; |
| 1019 | break; |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1020 | case UnaryOperator::OffsetOf: |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1021 | Result = Ctx.MakeIntValue(Exp->evaluateOffsetOf(Ctx), getType()); |
| 1022 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1023 | } |
| 1024 | break; |
| 1025 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1026 | case SizeOfAlignOfExprClass: { |
| 1027 | const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(this); |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1028 | QualType ArgTy = Exp->getTypeOfArgument(); |
Eli Friedman | dcdafb6 | 2009-02-22 02:56:25 +0000 | [diff] [blame] | 1029 | |
| 1030 | // alignof is always an ICE; sizeof is an ICE if and only if |
| 1031 | // the operand isn't a VLA |
| 1032 | if (Exp->isSizeOf() && ArgTy->isVariableArrayType()) { |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 1033 | if (Loc) *Loc = Exp->getOperatorLoc(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1034 | return false; |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 1035 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1036 | |
Eli Friedman | dcdafb6 | 2009-02-22 02:56:25 +0000 | [diff] [blame] | 1037 | // Use the Evaluate logic to calculate the value, since the |
| 1038 | // calculation is non-trivial. |
| 1039 | Result = EvaluateAsInt(Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1040 | break; |
| 1041 | } |
| 1042 | case BinaryOperatorClass: { |
| 1043 | const BinaryOperator *Exp = cast<BinaryOperator>(this); |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1044 | llvm::APSInt LHS, RHS; |
| 1045 | |
| 1046 | // Initialize result to have correct signedness and width. |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1047 | Result = Ctx.MakeIntValue(0, getType()); |
Eli Friedman | b11e778 | 2008-11-13 02:13:11 +0000 | [diff] [blame] | 1048 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1049 | // The LHS of a constant expr is always evaluated and needed. |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1050 | if (!Exp->getLHS()->isIntegerConstantExpr(LHS, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1051 | return false; |
| 1052 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1053 | // The short-circuiting &&/|| operators don't necessarily evaluate their |
| 1054 | // RHS. Make sure to pass isEvaluated down correctly. |
| 1055 | if (Exp->isLogicalOp()) { |
| 1056 | bool RHSEval; |
| 1057 | if (Exp->getOpcode() == BinaryOperator::LAnd) |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1058 | RHSEval = LHS != 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1059 | else { |
| 1060 | assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical"); |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1061 | RHSEval = LHS == 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1062 | } |
| 1063 | |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 1064 | if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1065 | isEvaluated & RHSEval)) |
| 1066 | return false; |
| 1067 | } else { |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 1068 | if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1069 | return false; |
| 1070 | } |
| 1071 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1072 | switch (Exp->getOpcode()) { |
| 1073 | default: |
| 1074 | if (Loc) *Loc = getLocStart(); |
| 1075 | return false; |
| 1076 | case BinaryOperator::Mul: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1077 | Result = LHS * RHS; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1078 | break; |
| 1079 | case BinaryOperator::Div: |
| 1080 | if (RHS == 0) { |
| 1081 | if (!isEvaluated) break; |
| 1082 | if (Loc) *Loc = getLocStart(); |
| 1083 | return false; |
| 1084 | } |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1085 | Result = LHS / RHS; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1086 | break; |
| 1087 | case BinaryOperator::Rem: |
| 1088 | if (RHS == 0) { |
| 1089 | if (!isEvaluated) break; |
| 1090 | if (Loc) *Loc = getLocStart(); |
| 1091 | return false; |
| 1092 | } |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1093 | Result = LHS % RHS; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1094 | break; |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1095 | case BinaryOperator::Add: Result = LHS + RHS; break; |
| 1096 | case BinaryOperator::Sub: Result = LHS - RHS; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1097 | case BinaryOperator::Shl: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1098 | Result = LHS << |
| 1099 | static_cast<uint32_t>(RHS.getLimitedValue(LHS.getBitWidth()-1)); |
| 1100 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1101 | case BinaryOperator::Shr: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1102 | Result = LHS >> |
| 1103 | static_cast<uint32_t>(RHS.getLimitedValue(LHS.getBitWidth()-1)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1104 | break; |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1105 | case BinaryOperator::LT: Result = LHS < RHS; break; |
| 1106 | case BinaryOperator::GT: Result = LHS > RHS; break; |
| 1107 | case BinaryOperator::LE: Result = LHS <= RHS; break; |
| 1108 | case BinaryOperator::GE: Result = LHS >= RHS; break; |
| 1109 | case BinaryOperator::EQ: Result = LHS == RHS; break; |
| 1110 | case BinaryOperator::NE: Result = LHS != RHS; break; |
| 1111 | case BinaryOperator::And: Result = LHS & RHS; break; |
| 1112 | case BinaryOperator::Xor: Result = LHS ^ RHS; break; |
| 1113 | case BinaryOperator::Or: Result = LHS | RHS; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1114 | case BinaryOperator::LAnd: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1115 | Result = LHS != 0 && RHS != 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1116 | break; |
| 1117 | case BinaryOperator::LOr: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 1118 | Result = LHS != 0 || RHS != 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1119 | break; |
Eli Friedman | b11e778 | 2008-11-13 02:13:11 +0000 | [diff] [blame] | 1120 | |
| 1121 | case BinaryOperator::Comma: |
| 1122 | // C99 6.6p3: "shall not contain assignment, ..., or comma operators, |
| 1123 | // *except* when they are contained within a subexpression that is not |
| 1124 | // evaluated". Note that Assignment can never happen due to constraints |
| 1125 | // on the LHS subexpr, so we don't need to check it here. |
| 1126 | if (isEvaluated) { |
| 1127 | if (Loc) *Loc = getLocStart(); |
| 1128 | return false; |
| 1129 | } |
| 1130 | |
| 1131 | // The result of the constant expr is the RHS. |
| 1132 | Result = RHS; |
Daniel Dunbar | 2d6744f | 2009-02-18 00:47:45 +0000 | [diff] [blame] | 1133 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1134 | } |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1135 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1136 | assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!"); |
| 1137 | break; |
| 1138 | } |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1139 | case ImplicitCastExprClass: |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 1140 | case CStyleCastExprClass: |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 1141 | case CXXFunctionalCastExprClass: { |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 1142 | const Expr *SubExpr = cast<CastExpr>(this)->getSubExpr(); |
| 1143 | SourceLocation CastLoc = getLocStart(); |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1144 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1145 | // C99 6.6p6: shall only convert arithmetic types to integer types. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1146 | if (!SubExpr->getType()->isArithmeticType() || |
| 1147 | !getType()->isIntegerType()) { |
| 1148 | if (Loc) *Loc = SubExpr->getLocStart(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1149 | return false; |
| 1150 | } |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1151 | |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1152 | uint32_t DestWidth = static_cast<uint32_t>(Ctx.getTypeSize(getType())); |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1153 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1154 | // Handle simple integer->integer casts. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1155 | if (SubExpr->getType()->isIntegerType()) { |
| 1156 | if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1157 | return false; |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1158 | |
| 1159 | // Figure out if this is a truncate, extend or noop cast. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1160 | // If the input is signed, do a sign extend, noop, or truncate. |
Chris Lattner | c0a356b | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 1161 | if (getType()->isBooleanType()) { |
| 1162 | // Conversion to bool compares against zero. |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1163 | Result = Ctx.MakeIntValue(Result != 0, getType()); |
| 1164 | } else if (SubExpr->getType()->isSignedIntegerType()) { |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1165 | Result.sextOrTrunc(DestWidth); |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1166 | Result.setIsUnsigned(getType()->isUnsignedIntegerType()); |
| 1167 | } else { // If the input is unsigned, do a zero extend, noop, |
| 1168 | // or truncate. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 1169 | Result.zextOrTrunc(DestWidth); |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1170 | Result.setIsUnsigned(getType()->isUnsignedIntegerType()); |
| 1171 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1172 | break; |
| 1173 | } |
| 1174 | |
| 1175 | // Allow floating constants that are the immediate operands of casts or that |
| 1176 | // are parenthesized. |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1177 | const Expr *Operand = SubExpr->IgnoreParens(); |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1178 | |
| 1179 | // If this isn't a floating literal, we can't handle it. |
| 1180 | const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand); |
| 1181 | if (!FL) { |
| 1182 | if (Loc) *Loc = Operand->getLocStart(); |
| 1183 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1184 | } |
Chris Lattner | c0a356b | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 1185 | |
| 1186 | // If the destination is boolean, compare against zero. |
| 1187 | if (getType()->isBooleanType()) { |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1188 | Result = Ctx.MakeIntValue(!FL->getValue().isZero(), getType()); |
Chris Lattner | c0a356b | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 1189 | break; |
| 1190 | } |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1191 | |
| 1192 | // Determine whether we are converting to unsigned or signed. |
| 1193 | bool DestSigned = getType()->isSignedIntegerType(); |
Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 1194 | |
| 1195 | // TODO: Warn on overflow, but probably not here: isIntegerConstantExpr can |
| 1196 | // be called multiple times per AST. |
Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 1197 | uint64_t Space[4]; |
| 1198 | bool ignored; |
Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 1199 | (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned, |
Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 1200 | llvm::APFloat::rmTowardZero, |
| 1201 | &ignored); |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1202 | Result = llvm::APInt(DestWidth, 4, Space); |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1203 | Result.setIsUnsigned(getType()->isUnsignedIntegerType()); |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1204 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1205 | } |
| 1206 | case ConditionalOperatorClass: { |
| 1207 | const ConditionalOperator *Exp = cast<ConditionalOperator>(this); |
| 1208 | |
Chris Lattner | 28daa53 | 2008-12-12 06:55:44 +0000 | [diff] [blame] | 1209 | const Expr *Cond = Exp->getCond(); |
| 1210 | |
| 1211 | if (!Cond->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1212 | return false; |
| 1213 | |
| 1214 | const Expr *TrueExp = Exp->getLHS(); |
| 1215 | const Expr *FalseExp = Exp->getRHS(); |
| 1216 | if (Result == 0) std::swap(TrueExp, FalseExp); |
| 1217 | |
Chris Lattner | 28daa53 | 2008-12-12 06:55:44 +0000 | [diff] [blame] | 1218 | // If the condition (ignoring parens) is a __builtin_constant_p call, |
| 1219 | // then only the true side is actually considered in an integer constant |
Chris Lattner | 42b83dd | 2008-12-12 18:00:51 +0000 | [diff] [blame] | 1220 | // expression, and it is fully evaluated. This is an important GNU |
| 1221 | // extension. See GCC PR38377 for discussion. |
Chris Lattner | 28daa53 | 2008-12-12 06:55:44 +0000 | [diff] [blame] | 1222 | if (const CallExpr *CallCE = dyn_cast<CallExpr>(Cond->IgnoreParenCasts())) |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 1223 | if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) { |
Chris Lattner | 42b83dd | 2008-12-12 18:00:51 +0000 | [diff] [blame] | 1224 | EvalResult EVResult; |
| 1225 | if (!Evaluate(EVResult, Ctx) || EVResult.HasSideEffects) |
| 1226 | return false; |
| 1227 | assert(EVResult.Val.isInt() && "FP conditional expr not expected"); |
| 1228 | Result = EVResult.Val.getInt(); |
| 1229 | if (Loc) *Loc = EVResult.DiagLoc; |
| 1230 | return true; |
| 1231 | } |
Chris Lattner | 28daa53 | 2008-12-12 06:55:44 +0000 | [diff] [blame] | 1232 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1233 | // Evaluate the false one first, discard the result. |
Daniel Dunbar | 2d6744f | 2009-02-18 00:47:45 +0000 | [diff] [blame] | 1234 | llvm::APSInt Tmp; |
| 1235 | if (FalseExp && !FalseExp->isIntegerConstantExpr(Tmp, Ctx, Loc, false)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1236 | return false; |
Daniel Dunbar | 2d6744f | 2009-02-18 00:47:45 +0000 | [diff] [blame] | 1237 | // Evalute the true one, capture the result. Note that if TrueExp |
| 1238 | // is False then this is an instant of the gcc missing LHS |
| 1239 | // extension, and we will just reuse Result. |
Anders Carlsson | 3907323 | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 1240 | if (TrueExp && |
| 1241 | !TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1242 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1243 | break; |
| 1244 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1245 | case CXXDefaultArgExprClass: |
| 1246 | return cast<CXXDefaultArgExpr>(this) |
| 1247 | ->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 1248 | |
| 1249 | case UnaryTypeTraitExprClass: |
Daniel Dunbar | a135975 | 2009-02-18 00:32:53 +0000 | [diff] [blame] | 1250 | Result = Ctx.MakeIntValue(cast<UnaryTypeTraitExpr>(this)->EvaluateTrait(), |
| 1251 | getType()); |
| 1252 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1253 | } |
| 1254 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1255 | return true; |
| 1256 | } |
| 1257 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1258 | /// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an |
| 1259 | /// integer constant expression with the value zero, or if this is one that is |
| 1260 | /// cast to void*. |
Anders Carlsson | efa9b38 | 2008-12-01 02:13:57 +0000 | [diff] [blame] | 1261 | bool Expr::isNullPointerConstant(ASTContext &Ctx) const |
| 1262 | { |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 1263 | // Strip off a cast to void*, if it exists. Except in C++. |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 1264 | if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) { |
Sebastian Redl | 6215dee | 2008-11-04 11:45:54 +0000 | [diff] [blame] | 1265 | if (!Ctx.getLangOptions().CPlusPlus) { |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 1266 | // Check that it is a cast to void*. |
| 1267 | if (const PointerType *PT = CE->getType()->getAsPointerType()) { |
| 1268 | QualType Pointee = PT->getPointeeType(); |
| 1269 | if (Pointee.getCVRQualifiers() == 0 && |
| 1270 | Pointee->isVoidType() && // to void* |
| 1271 | CE->getSubExpr()->getType()->isIntegerType()) // from int. |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1272 | return CE->getSubExpr()->isNullPointerConstant(Ctx); |
Sebastian Redl | 0777972 | 2008-10-31 14:43:28 +0000 | [diff] [blame] | 1273 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1274 | } |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1275 | } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) { |
| 1276 | // Ignore the ImplicitCastExpr type entirely. |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1277 | return ICE->getSubExpr()->isNullPointerConstant(Ctx); |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1278 | } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) { |
| 1279 | // Accept ((void*)0) as a null pointer constant, as many other |
| 1280 | // implementations do. |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1281 | return PE->getSubExpr()->isNullPointerConstant(Ctx); |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 1282 | } else if (const CXXDefaultArgExpr *DefaultArg |
| 1283 | = dyn_cast<CXXDefaultArgExpr>(this)) { |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1284 | // See through default argument expressions |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1285 | return DefaultArg->getExpr()->isNullPointerConstant(Ctx); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 1286 | } else if (isa<GNUNullExpr>(this)) { |
| 1287 | // The GNU __null extension is always a null pointer constant. |
| 1288 | return true; |
Steve Naroff | aaffbf7 | 2008-01-14 02:53:34 +0000 | [diff] [blame] | 1289 | } |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 1290 | |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1291 | // This expression must be an integer type. |
| 1292 | if (!getType()->isIntegerType()) |
| 1293 | return false; |
| 1294 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1295 | // If we have an integer constant expression, we need to *evaluate* it and |
| 1296 | // test for the value 0. |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1297 | // FIXME: We should probably return false if we're compiling in strict mode |
| 1298 | // and Diag is not null (this indicates that the value was foldable but not |
| 1299 | // an ICE. |
| 1300 | EvalResult Result; |
Anders Carlsson | efa9b38 | 2008-12-01 02:13:57 +0000 | [diff] [blame] | 1301 | return Evaluate(Result, Ctx) && !Result.HasSideEffects && |
Anders Carlsson | d265277 | 2008-12-01 06:28:23 +0000 | [diff] [blame] | 1302 | Result.Val.isInt() && Result.Val.getInt() == 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1303 | } |
Steve Naroff | 31a4584 | 2007-07-28 23:10:27 +0000 | [diff] [blame] | 1304 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 1305 | /// isBitField - Return true if this expression is a bit-field. |
| 1306 | bool Expr::isBitField() { |
| 1307 | Expr *E = this->IgnoreParenCasts(); |
| 1308 | if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E)) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1309 | if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl())) |
| 1310 | return Field->isBitField(); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 1311 | return false; |
| 1312 | } |
| 1313 | |
Chris Lattner | 2140e90 | 2009-02-16 22:14:05 +0000 | [diff] [blame] | 1314 | /// isArrow - Return true if the base expression is a pointer to vector, |
| 1315 | /// return false if the base expression is a vector. |
| 1316 | bool ExtVectorElementExpr::isArrow() const { |
| 1317 | return getBase()->getType()->isPointerType(); |
| 1318 | } |
| 1319 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1320 | unsigned ExtVectorElementExpr::getNumElements() const { |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1321 | if (const VectorType *VT = getType()->getAsVectorType()) |
| 1322 | return VT->getNumElements(); |
| 1323 | return 1; |
Chris Lattner | 4d0ac88 | 2007-08-03 16:00:20 +0000 | [diff] [blame] | 1324 | } |
| 1325 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1326 | /// containsDuplicateElements - Return true if any element access is repeated. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1327 | bool ExtVectorElementExpr::containsDuplicateElements() const { |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 1328 | const char *compStr = Accessor.getName(); |
Chris Lattner | 7e3e9b1 | 2008-11-19 07:55:04 +0000 | [diff] [blame] | 1329 | unsigned length = Accessor.getLength(); |
Nate Begeman | 190d6a2 | 2009-01-18 02:01:21 +0000 | [diff] [blame] | 1330 | |
| 1331 | // Halving swizzles do not contain duplicate elements. |
| 1332 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
| 1333 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) |
| 1334 | return false; |
| 1335 | |
| 1336 | // Advance past s-char prefix on hex swizzles. |
| 1337 | if (*compStr == 's') { |
| 1338 | compStr++; |
| 1339 | length--; |
| 1340 | } |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 1341 | |
Chris Lattner | 7e3e9b1 | 2008-11-19 07:55:04 +0000 | [diff] [blame] | 1342 | for (unsigned i = 0; i != length-1; i++) { |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 1343 | const char *s = compStr+i; |
| 1344 | for (const char c = *s++; *s; s++) |
| 1345 | if (c == *s) |
| 1346 | return true; |
| 1347 | } |
| 1348 | return false; |
| 1349 | } |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1350 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1351 | /// getEncodedElementAccess - We encode the fields as a llvm ConstantArray. |
Nate Begeman | 3b8d116 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 1352 | void ExtVectorElementExpr::getEncodedElementAccess( |
| 1353 | llvm::SmallVectorImpl<unsigned> &Elts) const { |
Chris Lattner | 7e3e9b1 | 2008-11-19 07:55:04 +0000 | [diff] [blame] | 1354 | const char *compStr = Accessor.getName(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1355 | if (*compStr == 's') |
| 1356 | compStr++; |
| 1357 | |
| 1358 | bool isHi = !strcmp(compStr, "hi"); |
| 1359 | bool isLo = !strcmp(compStr, "lo"); |
| 1360 | bool isEven = !strcmp(compStr, "even"); |
| 1361 | bool isOdd = !strcmp(compStr, "odd"); |
| 1362 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1363 | for (unsigned i = 0, e = getNumElements(); i != e; ++i) { |
| 1364 | uint64_t Index; |
| 1365 | |
| 1366 | if (isHi) |
| 1367 | Index = e + i; |
| 1368 | else if (isLo) |
| 1369 | Index = i; |
| 1370 | else if (isEven) |
| 1371 | Index = 2 * i; |
| 1372 | else if (isOdd) |
| 1373 | Index = 2 * i + 1; |
| 1374 | else |
| 1375 | Index = ExtVectorType::getAccessorIdx(compStr[i]); |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1376 | |
Nate Begeman | 3b8d116 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 1377 | Elts.push_back(Index); |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1378 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1379 | } |
| 1380 | |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1381 | // constructor for instance messages. |
Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 1382 | ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo, |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1383 | QualType retType, ObjCMethodDecl *mproto, |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1384 | SourceLocation LBrac, SourceLocation RBrac, |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1385 | Expr **ArgExprs, unsigned nargs) |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1386 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1387 | MethodProto(mproto) { |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1388 | NumArgs = nargs; |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1389 | SubExprs = new Stmt*[NumArgs+1]; |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1390 | SubExprs[RECEIVER] = receiver; |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1391 | if (NumArgs) { |
| 1392 | for (unsigned i = 0; i != NumArgs; ++i) |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1393 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1394 | } |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1395 | LBracloc = LBrac; |
| 1396 | RBracloc = RBrac; |
| 1397 | } |
| 1398 | |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1399 | // constructor for class messages. |
| 1400 | // FIXME: clsName should be typed to ObjCInterfaceType |
Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 1401 | ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo, |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1402 | QualType retType, ObjCMethodDecl *mproto, |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1403 | SourceLocation LBrac, SourceLocation RBrac, |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1404 | Expr **ArgExprs, unsigned nargs) |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1405 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1406 | MethodProto(mproto) { |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1407 | NumArgs = nargs; |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1408 | SubExprs = new Stmt*[NumArgs+1]; |
Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 1409 | SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown); |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1410 | if (NumArgs) { |
| 1411 | for (unsigned i = 0; i != NumArgs; ++i) |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1412 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1413 | } |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1414 | LBracloc = LBrac; |
| 1415 | RBracloc = RBrac; |
| 1416 | } |
| 1417 | |
Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 1418 | // constructor for class messages. |
| 1419 | ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo, |
| 1420 | QualType retType, ObjCMethodDecl *mproto, |
| 1421 | SourceLocation LBrac, SourceLocation RBrac, |
| 1422 | Expr **ArgExprs, unsigned nargs) |
| 1423 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
| 1424 | MethodProto(mproto) { |
| 1425 | NumArgs = nargs; |
| 1426 | SubExprs = new Stmt*[NumArgs+1]; |
| 1427 | SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown); |
| 1428 | if (NumArgs) { |
| 1429 | for (unsigned i = 0; i != NumArgs; ++i) |
| 1430 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1431 | } |
| 1432 | LBracloc = LBrac; |
| 1433 | RBracloc = RBrac; |
| 1434 | } |
| 1435 | |
| 1436 | ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const { |
| 1437 | uintptr_t x = (uintptr_t) SubExprs[RECEIVER]; |
| 1438 | switch (x & Flags) { |
| 1439 | default: |
| 1440 | assert(false && "Invalid ObjCMessageExpr."); |
| 1441 | case IsInstMeth: |
| 1442 | return ClassInfo(0, 0); |
| 1443 | case IsClsMethDeclUnknown: |
| 1444 | return ClassInfo(0, (IdentifierInfo*) (x & ~Flags)); |
| 1445 | case IsClsMethDeclKnown: { |
| 1446 | ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags); |
| 1447 | return ClassInfo(D, D->getIdentifier()); |
| 1448 | } |
| 1449 | } |
| 1450 | } |
| 1451 | |
Chris Lattner | 27437ca | 2007-10-25 00:29:32 +0000 | [diff] [blame] | 1452 | bool ChooseExpr::isConditionTrue(ASTContext &C) const { |
Daniel Dunbar | 32442bb | 2008-08-13 23:47:13 +0000 | [diff] [blame] | 1453 | return getCond()->getIntegerConstantExprValue(C) != 0; |
Chris Lattner | 27437ca | 2007-10-25 00:29:32 +0000 | [diff] [blame] | 1454 | } |
| 1455 | |
Chris Lattner | 670a62c | 2008-12-12 05:35:08 +0000 | [diff] [blame] | 1456 | static int64_t evaluateOffsetOf(ASTContext& C, const Expr *E) { |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1457 | if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { |
| 1458 | QualType Ty = ME->getBase()->getType(); |
| 1459 | |
| 1460 | RecordDecl *RD = Ty->getAsRecordType()->getDecl(); |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1461 | const ASTRecordLayout &RL = C.getASTRecordLayout(RD); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1462 | if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) { |
| 1463 | // FIXME: This is linear time. And the fact that we're indexing |
| 1464 | // into the layout by position in the record means that we're |
| 1465 | // either stuck numbering the fields in the AST or we have to keep |
| 1466 | // the linear search (yuck and yuck). |
| 1467 | unsigned i = 0; |
| 1468 | for (RecordDecl::field_iterator Field = RD->field_begin(), |
| 1469 | FieldEnd = RD->field_end(); |
| 1470 | Field != FieldEnd; (void)++Field, ++i) { |
| 1471 | if (*Field == FD) |
| 1472 | break; |
| 1473 | } |
| 1474 | |
| 1475 | return RL.getFieldOffset(i) + evaluateOffsetOf(C, ME->getBase()); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1476 | } |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1477 | } else if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) { |
| 1478 | const Expr *Base = ASE->getBase(); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1479 | |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1480 | int64_t size = C.getTypeSize(ASE->getType()); |
Daniel Dunbar | 32442bb | 2008-08-13 23:47:13 +0000 | [diff] [blame] | 1481 | size *= ASE->getIdx()->getIntegerConstantExprValue(C).getSExtValue(); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1482 | |
| 1483 | return size + evaluateOffsetOf(C, Base); |
| 1484 | } else if (isa<CompoundLiteralExpr>(E)) |
| 1485 | return 0; |
| 1486 | |
| 1487 | assert(0 && "Unknown offsetof subexpression!"); |
| 1488 | return 0; |
| 1489 | } |
| 1490 | |
| 1491 | int64_t UnaryOperator::evaluateOffsetOf(ASTContext& C) const |
| 1492 | { |
| 1493 | assert(Opc == OffsetOf && "Unary operator not offsetof!"); |
| 1494 | |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1495 | unsigned CharSize = C.Target.getCharWidth(); |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1496 | return ::evaluateOffsetOf(C, cast<Expr>(Val)) / CharSize; |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1497 | } |
| 1498 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1499 | void SizeOfAlignOfExpr::Destroy(ASTContext& C) { |
| 1500 | // Override default behavior of traversing children. If this has a type |
| 1501 | // operand and the type is a variable-length array, the child iteration |
| 1502 | // will iterate over the size expression. However, this expression belongs |
| 1503 | // to the type, not to this, so we don't want to delete it. |
| 1504 | // We still want to delete this expression. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 1505 | if (isArgumentType()) { |
| 1506 | this->~SizeOfAlignOfExpr(); |
| 1507 | C.Deallocate(this); |
| 1508 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1509 | else |
| 1510 | Expr::Destroy(C); |
Daniel Dunbar | 9048891 | 2008-08-28 18:02:04 +0000 | [diff] [blame] | 1511 | } |
| 1512 | |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1513 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1514 | // DesignatedInitExpr |
| 1515 | //===----------------------------------------------------------------------===// |
| 1516 | |
| 1517 | IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() { |
| 1518 | assert(Kind == FieldDesignator && "Only valid on a field designator"); |
| 1519 | if (Field.NameOrField & 0x01) |
| 1520 | return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01); |
| 1521 | else |
| 1522 | return getField()->getIdentifier(); |
| 1523 | } |
| 1524 | |
| 1525 | DesignatedInitExpr * |
| 1526 | DesignatedInitExpr::Create(ASTContext &C, Designator *Designators, |
| 1527 | unsigned NumDesignators, |
| 1528 | Expr **IndexExprs, unsigned NumIndexExprs, |
| 1529 | SourceLocation ColonOrEqualLoc, |
| 1530 | bool UsesColonSyntax, Expr *Init) { |
Steve Naroff | c0ac492 | 2009-01-27 23:20:32 +0000 | [diff] [blame] | 1531 | void *Mem = C.Allocate(sizeof(DesignatedInitExpr) + |
| 1532 | sizeof(Designator) * NumDesignators + |
| 1533 | sizeof(Stmt *) * (NumIndexExprs + 1), 8); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1534 | DesignatedInitExpr *DIE |
| 1535 | = new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators, |
| 1536 | ColonOrEqualLoc, UsesColonSyntax, |
| 1537 | NumIndexExprs + 1); |
| 1538 | |
| 1539 | // Fill in the designators |
| 1540 | unsigned ExpectedNumSubExprs = 0; |
| 1541 | designators_iterator Desig = DIE->designators_begin(); |
| 1542 | for (unsigned Idx = 0; Idx < NumDesignators; ++Idx, ++Desig) { |
| 1543 | new (static_cast<void*>(Desig)) Designator(Designators[Idx]); |
| 1544 | if (Designators[Idx].isArrayDesignator()) |
| 1545 | ++ExpectedNumSubExprs; |
| 1546 | else if (Designators[Idx].isArrayRangeDesignator()) |
| 1547 | ExpectedNumSubExprs += 2; |
| 1548 | } |
| 1549 | assert(ExpectedNumSubExprs == NumIndexExprs && "Wrong number of indices!"); |
| 1550 | |
| 1551 | // Fill in the subexpressions, including the initializer expression. |
| 1552 | child_iterator Child = DIE->child_begin(); |
| 1553 | *Child++ = Init; |
| 1554 | for (unsigned Idx = 0; Idx < NumIndexExprs; ++Idx, ++Child) |
| 1555 | *Child = IndexExprs[Idx]; |
| 1556 | |
| 1557 | return DIE; |
| 1558 | } |
| 1559 | |
| 1560 | SourceRange DesignatedInitExpr::getSourceRange() const { |
| 1561 | SourceLocation StartLoc; |
Chris Lattner | d603eaa | 2009-02-16 22:33:34 +0000 | [diff] [blame] | 1562 | Designator &First = |
| 1563 | *const_cast<DesignatedInitExpr*>(this)->designators_begin(); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1564 | if (First.isFieldDesignator()) { |
| 1565 | if (UsesColonSyntax) |
| 1566 | StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc); |
| 1567 | else |
| 1568 | StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc); |
| 1569 | } else |
Chris Lattner | d603eaa | 2009-02-16 22:33:34 +0000 | [diff] [blame] | 1570 | StartLoc = |
| 1571 | SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1572 | return SourceRange(StartLoc, getInit()->getSourceRange().getEnd()); |
| 1573 | } |
| 1574 | |
Chris Lattner | d603eaa | 2009-02-16 22:33:34 +0000 | [diff] [blame] | 1575 | DesignatedInitExpr::designators_iterator |
| 1576 | DesignatedInitExpr::designators_begin() { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1577 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 1578 | Ptr += sizeof(DesignatedInitExpr); |
| 1579 | return static_cast<Designator*>(static_cast<void*>(Ptr)); |
| 1580 | } |
| 1581 | |
| 1582 | DesignatedInitExpr::designators_iterator DesignatedInitExpr::designators_end() { |
| 1583 | return designators_begin() + NumDesignators; |
| 1584 | } |
| 1585 | |
| 1586 | Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) { |
| 1587 | assert(D.Kind == Designator::ArrayDesignator && "Requires array designator"); |
| 1588 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 1589 | Ptr += sizeof(DesignatedInitExpr); |
| 1590 | Ptr += sizeof(Designator) * NumDesignators; |
| 1591 | Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 1592 | return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1)); |
| 1593 | } |
| 1594 | |
| 1595 | Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) { |
| 1596 | assert(D.Kind == Designator::ArrayRangeDesignator && |
| 1597 | "Requires array range designator"); |
| 1598 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 1599 | Ptr += sizeof(DesignatedInitExpr); |
| 1600 | Ptr += sizeof(Designator) * NumDesignators; |
| 1601 | Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 1602 | return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1)); |
| 1603 | } |
| 1604 | |
| 1605 | Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) { |
| 1606 | assert(D.Kind == Designator::ArrayRangeDesignator && |
| 1607 | "Requires array range designator"); |
| 1608 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 1609 | Ptr += sizeof(DesignatedInitExpr); |
| 1610 | Ptr += sizeof(Designator) * NumDesignators; |
| 1611 | Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 1612 | return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2)); |
| 1613 | } |
| 1614 | |
| 1615 | //===----------------------------------------------------------------------===// |
Ted Kremenek | ce2fc3a | 2008-10-27 18:40:21 +0000 | [diff] [blame] | 1616 | // ExprIterator. |
| 1617 | //===----------------------------------------------------------------------===// |
| 1618 | |
| 1619 | Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); } |
| 1620 | Expr* ExprIterator::operator*() const { return cast<Expr>(*I); } |
| 1621 | Expr* ExprIterator::operator->() const { return cast<Expr>(*I); } |
| 1622 | const Expr* ConstExprIterator::operator[](size_t idx) const { |
| 1623 | return cast<Expr>(I[idx]); |
| 1624 | } |
| 1625 | const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); } |
| 1626 | const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); } |
| 1627 | |
| 1628 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1629 | // Child Iterators for iterating over subexpressions/substatements |
| 1630 | //===----------------------------------------------------------------------===// |
| 1631 | |
| 1632 | // DeclRefExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1633 | Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); } |
| 1634 | Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1635 | |
Steve Naroff | 7779db4 | 2007-11-12 14:29:37 +0000 | [diff] [blame] | 1636 | // ObjCIvarRefExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1637 | Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; } |
| 1638 | Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; } |
Steve Naroff | 7779db4 | 2007-11-12 14:29:37 +0000 | [diff] [blame] | 1639 | |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 1640 | // ObjCPropertyRefExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1641 | Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; } |
| 1642 | Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; } |
Steve Naroff | ae78407 | 2008-05-30 00:40:33 +0000 | [diff] [blame] | 1643 | |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 1644 | // ObjCKVCRefExpr |
| 1645 | Stmt::child_iterator ObjCKVCRefExpr::child_begin() { return &Base; } |
| 1646 | Stmt::child_iterator ObjCKVCRefExpr::child_end() { return &Base+1; } |
| 1647 | |
Douglas Gregor | cd9b46e | 2008-11-04 14:56:14 +0000 | [diff] [blame] | 1648 | // ObjCSuperExpr |
| 1649 | Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); } |
| 1650 | Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); } |
| 1651 | |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1652 | // PredefinedExpr |
| 1653 | Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); } |
| 1654 | Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1655 | |
| 1656 | // IntegerLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1657 | Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); } |
| 1658 | Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1659 | |
| 1660 | // CharacterLiteral |
Chris Lattner | d603eaa | 2009-02-16 22:33:34 +0000 | [diff] [blame] | 1661 | Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();} |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1662 | Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1663 | |
| 1664 | // FloatingLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1665 | Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); } |
| 1666 | Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1667 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1668 | // ImaginaryLiteral |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1669 | Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; } |
| 1670 | Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; } |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1671 | |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1672 | // StringLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1673 | Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); } |
| 1674 | Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1675 | |
| 1676 | // ParenExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1677 | Stmt::child_iterator ParenExpr::child_begin() { return &Val; } |
| 1678 | Stmt::child_iterator ParenExpr::child_end() { return &Val+1; } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1679 | |
| 1680 | // UnaryOperator |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1681 | Stmt::child_iterator UnaryOperator::child_begin() { return &Val; } |
| 1682 | Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1683 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1684 | // SizeOfAlignOfExpr |
| 1685 | Stmt::child_iterator SizeOfAlignOfExpr::child_begin() { |
| 1686 | // If this is of a type and the type is a VLA type (and not a typedef), the |
| 1687 | // size expression of the VLA needs to be treated as an executable expression. |
| 1688 | // Why isn't this weirdness documented better in StmtIterator? |
| 1689 | if (isArgumentType()) { |
| 1690 | if (VariableArrayType* T = dyn_cast<VariableArrayType>( |
| 1691 | getArgumentType().getTypePtr())) |
| 1692 | return child_iterator(T); |
| 1693 | return child_iterator(); |
| 1694 | } |
Sebastian Redl | d457589 | 2008-12-03 23:17:54 +0000 | [diff] [blame] | 1695 | return child_iterator(&Argument.Ex); |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1696 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1697 | Stmt::child_iterator SizeOfAlignOfExpr::child_end() { |
| 1698 | if (isArgumentType()) |
| 1699 | return child_iterator(); |
Sebastian Redl | d457589 | 2008-12-03 23:17:54 +0000 | [diff] [blame] | 1700 | return child_iterator(&Argument.Ex + 1); |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1701 | } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1702 | |
| 1703 | // ArraySubscriptExpr |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1704 | Stmt::child_iterator ArraySubscriptExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1705 | return &SubExprs[0]; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1706 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1707 | Stmt::child_iterator ArraySubscriptExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1708 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1709 | } |
| 1710 | |
| 1711 | // CallExpr |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1712 | Stmt::child_iterator CallExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1713 | return &SubExprs[0]; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1714 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1715 | Stmt::child_iterator CallExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1716 | return &SubExprs[0]+NumArgs+ARGS_START; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1717 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1718 | |
| 1719 | // MemberExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1720 | Stmt::child_iterator MemberExpr::child_begin() { return &Base; } |
| 1721 | Stmt::child_iterator MemberExpr::child_end() { return &Base+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1722 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1723 | // ExtVectorElementExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1724 | Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; } |
| 1725 | Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1726 | |
| 1727 | // CompoundLiteralExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1728 | Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; } |
| 1729 | Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1730 | |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1731 | // CastExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1732 | Stmt::child_iterator CastExpr::child_begin() { return &Op; } |
| 1733 | Stmt::child_iterator CastExpr::child_end() { return &Op+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1734 | |
| 1735 | // BinaryOperator |
| 1736 | Stmt::child_iterator BinaryOperator::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1737 | return &SubExprs[0]; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1738 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1739 | Stmt::child_iterator BinaryOperator::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1740 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1741 | } |
| 1742 | |
| 1743 | // ConditionalOperator |
| 1744 | Stmt::child_iterator ConditionalOperator::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1745 | return &SubExprs[0]; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1746 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1747 | Stmt::child_iterator ConditionalOperator::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1748 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1749 | } |
| 1750 | |
| 1751 | // AddrLabelExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1752 | Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); } |
| 1753 | Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1754 | |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1755 | // StmtExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1756 | Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; } |
| 1757 | Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1758 | |
| 1759 | // TypesCompatibleExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1760 | Stmt::child_iterator TypesCompatibleExpr::child_begin() { |
| 1761 | return child_iterator(); |
| 1762 | } |
| 1763 | |
| 1764 | Stmt::child_iterator TypesCompatibleExpr::child_end() { |
| 1765 | return child_iterator(); |
| 1766 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1767 | |
| 1768 | // ChooseExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1769 | Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; } |
| 1770 | Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1771 | |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 1772 | // GNUNullExpr |
| 1773 | Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); } |
| 1774 | Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); } |
| 1775 | |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1776 | // ShuffleVectorExpr |
| 1777 | Stmt::child_iterator ShuffleVectorExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1778 | return &SubExprs[0]; |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1779 | } |
| 1780 | Stmt::child_iterator ShuffleVectorExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1781 | return &SubExprs[0]+NumExprs; |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1782 | } |
| 1783 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1784 | // VAArgExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1785 | Stmt::child_iterator VAArgExpr::child_begin() { return &Val; } |
| 1786 | Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; } |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1787 | |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1788 | // InitListExpr |
| 1789 | Stmt::child_iterator InitListExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1790 | return InitExprs.size() ? &InitExprs[0] : 0; |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1791 | } |
| 1792 | Stmt::child_iterator InitListExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1793 | return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0; |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1794 | } |
| 1795 | |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 1796 | // DesignatedInitExpr |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1797 | Stmt::child_iterator DesignatedInitExpr::child_begin() { |
| 1798 | char* Ptr = static_cast<char*>(static_cast<void *>(this)); |
| 1799 | Ptr += sizeof(DesignatedInitExpr); |
| 1800 | Ptr += sizeof(Designator) * NumDesignators; |
| 1801 | return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr)); |
| 1802 | } |
| 1803 | Stmt::child_iterator DesignatedInitExpr::child_end() { |
| 1804 | return child_iterator(&*child_begin() + NumSubExprs); |
| 1805 | } |
| 1806 | |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 1807 | // ImplicitValueInitExpr |
| 1808 | Stmt::child_iterator ImplicitValueInitExpr::child_begin() { |
| 1809 | return child_iterator(); |
| 1810 | } |
| 1811 | |
| 1812 | Stmt::child_iterator ImplicitValueInitExpr::child_end() { |
| 1813 | return child_iterator(); |
| 1814 | } |
| 1815 | |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1816 | // ObjCStringLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1817 | Stmt::child_iterator ObjCStringLiteral::child_begin() { |
Chris Lattner | c6c16af | 2009-02-18 06:53:08 +0000 | [diff] [blame] | 1818 | return &String; |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1819 | } |
| 1820 | Stmt::child_iterator ObjCStringLiteral::child_end() { |
Chris Lattner | c6c16af | 2009-02-18 06:53:08 +0000 | [diff] [blame] | 1821 | return &String+1; |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1822 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1823 | |
| 1824 | // ObjCEncodeExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1825 | Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); } |
| 1826 | Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1827 | |
Fariborz Jahanian | b62f681 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1828 | // ObjCSelectorExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1829 | Stmt::child_iterator ObjCSelectorExpr::child_begin() { |
| 1830 | return child_iterator(); |
| 1831 | } |
| 1832 | Stmt::child_iterator ObjCSelectorExpr::child_end() { |
| 1833 | return child_iterator(); |
| 1834 | } |
Fariborz Jahanian | b62f681 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1835 | |
Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1836 | // ObjCProtocolExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1837 | Stmt::child_iterator ObjCProtocolExpr::child_begin() { |
| 1838 | return child_iterator(); |
| 1839 | } |
| 1840 | Stmt::child_iterator ObjCProtocolExpr::child_end() { |
| 1841 | return child_iterator(); |
| 1842 | } |
Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1843 | |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1844 | // ObjCMessageExpr |
Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1845 | Stmt::child_iterator ObjCMessageExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1846 | return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START; |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1847 | } |
| 1848 | Stmt::child_iterator ObjCMessageExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1849 | return &SubExprs[0]+ARGS_START+getNumArgs(); |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1850 | } |
| 1851 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1852 | // Blocks |
Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 1853 | Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); } |
| 1854 | Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); } |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1855 | |
Ted Kremenek | 9da13f9 | 2008-09-26 23:24:14 +0000 | [diff] [blame] | 1856 | Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();} |
| 1857 | Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); } |