1) added __builtin_inp & __builtin_outp used to read in data of given length
[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     options.parms_in_bank1=1;
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   {
328     TRUE,                       /* Emit glue around main */
329     MODEL_SMALL | MODEL_LARGE | MODEL_FLAT24,
330     MODEL_SMALL
331   },
332   {
333     _asmCmd,
334     NULL,
335     "-plosgffc",                /* Options with debug */
336     "-plosgff",                 /* Options without debug */
337     0,
338     ".asm",
339     NULL                        /* no do_assemble function */
340   },
341   {
342     _linkCmd,
343     NULL,
344     NULL,
345     ".rel"
346   },
347   {
348     _defaultRules
349   },
350   {
351         /* Sizes: char, short, int, long, ptr, fptr, gptr, bit, float, max */
352     1, 2, 2, 4, 1, 2, 3, 1, 4, 4
353   },
354   {
355     "XSEG    (XDATA)",
356     "STACK   (DATA)",
357     "CSEG    (CODE)",
358     "DSEG    (DATA)",
359     "ISEG    (DATA)",
360     "XSEG    (XDATA)",
361     "BSEG    (BIT)",
362     "RSEG    (DATA)",
363     "GSINIT  (CODE)",
364     "OSEG    (OVR,DATA)",
365     "GSFINAL (CODE)",
366     "HOME    (CODE)",
367     "XISEG   (XDATA)", // initialized xdata
368     "XINIT   (CODE)", // a code copy of xiseg
369     NULL,
370     NULL,
371     1
372   },
373   {
374     +1, 1, 4, 1, 1, 0
375   },
376     /* ds390 has an 16 bit mul & div */
377   {
378     2, -1
379   },
380   "_",
381   _ds390_init,
382   _ds390_parseOptions,
383   _ds390_finaliseOptions,
384   _ds390_setDefaultOptions,
385   ds390_assignRegisters,
386   _ds390_getRegName,
387   _ds390_keywords,
388   _ds390_genAssemblerPreamble,
389   NULL,                         /* no genAssemblerEnd */
390   _ds390_genIVT,
391   _ds390_genXINIT,
392   _ds390_reset_regparm,
393   _ds390_regparm,
394   NULL,
395   NULL,
396   NULL,
397   FALSE,
398   0,                            /* leave lt */
399   0,                            /* leave gt */
400   1,                            /* transform <= to ! > */
401   1,                            /* transform >= to ! < */
402   1,                            /* transform != to !(a == b) */
403   0,                            /* leave == */
404   TRUE,                         /* we support array initializers. */
405   cseCostEstimation,
406   __ds390_builtins,             /* table of builtin functions */
407   GPOINTER,                     /* treat unqualified pointers as "generic" pointers */
408   1,                            /* reset labelKey to 1 */
409   1,                            /* globals & local static allowed */
410   PORT_MAGIC
411 };
412
413 /*---------------------------------------------------------------------------------*/
414 /*                               TININative specific                               */
415 /*---------------------------------------------------------------------------------*/
416 /* Globals */
417 static void _tininative_init (void)
418 {
419     asm_addTree (&asm_a390_mapping);
420 }
421
422 static void _tininative_setDefaultOptions (void)
423 {
424     options.model=MODEL_FLAT24;
425     options.stack10bit=1;
426     options.stackAuto = 1;
427 }
428
429 static void _tininative_finaliseOptions (void)
430 {
431     /* Hack-o-matic: if we are using the flat24 model,
432      * adjust pointer sizes.
433      */
434     if (options.model != MODEL_FLAT24)  {
435         options.model = MODEL_FLAT24 ;
436         fprintf(stderr,"TININative supports only MODEL FLAT24\n");
437     }
438     port->s.fptr_size = 3;
439     port->s.gptr_size = 4;
440     
441     port->stack.isr_overhead += 2;      /* Will save dpx on ISR entry. */
442     
443     port->stack.call_overhead += 2;     /* This acounts for the extra byte 
444                                          * of return addres on the stack.
445                                          * but is ugly. There must be a 
446                                          * better way.
447                                          */
448     
449     port->mem.default_local_map = xdata;
450     port->mem.default_globl_map = xdata;
451     
452     if (!options.stack10bit) {
453         options.stack10bit = 1;
454         fprintf(stderr,"TININative supports only stack10bit \n");
455     }
456     
457     if (!options.stack_loc) options.stack_loc = 0x400007;
458     
459     /* generate native code 16*16 mul/div */
460     if (options.useAccelerator) 
461         port->support.muldiv=2;
462     else 
463         port->support.muldiv=1;
464     
465     /* Fixup the memory map for the stack; it is now in
466      * far space and requires a FPOINTER to access it.
467      */
468     istack->fmap = 1;
469     istack->ptrType = FPOINTER;
470     options.cc_only =1;
471 }
472
473 static int _tininative_genIVT (FILE * of, symbol ** interrupts, int maxInterrupts) 
474 {
475     return 1;
476 }
477 static void _tininative_genAssemblerPreamble (FILE * of)
478 {
479     fputs("$include(tini.inc)\n", of);
480     fputs("$include(ds80c390.inc)\n", of);
481     fputs("$include(tinimacro.inc)\n", of);
482     fputs("$include(apiequ.inc)\n", of);
483     fputs("_bpx EQU 01Eh \t\t; _bpx (frame pointer) mapped to R8_B3:R7_B3\n", of);
484     fputs("_ap  EQU 01Dh \t\t; _ap mapped to R6_B3\n", of);
485     /* Must be first and return 0 */
486     fputs("Lib_Native_Init:\n",of);
487     fputs("\tclr\ta\n",of);
488     fputs("\tret\n",of);
489     fputs("LibraryID:\n",of);
490     fputs("\tdb \"DS\"\n",of);
491     if (options.tini_libid) {
492         fprintf(of,"\tdb 0,0,0%02xh,0%02xh,0%02xh,0%02xh\n",
493                 (options.tini_libid>>24 & 0xff),
494                 (options.tini_libid>>16 & 0xff),
495                 (options.tini_libid>>8 & 0xff),
496                 (options.tini_libid  & 0xff));
497     } else {
498         fprintf(of,"\tdb 0,0,0,0,0,1\n");
499     }
500
501 }
502 static void _tininative_genAssemblerEnd (FILE * of)
503 {
504     fputs("\tend\n",of);
505 }
506 /* tininative assembler , calls "macro", if it succeeds calls "a390" */
507 static void _tininative_do_assemble (const char * const *asmOptions)
508 {
509     static const char *macroCmd[] = {
510         "macro","$1.a51",NULL
511     };
512     static const char *a390Cmd[] = {
513         "a390","$1.mpp",NULL
514     };
515     char buffer[100];
516
517     buildCmdLine(buffer,macroCmd,srcFileName,NULL,NULL,NULL);
518     if (my_system(buffer)) {
519         exit(1);
520     }
521     buildCmdLine(buffer,a390Cmd,srcFileName,NULL,NULL,asmOptions);
522     if (my_system(buffer)) {
523         exit(1);
524     }    
525 }
526
527 /* list of key words used by TININative */
528 static char *_tininative_keywords[] =
529 {
530   "at",
531   "bit",
532   "code",
533   "critical",
534   "data",
535   "far",
536   "idata",
537   "interrupt",
538   "near",
539   "pdata",
540   "reentrant",
541   "sfr",
542   "sbit",
543   "using",
544   "xdata",
545   "_data",
546   "_code",
547   "_generic",
548   "_near",
549   "_xdata",
550   "_pdata",
551   "_idata",
552   "_naked",
553   "_JavaNative",
554   NULL
555 };
556
557 static builtins __tininative_builtins[] = {
558     { "__builtin_memcpy_x2x","v",3,{"cx*","cx*","i"}}, /* void __builtin_memcpy_x2x (xdata char *,xdata char *,int) */
559     { "__builtin_memcpy_c2x","v",3,{"cx*","cp*","i"}}, /* void __builtin_memcpy_c2x (xdata char *,code  char *,int) */
560     { "__builtin_memset_x","v",3,{"cx*","c","i"}},     /* void __builtin_memset     (xdata char *,char,int)         */
561     /* TINI NatLib */
562     { "NatLib_LoadByte","c",1,{"c"}},                  /* char  Natlib_LoadByte  (0 based parameter number)         */
563     { "NatLib_LoadShort","s",1,{"c"}},                 /* short Natlib_LoadShort (0 based parameter number)         */
564     { "NatLib_LoadInt","l",1,{"c"}},                   /* long  Natlib_LoadLong  (0 based parameter number)         */
565     { "NatLib_LoadPointer","cx*",1,{"c"}},             /* long  Natlib_LoadPointer  (0 based parameter number)      */
566     /* TINI StateBlock related */
567     { "NatLib_InstallImmutableStateBlock","c",2,{"vx*","us"}},/* char NatLib_InstallImmutableStateBlock(state block *,int handle) */
568     { "NatLib_InstallEphemeralStateBlock","c",2,{"vx*","us"}},/* char NatLib_InstallEphemeralStateBlock(state block *,int handle) */
569     { "NatLib_RemoveImmutableStateBlock","v",0,{NULL}},/* void NatLib_RemoveImmutableStateBlock() */
570     { "NatLib_RemoveEphemeralStateBlock","v",0,{NULL}},/* void NatLib_RemoveEphemeralStateBlock() */
571     { "NatLib_GetImmutableStateBlock","i",0,{NULL}},   /* int  NatLib_GetImmutableStateBlock () */
572     { "NatLib_GetEphemeralStateBlock","i",0,{NULL}},   /* int  NatLib_GetEphemeralStateBlock () */
573     /* Memory manager */
574     { "MM_XMalloc","i",1,{"l"}},                       /* int  MM_XMalloc (long)                */
575     { "MM_Malloc","i",1,{"i"}},                        /* int  MM_Malloc  (int)                 */
576     { "MM_ApplicationMalloc","i",1,{"i"}},             /* int  MM_ApplicationMalloc  (int)      */
577     { "MM_Free","i",1,{"i"}},                          /* int  MM_Free  (int)                   */
578     { "MM_Deref","cx*",1,{"i"}},                       /* char *MM_Free  (int)                  */
579     { "MM_UnrestrictedPersist","c",1,{"i"}},           /* char  MM_UnrestrictedPersist  (int)   */
580     /* System functions */
581     { "System_ExecJavaProcess","c",2,{"cx*","i"}},     /* char System_ExecJavaProcess (char *,int) */
582     { "System_GetRTCRegisters","v",1,{"cx*"}},         /* void System_GetRTCRegisters (char *) */
583     { "System_SetRTCRegisters","v",1,{"cx*"}},         /* void System_SetRTCRegisters (char *) */
584     { "System_ThreadSleep","v",2,{"l","c"}},           /* void System_ThreadSleep (long,char)  */
585     { "System_ThreadSleep_ExitCriticalSection","v",2,{"l","c"}},/* void System_ThreadSleep_ExitCriticalSection (long,char)  */
586     { "System_ProcessSleep","v",2,{"l","c"}},           /* void System_ProcessSleep (long,char)  */
587     { "System_ProcessSleep_ExitCriticalSection","v",2,{"l","c"}},/* void System_ProcessSleep_ExitCriticalSection (long,char)  */
588     { "System_ThreadResume","c",2,{"c","c"}},          /* char System_ThreadResume(char,char)  */
589     { "System_SaveJavaThreadState","v",0,{NULL}},      /* void System_SaveJavaThreadState()    */
590     { "System_RestoreJavaThreadState","v",0,{NULL}},   /* void System_RestoreJavaThreadState() */
591     { "System_ProcessYield","v",0,{NULL}},             /* void System_ProcessYield() */
592     { "System_ProcessSuspend","v",0,{NULL}},           /* void System_ProcessSuspend() */
593     { "System_ProcessResume","v",1,{"c"}},             /* void System_ProcessResume(char) */
594     { "System_RegisterPoll","c",1,{"vF*"}},            /* char System_RegisterPoll ((void *func pointer)()) */
595     { "System_RemovePoll","c",1,{"vF*"}},              /* char System_RemovePoll ((void *func pointer)()) */
596     { "System_GetCurrentProcessId","c",0,{NULL}},      /* char System_GetCurrentProcessId() */
597     { "System_GetCurrentThreadId","c",0,{NULL}},       /* char System_GetCurrentThreadId() */
598     { NULL , NULL,0, {NULL}}                       /* mark end of table */
599 };    
600
601 static const char *_a390Cmd[] =
602 {
603   "macro", "$l", "$3", "$1.a51", NULL
604 };
605 PORT tininative_port =
606 {
607   TARGET_ID_DS390,
608   "TININative",
609   "DS80C390",                   /* Target name */
610   {
611     FALSE,                      /* Emit glue around main */
612     MODEL_FLAT24,
613     MODEL_FLAT24
614   },
615   {
616     _a390Cmd,
617     NULL,
618     "-l",               /* Options with debug */
619     "-l",               /* Options without debug */
620     0,
621     ".a51",
622     _tininative_do_assemble
623   },
624   {
625     NULL,
626     NULL,
627     NULL,
628     ".tlib",
629   },
630   {
631     _defaultRules
632   },
633   {
634         /* Sizes: char, short, int, long, ptr, fptr, gptr, bit, float, max */
635     1, 2, 2, 4, 1, 3, 3, 1, 4, 4
636   },
637   {
638     "XSEG    (XDATA)",
639     "STACK   (DATA)",
640     "CSEG    (CODE)",
641     "DSEG    (DATA)",
642     "ISEG    (DATA)",
643     "XSEG    (XDATA)",
644     "BSEG    (BIT)",
645     "RSEG    (DATA)",
646     "GSINIT  (CODE)",
647     "OSEG    (OVR,DATA)",
648     "GSFINAL (CODE)",
649     "HOME        (CODE)",
650     NULL,
651     NULL,
652     NULL,
653     NULL,
654     1
655   },
656   {
657     +1, 1, 4, 1, 1, 0
658   },
659     /* ds390 has an 16 bit mul & div */
660   {
661     2, -1
662   },
663   "",
664   _tininative_init,
665   _ds390_parseOptions,
666   _tininative_finaliseOptions,
667   _tininative_setDefaultOptions,
668   ds390_assignRegisters,
669   _ds390_getRegName,
670   _tininative_keywords,
671   _tininative_genAssemblerPreamble,
672   _tininative_genAssemblerEnd,
673   _tininative_genIVT,
674   NULL,
675   _ds390_reset_regparm,
676   _ds390_regparm,
677   NULL,
678   NULL,
679   NULL,
680   FALSE,
681   0,                            /* leave lt */
682   0,                            /* leave gt */
683   1,                            /* transform <= to ! > */
684   1,                            /* transform >= to ! < */
685   1,                            /* transform != to !(a == b) */
686   0,                            /* leave == */
687   TRUE,                         /* we support array initializers. */
688   cseCostEstimation,
689   __tininative_builtins,        /* table of builtin functions */
690   FPOINTER,                     /* treat unqualified pointers as far pointers */
691   0,                            /* DONOT reset labelKey */
692   0,                            /* globals & local static NOT allowed */
693   PORT_MAGIC
694 };