* src/hc08/gen.c (hc08_emitDebuggerSymbol),
[fw/sdcc] / src / port.h
1 /** @file port.h
2     Definitions for what a port must provide.
3     All ports are referenced in SDCCmain.c.
4 */
5 #ifndef PORT_INCLUDE
6 #define PORT_INCLUDE
7
8 #include "SDCCicode.h"
9 #include "SDCCargs.h"
10 #include "SDCCpeeph.h"
11
12 #define TARGET_ID_MCS51    1
13 #define TARGET_ID_GBZ80    2
14 #define TARGET_ID_Z80      3
15 #define TARGET_ID_AVR      4
16 #define TARGET_ID_DS390    5
17 #define TARGET_ID_PIC      6
18 #define TARGET_ID_PIC16    7
19 #define TARGET_ID_XA51     9
20 #define TARGET_ID_DS400    10
21 #define TARGET_ID_HC08     11
22
23 /* Macro to test the target we are compiling for.
24    Can only be used after SDCCmain has defined the port
25 */
26 #define TARGET_IS_MCS51 (port->id==TARGET_ID_MCS51)
27 #define TARGET_IS_GBZ80 (port->id==TARGET_ID_GBZ80)
28 #define TARGET_IS_Z80 (port->id==TARGET_ID_Z80)
29 #define TARGET_IS_AVR (port->id==TARGET_ID_AVR)
30 #define TARGET_IS_DS390 (port->id==TARGET_ID_DS390)
31 #define TARGET_IS_DS400 (port->id==TARGET_ID_DS400)
32 #define TARGET_IS_PIC   (port->id==TARGET_ID_PIC)
33 #define TARGET_IS_PIC16 (port->id==TARGET_ID_PIC16)
34 #define TARGET_IS_XA51 (port->id==TARGET_ID_XA51)
35 #define TARGET_IS_HC08 (port->id==TARGET_ID_HC08)
36
37 #define MAX_BUILTIN_ARGS        16
38 /* definition of builtin functions */
39 typedef struct builtins
40 {
41     char *name ;                /* name of builtin function */
42     char *rtype;                /* return type as string : see typefromStr */
43     int  nParms;                /* number of parms : max 8 */
44     char *parm_types[MAX_BUILTIN_ARGS]; /* each parm type as string : see typeFromStr */
45 } builtins ;
46
47 /* Processor specific names */
48 typedef struct
49   {
50 /** Unique id for this target */
51     const int id;
52 /** Target name used for -m */
53     const char *target;
54
55 /** Target name string, used for --help */
56     const char *target_name;
57
58 /** Specific processor for the given target family. specified by -p */
59     char *processor;
60
61     struct
62       {
63         /** Pointer to glue function */
64         void (*do_glue)(void);
65         /** TRUE if all types of glue functions should be inserted into
66             the file that also defines main.
67             We dont want this in cases like the z80 where the startup
68             code is provided by a seperate module.
69         */
70         bool glue_up_main;
71         /* OR of MODEL_* */
72         int supported_models;
73         int default_model;
74       }
75     general;
76
77     /* assembler related information */
78     struct
79       {
80         /** Command to run and arguments (eg as-z80) */
81         const char **cmd;
82         /** Alternate macro based form. */
83         const char *mcmd;
84         /** Arguments for debug mode. */
85         const char *debug_opts;
86         /** Arguments for normal assembly mode. */
87         const char *plain_opts;
88         /* print externs as global */
89         int externGlobal;
90         /* assembler file extension */
91         const char *file_ext;
92         /** If non-null will be used to execute the assembler. */
93         void (*do_assemble) (set *);    
94       }
95     assembler;
96
97     /* linker related info */
98     struct
99       {
100         /** Command to run (eg link-z80) */
101         const char **cmd;
102         /** Alternate macro based form. */
103         const char *mcmd;
104         /** If non-null will be used to execute the link. */
105         void (*do_link) (void);
106         /** Extension for object files (.rel, .obj, ...) */
107         const char *rel_ext;
108         /** 1 if port needs the .lnk file, 0 otherwise */
109         const int needLinkerScript;
110       }
111     linker;
112
113     struct
114       {
115 /** Default peephole rules */
116         char *default_rules;
117         int (*getSize)(lineNode *line);
118         bitVect * (*getRegsRead)(lineNode *line);
119         bitVect * (*getRegsWritten)(lineNode *line);
120       }
121     peep;
122
123 /** Basic type sizes */
124     struct
125       {
126         int char_size;
127         int short_size;
128         int int_size;
129         int long_size;
130         int ptr_size;
131         int fptr_size;
132         int gptr_size;
133         int bit_size;
134         int float_size;
135         int max_base_size;
136       }
137     s;
138
139 /** memory regions related stuff */
140     struct
141       {
142         const char *xstack_name;
143         const char *istack_name;
144         const char *code_name;
145         const char *data_name;
146         const char *idata_name;
147         const char *xdata_name;
148         const char *bit_name;
149         const char *reg_name;
150         const char *static_name;
151         const char *overlay_name;
152         const char *post_static_name;
153         const char *home_name;
154         const char *xidata_name; // initialized xdata
155         const char *xinit_name; // a code copy of xidata
156         struct memmap *default_local_map; // default location for auto vars
157         struct memmap *default_globl_map; // default location for globl vars
158         int code_ro;            /* code space read-only 1=yes */
159       }
160     mem;
161
162     struct
163       {
164           void (*genExtraAreaDeclaration)(FILE *, bool);
165           void (*genExtraAreaLinkOptions)(FILE *);
166       }
167     extraAreas;
168       
169     /* stack related information */
170     struct
171       {
172 /** -1 for grows down (z80), +1 for grows up (mcs51) */
173         int direction;
174 /** Extra overhead when calling between banks */
175         int bank_overhead;
176 /** Extra overhead when the function is an ISR */
177         int isr_overhead;
178 /** Standard overhead for a function call */
179         int call_overhead;
180 /** Re-enterant space */
181         int reent_overhead;
182         /** 'banked' call overhead.
183             Mild overlap with bank_overhead */
184         int banked_overhead;
185       }
186     stack;
187
188     struct
189       {
190         /** One more than the smallest 
191             mul/div operation the processor can do nativley 
192             Eg if the processor has an 8 bit mul, nativebelow is 2 */
193         unsigned muldiv;
194         unsigned shift;
195       }
196     support;
197
198     struct
199       {
200         void (*emitDebuggerSymbol) (char *);
201         struct
202           {
203             int (*regNum) (struct regs *);
204             bitVect * cfiSame;
205             bitVect * cfiUndef;
206             int addressSize;
207             int regNumRet;
208             int regNumSP;
209             int regNumBP;
210             int offsetSP;
211           }
212         dwarf;
213       }
214     debugger;
215     
216 /** Prefix to add to a C function (eg "_") */
217     const char *fun_prefix;
218
219     /** Called once the processor target has been selected.
220         First chance to initalise and set any port specific variables.
221         'port' is set before calling this.  May be NULL.
222     */
223     void (*init) (void);
224 /** Parses one option + its arguments */
225       bool (*parseOption) (int *pargc, char **argv, int *i);
226 /** Optional list of automatically parsed options.  Should be
227     implemented to at least show the help text correctly. */
228     OPTION *poptions;
229 /** Called after all the options have been parsed. */
230     void (*finaliseOptions) (void);
231     /** Called after the port has been selected but before any
232         options are parsed. */
233     void (*setDefaultOptions) (void);
234 /** Does the dirty work. */
235     void (*assignRegisters) (struct eBBlock **, int);
236
237     /** Returns the register name of a symbol.
238         Used so that 'regs' can be an incomplete type. */
239     const char *(*getRegName) (struct regs * reg);
240
241     /* list of keywords that are used by this
242        target (used by lexer) */
243     char **keywords;
244
245     /* Write any port specific assembler output. */
246     void (*genAssemblerPreamble) (FILE * of);
247       /* invoked at end assembler file */  
248     void (*genAssemblerEnd) (FILE * of);
249
250     /* Write the port specific IVT. If genIVT is NULL or if
251      * it returns zero, default (8051) IVT generation code
252      * will be used. 
253      */
254     int (*genIVT) (FILE * of, symbol ** intTable, int intCount);
255
256     void (*genXINIT) (FILE * of);
257     
258     /* Write port specific startup code */
259     void (*genInitStartup) (FILE * of);
260
261     /* parameter passing in register related functions */
262     void (*reset_regparms) ();  /* reset the register count */
263     int (*reg_parm) (struct sym_link *);        /* will return 1 if can be passed in register */
264
265     /** Process the pragma string 'sz'.  Returns 0 if recognised and
266         processed, 1 otherwise.  May be NULL.
267     */
268     int (*process_pragma) (const char *sz);
269
270     /** Mangles a support function name to reflect the calling model. 
271      */
272     char *(*getMangledFunctionName) (char *szOrginial);
273
274     /** Returns true if the port can multiply the two types nativly
275         without using support functions.
276     */
277     bool (*hasNativeMulFor) (iCode *ic, sym_link *left, sym_link *right);
278
279     /** Returns true if the port has implemented certain bit
280         manipulation iCodes (RRC, RLC, SWAP, GETHBIT)
281     */
282     bool (*hasExtBitOp) (int op, int size);
283     
284     /** Returns the relative expense of accessing a particular output
285         storage class. Larger values indicate higher expense.
286     */
287     int (*oclsExpense) (struct memmap *oclass);
288     
289     /** If TRUE, then tprintf and !dw will be used for some initalisers
290      */
291     bool use_dw_for_init;
292
293     /** TRUE for targets with little endian byte ordering, FALSE for
294         targets with big endian byte ordering.
295      */
296     bool little_endian;
297
298     /* condition transformations */
299     bool lt_nge;                /* transform (a < b)  to !(a >= b)  */
300     bool gt_nle;                /* transform (a > b)  to !(a <= b)  */
301     bool le_ngt;                /* transform (a <= b) to !(a > b)   */
302     bool ge_nlt;                /* transform (a >= b) to !(a < b)   */
303     bool ne_neq;                /* transform a != b --> ! (a == b)  */
304     bool eq_nne;                /* transform a == b --> ! (a != b)  */
305
306     bool arrayInitializerSuppported;  
307     bool (*cseOk) (iCode *ic, iCode *pdic);
308     builtins *builtintable;     /* table of builtin functions */
309     int unqualified_pointer;    /* unqualified pointers type is  */    
310     int reset_labelKey  ;       /* reset Label no 1 at the start of a function */
311     int globals_allowed ;       /* global & static locals not allowed ?  0 ONLY TININative*/
312 #define PORT_MAGIC 0xAC32
313 /** Used at runtime to detect if this structure has been completly filled in. */
314     int magic;
315   }
316 PORT;
317
318 extern PORT *port;
319
320 #if !OPT_DISABLE_MCS51
321 extern PORT mcs51_port;
322 #endif
323 #if !OPT_DISABLE_GBZ80
324 extern PORT gbz80_port;
325 #endif
326 #if !OPT_DISABLE_Z80
327 extern PORT z80_port;
328 #endif
329 #if !OPT_DISABLE_AVR
330 extern PORT avr_port;
331 #endif
332 #if !OPT_DISABLE_DS390
333 extern PORT ds390_port;
334 #endif
335 #if !OPT_DISABLE_PIC
336 extern PORT pic_port;
337 #endif
338 #if !OPT_DISABLE_PIC16
339 extern PORT pic16_port;
340 #endif
341 #if !OPT_DISABLE_TININative
342 extern PORT tininative_port;
343 #endif
344 #if !OPT_DISABLE_XA51
345 extern PORT xa51_port;
346 #endif
347 #if !OPT_DISABLE_DS400
348 extern PORT ds400_port;
349 #endif
350 #if !OPT_DISABLE_HC08
351 extern PORT hc08_port;
352 #endif
353
354 #endif /* PORT_INCLUDE*/