aboutsummaryrefslogtreecommitdiffstats
path: root/asmdebug.c
blob: f94cf09920b9cacb5b7f64eeee98249fb56d249f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*****************************************************************************/
/* AS-Portierung                                                             */
/*                                                                           */
/* Verwaltung der Debug-Informationen zur Assemblierzeit                     */
/*                                                                           */
/* Historie: 16. 5.1996 Grundsteinlegung                                     */
/*           24. 7.1998 NoICE-Format                                         */
/*           25. 7.1998 Adresserfassung Dateien                              */
/*           16. 8.1998 Case-Sensitivitaet NoICE                             */
/*                      NoICE-Zeileninfo nach Dateien sortiert               */
/*           29. 1.1999 uninitialisierten Speicherzugriff beseitigt          */
/*            2. 5.1999 optional mehrere Records im Atmel-Format schreiben   */
/*                                                                           */
/*****************************************************************************/


#include "stdinc.h"
#include <string.h>

#include "endian.h"
#include "strutil.h"
#include "chunks.h"
#include "asmdef.h"
#include "asmsub.h"
#include "asmpars.h"
#include "asmfnums.h"

#include "asmdebug.h"


typedef struct 
         {
          Boolean InMacro;
          LongInt LineNum;
          Integer FileName;
          ShortInt Space;
          LargeInt Address;
          Word Code;
         } TLineInfo;

typedef struct _TLineInfoList
         {
          struct _TLineInfoList *Next;
          TLineInfo Contents;
         } TLineInfoList,*PLineInfoList;

String TempFileName;
FILE *TempFile;
PLineInfoList LineInfoRoot;


	void AddLineInfo(Boolean InMacro, LongInt LineNum, char *FileName,
                         ShortInt Space, LargeInt Address, LargeInt Len)
BEGIN
   PLineInfoList PNeu, PFirst, PLast, Run, Link;
   int RecCnt, z;
   Integer FNum;

   /* wieviele Records schreiben ? */

   if ((DebugMode == DebugAtmel) AND (CodeLen > 1)) RecCnt = CodeLen;
   else RecCnt = 1;

   FNum = GetFileNum(FileName);

   /* Einfuegepunkt in Liste finden */

   Run = LineInfoRoot;
   if (Run == Nil)
    Link = Nil;
   else
    BEGIN
     while ((Run->Next != Nil) AND (Run->Next->Contents.Space < Space)) Run = Run->Next;
     while ((Run->Next != Nil) AND (Run->Next->Contents.FileName < FNum)) Run = Run->Next;
     while ((Run->Next != Nil) AND (Run->Next->Contents.Address < Address)) Run = Run->Next;
     Link = Run->Next;
    END

   /* neue Teilliste bilden */

   PLast = PFirst = NULL;
   for (z = 0; z < RecCnt; z++)
    BEGIN
     PNeu = (PLineInfoList) malloc(sizeof(TLineInfoList));
     PNeu->Contents.InMacro = InMacro;
     PNeu->Contents.LineNum = LineNum;
     PNeu->Contents.FileName = FNum;
     PNeu->Contents.Space = Space;
     PNeu->Contents.Address = Address + z;
     PNeu->Contents.Code = ((CodeLen < z + 1) OR (DontPrint)) ? 0 : WAsmCode[z];
     if (z == 0) PFirst = PNeu;
     if (PLast != NULL) PLast->Next = PNeu;
     PLast = PNeu;
    END

   /* Teilliste einhaengen */

   if (Run == Nil) LineInfoRoot = PFirst;
   else Run->Next = PFirst;
   PLast->Next = Link;

   if (Space == SegCode)
    AddAddressRange(FNum, Address, Len);
END


	void InitLineInfo(void)
BEGIN
   TempFileName[0]='\0'; LineInfoRoot=Nil;
END


        void ClearLineInfo(void)
BEGIN
   PLineInfoList Run;

   if (TempFileName[0]!='\0')
    BEGIN
     fclose(TempFile); unlink(TempFileName);
    END

   while (LineInfoRoot!=Nil)
    BEGIN
     Run=LineInfoRoot; LineInfoRoot=LineInfoRoot->Next;
     free(Run);
    END

   InitLineInfo();
END


	static void DumpDebugInfo_MAP(void)
BEGIN
   PLineInfoList Run;
   Integer ActFile;
   int ModZ;
   ShortInt ActSeg;
   FILE *MAPFile;
   String MAPName,Tmp;

   strmaxcpy(MAPName,SourceFile,255); KillSuffix(MAPName); AddSuffix(MAPName,MapSuffix);
   MAPFile=fopen(MAPName,"w"); if (MAPFile==Nil) ChkIO(10001);

   Run=LineInfoRoot; ActSeg=(-1); ActFile=(-1); ModZ=0;
   while (Run!=Nil)
    BEGIN
     if (Run->Contents.Space!=ActSeg)
      BEGIN
       ActSeg=Run->Contents.Space;
       if (ModZ!=0)
        BEGIN
         errno=0; fprintf(MAPFile,"\n"); ChkIO(10004);
        END
       ModZ=0;
       errno=0; fprintf(MAPFile,"Segment %s\n",SegNames[ActSeg]); ChkIO(10004);
       ActFile=(-1);
      END
     if (Run->Contents.FileName!=ActFile)
      BEGIN
       ActFile=Run->Contents.FileName;
       if (ModZ!=0)
        BEGIN
         errno=0; fprintf(MAPFile,"\n"); ChkIO(10004);
        END
       ModZ=0;
       errno=0; fprintf(MAPFile,"File %s\n",GetFileName(Run->Contents.FileName)); ChkIO(10004);
      END;
     errno=0; 
     sprintf(Tmp,LongIntFormat,Run->Contents.LineNum);
     fprintf(MAPFile,"%5s:%s ",Tmp,HexString(Run->Contents.Address,8)); 
     ChkIO(10004);
     if (++ModZ==5)
      BEGIN
       errno=0; fprintf(MAPFile,"\n"); ChkIO(10004); ModZ=0;
      END
     Run=Run->Next;
    END
   if (ModZ!=0)
    BEGIN
     errno=0; fprintf(MAPFile,"\n"); ChkIO(10004);
    END

   PrintDebSymbols(MAPFile);

   PrintDebSections(MAPFile);

   fclose(MAPFile);
END

        static void DumpDebugInfo_Atmel(void)
BEGIN
   static char *OBJString="AVR Object File";
   PLineInfoList Run;
   LongInt FNamePos,RecPos;
   FILE *OBJFile;
   String OBJName;
   char *FName;
   Byte TByte,TNum,NameCnt;
   int z;
   LongInt LTurn;
   Word WTurn;

   strmaxcpy(OBJName,SourceFile,255);
   KillSuffix(OBJName); AddSuffix(OBJName,OBJSuffix);
   OBJFile=fopen(OBJName,OPENWRMODE); if (OBJFile==Nil) ChkIO(10001);

   /* initialer Kopf, Positionen noch unbekannt */

   FNamePos=0; RecPos=0;
   if (NOT Write4(OBJFile,&FNamePos)) ChkIO(10004);
   if (NOT Write4(OBJFile,&RecPos)) ChkIO(10004);
   TByte=9; if (fwrite(&TByte,1,1,OBJFile)!=1) ChkIO(10004);
   NameCnt=GetFileCount()-1; if (fwrite(&NameCnt,1,1,OBJFile)!=1) ChkIO(10004);
   if (fwrite(OBJString,1,strlen(OBJString)+1,OBJFile)!=strlen(OBJString)+1) ChkIO(10004);

   /* Objekt-Records */

   RecPos=ftell(OBJFile);
   for (Run=LineInfoRoot; Run!=Nil; Run=Run->Next)
    if (Run->Contents.Space==SegCode)
     BEGIN
      LTurn=Run->Contents.Address; if (NOT BigEndian) DSwap(&LTurn,4);
      if (fwrite(((Byte *) &LTurn)+1,1,3,OBJFile)!=3) ChkIO(10004);
      WTurn=Run->Contents.Code; if (NOT BigEndian) WSwap(&WTurn,2);
      if (fwrite(&WTurn,1,2,OBJFile)!=2) ChkIO(10004);
      TNum=Run->Contents.FileName-1; if (fwrite(&TNum,1,1,OBJFile)!=1) ChkIO(10004);
      WTurn=Run->Contents.LineNum; if (NOT BigEndian) WSwap(&WTurn,2);
      if (fwrite(&WTurn,1,2,OBJFile)!=2) ChkIO(10004);
      TNum=Ord(Run->Contents.InMacro); if (fwrite(&TNum,1,1,OBJFile)!=1) ChkIO(10004);
     END

   /* Dateinamen */

   FNamePos=ftell(OBJFile);
   for (z=1; z<=NameCnt; z++)
    BEGIN
     FName=NamePart(GetFileName(z));
     if (fwrite(FName,1,strlen(FName)+1,OBJFile)!=strlen(FName)+1) ChkIO(10004);
    END
   TByte=0;
   if (fwrite(&TByte,1,1,OBJFile)!=1) ChkIO(10004);

   /* korrekte Positionen in Kopf schreiben */

   rewind(OBJFile);
   if (NOT BigEndian) DSwap(&FNamePos,4);
   if (fwrite(&FNamePos,1,4,OBJFile)!=4) ChkIO(10004);
   if (NOT BigEndian) DSwap(&RecPos,4);
   if (fwrite(&RecPos,1,4,OBJFile)!=4) ChkIO(10004);

   fclose(OBJFile);
END

	static void DumpDebugInfo_NOICE(void)
BEGIN
   PLineInfoList Run;
   Integer ActFile;
   FILE *MAPFile;
   String MAPName,Tmp1,Tmp2;
   LargeWord Start,End;
   Boolean HadLines;

   strmaxcpy(MAPName,SourceFile,255); KillSuffix(MAPName); AddSuffix(MAPName,".noi");
   MAPFile=fopen(MAPName,"w"); if (MAPFile==Nil) ChkIO(10001);

   fprintf(MAPFile,"CASE %d\n",(CaseSensitive) ? 1 : 0);

   PrintNoISymbols(MAPFile);

   for (ActFile=0; ActFile<GetFileCount(); ActFile++)
    BEGIN
     HadLines=FALSE;
     Run=LineInfoRoot;
     while (Run!=Nil)
      BEGIN
       if ((Run->Contents.Space==SegCode) AND (Run->Contents.FileName==ActFile))
        BEGIN
         if (NOT HadLines)
          BEGIN
           GetAddressRange(ActFile,&Start,&End);
           sprintf(Tmp1,LargeIntFormat,Start);
           errno=0; 
           fprintf(MAPFile,"FILE %s %s\n",GetFileName(Run->Contents.FileName),Tmp1);
           ChkIO(10004);
          END
         errno=0; 
         sprintf(Tmp1,LongIntFormat,Run->Contents.LineNum);
         sprintf(Tmp2,LargeIntFormat,Run->Contents.Address-Start);
         fprintf(MAPFile,"LINE %s %s\n",Tmp1,Tmp2); 
         ChkIO(10004);
         HadLines=TRUE;
        END
       Run=Run->Next;
      END
     if (HadLines)
      BEGIN
       sprintf(Tmp1,LongIntFormat,End);
       errno=0; fprintf(MAPFile,"ENDFILE %s\n",Tmp1); ChkIO(10004);
      END
    END

   fclose(MAPFile);
END


        void DumpDebugInfo(void)
BEGIN
   switch (DebugMode)
    BEGIN
     case DebugMAP: DumpDebugInfo_MAP(); break;
     case DebugAtmel: DumpDebugInfo_Atmel(); break;
     case DebugNoICE: DumpDebugInfo_NOICE(); break;
     default: break;
    END
END


	void asmdebug_init(void)
BEGIN
END