Infrastructure stuff for AVR
[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 /* Processor specific names */
9 typedef struct {
10     /** Target name used for -m */
11     const char *target;
12
13     /** Target name string, used for --help */
14     const char *target_name;
15
16     struct {
17         /** TRUE if all types of glue functions should be inseted into
18             the file that also defines main.
19             We dont want this in cases like the z80 where the startup
20             code is provided by a seperate module.
21         */
22         bool glue_up_main;
23     } general;
24
25     /* assembler related information */
26     struct {
27         /** Command to run and arguments (eg as-z80) */
28         const char **cmd;
29         /** Arguments for debug mode.  PENDING: ignored */
30         const char *debug_opts;
31         /** Arguments for normal assembly mode.  PENDING: ignored */
32         const char *plain_opts;
33     } assembler;
34
35     /* linker related info */
36     struct {
37         /** Command to run (eg link-z80) */
38         const char **cmd;
39     } linker;
40
41     struct {
42         /** Default peephole rules */
43         char *default_rules;
44     } peep;
45
46     /** Basic type sizes */
47     struct {
48         int char_size;
49         int short_size;
50         int int_size;
51         int long_size;
52         int ptr_size;
53         int fptr_size;
54         int gptr_size;
55         int bit_size;
56         int float_size;
57         int max_base_size;
58     } s;
59
60     /** memory regions related stuff */
61     struct {
62         const char *xstack_name;
63         const char *istack_name;
64         const char *code_name;
65         const char *data_name;
66         const char *idata_name;
67         const char *xdata_name;
68         const char *bit_name;
69         const char *reg_name;
70         const char *static_name;
71         const char *overlay_name;
72         const char *post_static_name;
73         struct memmap *default_local_map ; /* default location for auto vars */
74         struct memmap *default_globl_map ; /* default location for globl vars*/
75     } mem;
76     
77     /* stack related information */
78     struct {
79         /** -1 for grows down (z80), +1 for grows up (mcs51) */
80         int direction;
81         /** Extra overhead when calling between banks */
82         int bank_overhead;
83         /** Extra overhead when the function is an ISR */
84         int isr_overhead;
85         /** Standard overhead for a function call */
86         int call_overhead;
87         /** Re-enterant space */
88         int reent_overhead;
89         
90     } stack;
91     struct {
92         /** One more than the smallest 
93             mul/div operation the processor can do nativley 
94             Eg if the processor has an 8 bit mul, nativebelow is 2 */
95         int native_below;
96     } muldiv;
97
98     /** Called once the processor target has been selected.
99         First chance to initalise and set any port specific varibles.
100         'port' is set before calling this.  May be NULL.
101     */
102     void (*init)(void);
103     /** Parses one option + its arguments */
104     bool (*parseOption)(int *pargc, char **argv, int *i);
105     /** Called after all the options have been parsed. */
106     void (*finaliseOptions)(void);
107     /** Called after the port has been selected but before any
108         options are parsed. */
109     void (*setDefaultOptions)(void);
110     /** Does the dirty work. */
111     void (*assignRegisters)(eBBlock **, int);
112     
113     /** Returns the register name of a symbol.
114         Used so that 'regs' can be an incomplete type. */
115     const char *(*getRegName)(struct regs *reg);
116
117     /* list of keywords that are used by this
118        target (used by lexer) */
119     char **keywords; 
120     
121     /* Write any port specific assembler output. */
122     void (*genAssemblerPreamble)(FILE *of);
123     
124     /* Write the port specific IVT. If genIVT is NULL or if
125      * it returns zero, default (8051) IVT generation code
126      * will be used. 
127      */
128     int (*genIVT)(FILE *of, symbol **intTable, int intCount); 
129 } PORT;
130
131 extern PORT *port;
132
133 #endif