blob: b6c2d68837b92e56c044d1165ab66a3cb118597c [file] [log] [blame]
Chris Lattner29375652006-12-04 18:06:35 +00001//===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Bill Wendling and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
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"
16using namespace llvm;
17using namespace clang;
18
19/// ParseCXXCasts - Parse {dynamic,static,reinterpret,const}_cast's.
20Action::ExprResult
21Sema::ParseCXXCasts(SourceLocation OpLoc, tok::TokenKind Kind,
22 SourceLocation LAngleBracketLoc, TypeTy *Ty,
23 SourceLocation RAngleBracketLoc,
24 SourceLocation LParenLoc, ExprTy *E,
25 SourceLocation RParenLoc) {
26 CXXCastExpr::Opcode Op;
27
28 switch (Kind) {
Bill Wendling4073ed52007-02-13 01:51:42 +000029 default: assert(0 && "Unknown C++ cast!");
Chris Lattner29375652006-12-04 18:06:35 +000030 case tok::kw_const_cast: Op = CXXCastExpr::ConstCast; break;
31 case tok::kw_dynamic_cast: Op = CXXCastExpr::DynamicCast; break;
32 case tok::kw_reinterpret_cast: Op = CXXCastExpr::ReinterpretCast; break;
33 case tok::kw_static_cast: Op = CXXCastExpr::StaticCast; break;
34 }
35
36 return new CXXCastExpr(Op, TypeRef::getFromOpaquePtr(Ty), (Expr*)E);
37}
Bill Wendling4073ed52007-02-13 01:51:42 +000038
39/// ParseCXXBoolLiteral - Parse {true,false} literals.
40Action::ExprResult
41Sema::ParseCXXBoolLiteral(SourceLocation, tok::TokenKind Kind) {
42 assert((Kind != tok::kw_true || Kind != tok::kw_false) &&
Bill Wendlingbf313b02007-02-13 20:09:46 +000043 "Unknown C++ Boolean value!");
Bill Wendling4073ed52007-02-13 01:51:42 +000044 return new CXXBoolLiteralExpr(Kind == tok::kw_true);
45}