1 /*****************************************************************************/
5 /* Source file line info structure */
9 /* (C) 2001 Ullrich von Bassewitz */
11 /* D-70597 Stuttgart */
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 /*****************************************************************************/
36 /* Note: The line infos kept here are additional line infos supplied by the
37 * ".dbg line" command. The native line infos are always kept in the fragments
38 * itself (because one fragment always originates from one line). The
39 * additional line infos (which may not exist if none are supplied in the
40 * source) may have several fragments attached (as is the case with sources
41 * generated by the C compiler).
60 /*****************************************************************************/
62 /*****************************************************************************/
66 /* The LineInfo structure is shared between several fragments, so we need a
69 typedef struct LineInfo LineInfo;
71 unsigned Usage; /* Usage counter */
72 unsigned Index; /* Index */
73 FilePos Pos; /* File position */
76 /* Collection containing all line infos */
77 extern Collection LineInfoColl;
78 extern unsigned LineInfoValid; /* Valid, that is, used entries */
80 /* Global pointer to last line info or NULL if not active */
81 extern LineInfo* CurLineInfo;
85 /*****************************************************************************/
87 /*****************************************************************************/
91 LineInfo* UseLineInfo (LineInfo* LI);
92 /* Increase the reference count of the given line info and return it. The
93 * function will gracefully accept NULL pointers and do nothing in this case.
96 void GenLineInfo (unsigned FileIndex, unsigned long LineNum);
97 /* Generate a new line info */
99 void ClearLineInfo (void);
100 /* Clear the current line info */
102 void MakeLineInfoIndex (void);
103 /* Walk over the line info list and make an index of all entries ignoring
104 * those with a usage count of zero.
107 void WriteLineInfo (void);
108 /* Write a list of all line infos to the object file. */
112 /* End of lineinfo.h */