mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 16:46:09 +00:00

lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402
52 lines
1.9 KiB
C++
52 lines
1.9 KiB
C++
//===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements semantic analysis for C++ expressions.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "Sema.h"
|
|
#include "clang/AST/ExprCXX.h"
|
|
#include "clang/AST/ASTContext.h"
|
|
using namespace clang;
|
|
|
|
/// ActOnCXXCasts - Parse {dynamic,static,reinterpret,const}_cast's.
|
|
Action::ExprResult
|
|
Sema::ActOnCXXCasts(SourceLocation OpLoc, tok::TokenKind Kind,
|
|
SourceLocation LAngleBracketLoc, TypeTy *Ty,
|
|
SourceLocation RAngleBracketLoc,
|
|
SourceLocation LParenLoc, ExprTy *E,
|
|
SourceLocation RParenLoc) {
|
|
CXXCastExpr::Opcode Op;
|
|
|
|
switch (Kind) {
|
|
default: assert(0 && "Unknown C++ cast!");
|
|
case tok::kw_const_cast: Op = CXXCastExpr::ConstCast; break;
|
|
case tok::kw_dynamic_cast: Op = CXXCastExpr::DynamicCast; break;
|
|
case tok::kw_reinterpret_cast: Op = CXXCastExpr::ReinterpretCast; break;
|
|
case tok::kw_static_cast: Op = CXXCastExpr::StaticCast; break;
|
|
}
|
|
|
|
return new CXXCastExpr(Op, QualType::getFromOpaquePtr(Ty), (Expr*)E, OpLoc);
|
|
}
|
|
|
|
/// ActOnCXXBoolLiteral - Parse {true,false} literals.
|
|
Action::ExprResult
|
|
Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
|
|
assert((Kind != tok::kw_true || Kind != tok::kw_false) &&
|
|
"Unknown C++ Boolean value!");
|
|
return new CXXBoolLiteralExpr(Kind == tok::kw_true, Context.BoolTy, OpLoc);
|
|
}
|
|
|
|
/// ActOnCXXThrow - Parse throw expressions.
|
|
Action::ExprResult
|
|
Sema::ActOnCXXThrow(SourceLocation OpLoc, ExprTy *E) {
|
|
return new CXXThrowExpr((Expr*)E, Context.VoidTy, OpLoc);
|
|
}
|