* Added z80 blurb.
[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         int         code_ro;               /* code space read-only 1=yes */
76     } mem;
77     
78     /* stack related information */
79     struct {
80         /** -1 for grows down (z80), +1 for grows up (mcs51) */
81         int direction;
82         /** Extra overhead when calling between banks */
83         int bank_overhead;
84         /** Extra overhead when the function is an ISR */
85         int isr_overhead;
86         /** Standard overhead for a function call */
87         int call_overhead;
88         /** Re-enterant space */
89         int reent_overhead;
90     } stack;
91
92     struct {
93         /** One more than the smallest 
94             mul/div operation the processor can do nativley 
95             Eg if the processor has an 8 bit mul, nativebelow is 2 */
96         int native_below;
97     } muldiv;
98
99     /** Called once the processor target has been selected.
100         First chance to initalise and set any port specific varibles.
101         'port' is set before calling this.  May be NULL.
102     */
103     void (*init)(void);
104     /** Parses one option + its arguments */
105     bool (*parseOption)(int *pargc, char **argv, int *i);
106     /** Called after all the options have been parsed. */
107     void (*finaliseOptions)(void);
108     /** Called after the port has been selected but before any
109         options are parsed. */
110     void (*setDefaultOptions)(void);
111     /** Does the dirty work. */
112     void (*assignRegisters)(eBBlock **, int);
113     
114     /** Returns the register name of a symbol.
115         Used so that 'regs' can be an incomplete type. */
116     const char *(*getRegName)(struct regs *reg);
117
118     /* list of keywords that are used by this
119        target (used by lexer) */
120     char **keywords; 
121     
122     /* Write any port specific assembler output. */
123     void (*genAssemblerPreamble)(FILE *of);
124     
125     /* Write the port specific IVT. If genIVT is NULL or if
126      * it returns zero, default (8051) IVT generation code
127      * will be used. 
128      */
129     int (*genIVT)(FILE *of, symbol **intTable, int intCount); 
130
131
132     /* parameter passing in register related functions */
133     void (*reset_regparms)();          /* reset the register count */
134     int  (*reg_parm)(struct link *);   /* will return 1 if can be passed in register */
135
136     /** Process the pragma string 'sz'.  Returns 0 if recognised and
137         processed, 1 otherwise.  May be NULL.
138     */
139     int (*process_pragma)(const char *sz);
140    
141 } PORT;
142
143 extern PORT *port;
144
145 #endif