* device/lib/pic16/libsdcc/Makefile: added lregs directory in
[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
108 static void
109 _pic16_reset_regparm (void)
110 {
111   regParmFlg = 0;
112 }
113
114 static int
115 _pic16_regparm (sym_link * l)
116 {
117   /* force all parameters via SEND/RECEIVE */
118   if(0 /*pic16_options.ip_stack*/) {
119     /* for this processor it is simple
120      * can pass only the first parameter in a register */
121     if(regParmFlg)return 0;
122       regParmFlg++;
123       return 1; //regParmFlg;
124   } else {
125     /* otherwise pass all arguments in registers via SEND/RECEIVE */
126     regParmFlg++;// = 1;
127     return regParmFlg;
128   }
129 }
130
131
132 int initsfpnt=0;                /* set to 1 if source provides a pragma for stack
133                                  * so glue() later emits code to initialize stack/frame pointers */
134 set *absSymSet;
135
136 set *sectNames=NULL;                    /* list of section listed in pragma directives */
137 set *sectSyms=NULL;                     /* list of symbols set in a specific section */
138
139
140 static int
141 _process_pragma(const char *sz)
142 {
143   static const char *WHITE = " \t\n";
144   
145   char  *ptr = strtok((char *)sz, WHITE);
146
147         /* #pragma maxram [maxram] */
148         if (startsWith (ptr, "maxram")) {
149           char *maxRAM = strtok((char *)NULL, WHITE);
150
151                 if (maxRAM != (char *)NULL) {
152                   int maxRAMaddress;
153                   value *maxRAMVal;
154
155                         maxRAMVal = constVal(maxRAM);
156                         maxRAMaddress = (int)floatFromVal(maxRAMVal);
157                         pic16_setMaxRAM(maxRAMaddress);
158                 }
159
160           return 0;
161         }
162         
163         /* #pragma stack [stack-position] [stack-len] */
164         if(startsWith(ptr, "stack")) {
165           char *stackPosS = strtok((char *)NULL, WHITE);
166           char *stackLenS = strtok((char *)NULL, WHITE);
167           value *stackPosVal;
168           value *stackLenVal;
169           regs *reg;
170           symbol *sym;
171
172                 stackPosVal = constVal( stackPosS );
173                 stackPos = (unsigned int)floatFromVal( stackPosVal );
174
175                 
176                 if(stackLenS) {
177                         stackLenVal = constVal( stackLenS );
178                         stackLen = (unsigned int)floatFromVal( stackLenVal );
179                 }
180
181                 if(stackLen < 1) {
182                         stackLen = 64;
183                         fprintf(stderr, "%s:%d: warning: setting stack to default size %d (0x%04x)\n",
184                                       filename, lineno-1, stackLen, stackLen);
185                         
186 //                      fprintf(stderr, "%s:%d setting stack to default size %d\n", __FILE__, __LINE__, stackLen);
187                 }
188
189 //              fprintf(stderr, "Initializing stack pointer at 0x%x len 0x%x\n", stackPos, stackLen);
190                                 
191                 reg=newReg(REG_SFR, PO_SFR_REGISTER, stackPos, "_stack", stackLen-1, 0, NULL);
192                 addSet(&pic16_fix_udata, reg);
193                 
194                 reg = newReg(REG_SFR, PO_SFR_REGISTER, stackPos + stackLen-1, "_stack_end", 1, 0, NULL);
195                 addSet(&pic16_fix_udata, reg);
196
197                 sym = newSymbol("stack", 0);
198                 sprintf(sym->rname, "_%s", sym->name);
199                 addSet(&publics, sym);
200
201                 sym = newSymbol("stack_end", 0);
202                 sprintf(sym->rname, "_%s", sym->name);
203                 addSet(&publics, sym);
204                 
205                 initsfpnt = 1;          // force glue() to initialize stack/frame pointers */
206
207           return 0;
208         }
209         
210         /* #pragma code [symbol] [location] */
211         if(startsWith(ptr, "code")) {
212           char *symname = strtok((char *)NULL, WHITE);
213           char *location = strtok((char *)NULL, WHITE);
214           absSym *absS;
215           value *addr;
216
217                 absS = Safe_calloc(1, sizeof(absSym));
218                 sprintf(absS->name, "_%s", symname);
219                 
220                 addr = constVal( location );
221                 absS->address = (unsigned int)floatFromVal( addr );
222
223                 if((absS->address % 2) != 0) {
224                   absS->address--;
225                   fprintf(stderr, "%s:%d: warning: code memory locations should be word aligned, will locate to 0x%06x instead\n",
226                                       filename, lineno-1, absS->address);
227                 }
228
229                 addSet(&absSymSet, absS);
230 //              fprintf(stderr, "%s:%d symbol %s will be placed in location 0x%06x in code memory\n",
231 //                      __FILE__, __LINE__, symname, absS->address);
232
233           return 0;
234         }
235
236         /* #pragma udata [section-name] [symbol] */
237         if(startsWith(ptr, "udata")) {
238           char *sectname = strtok((char *)NULL, WHITE);
239           char *symname = strtok((char *)NULL, WHITE);
240           symbol *nsym;
241           sectSym *ssym;
242           sectName *snam;
243           int found=0;
244           
245                 while(symname) {
246                         ssym = Safe_calloc(1, sizeof(sectSyms));
247                         ssym->name = Safe_calloc(1, strlen(symname)+2);
248                         sprintf(ssym->name, "_%s", symname);
249                         ssym->reg = NULL;
250
251                         addSet(&sectSyms, ssym);
252
253                         nsym = newSymbol(symname, 0);
254                         strcpy(nsym->rname, ssym->name);
255                         checkAddSym(&publics, nsym);
256
257                         found = 0;
258                         for(snam=setFirstItem(sectNames);snam;snam=setNextItem(sectNames)) {
259                                 if(!strcmp(sectname, snam->name)){ found=1; break; }
260                         }
261                         
262                         if(!found) {
263                                 snam = Safe_calloc(1, sizeof(sectNames));
264                                 snam->name = Safe_strdup( sectname );
265                                 snam->regsSet = NULL;
266                                 
267                                 addSet(&sectNames, snam);
268                         }
269                         
270                         ssym->section = snam;
271                                 
272 //                      fprintf(stderr, "%s:%d placing symbol %s at section %s (%p)\n", __FILE__, __LINE__,
273 //                              ssym->name, snam->name, snam);
274
275                         symname = strtok((char *)NULL, WHITE);
276                 }
277
278           return 0;
279         }
280         
281   return 1;
282 }
283
284 #define REP_UDATA       "--preplace-udata-with="
285
286 #define STACK_MODEL     "--pstack-model="
287 #define OPT_BANKSEL     "--obanksel="
288
289 #define ALT_ASM         "--asm="
290 #define ALT_LINK        "--link="
291
292 #define IVT_LOC         "--ivt-loc"
293 #define NO_DEFLIBS      "--nodefaultlibs"
294 #define MPLAB_COMPAT    "--mplab-comp"
295
296 #define NL_OPT          "--nl="
297 #define USE_CRT         "--use-crt="
298
299 #define OFMSG_LRSUPPORT "--flr-support"
300
301
302 char *alt_asm=NULL;
303 char *alt_link=NULL;
304
305 int pic16_mplab_comp=0;
306 extern int pic16_debug_verbose;
307 extern int pic16_ralloc_debug;
308 extern int pic16_pcode_verbose;
309
310 int pic16_fstack=0;
311 int pic16_enable_peeps=0;
312 int pic16_nl=0;                 /* 0 for LF, 1 for CRLF */
313
314 OPTION pic16_optionsTable[]= {
315         { 0,    NO_DEFLIBS,             &pic16_options.nodefaultlibs,   "do not link default libraries when linking"},
316         { 0,    "--pno-banksel",        &pic16_options.no_banksel,      "do not generate BANKSEL assembler directives"},
317         { 0,    OPT_BANKSEL,            NULL,                           "set banksel optimization level (default=0 no)"},
318         { 0,    "--pomit-config-words", &pic16_options.omit_configw,    "omit the generation of configuration words"},
319         { 0,    "--pomit-ivt",          &pic16_options.omit_ivt,        "omit the generation of the Interrupt Vector Table"},
320         { 0,    "--pleave-reset-vector",&pic16_options.leave_reset,     "when omitting IVT leave RESET vector"},
321         { 0,    STACK_MODEL,            NULL,                           "use stack model 'small' (default) or 'large'"},
322
323         { 0,    "--debug-xtra",         &pic16_debug_verbose,   "show more debug info in assembly output"},
324         { 0,    "--debug-ralloc",       &pic16_ralloc_debug,    "dump register allocator debug file *.d"},
325         { 0,    "--pcode-verbose",      &pic16_pcode_verbose,   "dump pcode related info"},
326                 
327         { 0,    REP_UDATA,      NULL,   "Place udata variables at another section: udata_acs, udata_ovr, udata_shr"},
328
329         { 0,    ALT_ASM,        NULL,   "Use alternative assembler"},
330         { 0,    ALT_LINK,       NULL,   "Use alternative linker"},
331
332         { 0,    "--denable-peeps",      &pic16_enable_peeps,    "explicit enable of peepholes"},
333         { 0,    IVT_LOC,        NULL,   "<nnnn> interrupt vector table location"},
334         { 0,    "--calltree",           &pic16_options.dumpcalltree,    "dump call tree in .calltree file"},
335         { 0,    MPLAB_COMPAT,           &pic16_mplab_comp,      "enable compatibility mode for MPLAB utilities (MPASM/MPLINK)"},
336         { 0,    "--fstack",             &pic16_fstack,          "enable stack optimizations"},
337         { 0,    NL_OPT,         NULL,                           "new line, \"lf\" or \"crlf\""},
338         { 0,    USE_CRT,        NULL,   "use <crt-o> run-time initialization module"},
339         { 0,    "--no-crt",     &pic16_options.no_crt,  "do not link any default run-time initialization module"},
340         { 0,    OFMSG_LRSUPPORT,        NULL,           "use support functions for local register store/restore"},
341         { 0,    NULL,           NULL,   NULL}
342         };
343
344
345 #define ISOPT(str)      !strncmp(argv[ *i ], str, strlen(str) )
346
347 extern char *getStringArg(const char *,  char **, int *, int);
348 extern int getIntArg(const char *, char **, int *, int);
349
350 static bool
351 _pic16_parseOptions (int *pargc, char **argv, int *i)
352 {
353   int j=0;
354   char *stkmodel;
355   
356   /* TODO: allow port-specific command line options to specify
357    * segment names here.
358    */
359   
360     /* check for arguments that have associated an integer variable */
361     while(pic16_optionsTable[j].pparameter) {
362       if(ISOPT( pic16_optionsTable[j].longOpt )) {
363         (*pic16_optionsTable[j].pparameter)++;
364         return TRUE;
365       }
366       j++;
367     }
368
369     if(ISOPT(STACK_MODEL)) {
370       stkmodel = getStringArg(STACK_MODEL, argv, i, *pargc);
371       if(!STRCASECMP(stkmodel, "small"))pic16_options.stack_model = 0;
372       else if(!STRCASECMP(stkmodel, "large"))pic16_options.stack_model = 1;
373       else {
374         fprintf(stderr, "Unknown stack model: %s", stkmodel);
375         exit(-1);
376       }
377       return TRUE;
378     }
379
380     if(ISOPT(OPT_BANKSEL)) {
381       pic16_options.opt_banksel = getIntArg(OPT_BANKSEL, argv, i, *pargc);
382       return TRUE;
383     }
384
385     if(ISOPT(REP_UDATA)) {
386       pic16_sectioninfo.at_udata = Safe_strdup(getStringArg(REP_UDATA, argv, i, *pargc));
387       return TRUE;
388     }
389         
390     if(ISOPT(ALT_ASM)) {
391       alt_asm = Safe_strdup(getStringArg(ALT_ASM, argv, i, *pargc));
392       return TRUE;
393     }
394         
395     if(ISOPT(ALT_LINK)) {
396       alt_link = Safe_strdup(getStringArg(ALT_LINK, argv, i, *pargc));
397       return TRUE;
398     }
399
400     if(ISOPT(IVT_LOC)) {
401       pic16_options.ivt_loc = getIntArg(IVT_LOC, argv, i, *pargc);
402       return TRUE;
403     }
404         
405     if(ISOPT(NL_OPT)) {
406       char *tmp;
407             
408         tmp = Safe_strdup( getStringArg(NL_OPT, argv, i, *pargc) );
409         if(!STRCASECMP(tmp, "lf"))pic16_nl = 0;
410         else if(!STRCASECMP(tmp, "crlf"))pic16_nl = 1;
411         else {
412           fprintf(stderr, "invalid termination character id\n");
413           exit(-1);
414         }
415         return TRUE;
416     }
417
418     if(ISOPT(USE_CRT)) {
419       pic16_options.no_crt = 0;
420       pic16_options.crt_name = Safe_strdup( getStringArg(USE_CRT, argv, i, *pargc) );
421
422       return TRUE;
423     }
424
425     if(ISOPT(OFMSG_LRSUPPORT)) {
426       pic16_options.opt_flags |= OF_LR_SUPPORT;
427       return TRUE;
428     }
429         
430   return FALSE;
431 }
432
433 extern set *userIncDirsSet;
434
435 static void _pic16_initPaths(void)
436 {
437   char pic16incDir[512];
438   char pic16libDir[512];
439   set *pic16incDirsSet=NULL;
440   set *pic16libDirsSet=NULL;
441   char devlib[512];
442
443     setMainValue("mcu", pic16->name[2] );
444     addSet(&preArgvSet, Safe_strdup("-D{mcu}"));
445
446     sprintf(pic16incDir, "%s%cpic16", INCLUDE_DIR_SUFFIX, DIR_SEPARATOR_CHAR);
447     sprintf(pic16libDir, "%s%cpic16", LIB_DIR_SUFFIX, DIR_SEPARATOR_CHAR);
448
449
450     if(!options.nostdinc) {
451       /* setup pic16 include directory */
452       pic16incDirsSet = appendStrSet(dataDirsSet, NULL, pic16incDir);
453       includeDirsSet = pic16incDirsSet;
454 //      mergeSets(&includeDirsSet, pic16incDirsSet);
455     }
456     /* pic16 port should not search to the SDCC standard include directories,
457      * so add here the deleted include dirs that user has issued in command line */
458     mergeSets(&pic16incDirsSet, userIncDirsSet);
459
460     if(!options.nostdlib) {
461       /* setup pic16 library directory */
462       pic16libDirsSet = appendStrSet(dataDirsSet, NULL, pic16libDir);
463       libDirsSet = pic16libDirsSet;
464 //      mergeSets(&libDirsSet, pic16libDirsSet);
465     }
466
467     if(!pic16_options.nodefaultlibs) {
468       /* now add the library for the device */
469       sprintf(devlib, "%s.lib", pic16->name[2]);
470       addSet(&libFilesSet, Safe_strdup(devlib));
471
472       /* add the internal SDCC library */
473       addSet(&libFilesSet, Safe_strdup( "libsdcc.lib" ));
474     }
475 }
476
477 extern set *linkOptionsSet;
478 char *msprintf(hTab *pvals, const char *pformat, ...);
479 int my_system(const char *cmd);
480
481 /* custom function to link objects */
482 static void _pic16_linkEdit(void)
483 {
484   hTab *linkValues=NULL;
485   char lfrm[256];
486   char *lcmd;
487   char temp[128];
488   set *tSet=NULL;
489   int ret;
490   
491         /*
492          * link command format:
493          * {linker} {incdirs} {lflags} -o {outfile} {spec_ofiles} {ofiles} {libs}
494          *
495          */
496          
497         sprintf(lfrm, "{linker} {incdirs} {lflags} -o {outfile} {user_ofile} {spec_ofiles} {ofiles} {libs}");
498                  
499         shash_add(&linkValues, "linker", "gplink");
500
501         mergeSets(&tSet, libDirsSet);
502         mergeSets(&tSet, libPathsSet);
503         
504         shash_add(&linkValues, "incdirs", joinStrSet( appendStrSet(tSet, "-I\"", "\"")));
505         shash_add(&linkValues, "lflags", joinStrSet(linkOptionsSet));
506   
507         shash_add(&linkValues, "outfile", dstFileName);
508
509         if(fullSrcFileName) {
510                 sprintf(temp, "%s.o", dstFileName);
511 //              addSetHead(&relFilesSet, Safe_strdup(temp));
512                 shash_add(&linkValues, "user_ofile", temp);
513         }
514
515         if(!pic16_options.no_crt)
516           shash_add(&linkValues, "spec_ofiles", pic16_options.crt_name);
517
518         shash_add(&linkValues, "ofiles", joinStrSet(relFilesSet));
519         shash_add(&linkValues, "libs", joinStrSet(libFilesSet));
520         
521         lcmd = msprintf(linkValues, lfrm);
522          
523         ret = my_system( lcmd );
524          
525         Safe_free( lcmd );
526          
527         if(ret)
528                 exit(1);
529 }
530
531
532 /* forward declarations */
533 extern const char *pic16_linkCmd[];
534 extern const char *pic16_asmCmd[];
535
536 static void
537 _pic16_finaliseOptions (void)
538 {
539     port->mem.default_local_map = data;
540     port->mem.default_globl_map = data;
541
542     /* peepholes are disabled for the time being */
543     options.nopeep = 1;
544
545     /* explicit enable peepholes for testing */
546     if(pic16_enable_peeps)
547       options.nopeep = 0;
548
549     options.all_callee_saves = 1;               // always callee saves
550
551 #if 0
552     options.float_rent = 1;
553     options.intlong_rent = 1;
554 #endif
555         
556
557     if(alt_asm && strlen(alt_asm))
558       pic16_asmCmd[0] = alt_asm;
559         
560     if(alt_link && strlen(alt_link))
561       pic16_linkCmd[0] = alt_link;
562         
563     if(!pic16_options.no_crt) {
564       pic16_options.omit_ivt = 1;
565       pic16_options.leave_reset = 0;
566     }
567 }
568
569
570 #if 0
571   if (options.model == MODEL_LARGE)
572     {
573       port->mem.default_local_map = xdata;
574       port->mem.default_globl_map = xdata;
575     }
576   else
577     {
578       port->mem.default_local_map = data;
579       port->mem.default_globl_map = data;
580     }
581
582   if (options.stack10bit)
583     {
584       if (options.model != MODEL_FLAT24)
585         {
586           fprintf (stderr,
587                    "*** warning: 10 bit stack mode is only supported in flat24 model.\n");
588           fprintf (stderr, "\t10 bit stack mode disabled.\n");
589           options.stack10bit = 0;
590         }
591       else
592         {
593           /* Fixup the memory map for the stack; it is now in
594            * far space and requires a FPOINTER to access it.
595            */
596           istack->fmap = 1;
597           istack->ptrType = FPOINTER;
598         }
599     }
600 #endif
601
602
603 static void
604 _pic16_setDefaultOptions (void)
605 {
606   options.stackAuto = 0;                /* implicit declaration */
607   /* port is not capable yet to allocate separate registers 
608    * dedicated for passing certain parameters */
609   
610   /* initialize to defaults section locations, names and addresses */
611   pic16_sectioninfo.at_udata    = "udata";
612
613   /* set pic16 port options to defaults */
614   pic16_options.no_banksel = 0;
615   pic16_options.opt_banksel = 0;
616   pic16_options.omit_configw = 0;
617   pic16_options.omit_ivt = 0;
618   pic16_options.leave_reset = 0;
619   pic16_options.stack_model = 0;                        /* 0 for 'small', 1 for 'large' */
620   pic16_options.ivt_loc = 0x000000;
621   pic16_options.nodefaultlibs = 0;
622   pic16_options.dumpcalltree = 0;
623   pic16_options.crt_name = "crt0i.o";           /* the default crt to link */
624   pic16_options.no_crt = 0;                     /* use crt by default */
625   pic16_options.ip_stack = 1;           /* set to 1 to enable ipop/ipush for stack */
626 }
627
628 static const char *
629 _pic16_getRegName (struct regs *reg)
630 {
631   if (reg)
632     return reg->name;
633   return "err";
634 }
635
636
637 #if 1
638 static  char *_pic16_mangleFunctionName(char *sz)
639 {
640 //      fprintf(stderr, "mangled function name: %s\n", sz);
641
642   return sz;
643 }
644 #endif
645
646
647 static void
648 _pic16_genAssemblerPreamble (FILE * of)
649 {
650   char *name = pic16_processor_base_name();
651
652         if(!name) {
653                 name = "p18f452";
654                 fprintf(stderr,"WARNING: No Pic has been selected, defaulting to %s\n",name);
655         }
656
657         fprintf (of, "\tlist\tp=%s\n",&name[1]);
658
659         if(!pic16_options.omit_configw) {
660                 pic16_emitConfigRegs(of);
661                 fprintf(of, "\n");
662                 pic16_emitIDRegs(of);
663         }
664         
665   fprintf (of, "\tradix dec\n");
666 }
667
668 /* Generate interrupt vector table. */
669 static int
670 _pic16_genIVT (FILE * of, symbol ** interrupts, int maxInterrupts)
671 {
672 #if 1
673         /* PIC18F family has only two interrupts, the high and the low
674          * priority interrupts, which reside at 0x0008 and 0x0018 respectively - VR */
675
676         if((!pic16_options.omit_ivt) || (pic16_options.omit_ivt && pic16_options.leave_reset)) {
677                 fprintf(of, "; RESET vector\n");
678                 fprintf(of, "\tgoto\t__sdcc_gsinit_startup\n");
679         }
680         
681         if(!pic16_options.omit_ivt) {
682                 fprintf(of, "\tres 4\n");
683
684
685                 fprintf(of, "; High priority interrupt vector 0x0008\n");
686                 if(interrupts[1]) {
687                         fprintf(of, "\tgoto\t%s\n", interrupts[1]->rname);
688                         fprintf(of, "\tres\t12\n"); 
689                 } else {
690                         fprintf(of, "\tretfie\n");
691                         fprintf(of, "\tres\t14\n");
692                 }
693
694                 fprintf(of, "; Low priority interrupt vector 0x0018\n");
695                 if(interrupts[2]) {
696                         fprintf(of, "\tgoto\t%s\n", interrupts[2]->rname);
697                 } else {
698                         fprintf(of, "\tretfie\n");
699                 }
700         }
701 #endif
702   return TRUE;
703 }
704
705 /* return True if the port can handle the type,
706  * False to convert it to function call */
707 static bool _hasNativeMulFor (iCode *ic, sym_link *left, sym_link *right)
708 {
709 //      fprintf(stderr,"checking for native mult for %c (size: %d)\n", ic->op, getSize(OP_SYMBOL(IC_RESULT(ic))->type));
710
711 #if 1
712         /* multiplication is fixed */
713         /* support mul for char/int/long */
714         if((ic->op == '*')
715           && (getSize(OP_SYMBOL(IC_LEFT(ic))->type ) < 2))return TRUE;
716 #endif
717
718 #if 0
719         /* support div for char/int/long */
720         if((getSize(OP_SYMBOL(IC_LEFT(ic))->type ) < 0)
721                 && (ic->op == '/'))return TRUE;
722 #endif
723         
724   return FALSE;
725 }
726
727
728 #if 0
729 /* Do CSE estimation */
730 static bool cseCostEstimation (iCode *ic, iCode *pdic)
731 {
732 //    operand *result = IC_RESULT(ic);
733 //    sym_link *result_type = operandType(result);
734
735
736         /* VR -- this is an adhoc. Put here after conversation
737          * with Erik Epetrich */
738
739         if(ic->op == '<'
740                 || ic->op == '>'
741                 || ic->op == EQ_OP) {
742
743                 fprintf(stderr, "%d %s\n", __LINE__, __FUNCTION__);
744           return 0;
745         }
746
747 #if 0
748     /* if it is a pointer then return ok for now */
749     if (IC_RESULT(ic) && IS_PTR(result_type)) return 1;
750
751     /* if bitwise | add & subtract then no since mcs51 is pretty good at it
752        so we will cse only if they are local (i.e. both ic & pdic belong to
753        the same basic block */
754     if (IS_BITWISE_OP(ic) || ic->op == '+' || ic->op == '-') {
755         /* then if they are the same Basic block then ok */
756         if (ic->eBBlockNum == pdic->eBBlockNum) return 1;
757         else return 0;
758     }
759 #endif
760
761     /* for others it is cheaper to do the cse */
762     return 1;
763 }
764 #endif
765
766
767 /* Indicate which extended bit operations this port supports */
768 static bool
769 hasExtBitOp (int op, int size)
770 {
771   if (op == RRC
772       || op == RLC
773       /* || op == GETHBIT */ /* GETHBIT doesn't look complete for PIC */
774      )
775     return TRUE;
776   else
777     return FALSE;
778 }
779
780 /* Indicate the expense of an access to an output storage class */
781 static int
782 oclsExpense (struct memmap *oclass)
783 {
784   /* The IN_FARSPACE test is compatible with historical behaviour, */
785   /* but I don't think it is applicable to PIC. If so, please feel */
786   /* free to remove this test -- EEP */
787   if (IN_FARSPACE(oclass))
788     return 1;
789     
790   return 0;
791 }
792
793 /** $1 is the input object file (PIC16 specific)        // >>always the basename<<.
794     $2 is always the output file.
795     $3 -L path and -l libraries
796     $l is the list of extra options that should be there somewhere...
797     MUST be terminated with a NULL.
798 */
799 const char *pic16_linkCmd[] =
800 {
801   "gplink", "$l", "-o \"$2\"", "\"$1\"","$3", NULL
802 };
803
804
805
806 /** $1 is always the basename.
807     $2 is always the output file.
808     $3 varies (nothing currently)
809     $l is the list of extra options that should be there somewhere...
810     MUST be terminated with a NULL.
811 */
812 const char *pic16_asmCmd[] =
813 {
814   "gpasm", "$l", "$3", "-c", "\"$1.asm\"", "-o \"$2\"", NULL
815
816 };
817
818 /* Globals */
819 PORT pic16_port =
820 {
821   TARGET_ID_PIC16,
822   "pic16",
823   "MCU PIC16",                  /* Target name */
824   "p18f452",                    /* Processor */
825   {
826     pic16glue,
827     TRUE,                       /* Emit glue around main */
828     MODEL_SMALL | MODEL_LARGE | MODEL_FLAT24,
829     MODEL_SMALL
830   },
831   {
832     pic16_asmCmd,               /* assembler command and arguments */
833     NULL,                       /* alternate macro based form */
834     "-g",                       /* arguments for debug mode */
835     NULL,                       /* arguments for normal mode */
836     0,                          /* print externs as global */
837     ".asm",                     /* assembler file extension */
838     NULL                        /* no do_assemble function */
839   },
840   {
841     NULL,                       //    pic16_linkCmd,            /* linker command and arguments */
842     NULL,                       /* alternate macro based form */
843     _pic16_linkEdit,            //NULL,                 /* no do_link function */
844     ".o",                       /* extension for object files */
845     0                           /* no need for linker file */
846   },
847   {
848     _defaultRules
849   },
850   {
851         /* Sizes */
852     1,          /* char */
853     2,          /* short */
854     2,          /* int */
855     4,          /* long */
856     2,          /* ptr */
857     3,          /* fptr, far pointers (see Microchip) */
858     3,          /* gptr */
859     1,          /* bit */
860     4,          /* float */
861     4           /* max */
862   },
863   {
864     "XSEG    (XDATA)",          // xstack
865     "STACK   (DATA)",           // istack
866     "CSEG    (CODE)",           // code
867     "DSEG    (DATA)",           // data
868     "ISEG    (DATA)",           // idata
869     NULL,                                       // pdata
870     "XSEG    (XDATA)",          // xdata
871     "BSEG    (BIT)",            // bit
872     "RSEG    (DATA)",           // reg
873     "GSINIT  (CODE)",           // static
874     "OSEG    (OVR,DATA)",       // overlay
875     "GSFINAL (CODE)",           // post static
876     "HOME        (CODE)",       // home
877     NULL,                       // xidata
878     NULL,                       // xinit
879     NULL,                       // default location for auto vars
880     NULL,                       // default location for global vars
881     1                           // code is read only 1=yes
882   },
883   {
884     NULL,               /* genExtraAreaDeclaration */
885     NULL                /* genExatrAreaLinkOptions */
886   },
887   {
888         /* stack related information */
889     -1,                 /* -1 stack grows downwards, +1 upwards */
890     1,                  /* extra overhead when calling between banks */
891     4,                  /* extra overhead when the function is an ISR */
892     1,                  /* extra overhead for a function call */
893     1,                  /* re-entrant space */
894     0                   /* 'banked' call overhead, mild overlap with bank_overhead */
895   },
896     /* pic16 has an 8 bit mul */
897   {
898      0, -1
899   },
900   {
901     pic16_emitDebuggerSymbol
902   },
903   {
904     255/3,      /* maxCount */
905     3,          /* sizeofElement */
906     /* The rest of these costs are bogus. They approximate */
907     /* the behavior of src/SDCCicode.c 1.207 and earlier.  */
908     {4,4,4},    /* sizeofMatchJump[] */
909     {0,0,0},    /* sizeofRangeCompare[] */
910     0,          /* sizeofSubtract */
911     3,          /* sizeofDispatch */
912   },
913   "_",
914   _pic16_init,
915   _pic16_parseOptions,
916   pic16_optionsTable,
917   _pic16_initPaths,
918   _pic16_finaliseOptions,
919   _pic16_setDefaultOptions,
920   pic16_assignRegisters,
921   _pic16_getRegName,
922   _pic16_keywords,
923   _pic16_genAssemblerPreamble,
924   NULL,                         /* no genAssemblerEnd */
925   _pic16_genIVT,
926   NULL, // _pic16_genXINIT
927   NULL,                         /* genInitStartup */
928   _pic16_reset_regparm,
929   _pic16_regparm,
930   _process_pragma,                              /* process a pragma */
931   _pic16_mangleFunctionName,                            /* mangles function name */
932   _hasNativeMulFor,
933   hasExtBitOp,                  /* hasExtBitOp */
934   oclsExpense,                  /* oclsExpense */
935   FALSE,                        
936   TRUE,                         /* little endian */
937   0,                            /* leave lt */
938   0,                            /* leave gt */
939   1,                            /* transform <= to ! > */
940   1,                            /* transform >= to ! < */
941   1,                            /* transform != to !(a == b) */
942   0,                            /* leave == */
943   FALSE,                        /* No array initializer support. */
944   0,    //cseCostEstimation,            /* !!!no CSE cost estimation yet */
945   NULL,                         /* no builtin functions */
946   GPOINTER,                     /* treat unqualified pointers as "generic" pointers */
947   1,                            /* reset labelKey to 1 */
948   1,                            /* globals & local static allowed */
949   PORT_MAGIC
950 };