mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-25 17:13:14 +01:00
82e6a91 Resolve rvalue reference on template function arguments 3708457 Implement rvalue reference for struct literal & construction 530a59f Revert "struct literals are lvalues again" f199933 struct literals are lvalues again 5f181da better error message for Issue 7815 - Mixin template forward reference (?) regression e5452d5 fix Issue 7888 - derivedMembers forward reference error with nested imports b77ae4f merge with D1 5fed58d fix Issue 7886 - derivedMembers infinite recursion 0cf5ecd Merge pull request #872 from 9rnsr/fix7873 744f102 fix Issue 7695 - Regression(2.058): ICE(mtype.c) on associative array with keys of struct type with const members 80fc228 fix Issue 7873 - IFTI with inout does not properly match template parameter if called from inout function for pointers 4a5d365 fix CTFE bugs reported in beta df22942 add kind() d36a3b4 Merge pull request #871 from 9rnsr/fix7871 66d1302 fix Issue 7871 - RangeViolation with findSplitBefore 020ab91 fix Issue 7811 - "not a property" error instead of real error on UFCS array template property c349458 fix Issue 7862 - Accepts-invalid template forward reference bug related to derivedMembers 00d8ec8 fix Issue 7861 - Segfault during __error propagation with self-referencing module 4c9652d fix fwd ref bug 477c357 fix Issue 7859 - Crash on invalid alias template parameter type c35f67a fix Issue 7858 - __traits(getOverloads) returns incorrect symbol bc840e8 fix Issue 7815 - Mixin template forward reference (?) regression 18a1485 fix auto test break ceef368 fix Issue 7826 - [D2 Beta] Cannot use getHash in toHash without a warning d747fd6 fix Issue 7820 - regression(DMD 2.059head) Wrong error on forward reference to 'front' with -property switch 1094601 fix Issue 7823 - Can't use a struct initializer to initialize a nested enum used as a default function argument initializer git-subtree-dir: dmd2 git-subtree-split: 82e6a91f234843be7f660b242f8b8819c1eae20c
194 lines
5.7 KiB
C
194 lines
5.7 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_ATTRIB_H
|
|
#define DMD_ATTRIB_H
|
|
|
|
#ifdef __DMC__
|
|
#pragma once
|
|
#endif /* __DMC__ */
|
|
|
|
#include "dsymbol.h"
|
|
|
|
struct Expression;
|
|
struct Statement;
|
|
struct LabelDsymbol;
|
|
struct Initializer;
|
|
struct Module;
|
|
struct Condition;
|
|
struct HdrGenState;
|
|
|
|
/**************************************************************/
|
|
|
|
struct AttribDeclaration : Dsymbol
|
|
{
|
|
Dsymbols *decl; // array of Dsymbol's
|
|
|
|
AttribDeclaration(Dsymbols *decl);
|
|
virtual Dsymbols *include(Scope *sc, ScopeDsymbol *s);
|
|
int apply(Dsymbol_apply_ft_t fp, void *param);
|
|
int addMember(Scope *sc, ScopeDsymbol *s, int memnum);
|
|
void setScopeNewSc(Scope *sc,
|
|
StorageClass newstc, enum LINK linkage, enum PROT protection, int explictProtection,
|
|
unsigned structalign);
|
|
void semanticNewSc(Scope *sc,
|
|
StorageClass newstc, enum LINK linkage, enum PROT protection, int explictProtection,
|
|
unsigned structalign);
|
|
void semantic(Scope *sc);
|
|
void semantic2(Scope *sc);
|
|
void semantic3(Scope *sc);
|
|
void inlineScan();
|
|
void addComment(unsigned char *comment);
|
|
void emitComment(Scope *sc);
|
|
const char *kind();
|
|
int oneMember(Dsymbol **ps, Identifier *ident);
|
|
void setFieldOffset(AggregateDeclaration *ad, unsigned *poffset, bool isunion);
|
|
int hasPointers();
|
|
bool hasStaticCtorOrDtor();
|
|
void checkCtorConstInit();
|
|
void addLocalClass(ClassDeclarations *);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
void toJsonBuffer(OutBuffer *buf);
|
|
AttribDeclaration *isAttribDeclaration() { return this; }
|
|
|
|
void toObjFile(int multiobj); // compile to .obj file
|
|
};
|
|
|
|
struct StorageClassDeclaration: AttribDeclaration
|
|
{
|
|
StorageClass stc;
|
|
|
|
StorageClassDeclaration(StorageClass stc, Dsymbols *decl);
|
|
Dsymbol *syntaxCopy(Dsymbol *s);
|
|
void setScope(Scope *sc);
|
|
void semantic(Scope *sc);
|
|
int oneMember(Dsymbol **ps, Identifier *ident);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
|
|
static void stcToCBuffer(OutBuffer *buf, StorageClass stc);
|
|
};
|
|
|
|
struct LinkDeclaration : AttribDeclaration
|
|
{
|
|
enum LINK linkage;
|
|
|
|
LinkDeclaration(enum LINK p, Dsymbols *decl);
|
|
Dsymbol *syntaxCopy(Dsymbol *s);
|
|
void setScope(Scope *sc);
|
|
void semantic(Scope *sc);
|
|
void semantic3(Scope *sc);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
char *toChars();
|
|
};
|
|
|
|
struct ProtDeclaration : AttribDeclaration
|
|
{
|
|
enum PROT protection;
|
|
|
|
ProtDeclaration(enum PROT p, Dsymbols *decl);
|
|
Dsymbol *syntaxCopy(Dsymbol *s);
|
|
void importAll(Scope *sc);
|
|
void setScope(Scope *sc);
|
|
void semantic(Scope *sc);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
|
|
static void protectionToCBuffer(OutBuffer *buf, enum PROT protection);
|
|
};
|
|
|
|
struct AlignDeclaration : AttribDeclaration
|
|
{
|
|
unsigned salign;
|
|
|
|
AlignDeclaration(unsigned sa, Dsymbols *decl);
|
|
Dsymbol *syntaxCopy(Dsymbol *s);
|
|
void setScope(Scope *sc);
|
|
void semantic(Scope *sc);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
};
|
|
|
|
struct AnonDeclaration : AttribDeclaration
|
|
{
|
|
bool isunion;
|
|
unsigned alignment;
|
|
int sem; // 1 if successful semantic()
|
|
|
|
AnonDeclaration(Loc loc, int isunion, Dsymbols *decl);
|
|
Dsymbol *syntaxCopy(Dsymbol *s);
|
|
void semantic(Scope *sc);
|
|
void setFieldOffset(AggregateDeclaration *ad, unsigned *poffset, bool isunion);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
const char *kind();
|
|
};
|
|
|
|
struct PragmaDeclaration : AttribDeclaration
|
|
{
|
|
Expressions *args; // array of Expression's
|
|
|
|
PragmaDeclaration(Loc loc, Identifier *ident, Expressions *args, Dsymbols *decl);
|
|
Dsymbol *syntaxCopy(Dsymbol *s);
|
|
void semantic(Scope *sc);
|
|
void setScope(Scope *sc);
|
|
int oneMember(Dsymbol **ps, Identifier *ident);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
const char *kind();
|
|
void toObjFile(int multiobj); // compile to .obj file
|
|
};
|
|
|
|
struct ConditionalDeclaration : AttribDeclaration
|
|
{
|
|
Condition *condition;
|
|
Dsymbols *elsedecl; // array of Dsymbol's for else block
|
|
|
|
ConditionalDeclaration(Condition *condition, Dsymbols *decl, Dsymbols *elsedecl);
|
|
Dsymbol *syntaxCopy(Dsymbol *s);
|
|
int oneMember(Dsymbol **ps, Identifier *ident);
|
|
void emitComment(Scope *sc);
|
|
Dsymbols *include(Scope *sc, ScopeDsymbol *s);
|
|
void addComment(unsigned char *comment);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
void toJsonBuffer(OutBuffer *buf);
|
|
void importAll(Scope *sc);
|
|
void setScope(Scope *sc);
|
|
};
|
|
|
|
struct StaticIfDeclaration : ConditionalDeclaration
|
|
{
|
|
ScopeDsymbol *sd;
|
|
int addisdone;
|
|
|
|
StaticIfDeclaration(Condition *condition, Dsymbols *decl, Dsymbols *elsedecl);
|
|
Dsymbol *syntaxCopy(Dsymbol *s);
|
|
int addMember(Scope *sc, ScopeDsymbol *s, int memnum);
|
|
void semantic(Scope *sc);
|
|
void importAll(Scope *sc);
|
|
void setScope(Scope *sc);
|
|
const char *kind();
|
|
};
|
|
|
|
// Mixin declarations
|
|
|
|
struct CompileDeclaration : AttribDeclaration
|
|
{
|
|
Expression *exp;
|
|
|
|
ScopeDsymbol *sd;
|
|
int compiled;
|
|
|
|
CompileDeclaration(Loc loc, Expression *exp);
|
|
Dsymbol *syntaxCopy(Dsymbol *s);
|
|
int addMember(Scope *sc, ScopeDsymbol *sd, int memnum);
|
|
void compileIt(Scope *sc);
|
|
void semantic(Scope *sc);
|
|
void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
|
|
const char *kind();
|
|
};
|
|
|
|
#endif /* DMD_ATTRIB_H */
|