]> git.sur5r.net Git - cc65/blob - src/cc65/compile.c
Added support for old style (K&R) function declarations.
[cc65] / src / cc65 / compile.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 compile.c                                 */
4 /*                                                                           */
5 /*                       Top level compiler subroutine                       */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000     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 <stdlib.h>
37
38 #include "../common/version.h"
39
40 #include "asmlabel.h"
41 #include "codegen.h"
42 #include "declare.h"
43 #include "error.h"
44 #include "expr.h"
45 #include "function.h"
46 #include "global.h"
47 #include "include.h"
48 #include "io.h"
49 #include "litpool.h"
50 #include "macrotab.h"
51 #include "pragma.h"
52 #include "symtab.h"
53 #include "compile.h"
54
55
56
57 /*****************************************************************************/
58 /*                                   Code                                    */
59 /*****************************************************************************/
60
61
62
63 static void Parse (void)
64 /* Process all input text.
65  * At this level, only static declarations, defines, includes, and function
66  * definitions are legal....
67  */
68 {
69     int comma;
70     SymEntry* Entry;
71
72     kill ();
73     NextToken ();                       /* "prime" the pump */
74     NextToken ();
75     while (curtok != TOK_CEOF) {
76
77         DeclSpec        Spec;
78         Declaration     Decl;
79         int             NeedStorage;
80
81         /* Check for empty statements */
82         if (curtok == TOK_SEMI) {
83             NextToken ();
84             continue;
85         }
86
87         /* Check for an ASM statement (which is allowed also on global level) */
88         if (curtok == TOK_ASM) {
89             doasm ();
90             ConsumeSemi ();
91             continue;
92         }
93
94         /* Check for a #pragma */
95         if (curtok == TOK_PRAGMA) {
96             DoPragma ();
97             continue;
98         }
99
100         /* Read variable defs and functions */
101         ParseDeclSpec (&Spec, SC_EXTERN | SC_STATIC, T_INT);
102
103         /* Don't accept illegal storage classes */
104         if (Spec.StorageClass == SC_AUTO || Spec.StorageClass == SC_REGISTER) {
105             Error (ERR_ILLEGAL_STORAGE_CLASS);
106             Spec.StorageClass = SC_EXTERN | SC_STATIC;
107         }
108
109         /* Check if this is only a type declaration */
110         if (curtok == TOK_SEMI) {
111             CheckEmptyDecl (&Spec);
112             NextToken ();
113             continue;
114         }
115
116         /* Check if we must reserve storage for the variable. We do
117          * this if we don't had a storage class given ("int i") or
118          * if the storage class is explicitly specified as static.
119          * This means that "extern int i" will not get storage
120          * allocated.
121          */
122         NeedStorage = (Spec.StorageClass & SC_TYPEDEF) == 0 &&
123                       ((Spec.Flags & DS_DEF_STORAGE) != 0  ||
124                       (Spec.StorageClass & (SC_STATIC | SC_EXTERN)) == SC_STATIC);
125
126         /* Read declarations for this type */
127         Entry = 0;
128         comma = 0;
129         while (1) {
130
131             unsigned SymFlags;
132
133             /* Read the next declaration */
134             ParseDecl (&Spec, &Decl, DM_NEED_IDENT);
135             if (Decl.Ident[0] == '\0') {
136                 NextToken ();
137                 break;
138             }
139
140             /* Get the symbol flags */
141             SymFlags = Spec.StorageClass;
142             if (IsFunc (Decl.Type)) {
143                 SymFlags |= SC_FUNC;
144             } else {
145                 if (NeedStorage) {
146                     /* We will allocate storage, variable is defined */
147                     SymFlags |= SC_STORAGE | SC_DEF;
148                 }
149             }
150
151             /* Add an entry to the symbol table */
152             Entry = AddGlobalSym (Decl.Ident, Decl.Type, SymFlags);
153
154             /* Reserve storage for the variable if we need to */
155             if (SymFlags & SC_STORAGE) {
156
157                 /* Get the size of the variable */
158                 unsigned Size = SizeOf (Decl.Type);
159
160                 /* Allow initialization */
161                 if (curtok == TOK_ASSIGN) {
162
163                     /* We cannot initialize types of unknown size, or
164                      * void types in non ANSI mode.
165                      */
166                     if (Size == 0) {
167                         if (!IsVoid (Decl.Type)) {
168                             if (!IsArray (Decl.Type)) {
169                                 /* Size is unknown and not an array */
170                                 Error (ERR_UNKNOWN_SIZE);
171                             }
172                         } else if (ANSI) {
173                             /* We cannot declare variables of type void */
174                             Error (ERR_ILLEGAL_TYPE);
175                         }
176                     }
177
178                     /* Switch to the data segment */
179                     g_usedata ();
180
181                     /* Define a label */
182                     g_defgloblabel (Entry->Name);
183
184                     /* Skip the '=' */
185                     NextToken ();
186
187                     /* Parse the initialization */
188                     ParseInit (Entry->Type);
189                 } else {
190
191                     if (IsVoid (Decl.Type)) {
192                         /* We cannot declare variables of type void */
193                         Error (ERR_ILLEGAL_TYPE);
194                     } else if (Size == 0) {
195                         /* Size is unknown */
196                         Error (ERR_UNKNOWN_SIZE);
197                     }
198
199                     /* Switch to the BSS segment */
200                     g_usebss ();
201
202                     /* Define a label */
203                     g_defgloblabel (Entry->Name);
204
205                     /* Allocate space for uninitialized variable */
206                     g_res (SizeOf (Entry->Type));
207                 }
208
209             }
210
211             /* Check for end of declaration list */
212             if (curtok == TOK_COMMA) {
213                 NextToken ();
214                 comma = 1;
215             } else {
216                 break;
217             }
218         }
219
220         /* Function declaration? */
221         if (IsFunc (Decl.Type)) {
222
223             /* Function */
224             if (!comma) {
225
226                 if (curtok == TOK_SEMI) {
227
228                     /* Prototype only */
229                     NextToken ();
230
231                 } else {
232                     if (Entry) {
233                         NewFunc (Entry);
234                     }
235                 }
236             }
237
238         } else {
239
240             /* Must be followed by a semicolon */
241             ConsumeSemi ();
242
243         }
244     }
245 }
246
247
248
249 void Compile (void)
250 /* Top level compile routine. Will setup things and call the parser. */
251 {
252     char* Path;
253
254
255     /* Setup variables */
256     filetab[0].f_iocb = inp;
257     LiteralLabel = GetLabel ();
258
259     /* Add some standard paths to the include search path */
260     AddIncludePath ("", INC_USER);              /* Current directory */
261     AddIncludePath ("include", INC_SYS);
262 #ifdef CC65_INC
263     AddIncludePath (CC65_INC, INC_SYS);
264 #else
265     AddIncludePath ("/usr/lib/cc65/include", INC_SYS);
266 #endif
267     Path = getenv ("CC65_INC");
268     if (Path) {
269         AddIncludePath (Path, INC_SYS | INC_USER);
270     }
271
272     /* Add macros that are always defined */
273     AddNumericMacro ("__CC65__", (VER_MAJOR * 0x100) + (VER_MINOR * 0x10) + VER_PATCH);
274
275     /* Strict ANSI macro */
276     if (ANSI) {
277         AddNumericMacro ("__STRICT_ANSI__", 1);
278     }
279
280     /* Optimization macros */
281     if (Optimize) {
282         AddNumericMacro ("__OPT__", 1);
283         if (FavourSize == 0) {
284             AddNumericMacro ("__OPT_i__", 1);
285         }
286         if (EnableRegVars) {
287             AddNumericMacro ("__OPT_r__", 1);
288         }
289         if (InlineStdFuncs) {
290             AddNumericMacro ("__OPT_s__", 1);
291         }
292     }
293
294     /* Create the base lexical level */
295     EnterGlobalLevel ();
296
297     /* Generate the code generator preamble */
298     g_preamble ();
299
300     /* Ok, start the ball rolling... */
301     Parse ();
302
303     /* Dump literal pool. */
304     DumpLiteralPool ();
305
306     /* Write imported/exported symbols */
307     EmitExternals ();
308
309     if (Debug) {
310         PrintLiteralStats (stdout);
311         PrintMacroStats (stdout);
312     }
313
314     /* Leave the main lexical level */
315     LeaveGlobalLevel ();
316
317     /* Print an error report */
318     ErrorReport ();
319 }
320
321
322