Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1 | //===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 959e5be | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for C++ expressions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
| 15 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | ac5d4f1 | 2007-08-25 14:02:58 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | 8d03cbe | 2008-08-11 03:27:53 +0000 | [diff] [blame^] | 17 | #include "clang/Basic/Diagnostic.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 18 | using namespace clang; |
| 19 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 20 | /// ActOnCXXCasts - Parse {dynamic,static,reinterpret,const}_cast's. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 21 | Action::ExprResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 22 | Sema::ActOnCXXCasts(SourceLocation OpLoc, tok::TokenKind Kind, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 23 | SourceLocation LAngleBracketLoc, TypeTy *Ty, |
| 24 | SourceLocation RAngleBracketLoc, |
| 25 | SourceLocation LParenLoc, ExprTy *E, |
| 26 | SourceLocation RParenLoc) { |
| 27 | CXXCastExpr::Opcode Op; |
| 28 | |
| 29 | switch (Kind) { |
| 30 | default: assert(0 && "Unknown C++ cast!"); |
| 31 | case tok::kw_const_cast: Op = CXXCastExpr::ConstCast; break; |
| 32 | case tok::kw_dynamic_cast: Op = CXXCastExpr::DynamicCast; break; |
| 33 | case tok::kw_reinterpret_cast: Op = CXXCastExpr::ReinterpretCast; break; |
| 34 | case tok::kw_static_cast: Op = CXXCastExpr::StaticCast; break; |
| 35 | } |
| 36 | |
| 37 | return new CXXCastExpr(Op, QualType::getFromOpaquePtr(Ty), (Expr*)E, OpLoc); |
| 38 | } |
| 39 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 40 | /// ActOnCXXBoolLiteral - Parse {true,false} literals. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 41 | Action::ExprResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 42 | Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 43 | assert((Kind != tok::kw_true || Kind != tok::kw_false) && |
| 44 | "Unknown C++ Boolean value!"); |
Steve Naroff | ac5d4f1 | 2007-08-25 14:02:58 +0000 | [diff] [blame] | 45 | return new CXXBoolLiteralExpr(Kind == tok::kw_true, Context.BoolTy, OpLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 46 | } |
Chris Lattner | a7447ba | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 47 | |
| 48 | /// ActOnCXXThrow - Parse throw expressions. |
| 49 | Action::ExprResult |
| 50 | Sema::ActOnCXXThrow(SourceLocation OpLoc, ExprTy *E) { |
| 51 | return new CXXThrowExpr((Expr*)E, Context.VoidTy, OpLoc); |
| 52 | } |
Argiris Kirtzidis | 38f1671 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 53 | |
| 54 | Action::ExprResult Sema::ActOnCXXThis(SourceLocation ThisLoc) { |
| 55 | /// C++ 9.3.2: In the body of a non-static member function, the keyword this |
| 56 | /// is a non-lvalue expression whose value is the address of the object for |
| 57 | /// which the function is called. |
| 58 | |
| 59 | if (!isa<FunctionDecl>(CurContext)) { |
| 60 | Diag(ThisLoc, diag::err_invalid_this_use); |
| 61 | return ExprResult(true); |
| 62 | } |
| 63 | |
| 64 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) |
| 65 | if (MD->isInstance()) |
Chris Lattner | 6990929 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 66 | return new PredefinedExpr(ThisLoc, MD->getThisType(Context), |
| 67 | PredefinedExpr::CXXThis); |
Argiris Kirtzidis | 38f1671 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 68 | |
| 69 | return Diag(ThisLoc, diag::err_invalid_this_use); |
| 70 | } |