1 /*****************************************************************************/
5 /* Symbol table for the ca65 macroassembler */
9 /* (C) 1998-2008 Ullrich von Bassewitz */
10 /* Roemerstrasse 52 */
11 /* D-70794 Filderstadt */
12 /* EMail: uz@cc65.org */
15 /* This software is provided 'as-is', without any expressed or implied */
16 /* warranty. In no event will the authors be held liable for any damages */
17 /* arising from the use of this software. */
19 /* Permission is granted to anyone to use this software for any purpose, */
20 /* including commercial applications, and to alter it and redistribute it */
21 /* freely, subject to the following restrictions: */
23 /* 1. The origin of this software must not be misrepresented; you must not */
24 /* claim that you wrote the original software. If you use this software */
25 /* in a product, an acknowledgment in the product documentation would be */
26 /* appreciated but is not required. */
27 /* 2. Altered source versions must be plainly marked as such, and must not */
28 /* be misrepresented as being the original software. */
29 /* 3. This notice may not be removed or altered from any source */
32 /*****************************************************************************/
55 #include "studyexpr.h"
60 /*****************************************************************************/
62 /*****************************************************************************/
66 /* Combined symbol entry flags used within this module */
67 #define SF_UNDEFMASK (SF_REFERENCED | SF_DEFINED | SF_IMPORT)
68 #define SF_UNDEFVAL (SF_REFERENCED)
69 #define SF_DBGINFOMASK (SF_UNUSED | SF_DEFINED | SF_IMPORT)
70 #define SF_DBGINFOVAL (SF_DEFINED)
73 SymTable* CurrentScope = 0; /* Pointer to current symbol table */
74 SymTable* RootScope = 0; /* Root symbol table */
76 /* Symbol table variables */
77 static unsigned ImportCount = 0; /* Counter for import symbols */
78 static unsigned ExportCount = 0; /* Counter for export symbols */
82 /*****************************************************************************/
83 /* Internally used functions */
84 /*****************************************************************************/
88 static unsigned ScopeTableSize (unsigned Level)
89 /* Get the size of a table for the given lexical level */
100 static SymTable* NewSymTable (SymTable* Parent, const StrBuf* Name)
101 /* Allocate a symbol table on the heap and return it */
103 /* Determine the lexical level and the number of table slots */
104 unsigned Level = Parent? Parent->Level + 1 : 0;
105 unsigned Slots = ScopeTableSize (Level);
107 /* Allocate memory */
108 SymTable* S = xmalloc (sizeof (SymTable) + (Slots-1) * sizeof (SymEntry*));
110 /* Set variables and clear hash table entries */
114 S->SegRanges = AUTO_COLLECTION_INITIALIZER;
116 S->AddrSize = ADDR_SIZE_DEFAULT;
119 S->TableSlots = Slots;
122 S->Name = GetStrBufId (Name);
127 /* Insert the symbol table into the child tree of the parent */
129 SymTable* T = Parent->Childs;
135 /* Choose next entry */
136 int Cmp = SB_Compare (Name, GetStrBuf (T->Name));
144 } else if (Cmp > 0) {
152 /* Duplicate scope name */
153 Internal ("Duplicate scope name: `%m%p'", Name);
159 /* Return the prepared struct */
165 /*****************************************************************************/
167 /*****************************************************************************/
171 void SymEnterLevel (const StrBuf* ScopeName, unsigned char Type, unsigned char AddrSize)
172 /* Enter a new lexical level */
174 /* Map a default address size to something real */
175 if (AddrSize == ADDR_SIZE_DEFAULT) {
176 /* Use the segment address size */
177 AddrSize = GetCurrentSegAddrSize ();
180 /* If we have a current scope, search for the given name and create a
181 * new one if it doesn't exist. If this is the root scope, just create it.
185 /* Search for the scope, create a new one */
186 CurrentScope = SymFindScope (CurrentScope, ScopeName, SYM_ALLOC_NEW);
188 /* Check if the scope has been defined before */
189 if (CurrentScope->Flags & ST_DEFINED) {
190 Error ("Duplicate scope `%m%p'", ScopeName);
194 CurrentScope = RootScope = NewSymTable (0, ScopeName);
197 /* Mark the scope as defined and set type and address size */
198 CurrentScope->Flags |= ST_DEFINED;
199 CurrentScope->AddrSize = AddrSize;
200 CurrentScope->Type = Type;
202 /* If this is a scope that allows to emit data into segments, add segment
203 * ranges for all currently existing segments. Doing this for just a few
204 * scope types is not really necessary but an optimization, because it
205 * does not allocate memory for useless data (unhandled types here don't
206 * occupy space in any segment).
208 if (CurrentScope->Type <= ST_SCOPE_HAS_DATA) {
209 AddSegRanges (&CurrentScope->SegRanges);
215 void SymLeaveLevel (void)
216 /* Leave the current lexical level */
218 /* Close the segment ranges. We don't care about the scope type here,
219 * since types without segment ranges will just have an empty list.
221 CloseSegRanges (&CurrentScope->SegRanges);
223 /* If we have segment ranges, the first one is the segment that was
224 * active, when the scope was opened. Set the size of the scope to the
225 * number of data bytes emitted into this segment.
227 if (CollCount (&CurrentScope->SegRanges) > 0) {
228 const SegRange* R = CollAtUnchecked (&CurrentScope->SegRanges, 0);
229 DefSizeOfScope (CurrentScope, GetSegRangeSize (R));
232 /* Leave the scope */
233 CurrentScope = CurrentScope->Parent;
238 SymTable* SymFindScope (SymTable* Parent, const StrBuf* Name, int AllocNew)
239 /* Find a scope in the given enclosing scope */
241 SymTable** T = &Parent->Childs;
243 int Cmp = SB_Compare (Name, GetStrBuf ((*T)->Name));
246 } else if (Cmp > 0) {
249 /* Found the scope */
254 /* Create a new scope if requested and we didn't find one */
255 if (*T == 0 && AllocNew) {
256 *T = NewSymTable (Parent, Name);
259 /* Return the scope */
265 SymTable* SymFindAnyScope (SymTable* Parent, const StrBuf* Name)
266 /* Find a scope in the given or any of its parent scopes. The function will
267 * never create a new symbol, since this can only be done in one specific
273 /* Search in the current table */
274 Scope = SymFindScope (Parent, Name, SYM_FIND_EXISTING);
276 /* Not found, search in the parent scope, if we have one */
277 Parent = Parent->Parent;
279 } while (Scope == 0 && Parent != 0);
286 SymEntry* SymFindLocal (SymEntry* Parent, const StrBuf* Name, int AllocNew)
287 /* Find a cheap local symbol. If AllocNew is given and the entry is not
288 * found, create a new one. Return the entry found, or the new entry created,
289 * or - in case AllocNew is zero - return 0.
295 /* Local symbol, get the table */
297 /* No last global, so there's no local table */
298 Error ("No preceeding global symbol");
300 return NewSymEntry (Name, SF_LOCAL);
306 /* Search for the symbol if we have a table */
307 Cmp = SymSearchTree (Parent->Locals, Name, &S);
309 /* If we found an entry, return it */
316 /* Otherwise create a new entry, insert and return it */
317 SymEntry* N = NewSymEntry (Name, SF_LOCAL);
320 } else if (Cmp < 0) {
328 /* We did not find the entry and AllocNew is false. */
334 SymEntry* SymFind (SymTable* Scope, const StrBuf* Name, int AllocNew)
335 /* Find a new symbol table entry in the given table. If AllocNew is given and
336 * the entry is not found, create a new one. Return the entry found, or the
337 * new entry created, or - in case AllocNew is zero - return 0.
342 /* Global symbol: Get the hash value for the name */
343 unsigned Hash = HashBuf (Name) % Scope->TableSlots;
345 /* Search for the entry */
346 int Cmp = SymSearchTree (Scope->Table[Hash], Name, &S);
348 /* If we found an entry, return it */
355 /* Otherwise create a new entry, insert and return it */
356 SymEntry* N = NewSymEntry (Name, SF_NONE);
358 Scope->Table[Hash] = N;
359 } else if (Cmp < 0) {
365 ++Scope->TableEntries;
370 /* We did not find the entry and AllocNew is false. */
376 SymEntry* SymFindAny (SymTable* Scope, const StrBuf* Name)
377 /* Find a symbol in the given or any of its parent scopes. The function will
378 * never create a new symbol, since this can only be done in one specific
384 /* Search in the current table */
385 Sym = SymFind (Scope, Name, SYM_FIND_EXISTING);
387 /* Found, return it */
391 /* Not found, search in the parent scope, if we have one */
392 Scope = Scope->Parent;
394 } while (Sym == 0 && Scope != 0);
396 /* Return the result */
402 unsigned char GetCurrentSymTabType ()
403 /* Return the type of the current symbol table */
405 CHECK (CurrentScope != 0);
406 return CurrentScope->Type;
411 static void SymCheckUndefined (SymEntry* S)
412 /* Handle an undefined symbol */
414 /* Undefined symbol. It may be...
416 * - An undefined symbol in a nested lexical level. In this
417 * case, search for the symbol in the higher levels and
418 * make the entry a trampoline entry if we find one.
420 * - If the symbol is not found, it is a real undefined symbol.
421 * If the AutoImport flag is set, make it an import. If the
422 * AutoImport flag is not set, it's an error.
425 SymTable* Tab = GetSymParentScope (S);
427 Sym = SymFind (Tab, GetStrBuf (S->Name), SYM_FIND_EXISTING);
428 if (Sym && (Sym->Flags & (SF_DEFINED | SF_IMPORT)) != 0) {
429 /* We've found a symbol in a higher level that is
430 * either defined in the source, or an import.
434 /* No matching symbol found in this level. Look further */
440 /* We found the symbol in a higher level. Transfer the flags and
441 * address size from the local symbol to that in the higher level
442 * and check for problems.
444 if (S->Flags & SF_EXPORT) {
445 if (Sym->Flags & SF_IMPORT) {
446 /* The symbol is already marked as import */
447 PError (&S->Pos, "Symbol `%s' is already an import",
448 GetString (Sym->Name));
450 if (Sym->Flags & SF_EXPORT) {
451 /* The symbol is already marked as an export. */
452 if (Sym->AddrSize > S->ExportSize) {
453 /* We're exporting a symbol smaller than it actually is */
454 PWarning (&S->Pos, 1, "Symbol `%m%p' is %s but exported %s",
456 AddrSizeToStr (Sym->AddrSize),
457 AddrSizeToStr (S->ExportSize));
460 /* Mark the symbol as an export */
461 Sym->Flags |= SF_EXPORT;
462 Sym->ExportSize = S->ExportSize;
463 if (Sym->ExportSize == ADDR_SIZE_DEFAULT) {
464 /* Use the actual size of the symbol */
465 Sym->ExportSize = Sym->AddrSize;
467 if (Sym->AddrSize > Sym->ExportSize) {
468 /* We're exporting a symbol smaller than it actually is */
469 PWarning (&S->Pos, 1, "Symbol `%m%p' is %s but exported %s",
471 AddrSizeToStr (Sym->AddrSize),
472 AddrSizeToStr (Sym->ExportSize));
476 Sym->Flags |= (S->Flags & SF_REFERENCED);
478 /* Transfer all expression references */
479 SymTransferExprRefs (S, Sym);
481 /* Mark the symbol as unused removing all other flags */
482 S->Flags = SF_UNUSED;
485 /* The symbol is definitely undefined */
486 if (S->Flags & SF_EXPORT) {
487 /* We will not auto-import an export */
488 PError (&S->Pos, "Exported symbol `%m%p' was never defined",
492 /* Mark as import, will be indexed later */
493 S->Flags |= SF_IMPORT;
494 /* Use the address size for code */
495 S->AddrSize = CodeAddrSize;
498 PError (&S->Pos, "Symbol `%m%p' is undefined", GetSymName (S));
507 /* Run through all symbols and check for anomalies and errors */
511 /* Check for open scopes */
512 if (CurrentScope->Parent != 0) {
513 Error ("Local scope was not closed");
516 /* First pass: Walk through all symbols, checking for undefined's and
517 * changing them to trampoline symbols or make them imports.
521 /* If the symbol is marked as global, mark it as export, if it is
522 * already defined, otherwise mark it as import.
524 if (S->Flags & SF_GLOBAL) {
525 if (S->Flags & SF_DEFINED) {
526 SymExportFromGlobal (S);
528 SymImportFromGlobal (S);
532 /* Handle undefined symbols */
533 if ((S->Flags & SF_UNDEFMASK) == SF_UNDEFVAL) {
534 /* This is an undefined symbol. Handle it. */
535 SymCheckUndefined (S);
542 /* Second pass: Walk again through the symbols. Count exports and imports
543 * and set address sizes where this has not happened before. Ignore
544 * undefined's, since we handled them in the last pass, and ignore unused
545 * symbols, since we handled them in the last pass, too.
549 if ((S->Flags & SF_UNUSED) == 0 &&
550 (S->Flags & SF_UNDEFMASK) != SF_UNDEFVAL) {
552 /* Check for defined symbols that were never referenced */
553 if ((S->Flags & SF_DEFINED) != 0 && (S->Flags & SF_REFERENCED) == 0) {
554 const StrBuf* Name = GetStrBuf (S->Name);
555 if (SB_At (Name, 0) != '.') { /* Ignore internals */
556 PWarning (&S->Pos, 2,
557 "Symbol `%m%p' is defined but never used",
562 /* Assign an index to all imports */
563 if (S->Flags & SF_IMPORT) {
564 if ((S->Flags & (SF_REFERENCED | SF_FORCED)) == SF_NONE) {
565 /* Imported symbol is not referenced */
566 PWarning (&S->Pos, 2,
567 "Symbol `%m%p' is imported but never used",
570 /* Give the import an index, count imports */
571 S->Index = ImportCount++;
572 S->Flags |= SF_INDEXED;
576 /* Assign an index to all exports */
577 if (S->Flags & SF_EXPORT) {
578 /* Give the export an index, count exports */
579 S->Index = ExportCount++;
580 S->Flags |= SF_INDEXED;
583 /* If the symbol is defined but has an unknown address size,
586 if (SymHasExpr (S) && S->AddrSize == ADDR_SIZE_DEFAULT) {
589 StudyExpr (S->Expr, &ED);
590 S->AddrSize = ED.AddrSize;
591 if (SymIsExport (S)) {
592 if (S->ExportSize == ADDR_SIZE_DEFAULT) {
593 /* Use the real export size */
594 S->ExportSize = S->AddrSize;
595 } else if (S->AddrSize > S->ExportSize) {
596 /* We're exporting a symbol smaller than it actually is */
597 PWarning (&S->Pos, 1,
598 "Symbol `%m%p' is %s but exported %s",
600 AddrSizeToStr (S->AddrSize),
601 AddrSizeToStr (S->ExportSize));
607 /* If the address size of the symbol was guessed, check the guess
608 * against the actual address size and print a warning if the two
611 if (S->AddrSize != ADDR_SIZE_DEFAULT) {
612 /* Do we have data for this address size? */
613 if (S->AddrSize <= sizeof (S->GuessedUse) / sizeof (S->GuessedUse[0])) {
614 /* Get the file position where the symbol was used */
615 const FilePos* P = S->GuessedUse[S->AddrSize - 1];
618 "Didn't use %s addressing for `%m%p'",
619 AddrSizeToStr (S->AddrSize),
634 void SymDump (FILE* F)
635 /* Dump the symbol table */
637 SymEntry* S = SymList;
640 /* Ignore unused symbols */
641 if ((S->Flags & SF_UNUSED) != 0) {
643 "%m%-24p %s %s %s %s %s\n",
645 (S->Flags & SF_DEFINED)? "DEF" : "---",
646 (S->Flags & SF_REFERENCED)? "REF" : "---",
647 (S->Flags & SF_IMPORT)? "IMP" : "---",
648 (S->Flags & SF_EXPORT)? "EXP" : "---",
649 AddrSizeToStr (S->AddrSize));
658 void WriteImports (void)
659 /* Write the imports list to the object file */
663 /* Tell the object file module that we're about to start the imports */
666 /* Write the import count to the list */
667 ObjWriteVar (ImportCount);
669 /* Walk throught list and write all valid imports to the file. An import
670 * is considered valid, if it is either referenced, or the forced bit is
671 * set. Otherwise, the import is ignored (no need to link in something
676 if ((S->Flags & (SF_UNUSED | SF_IMPORT)) == SF_IMPORT &&
677 (S->Flags & (SF_REFERENCED | SF_FORCED)) != 0) {
679 ObjWrite8 (S->AddrSize);
680 ObjWriteVar (S->Name);
681 ObjWritePos (&S->Pos);
686 /* Done writing imports */
692 void WriteExports (void)
693 /* Write the exports list to the object file */
698 /* Tell the object file module that we're about to start the exports */
701 /* Write the export count to the list */
702 ObjWriteVar (ExportCount);
704 /* Walk throught list and write all exports to the file */
707 if ((S->Flags & (SF_UNUSED | SF_EXPORT)) == SF_EXPORT) {
711 /* Get the expression bits */
712 unsigned char ExprMask = SymIsConst (S, &ConstVal)? EXP_CONST : EXP_EXPR;
713 ExprMask |= (S->Flags & SF_LABEL)? EXP_LABEL : EXP_EQUATE;
715 /* Count the number of ConDes types */
716 for (Type = 0; Type < CD_TYPE_COUNT; ++Type) {
717 if (S->ConDesPrio[Type] != CD_PRIO_NONE) {
718 INC_EXP_CONDES_COUNT (ExprMask);
722 /* Write the type and the export size */
723 ObjWrite8 (ExprMask);
724 ObjWrite8 (S->ExportSize);
726 /* Write any ConDes declarations */
727 if (GET_EXP_CONDES_COUNT (ExprMask) > 0) {
728 for (Type = 0; Type < CD_TYPE_COUNT; ++Type) {
729 unsigned char Prio = S->ConDesPrio[Type];
730 if (Prio != CD_PRIO_NONE) {
731 ObjWrite8 (CD_BUILD (Type, Prio));
737 ObjWriteVar (S->Name);
739 /* Write the value */
740 if ((ExprMask & EXP_MASK_VAL) == EXP_CONST) {
742 ObjWrite32 (ConstVal);
744 /* Expression involved */
748 /* Write the source file position */
749 ObjWritePos (&S->Pos);
754 /* Done writing exports */
760 void WriteDbgSyms (void)
761 /* Write a list of all symbols to the object file */
766 /* Tell the object file module that we're about to start the debug info */
769 /* Check if debug info is requested */
772 /* Walk through the list and count the symbols */
776 if ((S->Flags & SF_DBGINFOMASK) == SF_DBGINFOVAL) {
782 /* Write the symbol count to the list */
785 /* Walk through list and write all symbols to the file */
788 if ((S->Flags & SF_DBGINFOMASK) == SF_DBGINFOVAL) {
792 /* Get the expression bits */
793 unsigned char ExprMask = (SymIsConst (S, &ConstVal))? EXP_CONST : EXP_EXPR;
794 ExprMask |= (S->Flags & SF_LABEL)? EXP_LABEL : EXP_EQUATE;
797 ObjWrite8 (ExprMask);
799 /* Write the address size */
800 ObjWrite8 (S->AddrSize);
803 ObjWriteVar (S->Name);
805 /* Write the value */
806 if ((ExprMask & EXP_MASK_VAL) == EXP_CONST) {
808 ObjWrite32 (ConstVal);
810 /* Expression involved */
814 /* Write the source file position */
815 ObjWritePos (&S->Pos);
822 /* No debug symbols */
827 /* Done writing debug symbols */
833 void WriteScopes (void)
834 /* Write the scope table to the object file */
836 /* Tell the object file module that we're about to start the scopes */
842 /* Done writing the scopes */