Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1 | //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Chris Lattner and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for expressions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
| 15 | #include "clang/AST/ASTContext.h" |
| 16 | #include "clang/AST/Decl.h" |
Steve Naroff | fa465d1 | 2007-10-02 20:01:56 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclObjC.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 18 | #include "clang/AST/Expr.h" |
Steve Naroff | c39ca26 | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 19 | #include "clang/Parse/DeclSpec.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 20 | #include "clang/Lex/Preprocessor.h" |
| 21 | #include "clang/Lex/LiteralSupport.h" |
| 22 | #include "clang/Basic/SourceManager.h" |
| 23 | #include "clang/Basic/Diagnostic.h" |
| 24 | #include "clang/Basic/LangOptions.h" |
| 25 | #include "clang/Basic/TargetInfo.h" |
| 26 | #include "llvm/ADT/SmallString.h" |
Chris Lattner | 2e64c07 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/StringExtras.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 28 | using namespace clang; |
| 29 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 30 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 31 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 32 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 33 | /// multiple tokens. However, the common case is that StringToks points to one |
| 34 | /// string. |
| 35 | /// |
| 36 | Action::ExprResult |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 37 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 38 | assert(NumStringToks && "Must have at least one string!"); |
| 39 | |
| 40 | StringLiteralParser Literal(StringToks, NumStringToks, PP, Context.Target); |
| 41 | if (Literal.hadError) |
| 42 | return ExprResult(true); |
| 43 | |
| 44 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 45 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 46 | StringTokLocs.push_back(StringToks[i].getLocation()); |
| 47 | |
| 48 | // FIXME: handle wchar_t |
Anders Carlsson | 55bfe0d | 2007-10-15 02:50:23 +0000 | [diff] [blame] | 49 | QualType t; |
| 50 | |
| 51 | if (Literal.Pascal) |
| 52 | t = Context.getPointerType(Context.UnsignedCharTy); |
| 53 | else |
| 54 | t = Context.getPointerType(Context.CharTy); |
| 55 | |
| 56 | if (Literal.Pascal && Literal.GetStringLength() > 256) |
| 57 | return Diag(StringToks[0].getLocation(), diag::err_pascal_string_too_long, |
| 58 | SourceRange(StringToks[0].getLocation(), |
| 59 | StringToks[NumStringToks-1].getLocation())); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 60 | |
| 61 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
| 62 | return new StringLiteral(Literal.GetString(), Literal.GetStringLength(), |
Anders Carlsson | 55bfe0d | 2007-10-15 02:50:23 +0000 | [diff] [blame] | 63 | Literal.AnyWide, t, |
| 64 | StringToks[0].getLocation(), |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 65 | StringToks[NumStringToks-1].getLocation()); |
| 66 | } |
| 67 | |
| 68 | |
Steve Naroff | 0acc9c9 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 69 | /// ActOnIdentifierExpr - The parser read an identifier in expression context, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 70 | /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this |
| 71 | /// identifier is used in an function call context. |
Steve Naroff | 0acc9c9 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 72 | Sema::ExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 73 | IdentifierInfo &II, |
| 74 | bool HasTrailingLParen) { |
| 75 | // Could be enum-constant or decl. |
Steve Naroff | f0c31dd | 2007-09-16 16:16:00 +0000 | [diff] [blame] | 76 | ScopedDecl *D = LookupScopedDecl(&II, Decl::IDNS_Ordinary, Loc, S); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 77 | if (D == 0) { |
| 78 | // Otherwise, this could be an implicitly declared function reference (legal |
| 79 | // in C90, extension in C99). |
| 80 | if (HasTrailingLParen && |
| 81 | // Not in C++. |
| 82 | !getLangOptions().CPlusPlus) |
| 83 | D = ImplicitlyDefineFunction(Loc, II, S); |
| 84 | else { |
| 85 | // If this name wasn't predeclared and if this is not a function call, |
| 86 | // diagnose the problem. |
| 87 | return Diag(Loc, diag::err_undeclared_var_use, II.getName()); |
| 88 | } |
| 89 | } |
Steve Naroff | 91b03f7 | 2007-08-28 03:03:08 +0000 | [diff] [blame] | 90 | if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) { |
Steve Naroff | cae537d | 2007-08-28 18:45:29 +0000 | [diff] [blame] | 91 | // Only create DeclRefExpr's for valid Decl's. |
Steve Naroff | d1ad6ae | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 92 | if (VD->isInvalidDecl()) |
Steve Naroff | 91b03f7 | 2007-08-28 03:03:08 +0000 | [diff] [blame] | 93 | return true; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 94 | return new DeclRefExpr(VD, VD->getType(), Loc); |
Steve Naroff | 91b03f7 | 2007-08-28 03:03:08 +0000 | [diff] [blame] | 95 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 96 | if (isa<TypedefDecl>(D)) |
| 97 | return Diag(Loc, diag::err_unexpected_typedef, II.getName()); |
| 98 | |
| 99 | assert(0 && "Invalid decl"); |
| 100 | abort(); |
| 101 | } |
| 102 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 103 | Sema::ExprResult Sema::ActOnPreDefinedExpr(SourceLocation Loc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 104 | tok::TokenKind Kind) { |
| 105 | PreDefinedExpr::IdentType IT; |
| 106 | |
| 107 | switch (Kind) { |
| 108 | default: |
| 109 | assert(0 && "Unknown simple primary expr!"); |
| 110 | case tok::kw___func__: // primary-expression: __func__ [C99 6.4.2.2] |
| 111 | IT = PreDefinedExpr::Func; |
| 112 | break; |
| 113 | case tok::kw___FUNCTION__: // primary-expression: __FUNCTION__ [GNU] |
| 114 | IT = PreDefinedExpr::Function; |
| 115 | break; |
| 116 | case tok::kw___PRETTY_FUNCTION__: // primary-expression: __P..Y_F..N__ [GNU] |
| 117 | IT = PreDefinedExpr::PrettyFunction; |
| 118 | break; |
| 119 | } |
| 120 | |
| 121 | // Pre-defined identifiers are always of type char *. |
| 122 | return new PreDefinedExpr(Loc, Context.getPointerType(Context.CharTy), IT); |
| 123 | } |
| 124 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 125 | Sema::ExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 126 | llvm::SmallString<16> CharBuffer; |
| 127 | CharBuffer.resize(Tok.getLength()); |
| 128 | const char *ThisTokBegin = &CharBuffer[0]; |
| 129 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
| 130 | |
| 131 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 132 | Tok.getLocation(), PP); |
| 133 | if (Literal.hadError()) |
| 134 | return ExprResult(true); |
| 135 | return new CharacterLiteral(Literal.getValue(), Context.IntTy, |
| 136 | Tok.getLocation()); |
| 137 | } |
| 138 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 139 | Action::ExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 140 | // fast path for a single digit (which is quite common). A single digit |
| 141 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 142 | if (Tok.getLength() == 1) { |
| 143 | const char *t = PP.getSourceManager().getCharacterData(Tok.getLocation()); |
| 144 | |
Chris Lattner | 3496d52 | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 145 | unsigned IntSize = static_cast<unsigned>( |
| 146 | Context.getTypeSize(Context.IntTy, Tok.getLocation())); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 147 | return ExprResult(new IntegerLiteral(llvm::APInt(IntSize, *t-'0'), |
| 148 | Context.IntTy, |
| 149 | Tok.getLocation())); |
| 150 | } |
| 151 | llvm::SmallString<512> IntegerBuffer; |
| 152 | IntegerBuffer.resize(Tok.getLength()); |
| 153 | const char *ThisTokBegin = &IntegerBuffer[0]; |
| 154 | |
| 155 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 156 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
| 157 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 158 | Tok.getLocation(), PP); |
| 159 | if (Literal.hadError) |
| 160 | return ExprResult(true); |
| 161 | |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 162 | Expr *Res; |
| 163 | |
| 164 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 858eece | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 165 | QualType Ty; |
| 166 | const llvm::fltSemantics *Format; |
| 167 | uint64_t Size; unsigned Align; |
| 168 | |
| 169 | if (Literal.isFloat) { |
| 170 | Ty = Context.FloatTy; |
| 171 | Context.Target.getFloatInfo(Size, Align, Format, Tok.getLocation()); |
| 172 | } else if (Literal.isLong) { |
| 173 | Ty = Context.LongDoubleTy; |
| 174 | Context.Target.getLongDoubleInfo(Size, Align, Format, Tok.getLocation()); |
| 175 | } else { |
| 176 | Ty = Context.DoubleTy; |
| 177 | Context.Target.getDoubleInfo(Size, Align, Format, Tok.getLocation()); |
| 178 | } |
| 179 | |
| 180 | Res = new FloatingLiteral(Literal.GetFloatValue(*Format), Ty, |
| 181 | Tok.getLocation()); |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 182 | } else if (!Literal.isIntegerLiteral()) { |
| 183 | return ExprResult(true); |
| 184 | } else { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 185 | QualType t; |
| 186 | |
Neil Booth | 7421e9c | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 187 | // long long is a C99 feature. |
| 188 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 9bd4708 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 189 | Literal.isLongLong) |
Neil Booth | 7421e9c | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 190 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 191 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 192 | // Get the value in the widest-possible width. |
| 193 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(Tok.getLocation()), 0); |
| 194 | |
| 195 | if (Literal.GetIntegerValue(ResultVal)) { |
| 196 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 197 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
| 198 | t = Context.UnsignedLongLongTy; |
| 199 | assert(Context.getTypeSize(t, Tok.getLocation()) == |
| 200 | ResultVal.getBitWidth() && "long long is not intmax_t?"); |
| 201 | } else { |
| 202 | // If this value fits into a ULL, try to figure out what else it fits into |
| 203 | // according to the rules of C99 6.4.4.1p5. |
| 204 | |
| 205 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 206 | // be an unsigned int. |
| 207 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 208 | |
| 209 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 98540b6 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 210 | if (!Literal.isLong && !Literal.isLongLong) { |
| 211 | // Are int/unsigned possibilities? |
Chris Lattner | 3496d52 | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 212 | unsigned IntSize = static_cast<unsigned>( |
| 213 | Context.getTypeSize(Context.IntTy,Tok.getLocation())); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 214 | // Does it fit in a unsigned int? |
| 215 | if (ResultVal.isIntN(IntSize)) { |
| 216 | // Does it fit in a signed int? |
| 217 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
| 218 | t = Context.IntTy; |
| 219 | else if (AllowUnsigned) |
| 220 | t = Context.UnsignedIntTy; |
| 221 | } |
| 222 | |
| 223 | if (!t.isNull()) |
| 224 | ResultVal.trunc(IntSize); |
| 225 | } |
| 226 | |
| 227 | // Are long/unsigned long possibilities? |
| 228 | if (t.isNull() && !Literal.isLongLong) { |
Chris Lattner | 3496d52 | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 229 | unsigned LongSize = static_cast<unsigned>( |
| 230 | Context.getTypeSize(Context.LongTy, Tok.getLocation())); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 231 | |
| 232 | // Does it fit in a unsigned long? |
| 233 | if (ResultVal.isIntN(LongSize)) { |
| 234 | // Does it fit in a signed long? |
| 235 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
| 236 | t = Context.LongTy; |
| 237 | else if (AllowUnsigned) |
| 238 | t = Context.UnsignedLongTy; |
| 239 | } |
| 240 | if (!t.isNull()) |
| 241 | ResultVal.trunc(LongSize); |
| 242 | } |
| 243 | |
| 244 | // Finally, check long long if needed. |
| 245 | if (t.isNull()) { |
Chris Lattner | 3496d52 | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 246 | unsigned LongLongSize = static_cast<unsigned>( |
| 247 | Context.getTypeSize(Context.LongLongTy, Tok.getLocation())); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 248 | |
| 249 | // Does it fit in a unsigned long long? |
| 250 | if (ResultVal.isIntN(LongLongSize)) { |
| 251 | // Does it fit in a signed long long? |
| 252 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
| 253 | t = Context.LongLongTy; |
| 254 | else if (AllowUnsigned) |
| 255 | t = Context.UnsignedLongLongTy; |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | // If we still couldn't decide a type, we probably have something that |
| 260 | // does not fit in a signed long long, but has no U suffix. |
| 261 | if (t.isNull()) { |
| 262 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
| 263 | t = Context.UnsignedLongLongTy; |
| 264 | } |
| 265 | } |
| 266 | |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 267 | Res = new IntegerLiteral(ResultVal, t, Tok.getLocation()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 268 | } |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 269 | |
| 270 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 271 | if (Literal.isImaginary) |
| 272 | Res = new ImaginaryLiteral(Res, Context.getComplexType(Res->getType())); |
| 273 | |
| 274 | return Res; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 275 | } |
| 276 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 277 | Action::ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 278 | ExprTy *Val) { |
| 279 | Expr *e = (Expr *)Val; |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 280 | assert((e != 0) && "ActOnParenExpr() missing expr"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 281 | return new ParenExpr(L, R, e); |
| 282 | } |
| 283 | |
| 284 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 285 | /// See C99 6.3.2.1p[2-4] for more details. |
| 286 | QualType Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
| 287 | SourceLocation OpLoc, bool isSizeof) { |
| 288 | // C99 6.5.3.4p1: |
| 289 | if (isa<FunctionType>(exprType) && isSizeof) |
| 290 | // alignof(function) is allowed. |
| 291 | Diag(OpLoc, diag::ext_sizeof_function_type); |
| 292 | else if (exprType->isVoidType()) |
| 293 | Diag(OpLoc, diag::ext_sizeof_void_type, isSizeof ? "sizeof" : "__alignof"); |
| 294 | else if (exprType->isIncompleteType()) { |
| 295 | Diag(OpLoc, isSizeof ? diag::err_sizeof_incomplete_type : |
| 296 | diag::err_alignof_incomplete_type, |
| 297 | exprType.getAsString()); |
| 298 | return QualType(); // error |
| 299 | } |
| 300 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 301 | return Context.getSizeType(); |
| 302 | } |
| 303 | |
| 304 | Action::ExprResult Sema:: |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 305 | ActOnSizeOfAlignOfTypeExpr(SourceLocation OpLoc, bool isSizeof, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 306 | SourceLocation LPLoc, TypeTy *Ty, |
| 307 | SourceLocation RPLoc) { |
| 308 | // If error parsing type, ignore. |
| 309 | if (Ty == 0) return true; |
| 310 | |
| 311 | // Verify that this is a valid expression. |
| 312 | QualType ArgTy = QualType::getFromOpaquePtr(Ty); |
| 313 | |
| 314 | QualType resultType = CheckSizeOfAlignOfOperand(ArgTy, OpLoc, isSizeof); |
| 315 | |
| 316 | if (resultType.isNull()) |
| 317 | return true; |
| 318 | return new SizeOfAlignOfTypeExpr(isSizeof, ArgTy, resultType, OpLoc, RPLoc); |
| 319 | } |
| 320 | |
Chris Lattner | 5110ad5 | 2007-08-24 21:41:10 +0000 | [diff] [blame] | 321 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc) { |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 322 | DefaultFunctionArrayConversion(V); |
| 323 | |
Chris Lattner | a16e42d | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 324 | // These operators return the element type of a complex type. |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 325 | if (const ComplexType *CT = V->getType()->getAsComplexType()) |
| 326 | return CT->getElementType(); |
Chris Lattner | a16e42d | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 327 | |
| 328 | // Otherwise they pass through real integer and floating point types here. |
| 329 | if (V->getType()->isArithmeticType()) |
| 330 | return V->getType(); |
| 331 | |
| 332 | // Reject anything else. |
| 333 | Diag(Loc, diag::err_realimag_invalid_type, V->getType().getAsString()); |
| 334 | return QualType(); |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 338 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 339 | Action::ExprResult Sema::ActOnPostfixUnaryOp(SourceLocation OpLoc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 340 | tok::TokenKind Kind, |
| 341 | ExprTy *Input) { |
| 342 | UnaryOperator::Opcode Opc; |
| 343 | switch (Kind) { |
| 344 | default: assert(0 && "Unknown unary op!"); |
| 345 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 346 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 347 | } |
| 348 | QualType result = CheckIncrementDecrementOperand((Expr *)Input, OpLoc); |
| 349 | if (result.isNull()) |
| 350 | return true; |
| 351 | return new UnaryOperator((Expr *)Input, Opc, result, OpLoc); |
| 352 | } |
| 353 | |
| 354 | Action::ExprResult Sema:: |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 355 | ActOnArraySubscriptExpr(ExprTy *Base, SourceLocation LLoc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 356 | ExprTy *Idx, SourceLocation RLoc) { |
| 357 | Expr *LHSExp = static_cast<Expr*>(Base), *RHSExp = static_cast<Expr*>(Idx); |
| 358 | |
| 359 | // Perform default conversions. |
| 360 | DefaultFunctionArrayConversion(LHSExp); |
| 361 | DefaultFunctionArrayConversion(RHSExp); |
| 362 | |
| 363 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
| 364 | |
| 365 | // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 366 | // to the expression *((e1)+(e2)). This means the array "Base" may actually be |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 367 | // in the subscript position. As a result, we need to derive the array base |
| 368 | // and index from the expression types. |
| 369 | Expr *BaseExpr, *IndexExpr; |
| 370 | QualType ResultType; |
Chris Lattner | 7931f4a | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 371 | if (const PointerType *PTy = LHSTy->getAsPointerType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 372 | BaseExpr = LHSExp; |
| 373 | IndexExpr = RHSExp; |
| 374 | // FIXME: need to deal with const... |
| 375 | ResultType = PTy->getPointeeType(); |
Chris Lattner | 7931f4a | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 376 | } else if (const PointerType *PTy = RHSTy->getAsPointerType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 377 | // Handle the uncommon case of "123[Ptr]". |
| 378 | BaseExpr = RHSExp; |
| 379 | IndexExpr = LHSExp; |
| 380 | // FIXME: need to deal with const... |
| 381 | ResultType = PTy->getPointeeType(); |
Chris Lattner | e35a104 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 382 | } else if (const VectorType *VTy = LHSTy->getAsVectorType()) { |
| 383 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 384 | IndexExpr = RHSExp; |
Steve Naroff | 8934552 | 2007-08-03 22:40:33 +0000 | [diff] [blame] | 385 | |
| 386 | // Component access limited to variables (reject vec4.rg[1]). |
| 387 | if (!isa<DeclRefExpr>(BaseExpr)) |
| 388 | return Diag(LLoc, diag::err_ocuvector_component_access, |
| 389 | SourceRange(LLoc, RLoc)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 390 | // FIXME: need to deal with const... |
| 391 | ResultType = VTy->getElementType(); |
| 392 | } else { |
| 393 | return Diag(LHSExp->getLocStart(), diag::err_typecheck_subscript_value, |
| 394 | RHSExp->getSourceRange()); |
| 395 | } |
| 396 | // C99 6.5.2.1p1 |
| 397 | if (!IndexExpr->getType()->isIntegerType()) |
| 398 | return Diag(IndexExpr->getLocStart(), diag::err_typecheck_subscript, |
| 399 | IndexExpr->getSourceRange()); |
| 400 | |
| 401 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". In practice, |
| 402 | // the following check catches trying to index a pointer to a function (e.g. |
| 403 | // void (*)(int)). Functions are not objects in C99. |
| 404 | if (!ResultType->isObjectType()) |
| 405 | return Diag(BaseExpr->getLocStart(), |
| 406 | diag::err_typecheck_subscript_not_object, |
| 407 | BaseExpr->getType().getAsString(), BaseExpr->getSourceRange()); |
| 408 | |
| 409 | return new ArraySubscriptExpr(LHSExp, RHSExp, ResultType, RLoc); |
| 410 | } |
| 411 | |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 412 | QualType Sema:: |
| 413 | CheckOCUVectorComponent(QualType baseType, SourceLocation OpLoc, |
| 414 | IdentifierInfo &CompName, SourceLocation CompLoc) { |
Chris Lattner | e35a104 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 415 | const OCUVectorType *vecType = baseType->getAsOCUVectorType(); |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 416 | |
| 417 | // The vector accessor can't exceed the number of elements. |
| 418 | const char *compStr = CompName.getName(); |
| 419 | if (strlen(compStr) > vecType->getNumElements()) { |
| 420 | Diag(OpLoc, diag::err_ocuvector_component_exceeds_length, |
| 421 | baseType.getAsString(), SourceRange(CompLoc)); |
| 422 | return QualType(); |
| 423 | } |
| 424 | // The component names must come from the same set. |
Chris Lattner | 9096b79 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 425 | if (vecType->getPointAccessorIdx(*compStr) != -1) { |
| 426 | do |
| 427 | compStr++; |
| 428 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
| 429 | } else if (vecType->getColorAccessorIdx(*compStr) != -1) { |
| 430 | do |
| 431 | compStr++; |
| 432 | while (*compStr && vecType->getColorAccessorIdx(*compStr) != -1); |
| 433 | } else if (vecType->getTextureAccessorIdx(*compStr) != -1) { |
| 434 | do |
| 435 | compStr++; |
| 436 | while (*compStr && vecType->getTextureAccessorIdx(*compStr) != -1); |
| 437 | } |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 438 | |
| 439 | if (*compStr) { |
| 440 | // We didn't get to the end of the string. This means the component names |
| 441 | // didn't come from the same set *or* we encountered an illegal name. |
| 442 | Diag(OpLoc, diag::err_ocuvector_component_name_illegal, |
| 443 | std::string(compStr,compStr+1), SourceRange(CompLoc)); |
| 444 | return QualType(); |
| 445 | } |
| 446 | // Each component accessor can't exceed the vector type. |
| 447 | compStr = CompName.getName(); |
| 448 | while (*compStr) { |
| 449 | if (vecType->isAccessorWithinNumElements(*compStr)) |
| 450 | compStr++; |
| 451 | else |
| 452 | break; |
| 453 | } |
| 454 | if (*compStr) { |
| 455 | // We didn't get to the end of the string. This means a component accessor |
| 456 | // exceeds the number of elements in the vector. |
| 457 | Diag(OpLoc, diag::err_ocuvector_component_exceeds_length, |
| 458 | baseType.getAsString(), SourceRange(CompLoc)); |
| 459 | return QualType(); |
| 460 | } |
| 461 | // The component accessor looks fine - now we need to compute the actual type. |
| 462 | // The vector type is implied by the component accessor. For example, |
| 463 | // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc. |
| 464 | unsigned CompSize = strlen(CompName.getName()); |
| 465 | if (CompSize == 1) |
| 466 | return vecType->getElementType(); |
Steve Naroff | 82113e3 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 467 | |
| 468 | QualType VT = Context.getOCUVectorType(vecType->getElementType(), CompSize); |
| 469 | // Now look up the TypeDefDecl from the vector type. Without this, |
| 470 | // diagostics look bad. We want OCU vector types to appear built-in. |
| 471 | for (unsigned i = 0, e = OCUVectorDecls.size(); i != e; ++i) { |
| 472 | if (OCUVectorDecls[i]->getUnderlyingType() == VT) |
| 473 | return Context.getTypedefType(OCUVectorDecls[i]); |
| 474 | } |
| 475 | return VT; // should never get here (a typedef type should always be found). |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 476 | } |
| 477 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 478 | Action::ExprResult Sema:: |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 479 | ActOnMemberReferenceExpr(ExprTy *Base, SourceLocation OpLoc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 480 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
| 481 | IdentifierInfo &Member) { |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 482 | Expr *BaseExpr = static_cast<Expr *>(Base); |
| 483 | assert(BaseExpr && "no record expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 484 | |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 485 | QualType BaseType = BaseExpr->getType(); |
| 486 | assert(!BaseType.isNull() && "no type for member expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 487 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 488 | if (OpKind == tok::arrow) { |
Chris Lattner | 7931f4a | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 489 | if (const PointerType *PT = BaseType->getAsPointerType()) |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 490 | BaseType = PT->getPointeeType(); |
| 491 | else |
| 492 | return Diag(OpLoc, diag::err_typecheck_member_reference_arrow, |
| 493 | SourceRange(MemberLoc)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 494 | } |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 495 | // The base type is either a record or an OCUVectorType. |
Chris Lattner | e35a104 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 496 | if (const RecordType *RTy = BaseType->getAsRecordType()) { |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 497 | RecordDecl *RDecl = RTy->getDecl(); |
| 498 | if (RTy->isIncompleteType()) |
| 499 | return Diag(OpLoc, diag::err_typecheck_incomplete_tag, RDecl->getName(), |
| 500 | BaseExpr->getSourceRange()); |
| 501 | // The record definition is complete, now make sure the member is valid. |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 502 | FieldDecl *MemberDecl = RDecl->getMember(&Member); |
| 503 | if (!MemberDecl) |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 504 | return Diag(OpLoc, diag::err_typecheck_no_member, Member.getName(), |
| 505 | SourceRange(MemberLoc)); |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 506 | return new MemberExpr(BaseExpr, OpKind==tok::arrow, MemberDecl, MemberLoc); |
| 507 | } else if (BaseType->isOCUVectorType() && OpKind == tok::period) { |
Steve Naroff | 8934552 | 2007-08-03 22:40:33 +0000 | [diff] [blame] | 508 | // Component access limited to variables (reject vec4.rg.g). |
| 509 | if (!isa<DeclRefExpr>(BaseExpr)) |
| 510 | return Diag(OpLoc, diag::err_ocuvector_component_access, |
| 511 | SourceRange(MemberLoc)); |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 512 | QualType ret = CheckOCUVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 513 | if (ret.isNull()) |
| 514 | return true; |
Chris Lattner | a0d03a7 | 2007-08-03 17:31:20 +0000 | [diff] [blame] | 515 | return new OCUVectorElementExpr(ret, BaseExpr, Member, MemberLoc); |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 516 | } else |
| 517 | return Diag(OpLoc, diag::err_typecheck_member_reference_structUnion, |
| 518 | SourceRange(MemberLoc)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 519 | } |
| 520 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 521 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 522 | /// This provides the location of the left/right parens and a list of comma |
| 523 | /// locations. |
| 524 | Action::ExprResult Sema:: |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 525 | ActOnCallExpr(ExprTy *fn, SourceLocation LParenLoc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 526 | ExprTy **args, unsigned NumArgsInCall, |
| 527 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
| 528 | Expr *Fn = static_cast<Expr *>(fn); |
| 529 | Expr **Args = reinterpret_cast<Expr**>(args); |
| 530 | assert(Fn && "no function call expression"); |
| 531 | |
| 532 | UsualUnaryConversions(Fn); |
| 533 | QualType funcType = Fn->getType(); |
| 534 | |
| 535 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall have |
| 536 | // type pointer to function". |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 537 | const PointerType *PT = funcType->getAsPointerType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 538 | if (PT == 0) |
| 539 | return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function, |
| 540 | SourceRange(Fn->getLocStart(), RParenLoc)); |
| 541 | |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 542 | const FunctionType *funcT = PT->getPointeeType()->getAsFunctionType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 543 | if (funcT == 0) |
| 544 | return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function, |
| 545 | SourceRange(Fn->getLocStart(), RParenLoc)); |
| 546 | |
| 547 | // If a prototype isn't declared, the parser implicitly defines a func decl |
| 548 | QualType resultType = funcT->getResultType(); |
| 549 | |
| 550 | if (const FunctionTypeProto *proto = dyn_cast<FunctionTypeProto>(funcT)) { |
| 551 | // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by |
| 552 | // assignment, to the types of the corresponding parameter, ... |
| 553 | |
| 554 | unsigned NumArgsInProto = proto->getNumArgs(); |
| 555 | unsigned NumArgsToCheck = NumArgsInCall; |
| 556 | |
| 557 | if (NumArgsInCall < NumArgsInProto) |
| 558 | Diag(RParenLoc, diag::err_typecheck_call_too_few_args, |
| 559 | Fn->getSourceRange()); |
| 560 | else if (NumArgsInCall > NumArgsInProto) { |
| 561 | if (!proto->isVariadic()) { |
| 562 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 563 | diag::err_typecheck_call_too_many_args, Fn->getSourceRange(), |
| 564 | SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 565 | Args[NumArgsInCall-1]->getLocEnd())); |
| 566 | } |
| 567 | NumArgsToCheck = NumArgsInProto; |
| 568 | } |
| 569 | // Continue to check argument types (even if we have too few/many args). |
| 570 | for (unsigned i = 0; i < NumArgsToCheck; i++) { |
| 571 | Expr *argExpr = Args[i]; |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 572 | assert(argExpr && "ActOnCallExpr(): missing argument expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 573 | |
| 574 | QualType lhsType = proto->getArgType(i); |
| 575 | QualType rhsType = argExpr->getType(); |
| 576 | |
Steve Naroff | 7564406 | 2007-07-25 20:45:33 +0000 | [diff] [blame] | 577 | // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8]. |
Chris Lattner | e35a104 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 578 | if (const ArrayType *ary = lhsType->getAsArrayType()) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 579 | lhsType = Context.getPointerType(ary->getElementType()); |
Steve Naroff | 7564406 | 2007-07-25 20:45:33 +0000 | [diff] [blame] | 580 | else if (lhsType->isFunctionType()) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 581 | lhsType = Context.getPointerType(lhsType); |
| 582 | |
| 583 | AssignmentCheckResult result = CheckSingleAssignmentConstraints(lhsType, |
| 584 | argExpr); |
Steve Naroff | 0f32f43 | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 585 | if (Args[i] != argExpr) // The expression was converted. |
| 586 | Args[i] = argExpr; // Make sure we store the converted expression. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 587 | SourceLocation l = argExpr->getLocStart(); |
| 588 | |
| 589 | // decode the result (notice that AST's are still created for extensions). |
| 590 | switch (result) { |
| 591 | case Compatible: |
| 592 | break; |
| 593 | case PointerFromInt: |
| 594 | // check for null pointer constant (C99 6.3.2.3p3) |
| 595 | if (!argExpr->isNullPointerConstant(Context)) { |
| 596 | Diag(l, diag::ext_typecheck_passing_pointer_int, |
| 597 | lhsType.getAsString(), rhsType.getAsString(), |
| 598 | Fn->getSourceRange(), argExpr->getSourceRange()); |
| 599 | } |
| 600 | break; |
| 601 | case IntFromPointer: |
| 602 | Diag(l, diag::ext_typecheck_passing_pointer_int, |
| 603 | lhsType.getAsString(), rhsType.getAsString(), |
| 604 | Fn->getSourceRange(), argExpr->getSourceRange()); |
| 605 | break; |
| 606 | case IncompatiblePointer: |
| 607 | Diag(l, diag::ext_typecheck_passing_incompatible_pointer, |
| 608 | rhsType.getAsString(), lhsType.getAsString(), |
| 609 | Fn->getSourceRange(), argExpr->getSourceRange()); |
| 610 | break; |
| 611 | case CompatiblePointerDiscardsQualifiers: |
| 612 | Diag(l, diag::ext_typecheck_passing_discards_qualifiers, |
| 613 | rhsType.getAsString(), lhsType.getAsString(), |
| 614 | Fn->getSourceRange(), argExpr->getSourceRange()); |
| 615 | break; |
| 616 | case Incompatible: |
| 617 | return Diag(l, diag::err_typecheck_passing_incompatible, |
| 618 | rhsType.getAsString(), lhsType.getAsString(), |
| 619 | Fn->getSourceRange(), argExpr->getSourceRange()); |
| 620 | } |
| 621 | } |
Steve Naroff | db65e05 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 622 | if (NumArgsInCall > NumArgsInProto && proto->isVariadic()) { |
| 623 | // Promote the arguments (C99 6.5.2.2p7). |
| 624 | for (unsigned i = NumArgsInProto; i < NumArgsInCall; i++) { |
| 625 | Expr *argExpr = Args[i]; |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 626 | assert(argExpr && "ActOnCallExpr(): missing argument expression"); |
Steve Naroff | db65e05 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 627 | |
| 628 | DefaultArgumentPromotion(argExpr); |
| 629 | if (Args[i] != argExpr) // The expression was converted. |
| 630 | Args[i] = argExpr; // Make sure we store the converted expression. |
| 631 | } |
| 632 | } else if (NumArgsInCall != NumArgsInProto && !proto->isVariadic()) { |
| 633 | // Even if the types checked, bail if the number of arguments don't match. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 634 | return true; |
Steve Naroff | db65e05 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 635 | } |
| 636 | } else if (isa<FunctionTypeNoProto>(funcT)) { |
| 637 | // Promote the arguments (C99 6.5.2.2p6). |
| 638 | for (unsigned i = 0; i < NumArgsInCall; i++) { |
| 639 | Expr *argExpr = Args[i]; |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 640 | assert(argExpr && "ActOnCallExpr(): missing argument expression"); |
Steve Naroff | db65e05 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 641 | |
| 642 | DefaultArgumentPromotion(argExpr); |
| 643 | if (Args[i] != argExpr) // The expression was converted. |
| 644 | Args[i] = argExpr; // Make sure we store the converted expression. |
| 645 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 646 | } |
Chris Lattner | 2e64c07 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 647 | // Do special checking on direct calls to functions. |
| 648 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(Fn)) |
| 649 | if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(IcExpr->getSubExpr())) |
| 650 | if (FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl())) |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 651 | if (CheckFunctionCall(Fn, LParenLoc, RParenLoc, FDecl, Args, |
| 652 | NumArgsInCall)) |
Anders Carlsson | e7e7aa2 | 2007-08-17 05:31:46 +0000 | [diff] [blame] | 653 | return true; |
Chris Lattner | 2e64c07 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 654 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 655 | return new CallExpr(Fn, Args, NumArgsInCall, resultType, RParenLoc); |
| 656 | } |
| 657 | |
| 658 | Action::ExprResult Sema:: |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 659 | ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 660 | SourceLocation RParenLoc, ExprTy *InitExpr) { |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 661 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 662 | QualType literalType = QualType::getFromOpaquePtr(Ty); |
| 663 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 664 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 665 | Expr *literalExpr = static_cast<Expr*>(InitExpr); |
| 666 | |
| 667 | // FIXME: add semantic analysis (C99 6.5.2.5). |
| 668 | return new CompoundLiteralExpr(literalType, literalExpr); |
| 669 | } |
| 670 | |
| 671 | Action::ExprResult Sema:: |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 672 | ActOnInitList(SourceLocation LBraceLoc, ExprTy **initlist, unsigned NumInit, |
Anders Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 673 | SourceLocation RBraceLoc) { |
Steve Naroff | e14e554 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 674 | Expr **InitList = reinterpret_cast<Expr**>(initlist); |
Anders Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 675 | |
Steve Naroff | 0acc9c9 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 676 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Steve Naroff | 1c9de71 | 2007-09-03 01:24:23 +0000 | [diff] [blame] | 677 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Anders Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 678 | |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 679 | InitListExpr *e = new InitListExpr(LBraceLoc, InitList, NumInit, RBraceLoc); |
| 680 | e->setType(Context.VoidTy); // FIXME: just a place holder for now. |
| 681 | return e; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 682 | } |
| 683 | |
| 684 | Action::ExprResult Sema:: |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 685 | ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 686 | SourceLocation RParenLoc, ExprTy *Op) { |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 687 | assert((Ty != 0) && (Op != 0) && "ActOnCastExpr(): missing type or expr"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 688 | |
| 689 | Expr *castExpr = static_cast<Expr*>(Op); |
| 690 | QualType castType = QualType::getFromOpaquePtr(Ty); |
| 691 | |
Steve Naroff | 68adb48 | 2007-08-31 00:32:44 +0000 | [diff] [blame] | 692 | UsualUnaryConversions(castExpr); |
| 693 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 694 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 695 | // type needs to be scalar. |
| 696 | if (!castType->isScalarType() && !castType->isVoidType()) { |
| 697 | return Diag(LParenLoc, diag::err_typecheck_cond_expect_scalar, |
| 698 | castType.getAsString(), SourceRange(LParenLoc, RParenLoc)); |
| 699 | } |
| 700 | if (!castExpr->getType()->isScalarType()) { |
| 701 | return Diag(castExpr->getLocStart(), |
| 702 | diag::err_typecheck_expect_scalar_operand, |
| 703 | castExpr->getType().getAsString(), castExpr->getSourceRange()); |
| 704 | } |
| 705 | return new CastExpr(castType, castExpr, LParenLoc); |
| 706 | } |
| 707 | |
| 708 | inline QualType Sema::CheckConditionalOperands( // C99 6.5.15 |
| 709 | Expr *&cond, Expr *&lex, Expr *&rex, SourceLocation questionLoc) { |
| 710 | UsualUnaryConversions(cond); |
| 711 | UsualUnaryConversions(lex); |
| 712 | UsualUnaryConversions(rex); |
| 713 | QualType condT = cond->getType(); |
| 714 | QualType lexT = lex->getType(); |
| 715 | QualType rexT = rex->getType(); |
| 716 | |
| 717 | // first, check the condition. |
| 718 | if (!condT->isScalarType()) { // C99 6.5.15p2 |
| 719 | Diag(cond->getLocStart(), diag::err_typecheck_cond_expect_scalar, |
| 720 | condT.getAsString()); |
| 721 | return QualType(); |
| 722 | } |
| 723 | // now check the two expressions. |
| 724 | if (lexT->isArithmeticType() && rexT->isArithmeticType()) { // C99 6.5.15p3,5 |
| 725 | UsualArithmeticConversions(lex, rex); |
| 726 | return lex->getType(); |
| 727 | } |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 728 | if (const RecordType *LHSRT = lexT->getAsRecordType()) { // C99 6.5.15p3 |
| 729 | if (const RecordType *RHSRT = rexT->getAsRecordType()) { |
| 730 | |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 731 | if (LHSRT->getDecl()->getIdentifier() ==RHSRT->getDecl()->getIdentifier()) |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 732 | return lexT; |
| 733 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 734 | Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands, |
| 735 | lexT.getAsString(), rexT.getAsString(), |
| 736 | lex->getSourceRange(), rex->getSourceRange()); |
| 737 | return QualType(); |
| 738 | } |
| 739 | } |
| 740 | // C99 6.5.15p3 |
| 741 | if (lexT->isPointerType() && rex->isNullPointerConstant(Context)) |
| 742 | return lexT; |
| 743 | if (rexT->isPointerType() && lex->isNullPointerConstant(Context)) |
| 744 | return rexT; |
| 745 | |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 746 | if (const PointerType *LHSPT = lexT->getAsPointerType()) { // C99 6.5.15p3,6 |
| 747 | if (const PointerType *RHSPT = rexT->getAsPointerType()) { |
| 748 | // get the "pointed to" types |
| 749 | QualType lhptee = LHSPT->getPointeeType(); |
| 750 | QualType rhptee = RHSPT->getPointeeType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 751 | |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 752 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 753 | if (lhptee->isVoidType() && |
| 754 | (rhptee->isObjectType() || rhptee->isIncompleteType())) |
| 755 | return lexT; |
| 756 | if (rhptee->isVoidType() && |
| 757 | (lhptee->isObjectType() || lhptee->isIncompleteType())) |
| 758 | return rexT; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 759 | |
Steve Naroff | 85f0dc5 | 2007-10-15 20:41:53 +0000 | [diff] [blame] | 760 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 761 | rhptee.getUnqualifiedType())) { |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 762 | Diag(questionLoc, diag::ext_typecheck_cond_incompatible_pointers, |
| 763 | lexT.getAsString(), rexT.getAsString(), |
| 764 | lex->getSourceRange(), rex->getSourceRange()); |
| 765 | return lexT; // FIXME: this is an _ext - is this return o.k? |
| 766 | } |
| 767 | // The pointer types are compatible. |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 768 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 769 | // differently qualified versions of compatible types, the result type is |
| 770 | // a pointer to an appropriately qualified version of the *composite* |
| 771 | // type. |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 772 | return lexT; // FIXME: Need to return the composite type. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 773 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 774 | } |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 775 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 776 | if (lexT->isVoidType() && rexT->isVoidType()) // C99 6.5.15p3 |
| 777 | return lexT; |
| 778 | |
| 779 | Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands, |
| 780 | lexT.getAsString(), rexT.getAsString(), |
| 781 | lex->getSourceRange(), rex->getSourceRange()); |
| 782 | return QualType(); |
| 783 | } |
| 784 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 785 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 786 | /// in the case of a the GNU conditional expr extension. |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 787 | Action::ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 788 | SourceLocation ColonLoc, |
| 789 | ExprTy *Cond, ExprTy *LHS, |
| 790 | ExprTy *RHS) { |
| 791 | Expr *CondExpr = (Expr *) Cond; |
| 792 | Expr *LHSExpr = (Expr *) LHS, *RHSExpr = (Expr *) RHS; |
| 793 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
| 794 | RHSExpr, QuestionLoc); |
| 795 | if (result.isNull()) |
| 796 | return true; |
| 797 | return new ConditionalOperator(CondExpr, LHSExpr, RHSExpr, result); |
| 798 | } |
| 799 | |
| 800 | // promoteExprToType - a helper function to ensure we create exactly one |
| 801 | // ImplicitCastExpr. As a convenience (to the caller), we return the type. |
| 802 | static void promoteExprToType(Expr *&expr, QualType type) { |
| 803 | if (ImplicitCastExpr *impCast = dyn_cast<ImplicitCastExpr>(expr)) |
| 804 | impCast->setType(type); |
| 805 | else |
| 806 | expr = new ImplicitCastExpr(type, expr); |
| 807 | return; |
| 808 | } |
| 809 | |
Steve Naroff | db65e05 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 810 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
| 811 | /// do not have a prototype. Integer promotions are performed on each |
| 812 | /// argument, and arguments that have type float are promoted to double. |
| 813 | void Sema::DefaultArgumentPromotion(Expr *&expr) { |
| 814 | QualType t = expr->getType(); |
| 815 | assert(!t.isNull() && "DefaultArgumentPromotion - missing type"); |
| 816 | |
| 817 | if (t->isPromotableIntegerType()) // C99 6.3.1.1p2 |
| 818 | promoteExprToType(expr, Context.IntTy); |
| 819 | if (t == Context.FloatTy) |
| 820 | promoteExprToType(expr, Context.DoubleTy); |
| 821 | } |
| 822 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 823 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 824 | void Sema::DefaultFunctionArrayConversion(Expr *&e) { |
| 825 | QualType t = e->getType(); |
| 826 | assert(!t.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 827 | |
Chris Lattner | f0c4a0a | 2007-07-31 16:56:34 +0000 | [diff] [blame] | 828 | if (const ReferenceType *ref = t->getAsReferenceType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 829 | promoteExprToType(e, ref->getReferenceeType()); // C++ [expr] |
| 830 | t = e->getType(); |
| 831 | } |
| 832 | if (t->isFunctionType()) |
| 833 | promoteExprToType(e, Context.getPointerType(t)); |
Chris Lattner | e35a104 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 834 | else if (const ArrayType *ary = t->getAsArrayType()) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 835 | promoteExprToType(e, Context.getPointerType(ary->getElementType())); |
| 836 | } |
| 837 | |
| 838 | /// UsualUnaryConversion - Performs various conversions that are common to most |
| 839 | /// operators (C99 6.3). The conversions of array and function types are |
| 840 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 841 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 842 | /// In these instances, this routine should *not* be called. |
| 843 | void Sema::UsualUnaryConversions(Expr *&expr) { |
| 844 | QualType t = expr->getType(); |
| 845 | assert(!t.isNull() && "UsualUnaryConversions - missing type"); |
| 846 | |
Chris Lattner | f0c4a0a | 2007-07-31 16:56:34 +0000 | [diff] [blame] | 847 | if (const ReferenceType *ref = t->getAsReferenceType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 848 | promoteExprToType(expr, ref->getReferenceeType()); // C++ [expr] |
| 849 | t = expr->getType(); |
| 850 | } |
| 851 | if (t->isPromotableIntegerType()) // C99 6.3.1.1p2 |
| 852 | promoteExprToType(expr, Context.IntTy); |
| 853 | else |
| 854 | DefaultFunctionArrayConversion(expr); |
| 855 | } |
| 856 | |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 857 | /// UsualArithmeticConversions - Performs various conversions that are common to |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 858 | /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
| 859 | /// routine returns the first non-arithmetic type found. The client is |
| 860 | /// responsible for emitting appropriate error diagnostics. |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 861 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 862 | bool isCompAssign) { |
Steve Naroff | b2f9f55 | 2007-08-25 19:54:59 +0000 | [diff] [blame] | 863 | if (!isCompAssign) { |
| 864 | UsualUnaryConversions(lhsExpr); |
| 865 | UsualUnaryConversions(rhsExpr); |
| 866 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 867 | QualType lhs = lhsExpr->getType(); |
| 868 | QualType rhs = rhsExpr->getType(); |
| 869 | |
| 870 | // If both types are identical, no conversion is needed. |
| 871 | if (lhs == rhs) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 872 | return lhs; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 873 | |
| 874 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 875 | // The caller can deal with this (e.g. pointer + int). |
| 876 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 877 | return lhs; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 878 | |
| 879 | // At this point, we have two different arithmetic types. |
| 880 | |
| 881 | // Handle complex types first (C99 6.3.1.8p1). |
| 882 | if (lhs->isComplexType() || rhs->isComplexType()) { |
| 883 | // if we have an integer operand, the result is the complex type. |
| 884 | if (rhs->isIntegerType()) { // convert the rhs to the lhs complex type. |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 885 | if (!isCompAssign) promoteExprToType(rhsExpr, lhs); |
| 886 | return lhs; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 887 | } |
| 888 | if (lhs->isIntegerType()) { // convert the lhs to the rhs complex type. |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 889 | if (!isCompAssign) promoteExprToType(lhsExpr, rhs); |
| 890 | return rhs; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 891 | } |
Steve Naroff | 3cf497f | 2007-08-27 01:27:54 +0000 | [diff] [blame] | 892 | // This handles complex/complex, complex/float, or float/complex. |
| 893 | // When both operands are complex, the shorter operand is converted to the |
| 894 | // type of the longer, and that is the type of the result. This corresponds |
| 895 | // to what is done when combining two real floating-point operands. |
| 896 | // The fun begins when size promotion occur across type domains. |
| 897 | // From H&S 6.3.4: When one operand is complex and the other is a real |
| 898 | // floating-point type, the less precise type is converted, within it's |
| 899 | // real or complex domain, to the precision of the other type. For example, |
| 900 | // when combining a "long double" with a "double _Complex", the |
| 901 | // "double _Complex" is promoted to "long double _Complex". |
Steve Naroff | 45fc982 | 2007-08-27 15:30:22 +0000 | [diff] [blame] | 902 | int result = Context.compareFloatingType(lhs, rhs); |
| 903 | |
| 904 | if (result > 0) { // The left side is bigger, convert rhs. |
Steve Naroff | 3b565d6 | 2007-08-27 21:32:55 +0000 | [diff] [blame] | 905 | rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs); |
| 906 | if (!isCompAssign) |
| 907 | promoteExprToType(rhsExpr, rhs); |
| 908 | } else if (result < 0) { // The right side is bigger, convert lhs. |
| 909 | lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs); |
| 910 | if (!isCompAssign) |
| 911 | promoteExprToType(lhsExpr, lhs); |
| 912 | } |
| 913 | // At this point, lhs and rhs have the same rank/size. Now, make sure the |
| 914 | // domains match. This is a requirement for our implementation, C99 |
| 915 | // does not require this promotion. |
| 916 | if (lhs != rhs) { // Domains don't match, we have complex/float mix. |
| 917 | if (lhs->isRealFloatingType()) { // handle "double, _Complex double". |
Steve Naroff | 3b6157f | 2007-08-27 21:43:43 +0000 | [diff] [blame] | 918 | if (!isCompAssign) |
| 919 | promoteExprToType(lhsExpr, rhs); |
| 920 | return rhs; |
Steve Naroff | 3b565d6 | 2007-08-27 21:32:55 +0000 | [diff] [blame] | 921 | } else { // handle "_Complex double, double". |
Steve Naroff | 3b6157f | 2007-08-27 21:43:43 +0000 | [diff] [blame] | 922 | if (!isCompAssign) |
| 923 | promoteExprToType(rhsExpr, lhs); |
| 924 | return lhs; |
Steve Naroff | 3b565d6 | 2007-08-27 21:32:55 +0000 | [diff] [blame] | 925 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 926 | } |
Steve Naroff | 3b6157f | 2007-08-27 21:43:43 +0000 | [diff] [blame] | 927 | return lhs; // The domain/size match exactly. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 928 | } |
| 929 | // Now handle "real" floating types (i.e. float, double, long double). |
| 930 | if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) { |
| 931 | // if we have an integer operand, the result is the real floating type. |
| 932 | if (rhs->isIntegerType()) { // convert rhs to the lhs floating point type. |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 933 | if (!isCompAssign) promoteExprToType(rhsExpr, lhs); |
| 934 | return lhs; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 935 | } |
| 936 | if (lhs->isIntegerType()) { // convert lhs to the rhs floating point type. |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 937 | if (!isCompAssign) promoteExprToType(lhsExpr, rhs); |
| 938 | return rhs; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 939 | } |
| 940 | // We have two real floating types, float/complex combos were handled above. |
| 941 | // Convert the smaller operand to the bigger result. |
Steve Naroff | 45fc982 | 2007-08-27 15:30:22 +0000 | [diff] [blame] | 942 | int result = Context.compareFloatingType(lhs, rhs); |
| 943 | |
| 944 | if (result > 0) { // convert the rhs |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 945 | if (!isCompAssign) promoteExprToType(rhsExpr, lhs); |
| 946 | return lhs; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 947 | } |
Steve Naroff | 45fc982 | 2007-08-27 15:30:22 +0000 | [diff] [blame] | 948 | if (result < 0) { // convert the lhs |
| 949 | if (!isCompAssign) promoteExprToType(lhsExpr, rhs); // convert the lhs |
| 950 | return rhs; |
| 951 | } |
| 952 | assert(0 && "Sema::UsualArithmeticConversions(): illegal float comparison"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 953 | } |
| 954 | // Finally, we have two differing integer types. |
| 955 | if (Context.maxIntegerType(lhs, rhs) == lhs) { // convert the rhs |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 956 | if (!isCompAssign) promoteExprToType(rhsExpr, lhs); |
| 957 | return lhs; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 958 | } |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 959 | if (!isCompAssign) promoteExprToType(lhsExpr, rhs); // convert the lhs |
| 960 | return rhs; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 961 | } |
| 962 | |
| 963 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
| 964 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
| 965 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 966 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 967 | // FIXME: add a couple examples in this comment. |
| 968 | Sema::AssignmentCheckResult |
| 969 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 970 | QualType lhptee, rhptee; |
| 971 | |
| 972 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 973 | lhptee = lhsType->getAsPointerType()->getPointeeType(); |
| 974 | rhptee = rhsType->getAsPointerType()->getPointeeType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 975 | |
| 976 | // make sure we operate on the canonical type |
| 977 | lhptee = lhptee.getCanonicalType(); |
| 978 | rhptee = rhptee.getCanonicalType(); |
| 979 | |
| 980 | AssignmentCheckResult r = Compatible; |
| 981 | |
| 982 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 983 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 984 | // qualifiers of the type *pointed to* by the right; |
| 985 | if ((lhptee.getQualifiers() & rhptee.getQualifiers()) != |
| 986 | rhptee.getQualifiers()) |
| 987 | r = CompatiblePointerDiscardsQualifiers; |
| 988 | |
| 989 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 990 | // incomplete type and the other is a pointer to a qualified or unqualified |
| 991 | // version of void... |
| 992 | if (lhptee.getUnqualifiedType()->isVoidType() && |
| 993 | (rhptee->isObjectType() || rhptee->isIncompleteType())) |
| 994 | ; |
| 995 | else if (rhptee.getUnqualifiedType()->isVoidType() && |
| 996 | (lhptee->isObjectType() || lhptee->isIncompleteType())) |
| 997 | ; |
| 998 | // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or |
| 999 | // unqualified versions of compatible types, ... |
Steve Naroff | 85f0dc5 | 2007-10-15 20:41:53 +0000 | [diff] [blame] | 1000 | else if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 1001 | rhptee.getUnqualifiedType())) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1002 | r = IncompatiblePointer; // this "trumps" PointerAssignDiscardsQualifiers |
| 1003 | return r; |
| 1004 | } |
| 1005 | |
| 1006 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 1007 | /// has code to accommodate several GCC extensions when type checking |
| 1008 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 1009 | /// |
| 1010 | /// int a, *pint; |
| 1011 | /// short *pshort; |
| 1012 | /// struct foo *pfoo; |
| 1013 | /// |
| 1014 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 1015 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 1016 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 1017 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 1018 | /// |
| 1019 | /// As a result, the code for dealing with pointers is more complex than the |
| 1020 | /// C99 spec dictates. |
| 1021 | /// Note: the warning above turn into errors when -pedantic-errors is enabled. |
| 1022 | /// |
| 1023 | Sema::AssignmentCheckResult |
| 1024 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
| 1025 | if (lhsType == rhsType) // common case, fast path... |
| 1026 | return Compatible; |
| 1027 | |
Anders Carlsson | cebb8d6 | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 1028 | if (lhsType->isReferenceType() || rhsType->isReferenceType()) { |
Steve Naroff | 85f0dc5 | 2007-10-15 20:41:53 +0000 | [diff] [blame] | 1029 | if (Context.referenceTypesAreCompatible(lhsType, rhsType)) |
Anders Carlsson | cebb8d6 | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 1030 | return Compatible; |
| 1031 | } else if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1032 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
| 1033 | if (lhsType.getCanonicalType() != rhsType.getCanonicalType()) |
| 1034 | return Incompatible; |
| 1035 | } |
| 1036 | return Compatible; |
| 1037 | } else if (lhsType->isPointerType()) { |
| 1038 | if (rhsType->isIntegerType()) |
| 1039 | return PointerFromInt; |
| 1040 | |
| 1041 | if (rhsType->isPointerType()) |
| 1042 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
| 1043 | } else if (rhsType->isPointerType()) { |
| 1044 | // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. |
| 1045 | if ((lhsType->isIntegerType()) && (lhsType != Context.BoolTy)) |
| 1046 | return IntFromPointer; |
| 1047 | |
| 1048 | if (lhsType->isPointerType()) |
| 1049 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
| 1050 | } else if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Steve Naroff | 85f0dc5 | 2007-10-15 20:41:53 +0000 | [diff] [blame] | 1051 | if (Context.tagTypesAreCompatible(lhsType, rhsType)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1052 | return Compatible; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1053 | } |
| 1054 | return Incompatible; |
| 1055 | } |
| 1056 | |
| 1057 | Sema::AssignmentCheckResult |
| 1058 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Chris Lattner | 5f505bf | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 1059 | // This check seems unnatural, however it is necessary to ensure the proper |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1060 | // conversion of functions/arrays. If the conversion were done for all |
Steve Naroff | 0acc9c9 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 1061 | // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1062 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 5f505bf | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 1063 | // |
| 1064 | // Suppress this for references: C99 8.5.3p5. FIXME: revisit when references |
| 1065 | // are better understood. |
| 1066 | if (!lhsType->isReferenceType()) |
| 1067 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | 0f32f43 | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 1068 | |
| 1069 | Sema::AssignmentCheckResult result; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1070 | |
Steve Naroff | 0f32f43 | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 1071 | result = CheckAssignmentConstraints(lhsType, rExpr->getType()); |
| 1072 | |
| 1073 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 1074 | // type of the assignment expression. |
| 1075 | if (rExpr->getType() != lhsType) |
| 1076 | promoteExprToType(rExpr, lhsType); |
| 1077 | return result; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1078 | } |
| 1079 | |
| 1080 | Sema::AssignmentCheckResult |
| 1081 | Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) { |
| 1082 | return CheckAssignmentConstraints(lhsType, rhsType); |
| 1083 | } |
| 1084 | |
| 1085 | inline void Sema::InvalidOperands(SourceLocation loc, Expr *&lex, Expr *&rex) { |
| 1086 | Diag(loc, diag::err_typecheck_invalid_operands, |
| 1087 | lex->getType().getAsString(), rex->getType().getAsString(), |
| 1088 | lex->getSourceRange(), rex->getSourceRange()); |
| 1089 | } |
| 1090 | |
| 1091 | inline QualType Sema::CheckVectorOperands(SourceLocation loc, Expr *&lex, |
| 1092 | Expr *&rex) { |
| 1093 | QualType lhsType = lex->getType(), rhsType = rex->getType(); |
| 1094 | |
| 1095 | // make sure the vector types are identical. |
| 1096 | if (lhsType == rhsType) |
| 1097 | return lhsType; |
| 1098 | // You cannot convert between vector values of different size. |
| 1099 | Diag(loc, diag::err_typecheck_vector_not_convertable, |
| 1100 | lex->getType().getAsString(), rex->getType().getAsString(), |
| 1101 | lex->getSourceRange(), rex->getSourceRange()); |
| 1102 | return QualType(); |
| 1103 | } |
| 1104 | |
| 1105 | inline QualType Sema::CheckMultiplyDivideOperands( |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1106 | Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1107 | { |
| 1108 | QualType lhsType = lex->getType(), rhsType = rex->getType(); |
| 1109 | |
| 1110 | if (lhsType->isVectorType() || rhsType->isVectorType()) |
| 1111 | return CheckVectorOperands(loc, lex, rex); |
| 1112 | |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1113 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1114 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1115 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1116 | return compType; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1117 | InvalidOperands(loc, lex, rex); |
| 1118 | return QualType(); |
| 1119 | } |
| 1120 | |
| 1121 | inline QualType Sema::CheckRemainderOperands( |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1122 | Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1123 | { |
| 1124 | QualType lhsType = lex->getType(), rhsType = rex->getType(); |
| 1125 | |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1126 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1127 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1128 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1129 | return compType; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1130 | InvalidOperands(loc, lex, rex); |
| 1131 | return QualType(); |
| 1132 | } |
| 1133 | |
| 1134 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1135 | Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1136 | { |
| 1137 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
| 1138 | return CheckVectorOperands(loc, lex, rex); |
| 1139 | |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1140 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1141 | |
| 1142 | // handle the common case first (both operands are arithmetic). |
| 1143 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1144 | return compType; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1145 | |
| 1146 | if (lex->getType()->isPointerType() && rex->getType()->isIntegerType()) |
| 1147 | return lex->getType(); |
| 1148 | if (lex->getType()->isIntegerType() && rex->getType()->isPointerType()) |
| 1149 | return rex->getType(); |
| 1150 | InvalidOperands(loc, lex, rex); |
| 1151 | return QualType(); |
| 1152 | } |
| 1153 | |
| 1154 | inline QualType Sema::CheckSubtractionOperands( // C99 6.5.6 |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1155 | Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1156 | { |
| 1157 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
| 1158 | return CheckVectorOperands(loc, lex, rex); |
| 1159 | |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1160 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1161 | |
| 1162 | // handle the common case first (both operands are arithmetic). |
| 1163 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1164 | return compType; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1165 | |
| 1166 | if (lex->getType()->isPointerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1167 | return compType; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1168 | if (lex->getType()->isPointerType() && rex->getType()->isPointerType()) |
| 1169 | return Context.getPointerDiffType(); |
| 1170 | InvalidOperands(loc, lex, rex); |
| 1171 | return QualType(); |
| 1172 | } |
| 1173 | |
| 1174 | inline QualType Sema::CheckShiftOperands( // C99 6.5.7 |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1175 | Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1176 | { |
| 1177 | // FIXME: Shifts don't perform usual arithmetic conversions. This is wrong |
| 1178 | // for int << longlong -> the result type should be int, not long long. |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1179 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1180 | |
| 1181 | // handle the common case first (both operands are arithmetic). |
| 1182 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1183 | return compType; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1184 | InvalidOperands(loc, lex, rex); |
| 1185 | return QualType(); |
| 1186 | } |
| 1187 | |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 1188 | inline QualType Sema::CheckCompareOperands( // C99 6.5.8 |
| 1189 | Expr *&lex, Expr *&rex, SourceLocation loc, bool isRelational) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1190 | { |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 1191 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | ecc4fa1 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 1192 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 1193 | UsualArithmeticConversions(lex, rex); |
| 1194 | else { |
| 1195 | UsualUnaryConversions(lex); |
| 1196 | UsualUnaryConversions(rex); |
| 1197 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1198 | QualType lType = lex->getType(); |
| 1199 | QualType rType = rex->getType(); |
| 1200 | |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 1201 | if (isRelational) { |
| 1202 | if (lType->isRealType() && rType->isRealType()) |
| 1203 | return Context.IntTy; |
| 1204 | } else { |
Chris Lattner | bd3cc22 | 2007-08-30 06:10:41 +0000 | [diff] [blame] | 1205 | if (lType->isFloatingType() && rType->isFloatingType()) |
Ted Kremenek | ec761af | 2007-08-29 18:06:12 +0000 | [diff] [blame] | 1206 | Diag(loc, diag::warn_floatingpoint_eq); |
| 1207 | |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 1208 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
| 1209 | return Context.IntTy; |
| 1210 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1211 | |
Chris Lattner | 22be842 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 1212 | bool LHSIsNull = lex->isNullPointerConstant(Context); |
| 1213 | bool RHSIsNull = rex->isNullPointerConstant(Context); |
| 1214 | |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 1215 | // All of the following pointer related warnings are GCC extensions, except |
| 1216 | // when handling null pointer constants. One day, we can consider making them |
| 1217 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | c33c060 | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 1218 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | 22be842 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 1219 | if (!LHSIsNull && !RHSIsNull && |
Steve Naroff | 85f0dc5 | 2007-10-15 20:41:53 +0000 | [diff] [blame] | 1220 | !Context.pointerTypesAreCompatible(lType.getUnqualifiedType(), |
| 1221 | rType.getUnqualifiedType())) { |
Steve Naroff | 4462cb0 | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 1222 | Diag(loc, diag::ext_typecheck_comparison_of_distinct_pointers, |
| 1223 | lType.getAsString(), rType.getAsString(), |
| 1224 | lex->getSourceRange(), rex->getSourceRange()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1225 | } |
Chris Lattner | 22be842 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 1226 | promoteExprToType(rex, lType); // promote the pointer to pointer |
Steve Naroff | 4462cb0 | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 1227 | return Context.IntTy; |
| 1228 | } |
| 1229 | if (lType->isPointerType() && rType->isIntegerType()) { |
Chris Lattner | 22be842 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 1230 | if (!RHSIsNull) |
Steve Naroff | 4462cb0 | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 1231 | Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer, |
| 1232 | lType.getAsString(), rType.getAsString(), |
| 1233 | lex->getSourceRange(), rex->getSourceRange()); |
Chris Lattner | 22be842 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 1234 | promoteExprToType(rex, lType); // promote the integer to pointer |
Steve Naroff | 4462cb0 | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 1235 | return Context.IntTy; |
| 1236 | } |
| 1237 | if (lType->isIntegerType() && rType->isPointerType()) { |
Chris Lattner | 22be842 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 1238 | if (!LHSIsNull) |
Steve Naroff | 4462cb0 | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 1239 | Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer, |
| 1240 | lType.getAsString(), rType.getAsString(), |
| 1241 | lex->getSourceRange(), rex->getSourceRange()); |
Chris Lattner | 22be842 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 1242 | promoteExprToType(lex, rType); // promote the integer to pointer |
Steve Naroff | 4462cb0 | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 1243 | return Context.IntTy; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1244 | } |
| 1245 | InvalidOperands(loc, lex, rex); |
| 1246 | return QualType(); |
| 1247 | } |
| 1248 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1249 | inline QualType Sema::CheckBitwiseOperands( |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1250 | Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1251 | { |
| 1252 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
| 1253 | return CheckVectorOperands(loc, lex, rex); |
| 1254 | |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1255 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1256 | |
| 1257 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1258 | return compType; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1259 | InvalidOperands(loc, lex, rex); |
| 1260 | return QualType(); |
| 1261 | } |
| 1262 | |
| 1263 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
| 1264 | Expr *&lex, Expr *&rex, SourceLocation loc) |
| 1265 | { |
| 1266 | UsualUnaryConversions(lex); |
| 1267 | UsualUnaryConversions(rex); |
| 1268 | |
| 1269 | if (lex->getType()->isScalarType() || rex->getType()->isScalarType()) |
| 1270 | return Context.IntTy; |
| 1271 | InvalidOperands(loc, lex, rex); |
| 1272 | return QualType(); |
| 1273 | } |
| 1274 | |
| 1275 | inline QualType Sema::CheckAssignmentOperands( // C99 6.5.16.1 |
Steve Naroff | 0f32f43 | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 1276 | Expr *lex, Expr *&rex, SourceLocation loc, QualType compoundType) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1277 | { |
| 1278 | QualType lhsType = lex->getType(); |
| 1279 | QualType rhsType = compoundType.isNull() ? rex->getType() : compoundType; |
| 1280 | bool hadError = false; |
| 1281 | Expr::isModifiableLvalueResult mlval = lex->isModifiableLvalue(); |
| 1282 | |
| 1283 | switch (mlval) { // C99 6.5.16p2 |
| 1284 | case Expr::MLV_Valid: |
| 1285 | break; |
| 1286 | case Expr::MLV_ConstQualified: |
| 1287 | Diag(loc, diag::err_typecheck_assign_const, lex->getSourceRange()); |
| 1288 | hadError = true; |
| 1289 | break; |
| 1290 | case Expr::MLV_ArrayType: |
| 1291 | Diag(loc, diag::err_typecheck_array_not_modifiable_lvalue, |
| 1292 | lhsType.getAsString(), lex->getSourceRange()); |
| 1293 | return QualType(); |
| 1294 | case Expr::MLV_NotObjectType: |
| 1295 | Diag(loc, diag::err_typecheck_non_object_not_modifiable_lvalue, |
| 1296 | lhsType.getAsString(), lex->getSourceRange()); |
| 1297 | return QualType(); |
| 1298 | case Expr::MLV_InvalidExpression: |
| 1299 | Diag(loc, diag::err_typecheck_expression_not_modifiable_lvalue, |
| 1300 | lex->getSourceRange()); |
| 1301 | return QualType(); |
| 1302 | case Expr::MLV_IncompleteType: |
| 1303 | case Expr::MLV_IncompleteVoidType: |
| 1304 | Diag(loc, diag::err_typecheck_incomplete_type_not_modifiable_lvalue, |
| 1305 | lhsType.getAsString(), lex->getSourceRange()); |
| 1306 | return QualType(); |
Steve Naroff | ba67f69 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 1307 | case Expr::MLV_DuplicateVectorComponents: |
| 1308 | Diag(loc, diag::err_typecheck_duplicate_vector_components_not_mlvalue, |
| 1309 | lex->getSourceRange()); |
| 1310 | return QualType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1311 | } |
| 1312 | AssignmentCheckResult result; |
| 1313 | |
| 1314 | if (compoundType.isNull()) |
| 1315 | result = CheckSingleAssignmentConstraints(lhsType, rex); |
| 1316 | else |
| 1317 | result = CheckCompoundAssignmentConstraints(lhsType, rhsType); |
Steve Naroff | 7cbb146 | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 1318 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1319 | // decode the result (notice that extensions still return a type). |
| 1320 | switch (result) { |
| 1321 | case Compatible: |
| 1322 | break; |
| 1323 | case Incompatible: |
| 1324 | Diag(loc, diag::err_typecheck_assign_incompatible, |
| 1325 | lhsType.getAsString(), rhsType.getAsString(), |
| 1326 | lex->getSourceRange(), rex->getSourceRange()); |
| 1327 | hadError = true; |
| 1328 | break; |
| 1329 | case PointerFromInt: |
| 1330 | // check for null pointer constant (C99 6.3.2.3p3) |
| 1331 | if (compoundType.isNull() && !rex->isNullPointerConstant(Context)) { |
| 1332 | Diag(loc, diag::ext_typecheck_assign_pointer_int, |
| 1333 | lhsType.getAsString(), rhsType.getAsString(), |
| 1334 | lex->getSourceRange(), rex->getSourceRange()); |
| 1335 | } |
| 1336 | break; |
| 1337 | case IntFromPointer: |
| 1338 | Diag(loc, diag::ext_typecheck_assign_pointer_int, |
| 1339 | lhsType.getAsString(), rhsType.getAsString(), |
| 1340 | lex->getSourceRange(), rex->getSourceRange()); |
| 1341 | break; |
| 1342 | case IncompatiblePointer: |
| 1343 | Diag(loc, diag::ext_typecheck_assign_incompatible_pointer, |
| 1344 | lhsType.getAsString(), rhsType.getAsString(), |
| 1345 | lex->getSourceRange(), rex->getSourceRange()); |
| 1346 | break; |
| 1347 | case CompatiblePointerDiscardsQualifiers: |
| 1348 | Diag(loc, diag::ext_typecheck_assign_discards_qualifiers, |
| 1349 | lhsType.getAsString(), rhsType.getAsString(), |
| 1350 | lex->getSourceRange(), rex->getSourceRange()); |
| 1351 | break; |
| 1352 | } |
| 1353 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 1354 | // left operand unless the left operand has qualified type, in which case |
| 1355 | // it is the unqualified version of the type of the left operand. |
| 1356 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 1357 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 1358 | // C++ 5.17p1: the type of the assignment expression is that of its left |
| 1359 | // oprdu. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1360 | return hadError ? QualType() : lhsType.getUnqualifiedType(); |
| 1361 | } |
| 1362 | |
| 1363 | inline QualType Sema::CheckCommaOperands( // C99 6.5.17 |
| 1364 | Expr *&lex, Expr *&rex, SourceLocation loc) { |
| 1365 | UsualUnaryConversions(rex); |
| 1366 | return rex->getType(); |
| 1367 | } |
| 1368 | |
| 1369 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 1370 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
| 1371 | QualType Sema::CheckIncrementDecrementOperand(Expr *op, SourceLocation OpLoc) { |
| 1372 | QualType resType = op->getType(); |
| 1373 | assert(!resType.isNull() && "no type for increment/decrement expression"); |
| 1374 | |
Steve Naroff | d30e193 | 2007-08-24 17:20:07 +0000 | [diff] [blame] | 1375 | // C99 6.5.2.4p1: We allow complex as a GCC extension. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1376 | if (const PointerType *pt = dyn_cast<PointerType>(resType)) { |
| 1377 | if (!pt->getPointeeType()->isObjectType()) { // C99 6.5.2.4p2, 6.5.6p2 |
| 1378 | Diag(OpLoc, diag::err_typecheck_arithmetic_incomplete_type, |
| 1379 | resType.getAsString(), op->getSourceRange()); |
| 1380 | return QualType(); |
| 1381 | } |
Steve Naroff | d30e193 | 2007-08-24 17:20:07 +0000 | [diff] [blame] | 1382 | } else if (!resType->isRealType()) { |
| 1383 | if (resType->isComplexType()) |
| 1384 | // C99 does not support ++/-- on complex types. |
| 1385 | Diag(OpLoc, diag::ext_integer_increment_complex, |
| 1386 | resType.getAsString(), op->getSourceRange()); |
| 1387 | else { |
| 1388 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement, |
| 1389 | resType.getAsString(), op->getSourceRange()); |
| 1390 | return QualType(); |
| 1391 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1392 | } |
Steve Naroff | 6acc0f4 | 2007-08-23 21:37:33 +0000 | [diff] [blame] | 1393 | // At this point, we know we have a real, complex or pointer type. |
| 1394 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1395 | Expr::isModifiableLvalueResult mlval = op->isModifiableLvalue(); |
| 1396 | if (mlval != Expr::MLV_Valid) { |
| 1397 | // FIXME: emit a more precise diagnostic... |
| 1398 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_incr_decr, |
| 1399 | op->getSourceRange()); |
| 1400 | return QualType(); |
| 1401 | } |
| 1402 | return resType; |
| 1403 | } |
| 1404 | |
| 1405 | /// getPrimaryDeclaration - Helper function for CheckAddressOfOperand(). |
| 1406 | /// This routine allows us to typecheck complex/recursive expressions |
| 1407 | /// where the declaration is needed for type checking. Here are some |
| 1408 | /// examples: &s.xx, &s.zz[1].yy, &(1+2), &(XX), &"123"[2]. |
| 1409 | static Decl *getPrimaryDeclaration(Expr *e) { |
| 1410 | switch (e->getStmtClass()) { |
| 1411 | case Stmt::DeclRefExprClass: |
| 1412 | return cast<DeclRefExpr>(e)->getDecl(); |
| 1413 | case Stmt::MemberExprClass: |
| 1414 | return getPrimaryDeclaration(cast<MemberExpr>(e)->getBase()); |
| 1415 | case Stmt::ArraySubscriptExprClass: |
| 1416 | return getPrimaryDeclaration(cast<ArraySubscriptExpr>(e)->getBase()); |
| 1417 | case Stmt::CallExprClass: |
| 1418 | return getPrimaryDeclaration(cast<CallExpr>(e)->getCallee()); |
| 1419 | case Stmt::UnaryOperatorClass: |
| 1420 | return getPrimaryDeclaration(cast<UnaryOperator>(e)->getSubExpr()); |
| 1421 | case Stmt::ParenExprClass: |
| 1422 | return getPrimaryDeclaration(cast<ParenExpr>(e)->getSubExpr()); |
| 1423 | default: |
| 1424 | return 0; |
| 1425 | } |
| 1426 | } |
| 1427 | |
| 1428 | /// CheckAddressOfOperand - The operand of & must be either a function |
| 1429 | /// designator or an lvalue designating an object. If it is an lvalue, the |
| 1430 | /// object cannot be declared with storage class register or be a bit field. |
| 1431 | /// Note: The usual conversions are *not* applied to the operand of the & |
| 1432 | /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. |
| 1433 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
| 1434 | Decl *dcl = getPrimaryDeclaration(op); |
| 1435 | Expr::isLvalueResult lval = op->isLvalue(); |
| 1436 | |
| 1437 | if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1 |
| 1438 | if (dcl && isa<FunctionDecl>(dcl)) // allow function designators |
| 1439 | ; |
| 1440 | else { // FIXME: emit more specific diag... |
| 1441 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof, |
| 1442 | op->getSourceRange()); |
| 1443 | return QualType(); |
| 1444 | } |
| 1445 | } else if (dcl) { |
| 1446 | // We have an lvalue with a decl. Make sure the decl is not declared |
| 1447 | // with the register storage-class specifier. |
| 1448 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 1449 | if (vd->getStorageClass() == VarDecl::Register) { |
| 1450 | Diag(OpLoc, diag::err_typecheck_address_of_register, |
| 1451 | op->getSourceRange()); |
| 1452 | return QualType(); |
| 1453 | } |
| 1454 | } else |
| 1455 | assert(0 && "Unknown/unexpected decl type"); |
| 1456 | |
| 1457 | // FIXME: add check for bitfields! |
| 1458 | } |
| 1459 | // If the operand has type "type", the result has type "pointer to type". |
| 1460 | return Context.getPointerType(op->getType()); |
| 1461 | } |
| 1462 | |
| 1463 | QualType Sema::CheckIndirectionOperand(Expr *op, SourceLocation OpLoc) { |
| 1464 | UsualUnaryConversions(op); |
| 1465 | QualType qType = op->getType(); |
| 1466 | |
Chris Lattner | 7931f4a | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 1467 | if (const PointerType *PT = qType->getAsPointerType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1468 | QualType ptype = PT->getPointeeType(); |
| 1469 | // C99 6.5.3.2p4. "if it points to an object,...". |
| 1470 | if (ptype->isIncompleteType()) { // An incomplete type is not an object |
| 1471 | // GCC compat: special case 'void *' (treat as warning). |
| 1472 | if (ptype->isVoidType()) { |
| 1473 | Diag(OpLoc, diag::ext_typecheck_deref_ptr_to_void, |
| 1474 | qType.getAsString(), op->getSourceRange()); |
| 1475 | } else { |
| 1476 | Diag(OpLoc, diag::err_typecheck_deref_incomplete_type, |
| 1477 | ptype.getAsString(), op->getSourceRange()); |
| 1478 | return QualType(); |
| 1479 | } |
| 1480 | } |
| 1481 | return ptype; |
| 1482 | } |
| 1483 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer, |
| 1484 | qType.getAsString(), op->getSourceRange()); |
| 1485 | return QualType(); |
| 1486 | } |
| 1487 | |
| 1488 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 1489 | tok::TokenKind Kind) { |
| 1490 | BinaryOperator::Opcode Opc; |
| 1491 | switch (Kind) { |
| 1492 | default: assert(0 && "Unknown binop!"); |
| 1493 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 1494 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 1495 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 1496 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 1497 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 1498 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 1499 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 1500 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 1501 | case tok::less: Opc = BinaryOperator::LT; break; |
| 1502 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 1503 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 1504 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 1505 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 1506 | case tok::amp: Opc = BinaryOperator::And; break; |
| 1507 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 1508 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 1509 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 1510 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 1511 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 1512 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 1513 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 1514 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 1515 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 1516 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 1517 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 1518 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 1519 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 1520 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 1521 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 1522 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 1523 | } |
| 1524 | return Opc; |
| 1525 | } |
| 1526 | |
| 1527 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 1528 | tok::TokenKind Kind) { |
| 1529 | UnaryOperator::Opcode Opc; |
| 1530 | switch (Kind) { |
| 1531 | default: assert(0 && "Unknown unary op!"); |
| 1532 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 1533 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 1534 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 1535 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 1536 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 1537 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 1538 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 1539 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
| 1540 | case tok::kw_sizeof: Opc = UnaryOperator::SizeOf; break; |
| 1541 | case tok::kw___alignof: Opc = UnaryOperator::AlignOf; break; |
| 1542 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 1543 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 1544 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 1545 | } |
| 1546 | return Opc; |
| 1547 | } |
| 1548 | |
| 1549 | // Binary Operators. 'Tok' is the token for the operator. |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 1550 | Action::ExprResult Sema::ActOnBinOp(SourceLocation TokLoc, tok::TokenKind Kind, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1551 | ExprTy *LHS, ExprTy *RHS) { |
| 1552 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
| 1553 | Expr *lhs = (Expr *)LHS, *rhs = (Expr*)RHS; |
| 1554 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 1555 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 1556 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1557 | |
| 1558 | QualType ResultTy; // Result type of the binary operator. |
| 1559 | QualType CompTy; // Computation type for compound assignments (e.g. '+=') |
| 1560 | |
| 1561 | switch (Opc) { |
| 1562 | default: |
| 1563 | assert(0 && "Unknown binary expr!"); |
| 1564 | case BinaryOperator::Assign: |
| 1565 | ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, QualType()); |
| 1566 | break; |
| 1567 | case BinaryOperator::Mul: |
| 1568 | case BinaryOperator::Div: |
| 1569 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc); |
| 1570 | break; |
| 1571 | case BinaryOperator::Rem: |
| 1572 | ResultTy = CheckRemainderOperands(lhs, rhs, TokLoc); |
| 1573 | break; |
| 1574 | case BinaryOperator::Add: |
| 1575 | ResultTy = CheckAdditionOperands(lhs, rhs, TokLoc); |
| 1576 | break; |
| 1577 | case BinaryOperator::Sub: |
| 1578 | ResultTy = CheckSubtractionOperands(lhs, rhs, TokLoc); |
| 1579 | break; |
| 1580 | case BinaryOperator::Shl: |
| 1581 | case BinaryOperator::Shr: |
| 1582 | ResultTy = CheckShiftOperands(lhs, rhs, TokLoc); |
| 1583 | break; |
| 1584 | case BinaryOperator::LE: |
| 1585 | case BinaryOperator::LT: |
| 1586 | case BinaryOperator::GE: |
| 1587 | case BinaryOperator::GT: |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 1588 | ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, true); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1589 | break; |
| 1590 | case BinaryOperator::EQ: |
| 1591 | case BinaryOperator::NE: |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 1592 | ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, false); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1593 | break; |
| 1594 | case BinaryOperator::And: |
| 1595 | case BinaryOperator::Xor: |
| 1596 | case BinaryOperator::Or: |
| 1597 | ResultTy = CheckBitwiseOperands(lhs, rhs, TokLoc); |
| 1598 | break; |
| 1599 | case BinaryOperator::LAnd: |
| 1600 | case BinaryOperator::LOr: |
| 1601 | ResultTy = CheckLogicalOperands(lhs, rhs, TokLoc); |
| 1602 | break; |
| 1603 | case BinaryOperator::MulAssign: |
| 1604 | case BinaryOperator::DivAssign: |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1605 | CompTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc, true); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1606 | if (!CompTy.isNull()) |
| 1607 | ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy); |
| 1608 | break; |
| 1609 | case BinaryOperator::RemAssign: |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1610 | CompTy = CheckRemainderOperands(lhs, rhs, TokLoc, true); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1611 | if (!CompTy.isNull()) |
| 1612 | ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy); |
| 1613 | break; |
| 1614 | case BinaryOperator::AddAssign: |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1615 | CompTy = CheckAdditionOperands(lhs, rhs, TokLoc, true); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1616 | if (!CompTy.isNull()) |
| 1617 | ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy); |
| 1618 | break; |
| 1619 | case BinaryOperator::SubAssign: |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1620 | CompTy = CheckSubtractionOperands(lhs, rhs, TokLoc, true); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1621 | if (!CompTy.isNull()) |
| 1622 | ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy); |
| 1623 | break; |
| 1624 | case BinaryOperator::ShlAssign: |
| 1625 | case BinaryOperator::ShrAssign: |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1626 | CompTy = CheckShiftOperands(lhs, rhs, TokLoc, true); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1627 | if (!CompTy.isNull()) |
| 1628 | ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy); |
| 1629 | break; |
| 1630 | case BinaryOperator::AndAssign: |
| 1631 | case BinaryOperator::XorAssign: |
| 1632 | case BinaryOperator::OrAssign: |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 1633 | CompTy = CheckBitwiseOperands(lhs, rhs, TokLoc, true); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1634 | if (!CompTy.isNull()) |
| 1635 | ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy); |
| 1636 | break; |
| 1637 | case BinaryOperator::Comma: |
| 1638 | ResultTy = CheckCommaOperands(lhs, rhs, TokLoc); |
| 1639 | break; |
| 1640 | } |
| 1641 | if (ResultTy.isNull()) |
| 1642 | return true; |
| 1643 | if (CompTy.isNull()) |
Chris Lattner | f420df1 | 2007-08-28 18:36:55 +0000 | [diff] [blame] | 1644 | return new BinaryOperator(lhs, rhs, Opc, ResultTy, TokLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1645 | else |
Chris Lattner | f420df1 | 2007-08-28 18:36:55 +0000 | [diff] [blame] | 1646 | return new CompoundAssignOperator(lhs, rhs, Opc, ResultTy, CompTy, TokLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1647 | } |
| 1648 | |
| 1649 | // Unary Operators. 'Tok' is the token for the operator. |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 1650 | Action::ExprResult Sema::ActOnUnaryOp(SourceLocation OpLoc, tok::TokenKind Op, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1651 | ExprTy *input) { |
| 1652 | Expr *Input = (Expr*)input; |
| 1653 | UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); |
| 1654 | QualType resultType; |
| 1655 | switch (Opc) { |
| 1656 | default: |
| 1657 | assert(0 && "Unimplemented unary expr!"); |
| 1658 | case UnaryOperator::PreInc: |
| 1659 | case UnaryOperator::PreDec: |
| 1660 | resultType = CheckIncrementDecrementOperand(Input, OpLoc); |
| 1661 | break; |
| 1662 | case UnaryOperator::AddrOf: |
| 1663 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 1664 | break; |
| 1665 | case UnaryOperator::Deref: |
| 1666 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 1667 | break; |
| 1668 | case UnaryOperator::Plus: |
| 1669 | case UnaryOperator::Minus: |
| 1670 | UsualUnaryConversions(Input); |
| 1671 | resultType = Input->getType(); |
| 1672 | if (!resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 1673 | return Diag(OpLoc, diag::err_typecheck_unary_expr, |
| 1674 | resultType.getAsString()); |
| 1675 | break; |
| 1676 | case UnaryOperator::Not: // bitwise complement |
| 1677 | UsualUnaryConversions(Input); |
| 1678 | resultType = Input->getType(); |
Steve Naroff | d30e193 | 2007-08-24 17:20:07 +0000 | [diff] [blame] | 1679 | // C99 6.5.3.3p1. We allow complex as a GCC extension. |
| 1680 | if (!resultType->isIntegerType()) { |
| 1681 | if (resultType->isComplexType()) |
| 1682 | // C99 does not support '~' for complex conjugation. |
| 1683 | Diag(OpLoc, diag::ext_integer_complement_complex, |
| 1684 | resultType.getAsString()); |
| 1685 | else |
| 1686 | return Diag(OpLoc, diag::err_typecheck_unary_expr, |
| 1687 | resultType.getAsString()); |
| 1688 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1689 | break; |
| 1690 | case UnaryOperator::LNot: // logical negation |
| 1691 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
| 1692 | DefaultFunctionArrayConversion(Input); |
| 1693 | resultType = Input->getType(); |
| 1694 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
| 1695 | return Diag(OpLoc, diag::err_typecheck_unary_expr, |
| 1696 | resultType.getAsString()); |
| 1697 | // LNot always has type int. C99 6.5.3.3p5. |
| 1698 | resultType = Context.IntTy; |
| 1699 | break; |
| 1700 | case UnaryOperator::SizeOf: |
| 1701 | resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, true); |
| 1702 | break; |
| 1703 | case UnaryOperator::AlignOf: |
| 1704 | resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, false); |
| 1705 | break; |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1706 | case UnaryOperator::Real: |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1707 | case UnaryOperator::Imag: |
Chris Lattner | 5110ad5 | 2007-08-24 21:41:10 +0000 | [diff] [blame] | 1708 | resultType = CheckRealImagOperand(Input, OpLoc); |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1709 | break; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1710 | case UnaryOperator::Extension: |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1711 | resultType = Input->getType(); |
| 1712 | break; |
| 1713 | } |
| 1714 | if (resultType.isNull()) |
| 1715 | return true; |
| 1716 | return new UnaryOperator(Input, Opc, resultType, OpLoc); |
| 1717 | } |
| 1718 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 1719 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
| 1720 | Sema::ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1721 | SourceLocation LabLoc, |
| 1722 | IdentifierInfo *LabelII) { |
| 1723 | // Look up the record for this label identifier. |
| 1724 | LabelStmt *&LabelDecl = LabelMap[LabelII]; |
| 1725 | |
| 1726 | // If we haven't seen this label yet, create a forward reference. |
| 1727 | if (LabelDecl == 0) |
| 1728 | LabelDecl = new LabelStmt(LabLoc, LabelII, 0); |
| 1729 | |
| 1730 | // Create the AST node. The address of a label always has type 'void*'. |
Chris Lattner | a0d03a7 | 2007-08-03 17:31:20 +0000 | [diff] [blame] | 1731 | return new AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 1732 | Context.getPointerType(Context.VoidTy)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1733 | } |
| 1734 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 1735 | Sema::ExprResult Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtTy *substmt, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1736 | SourceLocation RPLoc) { // "({..})" |
| 1737 | Stmt *SubStmt = static_cast<Stmt*>(substmt); |
| 1738 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 1739 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 1740 | |
| 1741 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 1742 | // example, it is not possible to goto into a stmt expression apparently. |
| 1743 | // More semantic analysis is needed. |
| 1744 | |
| 1745 | // FIXME: the last statement in the compount stmt has its value used. We |
| 1746 | // should not warn about it being unused. |
| 1747 | |
| 1748 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 1749 | // as the type of the stmtexpr. |
| 1750 | QualType Ty = Context.VoidTy; |
| 1751 | |
| 1752 | if (!Compound->body_empty()) |
| 1753 | if (Expr *LastExpr = dyn_cast<Expr>(Compound->body_back())) |
| 1754 | Ty = LastExpr->getType(); |
| 1755 | |
| 1756 | return new StmtExpr(Compound, Ty, LPLoc, RPLoc); |
| 1757 | } |
Steve Naroff | 63bad2d | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 1758 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 1759 | Sema::ExprResult Sema::ActOnBuiltinOffsetOf(SourceLocation BuiltinLoc, |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 1760 | SourceLocation TypeLoc, |
| 1761 | TypeTy *argty, |
| 1762 | OffsetOfComponent *CompPtr, |
| 1763 | unsigned NumComponents, |
| 1764 | SourceLocation RPLoc) { |
| 1765 | QualType ArgTy = QualType::getFromOpaquePtr(argty); |
| 1766 | assert(!ArgTy.isNull() && "Missing type argument!"); |
| 1767 | |
| 1768 | // We must have at least one component that refers to the type, and the first |
| 1769 | // one is known to be a field designator. Verify that the ArgTy represents |
| 1770 | // a struct/union/class. |
| 1771 | if (!ArgTy->isRecordType()) |
| 1772 | return Diag(TypeLoc, diag::err_offsetof_record_type,ArgTy.getAsString()); |
| 1773 | |
| 1774 | // Otherwise, create a compound literal expression as the base, and |
| 1775 | // iteratively process the offsetof designators. |
| 1776 | Expr *Res = new CompoundLiteralExpr(ArgTy, 0); |
| 1777 | |
Chris Lattner | b37522e | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 1778 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 1779 | // GCC extension, diagnose them. |
| 1780 | if (NumComponents != 1) |
| 1781 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator, |
| 1782 | SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd)); |
| 1783 | |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 1784 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 1785 | const OffsetOfComponent &OC = CompPtr[i]; |
| 1786 | if (OC.isBrackets) { |
| 1787 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 1788 | const ArrayType *AT = Res->getType()->getAsArrayType(); |
| 1789 | if (!AT) { |
| 1790 | delete Res; |
| 1791 | return Diag(OC.LocEnd, diag::err_offsetof_array_type, |
| 1792 | Res->getType().getAsString()); |
| 1793 | } |
| 1794 | |
Chris Lattner | 2af6a80 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 1795 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 1796 | |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 1797 | // C99 6.5.2.1p1 |
| 1798 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
| 1799 | if (!Idx->getType()->isIntegerType()) |
| 1800 | return Diag(Idx->getLocStart(), diag::err_typecheck_subscript, |
| 1801 | Idx->getSourceRange()); |
| 1802 | |
| 1803 | Res = new ArraySubscriptExpr(Res, Idx, AT->getElementType(), OC.LocEnd); |
| 1804 | continue; |
| 1805 | } |
| 1806 | |
| 1807 | const RecordType *RC = Res->getType()->getAsRecordType(); |
| 1808 | if (!RC) { |
| 1809 | delete Res; |
| 1810 | return Diag(OC.LocEnd, diag::err_offsetof_record_type, |
| 1811 | Res->getType().getAsString()); |
| 1812 | } |
| 1813 | |
| 1814 | // Get the decl corresponding to this. |
| 1815 | RecordDecl *RD = RC->getDecl(); |
| 1816 | FieldDecl *MemberDecl = RD->getMember(OC.U.IdentInfo); |
| 1817 | if (!MemberDecl) |
| 1818 | return Diag(BuiltinLoc, diag::err_typecheck_no_member, |
| 1819 | OC.U.IdentInfo->getName(), |
| 1820 | SourceRange(OC.LocStart, OC.LocEnd)); |
Chris Lattner | 2af6a80 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 1821 | |
| 1822 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 1823 | // FIXME: Verify that MemberDecl isn't a bitfield. |
| 1824 | |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 1825 | Res = new MemberExpr(Res, false, MemberDecl, OC.LocEnd); |
| 1826 | } |
| 1827 | |
| 1828 | return new UnaryOperator(Res, UnaryOperator::OffsetOf, Context.getSizeType(), |
| 1829 | BuiltinLoc); |
| 1830 | } |
| 1831 | |
| 1832 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 1833 | Sema::ExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
Steve Naroff | 63bad2d | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 1834 | TypeTy *arg1, TypeTy *arg2, |
| 1835 | SourceLocation RPLoc) { |
| 1836 | QualType argT1 = QualType::getFromOpaquePtr(arg1); |
| 1837 | QualType argT2 = QualType::getFromOpaquePtr(arg2); |
| 1838 | |
| 1839 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
| 1840 | |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 1841 | return new TypesCompatibleExpr(Context.IntTy, BuiltinLoc, argT1, argT2,RPLoc); |
Steve Naroff | 63bad2d | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 1842 | } |
| 1843 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 1844 | Sema::ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, ExprTy *cond, |
Steve Naroff | 93c5301 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 1845 | ExprTy *expr1, ExprTy *expr2, |
| 1846 | SourceLocation RPLoc) { |
| 1847 | Expr *CondExpr = static_cast<Expr*>(cond); |
| 1848 | Expr *LHSExpr = static_cast<Expr*>(expr1); |
| 1849 | Expr *RHSExpr = static_cast<Expr*>(expr2); |
| 1850 | |
| 1851 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 1852 | |
| 1853 | // The conditional expression is required to be a constant expression. |
| 1854 | llvm::APSInt condEval(32); |
| 1855 | SourceLocation ExpLoc; |
| 1856 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
| 1857 | return Diag(ExpLoc, diag::err_typecheck_choose_expr_requires_constant, |
| 1858 | CondExpr->getSourceRange()); |
| 1859 | |
| 1860 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 1861 | QualType resType = condEval.getZExtValue() ? LHSExpr->getType() : |
| 1862 | RHSExpr->getType(); |
| 1863 | return new ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, RPLoc); |
| 1864 | } |
| 1865 | |
Anders Carlsson | 3676033 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1866 | Sema::ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 1867 | ExprTy *expr, TypeTy *type, |
| 1868 | SourceLocation RPLoc) |
| 1869 | { |
| 1870 | Expr *E = static_cast<Expr*>(expr); |
| 1871 | QualType T = QualType::getFromOpaquePtr(type); |
| 1872 | |
| 1873 | InitBuiltinVaListType(); |
| 1874 | |
| 1875 | Sema::AssignmentCheckResult result; |
| 1876 | |
| 1877 | result = CheckAssignmentConstraints(Context.getBuiltinVaListType(), |
| 1878 | E->getType()); |
| 1879 | if (result != Compatible) |
| 1880 | return Diag(E->getLocStart(), |
| 1881 | diag::err_first_argument_to_va_arg_not_of_type_va_list, |
| 1882 | E->getType().getAsString(), |
| 1883 | E->getSourceRange()); |
| 1884 | |
| 1885 | // FIXME: Warn if a non-POD type is passed in. |
| 1886 | |
| 1887 | return new VAArgExpr(BuiltinLoc, E, T, RPLoc); |
| 1888 | } |
| 1889 | |
Anders Carlsson | a66cad4 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 1890 | // TODO: Move this to SemaObjC.cpp |
Anders Carlsson | 8be1d40 | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 1891 | Sema::ExprResult Sema::ParseObjCStringLiteral(ExprTy *string) { |
Anders Carlsson | a66cad4 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 1892 | StringLiteral* S = static_cast<StringLiteral *>(string); |
| 1893 | |
| 1894 | if (CheckBuiltinCFStringArgument(S)) |
| 1895 | return true; |
| 1896 | |
Steve Naroff | f2e3031 | 2007-10-15 23:35:17 +0000 | [diff] [blame] | 1897 | if (Context.getObjcConstantStringInterface().isNull()) { |
| 1898 | // Initialize the constant string interface lazily. This assumes |
| 1899 | // the NSConstantString interface is seen in this translation unit. |
| 1900 | IdentifierInfo *NSIdent = &Context.Idents.get("NSConstantString"); |
| 1901 | ScopedDecl *IFace = LookupScopedDecl(NSIdent, Decl::IDNS_Ordinary, |
| 1902 | SourceLocation(), TUScope); |
Steve Naroff | 134c350 | 2007-10-16 00:00:18 +0000 | [diff] [blame] | 1903 | ObjcInterfaceDecl *strIFace = dyn_cast_or_null<ObjcInterfaceDecl>(IFace); |
| 1904 | assert(strIFace && "missing '@interface NSConstantString'"); |
| 1905 | Context.setObjcConstantStringInterface(strIFace); |
Steve Naroff | f2e3031 | 2007-10-15 23:35:17 +0000 | [diff] [blame] | 1906 | } |
| 1907 | QualType t = Context.getObjcConstantStringInterface(); |
Anders Carlsson | a66cad4 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 1908 | t = Context.getPointerType(t); |
Anders Carlsson | a66cad4 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 1909 | return new ObjCStringLiteral(S, t); |
| 1910 | } |
Anders Carlsson | 8be1d40 | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 1911 | |
| 1912 | Sema::ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc, |
Chris Lattner | cfd61c8 | 2007-10-16 22:51:17 +0000 | [diff] [blame] | 1913 | SourceLocation EncodeLoc, |
Anders Carlsson | 8be1d40 | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 1914 | SourceLocation LParenLoc, |
| 1915 | TypeTy *Ty, |
| 1916 | SourceLocation RParenLoc) { |
| 1917 | QualType EncodedType = QualType::getFromOpaquePtr(Ty); |
| 1918 | |
| 1919 | QualType t = Context.getPointerType(Context.CharTy); |
| 1920 | return new ObjCEncodeExpr(t, EncodedType, AtLoc, RParenLoc); |
| 1921 | } |
Steve Naroff | d3f5ee4 | 2007-09-17 21:01:15 +0000 | [diff] [blame] | 1922 | |
Fariborz Jahanian | f807c20 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1923 | Sema::ExprResult Sema::ParseObjCSelectorExpression(Selector Sel, |
| 1924 | SourceLocation AtLoc, |
Fariborz Jahanian | 957448a | 2007-10-16 23:21:02 +0000 | [diff] [blame^] | 1925 | SourceLocation SelLoc, |
Fariborz Jahanian | f807c20 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1926 | SourceLocation LParenLoc, |
| 1927 | SourceLocation RParenLoc) { |
| 1928 | QualType t = GetObjcSelType(AtLoc); |
| 1929 | return new ObjCSelectorExpr(t, Sel, AtLoc, RParenLoc); |
| 1930 | } |
| 1931 | |
Steve Naroff | 5266418 | 2007-10-16 23:12:48 +0000 | [diff] [blame] | 1932 | |
| 1933 | bool Sema::CheckMessageArgumentTypes(Expr **Args, unsigned NumArgs, |
| 1934 | ObjcMethodDecl *Method) { |
| 1935 | bool anyIncompatibleArgs = false; |
| 1936 | |
| 1937 | for (unsigned i = 0; i < NumArgs; i++) { |
| 1938 | Expr *argExpr = Args[i]; |
| 1939 | assert(argExpr && "CheckMessageArgumentTypes(): missing expression"); |
| 1940 | |
| 1941 | QualType lhsType = Method->getParamDecl(i)->getType(); |
| 1942 | QualType rhsType = argExpr->getType(); |
| 1943 | |
| 1944 | // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8]. |
| 1945 | if (const ArrayType *ary = lhsType->getAsArrayType()) |
| 1946 | lhsType = Context.getPointerType(ary->getElementType()); |
| 1947 | else if (lhsType->isFunctionType()) |
| 1948 | lhsType = Context.getPointerType(lhsType); |
| 1949 | |
| 1950 | AssignmentCheckResult result = CheckSingleAssignmentConstraints(lhsType, |
| 1951 | argExpr); |
| 1952 | if (Args[i] != argExpr) // The expression was converted. |
| 1953 | Args[i] = argExpr; // Make sure we store the converted expression. |
| 1954 | SourceLocation l = argExpr->getLocStart(); |
| 1955 | |
| 1956 | // decode the result (notice that AST's are still created for extensions). |
| 1957 | switch (result) { |
| 1958 | case Compatible: |
| 1959 | break; |
| 1960 | case PointerFromInt: |
| 1961 | // check for null pointer constant (C99 6.3.2.3p3) |
| 1962 | if (!argExpr->isNullPointerConstant(Context)) { |
| 1963 | Diag(l, diag::ext_typecheck_sending_pointer_int, |
| 1964 | lhsType.getAsString(), rhsType.getAsString(), |
| 1965 | argExpr->getSourceRange()); |
| 1966 | } |
| 1967 | break; |
| 1968 | case IntFromPointer: |
| 1969 | Diag(l, diag::ext_typecheck_sending_pointer_int, |
| 1970 | lhsType.getAsString(), rhsType.getAsString(), |
| 1971 | argExpr->getSourceRange()); |
| 1972 | break; |
| 1973 | case IncompatiblePointer: |
| 1974 | Diag(l, diag::ext_typecheck_sending_incompatible_pointer, |
| 1975 | rhsType.getAsString(), lhsType.getAsString(), |
| 1976 | argExpr->getSourceRange()); |
| 1977 | break; |
| 1978 | case CompatiblePointerDiscardsQualifiers: |
| 1979 | Diag(l, diag::ext_typecheck_passing_discards_qualifiers, |
| 1980 | rhsType.getAsString(), lhsType.getAsString(), |
| 1981 | argExpr->getSourceRange()); |
| 1982 | break; |
| 1983 | case Incompatible: |
| 1984 | Diag(l, diag::err_typecheck_sending_incompatible, |
| 1985 | rhsType.getAsString(), lhsType.getAsString(), |
| 1986 | argExpr->getSourceRange()); |
| 1987 | anyIncompatibleArgs = true; |
| 1988 | } |
| 1989 | } |
| 1990 | return anyIncompatibleArgs; |
| 1991 | } |
| 1992 | |
Steve Naroff | 4ed9d66 | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1993 | // ActOnClassMessage - used for both unary and keyword messages. |
| 1994 | // ArgExprs is optional - if it is present, the number of expressions |
| 1995 | // is obtained from Sel.getNumArgs(). |
| 1996 | Sema::ExprResult Sema::ActOnClassMessage( |
Steve Naroff | fa465d1 | 2007-10-02 20:01:56 +0000 | [diff] [blame] | 1997 | IdentifierInfo *receiverName, Selector Sel, |
Steve Naroff | 4ed9d66 | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1998 | SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args) |
Steve Naroff | d3f5ee4 | 2007-09-17 21:01:15 +0000 | [diff] [blame] | 1999 | { |
Steve Naroff | fa465d1 | 2007-10-02 20:01:56 +0000 | [diff] [blame] | 2000 | assert(receiverName && "missing receiver class name"); |
Steve Naroff | c39ca26 | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 2001 | |
Steve Naroff | 5266418 | 2007-10-16 23:12:48 +0000 | [diff] [blame] | 2002 | Expr **ArgExprs = reinterpret_cast<Expr **>(Args); |
Steve Naroff | fa465d1 | 2007-10-02 20:01:56 +0000 | [diff] [blame] | 2003 | ObjcInterfaceDecl* ClassDecl = getObjCInterfaceDecl(receiverName); |
| 2004 | ObjcMethodDecl *Method = ClassDecl->lookupClassMethod(Sel); |
Steve Naroff | 7e46145 | 2007-10-16 20:39:36 +0000 | [diff] [blame] | 2005 | QualType returnType; |
| 2006 | if (!Method) { |
| 2007 | Diag(lbrac, diag::warn_method_not_found, std::string("+"), Sel.getName(), |
| 2008 | SourceRange(lbrac, rbrac)); |
| 2009 | returnType = GetObjcIdType(); |
| 2010 | } else { |
Steve Naroff | 171f5b1 | 2007-10-16 21:36:54 +0000 | [diff] [blame] | 2011 | returnType = Method->getResultType(); |
Steve Naroff | 5266418 | 2007-10-16 23:12:48 +0000 | [diff] [blame] | 2012 | if (Sel.getNumArgs()) { |
| 2013 | if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method)) |
| 2014 | return true; |
| 2015 | } |
Steve Naroff | 7e46145 | 2007-10-16 20:39:36 +0000 | [diff] [blame] | 2016 | } |
Steve Naroff | 7e46145 | 2007-10-16 20:39:36 +0000 | [diff] [blame] | 2017 | return new ObjCMessageExpr(receiverName, Sel, returnType, lbrac, rbrac, |
Chris Lattner | 71c0111 | 2007-10-10 23:42:28 +0000 | [diff] [blame] | 2018 | ArgExprs); |
Steve Naroff | d3f5ee4 | 2007-09-17 21:01:15 +0000 | [diff] [blame] | 2019 | } |
| 2020 | |
Steve Naroff | 4ed9d66 | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 2021 | // ActOnInstanceMessage - used for both unary and keyword messages. |
| 2022 | // ArgExprs is optional - if it is present, the number of expressions |
| 2023 | // is obtained from Sel.getNumArgs(). |
| 2024 | Sema::ExprResult Sema::ActOnInstanceMessage( |
Steve Naroff | 6cb1d36 | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 2025 | ExprTy *receiver, Selector Sel, |
Steve Naroff | 4ed9d66 | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 2026 | SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args) |
| 2027 | { |
Steve Naroff | c39ca26 | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 2028 | assert(receiver && "missing receiver expression"); |
| 2029 | |
Steve Naroff | 5266418 | 2007-10-16 23:12:48 +0000 | [diff] [blame] | 2030 | Expr **ArgExprs = reinterpret_cast<Expr **>(Args); |
Steve Naroff | c39ca26 | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 2031 | Expr *RExpr = static_cast<Expr *>(receiver); |
Steve Naroff | fa465d1 | 2007-10-02 20:01:56 +0000 | [diff] [blame] | 2032 | QualType receiverType = RExpr->getType(); |
Steve Naroff | ee1de13 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 2033 | QualType returnType; |
| 2034 | |
| 2035 | if (receiverType == GetObjcIdType()) { |
Steve Naroff | 705380b | 2007-10-14 23:13:51 +0000 | [diff] [blame] | 2036 | ObjcMethodDecl *Method = InstanceMethodPool[Sel].Method; |
Steve Naroff | 7e46145 | 2007-10-16 20:39:36 +0000 | [diff] [blame] | 2037 | if (!Method) { |
| 2038 | Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(), |
| 2039 | SourceRange(lbrac, rbrac)); |
| 2040 | returnType = GetObjcIdType(); |
| 2041 | } else { |
Steve Naroff | 171f5b1 | 2007-10-16 21:36:54 +0000 | [diff] [blame] | 2042 | returnType = Method->getResultType(); |
Steve Naroff | 5266418 | 2007-10-16 23:12:48 +0000 | [diff] [blame] | 2043 | if (Sel.getNumArgs()) |
| 2044 | if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method)) |
| 2045 | return true; |
Steve Naroff | 7e46145 | 2007-10-16 20:39:36 +0000 | [diff] [blame] | 2046 | } |
Steve Naroff | ee1de13 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 2047 | } else { |
Chris Lattner | 71c0111 | 2007-10-10 23:42:28 +0000 | [diff] [blame] | 2048 | // FIXME (snaroff): checking in this code from Patrick. Needs to be |
| 2049 | // revisited. how do we get the ClassDecl from the receiver expression? |
Steve Naroff | ee1de13 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 2050 | while (receiverType->isPointerType()) { |
Chris Lattner | 71c0111 | 2007-10-10 23:42:28 +0000 | [diff] [blame] | 2051 | PointerType *pointerType = |
| 2052 | static_cast<PointerType*>(receiverType.getTypePtr()); |
Steve Naroff | ee1de13 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 2053 | receiverType = pointerType->getPointeeType(); |
| 2054 | } |
Chris Lattner | 71c0111 | 2007-10-10 23:42:28 +0000 | [diff] [blame] | 2055 | assert(ObjcInterfaceType::classof(receiverType.getTypePtr()) && |
| 2056 | "bad receiver type"); |
Steve Naroff | ee1de13 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 2057 | ObjcInterfaceDecl* ClassDecl = static_cast<ObjcInterfaceType*>( |
| 2058 | receiverType.getTypePtr())->getDecl(); |
Steve Naroff | 7e46145 | 2007-10-16 20:39:36 +0000 | [diff] [blame] | 2059 | // FIXME: consider using InstanceMethodPool, since it will be faster |
| 2060 | // than the following method (which can do *many* linear searches). The |
| 2061 | // idea is to add class info to InstanceMethodPool... |
Steve Naroff | ee1de13 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 2062 | ObjcMethodDecl *Method = ClassDecl->lookupInstanceMethod(Sel); |
Steve Naroff | 7e46145 | 2007-10-16 20:39:36 +0000 | [diff] [blame] | 2063 | if (!Method) { |
| 2064 | Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(), |
| 2065 | SourceRange(lbrac, rbrac)); |
| 2066 | returnType = GetObjcIdType(); |
| 2067 | } else { |
Steve Naroff | 171f5b1 | 2007-10-16 21:36:54 +0000 | [diff] [blame] | 2068 | returnType = Method->getResultType(); |
Steve Naroff | 5266418 | 2007-10-16 23:12:48 +0000 | [diff] [blame] | 2069 | if (Sel.getNumArgs()) |
| 2070 | if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method)) |
| 2071 | return true; |
Steve Naroff | 7e46145 | 2007-10-16 20:39:36 +0000 | [diff] [blame] | 2072 | } |
Steve Naroff | fa465d1 | 2007-10-02 20:01:56 +0000 | [diff] [blame] | 2073 | } |
Steve Naroff | fa465d1 | 2007-10-02 20:01:56 +0000 | [diff] [blame] | 2074 | return new ObjCMessageExpr(RExpr, Sel, returnType, lbrac, rbrac, ArgExprs); |
Steve Naroff | d3f5ee4 | 2007-09-17 21:01:15 +0000 | [diff] [blame] | 2075 | } |