2009-12-10 00:21:05 +00:00
|
|
|
//===--- RAIIObjectsForParser.h - RAII helpers for the parser ---*- C++ -*-===//
|
2008-10-20 06:45:43 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-12-10 00:21:05 +00:00
|
|
|
// This file defines and implements the some simple RAII objects that are used
|
|
|
|
// by the parser to manage bits in recursion.
|
2008-10-20 06:45:43 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-12-10 00:21:05 +00:00
|
|
|
#ifndef LLVM_CLANG_PARSE_RAII_OBJECTS_FOR_PARSER_H
|
|
|
|
#define LLVM_CLANG_PARSE_RAII_OBJECTS_FOR_PARSER_H
|
2008-10-20 06:45:43 +00:00
|
|
|
|
2009-01-29 05:15:15 +00:00
|
|
|
#include "clang/Parse/ParseDiagnostic.h"
|
2012-05-07 06:16:41 +00:00
|
|
|
#include "clang/Parse/Parser.h"
|
|
|
|
#include "clang/Sema/DelayedDiagnostic.h"
|
|
|
|
#include "clang/Sema/Sema.h"
|
2008-10-20 06:45:43 +00:00
|
|
|
|
|
|
|
namespace clang {
|
2009-12-10 00:44:03 +00:00
|
|
|
// TODO: move ParsingClassDefinition here.
|
|
|
|
// TODO: move TentativeParsingAction here.
|
2012-05-07 06:16:41 +00:00
|
|
|
|
|
|
|
/// \brief RAII object used to inform the actions that we're
|
|
|
|
/// currently parsing a declaration. This is active when parsing a
|
|
|
|
/// variable's initializer, but not when parsing the body of a
|
|
|
|
/// class or function definition.
|
|
|
|
class ParsingDeclRAIIObject {
|
|
|
|
Sema &Actions;
|
|
|
|
sema::DelayedDiagnosticPool DiagnosticPool;
|
|
|
|
Sema::ParsingDeclState State;
|
|
|
|
bool Popped;
|
|
|
|
|
|
|
|
// Do not implement.
|
|
|
|
ParsingDeclRAIIObject(const ParsingDeclRAIIObject &other);
|
|
|
|
ParsingDeclRAIIObject &operator=(const ParsingDeclRAIIObject &other);
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum NoParent_t { NoParent };
|
|
|
|
ParsingDeclRAIIObject(Parser &P, NoParent_t _)
|
|
|
|
: Actions(P.getActions()), DiagnosticPool(NULL) {
|
|
|
|
push();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a RAII object whose pool is optionally parented by another.
|
|
|
|
ParsingDeclRAIIObject(Parser &P,
|
|
|
|
const sema::DelayedDiagnosticPool *parentPool)
|
|
|
|
: Actions(P.getActions()), DiagnosticPool(parentPool) {
|
|
|
|
push();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a RAII object and, optionally, initialize its
|
|
|
|
/// diagnostics pool by stealing the diagnostics from another
|
|
|
|
/// RAII object (which is assumed to be the current top pool).
|
|
|
|
ParsingDeclRAIIObject(Parser &P, ParsingDeclRAIIObject *other)
|
|
|
|
: Actions(P.getActions()),
|
|
|
|
DiagnosticPool(other ? other->DiagnosticPool.getParent() : NULL) {
|
|
|
|
if (other) {
|
|
|
|
DiagnosticPool.steal(other->DiagnosticPool);
|
|
|
|
other->abort();
|
|
|
|
}
|
|
|
|
push();
|
|
|
|
}
|
|
|
|
|
|
|
|
~ParsingDeclRAIIObject() {
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
sema::DelayedDiagnosticPool &getDelayedDiagnosticPool() {
|
|
|
|
return DiagnosticPool;
|
|
|
|
}
|
|
|
|
const sema::DelayedDiagnosticPool &getDelayedDiagnosticPool() const {
|
|
|
|
return DiagnosticPool;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Resets the RAII object for a new declaration.
|
|
|
|
void reset() {
|
|
|
|
abort();
|
|
|
|
push();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Signals that the context was completed without an appropriate
|
|
|
|
/// declaration being parsed.
|
|
|
|
void abort() {
|
|
|
|
pop(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void complete(Decl *D) {
|
|
|
|
assert(!Popped && "ParsingDeclaration has already been popped!");
|
|
|
|
pop(D);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void steal(ParsingDeclRAIIObject &Other) {
|
|
|
|
DiagnosticPool.steal(Other.DiagnosticPool);
|
|
|
|
State = Other.State;
|
|
|
|
Popped = Other.Popped;
|
|
|
|
Other.Popped = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void push() {
|
|
|
|
State = Actions.PushParsingDeclaration(DiagnosticPool);
|
|
|
|
Popped = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pop(Decl *D) {
|
|
|
|
if (!Popped) {
|
|
|
|
Actions.PopParsingDeclaration(State, D);
|
|
|
|
Popped = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// A class for parsing a DeclSpec.
|
|
|
|
class ParsingDeclSpec : public DeclSpec {
|
|
|
|
ParsingDeclRAIIObject ParsingRAII;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ParsingDeclSpec(Parser &P)
|
|
|
|
: DeclSpec(P.getAttrFactory()),
|
|
|
|
ParsingRAII(P, ParsingDeclRAIIObject::NoParent) {}
|
|
|
|
ParsingDeclSpec(Parser &P, ParsingDeclRAIIObject *RAII)
|
|
|
|
: DeclSpec(P.getAttrFactory()),
|
|
|
|
ParsingRAII(P, RAII) {}
|
|
|
|
|
|
|
|
const sema::DelayedDiagnosticPool &getDelayedDiagnosticPool() const {
|
|
|
|
return ParsingRAII.getDelayedDiagnosticPool();
|
|
|
|
}
|
|
|
|
|
|
|
|
void complete(Decl *D) {
|
|
|
|
ParsingRAII.complete(D);
|
|
|
|
}
|
|
|
|
|
|
|
|
void abort() {
|
|
|
|
ParsingRAII.abort();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// A class for parsing a declarator.
|
|
|
|
class ParsingDeclarator : public Declarator {
|
|
|
|
ParsingDeclRAIIObject ParsingRAII;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ParsingDeclarator(Parser &P, const ParsingDeclSpec &DS, TheContext C)
|
|
|
|
: Declarator(DS, C), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) {
|
|
|
|
}
|
|
|
|
|
|
|
|
const ParsingDeclSpec &getDeclSpec() const {
|
|
|
|
return static_cast<const ParsingDeclSpec&>(Declarator::getDeclSpec());
|
|
|
|
}
|
|
|
|
|
|
|
|
ParsingDeclSpec &getMutableDeclSpec() const {
|
|
|
|
return const_cast<ParsingDeclSpec&>(getDeclSpec());
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear() {
|
|
|
|
Declarator::clear();
|
|
|
|
ParsingRAII.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void complete(Decl *D) {
|
|
|
|
ParsingRAII.complete(D);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-10-20 06:45:43 +00:00
|
|
|
/// ExtensionRAIIObject - This saves the state of extension warnings when
|
|
|
|
/// constructed and disables them. When destructed, it restores them back to
|
|
|
|
/// the way they used to be. This is used to handle __extension__ in the
|
|
|
|
/// parser.
|
|
|
|
class ExtensionRAIIObject {
|
|
|
|
void operator=(const ExtensionRAIIObject &); // DO NOT IMPLEMENT
|
|
|
|
ExtensionRAIIObject(const ExtensionRAIIObject&); // DO NOT IMPLEMENT
|
2011-09-25 23:23:43 +00:00
|
|
|
DiagnosticsEngine &Diags;
|
2008-10-20 06:45:43 +00:00
|
|
|
public:
|
2011-09-25 23:23:43 +00:00
|
|
|
ExtensionRAIIObject(DiagnosticsEngine &diags) : Diags(diags) {
|
2009-04-15 07:01:18 +00:00
|
|
|
Diags.IncrementAllExtensionsSilenced();
|
2008-10-20 06:45:43 +00:00
|
|
|
}
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-10-20 06:45:43 +00:00
|
|
|
~ExtensionRAIIObject() {
|
2009-04-15 07:01:18 +00:00
|
|
|
Diags.DecrementAllExtensionsSilenced();
|
2008-10-20 06:45:43 +00:00
|
|
|
}
|
|
|
|
};
|
2009-12-10 00:32:41 +00:00
|
|
|
|
|
|
|
/// ColonProtectionRAIIObject - This sets the Parser::ColonIsSacred bool and
|
|
|
|
/// restores it when destroyed. This says that "foo:" should not be
|
|
|
|
/// considered a possible typo for "foo::" for error recovery purposes.
|
|
|
|
class ColonProtectionRAIIObject {
|
|
|
|
Parser &P;
|
|
|
|
bool OldVal;
|
|
|
|
public:
|
2009-12-10 02:08:07 +00:00
|
|
|
ColonProtectionRAIIObject(Parser &p, bool Value = true)
|
|
|
|
: P(p), OldVal(P.ColonIsSacred) {
|
|
|
|
P.ColonIsSacred = Value;
|
2009-12-10 00:32:41 +00:00
|
|
|
}
|
|
|
|
|
2009-12-10 00:38:54 +00:00
|
|
|
/// restore - This can be used to restore the state early, before the dtor
|
|
|
|
/// is run.
|
|
|
|
void restore() {
|
2009-12-10 00:32:41 +00:00
|
|
|
P.ColonIsSacred = OldVal;
|
|
|
|
}
|
2009-12-10 00:38:54 +00:00
|
|
|
|
|
|
|
~ColonProtectionRAIIObject() {
|
|
|
|
restore();
|
|
|
|
}
|
2009-12-10 00:32:41 +00:00
|
|
|
};
|
|
|
|
|
2009-12-10 00:44:03 +00:00
|
|
|
/// \brief RAII object that makes '>' behave either as an operator
|
|
|
|
/// or as the closing angle bracket for a template argument list.
|
2009-12-10 21:50:21 +00:00
|
|
|
class GreaterThanIsOperatorScope {
|
2009-12-10 00:44:03 +00:00
|
|
|
bool &GreaterThanIsOperator;
|
|
|
|
bool OldGreaterThanIsOperator;
|
2009-12-10 21:50:21 +00:00
|
|
|
public:
|
2009-12-10 00:44:03 +00:00
|
|
|
GreaterThanIsOperatorScope(bool >IO, bool Val)
|
|
|
|
: GreaterThanIsOperator(GTIO), OldGreaterThanIsOperator(GTIO) {
|
|
|
|
GreaterThanIsOperator = Val;
|
|
|
|
}
|
|
|
|
|
|
|
|
~GreaterThanIsOperatorScope() {
|
|
|
|
GreaterThanIsOperator = OldGreaterThanIsOperator;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-09-15 14:51:05 +00:00
|
|
|
class InMessageExpressionRAIIObject {
|
|
|
|
bool &InMessageExpression;
|
|
|
|
bool OldValue;
|
|
|
|
|
|
|
|
public:
|
|
|
|
InMessageExpressionRAIIObject(Parser &P, bool Value)
|
|
|
|
: InMessageExpression(P.InMessageExpression),
|
|
|
|
OldValue(P.InMessageExpression) {
|
|
|
|
InMessageExpression = Value;
|
|
|
|
}
|
|
|
|
|
|
|
|
~InMessageExpressionRAIIObject() {
|
|
|
|
InMessageExpression = OldValue;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-06-17 10:52:18 +00:00
|
|
|
/// \brief RAII object that makes sure paren/bracket/brace count is correct
|
|
|
|
/// after declaration/statement parsing, even when there's a parsing error.
|
|
|
|
class ParenBraceBracketBalancer {
|
|
|
|
Parser &P;
|
|
|
|
unsigned short ParenCount, BracketCount, BraceCount;
|
|
|
|
public:
|
|
|
|
ParenBraceBracketBalancer(Parser &p)
|
|
|
|
: P(p), ParenCount(p.ParenCount), BracketCount(p.BracketCount),
|
|
|
|
BraceCount(p.BraceCount) { }
|
|
|
|
|
|
|
|
~ParenBraceBracketBalancer() {
|
|
|
|
P.ParenCount = ParenCount;
|
|
|
|
P.BracketCount = BracketCount;
|
|
|
|
P.BraceCount = BraceCount;
|
|
|
|
}
|
|
|
|
};
|
2011-04-28 01:08:34 +00:00
|
|
|
|
|
|
|
class PoisonSEHIdentifiersRAIIObject {
|
|
|
|
PoisonIdentifierRAIIObject Ident_AbnormalTermination;
|
|
|
|
PoisonIdentifierRAIIObject Ident_GetExceptionCode;
|
|
|
|
PoisonIdentifierRAIIObject Ident_GetExceptionInfo;
|
|
|
|
PoisonIdentifierRAIIObject Ident__abnormal_termination;
|
|
|
|
PoisonIdentifierRAIIObject Ident__exception_code;
|
|
|
|
PoisonIdentifierRAIIObject Ident__exception_info;
|
|
|
|
PoisonIdentifierRAIIObject Ident___abnormal_termination;
|
|
|
|
PoisonIdentifierRAIIObject Ident___exception_code;
|
|
|
|
PoisonIdentifierRAIIObject Ident___exception_info;
|
|
|
|
public:
|
|
|
|
PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue)
|
|
|
|
: Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue),
|
|
|
|
Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue),
|
|
|
|
Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue),
|
|
|
|
Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue),
|
|
|
|
Ident__exception_code(Self.Ident__exception_code, NewValue),
|
|
|
|
Ident__exception_info(Self.Ident__exception_info, NewValue),
|
|
|
|
Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue),
|
|
|
|
Ident___exception_code(Self.Ident___exception_code, NewValue),
|
|
|
|
Ident___exception_info(Self.Ident___exception_info, NewValue) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-12-10 00:32:41 +00:00
|
|
|
} // end namespace clang
|
2008-10-20 06:45:43 +00:00
|
|
|
|
|
|
|
#endif
|