]> git.sur5r.net Git - cc65/blob - src/cc65/codegen.h
Working on the backend
[cc65] / src / cc65 / codegen.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 codegen.h                                 */
4 /*                                                                           */
5 /*                            6502 code generator                            */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2001 llrich von Bassewitz                                        */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@cc65.org                                                 */
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 #ifndef CODEGEN_H
37 #define CODEGEN_H
38
39
40
41 /* cc65 */
42 #include "segments.h"
43
44
45
46 /*****************************************************************************/
47 /*                                   Data                                    */
48 /*****************************************************************************/
49
50
51
52 /* Code generator flags.
53  * Note: The type flags are designed so that a smaller type may override a
54  * larger one by or'ing it into the existing one.
55  */
56 #define CF_NONE         0x0000  /* No special flags */
57
58 #define CF_TYPE         0x0007  /* Mask for operand type */
59 #define CF_CHAR         0x0003  /* Operation on characters */
60 #define CF_INT          0x0001  /* Operation on ints */
61 #define CF_PTR          CF_INT  /* Alias for readability */
62 #define CF_LONG         0x0000  /* Operation on longs */
63
64 #define CF_NOKEEP       0x0008  /* Value may get destroyed when storing */
65
66 #define CF_UNSIGNED     0x0010  /* Value is unsigned */
67 #define CF_CONST        0x0020  /* Constant value available */
68 #define CF_CONSTADDR    0x0040  /* Constant address value available */
69 #define CF_TEST         0x0080  /* Test value */
70 #define CF_FIXARGC      0x0100  /* Function has fixed arg count */
71 #define CF_FORCECHAR    0x0200  /* Handle chars as chars, not ints */
72 #define CF_REG          0x0800  /* Value is in primary register */
73
74 /* Type of static address */
75 #define CF_ADDRMASK     0xF000  /* Type of address */
76 #define CF_STATIC       0x0000  /* Static local */
77 #define CF_EXTERNAL     0x1000  /* Static external */
78 #define CF_ABSOLUTE     0x2000  /* Numeric absolute address */
79 #define CF_LOCAL        0x4000  /* Auto variable */
80 #define CF_REGVAR       0x8000  /* Register variable */
81
82
83
84 /* Compiler relative stackpointer */
85 extern int oursp;
86
87
88
89 /*****************************************************************************/
90 /*                         Files, pre- and postamble                         */
91 /*****************************************************************************/
92
93
94
95 void g_preamble (void);
96 /* Generate the assembler code preamble */
97
98 void g_fileinfo (const char* Name, unsigned long Size, unsigned long MTime);
99 /* If debug info is enabled, place a file info into the source */
100
101
102
103 /*****************************************************************************/
104 /*                              Segment support                              */
105 /*****************************************************************************/
106
107
108
109 void g_userodata (void);
110 /* Switch to the read only data segment */
111
112 void g_usedata (void);
113 /* Switch to the data segment */
114
115 void g_usebss (void);
116 /* Switch to the bss segment */
117
118 void g_segname (segment_t Seg, const char* Name);
119 /* Set the name of a segment */
120
121
122
123 /*****************************************************************************/
124 /*                      Functions handling local labels                      */
125 /*****************************************************************************/
126
127
128
129 void g_defcodelabel (unsigned label);
130 /* Define a local code label */
131
132 void g_defdatalabel (unsigned label);
133 /* Define a local data label */
134
135
136
137 /*****************************************************************************/
138 /*                     Functions handling global labels                      */
139 /*****************************************************************************/
140
141
142
143 void g_defgloblabel (const char* Name);
144 /* Define a global label with the given name */
145
146 void g_defexport (const char* Name, int ZP);
147 /* Export the given label */
148
149 void g_defimport (const char* Name, int ZP);
150 /* Import the given label */
151
152
153
154 /*****************************************************************************/
155 /*                                   stack                                   */
156 /*****************************************************************************/
157
158
159
160 int pop (unsigned flags);
161 /* Pop an argument of the given size */
162
163 int push (unsigned flags);
164 /* Push an argument of the given size */
165
166 unsigned sizeofarg (unsigned flags);
167 /* Return the size of a function argument type that is encoded in flags */
168
169
170
171 /*****************************************************************************/
172 /*                    type conversion and similiar stuff                     */
173 /*****************************************************************************/
174
175
176
177 void g_toslong (unsigned flags);
178 /* Make sure, the value on TOS is a long. Convert if necessary */
179
180 void g_tosint (unsigned flags);
181 /* Make sure, the value on TOS is an int. Convert if necessary */
182
183 void g_reglong (unsigned flags);
184 /* Make sure, the value in the primary register a long. Convert if necessary */
185
186 unsigned g_typeadjust (unsigned lhs, unsigned rhs);
187 /* Adjust the integer operands before doing a binary operation. lhs is a flags
188  * value, that corresponds to the value on TOS, rhs corresponds to the value
189  *  in (e)ax. The return value is the the flags value for the resulting type.
190  */
191
192 unsigned g_typecast (unsigned lhs, unsigned rhs);
193 /* Cast the value in the primary register to the operand size that is flagged
194  * by the lhs value. Return the result value.
195  */
196
197 void g_scale (unsigned flags, long val);
198 /* Scale the value in the primary register by the given value. If val is positive,
199  * scale up, is val is negative, scale down. This function is used to scale
200  * the operands or results of pointer arithmetic by the size of the type, the
201  * pointer points to.
202  */
203
204
205
206 /*****************************************************************************/
207 /*                          Function entry and exit                          */
208 /*****************************************************************************/
209
210
211
212 void g_enter (unsigned flags, unsigned argsize);
213 /* Function prologue */
214
215 void g_leave (void);
216 /* Function epilogue */
217
218
219
220 /*****************************************************************************/
221 /*                            Register variables                             */
222 /*****************************************************************************/
223
224
225
226 void g_save_regvars (int RegOffs, unsigned Bytes);
227 /* Save register variables */
228
229 void g_restore_regvars (int StackOffs, int RegOffs, unsigned Bytes);
230 /* Restore register variables */
231
232
233
234 /*****************************************************************************/
235 /*                           Fetching memory cells                           */
236 /*****************************************************************************/
237
238
239
240 void g_getimmed (unsigned Flags, unsigned long Val, unsigned Offs);
241 /* Load a constant into the primary register */
242
243 void g_getstatic (unsigned Flags, unsigned long Label, unsigned Offs);
244 /* Fetch an static memory cell into the primary register */
245
246 void g_getlocal (unsigned Flags, int Offs);
247 /* Fetch specified local object (local var). */
248
249 void g_getind (unsigned Flags, unsigned Offs);
250 /* Fetch the specified object type indirect through the primary register
251  * into the primary register
252  */
253
254 void g_leasp (int Offs);
255 /* Fetch the address of the specified symbol into the primary register */
256
257 void g_leavariadic (int Offs);
258 /* Fetch the address of a parameter in a variadic function into the primary
259  * register
260  */
261
262
263
264 /*****************************************************************************/
265 /*                             Store into memory                             */
266 /*****************************************************************************/
267
268
269
270 void g_putstatic (unsigned flags, unsigned long label, unsigned offs);
271 /* Store the primary register into the specified static memory cell */
272
273 void g_putlocal (unsigned Flags, int Offs, long Val);
274 /* Put data into local object. */
275
276 void g_putind (unsigned flags, unsigned offs);
277 /* Store the specified object type in the primary register at the address
278  * on the top of the stack
279  */
280
281
282
283 /*****************************************************************************/
284 /*              Adds and subs of variables fix a fixed address               */
285 /*****************************************************************************/
286
287
288
289 void g_addlocal (unsigned flags, int offs);
290 /* Add a local variable to ax */
291
292 void g_addstatic (unsigned flags, unsigned long label, unsigned offs);
293 /* Add a static variable to ax */
294
295
296
297 /*****************************************************************************/
298 /*                           Special op= functions                           */
299 /*****************************************************************************/
300
301
302
303 void g_addeqstatic (unsigned flags, unsigned long label, unsigned offs,
304                     unsigned long val);
305 /* Emit += for a static variable */
306
307 void g_addeqlocal (unsigned flags, int offs, unsigned long val);
308 /* Emit += for a local variable */
309
310 void g_addeqind (unsigned flags, unsigned offs, unsigned long val);
311 /* Emit += for the location with address in ax */
312
313 void g_subeqstatic (unsigned flags, unsigned long label, unsigned offs,
314                     unsigned long val);
315 /* Emit -= for a static variable */
316
317 void g_subeqlocal (unsigned flags, int offs, unsigned long val);
318 /* Emit -= for a local variable */
319
320 void g_subeqind (unsigned flags, unsigned offs, unsigned long val);
321 /* Emit -= for the location with address in ax */
322
323
324
325 /*****************************************************************************/
326 /*                 Add a variable address to the value in ax                 */
327 /*****************************************************************************/
328
329
330
331 void g_addaddr_local (unsigned flags, int offs);
332 /* Add the address of a local variable to ax */
333
334 void g_addaddr_static (unsigned flags, unsigned long label, unsigned offs);
335 /* Add the address of a static variable to ax */
336
337
338
339 /*****************************************************************************/
340 /*                                                                           */
341 /*****************************************************************************/
342
343
344
345 void g_save (unsigned flags);
346 /* Copy primary register to hold register. */
347
348 void g_restore (unsigned flags);
349 /* Copy hold register to primary. */
350
351 void g_cmp (unsigned flags, unsigned long val);
352 /* Immidiate compare. The primary register will not be changed, Z flag
353  * will be set.
354  */
355
356 void g_test (unsigned flags);
357 /* Test the value in the primary and set the condition codes */
358
359 void g_push (unsigned flags, unsigned long val);
360 /* Push the primary register or a constant value onto the stack */
361
362 void g_swap (unsigned flags);
363 /* Swap the primary register and the top of the stack. flags give the type
364  * of *both* values (must have same size).
365  */
366
367 void g_call (unsigned Flags, const char* Label, unsigned ArgSize);
368 /* Call the specified subroutine name */
369
370 void g_callind (unsigned Flags, unsigned ArgSize);
371 /* Call subroutine with address in AX */
372
373 void g_jump (unsigned Label);
374 /* Jump to specified internal label number */
375
376 void g_switch (unsigned Flags);
377 /* Output switch statement preamble */
378
379 void g_case (unsigned flags, unsigned label, unsigned long val);
380 /* Create table code for one case selector */
381
382 void g_truejump (unsigned flags, unsigned label);
383 /* Jump to label if zero flag clear */
384
385 void g_falsejump (unsigned flags, unsigned label);
386 /* Jump to label if zero flag set */
387
388 void g_space (int space);
389 /* Create or drop space on the stack */
390
391 void g_cstackcheck (void);
392 /* Check for a C stack overflow */
393
394 void g_stackcheck (void);
395 /* Check for a stack overflow */
396
397 void g_add (unsigned flags, unsigned long val);
398 void g_sub (unsigned flags, unsigned long val);
399 void g_rsub (unsigned flags, unsigned long val);
400 void g_mul (unsigned flags, unsigned long val);
401 void g_div (unsigned flags, unsigned long val);
402 void g_mod (unsigned flags, unsigned long val);
403 void g_or (unsigned flags, unsigned long val);
404 void g_xor (unsigned flags, unsigned long val);
405 void g_and (unsigned flags, unsigned long val);
406 void g_asr (unsigned flags, unsigned long val);
407 void g_asl (unsigned flags, unsigned long val);
408 void g_neg (unsigned flags);
409 void g_bneg (unsigned flags);
410 void g_com (unsigned flags);
411 void g_inc (unsigned flags, unsigned long n);
412 void g_dec (unsigned flags, unsigned long n);
413 void g_eq (unsigned flags, unsigned long val);
414 void g_ne (unsigned flags, unsigned long val);
415 void g_lt (unsigned flags, unsigned long val);
416 void g_le (unsigned flags, unsigned long val);
417 void g_gt (unsigned flags, unsigned long val);
418 void g_ge (unsigned flags, unsigned long val);
419
420 void g_res (unsigned n);
421 /* Reserve static storage, n bytes */
422
423 void g_defdata (unsigned flags, unsigned long val, unsigned offs);
424 /* Define data with the size given in flags */
425
426 void g_defbytes (const void* bytes, unsigned count);
427 /* Output a row of bytes as a constant */
428
429 void g_zerobytes (unsigned n);
430 /* Output n bytes of data initialized with zero */
431
432
433
434 /*****************************************************************************/
435 /*                       User supplied assembler code                        */
436 /*****************************************************************************/
437
438
439
440 void g_asmcode (const char* Line, int Len);
441 /* Output one line of assembler code. If Len is greater than zero, it is used
442  * as the maximum number of characters to use from Line.
443  */
444
445
446
447 /*****************************************************************************/
448 /*                          Inlined known functions                          */
449 /*****************************************************************************/
450
451
452
453 void g_strlen (unsigned flags, unsigned long val, unsigned offs);
454 /* Inline the strlen() function */
455
456
457
458 /* End of codegen.h */
459 #endif
460
461