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