727bee62c2eabb59b631b3c3c191c4b0d67a066f
[fw/sdcc] / src / pic16 / main.c
1 /*-------------------------------------------------------------------------
2
3   main.c - pic16 specific general functions.
4
5    Written by - Scott Dattalo scott@dattalo.com
6    Ported to PIC16 by - Martin Dubuc m.debuc@rogers.com
7     
8    Note that mlh prepended _pic16_ on the static functions.  Makes
9    it easier to set a breakpoint using the debugger.
10
11
12    This program is free software; you can redistribute it and/or modify it
13    under the terms of the GNU General Public License as published by the
14    Free Software Foundation; either version 2, or (at your option) any
15    later version.
16    
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
21    
22    You should have received a copy of the GNU General Public License
23    along with this program; if not, write to the Free Software
24    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 -------------------------------------------------------------------------*/
26
27 #include "common.h"
28 #include "main.h"
29 #include "ralloc.h"
30 #include "device.h"
31 #include "SDCCutil.h"
32 #include "glue.h"
33 #include "pcode.h"
34 //#include "gen.h"
35
36
37 static char _defaultRules[] =
38 {
39 #include "peeph.rul"
40 };
41
42 /* list of key words used by pic16 */
43 static char *_pic16_keywords[] =
44 {
45   "at",
46   "bit",
47   "code",
48   "critical",
49   "register",
50   "data",
51   "far",
52   "idata",
53   "interrupt",
54   "near",
55   "pdata",
56   "reentrant",
57   "sfr",
58   "sbit",
59   "using",
60   "xdata",
61   "_data",
62   "_code",
63   "_generic",
64   "_near",
65   "_xdata",
66   "_pdata",
67   "_idata",
68   "_naked",
69   NULL
70 };
71
72
73 pic16_sectioninfo_t pic16_sectioninfo;
74
75
76 extern char *pic16_processor_base_name(void);
77
78 void  pic16_pCodeInitRegisters(void);
79
80 void pic16_assignRegisters (eBBlock ** ebbs, int count);
81
82 static int regParmFlg = 0;      /* determine if we can register a parameter */
83
84 pic16_options_t pic16_options;
85
86 extern set *includeDirsSet;
87 extern set *dataDirsSet;
88 extern set *libFilesSet;
89
90 /* Also defined in gen.h, but the #include is commented out */
91 /* for an unknowned reason. - EEP */
92 void pic16_emitDebuggerSymbol (char *);
93  
94 extern regs* newReg(short type, short pc_type, int rIdx, char *name, int size, int alias, operand *refop);
95 extern void pic16_emitConfigRegs(FILE *of);
96 extern void pic16_emitIDRegs(FILE *of);
97
98
99
100 static void
101 _pic16_init (void)
102 {
103         asm_addTree (&asm_asxxxx_mapping);
104         pic16_pCodeInitRegisters();
105         maxInterrupts = 2;
106
107         /* set pic16 port options to defaults */
108         pic16_options.no_banksel = 0;
109         pic16_options.opt_banksel = 0;
110         pic16_options.omit_configw = 0;
111         pic16_options.omit_ivt = 0;
112         pic16_options.leave_reset = 0;
113         pic16_options.stack_model = 0;                  /* 0 for 'small', 1 for 'large' */
114         pic16_options.ivt_loc = 0x000000;               /* default location of interrupt vectors */
115         pic16_options.nodefaultlibs = 0;                /* link default libraries */
116         pic16_options.dumpcalltree = 0;
117 }
118
119 static void
120 _pic16_reset_regparm ()
121 {
122         regParmFlg = 0;
123 }
124
125 static int
126 _pic16_regparm (sym_link * l)
127 {
128         /* for this processor it is simple
129          * can pass only the first parameter in a register */
130         if(pic16_fstack) {
131                 if(regParmFlg)return 0;
132                 regParmFlg = 1;
133           return 1;
134         } else {
135                 regParmFlg++;// = 1;
136           return 1;
137         }
138 }
139
140
141 int initsfpnt=0;                /* set to 1 if source provides a pragma for stack
142                                  * so glue() later emits code to initialize stack/frame pointers */
143 set *absSymSet;
144
145 set *sectNames=NULL;                    /* list of section listed in pragma directives */
146 set *sectSyms=NULL;                     /* list of symbols set in a specific section */
147
148
149 static int
150 _process_pragma(const char *sz)
151 {
152   static const char *WHITE = " \t\n";
153   
154   char  *ptr = strtok((char *)sz, WHITE);
155
156         /* #pragma maxram [maxram] */
157         if (startsWith (ptr, "maxram")) {
158           char *maxRAM = strtok((char *)NULL, WHITE);
159
160                 if (maxRAM != (char *)NULL) {
161                   int maxRAMaddress;
162                   value *maxRAMVal;
163
164                         maxRAMVal = constVal(maxRAM);
165                         maxRAMaddress = (int)floatFromVal(maxRAMVal);
166                         pic16_setMaxRAM(maxRAMaddress);
167                 }
168         }
169         
170         /* #pragma stack [stack-position] [stack-len] */
171         if(startsWith(ptr, "stack")) {
172           char *stackPosS = strtok((char *)NULL, WHITE);
173           char *stackLenS = strtok((char *)NULL, WHITE);
174           value *stackPosVal;
175           value *stackLenVal;
176           regs *reg;
177           symbol *sym;
178
179                 stackPosVal = constVal( stackPosS );
180                 stackPos = (unsigned int)floatFromVal( stackPosVal );
181
182                 
183                 if(stackLenS) {
184                         stackLenVal = constVal( stackLenS );
185                         stackLen = (unsigned int)floatFromVal( stackLenVal );
186                 }
187
188                 if(stackLen < 1) {
189                         stackLen = 64;
190                         fprintf(stderr, "%s:%d setting stack to default size 0x%x\n", __FILE__, __LINE__, stackLen);
191                 }
192
193 //              fprintf(stderr, "Initializing stack pointer at 0x%x len 0x%x\n", stackPos, stackLen);
194                                 
195                 reg=newReg(REG_SFR, PO_SFR_REGISTER, stackPos, "_stack", stackLen-1, 0, NULL);
196                 addSet(&pic16_fix_udata, reg);
197                 
198                 reg = newReg(REG_SFR, PO_SFR_REGISTER, stackPos + stackLen-1, "_stack_end", 1, 0, NULL);
199                 addSet(&pic16_fix_udata, reg);
200
201                 sym = newSymbol("stack", 0);
202                 sprintf(sym->rname, "_%s", sym->name);
203                 addSet(&publics, sym);
204
205                 sym = newSymbol("stack_end", 0);
206                 sprintf(sym->rname, "_%s", sym->name);
207                 addSet(&publics, sym);
208                 
209                 initsfpnt = 1;          // force glue() to initialize stack/frame pointers */
210
211           return 0;
212         }
213         
214         /* #pragma code [symbol] [location] */
215         if(startsWith(ptr, "code")) {
216           char *symname = strtok((char *)NULL, WHITE);
217           char *location = strtok((char *)NULL, WHITE);
218           absSym *absS;
219           value *addr;
220
221                 absS = Safe_calloc(1, sizeof(absSym));
222                 absS->name = Safe_strdup( symname );
223                 addr = constVal( location );
224                 absS->address = (unsigned int)floatFromVal( addr );
225
226                 addSet(&absSymSet, absS);
227                 fprintf(stderr, "%s:%d symbol %s will be placed in location 0x%06x in code memory\n",
228                         __FILE__, __LINE__, symname, absS->address);
229
230           return 0;
231         }
232
233         /* #pragma udata [section-name] [symbol] */
234         if(startsWith(ptr, "udata")) {
235           char *sectname = strtok((char *)NULL, WHITE);
236           char *symname = strtok((char *)NULL, WHITE);
237           sectSym *ssym;
238           sectName *snam;
239           int found=0;
240           
241                 while(symname) {
242
243                         ssym = Safe_calloc(1, sizeof(sectSyms));
244                         ssym->name = Safe_calloc(1, strlen(symname)+2);
245                         sprintf(ssym->name, "_%s", symname);
246                         ssym->reg = NULL;
247
248                         addSet(&sectSyms, ssym);
249
250                         found = 0;
251                         for(snam=setFirstItem(sectNames);snam;snam=setNextItem(sectNames)) {
252                                 if(!strcmp(sectname, snam->name)){ found=1; break; }
253                         }
254                         
255                         if(!found) {
256                                 snam = Safe_calloc(1, sizeof(sectNames));
257                                 snam->name = Safe_strdup( sectname );
258                                 snam->regsSet = NULL;
259                                 
260                                 addSet(&sectNames, snam);
261                         }
262                         
263                         ssym->section = snam;
264                                 
265 //                      fprintf(stderr, "%s:%d placing symbol %s at section %s (%p)\n", __FILE__, __LINE__,
266 //                              ssym->name, snam->name, snam);
267
268                         symname = strtok((char *)NULL, WHITE);
269                 }
270
271           return 0;
272         }
273         
274   return 1;
275 }
276
277 #define REP_UDATA       "--preplace-udata-with="
278
279 #define STACK_MODEL     "--pstack-model="
280 #define OPT_BANKSEL     "--obanksel="
281
282 #define ALT_ASM         "--asm="
283 #define ALT_LINK        "--link="
284
285 #define IVT_LOC         "--ivt-loc"
286 #define NO_DEFLIBS      "--nodefaultlibs"
287 #define MPLAB_COMPAT    "--mplab-comp"
288
289 char *alt_asm=NULL;
290 char *alt_link=NULL;
291
292 int pic16_mplab_comp=0;
293 extern int pic16_debug_verbose;
294 extern int pic16_ralloc_debug;
295 extern int pic16_pcode_verbose;
296
297 int pic16_fstack=0;
298 int pic16_enable_peeps=0;
299
300 OPTION pic16_optionsTable[]= {
301         { 0,    NO_DEFLIBS,             &pic16_options.nodefaultlibs,   "do not link default libraries when linking"},
302         { 0,    "--pno-banksel",        &pic16_options.no_banksel,      "do not generate BANKSEL assembler directives"},
303         { 0,    OPT_BANKSEL,            NULL,                           "set banksel optimization level (default=0 no)"},
304         { 0,    "--pomit-config-words", &pic16_options.omit_configw,    "omit the generation of configuration words"},
305         { 0,    "--pomit-ivt",          &pic16_options.omit_ivt,        "omit the generation of the Interrupt Vector Table"},
306         { 0,    "--pleave-reset-vector",&pic16_options.leave_reset,     "when omitting IVT leave RESET vector"},
307         { 0,    STACK_MODEL,    NULL,   "use stack model 'small' (default) or 'large'"},
308
309         { 0,    "--debug-xtra",         &pic16_debug_verbose,   "show more debug info in assembly output"},
310         { 0,    "--debug-ralloc",       &pic16_ralloc_debug,    "dump register allocator debug file *.d"},
311         { 0,    "--pcode-verbose",      &pic16_pcode_verbose,   "dump pcode related info"},
312                 
313         { 0,    REP_UDATA,      NULL,   "Place udata variables at another section: udata_acs, udata_ovr, udata_shr"},
314
315         { 0,    ALT_ASM,        NULL,   "Use alternative assembler"},
316         { 0,    ALT_LINK,       NULL,   "Use alternative linker"},
317
318         { 0,    "--denable-peeps",      &pic16_enable_peeps,    "explicit enable of peepholes"},
319         { 0,    IVT_LOC,        NULL,   "<nnnn> interrupt vector table location"},
320         { 0,    "--calltree",           &pic16_options.dumpcalltree,    "dump call tree in .calltree file"},
321         { 0,    MPLAB_COMPAT,           &pic16_mplab_comp,      "enable compatibility mode for MPLAB utilities (MPASM/MPLINK)"},
322         { 0,    "--fstack",             &pic16_fstack,          "enable stack optimizations"},
323         { 0,    NULL,           NULL,   NULL}
324         };
325
326
327 #define ISOPT(str)      !strncmp(argv[ *i ], str, strlen(str) )
328
329 extern char *getStringArg(const char *,  char **, int *, int);
330 extern int getIntArg(const char *, char **, int *, int);
331
332 static bool
333 _pic16_parseOptions (int *pargc, char **argv, int *i)
334 {
335   int j=0;
336   char *stkmodel;
337   
338   /* TODO: allow port-specific command line options to specify
339    * segment names here.
340    */
341         /* check for arguments that have associated an integer variable */
342         while(pic16_optionsTable[j].pparameter) {
343                 if(ISOPT( pic16_optionsTable[j].longOpt )) {
344                         (*pic16_optionsTable[j].pparameter)++;
345                         return TRUE;
346                 }
347                 j++;
348         }
349
350
351         if(ISOPT(STACK_MODEL)) {
352                 stkmodel = getStringArg(STACK_MODEL, argv, i, *pargc);
353                 if(STRCASECMP(stkmodel, "small"))pic16_options.stack_model = 0;
354                 else if(STRCASECMP(stkmodel, "large"))pic16_options.stack_model = 1;
355                 else {
356                         fprintf(stderr, "Unknown stack model: %s", stkmodel);
357                         exit(-1);
358                 }
359                 return TRUE;
360         }
361
362         if(ISOPT(OPT_BANKSEL)) {
363                 pic16_options.opt_banksel = getIntArg(OPT_BANKSEL, argv, i, *pargc);
364                 return TRUE;
365         }
366
367         if(ISOPT(REP_UDATA)) {
368                 pic16_sectioninfo.at_udata = Safe_strdup(getStringArg(REP_UDATA, argv, i, *pargc));
369                 return TRUE;
370         }
371         
372         if(ISOPT(ALT_ASM)) {
373                 alt_asm = Safe_strdup(getStringArg(ALT_ASM, argv, i, *pargc));
374                 return TRUE;
375         }
376         
377         if(ISOPT(ALT_LINK)) {
378                 alt_link = Safe_strdup(getStringArg(ALT_LINK, argv, i, *pargc));
379                 return TRUE;
380         }
381
382         if(ISOPT(IVT_LOC)) {
383                 pic16_options.ivt_loc = getIntArg(IVT_LOC, argv, i, *pargc);
384                 return TRUE;
385         }
386
387   return FALSE;
388 }
389
390 static void _pic16_initPaths(void)
391 {
392   char pic16incDir[512];
393   char pic16libDir[512];
394   set *pic16incDirsSet;
395   set *pic16libDirsSet;
396   char devlib[512];
397
398         setMainValue("mcu", pic16->name[2] );
399         addSet(&preArgvSet, Safe_strdup("-D{mcu}"));
400
401         sprintf(pic16incDir, "%s%cpic16", INCLUDE_DIR_SUFFIX, DIR_SEPARATOR_CHAR);
402         sprintf(pic16libDir, "%s%cpic16", LIB_DIR_SUFFIX, DIR_SEPARATOR_CHAR);
403
404         if(!options.nostdinc) {
405                 /* setup pic16 include directory */
406                 pic16incDirsSet = appendStrSet(dataDirsSet, NULL, pic16incDir);
407                 mergeSets(&includeDirsSet, pic16incDirsSet);
408         }
409         
410         if(!options.nostdlib) {
411                 /* setup pic16 library directory */
412                 pic16libDirsSet = appendStrSet(dataDirsSet, NULL, pic16libDir);
413                 mergeSets(&libDirsSet, pic16libDirsSet);
414         }
415         
416         if(!pic16_options.nodefaultlibs) {
417                 /* now add the library for the device */
418                 sprintf(devlib, "%s.lib", pic16->name[2]);
419                 addSet(&libFilesSet, Safe_strdup(devlib));
420         }
421 }
422
423 extern set *linkOptionsSet;
424 char *msprintf(hTab *pvals, const char *pformat, ...);
425 int my_system(const char *cmd);
426
427 /* custom function to link objects */
428 static void _pic16_linkEdit(void)
429 {
430   hTab *linkValues=NULL;
431   char lfrm[256];
432   char *lcmd;
433   char temp[128];
434   set *tSet=NULL;
435   int ret;
436   
437         /*
438          * link command format:
439          * {linker} {incdirs} {lflags} -o {outfile} {spec_ofiles} {ofiles} {libs}
440          *
441          */
442          
443         sprintf(lfrm, "{linker} {incdirs} {lflags} -o {outfile} {spec_ofiles} {ofiles} {libs}");
444                  
445         shash_add(&linkValues, "linker", "gplink");
446
447         mergeSets(&tSet, libDirsSet);
448         mergeSets(&tSet, libPathsSet);
449         
450         shash_add(&linkValues, "incdirs", joinStrSet( appendStrSet(tSet, "-I\"", "\"")));
451         shash_add(&linkValues, "lflags", joinStrSet(linkOptionsSet));
452   
453         shash_add(&linkValues, "outfile", dstFileName);
454
455         if(fullSrcFileName) {
456                 sprintf(temp, "%s.o", dstFileName);
457 //              shash_add(&linkValues, "srcofile", temp);
458                 addSetHead(&relFilesSet, temp);
459         }
460
461 //      shash_add(&linkValues, "spec_ofiles", "crt0i.o");
462         shash_add(&linkValues, "ofiles", joinStrSet(relFilesSet));
463         shash_add(&linkValues, "libs", joinStrSet(libFilesSet));
464         
465         lcmd = msprintf(linkValues, lfrm);
466          
467         ret = my_system( lcmd );
468          
469         Safe_free( lcmd );
470          
471         if(ret)
472                 exit(1);
473 }
474
475
476 /* forward declarations */
477 extern const char *pic16_linkCmd[];
478 extern const char *pic16_asmCmd[];
479
480 static void
481 _pic16_finaliseOptions (void)
482 {
483         port->mem.default_local_map = data;
484         port->mem.default_globl_map = data;
485
486         /* peepholes are disabled for the time being */
487         options.nopeep = 1;
488
489         /* explicit enable peepholes for testing */
490         if(pic16_enable_peeps)
491                 options.nopeep = 0;
492
493         options.all_callee_saves = 1;           // always callee saves
494 //      options.float_rent = 1;
495 //      options.intlong_rent = 1;
496         
497
498         if(alt_asm && strlen(alt_asm))
499                 pic16_asmCmd[0] = alt_asm;
500         
501         if(alt_link && strlen(alt_link))
502                 pic16_linkCmd[0] = alt_link;
503 }
504
505
506 /* all the rest is commented ifdef'd out */
507 #if 0
508   /* Hack-o-matic: if we are using the flat24 model,
509    * adjust pointer sizes.
510    */
511   if (options.model == MODEL_FLAT24)
512     {
513
514       fprintf (stderr, "*** WARNING: you should use the '-mds390' option "
515                "for DS80C390 support. This code generator is "
516                "badly out of date and probably broken.\n");
517
518       port->s.fptr_size = 3;
519       port->s.gptr_size = 4;
520       port->stack.isr_overhead++;       /* Will save dpx on ISR entry. */
521 #if 1
522       port->stack.call_overhead++;      /* This acounts for the extra byte 
523                                          * of return addres on the stack.
524                                          * but is ugly. There must be a 
525                                          * better way.
526                                          */
527 #endif
528       fReturn = fReturn390;
529       fReturnSize = 5;
530     }
531
532   if (options.model == MODEL_LARGE)
533     {
534       port->mem.default_local_map = xdata;
535       port->mem.default_globl_map = xdata;
536     }
537   else
538     {
539       port->mem.default_local_map = data;
540       port->mem.default_globl_map = data;
541     }
542
543   if (options.stack10bit)
544     {
545       if (options.model != MODEL_FLAT24)
546         {
547           fprintf (stderr,
548                    "*** warning: 10 bit stack mode is only supported in flat24 model.\n");
549           fprintf (stderr, "\t10 bit stack mode disabled.\n");
550           options.stack10bit = 0;
551         }
552       else
553         {
554           /* Fixup the memory map for the stack; it is now in
555            * far space and requires a FPOINTER to access it.
556            */
557           istack->fmap = 1;
558           istack->ptrType = FPOINTER;
559         }
560     }
561 #endif
562
563
564 static void
565 _pic16_setDefaultOptions (void)
566 {
567         /* initialize to defaults section locations, names and addresses */
568         pic16_sectioninfo.at_udata      = "udata";
569
570         /* set pic16 port options to defaults */
571         pic16_options.no_banksel = 0;
572         pic16_options.opt_banksel = 0;
573         pic16_options.omit_configw = 0;
574         pic16_options.omit_ivt = 0;
575         pic16_options.leave_reset = 0;
576         pic16_options.stack_model = 0;                  /* 0 for 'small', 1 for 'large' */
577         pic16_options.ivt_loc = 0x000000;
578         pic16_options.nodefaultlibs = 0;
579         pic16_options.dumpcalltree = 0;
580 }
581
582 static const char *
583 _pic16_getRegName (struct regs *reg)
584 {
585   if (reg)
586     return reg->name;
587   return "err";
588 }
589
590
591 #if 1
592 static  char *_pic16_mangleFunctionName(char *sz)
593 {
594 //      fprintf(stderr, "mangled function name: %s\n", sz);
595
596   return sz;
597 }
598 #endif
599
600
601 static void
602 _pic16_genAssemblerPreamble (FILE * of)
603 {
604   char *name = pic16_processor_base_name();
605
606         if(!name) {
607                 name = "p18f452";
608                 fprintf(stderr,"WARNING: No Pic has been selected, defaulting to %s\n",name);
609         }
610
611         fprintf (of, "\tlist\tp=%s\n",&name[1]);
612
613         if(!pic16_options.omit_configw) {
614                 pic16_emitConfigRegs(of);
615                 fprintf(of, "\n");
616                 pic16_emitIDRegs(of);
617         }
618         
619   fprintf (of, "\tradix dec\n");
620 }
621
622 /* Generate interrupt vector table. */
623 static int
624 _pic16_genIVT (FILE * of, symbol ** interrupts, int maxInterrupts)
625 {
626 #if 1
627         /* PIC18F family has only two interrupts, the high and the low
628          * priority interrupts, which reside at 0x0008 and 0x0018 respectively - VR */
629
630         if((!pic16_options.omit_ivt) || (pic16_options.omit_ivt && pic16_options.leave_reset)) {
631                 fprintf(of, "; RESET vector\n");
632                 fprintf(of, "\tgoto\t__sdcc_gsinit_startup\n");
633         }
634         
635         if(!pic16_options.omit_ivt) {
636                 fprintf(of, "\tres 4\n");
637
638
639                 fprintf(of, "; High priority interrupt vector 0x0008\n");
640                 if(interrupts[1]) {
641                         fprintf(of, "\tgoto\t%s\n", interrupts[1]->rname);
642                         fprintf(of, "\tres\t12\n"); 
643                 } else {
644                         fprintf(of, "\tretfie\n");
645                         fprintf(of, "\tres\t14\n");
646                 }
647
648                 fprintf(of, "; Low priority interrupt vector 0x0018\n");
649                 if(interrupts[2]) {
650                         fprintf(of, "\tgoto\t%s\n", interrupts[2]->rname);
651                 } else {
652                         fprintf(of, "\tretfie\n");
653                 }
654         }
655 #endif
656   return TRUE;
657 }
658
659 /* return True if the port can handle the type,
660  * False to convert it to function call */
661 static bool _hasNativeMulFor (iCode *ic, sym_link *left, sym_link *right)
662 {
663 //      fprintf(stderr,"checking for native mult for %c (size: %d)\n", ic->op, getSize(OP_SYMBOL(IC_RESULT(ic))->type));
664
665 #if 1
666         /* multiplication is fixed */
667         /* support mul for char/int/long */
668         if((getSize(OP_SYMBOL(IC_LEFT(ic))->type ) <= 4)
669                 && (ic->op == '*'))return TRUE;
670 #endif
671
672 #if 0
673         /* support div for char/int/long */
674         if((getSize(OP_SYMBOL(IC_LEFT(ic))->type ) <= 0)
675                 && (ic->op == '/'))return TRUE;
676 #endif
677         
678   return FALSE;
679 }
680
681
682 #if 0
683 /* Do CSE estimation */
684 static bool cseCostEstimation (iCode *ic, iCode *pdic)
685 {
686 //    operand *result = IC_RESULT(ic);
687 //    sym_link *result_type = operandType(result);
688
689
690         /* VR -- this is an adhoc. Put here after conversation
691          * with Erik Epetrich */
692
693         if(ic->op == '<'
694                 || ic->op == '>'
695                 || ic->op == EQ_OP) {
696
697                 fprintf(stderr, "%d %s\n", __LINE__, __FUNCTION__);
698           return 0;
699         }
700
701 #if 0
702     /* if it is a pointer then return ok for now */
703     if (IC_RESULT(ic) && IS_PTR(result_type)) return 1;
704
705     /* if bitwise | add & subtract then no since mcs51 is pretty good at it
706        so we will cse only if they are local (i.e. both ic & pdic belong to
707        the same basic block */
708     if (IS_BITWISE_OP(ic) || ic->op == '+' || ic->op == '-') {
709         /* then if they are the same Basic block then ok */
710         if (ic->eBBlockNum == pdic->eBBlockNum) return 1;
711         else return 0;
712     }
713 #endif
714
715     /* for others it is cheaper to do the cse */
716     return 1;
717 }
718 #endif
719
720
721 /* Indicate which extended bit operations this port supports */
722 static bool
723 hasExtBitOp (int op, int size)
724 {
725   if (op == RRC
726       || op == RLC
727       /* || op == GETHBIT */ /* GETHBIT doesn't look complete for PIC */
728      )
729     return TRUE;
730   else
731     return FALSE;
732 }
733
734 /* Indicate the expense of an access to an output storage class */
735 static int
736 oclsExpense (struct memmap *oclass)
737 {
738   /* The IN_FARSPACE test is compatible with historical behaviour, */
739   /* but I don't think it is applicable to PIC. If so, please feel */
740   /* free to remove this test -- EEP */
741   if (IN_FARSPACE(oclass))
742     return 1;
743     
744   return 0;
745 }
746
747 /** $1 is the input object file (PIC16 specific)        // >>always the basename<<.
748     $2 is always the output file.
749     $3 -L path and -l libraries
750     $l is the list of extra options that should be there somewhere...
751     MUST be terminated with a NULL.
752 */
753 const char *pic16_linkCmd[] =
754 {
755   "gplink", "$l", "-o \"$2\"", "\"$1\"","$3", NULL
756 };
757
758
759
760 /** $1 is always the basename.
761     $2 is always the output file.
762     $3 varies (nothing currently)
763     $l is the list of extra options that should be there somewhere...
764     MUST be terminated with a NULL.
765 */
766 const char *pic16_asmCmd[] =
767 {
768   "gpasm", "$l", "$3", "-c", "\"$1.asm\"", "-o \"$2\"", NULL
769
770 };
771
772 /* Globals */
773 PORT pic16_port =
774 {
775   TARGET_ID_PIC16,
776   "pic16",
777   "MCU PIC16",                  /* Target name */
778   "p18f452",                    /* Processor */
779   {
780     pic16glue,
781     TRUE,                       /* Emit glue around main */
782     MODEL_SMALL | MODEL_LARGE | MODEL_FLAT24,
783     MODEL_SMALL
784   },
785   {
786     pic16_asmCmd,               /* assembler command and arguments */
787     NULL,                       /* alternate macro based form */
788     "-g",                       /* arguments for debug mode */
789     NULL,                       /* arguments for normal mode */
790     0,                          /* print externs as global */
791     ".asm",                     /* assembler file extension */
792     NULL                        /* no do_assemble function */
793   },
794   {
795     NULL,                       //    pic16_linkCmd,            /* linker command and arguments */
796     NULL,                       /* alternate macro based form */
797     _pic16_linkEdit,            //NULL,                 /* no do_link function */
798     ".o",                       /* extension for object files */
799     0                           /* no need for linker file */
800   },
801   {
802     _defaultRules
803   },
804   {
805         /* Sizes */
806     1,          /* char */
807     2,          /* short */
808     2,          /* int */
809     4,          /* long */
810     2,          /* ptr */
811     3,          /* fptr, far pointers (see Microchip) */
812     2,          /* gptr */
813     1,          /* bit */
814     4,          /* float */
815     4           /* max */
816   },
817   {
818     "XSEG    (XDATA)",          // xstack
819     "STACK   (DATA)",           // istack
820     "CSEG    (CODE)",           // code
821     "DSEG    (DATA)",           // data
822     "ISEG    (DATA)",           // idata
823     "XSEG    (XDATA)",          // xdata
824     "BSEG    (BIT)",            // bit
825     "RSEG    (DATA)",           // reg
826     "GSINIT  (CODE)",           // static
827     "OSEG    (OVR,DATA)",       // overlay
828     "GSFINAL (CODE)",           // post static
829     "HOME        (CODE)",       // home
830     NULL,                       // xidata
831     NULL,                       // xinit
832     NULL,                       // default location for auto vars
833     NULL,                       // default location for global vars
834     1                           // code is read only 1=yes
835   },
836   {
837     NULL,               /* genExtraAreaDeclaration */
838     NULL                /* genExatrAreaLinkOptions */
839   },
840   {
841         /* stack related information */
842     -1,                 /* -1 stack grows downwards, +1 upwards */
843     1,                  /* extra overhead when calling between banks */
844     4,                  /* extra overhead when the function is an ISR */
845     1,                  /* extra overhead for a function call */
846     1,                  /* re-entrant space */
847     0                   /* 'banked' call overhead, mild overlap with bank_overhead */
848   },
849     /* pic16 has an 8 bit mul */
850   {
851      0, -1
852   },
853   {
854     pic16_emitDebuggerSymbol
855   },
856   "_",
857   _pic16_init,
858   _pic16_parseOptions,
859   pic16_optionsTable,
860   _pic16_initPaths,
861   _pic16_finaliseOptions,
862   _pic16_setDefaultOptions,
863   pic16_assignRegisters,
864   _pic16_getRegName,
865   _pic16_keywords,
866   _pic16_genAssemblerPreamble,
867   NULL,                         /* no genAssemblerEnd */
868   _pic16_genIVT,
869   NULL, // _pic16_genXINIT
870   NULL,                         /* genInitStartup */
871   _pic16_reset_regparm,
872   _pic16_regparm,
873   _process_pragma,                              /* process a pragma */
874   _pic16_mangleFunctionName,                            /* mangles function name */
875   _hasNativeMulFor,
876   hasExtBitOp,                  /* hasExtBitOp */
877   oclsExpense,                  /* oclsExpense */
878   FALSE,                        
879   TRUE,                         /* little endian */
880   0,                            /* leave lt */
881   0,                            /* leave gt */
882   1,                            /* transform <= to ! > */
883   1,                            /* transform >= to ! < */
884   1,                            /* transform != to !(a == b) */
885   0,                            /* leave == */
886   FALSE,                        /* No array initializer support. */
887   0,    //cseCostEstimation,            /* !!!no CSE cost estimation yet */
888   NULL,                         /* no builtin functions */
889   GPOINTER,                     /* treat unqualified pointers as "generic" pointers */
890   1,                            /* reset labelKey to 1 */
891   1,                            /* globals & local static allowed */
892   PORT_MAGIC
893 };