]> git.sur5r.net Git - cc65/blob - src/cc65/lineinfo.c
60ba962efb19e5e210be73b7fbffb700604f71d3
[cc65] / src / cc65 / lineinfo.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                lineinfo.c                                 */
4 /*                                                                           */
5 /*                      Source file line info structure                      */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2001     Ullrich von Bassewitz                                        */
10 /*              Wacholderweg 14                                              */
11 /*              D-70597 Stuttgart                                            */
12 /* EMail:       uz@musoftware.de                                             */
13 /*                                                                           */
14 /*                                                                           */
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.                                    */
18 /*                                                                           */
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:                            */
22 /*                                                                           */
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              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <string.h>
37
38 /* common */
39 #include "chartype.h"
40 #include "check.h"
41 #include "xmalloc.h"
42
43 /* cc65 */
44 #include "global.h"
45 #include "input.h"
46 #include "lineinfo.h"
47
48
49
50 /*****************************************************************************/
51 /*                                   Data                                    */
52 /*****************************************************************************/
53
54
55
56 /* Global pointer to line information for the current line */
57 static LineInfo* CurLineInfo = 0;
58
59
60
61 /*****************************************************************************/
62 /*                                   Code                                    */
63 /*****************************************************************************/
64
65
66
67 static LineInfo* NewLineInfo (struct IFile* F, unsigned LineNum, const char* Line)
68 /* Create and return a new line info. Ref count will be 1. */
69 {
70     unsigned  Len;
71     LineInfo* LI;
72     char*     S;
73
74     /* Skip leading spaces in Line */
75     while (IsBlank (*Line)) {
76         ++Line;
77     }
78
79     /* Calculate the length of the line */
80     Len = strlen (Line);
81
82     /* Allocate memory */
83     LI = xmalloc (sizeof (LineInfo) + Len);
84
85     /* Initialize the fields */
86     LI->RefCount  = 1;
87     LI->InputFile = F;
88     LI->LineNum   = LineNum;
89     memcpy (LI->Line, Line, Len+1);
90
91     /* Replace tabs by spaces in the given line since tabs will give rather
92      * arbitrary results when used in the output later, and if we do it here,
93      * we won't need another copy.
94      */
95     S = LI->Line;
96     while (*S) {
97         if (*S == '\t') {
98             *S = ' ';
99         }
100         ++S;
101     }
102
103     /* Return the new struct */
104     return LI;
105 }
106
107
108
109 static void FreeLineInfo (LineInfo* LI)
110 /* Free a LineInfo structure */
111 {
112     xfree (LI);
113 }
114
115
116
117 LineInfo* UseLineInfo (LineInfo* LI)
118 /* Increase the reference count of the given line info and return it. */
119 {
120     CHECK (LI != 0);
121     ++LI->RefCount;
122     return LI;
123 }
124
125
126
127 void ReleaseLineInfo (LineInfo* LI)
128 /* Release a reference to the given line info, free the structure if the
129  * reference count drops to zero.
130  */
131 {
132     CHECK (LI && LI->RefCount > 0);
133     if (--LI->RefCount == 0) {
134         /* No more references, free it */
135         FreeLineInfo (LI);
136     }
137 }
138
139
140
141 LineInfo* GetCurLineInfo (void)
142 /* Return a pointer to the current line info. The reference count is NOT
143  * increased, use UseLineInfo for that purpose.
144  */
145 {
146     return CurLineInfo;
147 }
148
149
150
151 void UpdateLineInfo (struct IFile* F, unsigned LineNum, const char* Line)
152 /* Update the line info - called if a new line is read */
153 {
154     /* If a current line info exists, release it */
155     if (CurLineInfo) {
156         ReleaseLineInfo (CurLineInfo);
157     }
158
159     /* If we have intermixed assembly switched off, use an empty line instead
160      * of the supplied one to save some memory.
161      */
162     if (!AddSource) {
163         Line = "";
164     }
165
166     /* Create a new line info */
167     CurLineInfo = NewLineInfo (F, LineNum, Line);
168 }
169
170
171
172 const char* GetInputName (const LineInfo* LI)
173 /* Return the file name from a line info */
174 {
175     PRECONDITION (LI != 0);
176     return LI->InputFile->Name;
177 }
178
179
180
181 unsigned GetInputLine (const LineInfo* LI)
182 /* Return the line number from a line info */
183 {
184     PRECONDITION (LI != 0);
185     return LI->LineNum;
186 }
187
188
189