e8ce0575348db29e10f3a48d83d673196f21ced0
[fw/sdcc] / src / pic16 / device.c
1 /*-------------------------------------------------------------------------
2
3   device.c - Accomodates subtle variations in PIC16 devices
4
5    Written By -  Scott Dattalo scott@dattalo.com
6    Ported to PIC16 By -  Martin Dubuc m.dubuc@rogers.com
7
8    This program is free software; you can redistribute it and/or modify it
9    under the terms of the GNU General Public License as published by the
10    Free Software Foundation; either version 2, or (at your option) any
11    later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 -------------------------------------------------------------------------*/
22
23
24 /*
25         VR - Began writing code to make PIC16 C source files independent from
26         the header file (created by the inc2h.pl)
27
28         - adding maximum RAM memory into PIC_Device structure
29
30 */
31
32 #include <stdio.h>
33
34 #include "common.h"   // Include everything in the SDCC src directory
35 #include "newalloc.h"
36 #include "dbuf_string.h"
37
38
39 #include "main.h"
40 #include "pcode.h"
41 #include "ralloc.h"
42 #include "device.h"
43
44 stats_t statistics = { 0, 0, 0, 0 };
45
46 #define DEVICE_FILE_NAME    "pic16devices.txt"
47
48 static PIC16_device default_device = {
49     { "p18f452", "18f452", "pic18f452", "f452" },
50     0x600,
51     0x80,
52     { /* configuration words */
53       0x300001, 0x30000d,
54       { { 0x27, 0, 0xff } /* 1 */ , { 0x0f, 0, 0xff } /* 2 */ ,
55         { 0x0f, 0, 0xff } /* 3 */ , {  -1 , 0, 0xff } /* 4 */ ,
56         { 0x01, 0, 0xff } /* 5 */ , { 0x85, 0, 0xff } /* 6 */ ,
57         {  -1 , 0, 0xff } /* 7 */ , { 0x0f, 0, 0xff } /* 8 */ ,
58         { 0xc0, 0, 0xff } /* 9 */ , { 0x0f, 0, 0xff } /* a */ ,
59         { 0xe0, 0, 0xff } /* b */ , { 0x0f, 0, 0xff } /* c */ ,
60         { 0x40, 0, 0xff } /* d */ }
61     },
62     { /* ID locations */
63       0x200000, 0x200007,
64       { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
65         { 0, 0 }, { 0, 0 }, { 0, 0 } }
66     },
67     NULL
68 };
69
70 PIC16_device *pic16 = &default_device;
71 static PIC16_device *devices = NULL;
72
73 extern set *includeDirsSet;
74 extern set *userIncDirsSet;
75
76 extern char *iComments2;
77
78 void pic16_dump_equates(FILE *of, set *equs)
79 {
80   regs *r;
81
82         r = setFirstItem(equs);
83         if(!r)return;
84
85         fprintf(of, "%s", iComments2);
86         fprintf(of, ";\tEquates to used internal registers\n");
87         fprintf(of, "%s", iComments2);
88
89         for(; r; r = setNextItem(equs)) {
90                 fprintf(of, "%s\tequ\t0x%02x\n", r->name, r->address);
91         }
92 }
93
94
95 void pic16_dump_access(FILE *of, set *section)
96 {
97   regs *r;
98
99         r = setFirstItem(section);
100         if(!r)return;
101
102         fprintf(of, "%s", iComments2);
103         fprintf(of, ";\tAccess bank symbols\n");
104         fprintf(of, "%s", iComments2);
105
106         fprintf(of, "\tudata_acs\n");
107         for(; r; r = setNextItem(section)) {
108                 fprintf(of, "%s\tres\t%d\n", r->name, r->size);
109                 statistics.adsize += r->size;
110         }
111 }
112
113
114 int regCompare(const void *a, const void *b)
115 {
116   const regs *const *i = a;
117   const regs *const *j = b;
118
119         /* sort primarily by the address */
120         if( (*i)->address > (*j)->address)return 1;
121         if( (*i)->address < (*j)->address)return -1;
122
123         /* and secondarily by size */
124         /* register size sorting may have strange results use with care */
125         if( (*i)->size > (*j)->size)return 1;
126         if( (*i)->size < (*j)->size)return -1;
127
128         /* finally if in same address and same size sort by name */
129         return (strcmp( (*i)->name, (*j)->name));
130
131   return 0;
132 }
133
134 int symCompare(const void *a, const void *b)
135 {
136   const symbol *const *i = a;
137   const symbol *const *j = b;
138
139         /* sort primarily by the address */
140         if( SPEC_ADDR((*i)->etype) > SPEC_ADDR((*j)->etype))return 1;
141         if( SPEC_ADDR((*i)->etype) < SPEC_ADDR((*j)->etype))return -1;
142
143         /* and secondarily by size */
144         /* register size sorting may have strange results use with care */
145         if( getSize((*i)->etype) > getSize((*j)->etype))return 1;
146         if( getSize((*i)->etype) < getSize((*j)->etype))return -1;
147
148         /* finally if in same address and same size sort by name */
149         return (strcmp( (*i)->rname, (*j)->rname));
150
151   return 0;
152 }
153
154 void pic16_dump_usection(FILE *of, set *section, int fix)
155 {
156   static int abs_usection_no=0;
157   static unsigned int usection_no=0;
158   regs *r, *rprev;
159   unsigned int init_addr, i;
160   regs **rlist;
161   regs *r1;
162
163         /* put all symbols in an array */
164         if (!elementsInSet(section)) return;
165         rlist = Safe_calloc(elementsInSet(section), sizeof(regs *));
166         r = rlist[0]; i = 0;
167         for(rprev = setFirstItem(section); rprev; rprev = setNextItem(section)) {
168                 rlist[i] = rprev; i++;
169         }
170
171         if(!i) {
172                 if(rlist)Safe_free(rlist);
173           return;
174         }
175
176         /* sort symbols according to their address */
177         qsort(rlist, i  /*elementsInSet(section)*/, sizeof(regs *), regCompare);
178
179         if(!fix) {
180
181 #define EMIT_SINGLE_UDATA_SECTION       0
182 #if EMIT_SINGLE_UDATA_SECTION
183                 fprintf(of, "\n\n\tudata\n");
184                 for(r = setFirstItem(section); r; r = setNextItem(section)) {
185                         fprintf(of, "%s\tres\t%d\n", r->name, r->size);
186                         statistics.udsize += r->size;
187                 }
188 #else
189                 for(r = setFirstItem(section); r; r = setNextItem(section)) {
190                         //fprintf(of, "\nudata_%s_%s\tudata\n", moduleName, r->name);
191                         fprintf(of, "\nudata_%s_%u\tudata\n", moduleName, usection_no++);
192                         fprintf(of, "%s\tres\t%d\n", r->name, r->size);
193                         statistics.udsize += r->size;
194                 }
195 #endif
196         } else {
197           unsigned int j=0;
198           int deb_addr=0;
199
200                 rprev = NULL;
201                 init_addr = rlist[j]->address;
202                 deb_addr = init_addr;
203                 fprintf(of, "\n\nustat_%s_%02d\tudata\t0X%04X\n", moduleName, abs_usection_no++, init_addr);
204
205                 for(j=0;j<i;j++) {
206                         r = rlist[j];
207                         if(j < i-1)r1 = rlist[j+1]; else r1 = NULL;
208
209                         init_addr = r->address;
210                         deb_addr = init_addr;
211
212                         if((rprev && (init_addr > (rprev->address + rprev->size)))) {
213                                 fprintf(of, "\n\nustat_%s_%02d\tudata\t0X%04X\n", moduleName, abs_usection_no++, init_addr);
214                         }
215
216                         if(r1 && (init_addr == r1->address)) {
217                                 fprintf(of, "\n%s\tres\t0\n", r->name);
218                         } else {
219                                 fprintf(of, "%s\tres\t%d\n", r->name, r->size);
220                                 deb_addr += r->size;
221                                 statistics.udsize += r->size;
222                         }
223
224                         rprev = r;
225                 }
226         }
227         Safe_free(rlist);
228 }
229
230 void pic16_dump_gsection(FILE *of, set *sections)
231 {
232   regs *r;
233   sectName *sname;
234
235         for(sname = setFirstItem(sections); sname; sname = setNextItem(sections)) {
236                 if(!strcmp(sname->name, "access"))continue;
237                 fprintf(of, "\n\n%s\tudata\n", sname->name);
238
239                 for(r=setFirstItem(sname->regsSet); r; r=setNextItem(sname->regsSet)) {
240 #if 0
241                         fprintf(stderr, "%s:%d emitting variable %s for section %s (%p)\n", __FILE__, __LINE__,
242                                 r->name, sname->name, sname);
243 #endif
244                         fprintf(of, "%s\tres\t%d\n", r->name, r->size);
245                         statistics.udsize += r->size;
246                 }
247         }
248 }
249
250
251 /* forward declaration */
252 void pic16_printIval(symbol * sym, sym_link * type, initList * ilist, char ptype, void *p);
253 extern void pic16_pCodeConstString(char *name, char *value);
254
255 void pic16_dump_isection(FILE *of, set *section, int fix)
256 {
257   static int abs_isection_no=0;
258   symbol *s, *sprev;
259   unsigned int init_addr, i;
260   symbol **slist;
261
262         /* put all symbols in an array */
263         if (!elementsInSet(section)) return;
264         slist = Safe_calloc(elementsInSet(section), sizeof(symbol *));
265         s = slist[0]; i = 0;
266         for(sprev = setFirstItem(section); sprev; sprev = setNextItem(section)) {
267                 slist[i] = sprev; i++;
268         }
269
270         if(!i) {
271                 if(slist)Safe_free(slist);
272           return;
273         }
274
275         /* sort symbols according to their address */
276         qsort(slist, i, sizeof(symbol *), symCompare);
277
278         pic16_initDB();
279
280         if(!fix) {
281                 fprintf(of, "\n\n\tidata\n");
282                 for(s = setFirstItem(section); s; s = setNextItem(section)) {
283
284                         if(s->ival) {
285                                 fprintf(of, "%s", s->rname);
286                                 pic16_printIval(s, s->type, s->ival, 'f', (void *)of);
287                                 pic16_flushDB('f', (void *)of);
288                         } else {
289                                 if (IS_ARRAY (s->type) && IS_CHAR (s->type->next)
290                                         && SPEC_CVAL (s->etype).v_char) {
291
292 //                                      fprintf(stderr, "%s:%d printing code string from %s\n", __FILE__, __LINE__, s->rname);
293                                         pic16_pCodeConstString(s->rname , SPEC_CVAL (s->etype).v_char);
294                                 } else {
295                                         assert(0);
296                                 }
297                         }
298
299                 }
300         } else {
301           unsigned int j=0;
302           symbol *s1;
303
304                 sprev = NULL;
305                 init_addr = SPEC_ADDR(slist[j]->etype);
306                 fprintf(of, "\n\nistat_%s_%02d\tidata\t0X%04X\n", moduleName, abs_isection_no++, init_addr);
307
308                 for(j=0;j<i;j++) {
309                         s = slist[j];
310                         if(j < i-1)s1 = slist[j+1]; else s1 = NULL;
311
312                         init_addr = SPEC_ADDR(s->etype);
313
314                         if(sprev && (init_addr > (SPEC_ADDR(sprev->etype) + getSize(sprev->etype)))) {
315                                 fprintf(of, "\nistat_%s_%02d\tidata\t0X%04X\n", moduleName, abs_isection_no++, init_addr);
316                         }
317
318                         if(s->ival) {
319                                 fprintf(of, "%s", s->rname);
320                                 pic16_printIval(s, s->type, s->ival, 'f', (void *)of);
321                                 pic16_flushDB('f', (void *)of);
322                         } else {
323                                 if (IS_ARRAY (s->type) && IS_CHAR (s->type->next)
324                                         && SPEC_CVAL (s->etype).v_char) {
325
326 //                                      fprintf(stderr, "%s:%d printing code string from %s\n", __FILE__, __LINE__, s->rname);
327                                         pic16_pCodeConstString(s->rname , SPEC_CVAL (s->etype).v_char);
328                                 } else {
329                                         assert(0);
330                                 }
331                         }
332
333
334                         sprev = s;
335                 }
336         }
337         Safe_free(slist);
338 }
339
340
341 void pic16_dump_int_registers(FILE *of, set *section)
342 {
343   regs *r, *rprev;
344   int i;
345   regs **rlist;
346
347         /* put all symbols in an array */
348         if (!elementsInSet(section)) return;
349         rlist = Safe_calloc(elementsInSet(section), sizeof(regs *));
350         r = rlist[0]; i = 0;
351         for(rprev = setFirstItem(section); rprev; rprev = setNextItem(section)) {
352                 rlist[i] = rprev; i++;
353         }
354
355         /* sort symbols according to their address */
356         qsort(rlist, elementsInSet(section), sizeof(regs *), regCompare);
357
358         if(!i) {
359                 if(rlist)Safe_free(rlist);
360           return;
361         }
362
363         fprintf(of, "\n\n; Internal registers\n");
364
365         fprintf(of, "%s\tudata_ovr\t0x0000\n", ".registers");
366         for(r = setFirstItem(section); r; r = setNextItem(section)) {
367                 fprintf(of, "%s\tres\t%d\n", r->name, r->size);
368                 statistics.intsize += r->size;
369         }
370
371         Safe_free(rlist);
372 }
373
374 /**
375  * Find the device structure for the named device.
376  * Consider usind pic16_find_device() instead!
377  *
378  * @param   name
379  *      a name for the desired device
380  * @param   head
381  *      a pointer to the head of the list of devices
382  * @return
383  *      a pointer to the structure for the desired
384  *      device, or NULL
385  */
386 static PIC16_device *
387 find_in_list(const char *name, PIC16_device *head)
388 {
389     int i;
390
391     while (head) {
392         for (i = 0; i < 4; i++) {
393             if (0 == strcmp(head->name[i], name)) {
394                 return (head);
395             } // if
396         } // for
397
398         head = head->next;
399     } // while
400
401     return (NULL);
402 }
403
404 /**
405  * Print a list of supported devices.
406  * If --verbose was given, also emit key characteristics (memory size,
407  * access bank split point, address range of SFRs and config words).
408  *
409  * @param   head
410  *      a pointer to the head of the list of devices
411  */
412 static void
413 pic16_list_devices(PIC16_device *head)
414 {
415     int i = 0;
416
417     if (options.verbose) {
418         printf("device        RAM  split       config words\n");
419     } // if
420     while (head) {
421         printf("%-10s  ", head->name[0]);
422         if (options.verbose) {
423             printf("%5d   0x%02x    0x%06x..0x%06x\n",
424                     head->RAMsize,
425                     head->acsSplitOfs,
426                     head->cwInfo.confAddrStart,
427                     head->cwInfo.confAddrEnd);
428         } else {
429             i++;
430             if (0 == (i % 6)) {
431                 printf("\n");
432             } // if
433         } // if
434         head = head->next;
435     } // while
436     printf("\n");
437 }
438
439 /**
440  * Read a single line from the given file.
441  *
442  * @param   file
443  *      a pointer to the open file to read
444  * @return
445  *      a pointer to a malloc'ed copy of the (next) line, or NULL
446  */
447 static char *
448 get_line (FILE *file)
449 {
450   static struct dbuf_s dbuf;
451   static int initialized = 0;
452
453   if (!initialized)
454     {
455       dbuf_init (&dbuf, 129);
456       initialized = 1;
457     }
458   else
459     dbuf_set_length (&dbuf, 0);
460
461
462   if (dbuf_getline (&dbuf, file) != 0)
463     {
464       dbuf_chomp (&dbuf);
465       /* (char *) type cast is an ugly hack since pic16_find_device() modifies the buffer */
466       return (char *)dbuf_get_buf (&dbuf);
467     }
468   else
469     {
470       dbuf_destroy(&dbuf);
471       initialized = 0;
472       return NULL;
473     }
474 }
475
476 /**
477  * Truncate the given string in place (!) at the first '#' character (if any).
478  *
479  * @param   line
480  *      a pointer to the string to truncate
481  * @return
482  *      a pointer to the truncated string (i.e., line)
483  */
484 static char *
485 strip_comment (char *line)
486 {
487     char *l = line;
488     char c;
489
490     if (!line) {
491         return (line);
492     } // if
493
494     while (0 != (c = *l)) {
495         if ('#' == c) {
496             *l = 0;
497             return (line);
498         } // if
499         l++;
500     } // while
501
502     return (line);
503 }
504
505 /**
506  * Report errors in the device specification.
507  *
508  * @param   msg
509  *      a pointer to the detailed message
510  */
511 #define SYNTAX(msg) do {                                \
512     fprintf(stderr, "%s:%d: Syntax error: %s\n",        \
513             DEVICE_FILE_NAME, lineno, msg);             \
514 } while (0)
515
516 /**
517  * Locate and read in the device specification (if required) and
518  * return the device structure for the named device.
519  *
520  * @param   name
521  *      a pointer to the name of the desired device
522  * @return
523  *      a pointer to the device structure, or NULL
524  */
525 static PIC16_device *
526 pic16_find_device(const char *name)
527 {
528     const char *path;
529     char buffer[PATH_MAX];
530     char *line, *key;
531     const char *sep = " \t\n\r";
532     FILE *f = NULL;
533     PIC16_device *d = NULL, *template;
534     PIC16_device *head = NULL, *tail = NULL;
535     set *_sets[] = { userIncDirsSet, includeDirsSet };
536     set **sets = &_sets[0];
537     int lineno = 0;
538     int res, i;
539     int val[3];
540
541     if (!devices) {
542         //printf("%s: searching %s\n", __func__, DEVICE_FILE_NAME);
543
544         // locate the specification file in the include search paths
545         for (i = 0; (NULL == f) && (i < 2); i++) {
546             for (path = setFirstItem(sets[i]);
547                     (NULL == f) && path;
548                     path = setNextItem(sets[i]))
549             {
550                 SNPRINTF(&buffer[0], PATH_MAX, "%s%s%s",
551                         path, DIR_SEPARATOR_STRING, DEVICE_FILE_NAME);
552                 //printf("%s: checking %s\n", __func__, &buffer[0]);
553                 f = fopen(&buffer[0], "r");
554             } // for
555         } // while
556     } // if
557
558     if (devices) {
559         // list already set up, nothing to do
560     } else if (NULL == f) {
561         fprintf(stderr, "ERROR: device list %s not found, specify its path via -I<path>\n", DEVICE_FILE_NAME);
562         d = &default_device;
563     } else {
564         // parse the specification file and construct a linked list of
565         // supported devices
566         d = NULL;
567         while (NULL != (line = get_line(f))) {
568             strip_comment(line);
569             //printf("%s: read %s\n", __func__, line);
570             lineno++;
571             key = strtok(line, sep);
572             if (!key) {
573                 // empty line---ignore
574             } else if (0 == strcmp(key, "name")) {
575                 // name %<name>s
576                 if (d) {
577                     if (tail) {
578                         tail->next = d;
579                     } else {
580                         head = d;
581                     } // if
582                     tail = d;
583                     d = NULL;
584                 } // if
585
586                 res = sscanf(&line[1+strlen(key)], " %16s", &buffer[3]);
587                 if ((1 < res) || (3 > strlen(&buffer[3]))) {
588                     SYNTAX("<name> (e.g., 18f452) expected.");
589                 } else {
590                     d = Safe_calloc(1, sizeof(PIC16_device));
591
592                     // { "p18f452", "18f452", "pic18f452", "f452" }
593                     buffer[0] = 'p';
594                     buffer[1] = 'i';
595                     buffer[2] = 'c';
596                     d->name[3] = Safe_strdup(&buffer[5]);
597                     d->name[2] = Safe_strdup(&buffer[0]);
598                     d->name[1] = Safe_strdup(&buffer[3]);
599                     buffer[2] = 'p';
600                     d->name[0] = Safe_strdup(&buffer[2]);
601                 } // if
602             } else if (0 == strcmp(key, "using")) {
603                 // using %<name>s
604                 res = sscanf(&line[1+strlen(key)], " %16s", &buffer[0]);
605                 if ((1 < res) || (3 > strlen(&buffer[3]))) {
606                     SYNTAX("<name> (e.g., 18f452) expected.");
607                 } else {
608                     template = find_in_list(&buffer[0], head);
609                     if (!template) {
610                         SYNTAX("<name> (e.g., 18f452) expected.");
611                     } else {
612                         memcpy(&d->RAMsize, &template->RAMsize,
613                                 ((char *)&d->next) - ((char *)&d->RAMsize));
614                     } // if
615                 } // if
616             } else if (0 == strcmp(key, "ramsize")) {
617                 // ramsize %<bytes>i
618                 res = sscanf(&line[1+strlen(key)], " %i", &val[0]);
619                 if (res < 1) {
620                     SYNTAX("<bytes> (e.g., 256) expected.");
621                 } else {
622                     d->RAMsize = val[0];
623                 } // if
624             } else if (0 == strcmp(key, "split")) {
625                 // split %<offset>i
626                 res = sscanf(&line[1+strlen(key)], " %i", &val[0]);
627                 if (res < 1) {
628                     SYNTAX("<offset> (e.g., 0x80) expected.");
629                 } else {
630                     d->acsSplitOfs = val[0];
631                 } // if
632             } else if (0 == strcmp(key, "configrange")) {
633                 // configrange %<first>i %<last>i
634                 res = sscanf(&line[1+strlen(key)], " %i %i",
635                         &val[0], &val[1]);
636                 if (res < 2) {
637                     SYNTAX("<first> <last> (e.g., 0xf60 0xfff) expected.");
638                 } else {
639                     d->cwInfo.confAddrStart = val[0];
640                     d->cwInfo.confAddrEnd = val[1];
641                 } // if
642             } else if (0 == strcmp(key, "configword")) {
643                 // configword %<address>i %<mask>i %<value>i
644                 res = sscanf(&line[1+strlen(key)], " %i %i %i",
645                         &val[0], &val[1], &val[2]);
646                 if (res < 3) {
647                     SYNTAX("<address> <mask> <value> (e.g., 0x200001 0x0f 0x07) expected.");
648                 } else {
649                     val[0] -= d->cwInfo.confAddrStart;
650                     if ((val[0] < 0)
651                             || (val[0] > (d->cwInfo.confAddrEnd - d->cwInfo.confAddrStart))
652                             || (val[0] >= CONFIGURATION_WORDS))
653                     {
654                         SYNTAX("address out of bounds.");
655                     } else {
656                         d->cwInfo.crInfo[val[0]].mask = val[1];
657                         d->cwInfo.crInfo[val[0]].value = val[2];
658                     } // if
659                 } // if
660             } else if (0 == strcmp(key, "idlocrange")) {
661                 // idlocrange %<first>i %<last>i
662                 res = sscanf(&line[1+strlen(key)], " %i %i",
663                         &val[0], &val[1]);
664                 if (res < 2) {
665                     SYNTAX("<first> <last> (e.g., 0xf60 0xfff) expected.");
666                 } else {
667                     d->idInfo.idAddrStart = val[0];
668                     d->idInfo.idAddrEnd = val[1];
669                 } // if
670             } else if (0 == strcmp(key, "idword")) {
671                 // idword %<address>i %<value>i
672                 res = sscanf(&line[1+strlen(key)], " %i %i",
673                         &val[0], &val[1]);
674                 if (res < 2) {
675                     SYNTAX("<address> <value> (e.g., 0x3fffff 0x00) expected.");
676                 } else {
677                     val[0] -= d->idInfo.idAddrStart;
678                     if ((val[0] < 0)
679                             || (val[0] > (d->idInfo.idAddrEnd - d->idInfo.idAddrStart))
680                             || (val[0] >= IDLOCATION_BYTES))
681                     {
682                         SYNTAX("address out of bounds.");
683                     } else {
684                         d->idInfo.irInfo[val[0]].value = val[1];
685                     } // if
686                 } // if
687             } else {
688                 printf("%s: Invalid keyword in %s ignored: %s\n",
689                   __func__, DEVICE_FILE_NAME, key);
690             } // if
691         } // while
692
693         if (d) {
694             if (tail) {
695                 tail->next = d;
696             } else {
697                 head = d;
698             } // if
699             tail = d;
700             d = NULL;
701         } // if
702
703         devices = head;
704
705         fclose(f);
706     } // if
707
708     d = find_in_list(name, devices);
709     if (!d) {
710         d = &default_device;
711     } // if
712
713     return (d);
714 }
715
716 /*-----------------------------------------------------------------*
717  *
718  *-----------------------------------------------------------------*/
719 void pic16_init_pic(const char *pic_type)
720 {
721     pic16 = pic16_find_device(pic_type);
722
723     if (&default_device == pic16) {
724         if (pic_type) {
725             fprintf(stderr, "'%s' was not found.\n", pic_type);
726         } else {
727             fprintf(stderr, "No processor has been specified (use -pPROCESSOR_NAME)\n");
728         } // if
729
730         if (devices) {
731             fprintf(stderr,"Valid devices are (use --verbose for more details):\n");
732             pic16_list_devices(devices);
733         } // if
734         exit(EXIT_FAILURE);
735     } // if
736 }
737
738 /*-----------------------------------------------------------------*
739  *  char *pic16_processor_base_name(void) - Include file is derived from this.
740  *-----------------------------------------------------------------*/
741 char *pic16_processor_base_name(void)
742 {
743
744   if(!pic16)
745     return NULL;
746
747   return pic16->name[0];
748 }
749
750 #define DEBUG_CHECK     0
751
752 /*
753  * return 1 if register wasn't found and added, 0 otherwise
754  */
755 int checkAddReg(set **set, regs *reg)
756 {
757   regs *tmp;
758
759
760         if(!reg)return 0;
761 #if DEBUG_CHECK
762         fprintf(stderr, "%s: about to insert REGister: %s ... ", __FUNCTION__, reg->name);
763 #endif
764
765         for(tmp = setFirstItem(*set); tmp; tmp = setNextItem(*set)) {
766                 if(!strcmp(tmp->name, reg->name))break;
767         }
768
769         if(!tmp) {
770                 addSet(set, reg);
771 #if DEBUG_CHECK
772                 fprintf(stderr, "added\n");
773 #endif
774                 return 1;
775         }
776
777 #if DEBUG_CHECK
778         fprintf(stderr, "already added\n");
779 #endif
780   return 0;
781 }
782
783 int checkAddSym(set **set, symbol *sym)
784 {
785   symbol *tmp;
786
787         if(!sym)return 0;
788 #if DEBUG_CHECK
789         fprintf(stderr, "%s: about to add SYMbol: %s ... ", __FUNCTION__, sym->name);
790 #endif
791
792         for(tmp = setFirstItem( *set ); tmp; tmp = setNextItem(*set)) {
793                 if(!strcmp(tmp->name, sym->name))break;
794         }
795
796         if(!tmp) {
797                 addSet(set, sym);
798 #if DEBUG_CHECK
799                 fprintf(stderr, "added\n");
800 #endif
801                 return 1;
802         }
803
804 #if DEBUG_CHECK
805         fprintf(stderr, "already added\n");
806 #endif
807
808   return 0;
809 }
810
811 int checkSym(set *set, symbol *sym)
812 {
813   symbol *tmp;
814
815         if(!sym)return 0;
816
817 #if DEUG_CHECK
818         fprintf(stderr, "%s: about to search for SYMbol: %s ... ", __FUNCTION__, sym->name);
819 #endif
820
821         for(tmp = setFirstItem( set ); tmp; tmp = setNextItem( set )) {
822                 if(!strcmp(tmp->name, sym->name))break;
823         }
824
825         if(!tmp) {
826 #if DEBUG_CHECK
827                 fprintf(stderr, "not found\n");
828 #endif
829                 return 0;
830         }
831
832 #if DEBUG_CHECK
833         fprintf(stderr, "found\n");
834 #endif
835
836   return 1;
837 }
838
839 /*-----------------------------------------------------------------*
840  * void pic16_groupRegistersInSection - add each register to its   *
841  *      corresponding section                                      *
842  *-----------------------------------------------------------------*/
843 void pic16_groupRegistersInSection(set *regset)
844 {
845   regs *reg;
846   sectSym *ssym;
847   int docontinue=0;
848
849         for(reg=setFirstItem(regset); reg; reg = setNextItem(regset)) {
850
851 #if 0
852                 fprintf(stderr, "%s:%d group registers in section, reg: %s (used: %d, %p)\n",
853                         __FILE__, __LINE__, reg->name, reg->wasUsed, reg);
854 #endif
855                 if((reg->wasUsed
856                         && !(reg->regop && SPEC_EXTR(OP_SYM_ETYPE(reg->regop))))
857                   ) {
858
859                         /* avoid grouping registers that have an initial value,
860                          * they will be added later in idataSymSet */
861                         if(reg->regop && (OP_SYMBOL(reg->regop)->ival && !OP_SYMBOL(reg->regop)->level))
862                                 continue;
863
864 #if 0
865                         fprintf(stderr, "%s:%d register %s alias:%d fix:%d ival=%i level=%i code=%i\n",
866                                 __FILE__, __LINE__, reg->name, reg->alias, reg->isFixed,
867                                         (reg->regop?(OP_SYMBOL(reg->regop)->ival?1:0):-1),
868                                         (reg->regop?(OP_SYMBOL(reg->regop)->level):-1),
869                                         (reg->regop?(IS_CODE(OP_SYM_ETYPE(reg->regop))):-1) );
870 #endif
871
872                         docontinue=0;
873                         for(ssym=setFirstItem(sectSyms);ssym;ssym=setNextItem(sectSyms)) {
874                                 if(!strcmp(ssym->name, reg->name)) {
875 //                                      fprintf(stderr, "%s:%d section found %s (%p) with var %s\n",
876 //                                                      __FILE__, __LINE__, ssym->section->name, ssym->section, ssym->name);
877                                         if(strcmp(ssym->section->name, "access")) {
878                                                 addSet(&ssym->section->regsSet, reg);
879                                                 docontinue=1;
880                                                 break;
881                                         } else {
882                                                 docontinue=0;
883                                                 reg->accessBank = 1;
884                                                 break;
885                                         }
886                                 }
887                         }
888
889                         if(docontinue)continue;
890
891 //                      fprintf(stderr, "%s:%d reg: %s\n", __FILE__, __LINE__, reg->name);
892
893                         if(reg->alias == 0x80) {
894                                 checkAddReg(&pic16_equ_data, reg);
895                         } else
896                         if(reg->isFixed) {
897                                 checkAddReg(&pic16_fix_udata, reg);
898                         } else
899                         if(!reg->isFixed) {
900                                 if(reg->pc_type == PO_GPR_TEMP)
901                                         checkAddReg(&pic16_int_regs, reg);
902                                 else {
903                                         if(reg->accessBank) {
904                                                 if(reg->alias != 0x40)
905                                                         checkAddReg(&pic16_acs_udata, reg);
906                                         } else
907                                                 checkAddReg(&pic16_rel_udata, reg);
908                                 }
909                         }
910                 }
911         }
912 }
913
914
915
916
917
918 /*-----------------------------------------------------------------*
919  *  void pic16_assignConfigWordValue(int address, int value)
920  *
921  * All high performance RISC CPU PICs have seven config word starting
922  * at address 0x300000.
923  * This routine will assign a value to that address.
924  *
925  *-----------------------------------------------------------------*/
926 void pic16_assignConfigWordValue(int address, unsigned int value)
927 {
928   int i;
929
930         for(i=0;i<pic16->cwInfo.confAddrEnd-pic16->cwInfo.confAddrStart+1;i++) {
931                 if((address == pic16->cwInfo.confAddrStart+i)
932                   && (pic16->cwInfo.crInfo[i].mask != -1)
933                   && (pic16->cwInfo.crInfo[i].mask != 0)) {
934
935 #if 0
936                         fprintf(stderr, "setting location 0x%X to value 0x%x\tmask: 0x%x\ttest: 0x%x\n",
937                                 /*address*/ pic16->cwInfo.confAddrStart+i, (~value)&0xff,
938                                         pic16->cwInfo.crInfo[i].mask,
939                                         (pic16->cwInfo.crInfo[i].mask) & (~value));
940 #endif
941
942 #if 0
943                         if((((pic16->cwInfo.crInfo[i].mask) & (~value))&0xff) != ((~value)&0xff)) {
944                                 fprintf(stderr, "%s:%d a wrong value has been given for configuration register 0x%x\n",
945                                         __FILE__, __LINE__, address);
946                                         return;
947                         }
948 #endif
949
950                         pic16->cwInfo.crInfo[i].value = value;
951                         pic16->cwInfo.crInfo[i].emit = 1;
952                         return;
953                 }
954         }
955 }
956
957 void pic16_assignIdByteValue(int address, char value)
958 {
959   int i;
960
961         for(i=0;i<pic16->idInfo.idAddrEnd-pic16->idInfo.idAddrStart+1;i++) {
962                 if(address == pic16->idInfo.idAddrStart+i) {
963                         pic16->idInfo.irInfo[i].value = value;
964                         pic16->idInfo.irInfo[i].emit = 1;
965                 }
966         }
967 }