/*****************************************************************************/ /* */ /* symtab.h */ /* */ /* Symbol table for the ca65 macroassembler */ /* */ /* */ /* */ /* (C) 1998-2003 Ullrich von Bassewitz */ /* Römerstrasse 52 */ /* D-70794 Filderstadt */ /* EMail: uz@cc65.org */ /* */ /* */ /* This software is provided 'as-is', without any expressed or implied */ /* warranty. In no event will the authors be held liable for any damages */ /* arising from the use of this software. */ /* */ /* Permission is granted to anyone to use this software for any purpose, */ /* including commercial applications, and to alter it and redistribute it */ /* freely, subject to the following restrictions: */ /* */ /* 1. The origin of this software must not be misrepresented; you must not */ /* claim that you wrote the original software. If you use this software */ /* in a product, an acknowledgment in the product documentation would be */ /* appreciated but is not required. */ /* 2. Altered source versions must be plainly marked as such, and must not */ /* be misrepresented as being the original software. */ /* 3. This notice may not be removed or altered from any source */ /* distribution. */ /* */ /*****************************************************************************/ #ifndef SYMTAB_H #define SYMTAB_H #include /* common */ #include "exprdefs.h" /* ca65 */ #include "symentry.h" /*****************************************************************************/ /* Data */ /*****************************************************************************/ /* A symbol table */ typedef struct SymTable SymTable; struct SymTable { SymTable* Left; /* Pointer to smaller entry */ SymTable* Right; /* Pointer to greater entry */ SymTable* Parent; /* Link to enclosing scope if any */ SymTable* Childs; /* Pointer to child scopes */ unsigned char AddrSize; /* Address size */ unsigned char Type; /* Type of the scope */ unsigned Level; /* Lexical level */ unsigned TableSlots; /* Number of hash table slots */ unsigned TableEntries; /* Number of entries in the table */ unsigned Name; /* Name of the scope */ SymEntry* Table[1]; /* Dynamic allocation */ }; /* Symbol tables */ SymTable* CurrentScope; /* Pointer to current symbol table */ SymTable* RootScope; /* Root symbol table */ /*****************************************************************************/ /* Code */ /*****************************************************************************/ void SymEnterLevel (const char* ScopeName, unsigned AddrSize); /* Enter a new lexical level */ void SymLeaveLevel (void); /* Leave the current lexical level */ SymTable* SymFindScope (SymTable* Parent, const char* Name, int AllocNew); /* Find a scope in the given enclosing scope */ SymEntry* SymFind (SymTable* Scope, const char* Name, int AllocNew); /* Find a new symbol table entry in the given table. If AllocNew is given and * the entry is not found, create a new one. Return the entry found, or the * new entry created, or - in case AllocNew is zero - return 0. */ void SymConDes (const char* Name, unsigned Type, unsigned Prio); /* Mark the given symbol as a module constructor/destructor. This will also * mark the symbol as an export. Initializers may never be zero page symbols. */ int SymIsConst (SymEntry* Sym); /* Return true if the given symbol has a constant value */ int SymIsZP (SymEntry* Sym); /* Return true if the symbol is explicitly marked as zeropage symbol */ void SymCheck (void); /* Run through all symbols and check for anomalies and errors */ void SymDump (FILE* F); /* Dump the symbol table */ void WriteImports (void); /* Write the imports list to the object file */ void WriteExports (void); /* Write the exports list to the object file */ void WriteDbgSyms (void); /* Write a list of all symbols to the object file */ /* End of symtab.h */ #endif