2006-11-10 05:03:26 +00:00
|
|
|
//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Chris Lattner and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements semantic analysis for expressions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Sema.h"
|
2006-11-10 06:20:45 +00:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2006-11-20 04:58:19 +00:00
|
|
|
#include "clang/AST/Decl.h"
|
2006-11-10 05:03:26 +00:00
|
|
|
#include "clang/AST/Expr.h"
|
|
|
|
#include "clang/Lex/Preprocessor.h"
|
2007-03-09 23:16:33 +00:00
|
|
|
#include "clang/Lex/LiteralSupport.h"
|
2007-03-13 20:29:44 +00:00
|
|
|
#include "clang/Basic/SourceManager.h"
|
2006-11-10 05:03:26 +00:00
|
|
|
#include "clang/Basic/Diagnostic.h"
|
2006-11-20 06:49:47 +00:00
|
|
|
#include "clang/Basic/LangOptions.h"
|
2006-11-10 05:03:26 +00:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace clang;
|
|
|
|
|
2007-02-21 23:46:25 +00:00
|
|
|
/// ParseStringLiteral - The specified tokens were lexed as pasted string
|
2006-11-10 05:03:26 +00:00
|
|
|
/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
|
|
|
|
/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
|
|
|
|
/// multiple tokens. However, the common case is that StringToks points to one
|
|
|
|
/// string.
|
|
|
|
///
|
|
|
|
Action::ExprResult
|
2007-02-21 23:46:25 +00:00
|
|
|
Sema::ParseStringLiteral(const LexerToken *StringToks, unsigned NumStringToks) {
|
2006-11-10 05:03:26 +00:00
|
|
|
assert(NumStringToks && "Must have at least one string!");
|
|
|
|
|
2007-03-13 22:37:02 +00:00
|
|
|
StringLiteralParser Literal(StringToks, NumStringToks, PP, Context.Target);
|
|
|
|
if (Literal.hadError)
|
|
|
|
return ExprResult(true);
|
2006-11-10 05:03:26 +00:00
|
|
|
|
|
|
|
SmallVector<SourceLocation, 4> StringTokLocs;
|
|
|
|
for (unsigned i = 0; i != NumStringToks; ++i)
|
|
|
|
StringTokLocs.push_back(StringToks[i].getLocation());
|
2007-03-23 22:27:02 +00:00
|
|
|
|
|
|
|
// FIXME: handle wchar_t
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType t = Context.getPointerType(Context.CharTy);
|
2007-03-23 22:27:02 +00:00
|
|
|
|
2006-11-10 05:03:26 +00:00
|
|
|
// FIXME: use factory.
|
|
|
|
// Pass &StringTokLocs[0], StringTokLocs.size() to factory!
|
2007-03-13 22:37:02 +00:00
|
|
|
return new StringLiteral(Literal.GetString(), Literal.GetStringLength(),
|
2007-03-23 22:27:02 +00:00
|
|
|
Literal.AnyWide, t);
|
2006-11-10 05:03:26 +00:00
|
|
|
}
|
|
|
|
|
2006-11-10 05:29:30 +00:00
|
|
|
|
2006-11-20 06:49:47 +00:00
|
|
|
/// ParseIdentifierExpr - The parser read an identifier in expression context,
|
|
|
|
/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
|
|
|
|
/// identifier is used in an function call context.
|
|
|
|
Sema::ExprResult Sema::ParseIdentifierExpr(Scope *S, SourceLocation Loc,
|
|
|
|
IdentifierInfo &II,
|
|
|
|
bool HasTrailingLParen) {
|
2006-11-20 04:58:19 +00:00
|
|
|
// Could be enum-constant or decl.
|
2007-01-28 08:20:04 +00:00
|
|
|
Decl *D = LookupScopedDecl(&II, Decl::IDNS_Ordinary, Loc, S);
|
2006-11-20 04:58:19 +00:00
|
|
|
if (D == 0) {
|
2007-02-13 01:51:42 +00:00
|
|
|
// Otherwise, this could be an implicitly declared function reference (legal
|
2007-01-28 08:20:04 +00:00
|
|
|
// in C90, extension in C99).
|
2006-11-20 06:49:47 +00:00
|
|
|
if (HasTrailingLParen &&
|
|
|
|
// Not in C++.
|
2007-03-23 22:27:02 +00:00
|
|
|
!getLangOptions().CPlusPlus)
|
2006-11-20 06:49:47 +00:00
|
|
|
D = ImplicitlyDefineFunction(Loc, II, S);
|
2007-04-02 22:35:25 +00:00
|
|
|
else {
|
2006-11-20 06:49:47 +00:00
|
|
|
// If this name wasn't predeclared and if this is not a function call,
|
|
|
|
// diagnose the problem.
|
2007-03-23 22:27:02 +00:00
|
|
|
return Diag(Loc, diag::err_undeclared_var_use, II.getName());
|
2007-04-02 22:35:25 +00:00
|
|
|
}
|
2006-11-20 04:58:19 +00:00
|
|
|
}
|
|
|
|
|
2007-04-03 23:13:13 +00:00
|
|
|
if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
|
|
|
|
return new DeclRefExpr(VD, VD->getType());
|
|
|
|
if (isa<TypedefDecl>(D))
|
2007-03-23 22:27:02 +00:00
|
|
|
return Diag(Loc, diag::err_unexpected_typedef, II.getName());
|
|
|
|
|
|
|
|
assert(0 && "Invalid decl");
|
2006-11-20 04:58:19 +00:00
|
|
|
}
|
2006-11-10 05:29:30 +00:00
|
|
|
|
2006-11-20 04:58:19 +00:00
|
|
|
Sema::ExprResult Sema::ParseSimplePrimaryExpr(SourceLocation Loc,
|
|
|
|
tok::TokenKind Kind) {
|
2006-11-10 05:29:30 +00:00
|
|
|
switch (Kind) {
|
|
|
|
default:
|
|
|
|
assert(0 && "Unknown simple primary expr!");
|
|
|
|
case tok::char_constant: // constant: character-constant
|
2006-11-20 04:58:19 +00:00
|
|
|
// TODO: MOVE this to be some other callback.
|
2006-11-10 05:29:30 +00:00
|
|
|
case tok::kw___func__: // primary-expression: __func__ [C99 6.4.2.2]
|
|
|
|
case tok::kw___FUNCTION__: // primary-expression: __FUNCTION__ [GNU]
|
|
|
|
case tok::kw___PRETTY_FUNCTION__: // primary-expression: __P..Y_F..N__ [GNU]
|
2006-11-20 04:58:19 +00:00
|
|
|
return 0;
|
2006-11-10 05:29:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-06 01:09:46 +00:00
|
|
|
Action::ExprResult Sema::ParseNumericConstant(const LexerToken &Tok) {
|
2007-03-13 20:29:44 +00:00
|
|
|
// fast path for a single digit (which is quite common). A single digit
|
|
|
|
// cannot have a trigraph, escaped newline, radix prefix, or type suffix.
|
|
|
|
if (Tok.getLength() == 1) {
|
|
|
|
const char *t = PP.getSourceManager().getCharacterData(Tok.getLocation());
|
|
|
|
return ExprResult(new IntegerLiteral(*t-'0', Context.IntTy));
|
|
|
|
}
|
2007-03-06 01:09:46 +00:00
|
|
|
SmallString<512> IntegerBuffer;
|
|
|
|
IntegerBuffer.resize(Tok.getLength());
|
|
|
|
const char *ThisTokBegin = &IntegerBuffer[0];
|
|
|
|
|
|
|
|
// Get the spelling of the token, which eliminates trigraphs, etc. Notes:
|
|
|
|
// - We know that ThisTokBuf points to a buffer that is big enough for the
|
|
|
|
// whole token and 'spelled' tokens can only shrink.
|
|
|
|
// - In practice, the local buffer is only used when the spelling doesn't
|
|
|
|
// match the original token (which is rare). The common case simply returns
|
|
|
|
// a pointer to a *constant* buffer (avoiding a copy).
|
|
|
|
|
|
|
|
unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
|
2007-03-09 23:16:33 +00:00
|
|
|
NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
|
2007-03-12 23:22:38 +00:00
|
|
|
Tok.getLocation(), PP);
|
2007-03-13 20:29:44 +00:00
|
|
|
if (Literal.hadError)
|
|
|
|
return ExprResult(true);
|
|
|
|
|
2007-03-09 23:16:33 +00:00
|
|
|
if (Literal.isIntegerLiteral()) {
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType t;
|
2007-03-09 23:16:33 +00:00
|
|
|
if (Literal.hasSuffix()) {
|
|
|
|
if (Literal.isLong)
|
|
|
|
t = Literal.isUnsigned ? Context.UnsignedLongTy : Context.LongTy;
|
|
|
|
else if (Literal.isLongLong)
|
|
|
|
t = Literal.isUnsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
|
|
|
|
else
|
|
|
|
t = Context.UnsignedIntTy;
|
2007-03-06 01:09:46 +00:00
|
|
|
} else {
|
2007-03-09 23:16:33 +00:00
|
|
|
t = Context.IntTy; // implicit type is "int"
|
2007-03-07 01:21:37 +00:00
|
|
|
}
|
2007-03-12 23:22:38 +00:00
|
|
|
uintmax_t val;
|
|
|
|
if (Literal.GetIntegerValue(val)) {
|
2007-03-13 20:29:44 +00:00
|
|
|
return new IntegerLiteral(val, t);
|
2007-03-07 01:21:37 +00:00
|
|
|
}
|
2007-03-09 23:16:33 +00:00
|
|
|
} else if (Literal.isFloatingLiteral()) {
|
2007-03-23 22:27:02 +00:00
|
|
|
// FIXME: fill in the value and compute the real type...
|
|
|
|
return new FloatingLiteral(7.7, Context.FloatTy);
|
2007-03-06 01:09:46 +00:00
|
|
|
}
|
2007-03-13 20:29:44 +00:00
|
|
|
return ExprResult(true);
|
2006-11-10 05:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Action::ExprResult Sema::ParseParenExpr(SourceLocation L, SourceLocation R,
|
|
|
|
ExprTy *Val) {
|
|
|
|
return Val;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Unary Operators. 'Tok' is the token for the operator.
|
|
|
|
Action::ExprResult Sema::ParseUnaryOp(SourceLocation OpLoc, tok::TokenKind Op,
|
|
|
|
ExprTy *Input) {
|
|
|
|
UnaryOperator::Opcode Opc;
|
|
|
|
switch (Op) {
|
|
|
|
default: assert(0 && "Unknown unary op!");
|
|
|
|
case tok::plusplus: Opc = UnaryOperator::PreInc; break;
|
|
|
|
case tok::minusminus: Opc = UnaryOperator::PreDec; break;
|
|
|
|
case tok::amp: Opc = UnaryOperator::AddrOf; break;
|
|
|
|
case tok::star: Opc = UnaryOperator::Deref; break;
|
|
|
|
case tok::plus: Opc = UnaryOperator::Plus; break;
|
|
|
|
case tok::minus: Opc = UnaryOperator::Minus; break;
|
|
|
|
case tok::tilde: Opc = UnaryOperator::Not; break;
|
|
|
|
case tok::exclaim: Opc = UnaryOperator::LNot; break;
|
|
|
|
case tok::kw_sizeof: Opc = UnaryOperator::SizeOf; break;
|
|
|
|
case tok::kw___alignof: Opc = UnaryOperator::AlignOf; break;
|
|
|
|
case tok::kw___real: Opc = UnaryOperator::Real; break;
|
|
|
|
case tok::kw___imag: Opc = UnaryOperator::Imag; break;
|
|
|
|
case tok::ampamp: Opc = UnaryOperator::AddrLabel; break;
|
|
|
|
case tok::kw___extension__:
|
|
|
|
return Input;
|
|
|
|
//Opc = UnaryOperator::Extension;
|
|
|
|
//break;
|
|
|
|
}
|
2007-03-30 23:47:58 +00:00
|
|
|
if (Opc == UnaryOperator::PreInc || Opc == UnaryOperator::PreDec)
|
|
|
|
return CheckIncrementDecrementOperand((Expr *)Input, OpLoc, Opc);
|
2007-04-19 23:00:49 +00:00
|
|
|
else if (Opc == UnaryOperator::AddrOf)
|
|
|
|
return CheckAddressOfOperand((Expr *)Input, OpLoc, Opc);
|
|
|
|
else if (Opc == UnaryOperator::Deref)
|
|
|
|
return CheckIndirectionOperand((Expr *)Input, OpLoc, Opc);
|
2007-04-24 00:23:05 +00:00
|
|
|
else if (UnaryOperator::isArithmeticOp(Opc))
|
|
|
|
return CheckArithmeticOperand((Expr *)Input, OpLoc, Opc);
|
|
|
|
|
|
|
|
// will go away when all cases are handled...
|
|
|
|
return new UnaryOperator((Expr *)Input, Opc, QualType());
|
2006-11-10 05:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Action::ExprResult Sema::
|
|
|
|
ParseSizeOfAlignOfTypeExpr(SourceLocation OpLoc, bool isSizeof,
|
|
|
|
SourceLocation LParenLoc, TypeTy *Ty,
|
|
|
|
SourceLocation RParenLoc) {
|
2006-11-20 04:34:45 +00:00
|
|
|
// If error parsing type, ignore.
|
|
|
|
if (Ty == 0) return true;
|
2007-01-23 22:29:49 +00:00
|
|
|
|
|
|
|
// Verify that this is a valid expression.
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType ArgTy = QualType::getFromOpaquePtr(Ty);
|
2007-01-23 22:29:49 +00:00
|
|
|
|
|
|
|
if (isa<FunctionType>(ArgTy) && isSizeof) {
|
|
|
|
// alignof(function) is allowed.
|
|
|
|
Diag(OpLoc, diag::ext_sizeof_function_type);
|
2007-03-21 21:08:52 +00:00
|
|
|
return new IntegerLiteral(1, Context.IntTy);
|
2007-01-23 22:29:49 +00:00
|
|
|
} else if (ArgTy->isVoidType()) {
|
|
|
|
Diag(OpLoc, diag::ext_sizeof_void_type, isSizeof ? "sizeof" : "__alignof");
|
|
|
|
} else if (ArgTy->isIncompleteType()) {
|
|
|
|
std::string TypeName;
|
|
|
|
ArgTy->getAsString(TypeName);
|
|
|
|
Diag(OpLoc, isSizeof ? diag::err_sizeof_incomplete_type :
|
|
|
|
diag::err_alignof_incomplete_type, TypeName);
|
2007-03-21 21:08:52 +00:00
|
|
|
return new IntegerLiteral(0, Context.IntTy);
|
2007-01-23 22:29:49 +00:00
|
|
|
}
|
2007-04-02 22:35:25 +00:00
|
|
|
// C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
|
|
|
|
return new SizeOfAlignOfTypeExpr(isSizeof, ArgTy, Context.getSizeType());
|
2006-11-10 05:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Action::ExprResult Sema::ParsePostfixUnaryOp(SourceLocation OpLoc,
|
|
|
|
tok::TokenKind Kind,
|
|
|
|
ExprTy *Input) {
|
|
|
|
UnaryOperator::Opcode Opc;
|
|
|
|
switch (Kind) {
|
|
|
|
default: assert(0 && "Unknown unary op!");
|
|
|
|
case tok::plusplus: Opc = UnaryOperator::PostInc; break;
|
|
|
|
case tok::minusminus: Opc = UnaryOperator::PostDec; break;
|
|
|
|
}
|
2007-03-30 23:47:58 +00:00
|
|
|
return CheckIncrementDecrementOperand((Expr *)Input, OpLoc, Opc);
|
2006-11-10 05:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Action::ExprResult Sema::
|
|
|
|
ParseArraySubscriptExpr(ExprTy *Base, SourceLocation LLoc,
|
|
|
|
ExprTy *Idx, SourceLocation RLoc) {
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType t1 = ((Expr *)Base)->getType();
|
|
|
|
QualType t2 = ((Expr *)Idx)->getType();
|
2007-03-23 22:27:02 +00:00
|
|
|
|
|
|
|
assert(!t1.isNull() && "no type for array base expression");
|
2007-03-28 21:49:40 +00:00
|
|
|
assert(!t2.isNull() && "no type for array index expression");
|
2007-03-23 22:27:02 +00:00
|
|
|
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType canonT1 = t1.getCanonicalType();
|
|
|
|
QualType canonT2 = t2.getCanonicalType();
|
2007-04-05 21:15:20 +00:00
|
|
|
|
2007-03-28 21:49:40 +00:00
|
|
|
// C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
|
|
|
|
// to the expression *((e1)+(e2)). This means the array "Base" may actually be
|
2007-03-23 22:27:02 +00:00
|
|
|
// in the subscript position. As a result, we need to derive the array base
|
|
|
|
// and index from the expression types.
|
|
|
|
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType baseType, indexType;
|
2007-04-05 21:15:20 +00:00
|
|
|
if (isa<ArrayType>(canonT1) || isa<PointerType>(canonT1)) {
|
|
|
|
baseType = canonT1;
|
|
|
|
indexType = canonT2;
|
|
|
|
} else if (isa<ArrayType>(canonT2) || isa<PointerType>(canonT2)) { // uncommon
|
|
|
|
baseType = canonT2;
|
|
|
|
indexType = canonT1;
|
2007-03-23 22:27:02 +00:00
|
|
|
} else
|
|
|
|
return Diag(LLoc, diag::err_typecheck_subscript_value);
|
|
|
|
|
2007-03-28 21:49:40 +00:00
|
|
|
// C99 6.5.2.1p1
|
2007-04-24 00:23:05 +00:00
|
|
|
if (!indexType->isIntegerType())
|
2007-03-23 22:27:02 +00:00
|
|
|
return Diag(LLoc, diag::err_typecheck_subscript);
|
2007-03-28 21:49:40 +00:00
|
|
|
|
2007-03-30 23:47:58 +00:00
|
|
|
// FIXME: need to deal with const...
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType resultType;
|
2007-03-28 21:49:40 +00:00
|
|
|
if (ArrayType *ary = dyn_cast<ArrayType>(baseType)) {
|
|
|
|
resultType = ary->getElementType();
|
|
|
|
} else if (PointerType *ary = dyn_cast<PointerType>(baseType)) {
|
|
|
|
resultType = ary->getPointeeType();
|
|
|
|
// in practice, the following check catches trying to index a pointer
|
|
|
|
// to a function (e.g. void (*)(int)). Functions are not objects in c99.
|
2007-03-30 20:09:34 +00:00
|
|
|
if (!resultType->isObjectType())
|
|
|
|
return Diag(LLoc, diag::err_typecheck_subscript_not_object, baseType);
|
2007-03-28 21:49:40 +00:00
|
|
|
}
|
|
|
|
return new ArraySubscriptExpr((Expr*)Base, (Expr*)Idx, resultType);
|
2006-11-10 05:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Action::ExprResult Sema::
|
|
|
|
ParseMemberReferenceExpr(ExprTy *Base, SourceLocation OpLoc,
|
|
|
|
tok::TokenKind OpKind, SourceLocation MemberLoc,
|
|
|
|
IdentifierInfo &Member) {
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType qualifiedType = ((Expr *)Base)->getType();
|
2007-04-01 01:41:35 +00:00
|
|
|
|
|
|
|
assert(!qualifiedType.isNull() && "no type for member expression");
|
|
|
|
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType canonType = qualifiedType.getCanonicalType();
|
2007-03-23 22:27:02 +00:00
|
|
|
|
|
|
|
if (OpKind == tok::arrow) {
|
2007-04-01 01:41:35 +00:00
|
|
|
if (PointerType *PT = dyn_cast<PointerType>(canonType)) {
|
|
|
|
qualifiedType = PT->getPointeeType();
|
2007-04-05 21:15:20 +00:00
|
|
|
canonType = qualifiedType.getCanonicalType();
|
2007-04-01 01:41:35 +00:00
|
|
|
} else
|
2007-03-23 22:27:02 +00:00
|
|
|
return Diag(OpLoc, diag::err_typecheck_member_reference_arrow);
|
|
|
|
}
|
2007-04-02 22:35:25 +00:00
|
|
|
if (!isa<RecordType>(canonType))
|
|
|
|
return Diag(OpLoc, diag::err_typecheck_member_reference_structUnion);
|
|
|
|
|
|
|
|
// get the struct/union definition from the type.
|
|
|
|
RecordDecl *RD = cast<RecordType>(canonType)->getDecl();
|
2007-03-26 23:09:51 +00:00
|
|
|
|
2007-04-02 22:35:25 +00:00
|
|
|
if (canonType->isIncompleteType())
|
|
|
|
return Diag(OpLoc, diag::err_typecheck_incomplete_tag, RD->getName());
|
2007-03-26 23:09:51 +00:00
|
|
|
|
2007-04-02 22:35:25 +00:00
|
|
|
FieldDecl *MemberDecl = RD->getMember(&Member);
|
|
|
|
if (!MemberDecl)
|
|
|
|
return Diag(OpLoc, diag::err_typecheck_no_member, Member.getName());
|
|
|
|
|
|
|
|
return new MemberExpr((Expr*)Base, OpKind == tok::arrow, MemberDecl);
|
2006-11-10 05:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// ParseCallExpr - Handle a call to Fn with the specified array of arguments.
|
|
|
|
/// This provides the location of the left/right parens and a list of comma
|
|
|
|
/// locations.
|
|
|
|
Action::ExprResult Sema::
|
|
|
|
ParseCallExpr(ExprTy *Fn, SourceLocation LParenLoc,
|
|
|
|
ExprTy **Args, unsigned NumArgs,
|
|
|
|
SourceLocation *CommaLocs, SourceLocation RParenLoc) {
|
|
|
|
return new CallExpr((Expr*)Fn, (Expr**)Args, NumArgs);
|
|
|
|
}
|
|
|
|
|
|
|
|
Action::ExprResult Sema::
|
|
|
|
ParseCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
|
|
|
|
SourceLocation RParenLoc, ExprTy *Op) {
|
2006-11-20 04:34:45 +00:00
|
|
|
// If error parsing type, ignore.
|
|
|
|
if (Ty == 0) return true;
|
2007-04-05 22:36:20 +00:00
|
|
|
return new CastExpr(QualType::getFromOpaquePtr(Ty), (Expr*)Op);
|
2006-11-10 05:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Binary Operators. 'Tok' is the token for the operator.
|
|
|
|
Action::ExprResult Sema::ParseBinOp(SourceLocation TokLoc, tok::TokenKind Kind,
|
|
|
|
ExprTy *LHS, ExprTy *RHS) {
|
|
|
|
BinaryOperator::Opcode Opc;
|
|
|
|
switch (Kind) {
|
|
|
|
default: assert(0 && "Unknown binop!");
|
|
|
|
case tok::star: Opc = BinaryOperator::Mul; break;
|
|
|
|
case tok::slash: Opc = BinaryOperator::Div; break;
|
|
|
|
case tok::percent: Opc = BinaryOperator::Rem; break;
|
|
|
|
case tok::plus: Opc = BinaryOperator::Add; break;
|
|
|
|
case tok::minus: Opc = BinaryOperator::Sub; break;
|
|
|
|
case tok::lessless: Opc = BinaryOperator::Shl; break;
|
|
|
|
case tok::greatergreater: Opc = BinaryOperator::Shr; break;
|
|
|
|
case tok::lessequal: Opc = BinaryOperator::LE; break;
|
|
|
|
case tok::less: Opc = BinaryOperator::LT; break;
|
|
|
|
case tok::greaterequal: Opc = BinaryOperator::GE; break;
|
|
|
|
case tok::greater: Opc = BinaryOperator::GT; break;
|
|
|
|
case tok::exclaimequal: Opc = BinaryOperator::NE; break;
|
|
|
|
case tok::equalequal: Opc = BinaryOperator::EQ; break;
|
|
|
|
case tok::amp: Opc = BinaryOperator::And; break;
|
|
|
|
case tok::caret: Opc = BinaryOperator::Xor; break;
|
|
|
|
case tok::pipe: Opc = BinaryOperator::Or; break;
|
|
|
|
case tok::ampamp: Opc = BinaryOperator::LAnd; break;
|
|
|
|
case tok::pipepipe: Opc = BinaryOperator::LOr; break;
|
|
|
|
case tok::equal: Opc = BinaryOperator::Assign; break;
|
|
|
|
case tok::starequal: Opc = BinaryOperator::MulAssign; break;
|
|
|
|
case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
|
|
|
|
case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
|
|
|
|
case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
|
|
|
|
case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
|
|
|
|
case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
|
|
|
|
case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
|
|
|
|
case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
|
|
|
|
case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
|
|
|
|
case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
|
|
|
|
case tok::comma: Opc = BinaryOperator::Comma; break;
|
|
|
|
}
|
2007-03-23 22:27:02 +00:00
|
|
|
|
2007-04-24 00:23:05 +00:00
|
|
|
Expr *lhs = (Expr *)LHS, *rhs = (Expr*)RHS;
|
2006-11-10 05:29:30 +00:00
|
|
|
|
2007-03-21 21:08:52 +00:00
|
|
|
if (BinaryOperator::isMultiplicativeOp(Opc))
|
2007-04-20 23:42:24 +00:00
|
|
|
return CheckMultiplicativeOperands(lhs, rhs, TokLoc, Opc);
|
2007-03-21 21:08:52 +00:00
|
|
|
else if (BinaryOperator::isAdditiveOp(Opc))
|
2007-04-24 00:23:05 +00:00
|
|
|
return CheckAdditiveOperands(lhs, rhs, TokLoc, Opc);
|
2007-03-21 21:08:52 +00:00
|
|
|
else if (BinaryOperator::isShiftOp(Opc))
|
2007-04-24 00:23:05 +00:00
|
|
|
return CheckShiftOperands(lhs, rhs, TokLoc, Opc);
|
2007-03-21 21:08:52 +00:00
|
|
|
else if (BinaryOperator::isRelationalOp(Opc))
|
2007-04-24 00:23:05 +00:00
|
|
|
return CheckRelationalOperands(lhs, rhs, TokLoc, Opc);
|
2007-03-21 21:08:52 +00:00
|
|
|
else if (BinaryOperator::isEqualityOp(Opc))
|
2007-04-24 00:23:05 +00:00
|
|
|
return CheckEqualityOperands(lhs, rhs, TokLoc, Opc);
|
2007-03-21 21:08:52 +00:00
|
|
|
else if (BinaryOperator::isBitwiseOp(Opc))
|
2007-04-24 00:23:05 +00:00
|
|
|
return CheckBitwiseOperands(lhs, rhs, TokLoc, Opc);
|
2007-03-21 21:08:52 +00:00
|
|
|
else if (BinaryOperator::isLogicalOp(Opc))
|
2007-04-24 00:23:05 +00:00
|
|
|
return CheckLogicalOperands(lhs, rhs, TokLoc, Opc);
|
|
|
|
|
|
|
|
assert(0 && "ParseBinOp() not handling all binary ops properly");
|
2006-11-10 05:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// ParseConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
|
|
|
|
/// in the case of a the GNU conditional expr extension.
|
|
|
|
Action::ExprResult Sema::ParseConditionalOp(SourceLocation QuestionLoc,
|
|
|
|
SourceLocation ColonLoc,
|
|
|
|
ExprTy *Cond, ExprTy *LHS,
|
|
|
|
ExprTy *RHS) {
|
|
|
|
return new ConditionalOperator((Expr*)Cond, (Expr*)LHS, (Expr*)RHS);
|
|
|
|
}
|
|
|
|
|
2007-04-24 00:23:05 +00:00
|
|
|
/// UsualUnaryConversion - Performs various conversions that are common to most
|
|
|
|
/// operators (C99 6.3). The conversions of array and function types are
|
|
|
|
/// sometimes surpressed. For example, the array->pointer conversion doesn't
|
|
|
|
/// apply if the array is an argument to the sizeof or address (&) operators.
|
|
|
|
/// In these instances, this routine should *not* be called.
|
|
|
|
QualType Sema::UsualUnaryConversion(QualType t) {
|
|
|
|
assert(!t.isNull() && "UsualUnaryConversion - missing type");
|
2007-04-20 22:26:17 +00:00
|
|
|
|
2007-04-24 00:23:05 +00:00
|
|
|
if (t->isPromotableIntegerType()) // C99 6.3.1.1p2
|
|
|
|
return Context.IntTy;
|
|
|
|
else if (t->isFunctionType()) // C99 6.3.2.1p4
|
|
|
|
return Context.getPointerType(t);
|
|
|
|
else if (t->isArrayType()) // C99 6.3.2.1p3
|
|
|
|
return Context.getPointerType(cast<ArrayType>(t)->getElementType());
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// UsualArithmeticConversions - Performs various conversions that are common to
|
|
|
|
/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
|
|
|
|
/// routine returns the first non-arithmetic type found. The client is
|
|
|
|
/// responsible for emitting appropriate error diagnostics.
|
|
|
|
QualType Sema::UsualArithmeticConversions(QualType t1, QualType t2) {
|
|
|
|
t1 = UsualUnaryConversion(t1);
|
|
|
|
t2 = UsualUnaryConversion(t2);
|
|
|
|
|
|
|
|
// if either operand is not of arithmetic type, no conversion is possible.
|
|
|
|
if (!t1->isArithmeticType())
|
|
|
|
return t1;
|
|
|
|
else if (!t2->isArithmeticType())
|
|
|
|
return t2;
|
|
|
|
|
|
|
|
// if both operands have the same type, no conversion is needed.
|
|
|
|
if (t1 == t2)
|
|
|
|
return t1;
|
|
|
|
|
|
|
|
// at this point, we have two different arithmetic types. Handle the
|
2007-04-24 20:56:26 +00:00
|
|
|
// six floating types first (C99 6.3.1.8p1).
|
|
|
|
if (t1->isFloatingType() || t2->isFloatingType()) {
|
|
|
|
if (t1->isRealFloatingType() && t2->isRealFloatingType()) {
|
|
|
|
// types are homogeneous, return the type with the greatest precision
|
|
|
|
if (t1->isLongDoubleType())
|
|
|
|
return t1;
|
|
|
|
else if (t2->isLongDoubleType())
|
|
|
|
return t2;
|
|
|
|
if (t1->isDoubleType())
|
|
|
|
return t1;
|
|
|
|
else if (t2->isDoubleType())
|
|
|
|
return t2;
|
|
|
|
assert(0 && "UsualArithmeticConversions(): floating point conversion");
|
|
|
|
} else if (t1->isComplexType() && t2->isComplexType()) {
|
|
|
|
// types are homogeneous, return the type with the greatest precision
|
|
|
|
if (t1->isLongDoubleComplexType())
|
|
|
|
return t1;
|
|
|
|
else if (t2->isLongDoubleComplexType())
|
|
|
|
return t2;
|
|
|
|
if (t1->isDoubleComplexType())
|
|
|
|
return t1;
|
|
|
|
else if (t2->isDoubleComplexType())
|
|
|
|
return t2;
|
|
|
|
assert(0 && "UsualArithmeticConversions(): floating point conversion");
|
|
|
|
}
|
|
|
|
// type are heterogeneous, handle various permutations.
|
|
|
|
if (t1->isRealFloatingType()) {
|
|
|
|
if (t2->isIntegerType())
|
|
|
|
return t1;
|
|
|
|
|
|
|
|
// return the complex type with the greatest precision (across domains).
|
|
|
|
if (t2->isComplexType()) {
|
|
|
|
if (t1->isLongDoubleType()) {
|
|
|
|
if (t2->isLongDoubleComplexType())
|
|
|
|
return t2;
|
|
|
|
else
|
|
|
|
return t1; // FIXME: need to return "long double _Complex"?
|
|
|
|
} else if (t1->isDoubleType()) {
|
|
|
|
if (t2->isLongDoubleComplexType() || t2->isDoubleComplexType())
|
|
|
|
return t2;
|
|
|
|
else
|
|
|
|
return t1; // FIXME: need to return "double _Complex"?
|
|
|
|
} else {
|
|
|
|
// t1 is a float, there is no need to promote t2 (the complex type).
|
|
|
|
return t2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(0 && "UsualArithmeticConversions(): floating point conversion");
|
|
|
|
}
|
|
|
|
if (t1->isComplexType()) {
|
|
|
|
if (t2->isIntegerType())
|
|
|
|
return t1;
|
|
|
|
|
|
|
|
if (t2->isRealFloatingType()) {
|
|
|
|
// return the complex type with the greatest precision (across domains).
|
|
|
|
if (t2->isLongDoubleType()) {
|
|
|
|
if (t1->isLongDoubleComplexType())
|
|
|
|
return t1;
|
|
|
|
else
|
|
|
|
return t2; // FIXME: need to return "long double _Complex"?
|
|
|
|
} else if (t2->isDoubleType()) {
|
|
|
|
if (t1->isLongDoubleComplexType() || t1->isDoubleComplexType())
|
|
|
|
return t1;
|
|
|
|
else
|
|
|
|
return t2; // FIXME: need to return "double _Complex"?
|
|
|
|
} else {
|
|
|
|
// t2 is a float, there is no need to promote t1 (the complex type).
|
|
|
|
return t1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(0 && "UsualArithmeticConversions(): floating point conversion");
|
|
|
|
}
|
|
|
|
if (t1->isIntegerType())
|
|
|
|
return t2;
|
|
|
|
}
|
2007-04-24 00:23:05 +00:00
|
|
|
bool t1Unsigned = t1->isUnsignedIntegerType();
|
|
|
|
bool t2Unsigned = t2->isUnsignedIntegerType();
|
|
|
|
|
|
|
|
if (t1Unsigned && t2Unsigned)
|
|
|
|
return t1; // FIXME: return the unsigned type with the greatest rank
|
|
|
|
else if (!t1Unsigned && !t2Unsigned)
|
|
|
|
return t1; // FIXME: return the signed type with the greatest rank
|
|
|
|
else
|
|
|
|
return t1; // FIXME: we have a mixture...
|
2007-03-23 22:27:02 +00:00
|
|
|
}
|
|
|
|
|
2007-04-20 23:42:24 +00:00
|
|
|
Action::ExprResult Sema::CheckMultiplicativeOperands(
|
2007-04-24 00:23:05 +00:00
|
|
|
Expr *lex, Expr *rex, SourceLocation loc, unsigned code)
|
2007-04-20 23:42:24 +00:00
|
|
|
{
|
2007-04-24 00:23:05 +00:00
|
|
|
QualType resType = UsualArithmeticConversions(lex->getType(), rex->getType());
|
2007-04-20 23:42:24 +00:00
|
|
|
|
|
|
|
if ((BinaryOperator::Opcode)code == BinaryOperator::Rem) {
|
2007-04-24 00:23:05 +00:00
|
|
|
if (!resType->isIntegerType())
|
2007-04-20 23:42:24 +00:00
|
|
|
return Diag(loc, diag::err_typecheck_invalid_operands);
|
2007-04-24 00:23:05 +00:00
|
|
|
} else { // *, /
|
|
|
|
if (!resType->isArithmeticType())
|
2007-04-20 23:42:24 +00:00
|
|
|
return Diag(loc, diag::err_typecheck_invalid_operands);
|
|
|
|
}
|
2007-04-24 00:23:05 +00:00
|
|
|
return new BinaryOperator(lex, rex, (BinaryOperator::Opcode)code, resType);
|
2007-03-30 23:47:58 +00:00
|
|
|
}
|
|
|
|
|
2007-04-24 00:23:05 +00:00
|
|
|
Action::ExprResult Sema::CheckAdditiveOperands( // C99 6.5.6
|
|
|
|
Expr *lex, Expr *rex, SourceLocation loc, unsigned code)
|
|
|
|
{
|
|
|
|
return new BinaryOperator(lex, rex, (BinaryOperator::Opcode)code, Context.IntTy);
|
2007-03-21 21:08:52 +00:00
|
|
|
}
|
|
|
|
|
2007-04-24 00:23:05 +00:00
|
|
|
Action::ExprResult Sema::CheckShiftOperands( // C99 6.5.7
|
|
|
|
Expr *lex, Expr *rex, SourceLocation loc, unsigned code)
|
|
|
|
{
|
|
|
|
QualType resType = UsualArithmeticConversions(lex->getType(), rex->getType());
|
|
|
|
|
|
|
|
if (!resType->isIntegerType())
|
|
|
|
return Diag(loc, diag::err_typecheck_invalid_operands);
|
|
|
|
|
|
|
|
return new BinaryOperator(lex, rex, (BinaryOperator::Opcode)code, resType);
|
2007-03-21 21:08:52 +00:00
|
|
|
}
|
|
|
|
|
2007-04-24 00:23:05 +00:00
|
|
|
Action::ExprResult Sema::CheckRelationalOperands( // C99 6.5.8
|
|
|
|
Expr *lex, Expr *rex, SourceLocation loc, unsigned code)
|
|
|
|
{
|
|
|
|
QualType lType = lex->getType(), rType = rex->getType();
|
|
|
|
|
|
|
|
if (lType->isRealType() && rType->isRealType())
|
|
|
|
;
|
|
|
|
else if (lType->isPointerType() && rType->isPointerType())
|
|
|
|
;
|
|
|
|
else {
|
|
|
|
// The following test is for GCC compatibility.
|
|
|
|
if (lType->isIntegerType() || rType->isIntegerType())
|
|
|
|
return Diag(loc, diag::err_typecheck_comparison_of_pointer_integer);
|
|
|
|
return Diag(loc, diag::err_typecheck_invalid_operands);
|
|
|
|
}
|
|
|
|
return new BinaryOperator(lex, rex, (BinaryOperator::Opcode)code,
|
|
|
|
Context.IntTy);
|
2007-03-21 21:08:52 +00:00
|
|
|
}
|
|
|
|
|
2007-04-24 00:23:05 +00:00
|
|
|
Action::ExprResult Sema::CheckEqualityOperands( // C99 6.5.9
|
|
|
|
Expr *lex, Expr *rex, SourceLocation loc, unsigned code)
|
|
|
|
{
|
|
|
|
QualType lType = lex->getType(), rType = rex->getType();
|
|
|
|
|
|
|
|
if (lType->isArithmeticType() && rType->isArithmeticType())
|
|
|
|
;
|
|
|
|
else if (lType->isPointerType() && rType->isPointerType())
|
|
|
|
;
|
|
|
|
else {
|
|
|
|
// The following test is for GCC compatibility.
|
|
|
|
if (lType->isIntegerType() || rType->isIntegerType())
|
|
|
|
return Diag(loc, diag::err_typecheck_comparison_of_pointer_integer);
|
|
|
|
return Diag(loc, diag::err_typecheck_invalid_operands);
|
|
|
|
}
|
|
|
|
return new BinaryOperator(lex, rex, (BinaryOperator::Opcode)code,
|
|
|
|
Context.IntTy);
|
2007-03-21 21:08:52 +00:00
|
|
|
}
|
|
|
|
|
2007-04-24 00:23:05 +00:00
|
|
|
Action::ExprResult Sema::CheckBitwiseOperands(
|
|
|
|
Expr *lex, Expr *rex, SourceLocation loc, unsigned code)
|
|
|
|
{
|
|
|
|
QualType resType = UsualArithmeticConversions(lex->getType(), rex->getType());
|
|
|
|
|
|
|
|
if (!resType->isIntegerType())
|
|
|
|
return Diag(loc, diag::err_typecheck_invalid_operands);
|
|
|
|
|
|
|
|
return new BinaryOperator(lex, rex, (BinaryOperator::Opcode)code, resType);
|
2007-03-21 21:08:52 +00:00
|
|
|
}
|
|
|
|
|
2007-04-24 00:23:05 +00:00
|
|
|
Action::ExprResult Sema::CheckLogicalOperands( // C99 6.5.[13,14]
|
|
|
|
Expr *lex, Expr *rex, SourceLocation loc, unsigned code)
|
|
|
|
{
|
|
|
|
return new BinaryOperator(lex, rex, (BinaryOperator::Opcode)code);
|
2007-03-21 21:08:52 +00:00
|
|
|
}
|
|
|
|
|
2007-03-30 23:47:58 +00:00
|
|
|
Action::ExprResult
|
|
|
|
Sema::CheckIncrementDecrementOperand(Expr *op, SourceLocation OpLoc,
|
2007-04-02 22:55:05 +00:00
|
|
|
unsigned OpCode) {
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType qType = op->getType();
|
2007-03-30 23:47:58 +00:00
|
|
|
|
2007-04-03 23:13:13 +00:00
|
|
|
assert(!qType.isNull() && "no type for increment/decrement expression");
|
|
|
|
|
2007-04-05 22:36:20 +00:00
|
|
|
QualType canonType = qType.getCanonicalType();
|
2007-04-05 21:15:20 +00:00
|
|
|
|
2007-04-03 23:13:13 +00:00
|
|
|
// C99 6.5.2.4p1
|
|
|
|
if (const PointerType *pt = dyn_cast<PointerType>(canonType)) {
|
|
|
|
if (!pt->getPointeeType()->isObjectType()) // C99 6.5.2.4p2, 6.5.6p2
|
|
|
|
return Diag(OpLoc, diag::err_typecheck_arithmetic_incomplete_type, qType);
|
|
|
|
} else if (!canonType->isRealType()) {
|
2007-03-30 23:47:58 +00:00
|
|
|
// FIXME: Allow Complex as a GCC extension.
|
2007-04-03 23:13:13 +00:00
|
|
|
return Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement, qType);
|
|
|
|
}
|
2007-03-30 23:47:58 +00:00
|
|
|
// At this point, we know we have a real or pointer type. As a result, the
|
|
|
|
// following predicate is overkill (i.e. it will check for types we know we
|
|
|
|
// don't have in this context). Nevertheless, we model the C99 spec closely.
|
2007-04-05 21:15:20 +00:00
|
|
|
if (!canonType.isModifiableLvalue())
|
2007-04-03 23:13:13 +00:00
|
|
|
return Diag(OpLoc, diag::err_typecheck_not_modifiable, qType);
|
2007-03-30 23:47:58 +00:00
|
|
|
|
2007-04-03 23:13:13 +00:00
|
|
|
return new UnaryOperator(op, (UnaryOperator::Opcode)OpCode, qType);
|
2007-03-21 21:08:52 +00:00
|
|
|
}
|
|
|
|
|
2007-04-24 00:23:05 +00:00
|
|
|
/// getPrimaryDeclaration - Helper function for CheckAddressOfOperand().
|
2007-04-19 23:00:49 +00:00
|
|
|
/// This routine allows us to typecheck complex/recursive expressions
|
|
|
|
/// where the declaration is needed for type checking. Here are some
|
|
|
|
/// examples: &s.xx, &s.zz[1].yy, &(1+2), &(XX), &"123"[2].
|
2007-04-24 00:23:05 +00:00
|
|
|
static Decl *getPrimaryDeclaration(Expr *e) {
|
2007-04-19 23:00:49 +00:00
|
|
|
switch (e->getStmtClass()) {
|
|
|
|
case Stmt::DeclRefExprClass:
|
|
|
|
return cast<DeclRefExpr>(e)->getDecl();
|
|
|
|
case Stmt::MemberExprClass:
|
2007-04-24 00:23:05 +00:00
|
|
|
return getPrimaryDeclaration(cast<MemberExpr>(e)->getBase());
|
2007-04-19 23:00:49 +00:00
|
|
|
case Stmt::ArraySubscriptExprClass:
|
2007-04-24 00:23:05 +00:00
|
|
|
return getPrimaryDeclaration(cast<ArraySubscriptExpr>(e)->getBase());
|
2007-04-19 23:00:49 +00:00
|
|
|
case Stmt::CallExprClass:
|
2007-04-24 00:23:05 +00:00
|
|
|
return getPrimaryDeclaration(cast<CallExpr>(e)->getCallee());
|
2007-04-19 23:00:49 +00:00
|
|
|
case Stmt::UnaryOperatorClass:
|
2007-04-24 00:23:05 +00:00
|
|
|
return getPrimaryDeclaration(cast<UnaryOperator>(e)->getSubExpr());
|
2007-04-19 23:00:49 +00:00
|
|
|
case Stmt::ParenExprClass:
|
2007-04-24 00:23:05 +00:00
|
|
|
return getPrimaryDeclaration(cast<ParenExpr>(e)->getSubExpr());
|
2007-04-19 23:00:49 +00:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// CheckAddressOfOperand - The operand of & must be either a function
|
|
|
|
/// designator or an lvalue designating an object. If it is an lvalue, the
|
|
|
|
/// object cannot be declared with storage class register or be a bit field.
|
|
|
|
/// Note: The usual conversions are *not* applied to the operand of the &
|
|
|
|
/// operator, and its result is never an lvalue.
|
|
|
|
Action::ExprResult
|
|
|
|
Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc, unsigned OpCode) {
|
2007-04-24 00:23:05 +00:00
|
|
|
Decl *dcl = getPrimaryDeclaration(op);
|
2007-04-19 23:00:49 +00:00
|
|
|
|
|
|
|
if (!op->isLvalue()) {
|
|
|
|
if (dcl && isa<FunctionDecl>(dcl))
|
|
|
|
; // C99 6.5.3.2p1: Allow function designators.
|
|
|
|
else
|
|
|
|
return Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof);
|
|
|
|
} else if (dcl) {
|
|
|
|
// We have an lvalue with a decl. Make sure the decl is not declared
|
|
|
|
// with the register storage-class specifier.
|
|
|
|
if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
|
|
|
|
if (vd->getStorageClass() == VarDecl::Register)
|
|
|
|
return Diag(OpLoc, diag::err_typecheck_address_of_register);
|
|
|
|
}
|
|
|
|
// FIXME: add check for bitfields!
|
|
|
|
}
|
|
|
|
// If the operand has type "type", the result has type "pointer to type".
|
|
|
|
return new UnaryOperator(op, (UnaryOperator::Opcode)OpCode,
|
|
|
|
Context.getPointerType(op->getType()));
|
|
|
|
}
|
|
|
|
|
|
|
|
Action::ExprResult
|
|
|
|
Sema::CheckIndirectionOperand(Expr *op, SourceLocation OpLoc, unsigned OpCode) {
|
|
|
|
QualType qType = op->getType();
|
|
|
|
|
|
|
|
assert(!qType.isNull() && "no type for * expression");
|
|
|
|
|
|
|
|
QualType canonType = qType.getCanonicalType();
|
|
|
|
|
|
|
|
return new UnaryOperator(op, (UnaryOperator::Opcode)OpCode, QualType());
|
|
|
|
}
|
2007-04-24 00:23:05 +00:00
|
|
|
|
|
|
|
/// CheckArithmeticOperand - Check the arithmetic unary operators (C99 6.5.3.3).
|
|
|
|
Action::ExprResult
|
|
|
|
Sema::CheckArithmeticOperand(Expr *op, SourceLocation OpLoc, unsigned Opc) {
|
|
|
|
QualType resultType = UsualUnaryConversion(op->getType());
|
|
|
|
|
|
|
|
switch (Opc) {
|
|
|
|
case UnaryOperator::Plus:
|
|
|
|
case UnaryOperator::Minus:
|
|
|
|
if (!resultType->isArithmeticType()) // C99 6.5.3.3p1
|
|
|
|
return Diag(OpLoc, diag::err_typecheck_unary_expr, resultType);
|
|
|
|
break;
|
|
|
|
case UnaryOperator::Not: // bitwise complement
|
|
|
|
if (!resultType->isIntegerType()) // C99 6.5.3.3p1
|
|
|
|
return Diag(OpLoc, diag::err_typecheck_unary_expr, resultType);
|
|
|
|
break;
|
|
|
|
case UnaryOperator::LNot: // logical negation
|
|
|
|
if (!resultType->isScalarType()) // C99 6.5.3.3p1
|
|
|
|
return Diag(OpLoc, diag::err_typecheck_unary_expr, resultType);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return new UnaryOperator(op, (UnaryOperator::Opcode)Opc, resultType);
|
|
|
|
}
|