112 lines
4.3 KiB
C
112 lines
4.3 KiB
C
/*****************************************************************************/
|
|
/* */
|
|
/* dbginfo.c */
|
|
/* */
|
|
/* Debug info handling for the ld65 linker */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* (C) 2001-2011, Ullrich von Bassewitz */
|
|
/* Roemerstrasse 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. */
|
|
/* */
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
/* common */
|
|
#include "lidefs.h"
|
|
|
|
/* ld65 */
|
|
#include "dbginfo.h"
|
|
#include "fileinfo.h"
|
|
#include "lineinfo.h"
|
|
#include "segments.h"
|
|
#include "spool.h"
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
/* Code */
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
void PrintDbgInfo (ObjData* O, FILE* F)
|
|
/* Print the debug info into a file */
|
|
{
|
|
unsigned I, J;
|
|
|
|
/* Output the files section */
|
|
for (I = 0; I < CollCount (&O->Files); ++I) {
|
|
FileInfo* FI = CollAt (&O->Files, I);
|
|
if (!FI->Dumped) {
|
|
fprintf (F,
|
|
"file\tid=%u,name=\"%s\",size=%lu,mtime=0x%08lX\n",
|
|
FI->Id, GetString (FI->Name), FI->Size, FI->MTime);
|
|
FI->Dumped = 1;
|
|
}
|
|
}
|
|
|
|
/* Output the line infos */
|
|
for (I = 0; I < CollCount (&O->LineInfos); ++I) {
|
|
|
|
/* Get this line info */
|
|
const LineInfo* LI = CollConstAt (&O->LineInfos, I);
|
|
|
|
/* Get the line info type and count */
|
|
unsigned Type = LI_GET_TYPE (LI->Type);
|
|
unsigned Count = LI_GET_COUNT (LI->Type);
|
|
|
|
/* Get a pointer to the spans */
|
|
const Collection* Spans = &LI->Spans;
|
|
|
|
/* Spans */
|
|
for (J = 0; J < CollCount (Spans); ++J) {
|
|
|
|
/* Get this code range */
|
|
const Span* S = CollConstAt (Spans, J);
|
|
|
|
/* Print it */
|
|
fprintf (F,
|
|
"line\tfile=%u,line=%lu,segment=%u,range=0x%lX-0x%lX",
|
|
LI->File->Id, GetSourceLine (LI), S->Seg->Id,
|
|
S->Offs, S->Offs + S->Size - 1);
|
|
|
|
/* Print type if not LI_TYPE_ASM and count if not zero */
|
|
if (Type != LI_TYPE_ASM) {
|
|
fprintf (F, ",type=%u", Type);
|
|
}
|
|
if (Count != 0) {
|
|
fprintf (F, ",count=%u", Count);
|
|
}
|
|
|
|
/* Terminate line */
|
|
fputc ('\n', F);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|