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