2007-07-11 21:01:13 +04:00
|
|
|
//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 22:59:25 +03:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-07-11 21:01:13 +04:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the Expr class and subclasses.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-10-06 10:40:35 +04:00
|
|
|
#include "clang/AST/APValue.h"
|
2007-07-16 03:32:58 +04:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2012-12-01 19:09:41 +04:00
|
|
|
#include "clang/AST/Attr.h"
|
2008-10-22 03:43:52 +04:00
|
|
|
#include "clang/AST/DeclCXX.h"
|
2012-12-01 19:09:41 +04:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
2009-02-04 22:02:06 +03:00
|
|
|
#include "clang/AST/DeclTemplate.h"
|
2012-02-23 11:33:15 +04:00
|
|
|
#include "clang/AST/EvaluatedExprVisitor.h"
|
2012-12-01 19:09:41 +04:00
|
|
|
#include "clang/AST/Expr.h"
|
|
|
|
#include "clang/AST/ExprCXX.h"
|
2009-07-18 23:43:29 +04:00
|
|
|
#include "clang/AST/RecordLayout.h"
|
2007-07-11 21:01:13 +04:00
|
|
|
#include "clang/AST/StmtVisitor.h"
|
2009-06-14 05:54:56 +04:00
|
|
|
#include "clang/Basic/Builtins.h"
|
2010-11-17 10:37:15 +03:00
|
|
|
#include "clang/Basic/SourceManager.h"
|
2007-11-27 21:22:04 +03:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
2012-12-01 19:09:41 +04:00
|
|
|
#include "clang/Lex/Lexer.h"
|
|
|
|
#include "clang/Lex/LiteralSupport.h"
|
|
|
|
#include "clang/Sema/SemaDiagnostic.h"
|
2009-11-01 23:32:48 +03:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-09-08 22:24:21 +04:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-04-15 10:41:24 +04:00
|
|
|
#include <algorithm>
|
2011-11-01 06:23:42 +04:00
|
|
|
#include <cstring>
|
2007-07-11 21:01:13 +04:00
|
|
|
using namespace clang;
|
|
|
|
|
2012-06-27 22:18:05 +04:00
|
|
|
const CXXRecordDecl *Expr::getBestDynamicClassType() const {
|
2012-06-28 05:56:38 +04:00
|
|
|
const Expr *E = ignoreParenBaseCasts();
|
2012-06-26 21:45:31 +04:00
|
|
|
|
|
|
|
QualType DerivedType = E->getType();
|
|
|
|
if (const PointerType *PTy = DerivedType->getAs<PointerType>())
|
|
|
|
DerivedType = PTy->getPointeeType();
|
|
|
|
|
2012-07-18 00:24:05 +04:00
|
|
|
if (DerivedType->isDependentType())
|
|
|
|
return NULL;
|
|
|
|
|
2012-06-26 21:45:31 +04:00
|
|
|
const RecordType *Ty = DerivedType->castAs<RecordType>();
|
|
|
|
Decl *D = Ty->getDecl();
|
|
|
|
return cast<CXXRecordDecl>(D);
|
|
|
|
}
|
|
|
|
|
2012-10-27 05:03:43 +04:00
|
|
|
const Expr *
|
|
|
|
Expr::skipRValueSubobjectAdjustments(
|
|
|
|
SmallVectorImpl<SubobjectAdjustment> &Adjustments) const {
|
|
|
|
const Expr *E = this;
|
|
|
|
while (true) {
|
|
|
|
E = E->IgnoreParens();
|
|
|
|
|
|
|
|
if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
|
|
|
|
if ((CE->getCastKind() == CK_DerivedToBase ||
|
|
|
|
CE->getCastKind() == CK_UncheckedDerivedToBase) &&
|
|
|
|
E->getType()->isRecordType()) {
|
|
|
|
E = CE->getSubExpr();
|
|
|
|
CXXRecordDecl *Derived
|
|
|
|
= cast<CXXRecordDecl>(E->getType()->getAs<RecordType>()->getDecl());
|
|
|
|
Adjustments.push_back(SubobjectAdjustment(CE, Derived));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CE->getCastKind() == CK_NoOp) {
|
|
|
|
E = CE->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
|
|
|
|
if (!ME->isArrow() && ME->getBase()->isRValue()) {
|
|
|
|
assert(ME->getBase()->getType()->isRecordType());
|
|
|
|
if (FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
|
|
|
|
E = ME->getBase();
|
|
|
|
Adjustments.push_back(SubobjectAdjustment(Field));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
|
|
|
|
if (BO->isPtrMemOp()) {
|
2012-11-01 18:32:20 +04:00
|
|
|
assert(BO->getRHS()->isRValue());
|
2012-10-27 05:03:43 +04:00
|
|
|
E = BO->getLHS();
|
|
|
|
const MemberPointerType *MPT =
|
|
|
|
BO->getRHS()->getType()->getAs<MemberPointerType>();
|
|
|
|
Adjustments.push_back(SubobjectAdjustment(MPT, BO->getRHS()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Nothing changed.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Expr *
|
|
|
|
Expr::findMaterializedTemporary(const MaterializeTemporaryExpr *&MTE) const {
|
|
|
|
const Expr *E = this;
|
|
|
|
// Look through single-element init lists that claim to be lvalues. They're
|
|
|
|
// just syntactic wrappers in this case.
|
|
|
|
if (const InitListExpr *ILE = dyn_cast<InitListExpr>(E)) {
|
|
|
|
if (ILE->getNumInits() == 1 && ILE->isGLValue())
|
|
|
|
E = ILE->getInit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Look through expressions for materialized temporaries (for now).
|
|
|
|
if (const MaterializeTemporaryExpr *M
|
|
|
|
= dyn_cast<MaterializeTemporaryExpr>(E)) {
|
|
|
|
MTE = M;
|
|
|
|
E = M->GetTemporaryExpr();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const CXXDefaultArgExpr *DAE = dyn_cast<CXXDefaultArgExpr>(E))
|
|
|
|
E = DAE->getExpr();
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
2010-04-17 03:34:13 +04:00
|
|
|
/// isKnownToHaveBooleanValue - Return true if this is an integer expression
|
|
|
|
/// that is known to return 0 or 1. This happens for _Bool/bool expressions
|
|
|
|
/// but also int expressions which are produced by things like comparisons in
|
|
|
|
/// C.
|
|
|
|
bool Expr::isKnownToHaveBooleanValue() const {
|
2011-04-15 04:35:48 +04:00
|
|
|
const Expr *E = IgnoreParens();
|
|
|
|
|
2010-04-17 03:34:13 +04:00
|
|
|
// If this value has _Bool type, it is obvious 0/1.
|
2011-04-15 04:35:48 +04:00
|
|
|
if (E->getType()->isBooleanType()) return true;
|
2010-05-05 19:23:54 +04:00
|
|
|
// If this is a non-scalar-integer type, we don't care enough to try.
|
2011-04-15 04:35:48 +04:00
|
|
|
if (!E->getType()->isIntegralOrEnumerationType()) return false;
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2011-04-15 04:35:48 +04:00
|
|
|
if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
|
2010-04-17 03:34:13 +04:00
|
|
|
switch (UO->getOpcode()) {
|
2010-08-25 15:45:40 +04:00
|
|
|
case UO_Plus:
|
2010-04-17 03:34:13 +04:00
|
|
|
return UO->getSubExpr()->isKnownToHaveBooleanValue();
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2010-06-12 05:56:02 +04:00
|
|
|
// Only look through implicit casts. If the user writes
|
|
|
|
// '(int) (a && b)' treat it as an arbitrary int.
|
2011-04-15 04:35:48 +04:00
|
|
|
if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E))
|
2010-04-17 03:34:13 +04:00
|
|
|
return CE->getSubExpr()->isKnownToHaveBooleanValue();
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2011-04-15 04:35:48 +04:00
|
|
|
if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
|
2010-04-17 03:34:13 +04:00
|
|
|
switch (BO->getOpcode()) {
|
|
|
|
default: return false;
|
2010-08-25 15:45:40 +04:00
|
|
|
case BO_LT: // Relational operators.
|
|
|
|
case BO_GT:
|
|
|
|
case BO_LE:
|
|
|
|
case BO_GE:
|
|
|
|
case BO_EQ: // Equality operators.
|
|
|
|
case BO_NE:
|
|
|
|
case BO_LAnd: // AND operator.
|
|
|
|
case BO_LOr: // Logical OR operator.
|
2010-04-17 03:34:13 +04:00
|
|
|
return true;
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2010-08-25 15:45:40 +04:00
|
|
|
case BO_And: // Bitwise AND operator.
|
|
|
|
case BO_Xor: // Bitwise XOR operator.
|
|
|
|
case BO_Or: // Bitwise OR operator.
|
2010-04-17 03:34:13 +04:00
|
|
|
// Handle things like (x==2)|(y==12).
|
|
|
|
return BO->getLHS()->isKnownToHaveBooleanValue() &&
|
|
|
|
BO->getRHS()->isKnownToHaveBooleanValue();
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2010-08-25 15:45:40 +04:00
|
|
|
case BO_Comma:
|
|
|
|
case BO_Assign:
|
2010-04-17 03:34:13 +04:00
|
|
|
return BO->getRHS()->isKnownToHaveBooleanValue();
|
|
|
|
}
|
|
|
|
}
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2011-04-15 04:35:48 +04:00
|
|
|
if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E))
|
2010-04-17 03:34:13 +04:00
|
|
|
return CO->getTrueExpr()->isKnownToHaveBooleanValue() &&
|
|
|
|
CO->getFalseExpr()->isKnownToHaveBooleanValue();
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2010-04-17 03:34:13 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-02-09 11:16:59 +03:00
|
|
|
// Amusing macro metaprogramming hack: check whether a class provides
|
|
|
|
// a more specific implementation of getExprLoc().
|
2012-03-09 19:39:19 +04:00
|
|
|
//
|
|
|
|
// See also Stmt.cpp:{getLocStart(),getLocEnd()}.
|
2011-02-09 11:16:59 +03:00
|
|
|
namespace {
|
|
|
|
/// This implementation is used when a class provides a custom
|
|
|
|
/// implementation of getExprLoc.
|
|
|
|
template <class E, class T>
|
|
|
|
SourceLocation getExprLocImpl(const Expr *expr,
|
|
|
|
SourceLocation (T::*v)() const) {
|
|
|
|
return static_cast<const E*>(expr)->getExprLoc();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This implementation is used when a class doesn't provide
|
|
|
|
/// a custom implementation of getExprLoc. Overload resolution
|
|
|
|
/// should pick it over the implementation above because it's
|
|
|
|
/// more specialized according to function template partial ordering.
|
|
|
|
template <class E>
|
|
|
|
SourceLocation getExprLocImpl(const Expr *expr,
|
|
|
|
SourceLocation (Expr::*v)() const) {
|
2012-03-09 19:39:19 +04:00
|
|
|
return static_cast<const E*>(expr)->getLocStart();
|
2011-02-09 11:16:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceLocation Expr::getExprLoc() const {
|
|
|
|
switch (getStmtClass()) {
|
|
|
|
case Stmt::NoStmtClass: llvm_unreachable("statement without class");
|
|
|
|
#define ABSTRACT_STMT(type)
|
|
|
|
#define STMT(type, base) \
|
|
|
|
case Stmt::type##Class: llvm_unreachable(#type " is not an Expr"); break;
|
|
|
|
#define EXPR(type, base) \
|
|
|
|
case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc);
|
|
|
|
#include "clang/AST/StmtNodes.inc"
|
|
|
|
}
|
|
|
|
llvm_unreachable("unknown statement kind");
|
|
|
|
}
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Primary Expressions.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-01 05:22:09 +04:00
|
|
|
/// \brief Compute the type-, value-, and instantiation-dependence of a
|
|
|
|
/// declaration reference
|
2011-01-20 00:52:31 +03:00
|
|
|
/// based on the declaration being referenced.
|
2012-03-09 05:51:51 +04:00
|
|
|
static void computeDeclRefDependence(ASTContext &Ctx, NamedDecl *D, QualType T,
|
2011-01-20 00:52:31 +03:00
|
|
|
bool &TypeDependent,
|
2011-07-01 05:22:09 +04:00
|
|
|
bool &ValueDependent,
|
|
|
|
bool &InstantiationDependent) {
|
2011-01-20 00:52:31 +03:00
|
|
|
TypeDependent = false;
|
|
|
|
ValueDependent = false;
|
2011-07-01 05:22:09 +04:00
|
|
|
InstantiationDependent = false;
|
2009-11-23 14:41:28 +03:00
|
|
|
|
|
|
|
// (TD) C++ [temp.dep.expr]p3:
|
|
|
|
// An id-expression is type-dependent if it contains:
|
|
|
|
//
|
2010-05-05 19:23:54 +04:00
|
|
|
// and
|
2009-11-23 14:41:28 +03:00
|
|
|
//
|
|
|
|
// (VD) C++ [temp.dep.constexpr]p2:
|
|
|
|
// An identifier is value-dependent if it is:
|
2011-01-20 00:52:31 +03:00
|
|
|
|
2009-11-23 14:41:28 +03:00
|
|
|
// (TD) - an identifier that was declared with dependent type
|
|
|
|
// (VD) - a name declared with a dependent type,
|
2011-01-20 00:52:31 +03:00
|
|
|
if (T->isDependentType()) {
|
|
|
|
TypeDependent = true;
|
|
|
|
ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
InstantiationDependent = true;
|
2011-01-20 00:52:31 +03:00
|
|
|
return;
|
2011-07-01 05:22:09 +04:00
|
|
|
} else if (T->isInstantiationDependentType()) {
|
|
|
|
InstantiationDependent = true;
|
2009-11-23 14:41:28 +03:00
|
|
|
}
|
2011-01-20 00:52:31 +03:00
|
|
|
|
2009-11-23 14:41:28 +03:00
|
|
|
// (TD) - a conversion-function-id that specifies a dependent type
|
2011-01-20 00:52:31 +03:00
|
|
|
if (D->getDeclName().getNameKind()
|
2011-07-01 05:22:09 +04:00
|
|
|
== DeclarationName::CXXConversionFunctionName) {
|
|
|
|
QualType T = D->getDeclName().getCXXNameType();
|
|
|
|
if (T->isDependentType()) {
|
|
|
|
TypeDependent = true;
|
|
|
|
ValueDependent = true;
|
|
|
|
InstantiationDependent = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (T->isInstantiationDependentType())
|
|
|
|
InstantiationDependent = true;
|
2009-11-23 14:41:28 +03:00
|
|
|
}
|
2011-07-01 05:22:09 +04:00
|
|
|
|
2009-11-23 14:41:28 +03:00
|
|
|
// (VD) - the name of a non-type template parameter,
|
2011-01-20 00:52:31 +03:00
|
|
|
if (isa<NonTypeTemplateParmDecl>(D)) {
|
|
|
|
ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
InstantiationDependent = true;
|
2011-01-20 00:52:31 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-23 14:41:28 +03:00
|
|
|
// (VD) - a constant with integral or enumeration type and is
|
|
|
|
// initialized with an expression that is value-dependent.
|
2011-11-08 05:31:09 +04:00
|
|
|
// (VD) - a constant with literal type and is initialized with an
|
|
|
|
// expression that is value-dependent [C++11].
|
|
|
|
// (VD) - FIXME: Missing from the standard:
|
|
|
|
// - an entity with reference type and is initialized with an
|
|
|
|
// expression that is value-dependent [C++11]
|
2011-01-20 00:52:31 +03:00
|
|
|
if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
|
2013-01-02 15:42:31 +04:00
|
|
|
if ((Ctx.getLangOpts().CPlusPlus11 ?
|
2011-11-08 05:31:09 +04:00
|
|
|
Var->getType()->isLiteralType() :
|
|
|
|
Var->getType()->isIntegralOrEnumerationType()) &&
|
2012-08-10 04:55:35 +04:00
|
|
|
(Var->getType().isConstQualified() ||
|
2011-11-08 05:31:09 +04:00
|
|
|
Var->getType()->isReferenceType())) {
|
2010-02-01 23:16:42 +03:00
|
|
|
if (const Expr *Init = Var->getAnyInitializer())
|
2011-07-01 05:22:09 +04:00
|
|
|
if (Init->isValueDependent()) {
|
2011-01-20 00:52:31 +03:00
|
|
|
ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
InstantiationDependent = true;
|
|
|
|
}
|
2011-11-08 05:31:09 +04:00
|
|
|
}
|
|
|
|
|
2010-05-11 12:41:30 +04:00
|
|
|
// (VD) - FIXME: Missing from the standard:
|
|
|
|
// - a member function or a static data member of the current
|
|
|
|
// instantiation
|
2011-11-08 05:31:09 +04:00
|
|
|
if (Var->isStaticDataMember() &&
|
|
|
|
Var->getDeclContext()->isDependentContext()) {
|
2011-01-20 00:52:31 +03:00
|
|
|
ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
InstantiationDependent = true;
|
|
|
|
}
|
2011-01-20 00:52:31 +03:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-05-11 12:41:30 +04:00
|
|
|
// (VD) - FIXME: Missing from the standard:
|
|
|
|
// - a member function or a static data member of the current
|
|
|
|
// instantiation
|
2011-01-20 00:52:31 +03:00
|
|
|
if (isa<CXXMethodDecl>(D) && D->getDeclContext()->isDependentContext()) {
|
|
|
|
ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
InstantiationDependent = true;
|
2011-11-08 05:31:09 +04:00
|
|
|
}
|
2011-01-20 00:52:31 +03:00
|
|
|
}
|
|
|
|
|
2012-03-09 05:51:51 +04:00
|
|
|
void DeclRefExpr::computeDependence(ASTContext &Ctx) {
|
2011-01-20 00:52:31 +03:00
|
|
|
bool TypeDependent = false;
|
|
|
|
bool ValueDependent = false;
|
2011-07-01 05:22:09 +04:00
|
|
|
bool InstantiationDependent = false;
|
2012-03-09 05:51:51 +04:00
|
|
|
computeDeclRefDependence(Ctx, getDecl(), getType(), TypeDependent,
|
|
|
|
ValueDependent, InstantiationDependent);
|
2011-01-20 00:52:31 +03:00
|
|
|
|
|
|
|
// (TD) C++ [temp.dep.expr]p3:
|
|
|
|
// An id-expression is type-dependent if it contains:
|
|
|
|
//
|
|
|
|
// and
|
|
|
|
//
|
|
|
|
// (VD) C++ [temp.dep.constexpr]p2:
|
|
|
|
// An identifier is value-dependent if it is:
|
|
|
|
if (!TypeDependent && !ValueDependent &&
|
|
|
|
hasExplicitTemplateArgs() &&
|
|
|
|
TemplateSpecializationType::anyDependentTemplateArguments(
|
|
|
|
getTemplateArgs(),
|
2011-07-01 05:22:09 +04:00
|
|
|
getNumTemplateArgs(),
|
|
|
|
InstantiationDependent)) {
|
2011-01-20 00:52:31 +03:00
|
|
|
TypeDependent = true;
|
|
|
|
ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
InstantiationDependent = true;
|
2011-01-20 00:52:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ExprBits.TypeDependent = TypeDependent;
|
|
|
|
ExprBits.ValueDependent = ValueDependent;
|
2011-07-01 05:22:09 +04:00
|
|
|
ExprBits.InstantiationDependent = InstantiationDependent;
|
2011-01-20 00:52:31 +03:00
|
|
|
|
2010-12-24 02:51:58 +03:00
|
|
|
// Is the declaration a parameter pack?
|
2011-01-20 00:52:31 +03:00
|
|
|
if (getDecl()->isParameterPack())
|
2011-01-06 00:11:38 +03:00
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
2009-11-23 14:41:28 +03:00
|
|
|
}
|
|
|
|
|
2012-03-09 05:51:51 +04:00
|
|
|
DeclRefExpr::DeclRefExpr(ASTContext &Ctx,
|
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 13:46:47 +04:00
|
|
|
SourceLocation TemplateKWLoc,
|
2012-03-10 13:33:50 +04:00
|
|
|
ValueDecl *D, bool RefersToEnclosingLocal,
|
|
|
|
const DeclarationNameInfo &NameInfo,
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
NamedDecl *FoundD,
|
2010-08-12 02:01:17 +04:00
|
|
|
const TemplateArgumentListInfo *TemplateArgs,
|
2010-11-18 09:31:45 +03:00
|
|
|
QualType T, ExprValueKind VK)
|
2011-07-01 05:22:09 +04:00
|
|
|
: Expr(DeclRefExprClass, T, VK, OK_Ordinary, false, false, false, false),
|
2011-05-02 01:29:53 +04:00
|
|
|
D(D), Loc(NameInfo.getLoc()), DNLoc(NameInfo.getInfo()) {
|
|
|
|
DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0;
|
2011-05-02 01:55:21 +04:00
|
|
|
if (QualifierLoc)
|
2011-05-02 02:14:37 +04:00
|
|
|
getInternalQualifierLoc() = QualifierLoc;
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0;
|
|
|
|
if (FoundD)
|
|
|
|
getInternalFoundDecl() = FoundD;
|
2012-01-27 13:46:47 +04:00
|
|
|
DeclRefExprBits.HasTemplateKWAndArgsInfo
|
|
|
|
= (TemplateArgs || TemplateKWLoc.isValid()) ? 1 : 0;
|
2012-03-10 13:33:50 +04:00
|
|
|
DeclRefExprBits.RefersToEnclosingLocal = RefersToEnclosingLocal;
|
2011-07-01 05:22:09 +04:00
|
|
|
if (TemplateArgs) {
|
|
|
|
bool Dependent = false;
|
|
|
|
bool InstantiationDependent = false;
|
|
|
|
bool ContainsUnexpandedParameterPack = false;
|
2012-01-27 13:46:47 +04:00
|
|
|
getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *TemplateArgs,
|
|
|
|
Dependent,
|
|
|
|
InstantiationDependent,
|
|
|
|
ContainsUnexpandedParameterPack);
|
2011-07-01 05:22:09 +04:00
|
|
|
if (InstantiationDependent)
|
|
|
|
setInstantiationDependent(true);
|
2012-01-27 13:46:47 +04:00
|
|
|
} else if (TemplateKWLoc.isValid()) {
|
|
|
|
getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
|
2011-07-01 05:22:09 +04:00
|
|
|
}
|
2011-10-10 16:54:05 +04:00
|
|
|
DeclRefExprBits.HadMultipleCandidates = 0;
|
|
|
|
|
2012-03-09 05:51:51 +04:00
|
|
|
computeDependence(Ctx);
|
2010-08-12 02:01:17 +04:00
|
|
|
}
|
|
|
|
|
2009-10-23 22:54:35 +04:00
|
|
|
DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
|
2011-03-01 00:54:11 +03:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 13:46:47 +04:00
|
|
|
SourceLocation TemplateKWLoc,
|
2009-12-08 12:08:17 +03:00
|
|
|
ValueDecl *D,
|
2012-03-10 13:33:50 +04:00
|
|
|
bool RefersToEnclosingLocal,
|
2009-10-23 22:54:35 +04:00
|
|
|
SourceLocation NameLoc,
|
2009-11-23 14:41:28 +03:00
|
|
|
QualType T,
|
2010-11-18 09:31:45 +03:00
|
|
|
ExprValueKind VK,
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
NamedDecl *FoundD,
|
2009-11-23 14:41:28 +03:00
|
|
|
const TemplateArgumentListInfo *TemplateArgs) {
|
2012-01-27 13:46:47 +04:00
|
|
|
return Create(Context, QualifierLoc, TemplateKWLoc, D,
|
2012-03-10 13:33:50 +04:00
|
|
|
RefersToEnclosingLocal,
|
2010-08-12 02:01:17 +04:00
|
|
|
DeclarationNameInfo(D->getDeclName(), NameLoc),
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
T, VK, FoundD, TemplateArgs);
|
2010-08-12 02:01:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
|
2011-03-01 00:54:11 +03:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 13:46:47 +04:00
|
|
|
SourceLocation TemplateKWLoc,
|
2010-08-12 02:01:17 +04:00
|
|
|
ValueDecl *D,
|
2012-03-10 13:33:50 +04:00
|
|
|
bool RefersToEnclosingLocal,
|
2010-08-12 02:01:17 +04:00
|
|
|
const DeclarationNameInfo &NameInfo,
|
|
|
|
QualType T,
|
2010-11-18 09:31:45 +03:00
|
|
|
ExprValueKind VK,
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
NamedDecl *FoundD,
|
2010-08-12 02:01:17 +04:00
|
|
|
const TemplateArgumentListInfo *TemplateArgs) {
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
// Filter out cases where the found Decl is the same as the value refenenced.
|
|
|
|
if (D == FoundD)
|
|
|
|
FoundD = 0;
|
|
|
|
|
2009-10-23 22:54:35 +04:00
|
|
|
std::size_t Size = sizeof(DeclRefExpr);
|
2011-03-01 00:54:11 +03:00
|
|
|
if (QualifierLoc != 0)
|
2011-05-02 02:14:37 +04:00
|
|
|
Size += sizeof(NestedNameSpecifierLoc);
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
if (FoundD)
|
|
|
|
Size += sizeof(NamedDecl *);
|
2009-11-23 04:53:49 +03:00
|
|
|
if (TemplateArgs)
|
2012-01-27 13:46:47 +04:00
|
|
|
Size += ASTTemplateKWAndArgsInfo::sizeFor(TemplateArgs->size());
|
|
|
|
else if (TemplateKWLoc.isValid())
|
|
|
|
Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
|
2010-10-30 09:14:06 +04:00
|
|
|
void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
|
2012-03-09 05:51:51 +04:00
|
|
|
return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D,
|
2012-03-10 13:33:50 +04:00
|
|
|
RefersToEnclosingLocal,
|
2012-03-09 05:51:51 +04:00
|
|
|
NameInfo, FoundD, TemplateArgs, T, VK);
|
2009-10-23 22:54:35 +04:00
|
|
|
}
|
|
|
|
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
DeclRefExpr *DeclRefExpr::CreateEmpty(ASTContext &Context,
|
2011-02-04 15:01:24 +03:00
|
|
|
bool HasQualifier,
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
bool HasFoundDecl,
|
2012-01-27 13:46:47 +04:00
|
|
|
bool HasTemplateKWAndArgsInfo,
|
2010-07-08 17:09:47 +04:00
|
|
|
unsigned NumTemplateArgs) {
|
|
|
|
std::size_t Size = sizeof(DeclRefExpr);
|
|
|
|
if (HasQualifier)
|
2011-05-02 02:14:37 +04:00
|
|
|
Size += sizeof(NestedNameSpecifierLoc);
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
if (HasFoundDecl)
|
|
|
|
Size += sizeof(NamedDecl *);
|
2012-01-27 13:46:47 +04:00
|
|
|
if (HasTemplateKWAndArgsInfo)
|
|
|
|
Size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
|
Add an optional field attached to a DeclRefExpr which points back to the
Decl actually found via name lookup & overload resolution when that Decl
is different from the ValueDecl which is actually referenced by the
expression.
This can be used by AST consumers to correctly attribute references to
the spelling location of a using declaration, and otherwise gain insight
into the name resolution performed by Clang.
The public interface to DRE is kept as narrow as possible: we provide
a getFoundDecl() which always returns a NamedDecl, either the ValueDecl
referenced or the new, more precise NamedDecl if present. This way AST
clients can code against getFoundDecl without know when exactly the AST
has a split representation.
For an example of the data this provides consider:
% cat x.cc
namespace N1 {
struct S {};
void f(const S&);
}
void test(N1::S s) {
f(s);
using N1::f;
f(s);
}
% ./bin/clang -fsyntax-only -Xclang -ast-dump x.cc
[...]
void test(N1::S s) (CompoundStmt 0x5b02010 <x.cc:5:20, line:9:1>
(CallExpr 0x5b01df0 <line:6:3, col:6> 'void'
(ImplicitCastExpr 0x5b01dd8 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01d80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)'))
(ImplicitCastExpr 0x5b01e20 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01d58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S')))
(DeclStmt 0x5b01ee0 <line:7:3, col:14>
0x5b01e40 "UsingN1::;")
(CallExpr 0x5b01fc8 <line:8:3, col:6> 'void'
(ImplicitCastExpr 0x5b01fb0 <col:3> 'void (*)(const struct N1::S &)' <FunctionToPointerDecay>
(DeclRefExpr 0x5b01f80 <col:3> 'void (const struct N1::S &)' lvalue Function 0x5b01a20 'f' 'void (const struct N1::S &)' (UsingShadow 0x5b01ea0 'f')))
(ImplicitCastExpr 0x5b01ff8 <col:5> 'const struct N1::S' lvalue <NoOp>
(DeclRefExpr 0x5b01f58 <col:5> 'N1::S':'struct N1::S' lvalue ParmVar 0x5b01b60 's' 'N1::S':'struct N1::S'))))
Now we can tell that the second call is 'using' (no pun intended) the using
declaration, and *which* using declaration it sees. Without this, we can
mistake calls that go through using declarations for ADL calls, and have no way
to attribute names looked up with using declarations to the appropriate
UsingDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130670 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-02 03:48:14 +04:00
|
|
|
|
2010-10-30 09:14:06 +04:00
|
|
|
void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
|
2010-07-08 17:09:47 +04:00
|
|
|
return new (Mem) DeclRefExpr(EmptyShell());
|
|
|
|
}
|
|
|
|
|
2012-03-09 19:39:15 +04:00
|
|
|
SourceLocation DeclRefExpr::getLocStart() const {
|
|
|
|
if (hasQualifier())
|
|
|
|
return getQualifierLoc().getBeginLoc();
|
|
|
|
return getNameInfo().getLocStart();
|
|
|
|
}
|
|
|
|
SourceLocation DeclRefExpr::getLocEnd() const {
|
|
|
|
if (hasExplicitTemplateArgs())
|
|
|
|
return getRAngleLoc();
|
|
|
|
return getNameInfo().getLocEnd();
|
|
|
|
}
|
2009-10-23 22:54:35 +04:00
|
|
|
|
2009-09-08 22:24:21 +04:00
|
|
|
// FIXME: Maybe this should use DeclPrinter with a special "print predefined
|
|
|
|
// expr" policy instead.
|
2010-02-11 21:20:28 +03:00
|
|
|
std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) {
|
|
|
|
ASTContext &Context = CurrentDecl->getASTContext();
|
|
|
|
|
2009-09-08 22:24:21 +04:00
|
|
|
if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
|
2010-02-11 21:20:28 +03:00
|
|
|
if (IT != PrettyFunction && IT != PrettyFunctionNoVirtual)
|
2009-09-08 22:24:21 +04:00
|
|
|
return FD->getNameAsString();
|
|
|
|
|
2012-02-05 06:13:05 +04:00
|
|
|
SmallString<256> Name;
|
2009-09-08 22:24:21 +04:00
|
|
|
llvm::raw_svector_ostream Out(Name);
|
|
|
|
|
|
|
|
if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
|
2010-02-11 21:20:28 +03:00
|
|
|
if (MD->isVirtual() && IT != PrettyFunctionNoVirtual)
|
2009-09-08 22:24:21 +04:00
|
|
|
Out << "virtual ";
|
2009-12-27 04:38:20 +03:00
|
|
|
if (MD->isStatic())
|
|
|
|
Out << "static ";
|
2009-09-08 22:24:21 +04:00
|
|
|
}
|
|
|
|
|
2012-03-11 11:00:24 +04:00
|
|
|
PrintingPolicy Policy(Context.getLangOpts());
|
2009-09-08 22:24:21 +04:00
|
|
|
std::string Proto = FD->getQualifiedNameAsString(Policy);
|
2012-04-11 00:14:15 +04:00
|
|
|
llvm::raw_string_ostream POut(Proto);
|
2009-09-08 22:24:21 +04:00
|
|
|
|
2012-04-11 00:14:15 +04:00
|
|
|
const FunctionDecl *Decl = FD;
|
|
|
|
if (const FunctionDecl* Pattern = FD->getTemplateInstantiationPattern())
|
|
|
|
Decl = Pattern;
|
|
|
|
const FunctionType *AFT = Decl->getType()->getAs<FunctionType>();
|
2009-09-08 22:24:21 +04:00
|
|
|
const FunctionProtoType *FT = 0;
|
|
|
|
if (FD->hasWrittenPrototype())
|
|
|
|
FT = dyn_cast<FunctionProtoType>(AFT);
|
|
|
|
|
2012-04-11 00:14:15 +04:00
|
|
|
POut << "(";
|
2009-09-08 22:24:21 +04:00
|
|
|
if (FT) {
|
2012-04-11 00:14:15 +04:00
|
|
|
for (unsigned i = 0, e = Decl->getNumParams(); i != e; ++i) {
|
2009-09-08 22:24:21 +04:00
|
|
|
if (i) POut << ", ";
|
2012-05-05 08:20:37 +04:00
|
|
|
POut << Decl->getParamDecl(i)->getType().stream(Policy);
|
2009-09-08 22:24:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (FT->isVariadic()) {
|
|
|
|
if (FD->getNumParams()) POut << ", ";
|
|
|
|
POut << "...";
|
|
|
|
}
|
|
|
|
}
|
2012-04-11 00:14:15 +04:00
|
|
|
POut << ")";
|
2009-09-08 22:24:21 +04:00
|
|
|
|
2009-12-27 04:38:20 +03:00
|
|
|
if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
|
2012-12-14 23:44:11 +04:00
|
|
|
const FunctionType *FT = MD->getType()->castAs<FunctionType>();
|
2012-08-10 04:55:35 +04:00
|
|
|
if (FT->isConst())
|
2012-04-11 00:14:15 +04:00
|
|
|
POut << " const";
|
2012-08-10 04:55:35 +04:00
|
|
|
if (FT->isVolatile())
|
2012-04-11 00:14:15 +04:00
|
|
|
POut << " volatile";
|
|
|
|
RefQualifierKind Ref = MD->getRefQualifier();
|
|
|
|
if (Ref == RQ_LValue)
|
|
|
|
POut << " &";
|
|
|
|
else if (Ref == RQ_RValue)
|
|
|
|
POut << " &&";
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef SmallVector<const ClassTemplateSpecializationDecl *, 8> SpecsTy;
|
|
|
|
SpecsTy Specs;
|
|
|
|
const DeclContext *Ctx = FD->getDeclContext();
|
|
|
|
while (Ctx && isa<NamedDecl>(Ctx)) {
|
|
|
|
const ClassTemplateSpecializationDecl *Spec
|
|
|
|
= dyn_cast<ClassTemplateSpecializationDecl>(Ctx);
|
|
|
|
if (Spec && !Spec->isExplicitSpecialization())
|
|
|
|
Specs.push_back(Spec);
|
|
|
|
Ctx = Ctx->getParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string TemplateParams;
|
|
|
|
llvm::raw_string_ostream TOut(TemplateParams);
|
|
|
|
for (SpecsTy::reverse_iterator I = Specs.rbegin(), E = Specs.rend();
|
|
|
|
I != E; ++I) {
|
|
|
|
const TemplateParameterList *Params
|
|
|
|
= (*I)->getSpecializedTemplate()->getTemplateParameters();
|
|
|
|
const TemplateArgumentList &Args = (*I)->getTemplateArgs();
|
|
|
|
assert(Params->size() == Args.size());
|
|
|
|
for (unsigned i = 0, numParams = Params->size(); i != numParams; ++i) {
|
|
|
|
StringRef Param = Params->getParam(i)->getName();
|
|
|
|
if (Param.empty()) continue;
|
|
|
|
TOut << Param << " = ";
|
|
|
|
Args.get(i).print(Policy, TOut);
|
|
|
|
TOut << ", ";
|
|
|
|
}
|
2009-12-27 04:38:20 +03:00
|
|
|
}
|
|
|
|
|
2012-04-11 00:14:15 +04:00
|
|
|
FunctionTemplateSpecializationInfo *FSI
|
|
|
|
= FD->getTemplateSpecializationInfo();
|
|
|
|
if (FSI && !FSI->isExplicitSpecialization()) {
|
|
|
|
const TemplateParameterList* Params
|
|
|
|
= FSI->getTemplate()->getTemplateParameters();
|
|
|
|
const TemplateArgumentList* Args = FSI->TemplateArguments;
|
|
|
|
assert(Params->size() == Args->size());
|
|
|
|
for (unsigned i = 0, e = Params->size(); i != e; ++i) {
|
|
|
|
StringRef Param = Params->getParam(i)->getName();
|
|
|
|
if (Param.empty()) continue;
|
|
|
|
TOut << Param << " = ";
|
|
|
|
Args->get(i).print(Policy, TOut);
|
|
|
|
TOut << ", ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TOut.flush();
|
|
|
|
if (!TemplateParams.empty()) {
|
|
|
|
// remove the trailing comma and space
|
|
|
|
TemplateParams.resize(TemplateParams.size() - 2);
|
|
|
|
POut << " [" << TemplateParams << "]";
|
|
|
|
}
|
|
|
|
|
|
|
|
POut.flush();
|
|
|
|
|
2009-12-07 02:55:13 +03:00
|
|
|
if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
|
|
|
|
AFT->getResultType().getAsStringInternal(Proto, Policy);
|
2009-09-08 22:24:21 +04:00
|
|
|
|
|
|
|
Out << Proto;
|
|
|
|
|
|
|
|
Out.flush();
|
|
|
|
return Name.str().str();
|
|
|
|
}
|
|
|
|
if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
|
2012-02-05 06:13:05 +04:00
|
|
|
SmallString<256> Name;
|
2009-09-08 22:24:21 +04:00
|
|
|
llvm::raw_svector_ostream Out(Name);
|
|
|
|
Out << (MD->isInstanceMethod() ? '-' : '+');
|
|
|
|
Out << '[';
|
2010-03-19 00:23:08 +03:00
|
|
|
|
|
|
|
// For incorrect code, there might not be an ObjCInterfaceDecl. Do
|
|
|
|
// a null check to avoid a crash.
|
|
|
|
if (const ObjCInterfaceDecl *ID = MD->getClassInterface())
|
2011-10-14 22:45:37 +04:00
|
|
|
Out << *ID;
|
2010-03-19 00:23:08 +03:00
|
|
|
|
2009-09-08 22:24:21 +04:00
|
|
|
if (const ObjCCategoryImplDecl *CID =
|
2010-04-17 13:33:03 +04:00
|
|
|
dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext()))
|
2012-02-07 15:57:45 +04:00
|
|
|
Out << '(' << *CID << ')';
|
2010-04-17 13:33:03 +04:00
|
|
|
|
2009-09-08 22:24:21 +04:00
|
|
|
Out << ' ';
|
|
|
|
Out << MD->getSelector().getAsString();
|
|
|
|
Out << ']';
|
|
|
|
|
|
|
|
Out.flush();
|
|
|
|
return Name.str().str();
|
|
|
|
}
|
|
|
|
if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
|
|
|
|
// __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
|
|
|
|
return "top level";
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2010-08-28 13:06:06 +04:00
|
|
|
void APNumericStorage::setIntValue(ASTContext &C, const llvm::APInt &Val) {
|
|
|
|
if (hasAllocation())
|
|
|
|
C.Deallocate(pVal);
|
|
|
|
|
|
|
|
BitWidth = Val.getBitWidth();
|
|
|
|
unsigned NumWords = Val.getNumWords();
|
|
|
|
const uint64_t* Words = Val.getRawData();
|
|
|
|
if (NumWords > 1) {
|
|
|
|
pVal = new (C) uint64_t[NumWords];
|
|
|
|
std::copy(Words, Words + NumWords, pVal);
|
|
|
|
} else if (NumWords == 1)
|
|
|
|
VAL = Words[0];
|
|
|
|
else
|
|
|
|
VAL = 0;
|
|
|
|
}
|
|
|
|
|
2012-07-04 21:04:04 +04:00
|
|
|
IntegerLiteral::IntegerLiteral(ASTContext &C, const llvm::APInt &V,
|
|
|
|
QualType type, SourceLocation l)
|
|
|
|
: Expr(IntegerLiteralClass, type, VK_RValue, OK_Ordinary, false, false,
|
|
|
|
false, false),
|
|
|
|
Loc(l) {
|
|
|
|
assert(type->isIntegerType() && "Illegal type in IntegerLiteral");
|
|
|
|
assert(V.getBitWidth() == C.getIntWidth(type) &&
|
|
|
|
"Integer type is not the correct size for constant.");
|
|
|
|
setValue(C, V);
|
|
|
|
}
|
|
|
|
|
2010-08-28 13:06:06 +04:00
|
|
|
IntegerLiteral *
|
|
|
|
IntegerLiteral::Create(ASTContext &C, const llvm::APInt &V,
|
|
|
|
QualType type, SourceLocation l) {
|
|
|
|
return new (C) IntegerLiteral(C, V, type, l);
|
|
|
|
}
|
|
|
|
|
|
|
|
IntegerLiteral *
|
|
|
|
IntegerLiteral::Create(ASTContext &C, EmptyShell Empty) {
|
|
|
|
return new (C) IntegerLiteral(Empty);
|
|
|
|
}
|
|
|
|
|
2012-07-04 21:04:04 +04:00
|
|
|
FloatingLiteral::FloatingLiteral(ASTContext &C, const llvm::APFloat &V,
|
|
|
|
bool isexact, QualType Type, SourceLocation L)
|
|
|
|
: Expr(FloatingLiteralClass, Type, VK_RValue, OK_Ordinary, false, false,
|
|
|
|
false, false), Loc(L) {
|
2013-01-22 13:46:51 +04:00
|
|
|
setSemantics(V.getSemantics());
|
2012-07-04 21:04:04 +04:00
|
|
|
FloatingLiteralBits.IsExact = isexact;
|
|
|
|
setValue(C, V);
|
|
|
|
}
|
|
|
|
|
|
|
|
FloatingLiteral::FloatingLiteral(ASTContext &C, EmptyShell Empty)
|
|
|
|
: Expr(FloatingLiteralClass, Empty) {
|
2013-01-22 13:46:51 +04:00
|
|
|
setRawSemantics(IEEEhalf);
|
2012-07-04 21:04:04 +04:00
|
|
|
FloatingLiteralBits.IsExact = false;
|
|
|
|
}
|
|
|
|
|
2010-08-28 13:06:06 +04:00
|
|
|
FloatingLiteral *
|
|
|
|
FloatingLiteral::Create(ASTContext &C, const llvm::APFloat &V,
|
|
|
|
bool isexact, QualType Type, SourceLocation L) {
|
|
|
|
return new (C) FloatingLiteral(C, V, isexact, Type, L);
|
|
|
|
}
|
|
|
|
|
|
|
|
FloatingLiteral *
|
|
|
|
FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) {
|
2012-01-11 02:40:09 +04:00
|
|
|
return new (C) FloatingLiteral(C, Empty);
|
2010-08-28 13:06:06 +04:00
|
|
|
}
|
|
|
|
|
2013-01-22 13:46:51 +04:00
|
|
|
const llvm::fltSemantics &FloatingLiteral::getSemantics() const {
|
|
|
|
switch(FloatingLiteralBits.Semantics) {
|
|
|
|
case IEEEhalf:
|
|
|
|
return llvm::APFloat::IEEEhalf;
|
|
|
|
case IEEEsingle:
|
|
|
|
return llvm::APFloat::IEEEsingle;
|
|
|
|
case IEEEdouble:
|
|
|
|
return llvm::APFloat::IEEEdouble;
|
|
|
|
case x87DoubleExtended:
|
|
|
|
return llvm::APFloat::x87DoubleExtended;
|
|
|
|
case IEEEquad:
|
|
|
|
return llvm::APFloat::IEEEquad;
|
|
|
|
case PPCDoubleDouble:
|
|
|
|
return llvm::APFloat::PPCDoubleDouble;
|
|
|
|
}
|
|
|
|
llvm_unreachable("Unrecognised floating semantics");
|
|
|
|
}
|
|
|
|
|
|
|
|
void FloatingLiteral::setSemantics(const llvm::fltSemantics &Sem) {
|
|
|
|
if (&Sem == &llvm::APFloat::IEEEhalf)
|
|
|
|
FloatingLiteralBits.Semantics = IEEEhalf;
|
|
|
|
else if (&Sem == &llvm::APFloat::IEEEsingle)
|
|
|
|
FloatingLiteralBits.Semantics = IEEEsingle;
|
|
|
|
else if (&Sem == &llvm::APFloat::IEEEdouble)
|
|
|
|
FloatingLiteralBits.Semantics = IEEEdouble;
|
|
|
|
else if (&Sem == &llvm::APFloat::x87DoubleExtended)
|
|
|
|
FloatingLiteralBits.Semantics = x87DoubleExtended;
|
|
|
|
else if (&Sem == &llvm::APFloat::IEEEquad)
|
|
|
|
FloatingLiteralBits.Semantics = IEEEquad;
|
|
|
|
else if (&Sem == &llvm::APFloat::PPCDoubleDouble)
|
|
|
|
FloatingLiteralBits.Semantics = PPCDoubleDouble;
|
|
|
|
else
|
|
|
|
llvm_unreachable("Unknown floating semantics");
|
|
|
|
}
|
|
|
|
|
2008-06-08 02:13:43 +04:00
|
|
|
/// getValueAsApproximateDouble - This returns the value as an inaccurate
|
|
|
|
/// double. Note that this may cause loss of precision, but is useful for
|
|
|
|
/// debugging dumps, etc.
|
|
|
|
double FloatingLiteral::getValueAsApproximateDouble() const {
|
|
|
|
llvm::APFloat V = getValue();
|
2008-10-10 03:02:32 +04:00
|
|
|
bool ignored;
|
|
|
|
V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
|
|
|
|
&ignored);
|
2008-06-08 02:13:43 +04:00
|
|
|
return V.convertToDouble();
|
|
|
|
}
|
|
|
|
|
2012-02-24 13:07:53 +04:00
|
|
|
int StringLiteral::mapCharByteWidth(TargetInfo const &target,StringKind k) {
|
2012-03-01 00:59:56 +04:00
|
|
|
int CharByteWidth = 0;
|
2012-02-24 13:07:53 +04:00
|
|
|
switch(k) {
|
2011-11-01 06:23:42 +04:00
|
|
|
case Ascii:
|
|
|
|
case UTF8:
|
2012-02-24 13:07:53 +04:00
|
|
|
CharByteWidth = target.getCharWidth();
|
2011-11-01 06:23:42 +04:00
|
|
|
break;
|
|
|
|
case Wide:
|
2012-02-24 13:07:53 +04:00
|
|
|
CharByteWidth = target.getWCharWidth();
|
2011-11-01 06:23:42 +04:00
|
|
|
break;
|
|
|
|
case UTF16:
|
2012-02-24 13:07:53 +04:00
|
|
|
CharByteWidth = target.getChar16Width();
|
2011-11-01 06:23:42 +04:00
|
|
|
break;
|
|
|
|
case UTF32:
|
2012-02-24 13:07:53 +04:00
|
|
|
CharByteWidth = target.getChar32Width();
|
2012-03-01 00:59:56 +04:00
|
|
|
break;
|
2011-11-01 06:23:42 +04:00
|
|
|
}
|
|
|
|
assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
|
|
|
|
CharByteWidth /= 8;
|
2012-02-24 13:07:53 +04:00
|
|
|
assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4)
|
2011-11-01 06:23:42 +04:00
|
|
|
&& "character byte widths supported are 1, 2, and 4 only");
|
|
|
|
return CharByteWidth;
|
|
|
|
}
|
|
|
|
|
2011-07-23 14:55:15 +04:00
|
|
|
StringLiteral *StringLiteral::Create(ASTContext &C, StringRef Str,
|
2011-07-27 09:40:30 +04:00
|
|
|
StringKind Kind, bool Pascal, QualType Ty,
|
2009-09-09 19:08:12 +04:00
|
|
|
const SourceLocation *Loc,
|
2009-03-15 21:34:13 +03:00
|
|
|
unsigned NumStrs) {
|
2009-02-18 09:40:38 +03:00
|
|
|
// Allocate enough space for the StringLiteral plus an array of locations for
|
|
|
|
// any concatenated string tokens.
|
|
|
|
void *Mem = C.Allocate(sizeof(StringLiteral)+
|
|
|
|
sizeof(SourceLocation)*(NumStrs-1),
|
2010-10-30 09:14:06 +04:00
|
|
|
llvm::alignOf<StringLiteral>());
|
2009-02-18 09:40:38 +03:00
|
|
|
StringLiteral *SL = new (Mem) StringLiteral(Ty);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// OPTIMIZE: could allocate this appended to the StringLiteral.
|
2011-11-01 06:23:42 +04:00
|
|
|
SL->setString(C,Str,Kind,Pascal);
|
|
|
|
|
2009-02-18 09:40:38 +03:00
|
|
|
SL->TokLocs[0] = Loc[0];
|
|
|
|
SL->NumConcatenated = NumStrs;
|
2007-07-11 21:01:13 +04:00
|
|
|
|
2009-02-18 08:49:11 +03:00
|
|
|
if (NumStrs != 1)
|
2009-02-18 09:40:38 +03:00
|
|
|
memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
|
|
|
|
return SL;
|
2009-02-18 08:49:11 +03:00
|
|
|
}
|
|
|
|
|
2009-04-15 20:35:07 +04:00
|
|
|
StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
|
|
|
|
void *Mem = C.Allocate(sizeof(StringLiteral)+
|
|
|
|
sizeof(SourceLocation)*(NumStrs-1),
|
2010-10-30 09:14:06 +04:00
|
|
|
llvm::alignOf<StringLiteral>());
|
2009-04-15 20:35:07 +04:00
|
|
|
StringLiteral *SL = new (Mem) StringLiteral(QualType());
|
2011-11-01 06:23:42 +04:00
|
|
|
SL->CharByteWidth = 0;
|
|
|
|
SL->Length = 0;
|
2009-04-15 20:35:07 +04:00
|
|
|
SL->NumConcatenated = NumStrs;
|
|
|
|
return SL;
|
|
|
|
}
|
|
|
|
|
2012-06-14 00:25:24 +04:00
|
|
|
void StringLiteral::outputString(raw_ostream &OS) {
|
|
|
|
switch (getKind()) {
|
|
|
|
case Ascii: break; // no prefix.
|
|
|
|
case Wide: OS << 'L'; break;
|
|
|
|
case UTF8: OS << "u8"; break;
|
|
|
|
case UTF16: OS << 'u'; break;
|
|
|
|
case UTF32: OS << 'U'; break;
|
|
|
|
}
|
|
|
|
OS << '"';
|
|
|
|
static const char Hex[] = "0123456789ABCDEF";
|
|
|
|
|
|
|
|
unsigned LastSlashX = getLength();
|
|
|
|
for (unsigned I = 0, N = getLength(); I != N; ++I) {
|
|
|
|
switch (uint32_t Char = getCodeUnit(I)) {
|
|
|
|
default:
|
|
|
|
// FIXME: Convert UTF-8 back to codepoints before rendering.
|
|
|
|
|
|
|
|
// Convert UTF-16 surrogate pairs back to codepoints before rendering.
|
|
|
|
// Leave invalid surrogates alone; we'll use \x for those.
|
|
|
|
if (getKind() == UTF16 && I != N - 1 && Char >= 0xd800 &&
|
|
|
|
Char <= 0xdbff) {
|
|
|
|
uint32_t Trail = getCodeUnit(I + 1);
|
|
|
|
if (Trail >= 0xdc00 && Trail <= 0xdfff) {
|
|
|
|
Char = 0x10000 + ((Char - 0xd800) << 10) + (Trail - 0xdc00);
|
|
|
|
++I;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Char > 0xff) {
|
|
|
|
// If this is a wide string, output characters over 0xff using \x
|
|
|
|
// escapes. Otherwise, this is a UTF-16 or UTF-32 string, and Char is a
|
|
|
|
// codepoint: use \x escapes for invalid codepoints.
|
|
|
|
if (getKind() == Wide ||
|
|
|
|
(Char >= 0xd800 && Char <= 0xdfff) || Char >= 0x110000) {
|
|
|
|
// FIXME: Is this the best way to print wchar_t?
|
|
|
|
OS << "\\x";
|
|
|
|
int Shift = 28;
|
|
|
|
while ((Char >> Shift) == 0)
|
|
|
|
Shift -= 4;
|
|
|
|
for (/**/; Shift >= 0; Shift -= 4)
|
|
|
|
OS << Hex[(Char >> Shift) & 15];
|
|
|
|
LastSlashX = I;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Char > 0xffff)
|
|
|
|
OS << "\\U00"
|
|
|
|
<< Hex[(Char >> 20) & 15]
|
|
|
|
<< Hex[(Char >> 16) & 15];
|
|
|
|
else
|
|
|
|
OS << "\\u";
|
|
|
|
OS << Hex[(Char >> 12) & 15]
|
|
|
|
<< Hex[(Char >> 8) & 15]
|
|
|
|
<< Hex[(Char >> 4) & 15]
|
|
|
|
<< Hex[(Char >> 0) & 15];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we used \x... for the previous character, and this character is a
|
|
|
|
// hexadecimal digit, prevent it being slurped as part of the \x.
|
|
|
|
if (LastSlashX + 1 == I) {
|
|
|
|
switch (Char) {
|
|
|
|
case '0': case '1': case '2': case '3': case '4':
|
|
|
|
case '5': case '6': case '7': case '8': case '9':
|
|
|
|
case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
|
|
|
|
case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
|
|
|
|
OS << "\"\"";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(Char <= 0xff &&
|
|
|
|
"Characters above 0xff should already have been handled.");
|
|
|
|
|
|
|
|
if (isprint(Char))
|
|
|
|
OS << (char)Char;
|
|
|
|
else // Output anything hard as an octal escape.
|
|
|
|
OS << '\\'
|
|
|
|
<< (char)('0' + ((Char >> 6) & 7))
|
|
|
|
<< (char)('0' + ((Char >> 3) & 7))
|
|
|
|
<< (char)('0' + ((Char >> 0) & 7));
|
|
|
|
break;
|
|
|
|
// Handle some common non-printable cases to make dumps prettier.
|
|
|
|
case '\\': OS << "\\\\"; break;
|
|
|
|
case '"': OS << "\\\""; break;
|
|
|
|
case '\n': OS << "\\n"; break;
|
|
|
|
case '\t': OS << "\\t"; break;
|
|
|
|
case '\a': OS << "\\a"; break;
|
|
|
|
case '\b': OS << "\\b"; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
OS << '"';
|
|
|
|
}
|
|
|
|
|
2011-11-01 06:23:42 +04:00
|
|
|
void StringLiteral::setString(ASTContext &C, StringRef Str,
|
|
|
|
StringKind Kind, bool IsPascal) {
|
|
|
|
//FIXME: we assume that the string data comes from a target that uses the same
|
|
|
|
// code unit size and endianess for the type of string.
|
|
|
|
this->Kind = Kind;
|
|
|
|
this->IsPascal = IsPascal;
|
|
|
|
|
2012-02-24 13:07:53 +04:00
|
|
|
CharByteWidth = mapCharByteWidth(C.getTargetInfo(),Kind);
|
2011-11-01 06:23:42 +04:00
|
|
|
assert((Str.size()%CharByteWidth == 0)
|
|
|
|
&& "size of data must be multiple of CharByteWidth");
|
|
|
|
Length = Str.size()/CharByteWidth;
|
|
|
|
|
|
|
|
switch(CharByteWidth) {
|
|
|
|
case 1: {
|
|
|
|
char *AStrData = new (C) char[Length];
|
2012-09-15 01:17:41 +04:00
|
|
|
std::memcpy(AStrData,Str.data(),Length*sizeof(*AStrData));
|
2011-11-01 06:23:42 +04:00
|
|
|
StrData.asChar = AStrData;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 2: {
|
|
|
|
uint16_t *AStrData = new (C) uint16_t[Length];
|
2012-09-15 01:17:41 +04:00
|
|
|
std::memcpy(AStrData,Str.data(),Length*sizeof(*AStrData));
|
2011-11-01 06:23:42 +04:00
|
|
|
StrData.asUInt16 = AStrData;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 4: {
|
|
|
|
uint32_t *AStrData = new (C) uint32_t[Length];
|
2012-09-15 01:17:41 +04:00
|
|
|
std::memcpy(AStrData,Str.data(),Length*sizeof(*AStrData));
|
2011-11-01 06:23:42 +04:00
|
|
|
StrData.asUInt32 = AStrData;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
assert(false && "unsupported CharByteWidth");
|
|
|
|
}
|
2009-04-15 20:35:07 +04:00
|
|
|
}
|
|
|
|
|
2010-11-17 10:37:15 +03:00
|
|
|
/// getLocationOfByte - Return a source location that points to the specified
|
|
|
|
/// byte of this string literal.
|
|
|
|
///
|
|
|
|
/// Strings are amazingly complex. They can be formed from multiple tokens and
|
|
|
|
/// can have escape sequences in them in addition to the usual trigraph and
|
|
|
|
/// escaped newline business. This routine handles this complexity.
|
|
|
|
///
|
|
|
|
SourceLocation StringLiteral::
|
|
|
|
getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
|
|
|
|
const LangOptions &Features, const TargetInfo &Target) const {
|
2012-06-13 09:37:23 +04:00
|
|
|
assert((Kind == StringLiteral::Ascii || Kind == StringLiteral::UTF8) &&
|
|
|
|
"Only narrow string literals are currently supported");
|
2011-07-27 09:40:30 +04:00
|
|
|
|
2010-11-17 10:37:15 +03:00
|
|
|
// Loop over all of the tokens in this string until we find the one that
|
|
|
|
// contains the byte we're looking for.
|
|
|
|
unsigned TokNo = 0;
|
|
|
|
while (1) {
|
|
|
|
assert(TokNo < getNumConcatenated() && "Invalid byte number!");
|
|
|
|
SourceLocation StrTokLoc = getStrTokenLoc(TokNo);
|
|
|
|
|
|
|
|
// Get the spelling of the string so that we can get the data that makes up
|
|
|
|
// the string literal, not the identifier for the macro it is potentially
|
|
|
|
// expanded through.
|
|
|
|
SourceLocation StrTokSpellingLoc = SM.getSpellingLoc(StrTokLoc);
|
|
|
|
|
|
|
|
// Re-lex the token to get its length and original spelling.
|
|
|
|
std::pair<FileID, unsigned> LocInfo =SM.getDecomposedLoc(StrTokSpellingLoc);
|
|
|
|
bool Invalid = false;
|
2011-07-23 14:55:15 +04:00
|
|
|
StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
|
2010-11-17 10:37:15 +03:00
|
|
|
if (Invalid)
|
|
|
|
return StrTokSpellingLoc;
|
|
|
|
|
|
|
|
const char *StrData = Buffer.data()+LocInfo.second;
|
|
|
|
|
|
|
|
// Create a lexer starting at the beginning of this token.
|
2012-05-12 01:39:18 +04:00
|
|
|
Lexer TheLexer(SM.getLocForStartOfFile(LocInfo.first), Features,
|
|
|
|
Buffer.begin(), StrData, Buffer.end());
|
2010-11-17 10:37:15 +03:00
|
|
|
Token TheTok;
|
|
|
|
TheLexer.LexFromRawLexer(TheTok);
|
|
|
|
|
|
|
|
// Use the StringLiteralParser to compute the length of the string in bytes.
|
|
|
|
StringLiteralParser SLP(&TheTok, 1, SM, Features, Target);
|
|
|
|
unsigned TokNumBytes = SLP.GetStringLength();
|
|
|
|
|
|
|
|
// If the byte is in this token, return the location of the byte.
|
|
|
|
if (ByteNo < TokNumBytes ||
|
2011-07-01 00:17:41 +04:00
|
|
|
(ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) {
|
2010-11-17 10:37:15 +03:00
|
|
|
unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo);
|
|
|
|
|
|
|
|
// Now that we know the offset of the token in the spelling, use the
|
|
|
|
// preprocessor to get the offset in the original source.
|
|
|
|
return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move to the next string token.
|
|
|
|
++TokNo;
|
|
|
|
ByteNo -= TokNumBytes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
|
|
|
|
/// corresponds to, e.g. "sizeof" or "[pre]++".
|
2012-10-08 05:11:04 +04:00
|
|
|
StringRef UnaryOperator::getOpcodeStr(Opcode Op) {
|
2007-07-11 21:01:13 +04:00
|
|
|
switch (Op) {
|
2010-08-25 15:45:40 +04:00
|
|
|
case UO_PostInc: return "++";
|
|
|
|
case UO_PostDec: return "--";
|
|
|
|
case UO_PreInc: return "++";
|
|
|
|
case UO_PreDec: return "--";
|
|
|
|
case UO_AddrOf: return "&";
|
|
|
|
case UO_Deref: return "*";
|
|
|
|
case UO_Plus: return "+";
|
|
|
|
case UO_Minus: return "-";
|
|
|
|
case UO_Not: return "~";
|
|
|
|
case UO_LNot: return "!";
|
|
|
|
case UO_Real: return "__real";
|
|
|
|
case UO_Imag: return "__imag";
|
|
|
|
case UO_Extension: return "__extension__";
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2012-01-17 06:30:50 +04:00
|
|
|
llvm_unreachable("Unknown unary operator");
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2010-08-25 15:45:40 +04:00
|
|
|
UnaryOperatorKind
|
2009-03-14 02:49:33 +03:00
|
|
|
UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
|
|
|
|
switch (OO) {
|
2011-09-23 09:06:16 +04:00
|
|
|
default: llvm_unreachable("No unary operator for overloaded function");
|
2010-08-25 15:45:40 +04:00
|
|
|
case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc;
|
|
|
|
case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec;
|
|
|
|
case OO_Amp: return UO_AddrOf;
|
|
|
|
case OO_Star: return UO_Deref;
|
|
|
|
case OO_Plus: return UO_Plus;
|
|
|
|
case OO_Minus: return UO_Minus;
|
|
|
|
case OO_Tilde: return UO_Not;
|
|
|
|
case OO_Exclaim: return UO_LNot;
|
2009-03-14 02:49:33 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
|
|
|
|
switch (Opc) {
|
2010-08-25 15:45:40 +04:00
|
|
|
case UO_PostInc: case UO_PreInc: return OO_PlusPlus;
|
|
|
|
case UO_PostDec: case UO_PreDec: return OO_MinusMinus;
|
|
|
|
case UO_AddrOf: return OO_Amp;
|
|
|
|
case UO_Deref: return OO_Star;
|
|
|
|
case UO_Plus: return OO_Plus;
|
|
|
|
case UO_Minus: return OO_Minus;
|
|
|
|
case UO_Not: return OO_Tilde;
|
|
|
|
case UO_LNot: return OO_Exclaim;
|
2009-03-14 02:49:33 +03:00
|
|
|
default: return OO_None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Postfix Operators.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-02-09 00:18:02 +03:00
|
|
|
CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, unsigned NumPreArgs,
|
2012-08-24 15:54:20 +04:00
|
|
|
ArrayRef<Expr*> args, QualType t, ExprValueKind VK,
|
2010-11-18 09:31:45 +03:00
|
|
|
SourceLocation rparenloc)
|
|
|
|
: Expr(SC, t, VK, OK_Ordinary,
|
2010-12-15 04:34:56 +03:00
|
|
|
fn->isTypeDependent(),
|
|
|
|
fn->isValueDependent(),
|
2011-07-01 05:22:09 +04:00
|
|
|
fn->isInstantiationDependent(),
|
2010-12-15 04:34:56 +03:00
|
|
|
fn->containsUnexpandedParameterPack()),
|
2012-08-24 15:54:20 +04:00
|
|
|
NumArgs(args.size()) {
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2012-08-24 15:54:20 +04:00
|
|
|
SubExprs = new (C) Stmt*[args.size()+PREARGS_START+NumPreArgs];
|
2008-11-14 19:09:21 +03:00
|
|
|
SubExprs[FN] = fn;
|
2012-08-24 15:54:20 +04:00
|
|
|
for (unsigned i = 0; i != args.size(); ++i) {
|
2010-12-15 04:34:56 +03:00
|
|
|
if (args[i]->isTypeDependent())
|
|
|
|
ExprBits.TypeDependent = true;
|
|
|
|
if (args[i]->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
if (args[i]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 04:34:56 +03:00
|
|
|
if (args[i]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
2011-02-09 00:18:02 +03:00
|
|
|
SubExprs[i+PREARGS_START+NumPreArgs] = args[i];
|
2010-12-15 04:34:56 +03:00
|
|
|
}
|
2009-02-09 23:51:47 +03:00
|
|
|
|
2011-02-09 00:18:02 +03:00
|
|
|
CallExprBits.NumPreArgs = NumPreArgs;
|
2008-11-14 19:09:21 +03:00
|
|
|
RParenLoc = rparenloc;
|
|
|
|
}
|
2008-01-17 20:46:27 +03:00
|
|
|
|
2012-08-24 15:54:20 +04:00
|
|
|
CallExpr::CallExpr(ASTContext& C, Expr *fn, ArrayRef<Expr*> args,
|
2010-11-18 09:31:45 +03:00
|
|
|
QualType t, ExprValueKind VK, SourceLocation rparenloc)
|
|
|
|
: Expr(CallExprClass, t, VK, OK_Ordinary,
|
2010-12-15 04:34:56 +03:00
|
|
|
fn->isTypeDependent(),
|
|
|
|
fn->isValueDependent(),
|
2011-07-01 05:22:09 +04:00
|
|
|
fn->isInstantiationDependent(),
|
2010-12-15 04:34:56 +03:00
|
|
|
fn->containsUnexpandedParameterPack()),
|
2012-08-24 15:54:20 +04:00
|
|
|
NumArgs(args.size()) {
|
2009-02-09 23:51:47 +03:00
|
|
|
|
2012-08-24 15:54:20 +04:00
|
|
|
SubExprs = new (C) Stmt*[args.size()+PREARGS_START];
|
2007-08-24 22:13:47 +04:00
|
|
|
SubExprs[FN] = fn;
|
2012-08-24 15:54:20 +04:00
|
|
|
for (unsigned i = 0; i != args.size(); ++i) {
|
2010-12-15 04:34:56 +03:00
|
|
|
if (args[i]->isTypeDependent())
|
|
|
|
ExprBits.TypeDependent = true;
|
|
|
|
if (args[i]->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
if (args[i]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 04:34:56 +03:00
|
|
|
if (args[i]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
2011-02-09 00:18:02 +03:00
|
|
|
SubExprs[i+PREARGS_START] = args[i];
|
2010-12-15 04:34:56 +03:00
|
|
|
}
|
2009-02-09 23:51:47 +03:00
|
|
|
|
2011-02-09 00:18:02 +03:00
|
|
|
CallExprBits.NumPreArgs = 0;
|
2007-07-11 21:01:13 +04:00
|
|
|
RParenLoc = rparenloc;
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
|
|
|
|
: Expr(SC, Empty), SubExprs(0), NumArgs(0) {
|
2010-12-15 04:34:56 +03:00
|
|
|
// FIXME: Why do we allocate this?
|
2011-02-09 00:18:02 +03:00
|
|
|
SubExprs = new (C) Stmt*[PREARGS_START];
|
|
|
|
CallExprBits.NumPreArgs = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
CallExpr::CallExpr(ASTContext &C, StmtClass SC, unsigned NumPreArgs,
|
|
|
|
EmptyShell Empty)
|
|
|
|
: Expr(SC, Empty), SubExprs(0), NumArgs(0) {
|
|
|
|
// FIXME: Why do we allocate this?
|
|
|
|
SubExprs = new (C) Stmt*[PREARGS_START+NumPreArgs];
|
|
|
|
CallExprBits.NumPreArgs = NumPreArgs;
|
2009-04-15 21:43:59 +04:00
|
|
|
}
|
|
|
|
|
2009-12-21 02:11:08 +03:00
|
|
|
Decl *CallExpr::getCalleeDecl() {
|
2011-09-14 03:08:34 +04:00
|
|
|
Expr *CEE = getCallee()->IgnoreParenImpCasts();
|
2011-09-07 01:41:04 +04:00
|
|
|
|
|
|
|
while (SubstNonTypeTemplateParmExpr *NTTP
|
|
|
|
= dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) {
|
|
|
|
CEE = NTTP->getReplacement()->IgnoreParenCasts();
|
|
|
|
}
|
|
|
|
|
2010-09-11 00:55:30 +04:00
|
|
|
// If we're calling a dereference, look at the pointer instead.
|
|
|
|
if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
|
|
|
|
if (BO->isPtrMemOp())
|
|
|
|
CEE = BO->getRHS()->IgnoreParenCasts();
|
|
|
|
} else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
|
|
|
|
if (UO->getOpcode() == UO_Deref)
|
|
|
|
CEE = UO->getSubExpr()->IgnoreParenCasts();
|
|
|
|
}
|
2009-07-17 19:46:27 +04:00
|
|
|
if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
|
2009-12-21 02:11:08 +03:00
|
|
|
return DRE->getDecl();
|
2009-12-24 03:28:18 +03:00
|
|
|
if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))
|
|
|
|
return ME->getMemberDecl();
|
2009-07-17 11:29:51 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-21 02:11:08 +03:00
|
|
|
FunctionDecl *CallExpr::getDirectCallee() {
|
2009-12-21 04:10:56 +03:00
|
|
|
return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
|
2009-12-21 02:11:08 +03:00
|
|
|
}
|
|
|
|
|
2007-12-28 08:25:02 +03:00
|
|
|
/// setNumArgs - This changes the number of arguments present in this call.
|
|
|
|
/// Any orphaned expressions are deleted by this, and any new operands are set
|
|
|
|
/// to null.
|
2009-02-07 04:47:29 +03:00
|
|
|
void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
|
2007-12-28 08:25:02 +03:00
|
|
|
// No change, just return.
|
|
|
|
if (NumArgs == getNumArgs()) return;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-12-28 08:25:02 +03:00
|
|
|
// If shrinking # arguments, just delete the extras and forgot them.
|
|
|
|
if (NumArgs < getNumArgs()) {
|
|
|
|
this->NumArgs = NumArgs;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, we are growing the # arguments. New an bigger argument array.
|
2011-02-09 00:18:02 +03:00
|
|
|
unsigned NumPreArgs = getNumPreArgs();
|
|
|
|
Stmt **NewSubExprs = new (C) Stmt*[NumArgs+PREARGS_START+NumPreArgs];
|
2007-12-28 08:25:02 +03:00
|
|
|
// Copy over args.
|
2011-02-09 00:18:02 +03:00
|
|
|
for (unsigned i = 0; i != getNumArgs()+PREARGS_START+NumPreArgs; ++i)
|
2007-12-28 08:25:02 +03:00
|
|
|
NewSubExprs[i] = SubExprs[i];
|
|
|
|
// Null out new args.
|
2011-02-09 00:18:02 +03:00
|
|
|
for (unsigned i = getNumArgs()+PREARGS_START+NumPreArgs;
|
|
|
|
i != NumArgs+PREARGS_START+NumPreArgs; ++i)
|
2007-12-28 08:25:02 +03:00
|
|
|
NewSubExprs[i] = 0;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-18 01:46:47 +04:00
|
|
|
if (SubExprs) C.Deallocate(SubExprs);
|
2007-12-28 08:25:02 +03:00
|
|
|
SubExprs = NewSubExprs;
|
|
|
|
this->NumArgs = NumArgs;
|
|
|
|
}
|
|
|
|
|
2008-10-06 09:00:53 +04:00
|
|
|
/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
|
|
|
|
/// not, return 0.
|
2011-11-10 10:34:14 +04:00
|
|
|
unsigned CallExpr::isBuiltinCall() const {
|
2008-01-31 04:07:12 +03:00
|
|
|
// All simple function calls (e.g. func()) are implicitly cast to pointer to
|
2009-09-09 19:08:12 +04:00
|
|
|
// function. As a result, we try and obtain the DeclRefExpr from the
|
2008-01-31 04:07:12 +03:00
|
|
|
// ImplicitCastExpr.
|
|
|
|
const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
|
|
|
|
if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
|
2008-10-06 09:00:53 +04:00
|
|
|
return 0;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-01-31 04:07:12 +03:00
|
|
|
const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
|
|
|
|
if (!DRE)
|
2008-10-06 09:00:53 +04:00
|
|
|
return 0;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-01-31 05:13:57 +03:00
|
|
|
const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
|
|
|
|
if (!FDecl)
|
2008-10-06 09:00:53 +04:00
|
|
|
return 0;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-11-21 18:30:19 +03:00
|
|
|
if (!FDecl->getIdentifier())
|
|
|
|
return 0;
|
|
|
|
|
2009-09-12 04:22:50 +04:00
|
|
|
return FDecl->getBuiltinID();
|
2008-10-06 09:00:53 +04:00
|
|
|
}
|
2008-01-31 05:13:57 +03:00
|
|
|
|
2013-01-18 03:46:04 +04:00
|
|
|
bool CallExpr::isUnevaluatedBuiltinCall(ASTContext &Ctx) const {
|
|
|
|
if (unsigned BI = isBuiltinCall())
|
|
|
|
return Ctx.BuiltinInfo.isUnevaluated(BI);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-05-26 08:57:27 +04:00
|
|
|
QualType CallExpr::getCallReturnType() const {
|
|
|
|
QualType CalleeType = getCallee()->getType();
|
2009-07-30 01:53:49 +04:00
|
|
|
if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
|
2009-05-26 08:57:27 +04:00
|
|
|
CalleeType = FnTypePtr->getPointeeType();
|
2009-07-30 01:53:49 +04:00
|
|
|
else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
|
2009-05-26 08:57:27 +04:00
|
|
|
CalleeType = BPT->getPointeeType();
|
2011-04-27 00:42:42 +04:00
|
|
|
else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember))
|
|
|
|
// This should never be overloaded and so should never return null.
|
|
|
|
CalleeType = Expr::findBoundMemberType(getCallee());
|
2010-07-13 12:18:22 +04:00
|
|
|
|
2011-04-27 00:42:42 +04:00
|
|
|
const FunctionType *FnType = CalleeType->castAs<FunctionType>();
|
2009-05-26 08:57:27 +04:00
|
|
|
return FnType->getResultType();
|
|
|
|
}
|
2008-10-06 09:00:53 +04:00
|
|
|
|
2012-03-09 19:39:24 +04:00
|
|
|
SourceLocation CallExpr::getLocStart() const {
|
|
|
|
if (isa<CXXOperatorCallExpr>(this))
|
2012-12-25 18:51:39 +04:00
|
|
|
return cast<CXXOperatorCallExpr>(this)->getLocStart();
|
2012-03-09 19:39:24 +04:00
|
|
|
|
|
|
|
SourceLocation begin = getCallee()->getLocStart();
|
|
|
|
if (begin.isInvalid() && getNumArgs() > 0)
|
|
|
|
begin = getArg(0)->getLocStart();
|
|
|
|
return begin;
|
|
|
|
}
|
|
|
|
SourceLocation CallExpr::getLocEnd() const {
|
|
|
|
if (isa<CXXOperatorCallExpr>(this))
|
2012-12-25 18:51:39 +04:00
|
|
|
return cast<CXXOperatorCallExpr>(this)->getLocEnd();
|
2012-03-09 19:39:24 +04:00
|
|
|
|
|
|
|
SourceLocation end = getRParenLoc();
|
|
|
|
if (end.isInvalid() && getNumArgs() > 0)
|
|
|
|
end = getArg(getNumArgs() - 1)->getLocEnd();
|
|
|
|
return end;
|
|
|
|
}
|
2011-02-21 09:23:05 +03:00
|
|
|
|
2010-05-05 19:23:54 +04:00
|
|
|
OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type,
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-29 02:16:22 +04:00
|
|
|
SourceLocation OperatorLoc,
|
2010-05-05 19:23:54 +04:00
|
|
|
TypeSourceInfo *tsi,
|
2012-08-24 15:54:20 +04:00
|
|
|
ArrayRef<OffsetOfNode> comps,
|
|
|
|
ArrayRef<Expr*> exprs,
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-29 02:16:22 +04:00
|
|
|
SourceLocation RParenLoc) {
|
|
|
|
void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
|
2012-08-24 15:54:20 +04:00
|
|
|
sizeof(OffsetOfNode) * comps.size() +
|
|
|
|
sizeof(Expr*) * exprs.size());
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-29 02:16:22 +04:00
|
|
|
|
2012-08-24 15:54:20 +04:00
|
|
|
return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
|
|
|
|
RParenLoc);
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-29 02:16:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
|
|
|
|
unsigned numComps, unsigned numExprs) {
|
|
|
|
void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
|
|
|
|
sizeof(OffsetOfNode) * numComps +
|
|
|
|
sizeof(Expr*) * numExprs);
|
|
|
|
return new (Mem) OffsetOfExpr(numComps, numExprs);
|
|
|
|
}
|
|
|
|
|
2010-05-05 19:23:54 +04:00
|
|
|
OffsetOfExpr::OffsetOfExpr(ASTContext &C, QualType type,
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-29 02:16:22 +04:00
|
|
|
SourceLocation OperatorLoc, TypeSourceInfo *tsi,
|
2012-08-24 15:54:20 +04:00
|
|
|
ArrayRef<OffsetOfNode> comps, ArrayRef<Expr*> exprs,
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-29 02:16:22 +04:00
|
|
|
SourceLocation RParenLoc)
|
2010-11-18 09:31:45 +03:00
|
|
|
: Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary,
|
|
|
|
/*TypeDependent=*/false,
|
2010-12-15 04:34:56 +03:00
|
|
|
/*ValueDependent=*/tsi->getType()->isDependentType(),
|
2011-07-01 05:22:09 +04:00
|
|
|
tsi->getType()->isInstantiationDependentType(),
|
2010-12-15 04:34:56 +03:00
|
|
|
tsi->getType()->containsUnexpandedParameterPack()),
|
2010-05-05 19:23:54 +04:00
|
|
|
OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
|
2012-08-24 15:54:20 +04:00
|
|
|
NumComps(comps.size()), NumExprs(exprs.size())
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-29 02:16:22 +04:00
|
|
|
{
|
2012-08-24 15:54:20 +04:00
|
|
|
for (unsigned i = 0; i != comps.size(); ++i) {
|
|
|
|
setComponent(i, comps[i]);
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-29 02:16:22 +04:00
|
|
|
}
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2012-08-24 15:54:20 +04:00
|
|
|
for (unsigned i = 0; i != exprs.size(); ++i) {
|
|
|
|
if (exprs[i]->isTypeDependent() || exprs[i]->isValueDependent())
|
2010-12-15 04:34:56 +03:00
|
|
|
ExprBits.ValueDependent = true;
|
2012-08-24 15:54:20 +04:00
|
|
|
if (exprs[i]->containsUnexpandedParameterPack())
|
2010-12-15 04:34:56 +03:00
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
2012-08-24 15:54:20 +04:00
|
|
|
setIndexExpr(i, exprs[i]);
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-29 02:16:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {
|
|
|
|
assert(getKind() == Field || getKind() == Identifier);
|
|
|
|
if (getKind() == Field)
|
|
|
|
return getField()->getIdentifier();
|
2010-05-05 19:23:54 +04:00
|
|
|
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-29 02:16:22 +04:00
|
|
|
return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask);
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
|
2011-03-01 00:54:11 +03:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 13:46:47 +04:00
|
|
|
SourceLocation TemplateKWLoc,
|
2009-12-04 09:40:45 +03:00
|
|
|
ValueDecl *memberdecl,
|
2010-04-07 01:38:20 +04:00
|
|
|
DeclAccessPair founddecl,
|
2010-08-12 02:01:17 +04:00
|
|
|
DeclarationNameInfo nameinfo,
|
2009-11-23 04:53:49 +03:00
|
|
|
const TemplateArgumentListInfo *targs,
|
2010-11-18 09:31:45 +03:00
|
|
|
QualType ty,
|
|
|
|
ExprValueKind vk,
|
|
|
|
ExprObjectKind ok) {
|
2009-09-01 03:41:50 +04:00
|
|
|
std::size_t Size = sizeof(MemberExpr);
|
2010-03-31 01:47:33 +04:00
|
|
|
|
2011-03-01 00:54:11 +03:00
|
|
|
bool hasQualOrFound = (QualifierLoc ||
|
2010-04-07 01:38:20 +04:00
|
|
|
founddecl.getDecl() != memberdecl ||
|
|
|
|
founddecl.getAccess() != memberdecl->getAccess());
|
2010-03-31 01:47:33 +04:00
|
|
|
if (hasQualOrFound)
|
|
|
|
Size += sizeof(MemberNameQualifier);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-11-23 04:53:49 +03:00
|
|
|
if (targs)
|
2012-01-27 13:46:47 +04:00
|
|
|
Size += ASTTemplateKWAndArgsInfo::sizeFor(targs->size());
|
|
|
|
else if (TemplateKWLoc.isValid())
|
|
|
|
Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2010-10-30 09:14:06 +04:00
|
|
|
void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>());
|
2010-11-18 09:31:45 +03:00
|
|
|
MemberExpr *E = new (Mem) MemberExpr(base, isarrow, memberdecl, nameinfo,
|
|
|
|
ty, vk, ok);
|
2010-03-31 01:47:33 +04:00
|
|
|
|
|
|
|
if (hasQualOrFound) {
|
2011-03-01 00:54:11 +03:00
|
|
|
// FIXME: Wrong. We should be looking at the member declaration we found.
|
|
|
|
if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent()) {
|
2010-03-31 01:47:33 +04:00
|
|
|
E->setValueDependent(true);
|
|
|
|
E->setTypeDependent(true);
|
2011-07-01 05:22:09 +04:00
|
|
|
E->setInstantiationDependent(true);
|
|
|
|
}
|
|
|
|
else if (QualifierLoc &&
|
|
|
|
QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())
|
|
|
|
E->setInstantiationDependent(true);
|
|
|
|
|
2010-03-31 01:47:33 +04:00
|
|
|
E->HasQualifierOrFoundDecl = true;
|
|
|
|
|
|
|
|
MemberNameQualifier *NQ = E->getMemberQualifier();
|
2011-03-01 00:54:11 +03:00
|
|
|
NQ->QualifierLoc = QualifierLoc;
|
2010-03-31 01:47:33 +04:00
|
|
|
NQ->FoundDecl = founddecl;
|
|
|
|
}
|
|
|
|
|
2012-01-27 13:46:47 +04:00
|
|
|
E->HasTemplateKWAndArgsInfo = (targs || TemplateKWLoc.isValid());
|
|
|
|
|
2010-03-31 01:47:33 +04:00
|
|
|
if (targs) {
|
2011-07-01 05:22:09 +04:00
|
|
|
bool Dependent = false;
|
|
|
|
bool InstantiationDependent = false;
|
|
|
|
bool ContainsUnexpandedParameterPack = false;
|
2012-01-27 13:46:47 +04:00
|
|
|
E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *targs,
|
|
|
|
Dependent,
|
|
|
|
InstantiationDependent,
|
|
|
|
ContainsUnexpandedParameterPack);
|
2011-07-01 05:22:09 +04:00
|
|
|
if (InstantiationDependent)
|
|
|
|
E->setInstantiationDependent(true);
|
2012-01-27 13:46:47 +04:00
|
|
|
} else if (TemplateKWLoc.isValid()) {
|
|
|
|
E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
|
2010-03-31 01:47:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return E;
|
2009-09-01 03:41:50 +04:00
|
|
|
}
|
|
|
|
|
2012-03-09 19:39:15 +04:00
|
|
|
SourceLocation MemberExpr::getLocStart() const {
|
2011-03-03 00:06:53 +03:00
|
|
|
if (isImplicitAccess()) {
|
|
|
|
if (hasQualifier())
|
2012-03-09 19:39:15 +04:00
|
|
|
return getQualifierLoc().getBeginLoc();
|
|
|
|
return MemberLoc;
|
2011-03-03 00:06:53 +03:00
|
|
|
}
|
2012-01-27 13:46:47 +04:00
|
|
|
|
2012-03-09 19:39:15 +04:00
|
|
|
// FIXME: We don't want this to happen. Rather, we should be able to
|
|
|
|
// detect all kinds of implicit accesses more cleanly.
|
|
|
|
SourceLocation BaseStartLoc = getBase()->getLocStart();
|
|
|
|
if (BaseStartLoc.isValid())
|
|
|
|
return BaseStartLoc;
|
|
|
|
return MemberLoc;
|
|
|
|
}
|
|
|
|
SourceLocation MemberExpr::getLocEnd() const {
|
2012-11-08 17:52:58 +04:00
|
|
|
SourceLocation EndLoc = getMemberNameInfo().getEndLoc();
|
2012-03-09 19:39:15 +04:00
|
|
|
if (hasExplicitTemplateArgs())
|
2012-11-08 17:52:58 +04:00
|
|
|
EndLoc = getRAngleLoc();
|
|
|
|
else if (EndLoc.isInvalid())
|
|
|
|
EndLoc = getBase()->getLocEnd();
|
|
|
|
return EndLoc;
|
2011-03-03 00:06:53 +03:00
|
|
|
}
|
|
|
|
|
2011-09-09 09:25:32 +04:00
|
|
|
void CastExpr::CheckCastConsistency() const {
|
|
|
|
switch (getCastKind()) {
|
|
|
|
case CK_DerivedToBase:
|
|
|
|
case CK_UncheckedDerivedToBase:
|
|
|
|
case CK_DerivedToBaseMemberPointer:
|
|
|
|
case CK_BaseToDerived:
|
|
|
|
case CK_BaseToDerivedMemberPointer:
|
|
|
|
assert(!path_empty() && "Cast kind should have a base path!");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CK_CPointerToObjCPointerCast:
|
|
|
|
assert(getType()->isObjCObjectPointerType());
|
|
|
|
assert(getSubExpr()->getType()->isPointerType());
|
|
|
|
goto CheckNoBasePath;
|
|
|
|
|
|
|
|
case CK_BlockPointerToObjCPointerCast:
|
|
|
|
assert(getType()->isObjCObjectPointerType());
|
|
|
|
assert(getSubExpr()->getType()->isBlockPointerType());
|
|
|
|
goto CheckNoBasePath;
|
|
|
|
|
2012-02-15 05:22:51 +04:00
|
|
|
case CK_ReinterpretMemberPointer:
|
|
|
|
assert(getType()->isMemberPointerType());
|
|
|
|
assert(getSubExpr()->getType()->isMemberPointerType());
|
|
|
|
goto CheckNoBasePath;
|
|
|
|
|
2011-09-09 09:25:32 +04:00
|
|
|
case CK_BitCast:
|
|
|
|
// Arbitrary casts to C pointer types count as bitcasts.
|
|
|
|
// Otherwise, we should only have block and ObjC pointer casts
|
|
|
|
// here if they stay within the type kind.
|
|
|
|
if (!getType()->isPointerType()) {
|
|
|
|
assert(getType()->isObjCObjectPointerType() ==
|
|
|
|
getSubExpr()->getType()->isObjCObjectPointerType());
|
|
|
|
assert(getType()->isBlockPointerType() ==
|
|
|
|
getSubExpr()->getType()->isBlockPointerType());
|
|
|
|
}
|
|
|
|
goto CheckNoBasePath;
|
|
|
|
|
|
|
|
case CK_AnyPointerToBlockPointerCast:
|
|
|
|
assert(getType()->isBlockPointerType());
|
|
|
|
assert(getSubExpr()->getType()->isAnyPointerType() &&
|
|
|
|
!getSubExpr()->getType()->isBlockPointerType());
|
|
|
|
goto CheckNoBasePath;
|
|
|
|
|
2012-02-22 09:02:47 +04:00
|
|
|
case CK_CopyAndAutoreleaseBlockObject:
|
|
|
|
assert(getType()->isBlockPointerType());
|
|
|
|
assert(getSubExpr()->getType()->isBlockPointerType());
|
|
|
|
goto CheckNoBasePath;
|
2012-08-31 04:14:07 +04:00
|
|
|
|
|
|
|
case CK_FunctionToPointerDecay:
|
|
|
|
assert(getType()->isPointerType());
|
|
|
|
assert(getSubExpr()->getType()->isFunctionType());
|
|
|
|
goto CheckNoBasePath;
|
|
|
|
|
2011-09-09 09:25:32 +04:00
|
|
|
// These should not have an inheritance path.
|
|
|
|
case CK_Dynamic:
|
|
|
|
case CK_ToUnion:
|
|
|
|
case CK_ArrayToPointerDecay:
|
|
|
|
case CK_NullToMemberPointer:
|
|
|
|
case CK_NullToPointer:
|
|
|
|
case CK_ConstructorConversion:
|
|
|
|
case CK_IntegralToPointer:
|
|
|
|
case CK_PointerToIntegral:
|
|
|
|
case CK_ToVoid:
|
|
|
|
case CK_VectorSplat:
|
|
|
|
case CK_IntegralCast:
|
|
|
|
case CK_IntegralToFloating:
|
|
|
|
case CK_FloatingToIntegral:
|
|
|
|
case CK_FloatingCast:
|
|
|
|
case CK_ObjCObjectLValueCast:
|
|
|
|
case CK_FloatingRealToComplex:
|
|
|
|
case CK_FloatingComplexToReal:
|
|
|
|
case CK_FloatingComplexCast:
|
|
|
|
case CK_FloatingComplexToIntegralComplex:
|
|
|
|
case CK_IntegralRealToComplex:
|
|
|
|
case CK_IntegralComplexToReal:
|
|
|
|
case CK_IntegralComplexCast:
|
|
|
|
case CK_IntegralComplexToFloatingComplex:
|
2011-09-10 10:18:15 +04:00
|
|
|
case CK_ARCProduceObject:
|
|
|
|
case CK_ARCConsumeObject:
|
|
|
|
case CK_ARCReclaimReturnedObject:
|
|
|
|
case CK_ARCExtendBlockObject:
|
2013-01-20 16:31:11 +04:00
|
|
|
case CK_ZeroToOCLEvent:
|
2011-09-09 09:25:32 +04:00
|
|
|
assert(!getType()->isBooleanType() && "unheralded conversion to bool");
|
|
|
|
goto CheckNoBasePath;
|
|
|
|
|
|
|
|
case CK_Dependent:
|
|
|
|
case CK_LValueToRValue:
|
|
|
|
case CK_NoOp:
|
2012-01-16 21:27:18 +04:00
|
|
|
case CK_AtomicToNonAtomic:
|
|
|
|
case CK_NonAtomicToAtomic:
|
2011-09-09 09:25:32 +04:00
|
|
|
case CK_PointerToBoolean:
|
|
|
|
case CK_IntegralToBoolean:
|
|
|
|
case CK_FloatingToBoolean:
|
|
|
|
case CK_MemberPointerToBoolean:
|
|
|
|
case CK_FloatingComplexToBoolean:
|
|
|
|
case CK_IntegralComplexToBoolean:
|
|
|
|
case CK_LValueBitCast: // -> bool&
|
|
|
|
case CK_UserDefinedConversion: // operator bool()
|
2012-08-31 04:14:07 +04:00
|
|
|
case CK_BuiltinFnToFnPtr:
|
2011-09-09 09:25:32 +04:00
|
|
|
CheckNoBasePath:
|
|
|
|
assert(path_empty() && "Cast kind should not have a base path!");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-03 04:59:21 +04:00
|
|
|
const char *CastExpr::getCastKindName() const {
|
|
|
|
switch (getCastKind()) {
|
2010-11-15 12:13:47 +03:00
|
|
|
case CK_Dependent:
|
|
|
|
return "Dependent";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_BitCast:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "BitCast";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_LValueBitCast:
|
2010-07-14 03:17:26 +04:00
|
|
|
return "LValueBitCast";
|
2010-12-01 07:43:34 +03:00
|
|
|
case CK_LValueToRValue:
|
|
|
|
return "LValueToRValue";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_NoOp:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "NoOp";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_BaseToDerived:
|
2009-11-12 19:43:42 +03:00
|
|
|
return "BaseToDerived";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_DerivedToBase:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "DerivedToBase";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_UncheckedDerivedToBase:
|
2010-03-31 03:58:03 +04:00
|
|
|
return "UncheckedDerivedToBase";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_Dynamic:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "Dynamic";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_ToUnion:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "ToUnion";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_ArrayToPointerDecay:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "ArrayToPointerDecay";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_FunctionToPointerDecay:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "FunctionToPointerDecay";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_NullToMemberPointer:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "NullToMemberPointer";
|
2010-11-13 04:35:44 +03:00
|
|
|
case CK_NullToPointer:
|
|
|
|
return "NullToPointer";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_BaseToDerivedMemberPointer:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "BaseToDerivedMemberPointer";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_DerivedToBaseMemberPointer:
|
2009-10-30 03:46:35 +03:00
|
|
|
return "DerivedToBaseMemberPointer";
|
2012-02-15 05:22:51 +04:00
|
|
|
case CK_ReinterpretMemberPointer:
|
|
|
|
return "ReinterpretMemberPointer";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_UserDefinedConversion:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "UserDefinedConversion";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_ConstructorConversion:
|
2009-09-03 04:59:21 +04:00
|
|
|
return "ConstructorConversion";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_IntegralToPointer:
|
2009-09-15 08:48:33 +04:00
|
|
|
return "IntegralToPointer";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_PointerToIntegral:
|
2009-09-15 08:48:33 +04:00
|
|
|
return "PointerToIntegral";
|
2010-11-15 12:13:47 +03:00
|
|
|
case CK_PointerToBoolean:
|
|
|
|
return "PointerToBoolean";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_ToVoid:
|
2009-10-16 06:35:04 +04:00
|
|
|
return "ToVoid";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_VectorSplat:
|
2009-10-16 09:23:41 +04:00
|
|
|
return "VectorSplat";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_IntegralCast:
|
2009-10-18 22:12:03 +04:00
|
|
|
return "IntegralCast";
|
2010-11-15 12:13:47 +03:00
|
|
|
case CK_IntegralToBoolean:
|
|
|
|
return "IntegralToBoolean";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_IntegralToFloating:
|
2009-10-18 22:12:03 +04:00
|
|
|
return "IntegralToFloating";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_FloatingToIntegral:
|
2009-10-18 22:12:03 +04:00
|
|
|
return "FloatingToIntegral";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_FloatingCast:
|
2009-10-18 23:02:15 +04:00
|
|
|
return "FloatingCast";
|
2010-11-15 12:13:47 +03:00
|
|
|
case CK_FloatingToBoolean:
|
|
|
|
return "FloatingToBoolean";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_MemberPointerToBoolean:
|
2009-11-23 23:04:44 +03:00
|
|
|
return "MemberPointerToBoolean";
|
2011-09-09 09:25:32 +04:00
|
|
|
case CK_CPointerToObjCPointerCast:
|
|
|
|
return "CPointerToObjCPointerCast";
|
|
|
|
case CK_BlockPointerToObjCPointerCast:
|
|
|
|
return "BlockPointerToObjCPointerCast";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_AnyPointerToBlockPointerCast:
|
2009-12-12 01:40:48 +03:00
|
|
|
return "AnyPointerToBlockPointerCast";
|
2010-08-25 15:45:40 +04:00
|
|
|
case CK_ObjCObjectLValueCast:
|
2010-08-07 15:51:51 +04:00
|
|
|
return "ObjCObjectLValueCast";
|
2010-11-13 12:02:35 +03:00
|
|
|
case CK_FloatingRealToComplex:
|
|
|
|
return "FloatingRealToComplex";
|
2010-11-14 11:17:51 +03:00
|
|
|
case CK_FloatingComplexToReal:
|
|
|
|
return "FloatingComplexToReal";
|
|
|
|
case CK_FloatingComplexToBoolean:
|
|
|
|
return "FloatingComplexToBoolean";
|
2010-11-13 12:02:35 +03:00
|
|
|
case CK_FloatingComplexCast:
|
|
|
|
return "FloatingComplexCast";
|
2010-11-14 11:17:51 +03:00
|
|
|
case CK_FloatingComplexToIntegralComplex:
|
|
|
|
return "FloatingComplexToIntegralComplex";
|
2010-11-13 12:02:35 +03:00
|
|
|
case CK_IntegralRealToComplex:
|
|
|
|
return "IntegralRealToComplex";
|
2010-11-14 11:17:51 +03:00
|
|
|
case CK_IntegralComplexToReal:
|
|
|
|
return "IntegralComplexToReal";
|
|
|
|
case CK_IntegralComplexToBoolean:
|
|
|
|
return "IntegralComplexToBoolean";
|
2010-11-13 12:02:35 +03:00
|
|
|
case CK_IntegralComplexCast:
|
|
|
|
return "IntegralComplexCast";
|
2010-11-14 11:17:51 +03:00
|
|
|
case CK_IntegralComplexToFloatingComplex:
|
|
|
|
return "IntegralComplexToFloatingComplex";
|
2011-09-10 10:18:15 +04:00
|
|
|
case CK_ARCConsumeObject:
|
|
|
|
return "ARCConsumeObject";
|
|
|
|
case CK_ARCProduceObject:
|
|
|
|
return "ARCProduceObject";
|
|
|
|
case CK_ARCReclaimReturnedObject:
|
|
|
|
return "ARCReclaimReturnedObject";
|
|
|
|
case CK_ARCExtendBlockObject:
|
|
|
|
return "ARCCExtendBlockObject";
|
2012-01-16 21:27:18 +04:00
|
|
|
case CK_AtomicToNonAtomic:
|
|
|
|
return "AtomicToNonAtomic";
|
|
|
|
case CK_NonAtomicToAtomic:
|
|
|
|
return "NonAtomicToAtomic";
|
2012-02-22 09:02:47 +04:00
|
|
|
case CK_CopyAndAutoreleaseBlockObject:
|
|
|
|
return "CopyAndAutoreleaseBlockObject";
|
2012-08-31 04:14:07 +04:00
|
|
|
case CK_BuiltinFnToFnPtr:
|
|
|
|
return "BuiltinFnToFnPtr";
|
2013-01-20 16:31:11 +04:00
|
|
|
case CK_ZeroToOCLEvent:
|
|
|
|
return "ZeroToOCLEvent";
|
2009-09-03 04:59:21 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2010-11-13 12:02:35 +03:00
|
|
|
llvm_unreachable("Unhandled cast kind!");
|
2009-09-03 04:59:21 +04:00
|
|
|
}
|
|
|
|
|
2009-12-14 22:27:10 +03:00
|
|
|
Expr *CastExpr::getSubExprAsWritten() {
|
|
|
|
Expr *SubExpr = 0;
|
|
|
|
CastExpr *E = this;
|
|
|
|
do {
|
|
|
|
SubExpr = E->getSubExpr();
|
2011-06-21 21:03:29 +04:00
|
|
|
|
|
|
|
// Skip through reference binding to temporary.
|
|
|
|
if (MaterializeTemporaryExpr *Materialize
|
|
|
|
= dyn_cast<MaterializeTemporaryExpr>(SubExpr))
|
|
|
|
SubExpr = Materialize->GetTemporaryExpr();
|
|
|
|
|
2009-12-14 22:27:10 +03:00
|
|
|
// Skip any temporary bindings; they're implicit.
|
|
|
|
if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
|
|
|
|
SubExpr = Binder->getSubExpr();
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2009-12-14 22:27:10 +03:00
|
|
|
// Conversions by constructor and conversion functions have a
|
|
|
|
// subexpression describing the call; strip it off.
|
2010-08-25 15:45:40 +04:00
|
|
|
if (E->getCastKind() == CK_ConstructorConversion)
|
2009-12-14 22:27:10 +03:00
|
|
|
SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0);
|
2010-08-25 15:45:40 +04:00
|
|
|
else if (E->getCastKind() == CK_UserDefinedConversion)
|
2009-12-14 22:27:10 +03:00
|
|
|
SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument();
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2009-12-14 22:27:10 +03:00
|
|
|
// If the subexpression we're left with is an implicit cast, look
|
|
|
|
// through that, too.
|
2010-05-05 19:23:54 +04:00
|
|
|
} while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
|
|
|
|
|
2009-12-14 22:27:10 +03:00
|
|
|
return SubExpr;
|
|
|
|
}
|
|
|
|
|
2010-08-07 10:22:56 +04:00
|
|
|
CXXBaseSpecifier **CastExpr::path_buffer() {
|
|
|
|
switch (getStmtClass()) {
|
|
|
|
#define ABSTRACT_STMT(x)
|
|
|
|
#define CASTEXPR(Type, Base) \
|
|
|
|
case Stmt::Type##Class: \
|
|
|
|
return reinterpret_cast<CXXBaseSpecifier**>(static_cast<Type*>(this)+1);
|
|
|
|
#define STMT(Type, Base)
|
|
|
|
#include "clang/AST/StmtNodes.inc"
|
|
|
|
default:
|
|
|
|
llvm_unreachable("non-cast expressions not possible here");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CastExpr::setCastPath(const CXXCastPath &Path) {
|
|
|
|
assert(Path.size() == path_size());
|
|
|
|
memcpy(path_buffer(), Path.data(), Path.size() * sizeof(CXXBaseSpecifier*));
|
|
|
|
}
|
|
|
|
|
|
|
|
ImplicitCastExpr *ImplicitCastExpr::Create(ASTContext &C, QualType T,
|
|
|
|
CastKind Kind, Expr *Operand,
|
|
|
|
const CXXCastPath *BasePath,
|
2010-08-25 14:28:54 +04:00
|
|
|
ExprValueKind VK) {
|
2010-08-07 10:22:56 +04:00
|
|
|
unsigned PathSize = (BasePath ? BasePath->size() : 0);
|
|
|
|
void *Buffer =
|
|
|
|
C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
ImplicitCastExpr *E =
|
2010-08-25 14:28:54 +04:00
|
|
|
new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
|
2010-08-07 10:22:56 +04:00
|
|
|
if (PathSize) E->setCastPath(*BasePath);
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(ASTContext &C,
|
|
|
|
unsigned PathSize) {
|
|
|
|
void *Buffer =
|
|
|
|
C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T,
|
2010-11-18 09:31:45 +03:00
|
|
|
ExprValueKind VK, CastKind K, Expr *Op,
|
2010-08-07 10:22:56 +04:00
|
|
|
const CXXCastPath *BasePath,
|
|
|
|
TypeSourceInfo *WrittenTy,
|
|
|
|
SourceLocation L, SourceLocation R) {
|
|
|
|
unsigned PathSize = (BasePath ? BasePath->size() : 0);
|
|
|
|
void *Buffer =
|
|
|
|
C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
CStyleCastExpr *E =
|
2010-11-18 09:31:45 +03:00
|
|
|
new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
|
2010-08-07 10:22:56 +04:00
|
|
|
if (PathSize) E->setCastPath(*BasePath);
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
|
|
|
CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
|
|
|
|
void *Buffer =
|
|
|
|
C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
|
|
|
|
}
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
|
|
|
|
/// corresponds to, e.g. "<<=".
|
2012-10-08 05:11:04 +04:00
|
|
|
StringRef BinaryOperator::getOpcodeStr(Opcode Op) {
|
2007-07-11 21:01:13 +04:00
|
|
|
switch (Op) {
|
2010-08-25 15:45:40 +04:00
|
|
|
case BO_PtrMemD: return ".*";
|
|
|
|
case BO_PtrMemI: return "->*";
|
|
|
|
case BO_Mul: return "*";
|
|
|
|
case BO_Div: return "/";
|
|
|
|
case BO_Rem: return "%";
|
|
|
|
case BO_Add: return "+";
|
|
|
|
case BO_Sub: return "-";
|
|
|
|
case BO_Shl: return "<<";
|
|
|
|
case BO_Shr: return ">>";
|
|
|
|
case BO_LT: return "<";
|
|
|
|
case BO_GT: return ">";
|
|
|
|
case BO_LE: return "<=";
|
|
|
|
case BO_GE: return ">=";
|
|
|
|
case BO_EQ: return "==";
|
|
|
|
case BO_NE: return "!=";
|
|
|
|
case BO_And: return "&";
|
|
|
|
case BO_Xor: return "^";
|
|
|
|
case BO_Or: return "|";
|
|
|
|
case BO_LAnd: return "&&";
|
|
|
|
case BO_LOr: return "||";
|
|
|
|
case BO_Assign: return "=";
|
|
|
|
case BO_MulAssign: return "*=";
|
|
|
|
case BO_DivAssign: return "/=";
|
|
|
|
case BO_RemAssign: return "%=";
|
|
|
|
case BO_AddAssign: return "+=";
|
|
|
|
case BO_SubAssign: return "-=";
|
|
|
|
case BO_ShlAssign: return "<<=";
|
|
|
|
case BO_ShrAssign: return ">>=";
|
|
|
|
case BO_AndAssign: return "&=";
|
|
|
|
case BO_XorAssign: return "^=";
|
|
|
|
case BO_OrAssign: return "|=";
|
|
|
|
case BO_Comma: return ",";
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2009-03-13 01:51:37 +03:00
|
|
|
|
2012-01-21 01:50:17 +04:00
|
|
|
llvm_unreachable("Invalid OpCode!");
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2010-08-25 15:45:40 +04:00
|
|
|
BinaryOperatorKind
|
2009-03-13 21:40:31 +03:00
|
|
|
BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
|
|
|
|
switch (OO) {
|
2011-09-23 09:06:16 +04:00
|
|
|
default: llvm_unreachable("Not an overloadable binary operator");
|
2010-08-25 15:45:40 +04:00
|
|
|
case OO_Plus: return BO_Add;
|
|
|
|
case OO_Minus: return BO_Sub;
|
|
|
|
case OO_Star: return BO_Mul;
|
|
|
|
case OO_Slash: return BO_Div;
|
|
|
|
case OO_Percent: return BO_Rem;
|
|
|
|
case OO_Caret: return BO_Xor;
|
|
|
|
case OO_Amp: return BO_And;
|
|
|
|
case OO_Pipe: return BO_Or;
|
|
|
|
case OO_Equal: return BO_Assign;
|
|
|
|
case OO_Less: return BO_LT;
|
|
|
|
case OO_Greater: return BO_GT;
|
|
|
|
case OO_PlusEqual: return BO_AddAssign;
|
|
|
|
case OO_MinusEqual: return BO_SubAssign;
|
|
|
|
case OO_StarEqual: return BO_MulAssign;
|
|
|
|
case OO_SlashEqual: return BO_DivAssign;
|
|
|
|
case OO_PercentEqual: return BO_RemAssign;
|
|
|
|
case OO_CaretEqual: return BO_XorAssign;
|
|
|
|
case OO_AmpEqual: return BO_AndAssign;
|
|
|
|
case OO_PipeEqual: return BO_OrAssign;
|
|
|
|
case OO_LessLess: return BO_Shl;
|
|
|
|
case OO_GreaterGreater: return BO_Shr;
|
|
|
|
case OO_LessLessEqual: return BO_ShlAssign;
|
|
|
|
case OO_GreaterGreaterEqual: return BO_ShrAssign;
|
|
|
|
case OO_EqualEqual: return BO_EQ;
|
|
|
|
case OO_ExclaimEqual: return BO_NE;
|
|
|
|
case OO_LessEqual: return BO_LE;
|
|
|
|
case OO_GreaterEqual: return BO_GE;
|
|
|
|
case OO_AmpAmp: return BO_LAnd;
|
|
|
|
case OO_PipePipe: return BO_LOr;
|
|
|
|
case OO_Comma: return BO_Comma;
|
|
|
|
case OO_ArrowStar: return BO_PtrMemI;
|
2009-03-13 21:40:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
|
|
|
|
static const OverloadedOperatorKind OverOps[] = {
|
|
|
|
/* .* Cannot be overloaded */OO_None, OO_ArrowStar,
|
|
|
|
OO_Star, OO_Slash, OO_Percent,
|
|
|
|
OO_Plus, OO_Minus,
|
|
|
|
OO_LessLess, OO_GreaterGreater,
|
|
|
|
OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
|
|
|
|
OO_EqualEqual, OO_ExclaimEqual,
|
|
|
|
OO_Amp,
|
|
|
|
OO_Caret,
|
|
|
|
OO_Pipe,
|
|
|
|
OO_AmpAmp,
|
|
|
|
OO_PipePipe,
|
|
|
|
OO_Equal, OO_StarEqual,
|
|
|
|
OO_SlashEqual, OO_PercentEqual,
|
|
|
|
OO_PlusEqual, OO_MinusEqual,
|
|
|
|
OO_LessLessEqual, OO_GreaterGreaterEqual,
|
|
|
|
OO_AmpEqual, OO_CaretEqual,
|
|
|
|
OO_PipeEqual,
|
|
|
|
OO_Comma
|
|
|
|
};
|
|
|
|
return OverOps[Opc];
|
|
|
|
}
|
|
|
|
|
2010-04-14 03:39:13 +04:00
|
|
|
InitListExpr::InitListExpr(ASTContext &C, SourceLocation lbraceloc,
|
2012-08-24 15:54:20 +04:00
|
|
|
ArrayRef<Expr*> initExprs, SourceLocation rbraceloc)
|
2010-12-15 04:34:56 +03:00
|
|
|
: Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary, false, false,
|
2011-07-01 05:22:09 +04:00
|
|
|
false, false),
|
2012-08-24 15:54:20 +04:00
|
|
|
InitExprs(C, initExprs.size()),
|
2012-11-08 22:41:43 +04:00
|
|
|
LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), AltForm(0, true)
|
2012-02-17 12:42:25 +04:00
|
|
|
{
|
|
|
|
sawArrayRangeDesignator(false);
|
|
|
|
setInitializesStdInitializerList(false);
|
2012-08-24 15:54:20 +04:00
|
|
|
for (unsigned I = 0; I != initExprs.size(); ++I) {
|
2010-02-19 04:50:18 +03:00
|
|
|
if (initExprs[I]->isTypeDependent())
|
2010-10-26 12:39:16 +04:00
|
|
|
ExprBits.TypeDependent = true;
|
2010-02-19 04:50:18 +03:00
|
|
|
if (initExprs[I]->isValueDependent())
|
2010-10-26 12:39:16 +04:00
|
|
|
ExprBits.ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
if (initExprs[I]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 04:34:56 +03:00
|
|
|
if (initExprs[I]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
2009-11-20 02:25:22 +03:00
|
|
|
}
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2012-08-24 15:54:20 +04:00
|
|
|
InitExprs.insert(C, InitExprs.end(), initExprs.begin(), initExprs.end());
|
2007-08-31 08:56:16 +04:00
|
|
|
}
|
2007-07-11 21:01:13 +04:00
|
|
|
|
2010-04-14 03:39:13 +04:00
|
|
|
void InitListExpr::reserveInits(ASTContext &C, unsigned NumInits) {
|
2010-02-19 04:50:18 +03:00
|
|
|
if (NumInits > InitExprs.size())
|
2010-04-14 03:39:13 +04:00
|
|
|
InitExprs.reserve(C, NumInits);
|
2009-03-21 02:58:33 +03:00
|
|
|
}
|
|
|
|
|
2010-04-14 03:39:13 +04:00
|
|
|
void InitListExpr::resizeInits(ASTContext &C, unsigned NumInits) {
|
|
|
|
InitExprs.resize(C, NumInits, 0);
|
2009-01-29 00:54:33 +03:00
|
|
|
}
|
|
|
|
|
2010-04-14 03:39:13 +04:00
|
|
|
Expr *InitListExpr::updateInit(ASTContext &C, unsigned Init, Expr *expr) {
|
2010-02-19 04:50:18 +03:00
|
|
|
if (Init >= InitExprs.size()) {
|
2010-04-14 03:39:13 +04:00
|
|
|
InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, 0);
|
2010-02-19 04:50:18 +03:00
|
|
|
InitExprs.back() = expr;
|
|
|
|
return 0;
|
2009-01-29 00:54:33 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-01-29 00:54:33 +03:00
|
|
|
Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
|
|
|
|
InitExprs[Init] = expr;
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2011-04-22 00:03:38 +04:00
|
|
|
void InitListExpr::setArrayFiller(Expr *filler) {
|
2011-10-22 03:02:22 +04:00
|
|
|
assert(!hasArrayFiller() && "Filler already set!");
|
2011-04-22 00:03:38 +04:00
|
|
|
ArrayFillerOrUnionFieldInit = filler;
|
|
|
|
// Fill out any "holes" in the array due to designated initializers.
|
|
|
|
Expr **inits = getInits();
|
|
|
|
for (unsigned i = 0, e = getNumInits(); i != e; ++i)
|
|
|
|
if (inits[i] == 0)
|
|
|
|
inits[i] = filler;
|
|
|
|
}
|
|
|
|
|
2012-04-15 06:50:59 +04:00
|
|
|
bool InitListExpr::isStringLiteralInit() const {
|
|
|
|
if (getNumInits() != 1)
|
|
|
|
return false;
|
2012-08-21 00:55:45 +04:00
|
|
|
const ArrayType *AT = getType()->getAsArrayTypeUnsafe();
|
|
|
|
if (!AT || !AT->getElementType()->isIntegerType())
|
2012-04-15 06:50:59 +04:00
|
|
|
return false;
|
2012-08-21 00:55:45 +04:00
|
|
|
const Expr *Init = getInit(0)->IgnoreParens();
|
2012-04-15 06:50:59 +04:00
|
|
|
return isa<StringLiteral>(Init) || isa<ObjCEncodeExpr>(Init);
|
|
|
|
}
|
|
|
|
|
2012-12-25 18:51:39 +04:00
|
|
|
SourceLocation InitListExpr::getLocStart() const {
|
2012-11-08 22:41:43 +04:00
|
|
|
if (InitListExpr *SyntacticForm = getSyntacticForm())
|
2012-12-25 18:51:39 +04:00
|
|
|
return SyntacticForm->getLocStart();
|
|
|
|
SourceLocation Beg = LBraceLoc;
|
2010-11-09 05:11:40 +03:00
|
|
|
if (Beg.isInvalid()) {
|
|
|
|
// Find the first non-null initializer.
|
|
|
|
for (InitExprsTy::const_iterator I = InitExprs.begin(),
|
|
|
|
E = InitExprs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
if (Stmt *S = *I) {
|
|
|
|
Beg = S->getLocStart();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-12-25 18:51:39 +04:00
|
|
|
return Beg;
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceLocation InitListExpr::getLocEnd() const {
|
|
|
|
if (InitListExpr *SyntacticForm = getSyntacticForm())
|
|
|
|
return SyntacticForm->getLocEnd();
|
|
|
|
SourceLocation End = RBraceLoc;
|
2010-11-09 05:11:40 +03:00
|
|
|
if (End.isInvalid()) {
|
|
|
|
// Find the first non-null initializer from the end.
|
|
|
|
for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(),
|
2012-12-25 18:51:39 +04:00
|
|
|
E = InitExprs.rend();
|
|
|
|
I != E; ++I) {
|
2010-11-09 05:11:40 +03:00
|
|
|
if (Stmt *S = *I) {
|
2012-12-25 18:51:39 +04:00
|
|
|
End = S->getLocEnd();
|
2010-11-09 05:11:40 +03:00
|
|
|
break;
|
2012-12-25 18:51:39 +04:00
|
|
|
}
|
2010-11-09 05:11:40 +03:00
|
|
|
}
|
|
|
|
}
|
2012-12-25 18:51:39 +04:00
|
|
|
return End;
|
2010-11-09 05:11:40 +03:00
|
|
|
}
|
|
|
|
|
2008-09-04 19:31:07 +04:00
|
|
|
/// getFunctionType - Return the underlying function type for this block.
|
2008-09-03 22:15:37 +04:00
|
|
|
///
|
2012-02-17 07:32:35 +04:00
|
|
|
const FunctionProtoType *BlockExpr::getFunctionType() const {
|
|
|
|
// The block pointer is never sugared, but the function type might be.
|
|
|
|
return cast<BlockPointerType>(getType())
|
|
|
|
->getPointeeType()->castAs<FunctionProtoType>();
|
2008-09-03 22:15:37 +04:00
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
SourceLocation BlockExpr::getCaretLocation() const {
|
|
|
|
return TheBlock->getCaretLocation();
|
2008-10-08 21:01:13 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
const Stmt *BlockExpr::getBody() const {
|
2009-04-18 04:02:19 +04:00
|
|
|
return TheBlock->getBody();
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
Stmt *BlockExpr::getBody() {
|
|
|
|
return TheBlock->getBody();
|
2009-04-18 04:02:19 +04:00
|
|
|
}
|
2008-10-08 21:01:13 +04:00
|
|
|
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Generic Expression Routines
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-02-14 10:37:35 +03:00
|
|
|
/// isUnusedResultAWarning - Return true if this immediate expression should
|
|
|
|
/// be warned about if the result is unused. If so, fill in Loc and Ranges
|
|
|
|
/// with location to warn on and the source range[s] to report with the
|
|
|
|
/// warning.
|
2012-05-24 04:47:05 +04:00
|
|
|
bool Expr::isUnusedResultAWarning(const Expr *&WarnE, SourceLocation &Loc,
|
|
|
|
SourceRange &R1, SourceRange &R2,
|
|
|
|
ASTContext &Ctx) const {
|
2009-05-16 03:10:19 +04:00
|
|
|
// Don't warn if the expr is type dependent. The type could end up
|
|
|
|
// instantiating to void.
|
|
|
|
if (isTypeDependent())
|
|
|
|
return false;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
switch (getStmtClass()) {
|
|
|
|
default:
|
2010-03-12 10:11:26 +03:00
|
|
|
if (getType()->isVoidType())
|
|
|
|
return false;
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2009-02-14 10:37:35 +03:00
|
|
|
Loc = getExprLoc();
|
|
|
|
R1 = getSourceRange();
|
|
|
|
return true;
|
2007-07-11 21:01:13 +04:00
|
|
|
case ParenExprClass:
|
2009-02-14 10:37:35 +03:00
|
|
|
return cast<ParenExpr>(this)->getSubExpr()->
|
2012-05-24 04:47:05 +04:00
|
|
|
isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
|
2011-04-15 04:35:48 +04:00
|
|
|
case GenericSelectionExprClass:
|
|
|
|
return cast<GenericSelectionExpr>(this)->getResultExpr()->
|
2012-05-24 04:47:05 +04:00
|
|
|
isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
|
2007-07-11 21:01:13 +04:00
|
|
|
case UnaryOperatorClass: {
|
|
|
|
const UnaryOperator *UO = cast<UnaryOperator>(this);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
switch (UO->getOpcode()) {
|
2012-05-24 04:47:05 +04:00
|
|
|
case UO_Plus:
|
|
|
|
case UO_Minus:
|
|
|
|
case UO_AddrOf:
|
|
|
|
case UO_Not:
|
|
|
|
case UO_LNot:
|
|
|
|
case UO_Deref:
|
|
|
|
break;
|
2010-08-25 15:45:40 +04:00
|
|
|
case UO_PostInc:
|
|
|
|
case UO_PostDec:
|
|
|
|
case UO_PreInc:
|
|
|
|
case UO_PreDec: // ++/--
|
2009-02-14 10:37:35 +03:00
|
|
|
return false; // Not a warning.
|
2010-08-25 15:45:40 +04:00
|
|
|
case UO_Real:
|
|
|
|
case UO_Imag:
|
2007-07-11 21:01:13 +04:00
|
|
|
// accessing a piece of a volatile complex is a side-effect.
|
2009-11-04 02:25:48 +03:00
|
|
|
if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
|
|
|
|
.isVolatileQualified())
|
2009-02-14 10:37:35 +03:00
|
|
|
return false;
|
|
|
|
break;
|
2010-08-25 15:45:40 +04:00
|
|
|
case UO_Extension:
|
2012-05-24 04:47:05 +04:00
|
|
|
return UO->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2009-02-14 10:37:35 +03:00
|
|
|
Loc = UO->getOperatorLoc();
|
|
|
|
R1 = UO->getSubExpr()->getSourceRange();
|
|
|
|
return true;
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2007-12-01 09:07:34 +03:00
|
|
|
case BinaryOperatorClass: {
|
2009-02-14 10:37:35 +03:00
|
|
|
const BinaryOperator *BO = cast<BinaryOperator>(this);
|
2010-04-07 22:49:21 +04:00
|
|
|
switch (BO->getOpcode()) {
|
|
|
|
default:
|
|
|
|
break;
|
2010-06-30 14:53:14 +04:00
|
|
|
// Consider the RHS of comma for side effects. LHS was checked by
|
|
|
|
// Sema::CheckCommaOperands.
|
2010-08-25 15:45:40 +04:00
|
|
|
case BO_Comma:
|
2010-04-07 22:49:21 +04:00
|
|
|
// ((foo = <blah>), 0) is an idiom for hiding the result (and
|
|
|
|
// lvalue-ness) of an assignment written in a macro.
|
|
|
|
if (IntegerLiteral *IE =
|
|
|
|
dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
|
|
|
|
if (IE->getValue() == 0)
|
|
|
|
return false;
|
2012-05-24 04:47:05 +04:00
|
|
|
return BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
|
2010-06-30 14:53:14 +04:00
|
|
|
// Consider '||', '&&' to have side effects if the LHS or RHS does.
|
2010-08-25 15:45:40 +04:00
|
|
|
case BO_LAnd:
|
|
|
|
case BO_LOr:
|
2012-05-24 04:47:05 +04:00
|
|
|
if (!BO->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx) ||
|
|
|
|
!BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx))
|
2010-06-30 14:53:14 +04:00
|
|
|
return false;
|
|
|
|
break;
|
2010-02-16 07:10:53 +03:00
|
|
|
}
|
2009-02-14 10:37:35 +03:00
|
|
|
if (BO->isAssignmentOp())
|
|
|
|
return false;
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2009-02-14 10:37:35 +03:00
|
|
|
Loc = BO->getOperatorLoc();
|
|
|
|
R1 = BO->getLHS()->getSourceRange();
|
|
|
|
R2 = BO->getRHS()->getSourceRange();
|
|
|
|
return true;
|
2007-12-01 09:07:34 +03:00
|
|
|
}
|
2007-08-25 06:00:02 +04:00
|
|
|
case CompoundAssignOperatorClass:
|
2010-05-09 02:41:50 +04:00
|
|
|
case VAArgExprClass:
|
2011-10-11 06:20:01 +04:00
|
|
|
case AtomicExprClass:
|
2009-02-14 10:37:35 +03:00
|
|
|
return false;
|
2007-07-11 21:01:13 +04:00
|
|
|
|
2007-12-01 22:58:28 +03:00
|
|
|
case ConditionalOperatorClass: {
|
2011-03-01 23:34:48 +03:00
|
|
|
// If only one of the LHS or RHS is a warning, the operator might
|
|
|
|
// be being used for control flow. Only warn if both the LHS and
|
|
|
|
// RHS are warnings.
|
2007-12-01 22:58:28 +03:00
|
|
|
const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
|
2012-05-24 04:47:05 +04:00
|
|
|
if (!Exp->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx))
|
2011-03-01 23:34:48 +03:00
|
|
|
return false;
|
|
|
|
if (!Exp->getLHS())
|
2009-02-14 10:37:35 +03:00
|
|
|
return true;
|
2012-05-24 04:47:05 +04:00
|
|
|
return Exp->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
|
2007-12-01 22:58:28 +03:00
|
|
|
}
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
case MemberExprClass:
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2009-02-14 10:37:35 +03:00
|
|
|
Loc = cast<MemberExpr>(this)->getMemberLoc();
|
|
|
|
R1 = SourceRange(Loc, Loc);
|
|
|
|
R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
|
|
|
|
return true;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
case ArraySubscriptExprClass:
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2009-02-14 10:37:35 +03:00
|
|
|
Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
|
|
|
|
R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
|
|
|
|
R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
|
|
|
|
return true;
|
2008-05-27 19:24:04 +04:00
|
|
|
|
2011-08-17 13:49:44 +04:00
|
|
|
case CXXOperatorCallExprClass: {
|
|
|
|
// We warn about operator== and operator!= even when user-defined operator
|
|
|
|
// overloads as there is no reasonable way to define these such that they
|
|
|
|
// have non-trivial, desirable side-effects. See the -Wunused-comparison
|
|
|
|
// warning: these operators are commonly typo'ed, and so warning on them
|
|
|
|
// provides additional value as well. If this list is updated,
|
|
|
|
// DiagnoseUnusedComparison should be as well.
|
|
|
|
const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this);
|
|
|
|
if (Op->getOperator() == OO_EqualEqual ||
|
2011-09-19 22:51:20 +04:00
|
|
|
Op->getOperator() == OO_ExclaimEqual) {
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2011-09-19 22:51:20 +04:00
|
|
|
Loc = Op->getOperatorLoc();
|
|
|
|
R1 = Op->getSourceRange();
|
2011-08-17 13:49:44 +04:00
|
|
|
return true;
|
2011-09-19 22:51:20 +04:00
|
|
|
}
|
2011-08-17 13:49:44 +04:00
|
|
|
|
|
|
|
// Fallthrough for generic call handling.
|
|
|
|
}
|
2007-07-11 21:01:13 +04:00
|
|
|
case CallExprClass:
|
2012-03-07 12:35:16 +04:00
|
|
|
case CXXMemberCallExprClass:
|
|
|
|
case UserDefinedLiteralClass: {
|
2009-02-14 10:37:35 +03:00
|
|
|
// If this is a direct call, get the callee.
|
|
|
|
const CallExpr *CE = cast<CallExpr>(this);
|
2009-12-21 02:11:08 +03:00
|
|
|
if (const Decl *FD = CE->getCalleeDecl()) {
|
2009-02-14 10:37:35 +03:00
|
|
|
// If the callee has attribute pure, const, or warn_unused_result, warn
|
|
|
|
// about it. void foo() { strlen("bar"); } should warn.
|
2009-10-13 08:53:48 +04:00
|
|
|
//
|
|
|
|
// Note: If new cases are added here, DiagnoseUnusedExprResult should be
|
|
|
|
// updated to match for QoI.
|
|
|
|
if (FD->getAttr<WarnUnusedResultAttr>() ||
|
|
|
|
FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2009-10-13 08:53:48 +04:00
|
|
|
Loc = CE->getCallee()->getLocStart();
|
|
|
|
R1 = CE->getCallee()->getSourceRange();
|
|
|
|
|
|
|
|
if (unsigned NumArgs = CE->getNumArgs())
|
|
|
|
R2 = SourceRange(CE->getArg(0)->getLocStart(),
|
|
|
|
CE->getArg(NumArgs-1)->getLocEnd());
|
|
|
|
return true;
|
|
|
|
}
|
2009-02-14 10:37:35 +03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-11-17 20:11:23 +03:00
|
|
|
|
2012-10-23 10:15:26 +04:00
|
|
|
// If we don't know precisely what we're looking at, let's not warn.
|
|
|
|
case UnresolvedLookupExprClass:
|
|
|
|
case CXXUnresolvedConstructExprClass:
|
|
|
|
return false;
|
|
|
|
|
2009-11-17 20:11:23 +03:00
|
|
|
case CXXTemporaryObjectExprClass:
|
|
|
|
case CXXConstructExprClass:
|
|
|
|
return false;
|
|
|
|
|
2010-03-30 22:22:15 +04:00
|
|
|
case ObjCMessageExprClass: {
|
|
|
|
const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
|
2012-03-11 11:00:24 +04:00
|
|
|
if (Ctx.getLangOpts().ObjCAutoRefCount &&
|
2011-06-16 03:02:42 +04:00
|
|
|
ME->isInstanceMessage() &&
|
|
|
|
!ME->getType()->isVoidType() &&
|
|
|
|
ME->getSelector().getIdentifierInfoForSlot(0) &&
|
|
|
|
ME->getSelector().getIdentifierInfoForSlot(0)
|
|
|
|
->getName().startswith("init")) {
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2011-06-16 03:02:42 +04:00
|
|
|
Loc = getExprLoc();
|
|
|
|
R1 = ME->getSourceRange();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-03-30 22:22:15 +04:00
|
|
|
const ObjCMethodDecl *MD = ME->getMethodDecl();
|
|
|
|
if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2010-03-30 22:22:15 +04:00
|
|
|
Loc = getExprLoc();
|
|
|
|
return true;
|
|
|
|
}
|
2009-02-14 10:37:35 +03:00
|
|
|
return false;
|
2010-03-30 22:22:15 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2010-12-02 04:19:52 +03:00
|
|
|
case ObjCPropertyRefExprClass:
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2009-08-16 20:51:50 +04:00
|
|
|
Loc = getExprLoc();
|
|
|
|
R1 = getSourceRange();
|
2009-08-16 20:45:18 +04:00
|
|
|
return true;
|
2010-12-02 04:19:52 +03:00
|
|
|
|
2011-11-06 13:01:30 +04:00
|
|
|
case PseudoObjectExprClass: {
|
|
|
|
const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
|
|
|
|
|
|
|
|
// Only complain about things that have the form of a getter.
|
|
|
|
if (isa<UnaryOperator>(PO->getSyntacticForm()) ||
|
|
|
|
isa<BinaryOperator>(PO->getSyntacticForm()))
|
|
|
|
return false;
|
|
|
|
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2011-11-06 13:01:30 +04:00
|
|
|
Loc = getExprLoc();
|
|
|
|
R1 = getSourceRange();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-07-26 23:51:01 +04:00
|
|
|
case StmtExprClass: {
|
|
|
|
// Statement exprs don't logically have side effects themselves, but are
|
|
|
|
// sometimes used in macros in ways that give them a type that is unused.
|
|
|
|
// For example ({ blah; foo(); }) will end up with a type if foo has a type.
|
|
|
|
// however, if the result of the stmt expr is dead, we don't want to emit a
|
|
|
|
// warning.
|
|
|
|
const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
|
2010-09-20 01:21:10 +04:00
|
|
|
if (!CS->body_empty()) {
|
2008-07-26 23:51:01 +04:00
|
|
|
if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
|
2012-05-24 04:47:05 +04:00
|
|
|
return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
|
2010-09-20 01:21:10 +04:00
|
|
|
if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back()))
|
|
|
|
if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt()))
|
2012-05-24 04:47:05 +04:00
|
|
|
return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
|
2010-09-20 01:21:10 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2010-03-12 10:11:26 +03:00
|
|
|
if (getType()->isVoidType())
|
|
|
|
return false;
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2009-02-14 10:37:35 +03:00
|
|
|
Loc = cast<StmtExpr>(this)->getLParenLoc();
|
|
|
|
R1 = getSourceRange();
|
|
|
|
return true;
|
2008-07-26 23:51:01 +04:00
|
|
|
}
|
2012-09-25 03:02:26 +04:00
|
|
|
case CXXFunctionalCastExprClass:
|
2012-05-24 04:47:05 +04:00
|
|
|
case CStyleCastExprClass: {
|
2012-05-25 01:05:41 +04:00
|
|
|
// Ignore an explicit cast to void unless the operand is a non-trivial
|
2012-05-24 04:47:05 +04:00
|
|
|
// volatile lvalue.
|
2012-05-25 01:05:41 +04:00
|
|
|
const CastExpr *CE = cast<CastExpr>(this);
|
2012-05-24 04:47:05 +04:00
|
|
|
if (CE->getCastKind() == CK_ToVoid) {
|
|
|
|
if (CE->getSubExpr()->isGLValue() &&
|
2012-05-25 01:05:41 +04:00
|
|
|
CE->getSubExpr()->getType().isVolatileQualified()) {
|
|
|
|
const DeclRefExpr *DRE =
|
|
|
|
dyn_cast<DeclRefExpr>(CE->getSubExpr()->IgnoreParens());
|
|
|
|
if (!(DRE && isa<VarDecl>(DRE->getDecl()) &&
|
|
|
|
cast<VarDecl>(DRE->getDecl())->hasLocalStorage())) {
|
|
|
|
return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc,
|
|
|
|
R1, R2, Ctx);
|
|
|
|
}
|
|
|
|
}
|
2010-03-12 10:11:26 +03:00
|
|
|
return false;
|
2012-05-24 04:47:05 +04:00
|
|
|
}
|
2012-05-25 01:05:41 +04:00
|
|
|
|
2012-05-24 04:47:05 +04:00
|
|
|
// If this is a cast to a constructor conversion, check the operand.
|
2009-11-17 20:11:23 +03:00
|
|
|
// Otherwise, the result of the cast is unused.
|
2012-05-24 04:47:05 +04:00
|
|
|
if (CE->getCastKind() == CK_ConstructorConversion)
|
|
|
|
return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
|
2012-05-25 01:05:41 +04:00
|
|
|
|
2012-05-24 04:47:05 +04:00
|
|
|
WarnE = this;
|
2012-05-25 01:05:41 +04:00
|
|
|
if (const CXXFunctionalCastExpr *CXXCE =
|
|
|
|
dyn_cast<CXXFunctionalCastExpr>(this)) {
|
|
|
|
Loc = CXXCE->getTypeBeginLoc();
|
|
|
|
R1 = CXXCE->getSubExpr()->getSourceRange();
|
|
|
|
} else {
|
|
|
|
const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this);
|
|
|
|
Loc = CStyleCE->getLParenLoc();
|
|
|
|
R1 = CStyleCE->getSubExpr()->getSourceRange();
|
|
|
|
}
|
2009-02-14 10:37:35 +03:00
|
|
|
return true;
|
2009-11-17 20:11:23 +03:00
|
|
|
}
|
2012-05-24 04:47:05 +04:00
|
|
|
case ImplicitCastExprClass: {
|
|
|
|
const CastExpr *ICE = cast<ImplicitCastExpr>(this);
|
|
|
|
|
|
|
|
// lvalue-to-rvalue conversion on a volatile lvalue is a side-effect.
|
|
|
|
if (ICE->getCastKind() == CK_LValueToRValue &&
|
|
|
|
ICE->getSubExpr()->getType().isVolatileQualified())
|
|
|
|
return false;
|
2008-05-20 01:24:43 +04:00
|
|
|
|
2012-05-24 04:47:05 +04:00
|
|
|
return ICE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
|
|
|
|
}
|
2008-04-08 08:40:51 +04:00
|
|
|
case CXXDefaultArgExprClass:
|
2009-11-04 02:25:48 +03:00
|
|
|
return (cast<CXXDefaultArgExpr>(this)
|
2012-05-24 04:47:05 +04:00
|
|
|
->getExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
|
2008-11-21 22:14:01 +03:00
|
|
|
|
|
|
|
case CXXNewExprClass:
|
|
|
|
// FIXME: In theory, there might be new expressions that don't have side
|
|
|
|
// effects (e.g. a placement new with an uninitialized POD).
|
|
|
|
case CXXDeleteExprClass:
|
2009-02-14 10:37:35 +03:00
|
|
|
return false;
|
2009-08-16 08:11:06 +04:00
|
|
|
case CXXBindTemporaryExprClass:
|
2009-11-04 02:25:48 +03:00
|
|
|
return (cast<CXXBindTemporaryExpr>(this)
|
2012-05-24 04:47:05 +04:00
|
|
|
->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
|
2010-12-06 11:20:24 +03:00
|
|
|
case ExprWithCleanupsClass:
|
|
|
|
return (cast<ExprWithCleanups>(this)
|
2012-05-24 04:47:05 +04:00
|
|
|
->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
|
2008-11-21 22:14:01 +03:00
|
|
|
}
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-02-22 21:40:18 +03:00
|
|
|
/// isOBJCGCCandidate - Check if an expression is objc gc'able.
|
2009-09-09 03:38:54 +04:00
|
|
|
/// returns true, if it is; false otherwise.
|
2009-06-02 01:29:32 +04:00
|
|
|
bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
|
2011-04-15 04:35:48 +04:00
|
|
|
const Expr *E = IgnoreParens();
|
|
|
|
switch (E->getStmtClass()) {
|
2009-02-22 21:40:18 +03:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
case ObjCIvarRefExprClass:
|
|
|
|
return true;
|
2009-02-23 21:59:50 +03:00
|
|
|
case Expr::UnaryOperatorClass:
|
2011-04-15 04:35:48 +04:00
|
|
|
return cast<UnaryOperator>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
|
2009-02-22 21:40:18 +03:00
|
|
|
case ImplicitCastExprClass:
|
2011-04-15 04:35:48 +04:00
|
|
|
return cast<ImplicitCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
|
2011-06-21 21:03:29 +04:00
|
|
|
case MaterializeTemporaryExprClass:
|
|
|
|
return cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr()
|
|
|
|
->isOBJCGCCandidate(Ctx);
|
2009-05-06 03:28:21 +04:00
|
|
|
case CStyleCastExprClass:
|
2011-04-15 04:35:48 +04:00
|
|
|
return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
|
2009-10-23 22:54:35 +04:00
|
|
|
case DeclRefExprClass: {
|
2012-03-10 13:33:50 +04:00
|
|
|
const Decl *D = cast<DeclRefExpr>(E)->getDecl();
|
2011-09-23 22:57:30 +04:00
|
|
|
|
2009-06-02 01:29:32 +04:00
|
|
|
if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
|
|
|
|
if (VD->hasGlobalStorage())
|
|
|
|
return true;
|
|
|
|
QualType T = VD->getType();
|
2009-09-16 22:09:18 +04:00
|
|
|
// dereferencing to a pointer is always a gc'able candidate,
|
|
|
|
// unless it is __weak.
|
2009-09-17 10:31:17 +04:00
|
|
|
return T->isPointerType() &&
|
2009-09-24 23:53:00 +04:00
|
|
|
(Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
|
2009-06-02 01:29:32 +04:00
|
|
|
}
|
2009-02-22 21:40:18 +03:00
|
|
|
return false;
|
|
|
|
}
|
2009-09-01 03:41:50 +04:00
|
|
|
case MemberExprClass: {
|
2011-04-15 04:35:48 +04:00
|
|
|
const MemberExpr *M = cast<MemberExpr>(E);
|
2009-06-02 01:29:32 +04:00
|
|
|
return M->getBase()->isOBJCGCCandidate(Ctx);
|
2009-02-22 21:40:18 +03:00
|
|
|
}
|
|
|
|
case ArraySubscriptExprClass:
|
2011-04-15 04:35:48 +04:00
|
|
|
return cast<ArraySubscriptExpr>(E)->getBase()->isOBJCGCCandidate(Ctx);
|
2009-02-22 21:40:18 +03:00
|
|
|
}
|
|
|
|
}
|
2010-09-11 00:55:33 +04:00
|
|
|
|
2010-11-01 21:49:26 +03:00
|
|
|
bool Expr::isBoundMemberFunction(ASTContext &Ctx) const {
|
|
|
|
if (isTypeDependent())
|
|
|
|
return false;
|
2010-11-24 08:12:34 +03:00
|
|
|
return ClassifyLValue(Ctx) == Expr::LV_MemberFunction;
|
2010-11-01 21:49:26 +03:00
|
|
|
}
|
|
|
|
|
2011-04-27 00:42:42 +04:00
|
|
|
QualType Expr::findBoundMemberType(const Expr *expr) {
|
2011-10-19 01:02:43 +04:00
|
|
|
assert(expr->hasPlaceholderType(BuiltinType::BoundMember));
|
2011-04-27 00:42:42 +04:00
|
|
|
|
|
|
|
// Bound member expressions are always one of these possibilities:
|
|
|
|
// x->m x.m x->*y x.*y
|
|
|
|
// (possibly parenthesized)
|
|
|
|
|
|
|
|
expr = expr->IgnoreParens();
|
|
|
|
if (const MemberExpr *mem = dyn_cast<MemberExpr>(expr)) {
|
|
|
|
assert(isa<CXXMethodDecl>(mem->getMemberDecl()));
|
|
|
|
return mem->getMemberDecl()->getType();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const BinaryOperator *op = dyn_cast<BinaryOperator>(expr)) {
|
|
|
|
QualType type = op->getRHS()->getType()->castAs<MemberPointerType>()
|
|
|
|
->getPointeeType();
|
|
|
|
assert(type->isFunctionType());
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(isa<UnresolvedMemberExpr>(expr));
|
|
|
|
return QualType();
|
|
|
|
}
|
|
|
|
|
2008-01-17 19:57:34 +03:00
|
|
|
Expr* Expr::IgnoreParens() {
|
|
|
|
Expr* E = this;
|
2010-10-15 11:51:18 +04:00
|
|
|
while (true) {
|
|
|
|
if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
|
|
|
|
E = P->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
|
|
|
|
if (P->getOpcode() == UO_Extension) {
|
|
|
|
E = P->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2011-04-15 04:35:48 +04:00
|
|
|
if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
|
|
|
|
if (!P->isResultDependent()) {
|
|
|
|
E = P->getResultExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2010-10-15 11:51:18 +04:00
|
|
|
return E;
|
|
|
|
}
|
2008-01-17 19:57:34 +03:00
|
|
|
}
|
|
|
|
|
2008-02-13 04:02:39 +03:00
|
|
|
/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
|
|
|
|
/// or CastExprs or ImplicitCastExprs, returning their operand.
|
|
|
|
Expr *Expr::IgnoreParenCasts() {
|
|
|
|
Expr *E = this;
|
|
|
|
while (true) {
|
2010-10-15 11:51:18 +04:00
|
|
|
if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
|
2008-02-13 04:02:39 +03:00
|
|
|
E = P->getSubExpr();
|
2010-10-15 11:51:18 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (CastExpr *P = dyn_cast<CastExpr>(E)) {
|
2008-02-13 04:02:39 +03:00
|
|
|
E = P->getSubExpr();
|
2010-10-15 11:51:18 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
|
|
|
|
if (P->getOpcode() == UO_Extension) {
|
|
|
|
E = P->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2011-04-15 04:35:48 +04:00
|
|
|
if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
|
|
|
|
if (!P->isResultDependent()) {
|
|
|
|
E = P->getResultExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2011-06-21 21:03:29 +04:00
|
|
|
if (MaterializeTemporaryExpr *Materialize
|
|
|
|
= dyn_cast<MaterializeTemporaryExpr>(E)) {
|
|
|
|
E = Materialize->GetTemporaryExpr();
|
|
|
|
continue;
|
|
|
|
}
|
2011-09-08 21:56:33 +04:00
|
|
|
if (SubstNonTypeTemplateParmExpr *NTTP
|
|
|
|
= dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
|
|
|
|
E = NTTP->getReplacement();
|
|
|
|
continue;
|
|
|
|
}
|
2010-10-15 11:51:18 +04:00
|
|
|
return E;
|
2008-02-13 04:02:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-04 11:24:19 +03:00
|
|
|
/// IgnoreParenLValueCasts - Ignore parentheses and lvalue-to-rvalue
|
|
|
|
/// casts. This is intended purely as a temporary workaround for code
|
|
|
|
/// that hasn't yet been rewritten to do the right thing about those
|
|
|
|
/// casts, and may disappear along with the last internal use.
|
2010-12-04 06:47:34 +03:00
|
|
|
Expr *Expr::IgnoreParenLValueCasts() {
|
|
|
|
Expr *E = this;
|
2010-12-04 11:24:19 +03:00
|
|
|
while (true) {
|
2010-12-04 06:47:34 +03:00
|
|
|
if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
|
|
|
|
E = P->getSubExpr();
|
|
|
|
continue;
|
2010-12-04 11:24:19 +03:00
|
|
|
} else if (CastExpr *P = dyn_cast<CastExpr>(E)) {
|
2010-12-04 06:47:34 +03:00
|
|
|
if (P->getCastKind() == CK_LValueToRValue) {
|
|
|
|
E = P->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
2010-12-04 11:24:19 +03:00
|
|
|
} else if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
|
|
|
|
if (P->getOpcode() == UO_Extension) {
|
|
|
|
E = P->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
2011-04-15 04:35:48 +04:00
|
|
|
} else if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
|
|
|
|
if (!P->isResultDependent()) {
|
|
|
|
E = P->getResultExpr();
|
|
|
|
continue;
|
|
|
|
}
|
2011-06-21 21:03:29 +04:00
|
|
|
} else if (MaterializeTemporaryExpr *Materialize
|
|
|
|
= dyn_cast<MaterializeTemporaryExpr>(E)) {
|
|
|
|
E = Materialize->GetTemporaryExpr();
|
|
|
|
continue;
|
2011-09-08 21:56:33 +04:00
|
|
|
} else if (SubstNonTypeTemplateParmExpr *NTTP
|
|
|
|
= dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
|
|
|
|
E = NTTP->getReplacement();
|
|
|
|
continue;
|
2010-12-04 06:47:34 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return E;
|
|
|
|
}
|
2012-06-28 05:56:38 +04:00
|
|
|
|
|
|
|
Expr *Expr::ignoreParenBaseCasts() {
|
|
|
|
Expr *E = this;
|
|
|
|
while (true) {
|
|
|
|
if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
|
|
|
|
E = P->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (CastExpr *CE = dyn_cast<CastExpr>(E)) {
|
|
|
|
if (CE->getCastKind() == CK_DerivedToBase ||
|
|
|
|
CE->getCastKind() == CK_UncheckedDerivedToBase ||
|
|
|
|
CE->getCastKind() == CK_NoOp) {
|
|
|
|
E = CE->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-06 02:59:52 +04:00
|
|
|
Expr *Expr::IgnoreParenImpCasts() {
|
|
|
|
Expr *E = this;
|
|
|
|
while (true) {
|
2010-10-15 11:51:18 +04:00
|
|
|
if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
|
2010-05-06 02:59:52 +04:00
|
|
|
E = P->getSubExpr();
|
2010-10-15 11:51:18 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) {
|
2010-05-06 02:59:52 +04:00
|
|
|
E = P->getSubExpr();
|
2010-10-15 11:51:18 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
|
|
|
|
if (P->getOpcode() == UO_Extension) {
|
|
|
|
E = P->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2011-04-15 04:35:48 +04:00
|
|
|
if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
|
|
|
|
if (!P->isResultDependent()) {
|
|
|
|
E = P->getResultExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2011-06-21 21:03:29 +04:00
|
|
|
if (MaterializeTemporaryExpr *Materialize
|
|
|
|
= dyn_cast<MaterializeTemporaryExpr>(E)) {
|
|
|
|
E = Materialize->GetTemporaryExpr();
|
|
|
|
continue;
|
|
|
|
}
|
2011-09-08 21:56:33 +04:00
|
|
|
if (SubstNonTypeTemplateParmExpr *NTTP
|
|
|
|
= dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
|
|
|
|
E = NTTP->getReplacement();
|
|
|
|
continue;
|
|
|
|
}
|
2010-10-15 11:51:18 +04:00
|
|
|
return E;
|
2010-05-06 02:59:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-09 21:06:51 +04:00
|
|
|
Expr *Expr::IgnoreConversionOperator() {
|
|
|
|
if (CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(this)) {
|
2011-06-21 21:22:09 +04:00
|
|
|
if (MCE->getMethodDecl() && isa<CXXConversionDecl>(MCE->getMethodDecl()))
|
2011-06-09 21:06:51 +04:00
|
|
|
return MCE->getImplicitObjectArgument();
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2009-03-13 20:28:01 +03:00
|
|
|
/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
|
|
|
|
/// value (including ptr->int casts of the same size). Strip off any
|
|
|
|
/// ParenExpr or CastExprs, returning their operand.
|
|
|
|
Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
|
|
|
|
Expr *E = this;
|
|
|
|
while (true) {
|
|
|
|
if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
|
|
|
|
E = P->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-13 20:28:01 +03:00
|
|
|
if (CastExpr *P = dyn_cast<CastExpr>(E)) {
|
|
|
|
// We ignore integer <-> casts that are of the same width, ptr<->ptr and
|
2010-06-16 04:17:44 +04:00
|
|
|
// ptr<->int casts of the same width. We also ignore all identity casts.
|
2009-03-13 20:28:01 +03:00
|
|
|
Expr *SE = P->getSubExpr();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-13 20:28:01 +03:00
|
|
|
if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
|
|
|
|
E = SE;
|
|
|
|
continue;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2010-10-15 11:51:18 +04:00
|
|
|
if ((E->getType()->isPointerType() ||
|
2010-06-16 04:35:25 +04:00
|
|
|
E->getType()->isIntegralType(Ctx)) &&
|
2010-10-15 11:51:18 +04:00
|
|
|
(SE->getType()->isPointerType() ||
|
2010-06-16 04:35:25 +04:00
|
|
|
SE->getType()->isIntegralType(Ctx)) &&
|
2009-03-13 20:28:01 +03:00
|
|
|
Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
|
|
|
|
E = SE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2010-10-15 11:51:18 +04:00
|
|
|
if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
|
|
|
|
if (P->getOpcode() == UO_Extension) {
|
|
|
|
E = P->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-15 04:35:48 +04:00
|
|
|
if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
|
|
|
|
if (!P->isResultDependent()) {
|
|
|
|
E = P->getResultExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-08 21:56:33 +04:00
|
|
|
if (SubstNonTypeTemplateParmExpr *NTTP
|
|
|
|
= dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
|
|
|
|
E = NTTP->getReplacement();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-03-13 20:28:01 +03:00
|
|
|
return E;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-14 22:27:10 +03:00
|
|
|
bool Expr::isDefaultArgument() const {
|
|
|
|
const Expr *E = this;
|
2011-06-21 21:03:29 +04:00
|
|
|
if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
|
|
|
|
E = M->GetTemporaryExpr();
|
|
|
|
|
2009-12-14 22:27:10 +03:00
|
|
|
while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
|
|
|
|
E = ICE->getSubExprAsWritten();
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2009-12-14 22:27:10 +03:00
|
|
|
return isa<CXXDefaultArgExpr>(E);
|
|
|
|
}
|
2009-03-13 20:28:01 +03:00
|
|
|
|
Rework our handling of copy construction of temporaries, which was a
poor (and wrong) approximation of the actual rules governing when to
build a copy and when it can be elided.
The correct implementation is actually simpler than the
approximation. When we only enumerate constructors as part of
initialization (e.g., for direct initialization or when we're copying
from a class type or one of its derived classes), we don't create a
copy. When we enumerate all conversion functions, we do create a
copy. Before, we created some extra copies and missed some
others. The new test copy-initialization.cpp shows a case where we
missed creating a (required, non-elidable) copy as part of a
user-defined conversion, which resulted in a miscompile. This commit
also fixes PR6757, where the missing copy made us reject well-formed
code in the ternary operator.
This commit also cleans up our handling of copy elision in the case
where we create an extra copy of a temporary object, which became
necessary now that we produce the right copies. The code that seeks to
find the temporary object being copied has moved into
Expr::getTemporaryObject(); it used to have two different
not-quite-the-same implementations, one in Sema and one in CodeGen.
Note that we still do not attempt to perform the named return value
optimization, so we miss copy elisions for return values and throw
expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100196 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-02 22:24:57 +04:00
|
|
|
/// \brief Skip over any no-op casts and any temporary-binding
|
|
|
|
/// expressions.
|
2010-11-28 19:40:49 +03:00
|
|
|
static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) {
|
2011-06-21 21:03:29 +04:00
|
|
|
if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
|
|
|
|
E = M->GetTemporaryExpr();
|
|
|
|
|
Rework our handling of copy construction of temporaries, which was a
poor (and wrong) approximation of the actual rules governing when to
build a copy and when it can be elided.
The correct implementation is actually simpler than the
approximation. When we only enumerate constructors as part of
initialization (e.g., for direct initialization or when we're copying
from a class type or one of its derived classes), we don't create a
copy. When we enumerate all conversion functions, we do create a
copy. Before, we created some extra copies and missed some
others. The new test copy-initialization.cpp shows a case where we
missed creating a (required, non-elidable) copy as part of a
user-defined conversion, which resulted in a miscompile. This commit
also fixes PR6757, where the missing copy made us reject well-formed
code in the ternary operator.
This commit also cleans up our handling of copy elision in the case
where we create an extra copy of a temporary object, which became
necessary now that we produce the right copies. The code that seeks to
find the temporary object being copied has moved into
Expr::getTemporaryObject(); it used to have two different
not-quite-the-same implementations, one in Sema and one in CodeGen.
Note that we still do not attempt to perform the named return value
optimization, so we miss copy elisions for return values and throw
expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100196 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-02 22:24:57 +04:00
|
|
|
while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
|
2010-08-25 15:45:40 +04:00
|
|
|
if (ICE->getCastKind() == CK_NoOp)
|
Rework our handling of copy construction of temporaries, which was a
poor (and wrong) approximation of the actual rules governing when to
build a copy and when it can be elided.
The correct implementation is actually simpler than the
approximation. When we only enumerate constructors as part of
initialization (e.g., for direct initialization or when we're copying
from a class type or one of its derived classes), we don't create a
copy. When we enumerate all conversion functions, we do create a
copy. Before, we created some extra copies and missed some
others. The new test copy-initialization.cpp shows a case where we
missed creating a (required, non-elidable) copy as part of a
user-defined conversion, which resulted in a miscompile. This commit
also fixes PR6757, where the missing copy made us reject well-formed
code in the ternary operator.
This commit also cleans up our handling of copy elision in the case
where we create an extra copy of a temporary object, which became
necessary now that we produce the right copies. The code that seeks to
find the temporary object being copied has moved into
Expr::getTemporaryObject(); it used to have two different
not-quite-the-same implementations, one in Sema and one in CodeGen.
Note that we still do not attempt to perform the named return value
optimization, so we miss copy elisions for return values and throw
expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100196 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-02 22:24:57 +04:00
|
|
|
E = ICE->getSubExpr();
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
|
|
|
|
E = BE->getSubExpr();
|
|
|
|
|
|
|
|
while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
|
2010-08-25 15:45:40 +04:00
|
|
|
if (ICE->getCastKind() == CK_NoOp)
|
Rework our handling of copy construction of temporaries, which was a
poor (and wrong) approximation of the actual rules governing when to
build a copy and when it can be elided.
The correct implementation is actually simpler than the
approximation. When we only enumerate constructors as part of
initialization (e.g., for direct initialization or when we're copying
from a class type or one of its derived classes), we don't create a
copy. When we enumerate all conversion functions, we do create a
copy. Before, we created some extra copies and missed some
others. The new test copy-initialization.cpp shows a case where we
missed creating a (required, non-elidable) copy as part of a
user-defined conversion, which resulted in a miscompile. This commit
also fixes PR6757, where the missing copy made us reject well-formed
code in the ternary operator.
This commit also cleans up our handling of copy elision in the case
where we create an extra copy of a temporary object, which became
necessary now that we produce the right copies. The code that seeks to
find the temporary object being copied has moved into
Expr::getTemporaryObject(); it used to have two different
not-quite-the-same implementations, one in Sema and one in CodeGen.
Note that we still do not attempt to perform the named return value
optimization, so we miss copy elisions for return values and throw
expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100196 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-02 22:24:57 +04:00
|
|
|
E = ICE->getSubExpr();
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2010-11-28 19:40:49 +03:00
|
|
|
|
|
|
|
return E->IgnoreParens();
|
Rework our handling of copy construction of temporaries, which was a
poor (and wrong) approximation of the actual rules governing when to
build a copy and when it can be elided.
The correct implementation is actually simpler than the
approximation. When we only enumerate constructors as part of
initialization (e.g., for direct initialization or when we're copying
from a class type or one of its derived classes), we don't create a
copy. When we enumerate all conversion functions, we do create a
copy. Before, we created some extra copies and missed some
others. The new test copy-initialization.cpp shows a case where we
missed creating a (required, non-elidable) copy as part of a
user-defined conversion, which resulted in a miscompile. This commit
also fixes PR6757, where the missing copy made us reject well-formed
code in the ternary operator.
This commit also cleans up our handling of copy elision in the case
where we create an extra copy of a temporary object, which became
necessary now that we produce the right copies. The code that seeks to
find the temporary object being copied has moved into
Expr::getTemporaryObject(); it used to have two different
not-quite-the-same implementations, one in Sema and one in CodeGen.
Note that we still do not attempt to perform the named return value
optimization, so we miss copy elisions for return values and throw
expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100196 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-02 22:24:57 +04:00
|
|
|
}
|
|
|
|
|
2010-09-15 14:14:12 +04:00
|
|
|
/// isTemporaryObject - Determines if this expression produces a
|
|
|
|
/// temporary of the given class type.
|
|
|
|
bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const {
|
|
|
|
if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
|
|
|
|
return false;
|
Rework our handling of copy construction of temporaries, which was a
poor (and wrong) approximation of the actual rules governing when to
build a copy and when it can be elided.
The correct implementation is actually simpler than the
approximation. When we only enumerate constructors as part of
initialization (e.g., for direct initialization or when we're copying
from a class type or one of its derived classes), we don't create a
copy. When we enumerate all conversion functions, we do create a
copy. Before, we created some extra copies and missed some
others. The new test copy-initialization.cpp shows a case where we
missed creating a (required, non-elidable) copy as part of a
user-defined conversion, which resulted in a miscompile. This commit
also fixes PR6757, where the missing copy made us reject well-formed
code in the ternary operator.
This commit also cleans up our handling of copy elision in the case
where we create an extra copy of a temporary object, which became
necessary now that we produce the right copies. The code that seeks to
find the temporary object being copied has moved into
Expr::getTemporaryObject(); it used to have two different
not-quite-the-same implementations, one in Sema and one in CodeGen.
Note that we still do not attempt to perform the named return value
optimization, so we miss copy elisions for return values and throw
expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100196 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-02 22:24:57 +04:00
|
|
|
|
2010-11-28 19:40:49 +03:00
|
|
|
const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this);
|
Rework our handling of copy construction of temporaries, which was a
poor (and wrong) approximation of the actual rules governing when to
build a copy and when it can be elided.
The correct implementation is actually simpler than the
approximation. When we only enumerate constructors as part of
initialization (e.g., for direct initialization or when we're copying
from a class type or one of its derived classes), we don't create a
copy. When we enumerate all conversion functions, we do create a
copy. Before, we created some extra copies and missed some
others. The new test copy-initialization.cpp shows a case where we
missed creating a (required, non-elidable) copy as part of a
user-defined conversion, which resulted in a miscompile. This commit
also fixes PR6757, where the missing copy made us reject well-formed
code in the ternary operator.
This commit also cleans up our handling of copy elision in the case
where we create an extra copy of a temporary object, which became
necessary now that we produce the right copies. The code that seeks to
find the temporary object being copied has moved into
Expr::getTemporaryObject(); it used to have two different
not-quite-the-same implementations, one in Sema and one in CodeGen.
Note that we still do not attempt to perform the named return value
optimization, so we miss copy elisions for return values and throw
expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100196 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-02 22:24:57 +04:00
|
|
|
|
2010-09-16 00:59:13 +04:00
|
|
|
// Temporaries are by definition pr-values of class type.
|
2010-09-27 21:30:38 +04:00
|
|
|
if (!E->Classify(C).isPRValue()) {
|
|
|
|
// In this context, property reference is a message call and is pr-value.
|
2010-12-02 04:19:52 +03:00
|
|
|
if (!isa<ObjCPropertyRefExpr>(E))
|
2010-09-27 21:30:38 +04:00
|
|
|
return false;
|
|
|
|
}
|
Rework our handling of copy construction of temporaries, which was a
poor (and wrong) approximation of the actual rules governing when to
build a copy and when it can be elided.
The correct implementation is actually simpler than the
approximation. When we only enumerate constructors as part of
initialization (e.g., for direct initialization or when we're copying
from a class type or one of its derived classes), we don't create a
copy. When we enumerate all conversion functions, we do create a
copy. Before, we created some extra copies and missed some
others. The new test copy-initialization.cpp shows a case where we
missed creating a (required, non-elidable) copy as part of a
user-defined conversion, which resulted in a miscompile. This commit
also fixes PR6757, where the missing copy made us reject well-formed
code in the ternary operator.
This commit also cleans up our handling of copy elision in the case
where we create an extra copy of a temporary object, which became
necessary now that we produce the right copies. The code that seeks to
find the temporary object being copied has moved into
Expr::getTemporaryObject(); it used to have two different
not-quite-the-same implementations, one in Sema and one in CodeGen.
Note that we still do not attempt to perform the named return value
optimization, so we miss copy elisions for return values and throw
expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100196 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-02 22:24:57 +04:00
|
|
|
|
2010-09-16 10:57:56 +04:00
|
|
|
// Black-list a few cases which yield pr-values of class type that don't
|
|
|
|
// refer to temporaries of that type:
|
|
|
|
|
|
|
|
// - implicit derived-to-base conversions
|
2010-09-15 14:14:12 +04:00
|
|
|
if (isa<ImplicitCastExpr>(E)) {
|
|
|
|
switch (cast<ImplicitCastExpr>(E)->getCastKind()) {
|
|
|
|
case CK_DerivedToBase:
|
|
|
|
case CK_UncheckedDerivedToBase:
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
Rework our handling of copy construction of temporaries, which was a
poor (and wrong) approximation of the actual rules governing when to
build a copy and when it can be elided.
The correct implementation is actually simpler than the
approximation. When we only enumerate constructors as part of
initialization (e.g., for direct initialization or when we're copying
from a class type or one of its derived classes), we don't create a
copy. When we enumerate all conversion functions, we do create a
copy. Before, we created some extra copies and missed some
others. The new test copy-initialization.cpp shows a case where we
missed creating a (required, non-elidable) copy as part of a
user-defined conversion, which resulted in a miscompile. This commit
also fixes PR6757, where the missing copy made us reject well-formed
code in the ternary operator.
This commit also cleans up our handling of copy elision in the case
where we create an extra copy of a temporary object, which became
necessary now that we produce the right copies. The code that seeks to
find the temporary object being copied has moved into
Expr::getTemporaryObject(); it used to have two different
not-quite-the-same implementations, one in Sema and one in CodeGen.
Note that we still do not attempt to perform the named return value
optimization, so we miss copy elisions for return values and throw
expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100196 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-02 22:24:57 +04:00
|
|
|
}
|
|
|
|
|
2010-09-16 10:57:56 +04:00
|
|
|
// - member expressions (all)
|
|
|
|
if (isa<MemberExpr>(E))
|
|
|
|
return false;
|
|
|
|
|
2012-06-16 03:51:06 +04:00
|
|
|
if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E))
|
|
|
|
if (BO->isPtrMemOp())
|
|
|
|
return false;
|
|
|
|
|
2011-02-17 13:25:35 +03:00
|
|
|
// - opaque values (all)
|
|
|
|
if (isa<OpaqueValueExpr>(E))
|
|
|
|
return false;
|
|
|
|
|
2010-09-15 14:14:12 +04:00
|
|
|
return true;
|
Rework our handling of copy construction of temporaries, which was a
poor (and wrong) approximation of the actual rules governing when to
build a copy and when it can be elided.
The correct implementation is actually simpler than the
approximation. When we only enumerate constructors as part of
initialization (e.g., for direct initialization or when we're copying
from a class type or one of its derived classes), we don't create a
copy. When we enumerate all conversion functions, we do create a
copy. Before, we created some extra copies and missed some
others. The new test copy-initialization.cpp shows a case where we
missed creating a (required, non-elidable) copy as part of a
user-defined conversion, which resulted in a miscompile. This commit
also fixes PR6757, where the missing copy made us reject well-formed
code in the ternary operator.
This commit also cleans up our handling of copy elision in the case
where we create an extra copy of a temporary object, which became
necessary now that we produce the right copies. The code that seeks to
find the temporary object being copied has moved into
Expr::getTemporaryObject(); it used to have two different
not-quite-the-same implementations, one in Sema and one in CodeGen.
Note that we still do not attempt to perform the named return value
optimization, so we miss copy elisions for return values and throw
expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100196 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-02 22:24:57 +04:00
|
|
|
}
|
|
|
|
|
2011-03-03 00:06:53 +03:00
|
|
|
bool Expr::isImplicitCXXThis() const {
|
|
|
|
const Expr *E = this;
|
|
|
|
|
|
|
|
// Strip away parentheses and casts we don't care about.
|
|
|
|
while (true) {
|
|
|
|
if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) {
|
|
|
|
E = Paren->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
|
|
|
|
if (ICE->getCastKind() == CK_NoOp ||
|
|
|
|
ICE->getCastKind() == CK_LValueToRValue ||
|
|
|
|
ICE->getCastKind() == CK_DerivedToBase ||
|
|
|
|
ICE->getCastKind() == CK_UncheckedDerivedToBase) {
|
|
|
|
E = ICE->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const UnaryOperator* UnOp = dyn_cast<UnaryOperator>(E)) {
|
|
|
|
if (UnOp->getOpcode() == UO_Extension) {
|
|
|
|
E = UnOp->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-21 21:03:29 +04:00
|
|
|
if (const MaterializeTemporaryExpr *M
|
|
|
|
= dyn_cast<MaterializeTemporaryExpr>(E)) {
|
|
|
|
E = M->GetTemporaryExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-03-03 00:06:53 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const CXXThisExpr *This = dyn_cast<CXXThisExpr>(E))
|
|
|
|
return This->isImplicit();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-12-06 02:32:09 +03:00
|
|
|
/// hasAnyTypeDependentArguments - Determines if any of the expressions
|
|
|
|
/// in Exprs is type-dependent.
|
2013-01-12 23:30:44 +04:00
|
|
|
bool Expr::hasAnyTypeDependentArguments(ArrayRef<Expr *> Exprs) {
|
2012-02-25 15:00:22 +04:00
|
|
|
for (unsigned I = 0; I < Exprs.size(); ++I)
|
2008-12-06 02:32:09 +03:00
|
|
|
if (Exprs[I]->isTypeDependent())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-08-03 01:13:48 +04:00
|
|
|
bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const {
|
2009-01-25 06:12:18 +03:00
|
|
|
// This function is attempting whether an expression is an initializer
|
|
|
|
// which can be evaluated at compile-time. isEvaluatable handles most
|
|
|
|
// of the cases, but it can't deal with some initializer-specific
|
|
|
|
// expressions, and it can't deal with aggregates; we deal with those here,
|
|
|
|
// and fall back to isEvaluatable for the other cases.
|
|
|
|
|
2010-08-03 01:13:48 +04:00
|
|
|
// If we ever capture reference-binding directly in the AST, we can
|
|
|
|
// kill the second parameter.
|
|
|
|
|
|
|
|
if (IsForRef) {
|
|
|
|
EvalResult Result;
|
|
|
|
return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects;
|
|
|
|
}
|
2009-02-20 05:36:22 +03:00
|
|
|
|
2008-11-24 08:23:59 +03:00
|
|
|
switch (getStmtClass()) {
|
2009-01-25 06:12:18 +03:00
|
|
|
default: break;
|
2011-12-09 10:47:34 +04:00
|
|
|
case IntegerLiteralClass:
|
|
|
|
case FloatingLiteralClass:
|
2008-11-24 08:23:59 +03:00
|
|
|
case StringLiteralClass:
|
2009-07-11 03:34:53 +04:00
|
|
|
case ObjCStringLiteralClass:
|
2009-02-25 01:18:39 +03:00
|
|
|
case ObjCEncodeExprClass:
|
2008-11-24 08:23:59 +03:00
|
|
|
return true;
|
2010-08-02 01:51:45 +04:00
|
|
|
case CXXTemporaryObjectExprClass:
|
|
|
|
case CXXConstructExprClass: {
|
|
|
|
const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
|
2010-08-03 01:13:48 +04:00
|
|
|
|
|
|
|
// Only if it's
|
2011-11-10 10:34:14 +04:00
|
|
|
if (CE->getConstructor()->isTrivial()) {
|
|
|
|
// 1) an application of the trivial default constructor or
|
|
|
|
if (!CE->getNumArgs()) return true;
|
|
|
|
|
|
|
|
// 2) an elidable trivial copy construction of an operand which is
|
|
|
|
// itself a constant initializer. Note that we consider the
|
|
|
|
// operand on its own, *not* as a reference binding.
|
|
|
|
if (CE->isElidable() &&
|
|
|
|
CE->getArg(0)->isConstantInitializer(Ctx, false))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3) a foldable constexpr constructor.
|
|
|
|
break;
|
2010-08-02 01:51:45 +04:00
|
|
|
}
|
2009-01-18 06:20:47 +03:00
|
|
|
case CompoundLiteralExprClass: {
|
2009-02-20 05:36:22 +03:00
|
|
|
// This handles gcc's extension that allows global initializers like
|
|
|
|
// "struct x {int x;} x = (struct x) {};".
|
|
|
|
// FIXME: This accepts other cases it shouldn't!
|
2009-01-18 06:20:47 +03:00
|
|
|
const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
|
2010-08-03 01:13:48 +04:00
|
|
|
return Exp->isConstantInitializer(Ctx, false);
|
2009-01-18 06:20:47 +03:00
|
|
|
}
|
2008-11-24 08:23:59 +03:00
|
|
|
case InitListExprClass: {
|
2009-02-20 05:36:22 +03:00
|
|
|
// FIXME: This doesn't deal with fields with reference types correctly.
|
|
|
|
// FIXME: This incorrectly allows pointers cast to integers to be assigned
|
|
|
|
// to bitfields.
|
2008-11-24 08:23:59 +03:00
|
|
|
const InitListExpr *Exp = cast<InitListExpr>(this);
|
|
|
|
unsigned numInits = Exp->getNumInits();
|
|
|
|
for (unsigned i = 0; i < numInits; i++) {
|
2010-08-03 01:13:48 +04:00
|
|
|
if (!Exp->getInit(i)->isConstantInitializer(Ctx, false))
|
2008-11-24 08:23:59 +03:00
|
|
|
return false;
|
|
|
|
}
|
2009-01-25 06:12:18 +03:00
|
|
|
return true;
|
2008-11-24 08:23:59 +03:00
|
|
|
}
|
2009-01-29 20:44:32 +03:00
|
|
|
case ImplicitValueInitExprClass:
|
|
|
|
return true;
|
2009-10-13 11:14:16 +04:00
|
|
|
case ParenExprClass:
|
2010-08-03 01:13:48 +04:00
|
|
|
return cast<ParenExpr>(this)->getSubExpr()
|
|
|
|
->isConstantInitializer(Ctx, IsForRef);
|
2011-04-15 04:35:48 +04:00
|
|
|
case GenericSelectionExprClass:
|
|
|
|
if (cast<GenericSelectionExpr>(this)->isResultDependent())
|
|
|
|
return false;
|
|
|
|
return cast<GenericSelectionExpr>(this)->getResultExpr()
|
|
|
|
->isConstantInitializer(Ctx, IsForRef);
|
2010-09-27 11:13:32 +04:00
|
|
|
case ChooseExprClass:
|
|
|
|
return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)
|
|
|
|
->isConstantInitializer(Ctx, IsForRef);
|
2009-01-25 06:12:18 +03:00
|
|
|
case UnaryOperatorClass: {
|
|
|
|
const UnaryOperator* Exp = cast<UnaryOperator>(this);
|
2010-08-25 15:45:40 +04:00
|
|
|
if (Exp->getOpcode() == UO_Extension)
|
2010-08-03 01:13:48 +04:00
|
|
|
return Exp->getSubExpr()->isConstantInitializer(Ctx, false);
|
2009-01-25 06:12:18 +03:00
|
|
|
break;
|
|
|
|
}
|
2010-08-03 01:13:48 +04:00
|
|
|
case CXXFunctionalCastExprClass:
|
2010-08-02 01:51:45 +04:00
|
|
|
case CXXStaticCastExprClass:
|
2009-04-21 09:19:11 +04:00
|
|
|
case ImplicitCastExprClass:
|
2011-12-07 02:44:34 +04:00
|
|
|
case CStyleCastExprClass: {
|
|
|
|
const CastExpr *CE = cast<CastExpr>(this);
|
|
|
|
|
2012-01-16 21:27:18 +04:00
|
|
|
// If we're promoting an integer to an _Atomic type then this is constant
|
|
|
|
// if the integer is constant. We also need to check the converse in case
|
|
|
|
// someone does something like:
|
|
|
|
//
|
|
|
|
// int a = (_Atomic(int))42;
|
|
|
|
//
|
|
|
|
// I doubt anyone would write code like this directly, but it's quite
|
|
|
|
// possible as the result of macro expansions.
|
|
|
|
if (CE->getCastKind() == CK_NonAtomicToAtomic ||
|
|
|
|
CE->getCastKind() == CK_AtomicToNonAtomic)
|
|
|
|
return CE->getSubExpr()->isConstantInitializer(Ctx, false);
|
|
|
|
|
2011-12-07 02:44:34 +04:00
|
|
|
// Handle bitcasts of vector constants.
|
|
|
|
if (getType()->isVectorType() && CE->getCastKind() == CK_BitCast)
|
|
|
|
return CE->getSubExpr()->isConstantInitializer(Ctx, false);
|
|
|
|
|
2011-12-21 04:43:02 +04:00
|
|
|
// Handle misc casts we want to ignore.
|
|
|
|
// FIXME: Is it really safe to ignore all these?
|
|
|
|
if (CE->getCastKind() == CK_NoOp ||
|
|
|
|
CE->getCastKind() == CK_LValueToRValue ||
|
|
|
|
CE->getCastKind() == CK_ToUnion ||
|
|
|
|
CE->getCastKind() == CK_ConstructorConversion)
|
2011-12-07 02:44:34 +04:00
|
|
|
return CE->getSubExpr()->isConstantInitializer(Ctx, false);
|
|
|
|
|
2009-01-25 06:12:18 +03:00
|
|
|
break;
|
2011-12-07 02:44:34 +04:00
|
|
|
}
|
2011-06-21 21:03:29 +04:00
|
|
|
case MaterializeTemporaryExprClass:
|
2011-07-23 14:55:15 +04:00
|
|
|
return cast<MaterializeTemporaryExpr>(this)->GetTemporaryExpr()
|
2011-06-21 21:03:29 +04:00
|
|
|
->isConstantInitializer(Ctx, false);
|
2008-11-24 08:23:59 +03:00
|
|
|
}
|
2009-01-25 06:12:18 +03:00
|
|
|
return isEvaluatable(Ctx);
|
2007-09-03 00:30:18 +04:00
|
|
|
}
|
|
|
|
|
2012-08-07 08:16:51 +04:00
|
|
|
bool Expr::HasSideEffects(const ASTContext &Ctx) const {
|
|
|
|
if (isInstantiationDependent())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
switch (getStmtClass()) {
|
|
|
|
case NoStmtClass:
|
|
|
|
#define ABSTRACT_STMT(Type)
|
|
|
|
#define STMT(Type, Base) case Type##Class:
|
|
|
|
#define EXPR(Type, Base)
|
|
|
|
#include "clang/AST/StmtNodes.inc"
|
|
|
|
llvm_unreachable("unexpected Expr kind");
|
|
|
|
|
|
|
|
case DependentScopeDeclRefExprClass:
|
|
|
|
case CXXUnresolvedConstructExprClass:
|
|
|
|
case CXXDependentScopeMemberExprClass:
|
|
|
|
case UnresolvedLookupExprClass:
|
|
|
|
case UnresolvedMemberExprClass:
|
|
|
|
case PackExpansionExprClass:
|
|
|
|
case SubstNonTypeTemplateParmPackExprClass:
|
2012-09-12 04:56:43 +04:00
|
|
|
case FunctionParmPackExprClass:
|
2012-08-07 08:16:51 +04:00
|
|
|
llvm_unreachable("shouldn't see dependent / unresolved nodes here");
|
|
|
|
|
2012-08-07 09:18:29 +04:00
|
|
|
case DeclRefExprClass:
|
|
|
|
case ObjCIvarRefExprClass:
|
2012-08-07 08:16:51 +04:00
|
|
|
case PredefinedExprClass:
|
|
|
|
case IntegerLiteralClass:
|
|
|
|
case FloatingLiteralClass:
|
|
|
|
case ImaginaryLiteralClass:
|
|
|
|
case StringLiteralClass:
|
|
|
|
case CharacterLiteralClass:
|
|
|
|
case OffsetOfExprClass:
|
|
|
|
case ImplicitValueInitExprClass:
|
|
|
|
case UnaryExprOrTypeTraitExprClass:
|
|
|
|
case AddrLabelExprClass:
|
|
|
|
case GNUNullExprClass:
|
|
|
|
case CXXBoolLiteralExprClass:
|
|
|
|
case CXXNullPtrLiteralExprClass:
|
|
|
|
case CXXThisExprClass:
|
|
|
|
case CXXScalarValueInitExprClass:
|
|
|
|
case TypeTraitExprClass:
|
|
|
|
case UnaryTypeTraitExprClass:
|
|
|
|
case BinaryTypeTraitExprClass:
|
|
|
|
case ArrayTypeTraitExprClass:
|
|
|
|
case ExpressionTraitExprClass:
|
|
|
|
case CXXNoexceptExprClass:
|
|
|
|
case SizeOfPackExprClass:
|
|
|
|
case ObjCStringLiteralClass:
|
|
|
|
case ObjCEncodeExprClass:
|
|
|
|
case ObjCBoolLiteralExprClass:
|
|
|
|
case CXXUuidofExprClass:
|
|
|
|
case OpaqueValueExprClass:
|
|
|
|
// These never have a side-effect.
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case CallExprClass:
|
|
|
|
case CompoundAssignOperatorClass:
|
|
|
|
case VAArgExprClass:
|
|
|
|
case AtomicExprClass:
|
|
|
|
case StmtExprClass:
|
|
|
|
case CXXOperatorCallExprClass:
|
|
|
|
case CXXMemberCallExprClass:
|
|
|
|
case UserDefinedLiteralClass:
|
|
|
|
case CXXThrowExprClass:
|
|
|
|
case CXXNewExprClass:
|
|
|
|
case CXXDeleteExprClass:
|
|
|
|
case ExprWithCleanupsClass:
|
|
|
|
case CXXBindTemporaryExprClass:
|
|
|
|
case BlockExprClass:
|
|
|
|
case CUDAKernelCallExprClass:
|
|
|
|
// These always have a side-effect.
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case ParenExprClass:
|
|
|
|
case ArraySubscriptExprClass:
|
|
|
|
case MemberExprClass:
|
|
|
|
case ConditionalOperatorClass:
|
|
|
|
case BinaryConditionalOperatorClass:
|
|
|
|
case CompoundLiteralExprClass:
|
|
|
|
case ExtVectorElementExprClass:
|
|
|
|
case DesignatedInitExprClass:
|
|
|
|
case ParenListExprClass:
|
|
|
|
case CXXPseudoDestructorExprClass:
|
|
|
|
case SubstNonTypeTemplateParmExprClass:
|
|
|
|
case MaterializeTemporaryExprClass:
|
|
|
|
case ShuffleVectorExprClass:
|
|
|
|
case AsTypeExprClass:
|
|
|
|
// These have a side-effect if any subexpression does.
|
|
|
|
break;
|
|
|
|
|
2012-08-07 09:18:29 +04:00
|
|
|
case UnaryOperatorClass:
|
|
|
|
if (cast<UnaryOperator>(this)->isIncrementDecrementOp())
|
2012-08-07 08:16:51 +04:00
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BinaryOperatorClass:
|
|
|
|
if (cast<BinaryOperator>(this)->isAssignmentOp())
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case InitListExprClass:
|
|
|
|
// FIXME: The children for an InitListExpr doesn't include the array filler.
|
|
|
|
if (const Expr *E = cast<InitListExpr>(this)->getArrayFiller())
|
|
|
|
if (E->HasSideEffects(Ctx))
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GenericSelectionExprClass:
|
|
|
|
return cast<GenericSelectionExpr>(this)->getResultExpr()->
|
|
|
|
HasSideEffects(Ctx);
|
|
|
|
|
|
|
|
case ChooseExprClass:
|
|
|
|
return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->HasSideEffects(Ctx);
|
|
|
|
|
|
|
|
case CXXDefaultArgExprClass:
|
|
|
|
return cast<CXXDefaultArgExpr>(this)->getExpr()->HasSideEffects(Ctx);
|
|
|
|
|
|
|
|
case CXXDynamicCastExprClass: {
|
|
|
|
// A dynamic_cast expression has side-effects if it can throw.
|
|
|
|
const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(this);
|
|
|
|
if (DCE->getTypeAsWritten()->isReferenceType() &&
|
|
|
|
DCE->getCastKind() == CK_Dynamic)
|
|
|
|
return true;
|
2012-08-07 09:18:29 +04:00
|
|
|
} // Fall through.
|
|
|
|
case ImplicitCastExprClass:
|
|
|
|
case CStyleCastExprClass:
|
|
|
|
case CXXStaticCastExprClass:
|
|
|
|
case CXXReinterpretCastExprClass:
|
|
|
|
case CXXConstCastExprClass:
|
|
|
|
case CXXFunctionalCastExprClass: {
|
|
|
|
const CastExpr *CE = cast<CastExpr>(this);
|
|
|
|
if (CE->getCastKind() == CK_LValueToRValue &&
|
|
|
|
CE->getSubExpr()->getType().isVolatileQualified())
|
|
|
|
return true;
|
2012-08-07 08:16:51 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-08-14 00:08:14 +04:00
|
|
|
case CXXTypeidExprClass:
|
|
|
|
// typeid might throw if its subexpression is potentially-evaluated, so has
|
|
|
|
// side-effects in that case whether or not its subexpression does.
|
|
|
|
return cast<CXXTypeidExpr>(this)->isPotentiallyEvaluated();
|
2012-08-07 08:16:51 +04:00
|
|
|
|
|
|
|
case CXXConstructExprClass:
|
|
|
|
case CXXTemporaryObjectExprClass: {
|
|
|
|
const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
|
2012-08-07 09:18:29 +04:00
|
|
|
if (!CE->getConstructor()->isTrivial())
|
2012-08-07 08:16:51 +04:00
|
|
|
return true;
|
2012-08-07 09:18:29 +04:00
|
|
|
// A trivial constructor does not add any side-effects of its own. Just look
|
|
|
|
// at its arguments.
|
2012-08-07 08:16:51 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LambdaExprClass: {
|
|
|
|
const LambdaExpr *LE = cast<LambdaExpr>(this);
|
|
|
|
for (LambdaExpr::capture_iterator I = LE->capture_begin(),
|
|
|
|
E = LE->capture_end(); I != E; ++I)
|
|
|
|
if (I->getCaptureKind() == LCK_ByCopy)
|
|
|
|
// FIXME: Only has a side-effect if the variable is volatile or if
|
|
|
|
// the copy would invoke a non-trivial copy constructor.
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PseudoObjectExprClass: {
|
|
|
|
// Only look for side-effects in the semantic form, and look past
|
|
|
|
// OpaqueValueExpr bindings in that form.
|
|
|
|
const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
|
|
|
|
for (PseudoObjectExpr::const_semantics_iterator I = PO->semantics_begin(),
|
|
|
|
E = PO->semantics_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
const Expr *Subexpr = *I;
|
|
|
|
if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Subexpr))
|
|
|
|
Subexpr = OVE->getSourceExpr();
|
|
|
|
if (Subexpr->HasSideEffects(Ctx))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
case ObjCBoxedExprClass:
|
|
|
|
case ObjCArrayLiteralClass:
|
|
|
|
case ObjCDictionaryLiteralClass:
|
|
|
|
case ObjCMessageExprClass:
|
|
|
|
case ObjCSelectorExprClass:
|
|
|
|
case ObjCProtocolExprClass:
|
|
|
|
case ObjCPropertyRefExprClass:
|
|
|
|
case ObjCIsaExprClass:
|
|
|
|
case ObjCIndirectCopyRestoreExprClass:
|
|
|
|
case ObjCSubscriptRefExprClass:
|
|
|
|
case ObjCBridgedCastExprClass:
|
|
|
|
// FIXME: Classify these cases better.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Recurse to children.
|
|
|
|
for (const_child_range SubStmts = children(); SubStmts; ++SubStmts)
|
|
|
|
if (const Stmt *S = *SubStmts)
|
|
|
|
if (cast<Expr>(S)->HasSideEffects(Ctx))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-02-23 11:33:15 +04:00
|
|
|
namespace {
|
|
|
|
/// \brief Look for a call to a non-trivial function within an expression.
|
|
|
|
class NonTrivialCallFinder : public EvaluatedExprVisitor<NonTrivialCallFinder>
|
|
|
|
{
|
|
|
|
typedef EvaluatedExprVisitor<NonTrivialCallFinder> Inherited;
|
|
|
|
|
|
|
|
bool NonTrivial;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit NonTrivialCallFinder(ASTContext &Context)
|
2012-02-23 11:44:18 +04:00
|
|
|
: Inherited(Context), NonTrivial(false) { }
|
2012-02-23 11:33:15 +04:00
|
|
|
|
|
|
|
bool hasNonTrivialCall() const { return NonTrivial; }
|
|
|
|
|
|
|
|
void VisitCallExpr(CallExpr *E) {
|
|
|
|
if (CXXMethodDecl *Method
|
|
|
|
= dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) {
|
|
|
|
if (Method->isTrivial()) {
|
|
|
|
// Recurse to children of the call.
|
|
|
|
Inherited::VisitStmt(E);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NonTrivial = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VisitCXXConstructExpr(CXXConstructExpr *E) {
|
|
|
|
if (E->getConstructor()->isTrivial()) {
|
|
|
|
// Recurse to children of the call.
|
|
|
|
Inherited::VisitStmt(E);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NonTrivial = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
|
|
|
|
if (E->getTemporary()->getDestructor()->isTrivial()) {
|
|
|
|
Inherited::VisitStmt(E);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NonTrivial = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Expr::hasNonTrivialCall(ASTContext &Ctx) {
|
|
|
|
NonTrivialCallFinder Finder(Ctx);
|
|
|
|
Finder.Visit(this);
|
|
|
|
return Finder.hasNonTrivialCall();
|
|
|
|
}
|
|
|
|
|
2011-02-19 02:54:50 +03:00
|
|
|
/// isNullPointerConstant - C99 6.3.2.3p3 - Return whether this is a null
|
|
|
|
/// pointer constant or not, as well as the specific kind of constant detected.
|
|
|
|
/// Null pointer constants can be integer constant expressions with the
|
|
|
|
/// value zero, casts of zero to void*, nullptr (C++0X), or __null
|
|
|
|
/// (a GNU extension).
|
|
|
|
Expr::NullPointerConstantKind
|
|
|
|
Expr::isNullPointerConstant(ASTContext &Ctx,
|
|
|
|
NullPointerConstantValueDependence NPC) const {
|
2009-09-25 08:25:58 +04:00
|
|
|
if (isValueDependent()) {
|
|
|
|
switch (NPC) {
|
|
|
|
case NPC_NeverValueDependent:
|
2011-09-23 09:06:16 +04:00
|
|
|
llvm_unreachable("Unexpected value dependent expression!");
|
2009-09-25 08:25:58 +04:00
|
|
|
case NPC_ValueDependentIsNull:
|
2011-02-19 02:54:50 +03:00
|
|
|
if (isTypeDependent() || getType()->isIntegralType(Ctx))
|
2012-08-08 21:33:31 +04:00
|
|
|
return NPCK_ZeroExpression;
|
2011-02-19 02:54:50 +03:00
|
|
|
else
|
|
|
|
return NPCK_NotNull;
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2009-09-25 08:25:58 +04:00
|
|
|
case NPC_ValueDependentIsNotNull:
|
2011-02-19 02:54:50 +03:00
|
|
|
return NPCK_NotNull;
|
2009-09-25 08:25:58 +04:00
|
|
|
}
|
|
|
|
}
|
2009-09-18 12:46:16 +04:00
|
|
|
|
2008-10-31 17:43:28 +03:00
|
|
|
// Strip off a cast to void*, if it exists. Except in C++.
|
2008-08-19 03:01:59 +04:00
|
|
|
if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
|
2012-03-11 11:00:24 +04:00
|
|
|
if (!Ctx.getLangOpts().CPlusPlus) {
|
2008-10-31 17:43:28 +03:00
|
|
|
// Check that it is a cast to void*.
|
2009-07-30 01:53:49 +04:00
|
|
|
if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
|
2008-10-31 17:43:28 +03:00
|
|
|
QualType Pointee = PT->getPointeeType();
|
2009-09-24 23:53:00 +04:00
|
|
|
if (!Pointee.hasQualifiers() &&
|
2008-10-31 17:43:28 +03:00
|
|
|
Pointee->isVoidType() && // to void*
|
|
|
|
CE->getSubExpr()->getType()->isIntegerType()) // from int.
|
2009-09-25 08:25:58 +04:00
|
|
|
return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
|
2008-10-31 17:43:28 +03:00
|
|
|
}
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2008-01-14 19:10:57 +03:00
|
|
|
} else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
|
|
|
|
// Ignore the ImplicitCastExpr type entirely.
|
2009-09-25 08:25:58 +04:00
|
|
|
return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
|
2008-01-14 19:10:57 +03:00
|
|
|
} else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
|
|
|
|
// Accept ((void*)0) as a null pointer constant, as many other
|
|
|
|
// implementations do.
|
2009-09-25 08:25:58 +04:00
|
|
|
return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
|
2011-04-15 04:35:48 +04:00
|
|
|
} else if (const GenericSelectionExpr *GE =
|
|
|
|
dyn_cast<GenericSelectionExpr>(this)) {
|
|
|
|
return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC);
|
2009-09-09 19:08:12 +04:00
|
|
|
} else if (const CXXDefaultArgExpr *DefaultArg
|
2008-04-10 06:22:51 +04:00
|
|
|
= dyn_cast<CXXDefaultArgExpr>(this)) {
|
2008-04-08 08:40:51 +04:00
|
|
|
// See through default argument expressions
|
2009-09-25 08:25:58 +04:00
|
|
|
return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
|
2008-11-29 07:51:27 +03:00
|
|
|
} else if (isa<GNUNullExpr>(this)) {
|
|
|
|
// The GNU __null extension is always a null pointer constant.
|
2011-02-19 02:54:50 +03:00
|
|
|
return NPCK_GNUNull;
|
2011-06-21 21:03:29 +04:00
|
|
|
} else if (const MaterializeTemporaryExpr *M
|
|
|
|
= dyn_cast<MaterializeTemporaryExpr>(this)) {
|
|
|
|
return M->GetTemporaryExpr()->isNullPointerConstant(Ctx, NPC);
|
2011-11-06 13:01:30 +04:00
|
|
|
} else if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(this)) {
|
|
|
|
if (const Expr *Source = OVE->getSourceExpr())
|
|
|
|
return Source->isNullPointerConstant(Ctx, NPC);
|
2008-01-14 05:53:34 +03:00
|
|
|
}
|
2008-11-29 07:51:27 +03:00
|
|
|
|
2013-01-02 16:01:23 +04:00
|
|
|
// C++11 nullptr_t is always a null pointer constant.
|
2009-05-10 22:38:11 +04:00
|
|
|
if (getType()->isNullPtrType())
|
2013-01-02 16:01:23 +04:00
|
|
|
return NPCK_CXX11_nullptr;
|
2009-05-10 22:38:11 +04:00
|
|
|
|
2010-09-28 02:42:37 +04:00
|
|
|
if (const RecordType *UT = getType()->getAsUnionType())
|
|
|
|
if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>())
|
|
|
|
if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){
|
|
|
|
const Expr *InitExpr = CLE->getInitializer();
|
|
|
|
if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr))
|
|
|
|
return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC);
|
|
|
|
}
|
2008-01-14 19:10:57 +03:00
|
|
|
// This expression must be an integer type.
|
2010-05-05 19:23:54 +04:00
|
|
|
if (!getType()->isIntegerType() ||
|
2012-03-11 11:00:24 +04:00
|
|
|
(Ctx.getLangOpts().CPlusPlus && getType()->isEnumeralType()))
|
2011-02-19 02:54:50 +03:00
|
|
|
return NPCK_NotNull;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// If we have an integer constant expression, we need to *evaluate* it and
|
2012-02-15 01:38:30 +04:00
|
|
|
// test for the value 0. Don't use the C++11 constant expression semantics
|
|
|
|
// for this, for now; once the dust settles on core issue 903, we might only
|
|
|
|
// allow a literal 0 here in C++11 mode.
|
2013-01-02 15:42:31 +04:00
|
|
|
if (Ctx.getLangOpts().CPlusPlus11) {
|
2012-02-15 01:38:30 +04:00
|
|
|
if (!isCXX98IntegralConstantExpr(Ctx))
|
|
|
|
return NPCK_NotNull;
|
|
|
|
} else {
|
|
|
|
if (!isIntegerConstantExpr(Ctx))
|
|
|
|
return NPCK_NotNull;
|
|
|
|
}
|
2011-02-19 02:54:50 +03:00
|
|
|
|
2012-08-08 21:33:31 +04:00
|
|
|
if (EvaluateKnownConstInt(Ctx) != 0)
|
|
|
|
return NPCK_NotNull;
|
|
|
|
|
|
|
|
if (isa<IntegerLiteral>(this))
|
|
|
|
return NPCK_ZeroLiteral;
|
|
|
|
return NPCK_ZeroExpression;
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2007-07-29 03:10:27 +04:00
|
|
|
|
2010-12-04 06:47:34 +03:00
|
|
|
/// \brief If this expression is an l-value for an Objective C
|
|
|
|
/// property, find the underlying property reference expression.
|
|
|
|
const ObjCPropertyRefExpr *Expr::getObjCProperty() const {
|
|
|
|
const Expr *E = this;
|
|
|
|
while (true) {
|
|
|
|
assert((E->getValueKind() == VK_LValue &&
|
|
|
|
E->getObjectKind() == OK_ObjCProperty) &&
|
|
|
|
"expression is not a property reference");
|
|
|
|
E = E->IgnoreParenCasts();
|
|
|
|
if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
|
|
|
|
if (BO->getOpcode() == BO_Comma) {
|
|
|
|
E = BO->getRHS();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cast<ObjCPropertyRefExpr>(E);
|
|
|
|
}
|
|
|
|
|
2012-10-02 00:34:04 +04:00
|
|
|
bool Expr::isObjCSelfExpr() const {
|
|
|
|
const Expr *E = IgnoreParenImpCasts();
|
|
|
|
|
|
|
|
const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
|
|
|
|
if (!DRE)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const ImplicitParamDecl *Param = dyn_cast<ImplicitParamDecl>(DRE->getDecl());
|
|
|
|
if (!Param)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const ObjCMethodDecl *M = dyn_cast<ObjCMethodDecl>(Param->getDeclContext());
|
|
|
|
if (!M)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return M->getSelfDecl() == Param;
|
|
|
|
}
|
|
|
|
|
2009-05-02 06:18:30 +04:00
|
|
|
FieldDecl *Expr::getBitField() {
|
2009-07-06 19:38:40 +04:00
|
|
|
Expr *E = this->IgnoreParens();
|
2009-05-02 06:18:30 +04:00
|
|
|
|
2010-01-29 22:14:02 +03:00
|
|
|
while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
|
2010-12-04 06:47:34 +03:00
|
|
|
if (ICE->getCastKind() == CK_LValueToRValue ||
|
|
|
|
(ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp))
|
2010-01-29 22:14:02 +03:00
|
|
|
E = ICE->getSubExpr()->IgnoreParens();
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-10-29 03:13:59 +03:00
|
|
|
if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
|
2008-12-21 02:49:58 +03:00
|
|
|
if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
|
2009-05-02 06:18:30 +04:00
|
|
|
if (Field->isBitField())
|
|
|
|
return Field;
|
|
|
|
|
2010-10-30 23:52:22 +04:00
|
|
|
if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E))
|
|
|
|
if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
|
|
|
|
if (Field->isBitField())
|
|
|
|
return Field;
|
|
|
|
|
2011-07-13 06:05:57 +04:00
|
|
|
if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E)) {
|
2009-05-02 06:18:30 +04:00
|
|
|
if (BinOp->isAssignmentOp() && BinOp->getLHS())
|
|
|
|
return BinOp->getLHS()->getBitField();
|
|
|
|
|
2011-07-13 06:05:57 +04:00
|
|
|
if (BinOp->getOpcode() == BO_Comma && BinOp->getRHS())
|
|
|
|
return BinOp->getRHS()->getBitField();
|
|
|
|
}
|
|
|
|
|
2009-05-02 06:18:30 +04:00
|
|
|
return 0;
|
2008-10-29 03:13:59 +03:00
|
|
|
}
|
|
|
|
|
2010-01-31 20:18:49 +03:00
|
|
|
bool Expr::refersToVectorElement() const {
|
|
|
|
const Expr *E = this->IgnoreParens();
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2010-01-31 20:18:49 +03:00
|
|
|
while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
|
2010-08-25 14:28:54 +04:00
|
|
|
if (ICE->getValueKind() != VK_RValue &&
|
2010-08-25 15:45:40 +04:00
|
|
|
ICE->getCastKind() == CK_NoOp)
|
2010-01-31 20:18:49 +03:00
|
|
|
E = ICE->getSubExpr()->IgnoreParens();
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2010-05-05 19:23:54 +04:00
|
|
|
|
2010-01-31 20:18:49 +03:00
|
|
|
if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
|
|
|
|
return ASE->getBase()->getType()->isVectorType();
|
|
|
|
|
|
|
|
if (isa<ExtVectorElementExpr>(E))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-02-17 01:14:05 +03:00
|
|
|
/// isArrow - Return true if the base expression is a pointer to vector,
|
|
|
|
/// return false if the base expression is a vector.
|
|
|
|
bool ExtVectorElementExpr::isArrow() const {
|
|
|
|
return getBase()->getType()->isPointerType();
|
|
|
|
}
|
|
|
|
|
2008-04-19 03:10:10 +04:00
|
|
|
unsigned ExtVectorElementExpr::getNumElements() const {
|
2009-09-22 03:43:11 +04:00
|
|
|
if (const VectorType *VT = getType()->getAs<VectorType>())
|
2008-05-09 10:41:27 +04:00
|
|
|
return VT->getNumElements();
|
|
|
|
return 1;
|
2007-08-03 20:00:20 +04:00
|
|
|
}
|
|
|
|
|
2008-05-09 10:41:27 +04:00
|
|
|
/// containsDuplicateElements - Return true if any element access is repeated.
|
2008-04-19 03:10:10 +04:00
|
|
|
bool ExtVectorElementExpr::containsDuplicateElements() const {
|
2009-10-18 06:09:09 +04:00
|
|
|
// FIXME: Refactor this code to an accessor on the AST node which returns the
|
|
|
|
// "type" of component access, and share with code below and in Sema.
|
2011-07-23 14:55:15 +04:00
|
|
|
StringRef Comp = Accessor->getName();
|
2009-01-18 05:01:21 +03:00
|
|
|
|
|
|
|
// Halving swizzles do not contain duplicate elements.
|
2009-10-18 03:53:04 +04:00
|
|
|
if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
|
2009-01-18 05:01:21 +03:00
|
|
|
return false;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-01-18 05:01:21 +03:00
|
|
|
// Advance past s-char prefix on hex swizzles.
|
2009-10-18 03:53:04 +04:00
|
|
|
if (Comp[0] == 's' || Comp[0] == 'S')
|
|
|
|
Comp = Comp.substr(1);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-10-18 03:53:04 +04:00
|
|
|
for (unsigned i = 0, e = Comp.size(); i != e; ++i)
|
2011-07-23 14:55:15 +04:00
|
|
|
if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos)
|
2007-07-30 07:29:09 +04:00
|
|
|
return true;
|
2009-10-18 03:53:04 +04:00
|
|
|
|
2007-07-30 07:29:09 +04:00
|
|
|
return false;
|
|
|
|
}
|
2007-08-03 03:36:59 +04:00
|
|
|
|
2008-05-09 10:41:27 +04:00
|
|
|
/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
|
2008-05-14 01:03:02 +04:00
|
|
|
void ExtVectorElementExpr::getEncodedElementAccess(
|
2011-07-23 14:55:15 +04:00
|
|
|
SmallVectorImpl<unsigned> &Elts) const {
|
|
|
|
StringRef Comp = Accessor->getName();
|
2009-10-18 06:09:31 +04:00
|
|
|
if (Comp[0] == 's' || Comp[0] == 'S')
|
|
|
|
Comp = Comp.substr(1);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-10-18 06:09:31 +04:00
|
|
|
bool isHi = Comp == "hi";
|
|
|
|
bool isLo = Comp == "lo";
|
|
|
|
bool isEven = Comp == "even";
|
|
|
|
bool isOdd = Comp == "odd";
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-05-09 10:41:27 +04:00
|
|
|
for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
|
|
|
|
uint64_t Index;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-05-09 10:41:27 +04:00
|
|
|
if (isHi)
|
|
|
|
Index = e + i;
|
|
|
|
else if (isLo)
|
|
|
|
Index = i;
|
|
|
|
else if (isEven)
|
|
|
|
Index = 2 * i;
|
|
|
|
else if (isOdd)
|
|
|
|
Index = 2 * i + 1;
|
|
|
|
else
|
2009-10-18 06:09:31 +04:00
|
|
|
Index = ExtVectorType::getAccessorIdx(Comp[i]);
|
2007-08-03 03:36:59 +04:00
|
|
|
|
2008-05-14 01:03:02 +04:00
|
|
|
Elts.push_back(Index);
|
2007-08-03 03:36:59 +04:00
|
|
|
}
|
2008-05-09 10:41:27 +04:00
|
|
|
}
|
|
|
|
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
ObjCMessageExpr::ObjCMessageExpr(QualType T,
|
2010-11-18 09:31:45 +03:00
|
|
|
ExprValueKind VK,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
SourceLocation LBracLoc,
|
|
|
|
SourceLocation SuperLoc,
|
|
|
|
bool IsInstanceSuper,
|
|
|
|
QualType SuperType,
|
2010-05-05 19:23:54 +04:00
|
|
|
Selector Sel,
|
2011-10-03 10:36:51 +04:00
|
|
|
ArrayRef<SourceLocation> SelLocs,
|
|
|
|
SelectorLocationsKind SelLocsK,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
ObjCMethodDecl *Method,
|
2011-10-03 10:36:45 +04:00
|
|
|
ArrayRef<Expr *> Args,
|
2012-01-12 06:34:39 +04:00
|
|
|
SourceLocation RBracLoc,
|
|
|
|
bool isImplicit)
|
2010-11-18 09:31:45 +03:00
|
|
|
: Expr(ObjCMessageExprClass, T, VK, OK_Ordinary,
|
2010-12-15 04:34:56 +03:00
|
|
|
/*TypeDependent=*/false, /*ValueDependent=*/false,
|
2011-07-01 05:22:09 +04:00
|
|
|
/*InstantiationDependent=*/false,
|
2010-12-15 04:34:56 +03:00
|
|
|
/*ContainsUnexpandedParameterPack=*/false),
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
|
|
|
|
: Sel.getAsOpaquePtr())),
|
2011-10-03 10:36:55 +04:00
|
|
|
Kind(IsInstanceSuper? SuperInstance : SuperClass),
|
2012-01-12 06:34:39 +04:00
|
|
|
HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
|
|
|
|
SuperLoc(SuperLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc)
|
2010-03-08 19:40:19 +03:00
|
|
|
{
|
2011-10-03 10:36:51 +04:00
|
|
|
initArgsAndSelLocs(Args, SelLocs, SelLocsK);
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
setReceiverPointer(SuperType.getAsOpaquePtr());
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCMessageExpr::ObjCMessageExpr(QualType T,
|
2010-11-18 09:31:45 +03:00
|
|
|
ExprValueKind VK,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
SourceLocation LBracLoc,
|
|
|
|
TypeSourceInfo *Receiver,
|
2010-12-10 23:08:27 +03:00
|
|
|
Selector Sel,
|
2011-10-03 10:36:51 +04:00
|
|
|
ArrayRef<SourceLocation> SelLocs,
|
|
|
|
SelectorLocationsKind SelLocsK,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
ObjCMethodDecl *Method,
|
2011-10-03 10:36:45 +04:00
|
|
|
ArrayRef<Expr *> Args,
|
2012-01-12 06:34:39 +04:00
|
|
|
SourceLocation RBracLoc,
|
|
|
|
bool isImplicit)
|
2010-11-18 09:31:45 +03:00
|
|
|
: Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, T->isDependentType(),
|
2011-07-01 05:22:09 +04:00
|
|
|
T->isDependentType(), T->isInstantiationDependentType(),
|
|
|
|
T->containsUnexpandedParameterPack()),
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
|
|
|
|
: Sel.getAsOpaquePtr())),
|
2011-10-03 10:36:55 +04:00
|
|
|
Kind(Class),
|
2012-01-12 06:34:39 +04:00
|
|
|
HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
|
2011-10-03 10:36:51 +04:00
|
|
|
LBracLoc(LBracLoc), RBracLoc(RBracLoc)
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
{
|
2011-10-03 10:36:51 +04:00
|
|
|
initArgsAndSelLocs(Args, SelLocs, SelLocsK);
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
setReceiverPointer(Receiver);
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCMessageExpr::ObjCMessageExpr(QualType T,
|
2010-11-18 09:31:45 +03:00
|
|
|
ExprValueKind VK,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
SourceLocation LBracLoc,
|
|
|
|
Expr *Receiver,
|
2010-05-05 19:23:54 +04:00
|
|
|
Selector Sel,
|
2011-10-03 10:36:51 +04:00
|
|
|
ArrayRef<SourceLocation> SelLocs,
|
|
|
|
SelectorLocationsKind SelLocsK,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
ObjCMethodDecl *Method,
|
2011-10-03 10:36:45 +04:00
|
|
|
ArrayRef<Expr *> Args,
|
2012-01-12 06:34:39 +04:00
|
|
|
SourceLocation RBracLoc,
|
|
|
|
bool isImplicit)
|
2010-11-18 09:31:45 +03:00
|
|
|
: Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, Receiver->isTypeDependent(),
|
2010-12-15 04:34:56 +03:00
|
|
|
Receiver->isTypeDependent(),
|
2011-07-01 05:22:09 +04:00
|
|
|
Receiver->isInstantiationDependent(),
|
2010-12-15 04:34:56 +03:00
|
|
|
Receiver->containsUnexpandedParameterPack()),
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
|
|
|
|
: Sel.getAsOpaquePtr())),
|
2011-10-03 10:36:55 +04:00
|
|
|
Kind(Instance),
|
2012-01-12 06:34:39 +04:00
|
|
|
HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
|
2011-10-03 10:36:51 +04:00
|
|
|
LBracLoc(LBracLoc), RBracLoc(RBracLoc)
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
{
|
2011-10-03 10:36:51 +04:00
|
|
|
initArgsAndSelLocs(Args, SelLocs, SelLocsK);
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
setReceiverPointer(Receiver);
|
2011-10-03 10:36:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void ObjCMessageExpr::initArgsAndSelLocs(ArrayRef<Expr *> Args,
|
|
|
|
ArrayRef<SourceLocation> SelLocs,
|
|
|
|
SelectorLocationsKind SelLocsK) {
|
|
|
|
setNumArgs(Args.size());
|
2011-01-03 22:04:46 +03:00
|
|
|
Expr **MyArgs = getArgs();
|
2011-10-03 10:36:45 +04:00
|
|
|
for (unsigned I = 0; I != Args.size(); ++I) {
|
2010-12-15 04:34:56 +03:00
|
|
|
if (Args[I]->isTypeDependent())
|
|
|
|
ExprBits.TypeDependent = true;
|
|
|
|
if (Args[I]->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
if (Args[I]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 04:34:56 +03:00
|
|
|
if (Args[I]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
|
|
|
MyArgs[I] = Args[I];
|
|
|
|
}
|
2011-10-03 10:36:51 +04:00
|
|
|
|
2012-02-20 04:20:48 +04:00
|
|
|
SelLocsKind = SelLocsK;
|
2012-01-13 02:34:19 +04:00
|
|
|
if (!isImplicit()) {
|
|
|
|
if (SelLocsK == SelLoc_NonStandard)
|
|
|
|
std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
|
|
|
|
}
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
|
2010-11-18 09:31:45 +03:00
|
|
|
ExprValueKind VK,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
SourceLocation LBracLoc,
|
|
|
|
SourceLocation SuperLoc,
|
|
|
|
bool IsInstanceSuper,
|
|
|
|
QualType SuperType,
|
2010-05-05 19:23:54 +04:00
|
|
|
Selector Sel,
|
2011-10-03 10:36:17 +04:00
|
|
|
ArrayRef<SourceLocation> SelLocs,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
ObjCMethodDecl *Method,
|
2011-10-03 10:36:45 +04:00
|
|
|
ArrayRef<Expr *> Args,
|
2012-01-12 06:34:39 +04:00
|
|
|
SourceLocation RBracLoc,
|
|
|
|
bool isImplicit) {
|
|
|
|
assert((!SelLocs.empty() || isImplicit) &&
|
|
|
|
"No selector locs for non-implicit message");
|
|
|
|
ObjCMessageExpr *Mem;
|
|
|
|
SelectorLocationsKind SelLocsK = SelectorLocationsKind();
|
|
|
|
if (isImplicit)
|
|
|
|
Mem = alloc(Context, Args.size(), 0);
|
|
|
|
else
|
|
|
|
Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
|
2010-11-18 09:31:45 +03:00
|
|
|
return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper,
|
2011-10-03 10:36:51 +04:00
|
|
|
SuperType, Sel, SelLocs, SelLocsK,
|
2012-01-12 06:34:39 +04:00
|
|
|
Method, Args, RBracLoc, isImplicit);
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
|
2010-11-18 09:31:45 +03:00
|
|
|
ExprValueKind VK,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
SourceLocation LBracLoc,
|
|
|
|
TypeSourceInfo *Receiver,
|
2010-05-05 19:23:54 +04:00
|
|
|
Selector Sel,
|
2011-10-03 10:36:17 +04:00
|
|
|
ArrayRef<SourceLocation> SelLocs,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
ObjCMethodDecl *Method,
|
2011-10-03 10:36:45 +04:00
|
|
|
ArrayRef<Expr *> Args,
|
2012-01-12 06:34:39 +04:00
|
|
|
SourceLocation RBracLoc,
|
|
|
|
bool isImplicit) {
|
|
|
|
assert((!SelLocs.empty() || isImplicit) &&
|
|
|
|
"No selector locs for non-implicit message");
|
|
|
|
ObjCMessageExpr *Mem;
|
|
|
|
SelectorLocationsKind SelLocsK = SelectorLocationsKind();
|
|
|
|
if (isImplicit)
|
|
|
|
Mem = alloc(Context, Args.size(), 0);
|
|
|
|
else
|
|
|
|
Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
|
2011-10-03 10:36:17 +04:00
|
|
|
return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
|
2012-01-12 06:34:39 +04:00
|
|
|
SelLocs, SelLocsK, Method, Args, RBracLoc,
|
|
|
|
isImplicit);
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
|
2010-11-18 09:31:45 +03:00
|
|
|
ExprValueKind VK,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
SourceLocation LBracLoc,
|
|
|
|
Expr *Receiver,
|
2010-12-10 23:08:27 +03:00
|
|
|
Selector Sel,
|
2011-10-03 10:36:17 +04:00
|
|
|
ArrayRef<SourceLocation> SelLocs,
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
ObjCMethodDecl *Method,
|
2011-10-03 10:36:45 +04:00
|
|
|
ArrayRef<Expr *> Args,
|
2012-01-12 06:34:39 +04:00
|
|
|
SourceLocation RBracLoc,
|
|
|
|
bool isImplicit) {
|
|
|
|
assert((!SelLocs.empty() || isImplicit) &&
|
|
|
|
"No selector locs for non-implicit message");
|
|
|
|
ObjCMessageExpr *Mem;
|
|
|
|
SelectorLocationsKind SelLocsK = SelectorLocationsKind();
|
|
|
|
if (isImplicit)
|
|
|
|
Mem = alloc(Context, Args.size(), 0);
|
|
|
|
else
|
|
|
|
Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
|
2011-10-03 10:36:17 +04:00
|
|
|
return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
|
2012-01-12 06:34:39 +04:00
|
|
|
SelLocs, SelLocsK, Method, Args, RBracLoc,
|
|
|
|
isImplicit);
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
}
|
|
|
|
|
2010-05-05 19:23:54 +04:00
|
|
|
ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context,
|
2011-10-03 10:36:51 +04:00
|
|
|
unsigned NumArgs,
|
|
|
|
unsigned NumStoredSelLocs) {
|
|
|
|
ObjCMessageExpr *Mem = alloc(Context, NumArgs, NumStoredSelLocs);
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs);
|
|
|
|
}
|
2010-12-10 23:08:30 +03:00
|
|
|
|
2011-10-03 10:36:51 +04:00
|
|
|
ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
|
|
|
|
ArrayRef<Expr *> Args,
|
|
|
|
SourceLocation RBraceLoc,
|
|
|
|
ArrayRef<SourceLocation> SelLocs,
|
|
|
|
Selector Sel,
|
|
|
|
SelectorLocationsKind &SelLocsK) {
|
|
|
|
SelLocsK = hasStandardSelectorLocs(Sel, SelLocs, Args, RBraceLoc);
|
|
|
|
unsigned NumStoredSelLocs = (SelLocsK == SelLoc_NonStandard) ? SelLocs.size()
|
|
|
|
: 0;
|
|
|
|
return alloc(C, Args.size(), NumStoredSelLocs);
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
|
|
|
|
unsigned NumArgs,
|
|
|
|
unsigned NumStoredSelLocs) {
|
|
|
|
unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
|
|
|
|
NumArgs * sizeof(Expr *) + NumStoredSelLocs * sizeof(SourceLocation);
|
|
|
|
return (ObjCMessageExpr *)C.Allocate(Size,
|
|
|
|
llvm::AlignOf<ObjCMessageExpr>::Alignment);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObjCMessageExpr::getSelectorLocs(
|
|
|
|
SmallVectorImpl<SourceLocation> &SelLocs) const {
|
|
|
|
for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i)
|
|
|
|
SelLocs.push_back(getSelectorLoc(i));
|
|
|
|
}
|
|
|
|
|
2010-12-10 23:08:30 +03:00
|
|
|
SourceRange ObjCMessageExpr::getReceiverRange() const {
|
|
|
|
switch (getReceiverKind()) {
|
|
|
|
case Instance:
|
|
|
|
return getInstanceReceiver()->getSourceRange();
|
|
|
|
|
|
|
|
case Class:
|
|
|
|
return getClassReceiverTypeInfo()->getTypeLoc().getSourceRange();
|
|
|
|
|
|
|
|
case SuperInstance:
|
|
|
|
case SuperClass:
|
|
|
|
return getSuperLoc();
|
|
|
|
}
|
|
|
|
|
2012-01-21 01:50:17 +04:00
|
|
|
llvm_unreachable("Invalid ReceiverKind!");
|
2010-12-10 23:08:30 +03:00
|
|
|
}
|
|
|
|
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
Selector ObjCMessageExpr::getSelector() const {
|
|
|
|
if (HasMethod)
|
|
|
|
return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod)
|
|
|
|
->getSelector();
|
2010-05-05 19:23:54 +04:00
|
|
|
return Selector(SelectorOrMethod);
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
}
|
|
|
|
|
2012-11-01 06:01:34 +04:00
|
|
|
QualType ObjCMessageExpr::getReceiverType() const {
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
switch (getReceiverKind()) {
|
|
|
|
case Instance:
|
2012-11-01 06:01:34 +04:00
|
|
|
return getInstanceReceiver()->getType();
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
case Class:
|
2012-11-01 06:01:34 +04:00
|
|
|
return getClassReceiver();
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
case SuperInstance:
|
|
|
|
case SuperClass:
|
2012-11-01 06:01:34 +04:00
|
|
|
return getSuperType();
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
}
|
2009-04-26 04:44:05 +04:00
|
|
|
|
2012-11-01 06:01:34 +04:00
|
|
|
llvm_unreachable("unexpected receiver kind");
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const {
|
|
|
|
QualType T = getReceiverType();
|
|
|
|
|
|
|
|
if (const ObjCObjectPointerType *Ptr = T->getAs<ObjCObjectPointerType>())
|
|
|
|
return Ptr->getInterfaceDecl();
|
|
|
|
|
|
|
|
if (const ObjCObjectType *Ty = T->getAs<ObjCObjectType>())
|
|
|
|
return Ty->getInterface();
|
|
|
|
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
return 0;
|
2010-02-12 01:41:21 +03:00
|
|
|
}
|
2009-04-26 04:44:05 +04:00
|
|
|
|
2011-07-23 14:55:15 +04:00
|
|
|
StringRef ObjCBridgedCastExpr::getBridgeKindName() const {
|
2011-06-16 03:02:42 +04:00
|
|
|
switch (getBridgeKind()) {
|
|
|
|
case OBC_Bridge:
|
|
|
|
return "__bridge";
|
|
|
|
case OBC_BridgeTransfer:
|
|
|
|
return "__bridge_transfer";
|
|
|
|
case OBC_BridgeRetained:
|
|
|
|
return "__bridge_retained";
|
|
|
|
}
|
2012-01-21 01:50:17 +04:00
|
|
|
|
|
|
|
llvm_unreachable("Invalid BridgeKind!");
|
2011-06-16 03:02:42 +04:00
|
|
|
}
|
|
|
|
|
2011-01-12 12:06:06 +03:00
|
|
|
bool ChooseExpr::isConditionTrue(const ASTContext &C) const {
|
2011-10-10 22:28:20 +04:00
|
|
|
return getCond()->EvaluateKnownConstInt(C) != 0;
|
2007-10-25 04:29:32 +04:00
|
|
|
}
|
|
|
|
|
2012-08-24 15:54:20 +04:00
|
|
|
ShuffleVectorExpr::ShuffleVectorExpr(ASTContext &C, ArrayRef<Expr*> args,
|
2010-12-15 04:34:56 +03:00
|
|
|
QualType Type, SourceLocation BLoc,
|
|
|
|
SourceLocation RP)
|
|
|
|
: Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary,
|
|
|
|
Type->isDependentType(), Type->isDependentType(),
|
2011-07-01 05:22:09 +04:00
|
|
|
Type->isInstantiationDependentType(),
|
2010-12-15 04:34:56 +03:00
|
|
|
Type->containsUnexpandedParameterPack()),
|
2012-08-24 15:54:20 +04:00
|
|
|
BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(args.size())
|
2010-12-15 04:34:56 +03:00
|
|
|
{
|
2012-08-24 15:54:20 +04:00
|
|
|
SubExprs = new (C) Stmt*[args.size()];
|
|
|
|
for (unsigned i = 0; i != args.size(); i++) {
|
2010-12-15 04:34:56 +03:00
|
|
|
if (args[i]->isTypeDependent())
|
|
|
|
ExprBits.TypeDependent = true;
|
|
|
|
if (args[i]->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
if (args[i]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 04:34:56 +03:00
|
|
|
if (args[i]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
|
|
|
SubExprs[i] = args[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-12 06:28:50 +04:00
|
|
|
void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
|
|
|
|
unsigned NumExprs) {
|
|
|
|
if (SubExprs) C.Deallocate(SubExprs);
|
|
|
|
|
|
|
|
SubExprs = new (C) Stmt* [NumExprs];
|
2009-04-16 04:01:45 +04:00
|
|
|
this->NumExprs = NumExprs;
|
|
|
|
memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
2009-08-12 06:28:50 +04:00
|
|
|
|
2011-04-15 04:35:48 +04:00
|
|
|
GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
|
|
|
|
SourceLocation GenericLoc, Expr *ControllingExpr,
|
2012-08-24 15:54:20 +04:00
|
|
|
ArrayRef<TypeSourceInfo*> AssocTypes,
|
|
|
|
ArrayRef<Expr*> AssocExprs,
|
|
|
|
SourceLocation DefaultLoc,
|
2011-04-15 04:35:48 +04:00
|
|
|
SourceLocation RParenLoc,
|
|
|
|
bool ContainsUnexpandedParameterPack,
|
|
|
|
unsigned ResultIndex)
|
|
|
|
: Expr(GenericSelectionExprClass,
|
|
|
|
AssocExprs[ResultIndex]->getType(),
|
|
|
|
AssocExprs[ResultIndex]->getValueKind(),
|
|
|
|
AssocExprs[ResultIndex]->getObjectKind(),
|
|
|
|
AssocExprs[ResultIndex]->isTypeDependent(),
|
|
|
|
AssocExprs[ResultIndex]->isValueDependent(),
|
2011-07-01 05:22:09 +04:00
|
|
|
AssocExprs[ResultIndex]->isInstantiationDependent(),
|
2011-04-15 04:35:48 +04:00
|
|
|
ContainsUnexpandedParameterPack),
|
2012-08-24 15:54:20 +04:00
|
|
|
AssocTypes(new (Context) TypeSourceInfo*[AssocTypes.size()]),
|
|
|
|
SubExprs(new (Context) Stmt*[END_EXPR+AssocExprs.size()]),
|
|
|
|
NumAssocs(AssocExprs.size()), ResultIndex(ResultIndex),
|
|
|
|
GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) {
|
2011-04-15 04:35:48 +04:00
|
|
|
SubExprs[CONTROLLING] = ControllingExpr;
|
2012-08-24 15:54:20 +04:00
|
|
|
assert(AssocTypes.size() == AssocExprs.size());
|
|
|
|
std::copy(AssocTypes.begin(), AssocTypes.end(), this->AssocTypes);
|
|
|
|
std::copy(AssocExprs.begin(), AssocExprs.end(), SubExprs+END_EXPR);
|
2011-04-15 04:35:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
|
|
|
|
SourceLocation GenericLoc, Expr *ControllingExpr,
|
2012-08-24 15:54:20 +04:00
|
|
|
ArrayRef<TypeSourceInfo*> AssocTypes,
|
|
|
|
ArrayRef<Expr*> AssocExprs,
|
|
|
|
SourceLocation DefaultLoc,
|
2011-04-15 04:35:48 +04:00
|
|
|
SourceLocation RParenLoc,
|
|
|
|
bool ContainsUnexpandedParameterPack)
|
|
|
|
: Expr(GenericSelectionExprClass,
|
|
|
|
Context.DependentTy,
|
|
|
|
VK_RValue,
|
|
|
|
OK_Ordinary,
|
2011-07-01 05:22:09 +04:00
|
|
|
/*isTypeDependent=*/true,
|
|
|
|
/*isValueDependent=*/true,
|
|
|
|
/*isInstantiationDependent=*/true,
|
2011-04-15 04:35:48 +04:00
|
|
|
ContainsUnexpandedParameterPack),
|
2012-08-24 15:54:20 +04:00
|
|
|
AssocTypes(new (Context) TypeSourceInfo*[AssocTypes.size()]),
|
|
|
|
SubExprs(new (Context) Stmt*[END_EXPR+AssocExprs.size()]),
|
|
|
|
NumAssocs(AssocExprs.size()), ResultIndex(-1U), GenericLoc(GenericLoc),
|
|
|
|
DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) {
|
2011-04-15 04:35:48 +04:00
|
|
|
SubExprs[CONTROLLING] = ControllingExpr;
|
2012-08-24 15:54:20 +04:00
|
|
|
assert(AssocTypes.size() == AssocExprs.size());
|
|
|
|
std::copy(AssocTypes.begin(), AssocTypes.end(), this->AssocTypes);
|
|
|
|
std::copy(AssocExprs.begin(), AssocExprs.end(), SubExprs+END_EXPR);
|
2011-04-15 04:35:48 +04:00
|
|
|
}
|
|
|
|
|
2009-01-22 03:58:24 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DesignatedInitExpr
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-06-16 10:47:06 +04:00
|
|
|
IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() const {
|
2009-01-22 03:58:24 +03:00
|
|
|
assert(Kind == FieldDesignator && "Only valid on a field designator");
|
|
|
|
if (Field.NameOrField & 0x01)
|
|
|
|
return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
|
|
|
|
else
|
|
|
|
return getField()->getIdentifier();
|
|
|
|
}
|
|
|
|
|
2010-05-05 19:23:54 +04:00
|
|
|
DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
|
2010-01-07 02:17:19 +03:00
|
|
|
unsigned NumDesignators,
|
2009-04-15 10:41:24 +04:00
|
|
|
const Designator *Designators,
|
2009-09-09 19:08:12 +04:00
|
|
|
SourceLocation EqualOrColonLoc,
|
2009-04-15 10:41:24 +04:00
|
|
|
bool GNUSyntax,
|
2012-08-24 15:54:20 +04:00
|
|
|
ArrayRef<Expr*> IndexExprs,
|
2009-05-22 03:17:49 +04:00
|
|
|
Expr *Init)
|
2009-09-09 19:08:12 +04:00
|
|
|
: Expr(DesignatedInitExprClass, Ty,
|
2010-11-18 09:31:45 +03:00
|
|
|
Init->getValueKind(), Init->getObjectKind(),
|
2010-12-15 04:34:56 +03:00
|
|
|
Init->isTypeDependent(), Init->isValueDependent(),
|
2011-07-01 05:22:09 +04:00
|
|
|
Init->isInstantiationDependent(),
|
2010-12-15 04:34:56 +03:00
|
|
|
Init->containsUnexpandedParameterPack()),
|
2009-09-09 19:08:12 +04:00
|
|
|
EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
|
2012-08-24 15:54:20 +04:00
|
|
|
NumDesignators(NumDesignators), NumSubExprs(IndexExprs.size() + 1) {
|
2010-01-07 02:17:19 +03:00
|
|
|
this->Designators = new (C) Designator[NumDesignators];
|
2009-05-22 03:17:49 +04:00
|
|
|
|
|
|
|
// Record the initializer itself.
|
2011-02-13 07:07:26 +03:00
|
|
|
child_range Child = children();
|
2009-05-22 03:17:49 +04:00
|
|
|
*Child++ = Init;
|
|
|
|
|
|
|
|
// Copy the designators and their subexpressions, computing
|
|
|
|
// value-dependence along the way.
|
|
|
|
unsigned IndexIdx = 0;
|
|
|
|
for (unsigned I = 0; I != NumDesignators; ++I) {
|
2009-04-15 10:41:24 +04:00
|
|
|
this->Designators[I] = Designators[I];
|
2009-05-22 03:17:49 +04:00
|
|
|
|
|
|
|
if (this->Designators[I].isArrayDesignator()) {
|
|
|
|
// Compute type- and value-dependence.
|
|
|
|
Expr *Index = IndexExprs[IndexIdx];
|
2010-12-15 04:34:56 +03:00
|
|
|
if (Index->isTypeDependent() || Index->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
if (Index->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 04:34:56 +03:00
|
|
|
// Propagate unexpanded parameter packs.
|
|
|
|
if (Index->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
2009-05-22 03:17:49 +04:00
|
|
|
|
|
|
|
// Copy the index expressions into permanent storage.
|
|
|
|
*Child++ = IndexExprs[IndexIdx++];
|
|
|
|
} else if (this->Designators[I].isArrayRangeDesignator()) {
|
|
|
|
// Compute type- and value-dependence.
|
|
|
|
Expr *Start = IndexExprs[IndexIdx];
|
|
|
|
Expr *End = IndexExprs[IndexIdx + 1];
|
2010-12-15 04:34:56 +03:00
|
|
|
if (Start->isTypeDependent() || Start->isValueDependent() ||
|
2011-07-01 05:22:09 +04:00
|
|
|
End->isTypeDependent() || End->isValueDependent()) {
|
2010-12-15 04:34:56 +03:00
|
|
|
ExprBits.ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
ExprBits.InstantiationDependent = true;
|
|
|
|
} else if (Start->isInstantiationDependent() ||
|
|
|
|
End->isInstantiationDependent()) {
|
|
|
|
ExprBits.InstantiationDependent = true;
|
|
|
|
}
|
|
|
|
|
2010-12-15 04:34:56 +03:00
|
|
|
// Propagate unexpanded parameter packs.
|
|
|
|
if (Start->containsUnexpandedParameterPack() ||
|
|
|
|
End->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
2009-05-22 03:17:49 +04:00
|
|
|
|
|
|
|
// Copy the start/end expressions into permanent storage.
|
|
|
|
*Child++ = IndexExprs[IndexIdx++];
|
|
|
|
*Child++ = IndexExprs[IndexIdx++];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-24 15:54:20 +04:00
|
|
|
assert(IndexIdx == IndexExprs.size() && "Wrong number of index expressions");
|
2009-04-15 10:41:24 +04:00
|
|
|
}
|
|
|
|
|
2009-01-22 03:58:24 +03:00
|
|
|
DesignatedInitExpr *
|
2009-09-09 19:08:12 +04:00
|
|
|
DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
|
2009-01-22 03:58:24 +03:00
|
|
|
unsigned NumDesignators,
|
2012-08-24 15:54:20 +04:00
|
|
|
ArrayRef<Expr*> IndexExprs,
|
2009-01-22 03:58:24 +03:00
|
|
|
SourceLocation ColonOrEqualLoc,
|
|
|
|
bool UsesColonSyntax, Expr *Init) {
|
2009-01-28 02:20:32 +03:00
|
|
|
void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
|
2012-08-24 15:54:20 +04:00
|
|
|
sizeof(Stmt *) * (IndexExprs.size() + 1), 8);
|
2010-01-07 02:17:19 +03:00
|
|
|
return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
|
2009-05-22 03:17:49 +04:00
|
|
|
ColonOrEqualLoc, UsesColonSyntax,
|
2012-08-24 15:54:20 +04:00
|
|
|
IndexExprs, Init);
|
2009-01-22 03:58:24 +03:00
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
|
2009-04-16 04:55:48 +04:00
|
|
|
unsigned NumIndexExprs) {
|
|
|
|
void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
|
|
|
|
sizeof(Stmt *) * (NumIndexExprs + 1), 8);
|
|
|
|
return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
|
|
|
|
}
|
|
|
|
|
2010-01-07 02:17:19 +03:00
|
|
|
void DesignatedInitExpr::setDesignators(ASTContext &C,
|
|
|
|
const Designator *Desigs,
|
2009-04-16 04:55:48 +04:00
|
|
|
unsigned NumDesigs) {
|
2010-01-07 02:17:19 +03:00
|
|
|
Designators = new (C) Designator[NumDesigs];
|
2009-04-16 04:55:48 +04:00
|
|
|
NumDesignators = NumDesigs;
|
|
|
|
for (unsigned I = 0; I != NumDesigs; ++I)
|
|
|
|
Designators[I] = Desigs[I];
|
|
|
|
}
|
|
|
|
|
2011-03-16 18:08:46 +03:00
|
|
|
SourceRange DesignatedInitExpr::getDesignatorsSourceRange() const {
|
|
|
|
DesignatedInitExpr *DIE = const_cast<DesignatedInitExpr*>(this);
|
|
|
|
if (size() == 1)
|
|
|
|
return DIE->getDesignator(0)->getSourceRange();
|
2012-12-25 18:51:39 +04:00
|
|
|
return SourceRange(DIE->getDesignator(0)->getLocStart(),
|
|
|
|
DIE->getDesignator(size()-1)->getLocEnd());
|
2011-03-16 18:08:46 +03:00
|
|
|
}
|
|
|
|
|
2012-12-25 18:51:39 +04:00
|
|
|
SourceLocation DesignatedInitExpr::getLocStart() const {
|
2009-01-22 03:58:24 +03:00
|
|
|
SourceLocation StartLoc;
|
2009-02-17 01:33:34 +03:00
|
|
|
Designator &First =
|
|
|
|
*const_cast<DesignatedInitExpr*>(this)->designators_begin();
|
2009-01-22 03:58:24 +03:00
|
|
|
if (First.isFieldDesignator()) {
|
2009-03-28 03:41:23 +03:00
|
|
|
if (GNUSyntax)
|
2009-01-22 03:58:24 +03:00
|
|
|
StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
|
|
|
|
else
|
|
|
|
StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
|
|
|
|
} else
|
2009-02-17 01:33:34 +03:00
|
|
|
StartLoc =
|
|
|
|
SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
|
2012-12-25 18:51:39 +04:00
|
|
|
return StartLoc;
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceLocation DesignatedInitExpr::getLocEnd() const {
|
|
|
|
return getInit()->getLocEnd();
|
2009-01-22 03:58:24 +03:00
|
|
|
}
|
|
|
|
|
2013-01-26 19:15:52 +04:00
|
|
|
Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) const {
|
2009-01-22 03:58:24 +03:00
|
|
|
assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
|
2013-01-26 19:15:52 +04:00
|
|
|
char *Ptr = static_cast<char *>(
|
|
|
|
const_cast<void *>(static_cast<const void *>(this)));
|
2009-01-22 03:58:24 +03:00
|
|
|
Ptr += sizeof(DesignatedInitExpr);
|
|
|
|
Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
|
|
|
|
return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
|
|
|
|
}
|
|
|
|
|
2013-01-26 19:15:52 +04:00
|
|
|
Expr *DesignatedInitExpr::getArrayRangeStart(const Designator &D) const {
|
2009-09-09 19:08:12 +04:00
|
|
|
assert(D.Kind == Designator::ArrayRangeDesignator &&
|
2009-01-22 03:58:24 +03:00
|
|
|
"Requires array range designator");
|
2013-01-26 19:15:52 +04:00
|
|
|
char *Ptr = static_cast<char *>(
|
|
|
|
const_cast<void *>(static_cast<const void *>(this)));
|
2009-01-22 03:58:24 +03:00
|
|
|
Ptr += sizeof(DesignatedInitExpr);
|
|
|
|
Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
|
|
|
|
return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
|
|
|
|
}
|
|
|
|
|
2013-01-26 19:15:52 +04:00
|
|
|
Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator &D) const {
|
2009-09-09 19:08:12 +04:00
|
|
|
assert(D.Kind == Designator::ArrayRangeDesignator &&
|
2009-01-22 03:58:24 +03:00
|
|
|
"Requires array range designator");
|
2013-01-26 19:15:52 +04:00
|
|
|
char *Ptr = static_cast<char *>(
|
|
|
|
const_cast<void *>(static_cast<const void *>(this)));
|
2009-01-22 03:58:24 +03:00
|
|
|
Ptr += sizeof(DesignatedInitExpr);
|
|
|
|
Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
|
|
|
|
return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
|
|
|
|
}
|
|
|
|
|
2009-04-15 10:41:24 +04:00
|
|
|
/// \brief Replaces the designator at index @p Idx with the series
|
|
|
|
/// of designators in [First, Last).
|
2010-01-07 02:17:19 +03:00
|
|
|
void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
|
2009-09-09 19:08:12 +04:00
|
|
|
const Designator *First,
|
2009-04-15 10:41:24 +04:00
|
|
|
const Designator *Last) {
|
|
|
|
unsigned NumNewDesignators = Last - First;
|
|
|
|
if (NumNewDesignators == 0) {
|
|
|
|
std::copy_backward(Designators + Idx + 1,
|
|
|
|
Designators + NumDesignators,
|
|
|
|
Designators + Idx);
|
|
|
|
--NumNewDesignators;
|
|
|
|
return;
|
|
|
|
} else if (NumNewDesignators == 1) {
|
|
|
|
Designators[Idx] = *First;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
Designator *NewDesignators
|
2010-01-07 02:17:19 +03:00
|
|
|
= new (C) Designator[NumDesignators - 1 + NumNewDesignators];
|
2009-04-15 10:41:24 +04:00
|
|
|
std::copy(Designators, Designators + Idx, NewDesignators);
|
|
|
|
std::copy(First, Last, NewDesignators + Idx);
|
|
|
|
std::copy(Designators + Idx + 1, Designators + NumDesignators,
|
|
|
|
NewDesignators + Idx + NumNewDesignators);
|
|
|
|
Designators = NewDesignators;
|
|
|
|
NumDesignators = NumDesignators - 1 + NumNewDesignators;
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
|
2012-08-24 15:54:20 +04:00
|
|
|
ArrayRef<Expr*> exprs,
|
Represent C++ direct initializers as ParenListExprs before semantic analysis
instead of having a special-purpose function.
- ActOnCXXDirectInitializer, which was mostly duplication of
AddInitializerToDecl (leading e.g. to PR10620, which Eli fixed a few days
ago), is dropped completely.
- MultiInitializer, which was an ugly hack I added, is dropped again.
- We now have the infrastructure in place to distinguish between
int x = {1};
int x({1});
int x{1};
-- VarDecl now has getInitStyle(), which indicates which of the above was used.
-- CXXConstructExpr now has a flag to indicate that it represents list-
initialization, although this is not yet used.
- InstantiateInitializer was renamed to SubstInitializer and simplified.
- ActOnParenOrParenListExpr has been replaced by ActOnParenListExpr, which
always produces a ParenListExpr. Placed that so far failed to convert that
back to a ParenExpr containing comma operators have been fixed. I'm pretty
sure I could have made a crashing test case before this.
The end result is a (I hope) considerably cleaner design of initializers.
More importantly, the fact that I can now distinguish between the various
initialization kinds means that I can get the tricky generalized initializer
test cases Johannes Schaub supplied to work. (This is not yet done.)
This commit passed self-host, with the resulting compiler passing the tests. I
hope it doesn't break more complicated code. It's a pretty big change, but one
that I feel is necessary.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150318 91177308-0d34-0410-b5e6-96231b3b80d8
2012-02-12 03:51:47 +04:00
|
|
|
SourceLocation rparenloc)
|
|
|
|
: Expr(ParenListExprClass, QualType(), VK_RValue, OK_Ordinary,
|
2011-07-01 05:22:09 +04:00
|
|
|
false, false, false, false),
|
2012-08-24 15:54:20 +04:00
|
|
|
NumExprs(exprs.size()), LParenLoc(lparenloc), RParenLoc(rparenloc) {
|
|
|
|
Exprs = new (C) Stmt*[exprs.size()];
|
|
|
|
for (unsigned i = 0; i != exprs.size(); ++i) {
|
2010-12-15 04:34:56 +03:00
|
|
|
if (exprs[i]->isTypeDependent())
|
|
|
|
ExprBits.TypeDependent = true;
|
|
|
|
if (exprs[i]->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
2011-07-01 05:22:09 +04:00
|
|
|
if (exprs[i]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 04:34:56 +03:00
|
|
|
if (exprs[i]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
2009-08-11 03:49:36 +04:00
|
|
|
Exprs[i] = exprs[i];
|
2010-12-15 04:34:56 +03:00
|
|
|
}
|
2009-08-11 03:49:36 +04:00
|
|
|
}
|
|
|
|
|
2011-02-16 11:02:54 +03:00
|
|
|
const OpaqueValueExpr *OpaqueValueExpr::findInCopyConstruct(const Expr *e) {
|
|
|
|
if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(e))
|
|
|
|
e = ewc->getSubExpr();
|
2011-06-21 21:03:29 +04:00
|
|
|
if (const MaterializeTemporaryExpr *m = dyn_cast<MaterializeTemporaryExpr>(e))
|
|
|
|
e = m->GetTemporaryExpr();
|
2011-02-16 11:02:54 +03:00
|
|
|
e = cast<CXXConstructExpr>(e)->getArg(0);
|
|
|
|
while (const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e))
|
|
|
|
e = ice->getSubExpr();
|
|
|
|
return cast<OpaqueValueExpr>(e);
|
|
|
|
}
|
|
|
|
|
2011-11-06 13:01:30 +04:00
|
|
|
PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &Context, EmptyShell sh,
|
|
|
|
unsigned numSemanticExprs) {
|
|
|
|
void *buffer = Context.Allocate(sizeof(PseudoObjectExpr) +
|
|
|
|
(1 + numSemanticExprs) * sizeof(Expr*),
|
|
|
|
llvm::alignOf<PseudoObjectExpr>());
|
|
|
|
return new(buffer) PseudoObjectExpr(sh, numSemanticExprs);
|
|
|
|
}
|
|
|
|
|
|
|
|
PseudoObjectExpr::PseudoObjectExpr(EmptyShell shell, unsigned numSemanticExprs)
|
|
|
|
: Expr(PseudoObjectExprClass, shell) {
|
|
|
|
PseudoObjectExprBits.NumSubExprs = numSemanticExprs + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &C, Expr *syntax,
|
|
|
|
ArrayRef<Expr*> semantics,
|
|
|
|
unsigned resultIndex) {
|
|
|
|
assert(syntax && "no syntactic expression!");
|
|
|
|
assert(semantics.size() && "no semantic expressions!");
|
|
|
|
|
|
|
|
QualType type;
|
|
|
|
ExprValueKind VK;
|
|
|
|
if (resultIndex == NoResult) {
|
|
|
|
type = C.VoidTy;
|
|
|
|
VK = VK_RValue;
|
|
|
|
} else {
|
|
|
|
assert(resultIndex < semantics.size());
|
|
|
|
type = semantics[resultIndex]->getType();
|
|
|
|
VK = semantics[resultIndex]->getValueKind();
|
|
|
|
assert(semantics[resultIndex]->getObjectKind() == OK_Ordinary);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *buffer = C.Allocate(sizeof(PseudoObjectExpr) +
|
|
|
|
(1 + semantics.size()) * sizeof(Expr*),
|
|
|
|
llvm::alignOf<PseudoObjectExpr>());
|
|
|
|
return new(buffer) PseudoObjectExpr(type, VK, syntax, semantics,
|
|
|
|
resultIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
PseudoObjectExpr::PseudoObjectExpr(QualType type, ExprValueKind VK,
|
|
|
|
Expr *syntax, ArrayRef<Expr*> semantics,
|
|
|
|
unsigned resultIndex)
|
|
|
|
: Expr(PseudoObjectExprClass, type, VK, OK_Ordinary,
|
|
|
|
/*filled in at end of ctor*/ false, false, false, false) {
|
|
|
|
PseudoObjectExprBits.NumSubExprs = semantics.size() + 1;
|
|
|
|
PseudoObjectExprBits.ResultIndex = resultIndex + 1;
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = semantics.size() + 1; i != e; ++i) {
|
|
|
|
Expr *E = (i == 0 ? syntax : semantics[i-1]);
|
|
|
|
getSubExprsBuffer()[i] = E;
|
|
|
|
|
|
|
|
if (E->isTypeDependent())
|
|
|
|
ExprBits.TypeDependent = true;
|
|
|
|
if (E->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
|
|
|
if (E->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
|
|
|
if (E->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
|
|
|
if (isa<OpaqueValueExpr>(E))
|
|
|
|
assert(cast<OpaqueValueExpr>(E)->getSourceExpr() != 0 &&
|
|
|
|
"opaque-value semantic expressions for pseudo-object "
|
|
|
|
"operations must have sources");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-27 21:40:21 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ExprIterator.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
|
|
|
|
Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
|
|
|
|
Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
|
|
|
|
const Expr* ConstExprIterator::operator[](size_t idx) const {
|
|
|
|
return cast<Expr>(I[idx]);
|
|
|
|
}
|
|
|
|
const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
|
|
|
|
const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
|
|
|
|
|
2007-08-24 22:13:47 +04:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Child Iterators for iterating over subexpressions/substatements
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-03-11 22:24:49 +03:00
|
|
|
// UnaryExprOrTypeTraitExpr
|
|
|
|
Stmt::child_range UnaryExprOrTypeTraitExpr::children() {
|
2008-11-11 20:56:53 +03:00
|
|
|
// If this is of a type and the type is a VLA type (and not a typedef), the
|
|
|
|
// size expression of the VLA needs to be treated as an executable expression.
|
|
|
|
// Why isn't this weirdness documented better in StmtIterator?
|
|
|
|
if (isArgumentType()) {
|
2011-01-19 09:33:43 +03:00
|
|
|
if (const VariableArrayType* T = dyn_cast<VariableArrayType>(
|
2008-11-11 20:56:53 +03:00
|
|
|
getArgumentType().getTypePtr()))
|
2011-02-09 11:16:59 +03:00
|
|
|
return child_range(child_iterator(T), child_iterator());
|
|
|
|
return child_range();
|
2008-11-11 20:56:53 +03:00
|
|
|
}
|
2011-02-09 11:16:59 +03:00
|
|
|
return child_range(&Argument.Ex, &Argument.Ex + 1);
|
2007-10-19 03:28:49 +04:00
|
|
|
}
|
2007-10-17 20:58:11 +04:00
|
|
|
|
2007-09-19 03:55:05 +04:00
|
|
|
// ObjCMessageExpr
|
2011-02-09 11:16:59 +03:00
|
|
|
Stmt::child_range ObjCMessageExpr::children() {
|
|
|
|
Stmt **begin;
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
if (getReceiverKind() == Instance)
|
2011-02-09 11:16:59 +03:00
|
|
|
begin = reinterpret_cast<Stmt **>(this + 1);
|
|
|
|
else
|
|
|
|
begin = reinterpret_cast<Stmt **>(getArgs());
|
|
|
|
return child_range(begin,
|
|
|
|
reinterpret_cast<Stmt **>(getArgs() + getNumArgs()));
|
2007-09-19 03:55:05 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 23:30:44 +04:00
|
|
|
ObjCArrayLiteral::ObjCArrayLiteral(ArrayRef<Expr *> Elements,
|
2012-03-07 00:05:56 +04:00
|
|
|
QualType T, ObjCMethodDecl *Method,
|
|
|
|
SourceRange SR)
|
|
|
|
: Expr(ObjCArrayLiteralClass, T, VK_RValue, OK_Ordinary,
|
|
|
|
false, false, false, false),
|
|
|
|
NumElements(Elements.size()), Range(SR), ArrayWithObjectsMethod(Method)
|
|
|
|
{
|
|
|
|
Expr **SaveElements = getElements();
|
|
|
|
for (unsigned I = 0, N = Elements.size(); I != N; ++I) {
|
|
|
|
if (Elements[I]->isTypeDependent() || Elements[I]->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
|
|
|
if (Elements[I]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
|
|
|
if (Elements[I]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
|
|
|
SaveElements[I] = Elements[I];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCArrayLiteral *ObjCArrayLiteral::Create(ASTContext &C,
|
2013-01-12 23:30:44 +04:00
|
|
|
ArrayRef<Expr *> Elements,
|
2012-03-07 00:05:56 +04:00
|
|
|
QualType T, ObjCMethodDecl * Method,
|
|
|
|
SourceRange SR) {
|
|
|
|
void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
|
|
|
|
+ Elements.size() * sizeof(Expr *));
|
|
|
|
return new (Mem) ObjCArrayLiteral(Elements, T, Method, SR);
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(ASTContext &C,
|
|
|
|
unsigned NumElements) {
|
|
|
|
|
|
|
|
void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
|
|
|
|
+ NumElements * sizeof(Expr *));
|
|
|
|
return new (Mem) ObjCArrayLiteral(EmptyShell(), NumElements);
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCDictionaryLiteral::ObjCDictionaryLiteral(
|
|
|
|
ArrayRef<ObjCDictionaryElement> VK,
|
|
|
|
bool HasPackExpansions,
|
|
|
|
QualType T, ObjCMethodDecl *method,
|
|
|
|
SourceRange SR)
|
|
|
|
: Expr(ObjCDictionaryLiteralClass, T, VK_RValue, OK_Ordinary, false, false,
|
|
|
|
false, false),
|
|
|
|
NumElements(VK.size()), HasPackExpansions(HasPackExpansions), Range(SR),
|
|
|
|
DictWithObjectsMethod(method)
|
|
|
|
{
|
|
|
|
KeyValuePair *KeyValues = getKeyValues();
|
|
|
|
ExpansionData *Expansions = getExpansionData();
|
|
|
|
for (unsigned I = 0; I < NumElements; I++) {
|
|
|
|
if (VK[I].Key->isTypeDependent() || VK[I].Key->isValueDependent() ||
|
|
|
|
VK[I].Value->isTypeDependent() || VK[I].Value->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
|
|
|
if (VK[I].Key->isInstantiationDependent() ||
|
|
|
|
VK[I].Value->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
|
|
|
if (VK[I].EllipsisLoc.isInvalid() &&
|
|
|
|
(VK[I].Key->containsUnexpandedParameterPack() ||
|
|
|
|
VK[I].Value->containsUnexpandedParameterPack()))
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
|
|
|
KeyValues[I].Key = VK[I].Key;
|
|
|
|
KeyValues[I].Value = VK[I].Value;
|
|
|
|
if (Expansions) {
|
|
|
|
Expansions[I].EllipsisLoc = VK[I].EllipsisLoc;
|
|
|
|
if (VK[I].NumExpansions)
|
|
|
|
Expansions[I].NumExpansionsPlusOne = *VK[I].NumExpansions + 1;
|
|
|
|
else
|
|
|
|
Expansions[I].NumExpansionsPlusOne = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCDictionaryLiteral *
|
|
|
|
ObjCDictionaryLiteral::Create(ASTContext &C,
|
|
|
|
ArrayRef<ObjCDictionaryElement> VK,
|
|
|
|
bool HasPackExpansions,
|
|
|
|
QualType T, ObjCMethodDecl *method,
|
|
|
|
SourceRange SR) {
|
|
|
|
unsigned ExpansionsSize = 0;
|
|
|
|
if (HasPackExpansions)
|
|
|
|
ExpansionsSize = sizeof(ExpansionData) * VK.size();
|
|
|
|
|
|
|
|
void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
|
|
|
|
sizeof(KeyValuePair) * VK.size() + ExpansionsSize);
|
|
|
|
return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR);
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCDictionaryLiteral *
|
|
|
|
ObjCDictionaryLiteral::CreateEmpty(ASTContext &C, unsigned NumElements,
|
|
|
|
bool HasPackExpansions) {
|
|
|
|
unsigned ExpansionsSize = 0;
|
|
|
|
if (HasPackExpansions)
|
|
|
|
ExpansionsSize = sizeof(ExpansionData) * NumElements;
|
|
|
|
void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
|
|
|
|
sizeof(KeyValuePair) * NumElements + ExpansionsSize);
|
|
|
|
return new (Mem) ObjCDictionaryLiteral(EmptyShell(), NumElements,
|
|
|
|
HasPackExpansions);
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCSubscriptRefExpr *ObjCSubscriptRefExpr::Create(ASTContext &C,
|
|
|
|
Expr *base,
|
|
|
|
Expr *key, QualType T,
|
|
|
|
ObjCMethodDecl *getMethod,
|
|
|
|
ObjCMethodDecl *setMethod,
|
|
|
|
SourceLocation RB) {
|
|
|
|
void *Mem = C.Allocate(sizeof(ObjCSubscriptRefExpr));
|
|
|
|
return new (Mem) ObjCSubscriptRefExpr(base, key, T, VK_LValue,
|
|
|
|
OK_ObjCSubscript,
|
|
|
|
getMethod, setMethod, RB);
|
|
|
|
}
|
2011-10-15 02:48:56 +04:00
|
|
|
|
2012-08-24 15:54:20 +04:00
|
|
|
AtomicExpr::AtomicExpr(SourceLocation BLoc, ArrayRef<Expr*> args,
|
2011-10-15 02:48:56 +04:00
|
|
|
QualType t, AtomicOp op, SourceLocation RP)
|
|
|
|
: Expr(AtomicExprClass, t, VK_RValue, OK_Ordinary,
|
|
|
|
false, false, false, false),
|
2012-08-24 15:54:20 +04:00
|
|
|
NumSubExprs(args.size()), BuiltinLoc(BLoc), RParenLoc(RP), Op(op)
|
2011-10-15 02:48:56 +04:00
|
|
|
{
|
2012-08-24 15:54:20 +04:00
|
|
|
assert(args.size() == getNumSubExprs(op) && "wrong number of subexpressions");
|
|
|
|
for (unsigned i = 0; i != args.size(); i++) {
|
2011-10-15 02:48:56 +04:00
|
|
|
if (args[i]->isTypeDependent())
|
|
|
|
ExprBits.TypeDependent = true;
|
|
|
|
if (args[i]->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
|
|
|
if (args[i]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
|
|
|
if (args[i]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
|
|
|
SubExprs[i] = args[i];
|
|
|
|
}
|
|
|
|
}
|
2012-04-11 02:49:28 +04:00
|
|
|
|
|
|
|
unsigned AtomicExpr::getNumSubExprs(AtomicOp Op) {
|
|
|
|
switch (Op) {
|
2012-04-12 09:08:17 +04:00
|
|
|
case AO__c11_atomic_init:
|
|
|
|
case AO__c11_atomic_load:
|
|
|
|
case AO__atomic_load_n:
|
2012-04-11 02:49:28 +04:00
|
|
|
return 2;
|
2012-04-12 09:08:17 +04:00
|
|
|
|
|
|
|
case AO__c11_atomic_store:
|
|
|
|
case AO__c11_atomic_exchange:
|
|
|
|
case AO__atomic_load:
|
|
|
|
case AO__atomic_store:
|
|
|
|
case AO__atomic_store_n:
|
|
|
|
case AO__atomic_exchange_n:
|
|
|
|
case AO__c11_atomic_fetch_add:
|
|
|
|
case AO__c11_atomic_fetch_sub:
|
|
|
|
case AO__c11_atomic_fetch_and:
|
|
|
|
case AO__c11_atomic_fetch_or:
|
|
|
|
case AO__c11_atomic_fetch_xor:
|
|
|
|
case AO__atomic_fetch_add:
|
|
|
|
case AO__atomic_fetch_sub:
|
|
|
|
case AO__atomic_fetch_and:
|
|
|
|
case AO__atomic_fetch_or:
|
|
|
|
case AO__atomic_fetch_xor:
|
2012-04-13 10:31:38 +04:00
|
|
|
case AO__atomic_fetch_nand:
|
2012-04-12 09:08:17 +04:00
|
|
|
case AO__atomic_add_fetch:
|
|
|
|
case AO__atomic_sub_fetch:
|
|
|
|
case AO__atomic_and_fetch:
|
|
|
|
case AO__atomic_or_fetch:
|
|
|
|
case AO__atomic_xor_fetch:
|
2012-04-13 10:31:38 +04:00
|
|
|
case AO__atomic_nand_fetch:
|
2012-04-11 02:49:28 +04:00
|
|
|
return 3;
|
2012-04-12 09:08:17 +04:00
|
|
|
|
|
|
|
case AO__atomic_exchange:
|
|
|
|
return 4;
|
|
|
|
|
|
|
|
case AO__c11_atomic_compare_exchange_strong:
|
|
|
|
case AO__c11_atomic_compare_exchange_weak:
|
2012-04-11 02:49:28 +04:00
|
|
|
return 5;
|
2012-04-12 09:08:17 +04:00
|
|
|
|
|
|
|
case AO__atomic_compare_exchange:
|
|
|
|
case AO__atomic_compare_exchange_n:
|
|
|
|
return 6;
|
2012-04-11 02:49:28 +04:00
|
|
|
}
|
|
|
|
llvm_unreachable("unknown atomic op");
|
|
|
|
}
|