2009-02-17 03:57:29 +03:00
|
|
|
//===--- SemaAttr.cpp - Semantic Analysis for Attributes ------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-02-17 04:09:29 +03:00
|
|
|
// This file implements semantic analysis for non-trivial attributes and
|
|
|
|
// pragmas.
|
2009-02-17 03:57:29 +03:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Sema.h"
|
2009-11-18 10:57:50 +03:00
|
|
|
#include "Lookup.h"
|
2009-02-17 03:57:29 +03:00
|
|
|
#include "clang/AST/Expr.h"
|
2010-05-27 04:35:16 +04:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
|
|
|
#include "clang/Lex/Preprocessor.h"
|
2009-02-17 03:57:29 +03:00
|
|
|
using namespace clang;
|
|
|
|
|
2009-02-17 04:09:29 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-05-27 04:04:40 +04:00
|
|
|
// Pragma 'pack' and 'options align'
|
2009-02-17 04:09:29 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
2010-05-27 06:25:27 +04:00
|
|
|
struct PackStackEntry {
|
2010-05-27 09:45:51 +04:00
|
|
|
// We just use a sentinel to represent when the stack is set to mac68k
|
|
|
|
// alignment.
|
|
|
|
static const unsigned kMac68kAlignmentSentinel = ~0U;
|
|
|
|
|
2010-05-27 06:25:27 +04:00
|
|
|
unsigned Alignment;
|
|
|
|
IdentifierInfo *Name;
|
|
|
|
};
|
|
|
|
|
2009-02-17 04:09:29 +03:00
|
|
|
/// PragmaPackStack - Simple class to wrap the stack used by #pragma
|
|
|
|
/// pack.
|
|
|
|
class PragmaPackStack {
|
2010-05-27 06:25:27 +04:00
|
|
|
typedef std::vector<PackStackEntry> stack_ty;
|
2009-02-17 04:09:29 +03:00
|
|
|
|
|
|
|
/// Alignment - The current user specified alignment.
|
|
|
|
unsigned Alignment;
|
|
|
|
|
|
|
|
/// Stack - Entries in the #pragma pack stack, consisting of saved
|
|
|
|
/// alignments and optional names.
|
|
|
|
stack_ty Stack;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
|
|
|
public:
|
2009-02-17 04:09:29 +03:00
|
|
|
PragmaPackStack() : Alignment(0) {}
|
|
|
|
|
|
|
|
void setAlignment(unsigned A) { Alignment = A; }
|
|
|
|
unsigned getAlignment() { return Alignment; }
|
|
|
|
|
|
|
|
/// push - Push the current alignment onto the stack, optionally
|
|
|
|
/// using the given \arg Name for the record, if non-zero.
|
|
|
|
void push(IdentifierInfo *Name) {
|
2010-05-27 06:25:27 +04:00
|
|
|
PackStackEntry PSE = { Alignment, Name };
|
|
|
|
Stack.push_back(PSE);
|
2009-02-17 04:09:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/// pop - Pop a record from the stack and restore the current
|
|
|
|
/// alignment to the previous value. If \arg Name is non-zero then
|
|
|
|
/// the first such named record is popped, otherwise the top record
|
|
|
|
/// is popped. Returns true if the pop succeeded.
|
2010-07-16 08:54:16 +04:00
|
|
|
bool pop(IdentifierInfo *Name, bool IsReset);
|
2009-02-17 04:09:29 +03:00
|
|
|
};
|
|
|
|
} // end anonymous namespace.
|
|
|
|
|
2010-07-16 08:54:16 +04:00
|
|
|
bool PragmaPackStack::pop(IdentifierInfo *Name, bool IsReset) {
|
2009-02-17 04:09:29 +03:00
|
|
|
// If name is empty just pop top.
|
|
|
|
if (!Name) {
|
2010-07-16 08:54:16 +04:00
|
|
|
// An empty stack is a special case...
|
|
|
|
if (Stack.empty()) {
|
|
|
|
// If this isn't a reset, it is always an error.
|
|
|
|
if (!IsReset)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Otherwise, it is an error only if some alignment has been set.
|
|
|
|
if (!Alignment)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Otherwise, reset to the default alignment.
|
|
|
|
Alignment = 0;
|
|
|
|
} else {
|
|
|
|
Alignment = Stack.back().Alignment;
|
|
|
|
Stack.pop_back();
|
|
|
|
}
|
|
|
|
|
2009-02-17 04:09:29 +03:00
|
|
|
return true;
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
|
|
|
|
2009-02-17 04:09:29 +03:00
|
|
|
// Otherwise, find the named record.
|
|
|
|
for (unsigned i = Stack.size(); i != 0; ) {
|
|
|
|
--i;
|
2010-05-27 06:25:27 +04:00
|
|
|
if (Stack[i].Name == Name) {
|
2009-02-17 04:09:29 +03:00
|
|
|
// Found it, pop up to and including this record.
|
2010-05-27 06:25:27 +04:00
|
|
|
Alignment = Stack[i].Alignment;
|
2009-02-17 04:09:29 +03:00
|
|
|
Stack.erase(Stack.begin() + i, Stack.end());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-17 04:09:29 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// FreePackedContext - Deallocate and null out PackContext.
|
|
|
|
void Sema::FreePackedContext() {
|
|
|
|
delete static_cast<PragmaPackStack*>(PackContext);
|
|
|
|
PackContext = 0;
|
|
|
|
}
|
|
|
|
|
2010-05-27 05:53:40 +04:00
|
|
|
void Sema::AddAlignmentAttributesForRecord(RecordDecl *RD) {
|
|
|
|
// If there is no pack context, we don't need any attributes.
|
|
|
|
if (!PackContext)
|
|
|
|
return;
|
|
|
|
|
|
|
|
PragmaPackStack *Stack = static_cast<PragmaPackStack*>(PackContext);
|
|
|
|
|
|
|
|
// Otherwise, check to see if we need a max field alignment attribute.
|
2010-05-27 09:45:51 +04:00
|
|
|
if (unsigned Alignment = Stack->getAlignment()) {
|
|
|
|
if (Alignment == PackStackEntry::kMac68kAlignmentSentinel)
|
|
|
|
RD->addAttr(::new (Context) AlignMac68kAttr());
|
|
|
|
else
|
|
|
|
RD->addAttr(::new (Context) MaxFieldAlignmentAttr(Alignment * 8));
|
|
|
|
}
|
2009-02-17 04:09:29 +03:00
|
|
|
}
|
|
|
|
|
2010-05-27 04:04:40 +04:00
|
|
|
void Sema::ActOnPragmaOptionsAlign(PragmaOptionsAlignKind Kind,
|
|
|
|
SourceLocation PragmaLoc,
|
|
|
|
SourceLocation KindLoc) {
|
|
|
|
if (PackContext == 0)
|
|
|
|
PackContext = new PragmaPackStack();
|
|
|
|
|
|
|
|
PragmaPackStack *Context = static_cast<PragmaPackStack*>(PackContext);
|
|
|
|
|
2010-07-16 08:54:16 +04:00
|
|
|
// Reset just pops the top of the stack, or resets the current alignment to
|
|
|
|
// default.
|
2010-05-27 04:04:40 +04:00
|
|
|
if (Kind == Action::POAK_Reset) {
|
2010-07-16 08:54:16 +04:00
|
|
|
if (!Context->pop(0, /*IsReset=*/true)) {
|
2010-05-27 04:04:40 +04:00
|
|
|
Diag(PragmaLoc, diag::warn_pragma_options_align_reset_failed)
|
|
|
|
<< "stack empty";
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (Kind) {
|
2010-05-27 22:42:09 +04:00
|
|
|
// For all targets we support native and natural are the same.
|
|
|
|
//
|
|
|
|
// FIXME: This is not true on Darwin/PPC.
|
|
|
|
case POAK_Native:
|
2010-05-28 23:43:33 +04:00
|
|
|
case POAK_Power:
|
2010-05-29 00:08:00 +04:00
|
|
|
case POAK_Natural:
|
2010-05-28 23:43:33 +04:00
|
|
|
Context->push(0);
|
|
|
|
Context->setAlignment(0);
|
|
|
|
break;
|
|
|
|
|
2010-05-27 22:42:17 +04:00
|
|
|
// Note that '#pragma options align=packed' is not equivalent to attribute
|
|
|
|
// packed, it has a different precedence relative to attribute aligned.
|
|
|
|
case POAK_Packed:
|
|
|
|
Context->push(0);
|
|
|
|
Context->setAlignment(1);
|
|
|
|
break;
|
|
|
|
|
2010-05-27 04:35:16 +04:00
|
|
|
case POAK_Mac68k:
|
|
|
|
// Check if the target supports this.
|
|
|
|
if (!PP.getTargetInfo().hasAlignMac68kSupport()) {
|
|
|
|
Diag(PragmaLoc, diag::err_pragma_options_align_mac68k_target_unsupported);
|
|
|
|
return;
|
|
|
|
}
|
2010-05-27 09:45:51 +04:00
|
|
|
Context->push(0);
|
|
|
|
Context->setAlignment(PackStackEntry::kMac68kAlignmentSentinel);
|
2010-05-27 04:35:16 +04:00
|
|
|
break;
|
|
|
|
|
2010-05-27 04:04:40 +04:00
|
|
|
default:
|
|
|
|
Diag(PragmaLoc, diag::warn_pragma_options_align_unsupported_option)
|
|
|
|
<< KindLoc;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
void Sema::ActOnPragmaPack(PragmaPackKind Kind, IdentifierInfo *Name,
|
|
|
|
ExprTy *alignment, SourceLocation PragmaLoc,
|
2009-02-17 03:57:29 +03:00
|
|
|
SourceLocation LParenLoc, SourceLocation RParenLoc) {
|
|
|
|
Expr *Alignment = static_cast<Expr *>(alignment);
|
|
|
|
|
|
|
|
// If specified then alignment must be a "small" power of two.
|
|
|
|
unsigned AlignmentVal = 0;
|
|
|
|
if (Alignment) {
|
|
|
|
llvm::APSInt Val;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-06 23:45:54 +03:00
|
|
|
// pack(0) is like pack(), which just works out since that is what
|
|
|
|
// we use 0 for in PackAttr.
|
2010-05-19 03:01:22 +04:00
|
|
|
if (Alignment->isTypeDependent() ||
|
|
|
|
Alignment->isValueDependent() ||
|
|
|
|
!Alignment->isIntegerConstantExpr(Val, Context) ||
|
2009-03-06 23:45:54 +03:00
|
|
|
!(Val == 0 || Val.isPowerOf2()) ||
|
2009-02-17 03:57:29 +03:00
|
|
|
Val.getZExtValue() > 16) {
|
|
|
|
Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
|
|
|
|
return; // Ignore
|
|
|
|
}
|
|
|
|
|
|
|
|
AlignmentVal = (unsigned) Val.getZExtValue();
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-17 04:09:29 +03:00
|
|
|
if (PackContext == 0)
|
|
|
|
PackContext = new PragmaPackStack();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-17 04:09:29 +03:00
|
|
|
PragmaPackStack *Context = static_cast<PragmaPackStack*>(PackContext);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-17 03:57:29 +03:00
|
|
|
switch (Kind) {
|
|
|
|
case Action::PPK_Default: // pack([n])
|
2009-02-17 04:09:29 +03:00
|
|
|
Context->setAlignment(AlignmentVal);
|
2009-02-17 03:57:29 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Action::PPK_Show: // pack(show)
|
|
|
|
// Show the current alignment, making sure to show the right value
|
|
|
|
// for the default.
|
2009-02-17 04:09:29 +03:00
|
|
|
AlignmentVal = Context->getAlignment();
|
2009-02-17 03:57:29 +03:00
|
|
|
// FIXME: This should come from the target.
|
|
|
|
if (AlignmentVal == 0)
|
|
|
|
AlignmentVal = 8;
|
2010-05-27 09:45:51 +04:00
|
|
|
if (AlignmentVal == PackStackEntry::kMac68kAlignmentSentinel)
|
|
|
|
Diag(PragmaLoc, diag::warn_pragma_pack_show) << "mac68k";
|
|
|
|
else
|
|
|
|
Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
|
2009-02-17 03:57:29 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Action::PPK_Push: // pack(push [, id] [, [n])
|
2009-02-17 04:09:29 +03:00
|
|
|
Context->push(Name);
|
2009-02-17 03:57:29 +03:00
|
|
|
// Set the new alignment if specified.
|
|
|
|
if (Alignment)
|
2009-09-09 19:08:12 +04:00
|
|
|
Context->setAlignment(AlignmentVal);
|
2009-02-17 03:57:29 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Action::PPK_Pop: // pack(pop [, id] [, n])
|
|
|
|
// MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
|
|
|
|
// "#pragma pack(pop, identifier, n) is undefined"
|
|
|
|
if (Alignment && Name)
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
|
|
|
|
|
2009-02-17 03:57:29 +03:00
|
|
|
// Do the pop.
|
2010-07-16 08:54:16 +04:00
|
|
|
if (!Context->pop(Name, /*IsReset=*/false)) {
|
2009-02-17 03:57:29 +03:00
|
|
|
// If a name was specified then failure indicates the name
|
|
|
|
// wasn't found. Otherwise failure indicates the stack was
|
|
|
|
// empty.
|
|
|
|
Diag(PragmaLoc, diag::warn_pragma_pack_pop_failed)
|
|
|
|
<< (Name ? "no record matching name" : "stack empty");
|
|
|
|
|
|
|
|
// FIXME: Warn about popping named records as MSVC does.
|
|
|
|
} else {
|
|
|
|
// Pop succeeded, set the new alignment if specified.
|
|
|
|
if (Alignment)
|
2009-02-17 04:09:29 +03:00
|
|
|
Context->setAlignment(AlignmentVal);
|
2009-02-17 03:57:29 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
assert(0 && "Invalid #pragma pack kind.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-04 03:24:57 +04:00
|
|
|
void Sema::ActOnPragmaUnused(const Token *Identifiers, unsigned NumIdentifiers,
|
|
|
|
Scope *curScope,
|
2009-03-24 01:28:25 +03:00
|
|
|
SourceLocation PragmaLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation RParenLoc) {
|
|
|
|
|
2009-08-04 03:24:57 +04:00
|
|
|
for (unsigned i = 0; i < NumIdentifiers; ++i) {
|
|
|
|
const Token &Tok = Identifiers[i];
|
2009-09-09 19:08:12 +04:00
|
|
|
IdentifierInfo *Name = Tok.getIdentifierInfo();
|
2009-11-17 05:14:36 +03:00
|
|
|
LookupResult Lookup(*this, Name, Tok.getLocation(), LookupOrdinaryName);
|
|
|
|
LookupParsedName(Lookup, curScope, NULL, true);
|
2009-08-04 03:24:57 +04:00
|
|
|
|
2009-12-02 11:25:40 +03:00
|
|
|
if (Lookup.empty()) {
|
2009-08-04 03:24:57 +04:00
|
|
|
Diag(PragmaLoc, diag::warn_pragma_unused_undeclared_var)
|
|
|
|
<< Name << SourceRange(Tok.getLocation());
|
|
|
|
continue;
|
2009-03-24 01:28:25 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-12-02 11:25:40 +03:00
|
|
|
VarDecl *VD = Lookup.getAsSingle<VarDecl>();
|
|
|
|
if (!VD || !VD->hasLocalStorage()) {
|
2009-08-04 03:24:57 +04:00
|
|
|
Diag(PragmaLoc, diag::warn_pragma_unused_expected_localvar)
|
|
|
|
<< Name << SourceRange(Tok.getLocation());
|
|
|
|
continue;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-12-02 11:25:40 +03:00
|
|
|
VD->addAttr(::new (Context) UnusedAttr());
|
2009-03-24 01:28:25 +03:00
|
|
|
}
|
|
|
|
}
|
2010-08-05 10:57:20 +04:00
|
|
|
|
|
|
|
typedef std::vector<VisibilityAttr::VisibilityTypes> VisStack;
|
|
|
|
|
|
|
|
void Sema::AddPushedVisibilityAttribute(Decl *D) {
|
|
|
|
if (!VisContext)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (D->hasAttr<VisibilityAttr>())
|
|
|
|
return;
|
|
|
|
|
|
|
|
VisStack *Stack = static_cast<VisStack*>(VisContext);
|
|
|
|
VisibilityAttr::VisibilityTypes type = Stack->back();
|
|
|
|
|
|
|
|
D->addAttr(::new (Context) VisibilityAttr(type, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// FreeVisContext - Deallocate and null out VisContext.
|
|
|
|
void Sema::FreeVisContext() {
|
|
|
|
delete static_cast<VisStack*>(VisContext);
|
|
|
|
VisContext = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sema::ActOnPragmaVisibility(bool IsPush, const IdentifierInfo* VisType,
|
|
|
|
SourceLocation PragmaLoc) {
|
|
|
|
if (IsPush) {
|
|
|
|
// Compute visibility to use.
|
|
|
|
VisibilityAttr::VisibilityTypes type;
|
|
|
|
if (VisType->isStr("default"))
|
|
|
|
type = VisibilityAttr::DefaultVisibility;
|
|
|
|
else if (VisType->isStr("hidden"))
|
|
|
|
type = VisibilityAttr::HiddenVisibility;
|
|
|
|
else if (VisType->isStr("internal"))
|
|
|
|
type = VisibilityAttr::HiddenVisibility; // FIXME
|
|
|
|
else if (VisType->isStr("protected"))
|
|
|
|
type = VisibilityAttr::ProtectedVisibility;
|
|
|
|
else {
|
|
|
|
Diag(PragmaLoc, diag::warn_attribute_unknown_visibility) <<
|
|
|
|
VisType->getName();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PushPragmaVisibility(type);
|
|
|
|
} else {
|
|
|
|
PopPragmaVisibility();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sema::PushPragmaVisibility(VisibilityAttr::VisibilityTypes type) {
|
|
|
|
// Put visibility on stack.
|
|
|
|
if (!VisContext)
|
|
|
|
VisContext = new VisStack;
|
|
|
|
|
|
|
|
VisStack *Stack = static_cast<VisStack*>(VisContext);
|
|
|
|
Stack->push_back(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sema::PopPragmaVisibility() {
|
|
|
|
// Pop visibility from stack, if there is one on the stack.
|
|
|
|
if (VisContext) {
|
|
|
|
VisStack *Stack = static_cast<VisStack*>(VisContext);
|
|
|
|
|
|
|
|
Stack->pop_back();
|
|
|
|
// To simplify the implementation, never keep around an empty stack.
|
|
|
|
if (Stack->empty())
|
|
|
|
FreeVisContext();
|
|
|
|
}
|
|
|
|
// FIXME: Add diag for pop without push.
|
|
|
|
}
|