Added -p command line option to allow selection of port dependent processor.
[fw/sdcc] / src / ds390 / main.c
1 /** @file main.c
2     ds390 specific general functions.
3
4     Note that mlh prepended _ds390_ on the static functions.  Makes
5     it easier to set a breakpoint using the debugger.
6 */
7 #include "common.h"
8 #include "main.h"
9 #include "ralloc.h"
10 #include "gen.h"
11 #include "BuildCmd.h"
12 #include "MySystem.h"
13 #include "../SDCCutil.h"
14 extern const char *preArgv[128];        /* pre-processor arguments  */
15 static char _defaultRules[] =
16 {
17 #include "peeph.rul"
18 };
19
20 /* list of key words used by msc51 */
21 static char *_ds390_keywords[] =
22 {
23   "at",
24   "bit",
25   "code",
26   "critical",
27   "data",
28   "far",
29   "idata",
30   "interrupt",
31   "near",
32   "pdata",
33   "reentrant",
34   "sfr",
35   "sbit",
36   "using",
37   "xdata",
38   "_data",
39   "_code",
40   "_generic",
41   "_near",
42   "_xdata",
43   "_pdata",
44   "_idata",
45   "_naked",
46   NULL
47 };
48
49 static builtins __ds390_builtins[] = {
50     { "__builtin_memcpy_x2x","v",3,{"cx*","cx*","i"}}, /* void __builtin_memcpy_x2x (xdata char *,xdata char *,int) */
51     { "__builtin_memcpy_c2x","v",3,{"cx*","cp*","i"}}, /* void __builtin_memcpy_c2x (xdata char *,code  char *,int) */
52     { "__builtin_memset_x","v",3,{"cx*","c","i"}},     /* void __builtin_memset     (xdata char *,char,int)         */
53     /* __builtin_inp - used to read from a memory mapped port, increment first pointer */
54     { "__builtin_inp","v",3,{"cx*","cx*","i"}},        /* void __builtin_inp        (xdata char *,xdata char *,int) */
55     /* __builtin_inp - used to write to a memory mapped port, increment first pointer */
56     { "__builtin_outp","v",3,{"cx*","cx*","i"}},       /* void __builtin_outp       (xdata char *,xdata char *,int) */
57     { "__builtin_swapw","us",1,{"us"}},                /* unsigned short __builtin_swapw (unsigned short) */
58     { "__builtin_memcmp_x2x","c",3,{"cx*","cx*","i"}}, /* void __builtin_memcmp_x2x (xdata char *,xdata char *,int) */
59     { "__builtin_memcmp_c2x","c",3,{"cx*","cp*","i"}}, /* void __builtin_memcmp_c2x (xdata char *,code  char *,int) */
60     { NULL , NULL,0, {NULL}}                       /* mark end of table */
61 };    
62 void ds390_assignRegisters (eBBlock ** ebbs, int count);
63
64 static int regParmFlg = 0;      /* determine if we can register a parameter */
65
66 static void
67 _ds390_init (void)
68 {
69   asm_addTree (&asm_asxxxx_mapping);
70 }
71
72 static void
73 _ds390_reset_regparm ()
74 {
75   regParmFlg = 0;
76 }
77
78 static int
79 _ds390_regparm (sym_link * l)
80 {
81
82     if (options.parms_in_bank1 == 0) {
83         /* simple can pass only the first parameter in a register */
84         if (regParmFlg)
85             return 0;
86
87         regParmFlg = 1;
88         return 1;
89     } else {
90         int size = getSize(l);
91         int remain ;
92
93         /* first one goes the usual way to DPTR */
94         if (regParmFlg == 0) {
95             regParmFlg += 4 ;
96             return 1;
97         }
98         /* second one onwards goes to RB1_0 thru RB1_7 */
99         remain = regParmFlg - 4;
100         if (size > (8 - remain)) {
101             regParmFlg = 12 ;
102             return 0;
103         }
104         regParmFlg += size ;
105         return regParmFlg - size + 1;   
106     }
107 }
108
109 static bool
110 _ds390_parseOptions (int *pargc, char **argv, int *i)
111 {
112   /* TODO: allow port-specific command line options to specify
113    * segment names here.
114    */
115   return FALSE;
116 }
117
118 static void
119 _ds390_finaliseOptions (void)
120 {
121   /* Hack-o-matic: if we are using the flat24 model,
122    * adjust pointer sizes.
123    */
124   if (options.model != MODEL_FLAT24)  {
125       fprintf (stderr,
126                "*** warning: ds390 port small and large model experimental.\n");
127       if (options.model == MODEL_LARGE)
128       {
129         port->mem.default_local_map = xdata;
130         port->mem.default_globl_map = xdata;
131       }
132       else
133       {
134         port->mem.default_local_map = data;
135         port->mem.default_globl_map = data;
136       }
137   }
138   else {
139     port->s.fptr_size = 3;
140     port->s.gptr_size = 4;
141
142     port->stack.isr_overhead += 2;      /* Will save dpx on ISR entry. */
143
144     port->stack.call_overhead += 2;     /* This acounts for the extra byte 
145                                  * of return addres on the stack.
146                                  * but is ugly. There must be a 
147                                  * better way.
148                                  */
149
150     port->mem.default_local_map = xdata;
151     port->mem.default_globl_map = xdata;
152
153     if (!options.stack10bit)
154     {
155     fprintf (stderr,
156              "*** error: ds390 port only supports the 10 bit stack mode.\n");
157     } else {
158         if (!options.stack_loc) options.stack_loc = 0x400007;
159     }
160     
161     /* generate native code 16*16 mul/div */
162     if (options.useAccelerator) 
163             port->support.muldiv=2;
164     else 
165             port->support.muldiv=1;
166
167      /* Fixup the memory map for the stack; it is now in
168      * far space and requires a FPOINTER to access it.
169      */
170     istack->fmap = 1;
171     istack->ptrType = FPOINTER;
172
173     if (options.parms_in_bank1) {
174         addToList (preArgv, "-DSDCC_PARMS_IN_BANK1");
175     }
176   }  /* MODEL_FLAT24 */
177 }
178
179 static void
180 _ds390_setDefaultOptions (void)
181 {
182   options.model=MODEL_FLAT24;
183   options.stack10bit=1;
184 }
185
186 static const char *
187 _ds390_getRegName (struct regs *reg)
188 {
189   if (reg)
190     return reg->name;
191   return "err";
192 }
193
194 static void
195 _ds390_genAssemblerPreamble (FILE * of)
196 {
197       if (options.model == MODEL_FLAT24)
198         fputs (".flat24 on\t\t; 24 bit flat addressing\n", of);
199
200       fputs ("dpx = 0x93\t\t; dpx register unknown to assembler\n", of);
201       fputs ("dps = 0x86\t\t; dps register unknown to assembler\n", of);
202       fputs ("dpl1 = 0x84\t\t; dpl1 register unknown to assembler\n", of);
203       fputs ("dph1 = 0x85\t\t; dph1 register unknown to assembler\n", of);
204       fputs ("dpx1 = 0x95\t\t; dpx1 register unknown to assembler\n", of);
205       fputs ("ap = 0x9C\t\t; ap register unknown to assembler\n", of);
206       fputs ("_ap = 0x9C\t\t; _ap register unknown to assembler\n", of);
207       fputs ("mcnt0 = 0xD1\t\t; mcnt0 register unknown to assembler\n", of);
208       fputs ("mcnt1 = 0xD2\t\t; mcnt1 register unknown to assembler\n", of);
209       fputs ("ma = 0xD3\t\t; ma register unknown to assembler\n", of);
210       fputs ("mb = 0xD4\t\t; mb register unknown to assembler\n", of);
211       fputs ("mc = 0xD5\t\t; mc register unknown to assembler\n", of);
212       fputs ("F1 = 0xD1\t\t; F1 user flag unknown to assembler\n", of);
213       fputs ("esp = 0x9B\t\t; ESP user flag unknown to assembler\n", of);
214       if (options.parms_in_bank1) {
215           int i ;
216           for (i=0; i < 8 ; i++ )
217               fprintf (of,"b1_%d = 0x%x \n",i,8+i);
218       }
219 }
220
221 /* Generate interrupt vector table. */
222 static int
223 _ds390_genIVT (FILE * of, symbol ** interrupts, int maxInterrupts)
224 {
225   int i;
226
227   if (options.model != MODEL_FLAT24)
228     {
229       /* Let the default code handle it. */
230       return FALSE;
231     }
232
233   fprintf (of, "\tajmp\t__sdcc_gsinit_startup\n");
234
235   /* now for the other interrupts */
236   for (i = 0; i < maxInterrupts; i++)
237     {
238       if (interrupts[i])
239         {
240           fprintf (of, "\tljmp\t%s\n\t.ds\t4\n", interrupts[i]->rname);
241         }
242       else
243         {
244           fprintf (of, "\treti\n\t.ds\t7\n");
245         }
246     }
247
248   return TRUE;
249 }
250
251 /* Generate code to copy XINIT to XISEG */
252 static void _ds390_genXINIT (FILE * of) {
253   fprintf (of, ";       _ds390_genXINIT() start\n");
254   fprintf (of, "        mov     a,#l_XINIT\n");
255   fprintf (of, "        orl     a,#l_XINIT>>8\n");
256   fprintf (of, "        jz      00003$\n");
257   fprintf (of, "        mov     a,#s_XINIT\n");
258   fprintf (of, "        add     a,#l_XINIT\n");
259   fprintf (of, "        mov     r1,a\n");
260   fprintf (of, "        mov     a,#s_XINIT>>8\n");
261   fprintf (of, "        addc    a,#l_XINIT>>8\n");
262   fprintf (of, "        mov     r2,a\n");
263   fprintf (of, "        mov     dptr,#s_XINIT\n");
264   fprintf (of, "        mov     dps,#0x21\n");
265   fprintf (of, "        mov     dptr,#s_XISEG\n");
266   fprintf (of, "00001$: clr     a\n");
267   fprintf (of, "        movc    a,@a+dptr\n");
268   fprintf (of, "        movx    @dptr,a\n");
269   fprintf (of, "        inc     dptr\n");
270   fprintf (of, "        inc     dptr\n");
271   fprintf (of, "00002$: mov     a,dpl\n");
272   fprintf (of, "        cjne    a,ar1,00001$\n");
273   fprintf (of, "        mov     a,dph\n");
274   fprintf (of, "        cjne    a,ar2,00001$\n");
275   fprintf (of, "        mov     dps,#0\n");
276   fprintf (of, "00003$:\n");
277   fprintf (of, ";       _ds390_genXINIT() end\n");
278 }
279
280 /* Do CSE estimation */
281 static bool cseCostEstimation (iCode *ic, iCode *pdic)
282 {
283     operand *result = IC_RESULT(ic);
284     //operand *right  = IC_RIGHT(ic);
285     //operand *left   = IC_LEFT(ic);
286     sym_link *result_type = operandType(result);
287     //sym_link *right_type  = (right ? operandType(right) : 0);
288     //sym_link *left_type   = (left  ? operandType(left)  : 0);
289     
290     /* if it is a pointer then return ok for now */
291     if (IC_RESULT(ic) && IS_PTR(result_type)) return 1;
292     
293     /* if bitwise | add & subtract then no since mcs51 is pretty good at it 
294        so we will cse only if they are local (i.e. both ic & pdic belong to
295        the same basic block */
296     if (IS_BITWISE_OP(ic) || ic->op == '+' || ic->op == '-') {
297         /* then if they are the same Basic block then ok */
298         if (ic->eBBlockNum == pdic->eBBlockNum) return 1;
299         else return 0;
300     }
301         
302     /* for others it is cheaper to do the cse */
303     return 1;
304 }
305 /** $1 is always the basename.
306     $2 is always the output file.
307     $3 varies
308     $l is the list of extra options that should be there somewhere...
309     MUST be terminated with a NULL.
310 */
311 static const char *_linkCmd[] =
312 {
313   "aslink", "-nf", "$1", NULL
314 };
315
316 /* $3 is replaced by assembler.debug_opts resp. port->assembler.plain_opts */   static const char *_asmCmd[] =
317 {
318   "asx8051", "$l", "$3", "$1.asm", NULL
319 };
320
321 /* Globals */
322 PORT ds390_port =
323 {
324   TARGET_ID_DS390,
325   "ds390",
326   "DS80C390",                   /* Target name */
327   NULL,
328   {
329     TRUE,                       /* Emit glue around main */
330     MODEL_SMALL | MODEL_LARGE | MODEL_FLAT24,
331     MODEL_SMALL
332   },
333   {
334     _asmCmd,
335     NULL,
336     "-plosgffc",                /* Options with debug */
337     "-plosgff",                 /* Options without debug */
338     0,
339     ".asm",
340     NULL                        /* no do_assemble function */
341   },
342   {
343     _linkCmd,
344     NULL,
345     NULL,
346     ".rel"
347   },
348   {
349     _defaultRules
350   },
351   {
352         /* Sizes: char, short, int, long, ptr, fptr, gptr, bit, float, max */
353     1, 2, 2, 4, 1, 2, 3, 1, 4, 4
354   },
355   {
356     "XSEG    (XDATA)",
357     "STACK   (DATA)",
358     "CSEG    (CODE)",
359     "DSEG    (DATA)",
360     "ISEG    (DATA)",
361     "XSEG    (XDATA)",
362     "BSEG    (BIT)",
363     "RSEG    (DATA)",
364     "GSINIT  (CODE)",
365     "OSEG    (OVR,DATA)",
366     "GSFINAL (CODE)",
367     "HOME    (CODE)",
368     "XISEG   (XDATA)", // initialized xdata
369     "XINIT   (CODE)", // a code copy of xiseg
370     NULL,
371     NULL,
372     1
373   },
374   {
375     +1, 1, 4, 1, 1, 0
376   },
377     /* ds390 has an 16 bit mul & div */
378   {
379     2, -1
380   },
381   "_",
382   _ds390_init,
383   _ds390_parseOptions,
384   _ds390_finaliseOptions,
385   _ds390_setDefaultOptions,
386   ds390_assignRegisters,
387   _ds390_getRegName,
388   _ds390_keywords,
389   _ds390_genAssemblerPreamble,
390   NULL,                         /* no genAssemblerEnd */
391   _ds390_genIVT,
392   _ds390_genXINIT,
393   _ds390_reset_regparm,
394   _ds390_regparm,
395   NULL,
396   NULL,
397   NULL,
398   FALSE,
399   0,                            /* leave lt */
400   0,                            /* leave gt */
401   1,                            /* transform <= to ! > */
402   1,                            /* transform >= to ! < */
403   1,                            /* transform != to !(a == b) */
404   0,                            /* leave == */
405   TRUE,                         /* we support array initializers. */
406   cseCostEstimation,
407   __ds390_builtins,             /* table of builtin functions */
408   GPOINTER,                     /* treat unqualified pointers as "generic" pointers */
409   1,                            /* reset labelKey to 1 */
410   1,                            /* globals & local static allowed */
411   PORT_MAGIC
412 };
413
414 /*---------------------------------------------------------------------------------*/
415 /*                               TININative specific                               */
416 /*---------------------------------------------------------------------------------*/
417 /* Globals */
418 static void _tininative_init (void)
419 {
420     asm_addTree (&asm_a390_mapping);
421 }
422
423 static void _tininative_setDefaultOptions (void)
424 {
425     options.model=MODEL_FLAT24;
426     options.stack10bit=1;
427     options.stackAuto = 1;
428 }
429
430 static void _tininative_finaliseOptions (void)
431 {
432     /* Hack-o-matic: if we are using the flat24 model,
433      * adjust pointer sizes.
434      */
435     if (options.model != MODEL_FLAT24)  {
436         options.model = MODEL_FLAT24 ;
437         fprintf(stderr,"TININative supports only MODEL FLAT24\n");
438     }
439     port->s.fptr_size = 3;
440     port->s.gptr_size = 4;
441     
442     port->stack.isr_overhead += 2;      /* Will save dpx on ISR entry. */
443     
444     port->stack.call_overhead += 2;     /* This acounts for the extra byte 
445                                          * of return addres on the stack.
446                                          * but is ugly. There must be a 
447                                          * better way.
448                                          */
449     
450     port->mem.default_local_map = xdata;
451     port->mem.default_globl_map = xdata;
452     
453     if (!options.stack10bit) {
454         options.stack10bit = 1;
455         fprintf(stderr,"TININative supports only stack10bit \n");
456     }
457     
458     if (!options.stack_loc) options.stack_loc = 0x400007;
459     
460     /* generate native code 16*16 mul/div */
461     if (options.useAccelerator) 
462         port->support.muldiv=2;
463     else 
464         port->support.muldiv=1;
465     
466     /* Fixup the memory map for the stack; it is now in
467      * far space and requires a FPOINTER to access it.
468      */
469     istack->fmap = 1;
470     istack->ptrType = FPOINTER;
471     options.cc_only =1;
472 }
473
474 static int _tininative_genIVT (FILE * of, symbol ** interrupts, int maxInterrupts) 
475 {
476     return 1;
477 }
478 static void _tininative_genAssemblerPreamble (FILE * of)
479 {
480     fputs("$include(tini.inc)\n", of);
481     fputs("$include(ds80c390.inc)\n", of);
482     fputs("$include(tinimacro.inc)\n", of);
483     fputs("$include(apiequ.inc)\n", of);
484     fputs("_bpx EQU 01Eh \t\t; _bpx (frame pointer) mapped to R8_B3:R7_B3\n", of);
485     fputs("_ap  EQU 01Dh \t\t; _ap mapped to R6_B3\n", of);
486     /* Must be first and return 0 */
487     fputs("Lib_Native_Init:\n",of);
488     fputs("\tclr\ta\n",of);
489     fputs("\tret\n",of);
490     fputs("LibraryID:\n",of);
491     fputs("\tdb \"DS\"\n",of);
492     if (options.tini_libid) {
493         fprintf(of,"\tdb 0,0,0%02xh,0%02xh,0%02xh,0%02xh\n",
494                 (options.tini_libid>>24 & 0xff),
495                 (options.tini_libid>>16 & 0xff),
496                 (options.tini_libid>>8 & 0xff),
497                 (options.tini_libid  & 0xff));
498     } else {
499         fprintf(of,"\tdb 0,0,0,0,0,1\n");
500     }
501
502 }
503 static void _tininative_genAssemblerEnd (FILE * of)
504 {
505     fputs("\tend\n",of);
506 }
507 /* tininative assembler , calls "macro", if it succeeds calls "a390" */
508 static void _tininative_do_assemble (const char * const *asmOptions)
509 {
510     static const char *macroCmd[] = {
511         "macro","$1.a51",NULL
512     };
513     static const char *a390Cmd[] = {
514         "a390","$1.mpp",NULL
515     };
516     char buffer[100];
517
518     buildCmdLine(buffer,macroCmd,srcFileName,NULL,NULL,NULL);
519     if (my_system(buffer)) {
520         exit(1);
521     }
522     buildCmdLine(buffer,a390Cmd,srcFileName,NULL,NULL,asmOptions);
523     if (my_system(buffer)) {
524         exit(1);
525     }    
526 }
527
528 /* list of key words used by TININative */
529 static char *_tininative_keywords[] =
530 {
531   "at",
532   "bit",
533   "code",
534   "critical",
535   "data",
536   "far",
537   "idata",
538   "interrupt",
539   "near",
540   "pdata",
541   "reentrant",
542   "sfr",
543   "sbit",
544   "using",
545   "xdata",
546   "_data",
547   "_code",
548   "_generic",
549   "_near",
550   "_xdata",
551   "_pdata",
552   "_idata",
553   "_naked",
554   "_JavaNative",
555   NULL
556 };
557
558 static builtins __tininative_builtins[] = {
559     { "__builtin_memcpy_x2x","v",3,{"cx*","cx*","i"}}, /* void __builtin_memcpy_x2x (xdata char *,xdata char *,int) */
560     { "__builtin_memcpy_c2x","v",3,{"cx*","cp*","i"}}, /* void __builtin_memcpy_c2x (xdata char *,code  char *,int) */
561     { "__builtin_memset_x","v",3,{"cx*","c","i"}},     /* void __builtin_memset     (xdata char *,char,int)         */
562     /* TINI NatLib */
563     { "NatLib_LoadByte","c",1,{"c"}},                  /* char  Natlib_LoadByte  (0 based parameter number)         */
564     { "NatLib_LoadShort","s",1,{"c"}},                 /* short Natlib_LoadShort (0 based parameter number)         */
565     { "NatLib_LoadInt","l",1,{"c"}},                   /* long  Natlib_LoadLong  (0 based parameter number)         */
566     { "NatLib_LoadPointer","cx*",1,{"c"}},             /* long  Natlib_LoadPointer  (0 based parameter number)      */
567     /* TINI StateBlock related */
568     { "NatLib_InstallImmutableStateBlock","c",2,{"vx*","us"}},/* char NatLib_InstallImmutableStateBlock(state block *,int handle) */
569     { "NatLib_InstallEphemeralStateBlock","c",2,{"vx*","us"}},/* char NatLib_InstallEphemeralStateBlock(state block *,int handle) */
570     { "NatLib_RemoveImmutableStateBlock","v",0,{NULL}},/* void NatLib_RemoveImmutableStateBlock() */
571     { "NatLib_RemoveEphemeralStateBlock","v",0,{NULL}},/* void NatLib_RemoveEphemeralStateBlock() */
572     { "NatLib_GetImmutableStateBlock","i",0,{NULL}},   /* int  NatLib_GetImmutableStateBlock () */
573     { "NatLib_GetEphemeralStateBlock","i",0,{NULL}},   /* int  NatLib_GetEphemeralStateBlock () */
574     /* Memory manager */
575     { "MM_XMalloc","i",1,{"l"}},                       /* int  MM_XMalloc (long)                */
576     { "MM_Malloc","i",1,{"i"}},                        /* int  MM_Malloc  (int)                 */
577     { "MM_ApplicationMalloc","i",1,{"i"}},             /* int  MM_ApplicationMalloc  (int)      */
578     { "MM_Free","i",1,{"i"}},                          /* int  MM_Free  (int)                   */
579     { "MM_Deref","cx*",1,{"i"}},                       /* char *MM_Free  (int)                  */
580     { "MM_UnrestrictedPersist","c",1,{"i"}},           /* char  MM_UnrestrictedPersist  (int)   */
581     /* System functions */
582     { "System_ExecJavaProcess","c",2,{"cx*","i"}},     /* char System_ExecJavaProcess (char *,int) */
583     { "System_GetRTCRegisters","v",1,{"cx*"}},         /* void System_GetRTCRegisters (char *) */
584     { "System_SetRTCRegisters","v",1,{"cx*"}},         /* void System_SetRTCRegisters (char *) */
585     { "System_ThreadSleep","v",2,{"l","c"}},           /* void System_ThreadSleep (long,char)  */
586     { "System_ThreadSleep_ExitCriticalSection","v",2,{"l","c"}},/* void System_ThreadSleep_ExitCriticalSection (long,char)  */
587     { "System_ProcessSleep","v",2,{"l","c"}},           /* void System_ProcessSleep (long,char)  */
588     { "System_ProcessSleep_ExitCriticalSection","v",2,{"l","c"}},/* void System_ProcessSleep_ExitCriticalSection (long,char)  */
589     { "System_ThreadResume","c",2,{"c","c"}},          /* char System_ThreadResume(char,char)  */
590     { "System_SaveJavaThreadState","v",0,{NULL}},      /* void System_SaveJavaThreadState()    */
591     { "System_RestoreJavaThreadState","v",0,{NULL}},   /* void System_RestoreJavaThreadState() */
592     { "System_ProcessYield","v",0,{NULL}},             /* void System_ProcessYield() */
593     { "System_ProcessSuspend","v",0,{NULL}},           /* void System_ProcessSuspend() */
594     { "System_ProcessResume","v",1,{"c"}},             /* void System_ProcessResume(char) */
595     { "System_RegisterPoll","c",1,{"vF*"}},            /* char System_RegisterPoll ((void *func pointer)()) */
596     { "System_RemovePoll","c",1,{"vF*"}},              /* char System_RemovePoll ((void *func pointer)()) */
597     { "System_GetCurrentProcessId","c",0,{NULL}},      /* char System_GetCurrentProcessId() */
598     { "System_GetCurrentThreadId","c",0,{NULL}},       /* char System_GetCurrentThreadId() */
599     { NULL , NULL,0, {NULL}}                       /* mark end of table */
600 };    
601
602 static const char *_a390Cmd[] =
603 {
604   "macro", "$l", "$3", "$1.a51", NULL
605 };
606 PORT tininative_port =
607 {
608   TARGET_ID_DS390,
609   "TININative",
610   "DS80C390",                   /* Target name */
611         NULL,                   /* processor */
612   {
613     FALSE,                      /* Emit glue around main */
614     MODEL_FLAT24,
615     MODEL_FLAT24
616   },
617   {
618     _a390Cmd,
619     NULL,
620     "-l",               /* Options with debug */
621     "-l",               /* Options without debug */
622     0,
623     ".a51",
624     _tininative_do_assemble
625   },
626   {
627     NULL,
628     NULL,
629     NULL,
630     ".tlib",
631   },
632   {
633     _defaultRules
634   },
635   {
636         /* Sizes: char, short, int, long, ptr, fptr, gptr, bit, float, max */
637     1, 2, 2, 4, 1, 3, 3, 1, 4, 4
638   },
639   {
640     "XSEG    (XDATA)",
641     "STACK   (DATA)",
642     "CSEG    (CODE)",
643     "DSEG    (DATA)",
644     "ISEG    (DATA)",
645     "XSEG    (XDATA)",
646     "BSEG    (BIT)",
647     "RSEG    (DATA)",
648     "GSINIT  (CODE)",
649     "OSEG    (OVR,DATA)",
650     "GSFINAL (CODE)",
651     "HOME        (CODE)",
652     NULL,
653     NULL,
654     NULL,
655     NULL,
656     1
657   },
658   {
659     +1, 1, 4, 1, 1, 0
660   },
661     /* ds390 has an 16 bit mul & div */
662   {
663     2, -1
664   },
665   "",
666   _tininative_init,
667   _ds390_parseOptions,
668   _tininative_finaliseOptions,
669   _tininative_setDefaultOptions,
670   ds390_assignRegisters,
671   _ds390_getRegName,
672   _tininative_keywords,
673   _tininative_genAssemblerPreamble,
674   _tininative_genAssemblerEnd,
675   _tininative_genIVT,
676   NULL,
677   _ds390_reset_regparm,
678   _ds390_regparm,
679   NULL,
680   NULL,
681   NULL,
682   FALSE,
683   0,                            /* leave lt */
684   0,                            /* leave gt */
685   1,                            /* transform <= to ! > */
686   1,                            /* transform >= to ! < */
687   1,                            /* transform != to !(a == b) */
688   0,                            /* leave == */
689   TRUE,                         /* we support array initializers. */
690   cseCostEstimation,
691   __tininative_builtins,        /* table of builtin functions */
692   FPOINTER,                     /* treat unqualified pointers as far pointers */
693   0,                            /* DONOT reset labelKey */
694   0,                            /* globals & local static NOT allowed */
695   PORT_MAGIC
696 };