mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-20 06:43:14 +01:00
This corresponds to DMD commit a913ce4bc59a94a022a27e390fc841f4aededffb. Doesn't build Phobos yet.
100 lines
2.5 KiB
C++
100 lines
2.5 KiB
C++
|
|
// Compiler implementation of the D programming language
|
|
// Copyright (c) 1999-2012 by Digital Mars
|
|
// All Rights Reserved
|
|
// written by Walter Bright
|
|
// http://www.digitalmars.com
|
|
// License for redistribution is by either the Artistic License
|
|
// in artistic.txt, or the GNU General Public License in gnu.txt.
|
|
// See the included readme.txt for details.
|
|
|
|
#ifndef DMD_DEBCOND_H
|
|
#define DMD_DEBCOND_H
|
|
|
|
class Expression;
|
|
class Identifier;
|
|
struct OutBuffer;
|
|
class Module;
|
|
struct Scope;
|
|
class ScopeDsymbol;
|
|
class DebugCondition;
|
|
#include "lexer.h" // dmdhg
|
|
enum TOK;
|
|
struct HdrGenState;
|
|
|
|
int findCondition(Strings *ids, Identifier *ident);
|
|
|
|
class Condition
|
|
{
|
|
public:
|
|
Loc loc;
|
|
int inc; // 0: not computed yet
|
|
// 1: include
|
|
// 2: do not include
|
|
|
|
Condition(Loc loc);
|
|
|
|
virtual Condition *syntaxCopy() = 0;
|
|
virtual int include(Scope *sc, ScopeDsymbol *s) = 0;
|
|
virtual void toCBuffer(OutBuffer *buf, HdrGenState *hgs) = 0;
|
|
virtual DebugCondition *isDebugCondition() { return NULL; }
|
|
};
|
|
|
|
class DVCondition : public Condition
|
|
{
|
|
public:
|
|
unsigned level;
|
|
Identifier *ident;
|
|
Module *mod;
|
|
|
|
DVCondition(Module *mod, unsigned level, Identifier *ident);
|
|
|
|
Condition *syntaxCopy();
|
|
};
|
|
|
|
class DebugCondition : public DVCondition
|
|
{
|
|
public:
|
|
static void setGlobalLevel(unsigned level);
|
|
static void addGlobalIdent(const char *ident);
|
|
|
|
DebugCondition(Module *mod, unsigned level, Identifier *ident);
|
|
|
|
int include(Scope *sc, ScopeDsymbol *s);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
DebugCondition *isDebugCondition() { return this; }
|
|
};
|
|
|
|
class VersionCondition : public DVCondition
|
|
{
|
|
public:
|
|
static void setGlobalLevel(unsigned level);
|
|
static bool isPredefined(const char *ident);
|
|
static void checkPredefined(Loc loc, const char *ident)
|
|
{
|
|
if (isPredefined(ident))
|
|
error(loc, "version identifier '%s' is reserved and cannot be set", ident);
|
|
}
|
|
static void addGlobalIdent(const char *ident);
|
|
static void addPredefinedGlobalIdent(const char *ident);
|
|
|
|
VersionCondition(Module *mod, unsigned level, Identifier *ident);
|
|
|
|
int include(Scope *sc, ScopeDsymbol *s);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
};
|
|
|
|
class StaticIfCondition : public Condition
|
|
{
|
|
public:
|
|
Expression *exp;
|
|
int nest; // limit circular dependencies
|
|
|
|
StaticIfCondition(Loc loc, Expression *exp);
|
|
Condition *syntaxCopy();
|
|
int include(Scope *sc, ScopeDsymbol *s);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
};
|
|
|
|
#endif
|