2000-05-28 13:40:48 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* dbgsyms.c */
|
|
|
|
/* */
|
2001-05-29 07:39:46 +00:00
|
|
|
/* Debug symbol handling for the ld65 linker */
|
2000-05-28 13:40:48 +00:00
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* */
|
2011-01-26 19:42:17 +00:00
|
|
|
/* (C) 1998-2011, Ullrich von Bassewitz */
|
2010-07-30 20:58:51 +00:00
|
|
|
/* Roemerstrasse 52 */
|
|
|
|
/* D-70794 Filderstadt */
|
|
|
|
/* EMail: uz@cc65.org */
|
2000-05-28 13:40:48 +00:00
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2003-08-15 10:59:22 +00:00
|
|
|
/* common */
|
2003-12-13 19:55:22 +00:00
|
|
|
#include "addrsize.h"
|
2000-08-01 15:17:43 +00:00
|
|
|
#include "check.h"
|
|
|
|
#include "symdefs.h"
|
|
|
|
#include "xmalloc.h"
|
2000-08-02 13:23:06 +00:00
|
|
|
|
2000-08-01 15:17:43 +00:00
|
|
|
/* ld65 */
|
2003-06-04 12:40:14 +00:00
|
|
|
#include "dbgsyms.h"
|
2000-05-28 13:40:48 +00:00
|
|
|
#include "error.h"
|
2003-06-04 12:40:14 +00:00
|
|
|
#include "expr.h"
|
2000-05-28 13:40:48 +00:00
|
|
|
#include "fileio.h"
|
2003-06-04 12:40:14 +00:00
|
|
|
#include "global.h"
|
2011-01-26 19:42:17 +00:00
|
|
|
#include "lineinfo.h"
|
2000-05-28 13:40:48 +00:00
|
|
|
#include "objdata.h"
|
2003-06-04 12:40:14 +00:00
|
|
|
#include "spool.h"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Data */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* We will collect all debug symbols in the following array and remove
|
|
|
|
* duplicates before outputing them.
|
|
|
|
*/
|
2003-08-15 10:59:22 +00:00
|
|
|
static DbgSym* DbgSymPool[256];
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Code */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-11-28 22:12:14 +00:00
|
|
|
static DbgSym* NewDbgSym (unsigned char Type, unsigned char AddrSize, ObjData* O)
|
2000-05-28 13:40:48 +00:00
|
|
|
/* Create a new DbgSym and return it */
|
|
|
|
{
|
|
|
|
/* Allocate memory */
|
2011-01-26 19:42:17 +00:00
|
|
|
DbgSym* D = xmalloc (sizeof (DbgSym));
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
/* Initialize the fields */
|
2011-01-26 19:42:17 +00:00
|
|
|
D->Next = 0;
|
|
|
|
D->Flags = 0;
|
|
|
|
D->Obj = O;
|
|
|
|
D->LineInfos = EmptyCollection;
|
|
|
|
D->Expr = 0;
|
2011-06-13 18:43:50 +00:00
|
|
|
D->Size = 0;
|
2011-01-26 19:42:17 +00:00
|
|
|
D->Name = 0;
|
|
|
|
D->Type = Type;
|
|
|
|
D->AddrSize = AddrSize;
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
/* Return the new entry */
|
|
|
|
return D;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static DbgSym* GetDbgSym (DbgSym* D, long Val)
|
|
|
|
/* Check if we find the same debug symbol in the table. If we find it, return
|
|
|
|
* a pointer to the other occurrence, if we didn't find it, return NULL.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
/* Create the hash. We hash over the symbol value */
|
|
|
|
unsigned Hash = ((Val >> 24) & 0xFF) ^
|
2010-07-30 20:58:51 +00:00
|
|
|
((Val >> 16) & 0xFF) ^
|
|
|
|
((Val >> 8) & 0xFF) ^
|
|
|
|
((Val >> 0) & 0xFF);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
/* Check for this symbol */
|
2003-06-04 12:40:14 +00:00
|
|
|
DbgSym* Sym = DbgSymPool[Hash];
|
2000-05-28 13:40:48 +00:00
|
|
|
while (Sym) {
|
|
|
|
/* Is this symbol identical? */
|
2003-06-04 12:40:14 +00:00
|
|
|
if (Sym->Name == D->Name && EqualExpr (Sym->Expr, D->Expr)) {
|
2000-05-28 13:40:48 +00:00
|
|
|
/* Found */
|
|
|
|
return Sym;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next symbol */
|
|
|
|
Sym = Sym->Next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is the first symbol of it's kind */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void InsertDbgSym (DbgSym* D, long Val)
|
|
|
|
/* Insert the symbol into the hashed symbol pool */
|
|
|
|
{
|
|
|
|
/* Create the hash. We hash over the symbol value */
|
|
|
|
unsigned Hash = ((Val >> 24) & 0xFF) ^
|
2011-06-14 19:25:50 +00:00
|
|
|
((Val >> 16) & 0xFF) ^
|
|
|
|
((Val >> 8) & 0xFF) ^
|
|
|
|
((Val >> 0) & 0xFF);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
/* Insert the symbol */
|
|
|
|
D->Next = DbgSymPool [Hash];
|
|
|
|
DbgSymPool [Hash] = D;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DbgSym* ReadDbgSym (FILE* F, ObjData* O)
|
|
|
|
/* Read a debug symbol from a file, insert and return it */
|
|
|
|
{
|
2003-11-28 22:12:14 +00:00
|
|
|
/* Read the type and address size */
|
2011-06-13 18:43:50 +00:00
|
|
|
unsigned Type = ReadVar (F);
|
2003-11-28 22:12:14 +00:00
|
|
|
unsigned char AddrSize = Read8 (F);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-08-02 13:23:06 +00:00
|
|
|
/* Create a new debug symbol */
|
2003-11-28 22:12:14 +00:00
|
|
|
DbgSym* D = NewDbgSym (Type, AddrSize, O);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-08-02 13:23:06 +00:00
|
|
|
/* Read and assign the name */
|
2003-06-04 12:40:14 +00:00
|
|
|
D->Name = MakeGlobalStringId (O, ReadVar (F));
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
/* Read the value */
|
2010-08-17 20:47:27 +00:00
|
|
|
if (SYM_IS_EXPR (D->Type)) {
|
2000-05-28 13:40:48 +00:00
|
|
|
D->Expr = ReadExpr (F, O);
|
|
|
|
} else {
|
|
|
|
D->Expr = LiteralExpr (Read32 (F), O);
|
|
|
|
}
|
|
|
|
|
2011-06-13 18:43:50 +00:00
|
|
|
/* Read the size */
|
|
|
|
if (SYM_HAS_SIZE (D->Type)) {
|
|
|
|
D->Size = ReadVar (F);
|
|
|
|
}
|
|
|
|
|
2011-01-26 19:42:17 +00:00
|
|
|
/* Last is the list of line infos for this symbol */
|
|
|
|
ReadLineInfoList (F, O, &D->LineInfos);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
/* Return the new DbgSym */
|
|
|
|
return D;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-12-13 19:55:22 +00:00
|
|
|
void ClearDbgSymTable (void)
|
2003-08-15 10:59:22 +00:00
|
|
|
/* Clear the debug symbol table */
|
|
|
|
{
|
|
|
|
unsigned I;
|
|
|
|
for (I = 0; I < sizeof (DbgSymPool) / sizeof (DbgSymPool[0]); ++I) {
|
|
|
|
DbgSym* Sym = DbgSymPool[I];
|
|
|
|
DbgSymPool[I] = 0;
|
|
|
|
while (Sym) {
|
|
|
|
DbgSym* NextSym = Sym->Next;
|
|
|
|
Sym->Next = 0;
|
|
|
|
Sym = NextSym;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-07-30 20:58:51 +00:00
|
|
|
long GetDbgSymVal (const DbgSym* D)
|
2000-05-28 13:40:48 +00:00
|
|
|
/* Get the value of this symbol */
|
|
|
|
{
|
|
|
|
CHECK (D->Expr != 0);
|
|
|
|
return GetExprVal (D->Expr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-08-15 10:59:22 +00:00
|
|
|
void PrintDbgSyms (ObjData* O, FILE* F)
|
|
|
|
/* Print the debug symbols in a debug file */
|
|
|
|
{
|
|
|
|
unsigned I;
|
|
|
|
|
|
|
|
/* Walk through all debug symbols in this module */
|
2010-07-30 20:58:51 +00:00
|
|
|
for (I = 0; I < CollCount (&O->DbgSyms); ++I) {
|
2003-08-15 10:59:22 +00:00
|
|
|
|
|
|
|
long Val;
|
|
|
|
|
|
|
|
/* Get the next debug symbol */
|
2011-06-14 19:25:50 +00:00
|
|
|
DbgSym* S = CollAt (&O->DbgSyms, I);
|
2003-08-15 10:59:22 +00:00
|
|
|
|
|
|
|
/* Get the symbol value */
|
2011-06-14 19:25:50 +00:00
|
|
|
Val = GetDbgSymVal (S);
|
2003-08-15 10:59:22 +00:00
|
|
|
|
|
|
|
/* Lookup this symbol in the table. If it is found in the table, it was
|
|
|
|
* already written to the file, so don't emit it twice. If it is not in
|
|
|
|
* the table, insert and output it.
|
|
|
|
*/
|
2011-06-14 19:25:50 +00:00
|
|
|
if (GetDbgSym (S, Val) == 0) {
|
2003-08-15 10:59:22 +00:00
|
|
|
|
2011-06-14 19:25:50 +00:00
|
|
|
SegExprDesc D;
|
|
|
|
|
|
|
|
/* Emit the base data for the entry */
|
2003-08-15 10:59:22 +00:00
|
|
|
fprintf (F,
|
2011-06-13 18:43:50 +00:00
|
|
|
"sym\tname=\"%s\",value=0x%lX,addrsize=%s,type=%s",
|
2011-06-14 19:25:50 +00:00
|
|
|
GetString (S->Name),
|
2003-10-17 00:38:01 +00:00
|
|
|
Val,
|
2011-06-14 19:25:50 +00:00
|
|
|
AddrSizeToStr (S->AddrSize),
|
|
|
|
SYM_IS_LABEL (S->Type)? "label" : "equate");
|
|
|
|
|
|
|
|
/* Emit the size only if we know it */
|
|
|
|
if (S->Size != 0) {
|
|
|
|
fprintf (F, ",size=%lu", S->Size);
|
2011-06-13 18:43:50 +00:00
|
|
|
}
|
2011-06-14 19:25:50 +00:00
|
|
|
|
|
|
|
/* Check for a segmented expression and add the segment id to the
|
|
|
|
* debug info if we have one.
|
|
|
|
*/
|
|
|
|
GetSegExprVal (S->Expr, &D);
|
|
|
|
if (!D.TooComplex && D.Seg != 0) {
|
|
|
|
fprintf (F, ",segment=%u", D.Seg->Id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Terminate the output line */
|
2011-06-13 18:43:50 +00:00
|
|
|
fputc ('\n', F);
|
2003-08-15 10:59:22 +00:00
|
|
|
|
|
|
|
/* Insert the symbol into the table */
|
2011-06-14 19:25:50 +00:00
|
|
|
InsertDbgSym (S, Val);
|
2003-08-15 10:59:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
void PrintDbgSymLabels (ObjData* O, FILE* F)
|
|
|
|
/* Print the debug symbols in a VICE label file */
|
|
|
|
{
|
|
|
|
unsigned I;
|
|
|
|
|
|
|
|
/* Walk through all debug symbols in this module */
|
2010-07-30 20:58:51 +00:00
|
|
|
for (I = 0; I < CollCount (&O->DbgSyms); ++I) {
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-08-15 10:59:22 +00:00
|
|
|
long Val;
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
/* Get the next debug symbol */
|
2010-07-30 20:58:51 +00:00
|
|
|
DbgSym* D = CollAt (&O->DbgSyms, I);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-08-15 10:59:22 +00:00
|
|
|
/* Emit this symbol only if it is a label (ignore equates) */
|
2010-08-17 20:47:27 +00:00
|
|
|
if (SYM_IS_EQUATE (D->Type)) {
|
2003-08-15 10:59:22 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
/* Get the symbol value */
|
2003-08-15 10:59:22 +00:00
|
|
|
Val = GetDbgSymVal (D);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
/* Lookup this symbol in the table. If it is found in the table, it was
|
|
|
|
* already written to the file, so don't emit it twice. If it is not in
|
|
|
|
* the table, insert and output it.
|
|
|
|
*/
|
|
|
|
if (GetDbgSym (D, Val) == 0) {
|
|
|
|
|
|
|
|
/* Emit the VICE label line */
|
2003-06-04 12:40:14 +00:00
|
|
|
fprintf (F, "al %06lX .%s\n", Val, GetString (D->Name));
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
/* Insert the symbol into the table */
|
|
|
|
InsertDbgSym (D, Val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-12-13 19:55:22 +00:00
|
|
|
|