* src/ds390/main.c,
[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 #include "../SDCCglobl.h"
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   if (options.noXinitOpt) {
122     port->genXINIT=0;
123   }
124
125   /* Hack-o-matic: if we are using the flat24 model,
126    * adjust pointer sizes.
127    */
128   if (options.model != MODEL_FLAT24)  {
129       fprintf (stderr,
130                "*** warning: ds390 port small and large model experimental.\n");
131       if (options.model == MODEL_LARGE)
132       {
133         port->mem.default_local_map = xdata;
134         port->mem.default_globl_map = xdata;
135       }
136       else
137       {
138         port->mem.default_local_map = data;
139         port->mem.default_globl_map = data;
140       }
141   }
142   else {
143     port->s.fptr_size = 3;
144     port->s.gptr_size = 4;
145
146     port->stack.isr_overhead += 2;      /* Will save dpx on ISR entry. */
147
148     port->stack.call_overhead += 2;     /* This acounts for the extra byte 
149                                  * of return addres on the stack.
150                                  * but is ugly. There must be a 
151                                  * better way.
152                                  */
153
154     port->mem.default_local_map = xdata;
155     port->mem.default_globl_map = xdata;
156
157     if (!options.stack10bit)
158     {
159     fprintf (stderr,
160              "*** error: ds390 port only supports the 10 bit stack mode.\n");
161     } else {
162         if (!options.stack_loc) options.stack_loc = 0x400008;
163     }
164     
165     /* generate native code 16*16 mul/div */
166     if (options.useAccelerator) 
167             port->support.muldiv=2;
168     else 
169             port->support.muldiv=1;
170
171      /* Fixup the memory map for the stack; it is now in
172      * far space and requires a FPOINTER to access it.
173      */
174     istack->fmap = 1;
175     istack->ptrType = FPOINTER;
176
177     if (options.parms_in_bank1) {
178         addSet(&preArgvSet, Safe_strdup("-DSDCC_PARMS_IN_BANK1"));
179     }
180   }  /* MODEL_FLAT24 */
181 }
182
183 static void
184 _ds390_setDefaultOptions (void)
185 {
186   options.model=MODEL_FLAT24;
187   options.stack10bit=1;
188 }
189
190 static const char *
191 _ds390_getRegName (struct regs *reg)
192 {
193   if (reg)
194     return reg->name;
195   return "err";
196 }
197
198 extern char * iComments2;
199
200 static void
201 _ds390_genAssemblerPreamble (FILE * of)
202 {
203       fputs (iComments2, of);
204       fputs ("; CPU specific extensions\n",of);
205       fputs (iComments2, of);
206
207       if (options.model == MODEL_FLAT24)
208         fputs (".flat24 on\t\t; 24 bit flat addressing\n", of);
209
210       fputs ("dpl1\t=\t0x84\n", of);
211       fputs ("dph1\t=\t0x85\n", of);
212       fputs ("dps\t=\t0x86\n", of);
213       fputs ("dpx\t=\t0x93\n", of);
214       fputs ("dpx1\t=\t0x95\n", of);
215       fputs ("esp\t=\t0x9B\n", of);
216       fputs ("ap\t=\t0x9C\n", of);
217       fputs ("_ap\t=\t0x9C\n", of);
218       fputs ("mcnt0\t=\t0xD1\n", of);
219       fputs ("mcnt1\t=\t0xD2\n", of);
220       fputs ("ma\t=\t0xD3\n", of);
221       fputs ("mb\t=\t0xD4\n", of);
222       fputs ("mc\t=\t0xD5\n", of);
223       fputs ("F1\t=\t0xD1\t; user flag\n", of);
224       if (options.parms_in_bank1) {
225           int i ;
226           for (i=0; i < 8 ; i++ )
227               fprintf (of,"b1_%d\t=\t0x%02X\n",i,8+i);
228       }
229 }
230
231 /* Generate interrupt vector table. */
232 static int
233 _ds390_genIVT (FILE * of, symbol ** interrupts, int maxInterrupts)
234 {
235   int i;
236
237   if (options.model != MODEL_FLAT24)
238     {
239       /* Let the default code handle it. */
240       return FALSE;
241     }
242
243   fprintf (of, "\tajmp\t__reset_vect\n");
244
245   /* now for the other interrupts */
246   for (i = 0; i < maxInterrupts; i++)
247     {
248       if (interrupts[i])
249         {
250           fprintf (of, "\tljmp\t%s\n\t.ds\t4\n", interrupts[i]->rname);
251         }
252       else
253         {
254           fprintf (of, "\treti\n\t.ds\t7\n");
255         }
256     }
257
258   fprintf (of, "__reset_vect:\n\tljmp\t__sdcc_gsinit_startup\n");
259
260   return TRUE;
261 }
262
263 /* Generate code to copy XINIT to XISEG */
264 static void _ds390_genXINIT (FILE * of) {
265   fprintf (of, ";       _ds390_genXINIT() start\n");
266   fprintf (of, "        mov     a,#l_XINIT\n");
267   fprintf (of, "        orl     a,#l_XINIT>>8\n");
268   fprintf (of, "        jz      00003$\n");
269   fprintf (of, "        mov     a,#s_XINIT\n");
270   fprintf (of, "        add     a,#l_XINIT\n");
271   fprintf (of, "        mov     r1,a\n");
272   fprintf (of, "        mov     a,#s_XINIT>>8\n");
273   fprintf (of, "        addc    a,#l_XINIT>>8\n");
274   fprintf (of, "        mov     r2,a\n");
275   fprintf (of, "        mov     dptr,#s_XINIT\n");
276   fprintf (of, "        mov     dps,#0x21\n");
277   fprintf (of, "        mov     dptr,#s_XISEG\n");
278   fprintf (of, "00001$: clr     a\n");
279   fprintf (of, "        movc    a,@a+dptr\n");
280   fprintf (of, "        movx    @dptr,a\n");
281   fprintf (of, "        inc     dptr\n");
282   fprintf (of, "        inc     dptr\n");
283   fprintf (of, "00002$: mov     a,dpl\n");
284   fprintf (of, "        cjne    a,ar1,00001$\n");
285   fprintf (of, "        mov     a,dph\n");
286   fprintf (of, "        cjne    a,ar2,00001$\n");
287   fprintf (of, "        mov     dps,#0\n");
288   fprintf (of, "00003$:\n");
289   fprintf (of, ";       _ds390_genXINIT() end\n");
290 }
291
292 /* Do CSE estimation */
293 static bool cseCostEstimation (iCode *ic, iCode *pdic)
294 {
295     operand *result = IC_RESULT(ic);
296     //operand *right  = IC_RIGHT(ic);
297     //operand *left   = IC_LEFT(ic);
298     sym_link *result_type = operandType(result);
299     //sym_link *right_type  = (right ? operandType(right) : 0);
300     //sym_link *left_type   = (left  ? operandType(left)  : 0);
301     
302     /* if it is a pointer then return ok for now */
303     if (IC_RESULT(ic) && IS_PTR(result_type)) return 1;
304     
305     /* if bitwise | add & subtract then no since mcs51 is pretty good at it 
306        so we will cse only if they are local (i.e. both ic & pdic belong to
307        the same basic block */
308     if (IS_BITWISE_OP(ic) || ic->op == '+' || ic->op == '-') {
309         /* then if they are the same Basic block then ok */
310         if (ic->eBBlockNum == pdic->eBBlockNum) return 1;
311         else return 0;
312     }
313         
314     /* for others it is cheaper to do the cse */
315     return 1;
316 }
317
318 bool _ds390_nativeMulCheck(iCode *ic, sym_link *left, sym_link *right)
319 {
320     return FALSE; // #STUB
321 }
322
323 /* Indicate which extended bit operations this port supports */
324 static bool
325 hasExtBitOp (int op, int size)
326 {
327   if (op == RRC
328       || op == RLC
329       || op == GETHBIT
330       || (op == SWAP && size <= 2)
331      )
332     return TRUE;
333   else
334     return FALSE;
335 }
336
337 /* Indicate the expense of an access to an output storage class */
338 static int
339 oclsExpense (struct memmap *oclass)
340 {
341   if (IN_FARSPACE(oclass))
342     return 1;
343     
344   return 0;
345 }
346
347 static int
348 instructionSize(char *inst, char *op1, char *op2)
349 {
350   int isflat24 = (options.model == MODEL_FLAT24);
351   
352   #define ISINST(s) (strncmp(inst, (s), sizeof(s)-1) == 0)
353   #define IS_A(s) (*(s) == 'a' && *(s+1) == '\0')
354   #define IS_C(s) (*(s) == 'c' && *(s+1) == '\0')
355   #define IS_Rn(s) (*(s) == 'r' && *(s+1) >= '0' && *(s+1) <= '7')
356   #define IS_atRi(s) (*(s) == '@' && *(s+1) == 'r')
357
358   /* Based on the current (2003-08-22) code generation for the
359      small library, the top instruction probability is:
360    
361        57% mov/movx/movc
362         6% push
363         6% pop
364         4% inc
365         4% lcall
366         4% add
367         3% clr
368         2% subb
369   */
370   /* mov, push, & pop are the 69% of the cases. Check them first! */
371   if (ISINST ("mov"))
372     {
373       if (*(inst+3)=='x') return 1; /* movx */
374       if (*(inst+3)=='c') return 1; /* movc */
375       if (IS_C (op1) || IS_C (op2)) return 2;
376       if (IS_A (op1))
377         {
378           if (IS_Rn (op2) || IS_atRi (op2)) return 1;
379           return 2;
380         }
381       if (IS_Rn(op1) || IS_atRi(op1))
382         {
383           if (IS_A(op2)) return 1;
384           return 2;
385         }
386       if (strcmp (op1, "dptr") == 0) return 3+isflat24;
387       if (IS_A (op2) || IS_Rn (op2) || IS_atRi (op2)) return 2;
388       return 3;
389     }
390   
391   if (ISINST ("push")) return 2;
392   if (ISINST ("pop")) return 2;
393
394   if (ISINST ("lcall")) return 3+isflat24;
395   if (ISINST ("ret")) return 1;
396   if (ISINST ("ljmp")) return 3+isflat24;
397   if (ISINST ("sjmp")) return 2;
398   if (ISINST ("rlc")) return 1;
399   if (ISINST ("rrc")) return 1;
400   if (ISINST ("rl")) return 1;
401   if (ISINST ("rr")) return 1;
402   if (ISINST ("swap")) return 1;
403   if (ISINST ("jc")) return 2;
404   if (ISINST ("jnc")) return 2;
405   if (ISINST ("jb")) return 3;
406   if (ISINST ("jnb")) return 3;
407   if (ISINST ("jbc")) return 3;
408   if (ISINST ("jmp")) return 1; // always jmp @a+dptr
409   if (ISINST ("jz")) return 2;
410   if (ISINST ("jnz")) return 2;
411   if (ISINST ("cjne")) return 3;
412   if (ISINST ("mul")) return 1;
413   if (ISINST ("div")) return 1;
414   if (ISINST ("da")) return 1;
415   if (ISINST ("xchd")) return 1;
416   if (ISINST ("reti")) return 1;
417   if (ISINST ("nop")) return 1;
418   if (ISINST ("acall")) return 2+isflat24;
419   if (ISINST ("ajmp")) return 2+isflat24;
420
421     
422   if (ISINST ("add") || ISINST ("addc") || ISINST ("subb") || ISINST ("xch"))
423     {
424       if (IS_Rn(op2) || IS_atRi(op2)) return 1;
425       return 2;
426     }
427   if (ISINST ("inc") || ISINST ("dec"))
428     {
429       if (IS_A(op1) || IS_Rn(op1) || IS_atRi(op1)) return 1;
430       if (strcmp(op1, "dptr") == 0) return 1;
431       return 2;
432     }
433   if (ISINST ("anl") || ISINST ("orl") || ISINST ("xrl"))
434     {
435       if (IS_C(op1)) return 2;
436       if (IS_A(op1))
437         {
438           if (IS_Rn(op2) || IS_atRi(op2)) return 1;
439           return 2;
440         }
441       else
442         {
443           if (IS_A(op2)) return 2;
444           return 3;
445         }
446     }
447   if (ISINST ("clr") || ISINST ("setb") || ISINST ("cpl"))
448     {
449       if (IS_A(op1) || IS_C(op1)) return 1;
450       return 2;
451     }
452   if (ISINST ("djnz"))
453     {
454       if (IS_Rn(op1)) return 2;
455       return 3;
456     }
457
458   /* If the instruction is unrecognized, we shouldn't try to optimize. */
459   /* Return a large value to discourage optimization.                  */
460   return 999;
461 }
462
463 asmLineNode *
464 ds390newAsmLineNode (int currentDPS)
465 {
466   asmLineNode *aln;
467
468   aln = Safe_alloc ( sizeof (asmLineNode));
469   aln->size = 0;
470   aln->regsRead = NULL;
471   aln->regsWritten = NULL;
472   aln->initialized = 0;
473   aln->currentDPS = currentDPS;
474   
475   return aln;
476 }
477
478
479 typedef struct ds390operanddata
480   {
481     char name[6];
482     int regIdx1;
483     int regIdx2;
484   }
485 ds390operanddata;
486
487 static ds390operanddata ds390operandDataTable[] =
488   {
489     {"_ap", AP_IDX, -1},
490     {"a", A_IDX, -1},
491     {"ab", A_IDX, B_IDX},
492     {"ac", CND_IDX, -1},
493     {"ap", AP_IDX, -1},
494     {"acc", A_IDX, -1},
495     {"ar0", R0_IDX, -1},
496     {"ar1", R1_IDX, -1},
497     {"ar2", R2_IDX, -1},
498     {"ar3", R3_IDX, -1},
499     {"ar4", R4_IDX, -1},
500     {"ar5", R5_IDX, -1},
501     {"ar6", R6_IDX, -1},
502     {"ar7", R7_IDX, -1},
503     {"b", B_IDX, -1},
504     {"c", CND_IDX, -1},
505     {"cy", CND_IDX, -1},
506     {"dph", DPH_IDX, -1},
507     {"dph0", DPH_IDX, -1},
508     {"dph1", DPH1_IDX, -1},
509     {"dpl", DPL_IDX, -1},
510     {"dpl0", DPL_IDX, -1},
511     {"dpl1", DPL1_IDX, -1},
512 /*  {"dptr", DPL_IDX, DPH_IDX}, */ /* dptr is special, based on currentDPS */
513     {"dps", DPS_IDX, -1},
514     {"dpx", DPX_IDX, -1},
515     {"dpx0", DPX_IDX, -1},
516     {"dpx1", DPX1_IDX, -1},
517     {"f0", CND_IDX, -1},
518     {"f1", CND_IDX, -1},
519     {"ov", CND_IDX, -1},
520     {"p", CND_IDX, -1},
521     {"psw", CND_IDX, -1},
522     {"r0", R0_IDX, -1},
523     {"r1", R1_IDX, -1},
524     {"r2", R2_IDX, -1},
525     {"r3", R3_IDX, -1},
526     {"r4", R4_IDX, -1},
527     {"r5", R5_IDX, -1},
528     {"r6", R6_IDX, -1},
529     {"r7", R7_IDX, -1},
530   };
531
532 static int
533 ds390operandCompare (const void *key, const void *member)
534 {
535   return strcmp((const char *)key, ((ds390operanddata *)member)->name);
536 }
537
538 static void      
539 updateOpRW (asmLineNode *aln, char *op, char *optype, int currentDPS)
540 {
541   ds390operanddata *opdat;
542   char *dot;
543   int regIdx1 = -1;
544   int regIdx2 = -1;
545   int regIdx3 = -1;
546   
547   dot = strchr(op, '.');
548   if (dot)
549     *dot = '\0';
550
551   opdat = bsearch (op, ds390operandDataTable,
552                    sizeof(ds390operandDataTable)/sizeof(ds390operanddata),
553                    sizeof(ds390operanddata), ds390operandCompare);
554   
555   if (opdat)
556     {
557       regIdx1 = opdat->regIdx1;
558       regIdx2 = opdat->regIdx2;
559     }
560   if (!strcmp(op, "dptr"))
561     {
562       if (!currentDPS)
563         {
564           regIdx1 = DPL_IDX;
565           regIdx2 = DPH_IDX;
566           regIdx3 = DPX_IDX;
567         }
568       else
569         {
570           regIdx1 = DPL1_IDX;
571           regIdx2 = DPH1_IDX;
572           regIdx3 = DPX1_IDX;
573         }
574     }
575     
576   if (strchr(optype,'r'))
577     {
578       if (regIdx1 >= 0)
579         aln->regsRead = bitVectSetBit (aln->regsRead, regIdx1);
580       if (regIdx2 >= 0)
581         aln->regsRead = bitVectSetBit (aln->regsRead, regIdx2);
582       if (regIdx3 >= 0)
583         aln->regsRead = bitVectSetBit (aln->regsRead, regIdx3);
584     }
585   if (strchr(optype,'w'))
586     {
587       if (regIdx1 >= 0)
588         aln->regsWritten = bitVectSetBit (aln->regsWritten, regIdx1);
589       if (regIdx2 >= 0)
590         aln->regsWritten = bitVectSetBit (aln->regsWritten, regIdx2);
591       if (regIdx3 >= 0)
592         aln->regsWritten = bitVectSetBit (aln->regsWritten, regIdx3);
593     }
594   if (op[0] == '@')
595     {
596       if (!strcmp(op, "@r0"))
597         aln->regsRead = bitVectSetBit (aln->regsRead, R0_IDX);
598       if (!strcmp(op, "@r1"))
599         aln->regsRead = bitVectSetBit (aln->regsRead, R1_IDX);
600       if (strstr(op, "dptr"))
601         {
602           if (!currentDPS)
603             {
604               aln->regsRead = bitVectSetBit (aln->regsRead, DPL_IDX);
605               aln->regsRead = bitVectSetBit (aln->regsRead, DPH_IDX);
606               aln->regsRead = bitVectSetBit (aln->regsRead, DPX_IDX);
607             }
608           else
609             {
610               aln->regsRead = bitVectSetBit (aln->regsRead, DPL1_IDX);
611               aln->regsRead = bitVectSetBit (aln->regsRead, DPH1_IDX);
612               aln->regsRead = bitVectSetBit (aln->regsRead, DPX1_IDX);
613             }
614         }
615       if (strstr(op, "a+"))
616         aln->regsRead = bitVectSetBit (aln->regsRead, A_IDX);
617     }
618 }
619
620 typedef struct ds390opcodedata
621   {
622     char name[6];
623     char class[3];
624     char pswtype[3];
625     char op1type[3];
626     char op2type[3];
627   }
628 ds390opcodedata;
629
630 static ds390opcodedata ds390opcodeDataTable[] =
631   {
632     {"acall","j", "",   "",   ""},
633     {"add",  "",  "w",  "rw", "r"},
634     {"addc", "",  "rw", "rw", "r"},
635     {"ajmp", "j", "",   "",   ""},
636     {"anl",  "",  "",   "rw", "r"},
637     {"cjne", "j", "w",  "r",  "r"},
638     {"clr",  "",  "",   "w",  ""},
639     {"cpl",  "",  "",   "rw", ""},
640     {"da",   "",  "rw", "rw", ""},
641     {"dec",  "",  "",   "rw", ""},
642     {"div",  "",  "w",  "rw", ""},
643     {"djnz", "j", "",  "rw",  ""},
644     {"inc",  "",  "",   "rw", ""},
645     {"jb",   "j", "",   "r",  ""},
646     {"jbc",  "j", "",  "rw",  ""},
647     {"jc",   "j", "",   "",   ""},
648     {"jmp",  "j", "",  "",    ""},
649     {"jnb",  "j", "",   "r",  ""},
650     {"jnc",  "j", "",   "",   ""},
651     {"jnz",  "j", "",  "",    ""},
652     {"jz",   "j", "",  "",    ""},
653     {"lcall","j", "",   "",   ""},
654     {"ljmp", "j", "",   "",   ""},
655     {"mov",  "",  "",   "w",  "r"},
656     {"movc", "",  "",   "w",  "r"},
657     {"movx", "",  "",   "w",  "r"},
658     {"mul",  "",  "w",  "rw", ""},
659     {"nop",  "",  "",   "",   ""},
660     {"orl",  "",  "",   "rw", "r"},
661     {"pop",  "",  "",   "w",  ""},
662     {"push", "",  "",   "r",  ""},
663     {"ret",  "j", "",   "",   ""},
664     {"reti", "j", "",   "",   ""},
665     {"rl",   "",  "",   "rw", ""},
666     {"rlc",  "",  "rw", "rw", ""},
667     {"rr",   "",  "",   "rw", ""},
668     {"rrc",  "",  "rw", "rw", ""},
669     {"setb", "",  "",   "w",  ""},
670     {"sjmp", "j", "",   "",   ""},
671     {"subb", "",  "rw", "rw", "r"},
672     {"swap", "",  "",   "rw", ""},
673     {"xch",  "",  "",   "rw", "rw"},
674     {"xchd", "",  "",   "rw", "rw"},
675     {"xrl",  "",  "",   "rw", "r"},
676   };
677   
678 static int
679 ds390opcodeCompare (const void *key, const void *member)
680 {
681   return strcmp((const char *)key, ((ds390opcodedata *)member)->name);
682 }
683
684 static asmLineNode *
685 asmLineNodeFromLineNode (lineNode *ln, int currentDPS)
686 {
687   asmLineNode *aln = ds390newAsmLineNode(currentDPS);
688   char *op, op1[256], op2[256];
689   int opsize;
690   const char *p;
691   char inst[8];
692   ds390opcodedata *opdat;
693
694   aln->initialized = 1;
695   
696   p = ln->line;
697   
698   while (*p && isspace(*p)) p++;
699   for (op = inst, opsize=1; *p; p++)
700     {
701       if (isspace(*p) || *p == ';' || *p == ':' || *p == '=')
702         break;
703       else
704         if (opsize < sizeof(inst))
705           *op++ = tolower(*p), opsize++;
706     }
707   *op = '\0';
708
709   if (*p == ';' || *p == ':' || *p == '=')
710     return aln;
711     
712   while (*p && isspace(*p)) p++;
713   if (*p == '=')
714     return aln;
715
716   for (op = op1, opsize=1; *p && *p != ','; p++)
717     {
718       if (!isspace(*p) && opsize < sizeof(op1))
719         *op++ = tolower(*p), opsize++;
720     }
721   *op = '\0';
722   
723   if (*p == ',') p++;
724   for (op = op2, opsize=1; *p && *p != ','; p++)
725     {
726       if (!isspace(*p) && opsize < sizeof(op2))
727         *op++ = tolower(*p), opsize++;
728     }
729   *op = '\0';
730
731   aln->size = instructionSize(inst, op1, op2);
732
733   aln->regsRead = newBitVect (END_IDX);
734   aln->regsWritten = newBitVect (END_IDX);
735
736   opdat = bsearch (inst, ds390opcodeDataTable,
737                    sizeof(ds390opcodeDataTable)/sizeof(ds390opcodedata),
738                    sizeof(ds390opcodedata), ds390opcodeCompare);
739
740   if (opdat)
741     {
742       updateOpRW (aln, op1, opdat->op1type, currentDPS);
743       updateOpRW (aln, op2, opdat->op2type, currentDPS);
744       if (strchr(opdat->pswtype,'r'))
745         aln->regsRead = bitVectSetBit (aln->regsRead, CND_IDX);
746       if (strchr(opdat->pswtype,'w'))
747         aln->regsWritten = bitVectSetBit (aln->regsWritten, CND_IDX);
748     }
749
750   return aln;
751 }
752
753 static void
754 initializeAsmLineNode (lineNode *line)
755 {
756   if (!line->aln)
757     line->aln = asmLineNodeFromLineNode (line, 0);
758   else if (line->aln && !line->aln->initialized)
759     {
760       int currentDPS = line->aln->currentDPS;
761       free(line->aln);
762       line->aln = asmLineNodeFromLineNode (line, currentDPS);
763     }
764 }
765
766 static int
767 getInstructionSize (lineNode *line)
768 {
769   initializeAsmLineNode (line);
770   return line->aln->size;
771 }
772
773 static bitVect *
774 getRegsRead (lineNode *line)
775 {
776   initializeAsmLineNode (line);
777   return line->aln->regsRead;
778 }
779
780 static bitVect *
781 getRegsWritten (lineNode *line)
782 {
783   initializeAsmLineNode (line);
784   return line->aln->regsWritten;
785 }
786
787
788 /** $1 is always the basename.
789     $2 is always the output file.
790     $3 varies
791     $l is the list of extra options that should be there somewhere...
792     MUST be terminated with a NULL.
793 */
794 static const char *_linkCmd[] =
795 {
796   "aslink", "-nf", "\"$1\"", NULL
797 };
798
799 /* $3 is replaced by assembler.debug_opts resp. port->assembler.plain_opts */   static const char *_asmCmd[] =
800 {
801   "asx8051", "$l", "$3", "\"$1.asm\"", NULL
802 };
803
804 /* Globals */
805 PORT ds390_port =
806 {
807   TARGET_ID_DS390,
808   "ds390",
809   "DS80C390",                   /* Target name */
810   NULL,
811   {
812     glue,
813     TRUE,                       /* Emit glue around main */
814     MODEL_SMALL | MODEL_LARGE | MODEL_FLAT24,
815     MODEL_SMALL
816   },
817   {
818     _asmCmd,
819     NULL,
820     "-plosgffc",                /* Options with debug */
821     "-plosgff",                 /* Options without debug */
822     0,
823     ".asm",
824     NULL                        /* no do_assemble function */
825   },
826   {
827     _linkCmd,
828     NULL,
829     NULL,
830     ".rel",
831     1
832   },
833   {
834     _defaultRules,
835     getInstructionSize,
836     getRegsRead,
837     getRegsWritten
838   },
839   {
840         /* Sizes: char, short, int, long, ptr, fptr, gptr, bit, float, max */
841     1, 2, 2, 4, 1, 2, 3, 1, 4, 4
842   },
843   {
844     "XSEG    (XDATA)",
845     "STACK   (DATA)",
846     "CSEG    (CODE)",
847     "DSEG    (DATA)",
848     "ISEG    (DATA)",
849     "XSEG    (XDATA)",
850     "BSEG    (BIT)",
851     "RSEG    (DATA)",
852     "GSINIT  (CODE)",
853     "OSEG    (OVR,DATA)",
854     "GSFINAL (CODE)",
855     "HOME    (CODE)",
856     "XISEG   (XDATA)", // initialized xdata
857     "XINIT   (CODE)", // a code copy of xiseg
858     NULL,
859     NULL,
860     1
861   },
862   { NULL, NULL },
863   {
864     +1, 1, 4, 1, 1, 0
865   },
866     /* ds390 has an 16 bit mul & div */
867   {
868     2, -1
869   },
870   {
871     ds390_emitDebuggerSymbol
872   },
873   "_",
874   _ds390_init,
875   _ds390_parseOptions,
876   NULL,
877   NULL,
878   _ds390_finaliseOptions,
879   _ds390_setDefaultOptions,
880   ds390_assignRegisters,
881   _ds390_getRegName,
882   _ds390_keywords,
883   _ds390_genAssemblerPreamble,
884   NULL,                         /* no genAssemblerEnd */
885   _ds390_genIVT,
886   _ds390_genXINIT,
887   NULL,                         /* genInitStartup */
888   _ds390_reset_regparm,
889   _ds390_regparm,
890   NULL,
891   NULL,
892   _ds390_nativeMulCheck,
893   hasExtBitOp,                  /* hasExtBitOp */
894   oclsExpense,                  /* oclsExpense */
895   FALSE,
896   TRUE,                         /* little endian */
897   0,                            /* leave lt */
898   0,                            /* leave gt */
899   1,                            /* transform <= to ! > */
900   1,                            /* transform >= to ! < */
901   1,                            /* transform != to !(a == b) */
902   0,                            /* leave == */
903 #if 0 // obsolete, and buggy for != xdata
904   TRUE,                         /* we support array initializers. */
905 #else
906   FALSE,                        /* No array initializer support. */
907 #endif
908   cseCostEstimation,
909   __ds390_builtins,             /* table of builtin functions */
910   GPOINTER,                     /* treat unqualified pointers as "generic" pointers */
911   1,                            /* reset labelKey to 1 */
912   1,                            /* globals & local static allowed */
913   PORT_MAGIC
914 };
915
916 /*---------------------------------------------------------------------------------*/
917 /*                               TININative specific                               */
918 /*---------------------------------------------------------------------------------*/
919 /* Globals */
920 static void _tininative_init (void)
921 {
922     asm_addTree (&asm_a390_mapping);
923 }
924
925 static void _tininative_setDefaultOptions (void)
926 {
927     options.model=MODEL_FLAT24;
928     options.stack10bit=1;
929     options.stackAuto = 1;
930 }
931
932 static void _tininative_finaliseOptions (void)
933 {
934     /* Hack-o-matic: if we are using the flat24 model,
935      * adjust pointer sizes.
936      */
937     if (options.model != MODEL_FLAT24)  {
938         options.model = MODEL_FLAT24 ;
939         fprintf(stderr,"TININative supports only MODEL FLAT24\n");
940     }
941     port->s.fptr_size = 3;
942     port->s.gptr_size = 4;
943     
944     port->stack.isr_overhead += 2;      /* Will save dpx on ISR entry. */
945     
946     port->stack.call_overhead += 2;     /* This acounts for the extra byte 
947                                          * of return addres on the stack.
948                                          * but is ugly. There must be a 
949                                          * better way.
950                                          */
951     
952     port->mem.default_local_map = xdata;
953     port->mem.default_globl_map = xdata;
954     
955     if (!options.stack10bit) {
956         options.stack10bit = 1;
957         fprintf(stderr,"TININative supports only stack10bit \n");
958     }
959     
960     if (!options.stack_loc) options.stack_loc = 0x400008;
961     
962     /* generate native code 16*16 mul/div */
963     if (options.useAccelerator) 
964         port->support.muldiv=2;
965     else 
966         port->support.muldiv=1;
967     
968     /* Fixup the memory map for the stack; it is now in
969      * far space and requires a FPOINTER to access it.
970      */
971     istack->fmap = 1;
972     istack->ptrType = FPOINTER;
973     options.cc_only =1;
974 }
975
976 static int _tininative_genIVT (FILE * of, symbol ** interrupts, int maxInterrupts) 
977 {
978     return 1;
979 }
980 static void _tininative_genAssemblerPreamble (FILE * of)
981 {
982     fputs("$include(tini.inc)\n", of);
983     fputs("$include(ds80c390.inc)\n", of);
984     fputs("$include(tinimacro.inc)\n", of);
985     fputs("$include(apiequ.inc)\n", of);
986     fputs("_bpx EQU 01Eh \t\t; _bpx (frame pointer) mapped to R8_B3:R7_B3\n", of);
987     fputs("_ap  EQU 01Dh \t\t; _ap mapped to R6_B3\n", of);
988     /* Must be first and return 0 */
989     fputs("Lib_Native_Init:\n",of);
990     fputs("\tclr\ta\n",of);
991     fputs("\tret\n",of);
992     fputs("LibraryID:\n",of);
993     fputs("\tdb \"DS\"\n",of);
994     if (options.tini_libid) {
995         fprintf(of,"\tdb 0,0,0%02xh,0%02xh,0%02xh,0%02xh\n",
996                 (options.tini_libid>>24 & 0xff),
997                 (options.tini_libid>>16 & 0xff),
998                 (options.tini_libid>>8 & 0xff),
999                 (options.tini_libid  & 0xff));
1000     } else {
1001         fprintf(of,"\tdb 0,0,0,0,0,1\n");
1002     }
1003
1004 }
1005 static void _tininative_genAssemblerEnd (FILE * of)
1006 {
1007     fputs("\tend\n",of);
1008 }
1009 /* tininative assembler , calls "macro", if it succeeds calls "a390" */
1010 static void _tininative_do_assemble (set *asmOptions)
1011 {
1012     static const char *macroCmd[] = {
1013         "macro","$1.a51",NULL
1014     };
1015     static const char *a390Cmd[] = {
1016         "a390","$1.mpp",NULL
1017     };
1018     char buffer[100];
1019
1020     buildCmdLine(buffer,macroCmd,dstFileName,NULL,NULL,NULL);
1021     if (my_system(buffer)) {
1022         exit(1);
1023     }
1024     buildCmdLine(buffer,a390Cmd,dstFileName,NULL,NULL,asmOptions);
1025     if (my_system(buffer)) {
1026         exit(1);
1027     }    
1028 }
1029
1030 /* list of key words used by TININative */
1031 static char *_tininative_keywords[] =
1032 {
1033   "at",
1034   "bit",
1035   "code",
1036   "critical",
1037   "data",
1038   "far",
1039   "idata",
1040   "interrupt",
1041   "near",
1042   "pdata",
1043   "reentrant",
1044   "sfr",
1045   "sbit",
1046   "using",
1047   "xdata",
1048   "_data",
1049   "_code",
1050   "_generic",
1051   "_near",
1052   "_xdata",
1053   "_pdata",
1054   "_idata",
1055   "_naked",
1056   "_JavaNative",
1057   NULL
1058 };
1059
1060 static builtins __tininative_builtins[] = {
1061     { "__builtin_memcpy_x2x","v",3,{"cx*","cx*","i"}}, /* void __builtin_memcpy_x2x (xdata char *,xdata char *,int) */
1062     { "__builtin_memcpy_c2x","v",3,{"cx*","cp*","i"}}, /* void __builtin_memcpy_c2x (xdata char *,code  char *,int) */
1063     { "__builtin_memset_x","v",3,{"cx*","c","i"}},     /* void __builtin_memset     (xdata char *,char,int)         */
1064     /* TINI NatLib */
1065     { "NatLib_LoadByte","c",1,{"c"}},                  /* char  Natlib_LoadByte  (0 based parameter number)         */
1066     { "NatLib_LoadShort","s",1,{"c"}},                 /* short Natlib_LoadShort (0 based parameter number)         */
1067     { "NatLib_LoadInt","l",1,{"c"}},                   /* long  Natlib_LoadLong  (0 based parameter number)         */
1068     { "NatLib_LoadPointer","cx*",1,{"c"}},             /* long  Natlib_LoadPointer  (0 based parameter number)      */
1069     /* TINI StateBlock related */
1070     { "NatLib_InstallImmutableStateBlock","c",2,{"vx*","us"}},/* char NatLib_InstallImmutableStateBlock(state block *,int handle) */
1071     { "NatLib_InstallEphemeralStateBlock","c",2,{"vx*","us"}},/* char NatLib_InstallEphemeralStateBlock(state block *,int handle) */
1072     { "NatLib_RemoveImmutableStateBlock","v",0,{NULL}},/* void NatLib_RemoveImmutableStateBlock() */
1073     { "NatLib_RemoveEphemeralStateBlock","v",0,{NULL}},/* void NatLib_RemoveEphemeralStateBlock() */
1074     { "NatLib_GetImmutableStateBlock","i",0,{NULL}},   /* int  NatLib_GetImmutableStateBlock () */
1075     { "NatLib_GetEphemeralStateBlock","i",0,{NULL}},   /* int  NatLib_GetEphemeralStateBlock () */
1076     /* Memory manager */
1077     { "MM_XMalloc","i",1,{"l"}},                       /* int  MM_XMalloc (long)                */
1078     { "MM_Malloc","i",1,{"i"}},                        /* int  MM_Malloc  (int)                 */
1079     { "MM_ApplicationMalloc","i",1,{"i"}},             /* int  MM_ApplicationMalloc  (int)      */
1080     { "MM_Free","i",1,{"i"}},                          /* int  MM_Free  (int)                   */
1081     { "MM_Deref","cx*",1,{"i"}},                       /* char *MM_Free  (int)                  */
1082     { "MM_UnrestrictedPersist","c",1,{"i"}},           /* char  MM_UnrestrictedPersist  (int)   */
1083     /* System functions */
1084     { "System_ExecJavaProcess","c",2,{"cx*","i"}},     /* char System_ExecJavaProcess (char *,int) */
1085     { "System_GetRTCRegisters","v",1,{"cx*"}},         /* void System_GetRTCRegisters (char *) */
1086     { "System_SetRTCRegisters","v",1,{"cx*"}},         /* void System_SetRTCRegisters (char *) */
1087     { "System_ThreadSleep","v",2,{"l","c"}},           /* void System_ThreadSleep (long,char)  */
1088     { "System_ThreadSleep_ExitCriticalSection","v",2,{"l","c"}},/* void System_ThreadSleep_ExitCriticalSection (long,char)  */
1089     { "System_ProcessSleep","v",2,{"l","c"}},           /* void System_ProcessSleep (long,char)  */
1090     { "System_ProcessSleep_ExitCriticalSection","v",2,{"l","c"}},/* void System_ProcessSleep_ExitCriticalSection (long,char)  */
1091     { "System_ThreadResume","c",2,{"c","c"}},          /* char System_ThreadResume(char,char)  */
1092     { "System_SaveJavaThreadState","v",0,{NULL}},      /* void System_SaveJavaThreadState()    */
1093     { "System_RestoreJavaThreadState","v",0,{NULL}},   /* void System_RestoreJavaThreadState() */
1094     { "System_ProcessYield","v",0,{NULL}},             /* void System_ProcessYield() */
1095     { "System_ProcessSuspend","v",0,{NULL}},           /* void System_ProcessSuspend() */
1096     { "System_ProcessResume","v",1,{"c"}},             /* void System_ProcessResume(char) */
1097     { "System_RegisterPoll","c",1,{"vF*"}},            /* char System_RegisterPoll ((void *func pointer)()) */
1098     { "System_RemovePoll","c",1,{"vF*"}},              /* char System_RemovePoll ((void *func pointer)()) */
1099     { "System_GetCurrentProcessId","c",0,{NULL}},      /* char System_GetCurrentProcessId() */
1100     { "System_GetCurrentThreadId","c",0,{NULL}},       /* char System_GetCurrentThreadId() */
1101     { NULL , NULL,0, {NULL}}                       /* mark end of table */
1102 };    
1103
1104 static const char *_a390Cmd[] =
1105 {
1106   "macro", "$l", "$3", "$1.a51", NULL
1107 };
1108 PORT tininative_port =
1109 {
1110   TARGET_ID_DS390,
1111   "TININative",
1112   "DS80C390",                   /* Target name */
1113         NULL,                   /* processor */
1114   {
1115     glue,
1116     FALSE,                      /* Emit glue around main */
1117     MODEL_FLAT24,
1118     MODEL_FLAT24
1119   },
1120   {
1121     _a390Cmd,
1122     NULL,
1123     "-l",               /* Options with debug */
1124     "-l",               /* Options without debug */
1125     0,
1126     ".a51",
1127     _tininative_do_assemble
1128   },
1129   {
1130     NULL,
1131     NULL,
1132     NULL,
1133     ".tlib",
1134     1
1135   },
1136   {
1137     _defaultRules,
1138     getInstructionSize,
1139     getRegsRead,
1140     getRegsWritten
1141   },
1142   {
1143         /* Sizes: char, short, int, long, ptr, fptr, gptr, bit, float, max */
1144     1, 2, 2, 4, 1, 3, 3, 1, 4, 4
1145   },
1146   {
1147     "XSEG    (XDATA)",
1148     "STACK   (DATA)",
1149     "CSEG    (CODE)",
1150     "DSEG    (DATA)",
1151     "ISEG    (DATA)",
1152     "XSEG    (XDATA)",
1153     "BSEG    (BIT)",
1154     "RSEG    (DATA)",
1155     "GSINIT  (CODE)",
1156     "OSEG    (OVR,DATA)",
1157     "GSFINAL (CODE)",
1158     "HOME        (CODE)",
1159     NULL,
1160     NULL,
1161     NULL,
1162     NULL,
1163     1
1164   },
1165   { NULL, NULL },
1166   {
1167     +1, 1, 4, 1, 1, 0
1168   },
1169     /* ds390 has an 16 bit mul & div */
1170   {
1171     2, -1
1172   },
1173   {
1174     ds390_emitDebuggerSymbol
1175   },
1176   "",
1177   _tininative_init,
1178   _ds390_parseOptions,
1179   NULL,
1180   NULL,
1181   _tininative_finaliseOptions,
1182   _tininative_setDefaultOptions,
1183   ds390_assignRegisters,
1184   _ds390_getRegName,
1185   _tininative_keywords,
1186   _tininative_genAssemblerPreamble,
1187   _tininative_genAssemblerEnd,
1188   _tininative_genIVT,
1189   NULL,
1190   NULL,                         /* genInitStartup */
1191   _ds390_reset_regparm,
1192   _ds390_regparm,
1193   NULL,
1194   NULL,
1195   NULL,
1196   hasExtBitOp,                  /* hasExtBitOp */
1197   oclsExpense,                  /* oclsExpense */
1198   FALSE,
1199   TRUE,                         /* little endian */
1200   0,                            /* leave lt */
1201   0,                            /* leave gt */
1202   1,                            /* transform <= to ! > */
1203   1,                            /* transform >= to ! < */
1204   1,                            /* transform != to !(a == b) */
1205   0,                            /* leave == */
1206   TRUE,                         /* we support array initializers. */
1207   cseCostEstimation,
1208   __tininative_builtins,        /* table of builtin functions */
1209   FPOINTER,                     /* treat unqualified pointers as far pointers */
1210   0,                            /* DONOT reset labelKey */
1211   0,                            /* globals & local static NOT allowed */
1212   PORT_MAGIC
1213 };
1214
1215 static int
1216 _ds400_genIVT (FILE * of, symbol ** interrupts, int maxInterrupts)
1217 {
1218     /* We can't generate a static IVT, since the boot rom creates one
1219      * for us in rom_init.
1220      * 
1221      * we must patch it as part of the C startup.
1222      */
1223      fprintf (of, ";\tDS80C400 IVT must be generated at runtime.\n");
1224     fprintf (of, "\tsjmp\t__sdcc_400boot\n");
1225     fprintf (of, "\t.ascii\t'TINI'\t; required signature for 400 boot loader.\n");
1226     fprintf (of, "\t.db\t0\t; selected bank: zero *should* work...\n");
1227     fprintf (of, "\t__sdcc_400boot:\tljmp\t__sdcc_gsinit_startup\n");
1228      return TRUE;
1229 }
1230
1231     
1232
1233 static void
1234 _ds400_finaliseOptions (void)
1235 {
1236   if (options.noXinitOpt) {
1237     port->genXINIT=0;
1238   }
1239
1240   // hackhack: we're a superset of the 390.
1241   addSet(&preArgvSet, Safe_strdup("-DSDCC_ds390"));
1242   addSet(&preArgvSet, Safe_strdup("-D__ds390"));
1243     
1244   /* Hack-o-matic: if we are using the flat24 model,
1245    * adjust pointer sizes.
1246    */
1247   if (options.model != MODEL_FLAT24)  {
1248       fprintf (stderr,
1249                "*** warning: ds400 port small and large model experimental.\n");
1250       if (options.model == MODEL_LARGE)
1251       {
1252         port->mem.default_local_map = xdata;
1253         port->mem.default_globl_map = xdata;
1254       }
1255       else
1256       {
1257         port->mem.default_local_map = data;
1258         port->mem.default_globl_map = data;
1259       }
1260   }
1261   else {
1262     port->s.fptr_size = 3;
1263     port->s.gptr_size = 4;
1264
1265     port->stack.isr_overhead += 2;      /* Will save dpx on ISR entry. */
1266
1267     port->stack.call_overhead += 2;     /* This acounts for the extra byte 
1268                                  * of return addres on the stack.
1269                                  * but is ugly. There must be a 
1270                                  * better way.
1271                                  */
1272
1273     port->mem.default_local_map = xdata;
1274     port->mem.default_globl_map = xdata;
1275
1276     if (!options.stack10bit)
1277     {
1278     fprintf (stderr,
1279              "*** error: ds400 port only supports the 10 bit stack mode.\n");
1280     } else {
1281         if (!options.stack_loc) options.stack_loc = 0xffdc00;
1282         // assumes IDM1:0 = 1:0, CMA = 1.
1283     }
1284     
1285     /* generate native code 16*16 mul/div */
1286     if (options.useAccelerator) 
1287             port->support.muldiv=2;
1288     else 
1289             port->support.muldiv=1;
1290
1291      /* Fixup the memory map for the stack; it is now in
1292      * far space and requires a FPOINTER to access it.
1293      */
1294     istack->fmap = 1;
1295     istack->ptrType = FPOINTER;
1296
1297     if (options.parms_in_bank1) {
1298         addSet(&preArgvSet, Safe_strdup("-DSDCC_PARMS_IN_BANK1"));
1299     }
1300      
1301     // the DS400 rom calling interface uses register bank 3.
1302     RegBankUsed[3] = 1;
1303       
1304   }  /* MODEL_FLAT24 */
1305 }
1306
1307 static void _ds400_generateRomDataArea(FILE *fp, bool isMain)
1308 {
1309     /* Only do this for the file containing main() */
1310     if (isMain)
1311     {
1312         fprintf(fp, "%s", iComments2);
1313         fprintf(fp, "; the direct data area used by the DS80c400 ROM code.\n");
1314         fprintf(fp, "%s", iComments2);
1315         fprintf(fp, ".area ROMSEG (ABS,CON,DATA)\n\n");
1316         fprintf(fp, ".ds 24 ; 24 bytes of directs used starting at 0x68\n\n");
1317     }
1318 }
1319
1320 static void _ds400_linkRomDataArea(FILE *fp)
1321 {
1322     fprintf(fp, "-b ROMSEG = 0x0068\n");
1323 }
1324
1325
1326 PORT ds400_port =
1327 {
1328   TARGET_ID_DS400,
1329   "ds400",
1330   "DS80C400",                   /* Target name */
1331   NULL,
1332   {
1333     glue,
1334     TRUE,                       /* Emit glue around main */
1335     MODEL_SMALL | MODEL_LARGE | MODEL_FLAT24,
1336     MODEL_SMALL
1337   },
1338   {
1339     _asmCmd,
1340     NULL,
1341     "-plosgffc",                /* Options with debug */
1342     "-plosgff",                 /* Options without debug */
1343     0,
1344     ".asm",
1345     NULL                        /* no do_assemble function */
1346   },
1347   {
1348     _linkCmd,
1349     NULL,
1350     NULL,
1351     ".rel",
1352     1
1353   },
1354   {
1355     _defaultRules,
1356     getInstructionSize,
1357     getRegsRead,
1358     getRegsWritten
1359   },
1360   {
1361         /* Sizes: char, short, int, long, ptr, fptr, gptr, bit, float, max */
1362     1, 2, 2, 4, 1, 2, 3, 1, 4, 4
1363   },
1364   {
1365     "XSEG    (XDATA)",
1366     "STACK   (DATA)",
1367     "CSEG    (CODE)",
1368     "DSEG    (DATA)",
1369     "ISEG    (DATA)",
1370     "XSEG    (XDATA)",
1371     "BSEG    (BIT)",
1372     "RSEG    (DATA)",
1373     "GSINIT  (CODE)",
1374     "OSEG    (OVR,DATA)",
1375     "GSFINAL (CODE)",
1376     "HOME    (CODE)",
1377     "XISEG   (XDATA)", // initialized xdata
1378     "XINIT   (CODE)", // a code copy of xiseg
1379     NULL,
1380     NULL,
1381     1
1382   },
1383   { _ds400_generateRomDataArea, _ds400_linkRomDataArea },
1384   {
1385     +1, 1, 4, 1, 1, 0
1386   },
1387     /* ds390 has an 16 bit mul & div */
1388   {
1389     2, -1
1390   },
1391   {
1392     ds390_emitDebuggerSymbol
1393   },
1394   "_",
1395   _ds390_init,
1396   _ds390_parseOptions,
1397   NULL,
1398   NULL,
1399   _ds400_finaliseOptions,
1400   _ds390_setDefaultOptions,
1401   ds390_assignRegisters,
1402   _ds390_getRegName,
1403   _ds390_keywords,
1404   _ds390_genAssemblerPreamble,
1405   NULL,                         /* no genAssemblerEnd */
1406   _ds400_genIVT,
1407   _ds390_genXINIT,
1408   NULL,                         /* genInitStartup */
1409   _ds390_reset_regparm,
1410   _ds390_regparm,
1411   NULL,
1412   NULL,
1413   _ds390_nativeMulCheck,
1414   hasExtBitOp,                  /* hasExtBitOp */
1415   oclsExpense,                  /* oclsExpense */
1416   FALSE,
1417   TRUE,                         /* little endian */
1418   0,                            /* leave lt */
1419   0,                            /* leave gt */
1420   1,                            /* transform <= to ! > */
1421   1,                            /* transform >= to ! < */
1422   1,                            /* transform != to !(a == b) */
1423   0,                            /* leave == */
1424   TRUE,                         /* we support array initializers. */
1425   cseCostEstimation,
1426   __ds390_builtins,             /* table of builtin functions */
1427   GPOINTER,                     /* treat unqualified pointers as "generic" pointers */
1428   1,                            /* reset labelKey to 1 */
1429   1,                            /* globals & local static allowed */
1430   PORT_MAGIC
1431 };