X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2FSDCCglue.c;h=af8c59999d4cccf236fc8c83a0e42e47d55b6404;hb=e29a356e2f474d0c2b18960773286593b11debb5;hp=9aa05c9c0e0fb267388554616a0467332f5d4f1c;hpb=c6fc407e1e4bf2a52848dd924a9b10d6200874ec;p=fw%2Fsdcc diff --git a/src/SDCCglue.c b/src/SDCCglue.c index 9aa05c9c..af8c5999 100644 --- a/src/SDCCglue.c +++ b/src/SDCCglue.c @@ -293,7 +293,7 @@ emitRegularMap (memmap * map, bool addPublics, bool arFlag) if (ival) { // set ival's lineno to where the symbol was defined - setAstLineno (ival, lineno=sym->lineDef); + setAstFileLine (ival, filename = sym->fileDef, lineno = sym->lineDef); // check if this is not a constant expression if (!constExprTree(ival)) { werror (E_CONST_EXPECTED, "found expression"); @@ -704,7 +704,7 @@ void printIvalBitFields(symbol **sym, initList **ilist, struct dbuf_s * oBuf) (IS_BITFIELD(lsym->next->type)) && (SPEC_BSTR(lsym->next->etype)))) break; lsym = lsym->next; - lilist = lilist->next; + lilist = lilist ? lilist->next : NULL; } while (1); switch (size) { case 1: @@ -714,9 +714,9 @@ void printIvalBitFields(symbol **sym, initList **ilist, struct dbuf_s * oBuf) case 2: dbuf_tprintf (oBuf, "\t!dw !constword\n",ival); break; - case 4: /* EEP: why is this db and not dw? */ - dbuf_tprintf (oBuf, "\t!db !constword,!constword\n", - (ival >> 8) & 0xffff, (ival & 0xffff)); + case 4: + dbuf_tprintf (oBuf, "\t!dw !constword,!constword\n", + (ival >> 16) & 0xffff, (ival & 0xffff)); break; } *sym = lsym; @@ -1531,7 +1531,8 @@ emitOverlay (struct dbuf_s * aBuf) sym->rname, SPEC_ADDR (sym->etype)); } - else { + else + { int size = getSize(sym->type); if (size==0) { @@ -1549,30 +1550,6 @@ emitOverlay (struct dbuf_s * aBuf) } } - -/*-----------------------------------------------------------------*/ -/* spacesToUnderscores - replace spaces with underscores */ -/*-----------------------------------------------------------------*/ -static char * -spacesToUnderscores (char *dest, const char *src, size_t len) -{ - unsigned int i; - char *p; - - assert(dest != NULL); - assert(src != NULL); - assert(len > 0); - - --len; - for (p = dest, i = 0; *src != '\0' && i < len; ++src, ++i) { - *p++ = isspace((unsigned char)*src) ? '_' : *src; - } - *p = '\0'; - - return dest; -} - - /*-----------------------------------------------------------------*/ /* glue - the final glue that hold the whole thing together */ /*-----------------------------------------------------------------*/ @@ -1582,21 +1559,13 @@ glue (void) struct dbuf_s vBuf; struct dbuf_s ovrBuf; FILE *asmFile; - char moduleBuf[PATH_MAX]; int mcs51_like; - dbuf_init(&vBuf, 4096); - dbuf_init(&ovrBuf, 4096); + dbuf_init (&vBuf, 4096); + dbuf_init (&ovrBuf, 4096); - if(port->general.glue_up_main && - (TARGET_IS_MCS51 || TARGET_IS_DS390 || TARGET_IS_XA51 || TARGET_IS_DS400)) - { - mcs51_like=1; /*So it has bits, sfr, sbits, data, idata, etc...*/ - } - else - { - mcs51_like=0; - } + mcs51_like = (port->general.glue_up_main && + (TARGET_IS_MCS51 || TARGET_IS_DS390 || TARGET_IS_XA51 || TARGET_IS_DS400)); /* print the global struct definitions */ if (options.debug) @@ -1614,7 +1583,7 @@ glue (void) /* do the overlay segments */ emitOverlay (&ovrBuf); - outputDebugSymbols(); + outputDebugSymbols (); /* now put it all together into the assembler file */ /* create the assembler file name */ @@ -1633,21 +1602,20 @@ glue (void) if (!(asmFile = fopen (scratchFileName, "w"))) { werror (E_FILE_OPEN_ERR, scratchFileName); - exit (1); + exit (EXIT_FAILURE); } /* initial comments */ initialComments (asmFile); /* print module name */ - tfprintf (asmFile, "\t!module\n", - spacesToUnderscores (moduleBuf, moduleName, sizeof moduleBuf)); - if(mcs51_like) + tfprintf (asmFile, "\t!module\n", moduleName); + if (mcs51_like) { fprintf (asmFile, "\t.optsdcc -m%s", port->target); switch(options.model) - { + { case MODEL_SMALL: fprintf (asmFile, " --model-small"); break; case MODEL_COMPACT: fprintf (asmFile, " --model-compact"); break; case MODEL_MEDIUM: fprintf (asmFile, " --model-medium"); break; @@ -1655,7 +1623,7 @@ glue (void) case MODEL_FLAT24: fprintf (asmFile, " --model-flat24"); break; case MODEL_PAGE0: fprintf (asmFile, " --model-page0"); break; default: break; - } + } /*if(options.stackAuto) fprintf (asmFile, " --stack-auto");*/ if(options.useXstack) fprintf (asmFile, " --xstack"); /*if(options.intlong_rent) fprintf (asmFile, " --int-long-rent");*/ @@ -1664,7 +1632,7 @@ glue (void) if(options.parms_in_bank1) fprintf (asmFile, " --parms-in-bank1"); fprintf (asmFile, "\n"); } - else if(TARGET_Z80_LIKE || TARGET_IS_HC08) + else if (TARGET_Z80_LIKE || TARGET_IS_HC08) { fprintf (asmFile, "\t.optsdcc -m%s\n", port->target); } @@ -1682,7 +1650,7 @@ glue (void) if (port->assembler.externGlobal) printExterns (asmFile); - if(( mcs51_like ) + if (( mcs51_like ) ||( TARGET_IS_Z80 )) /*.p.t.20030924 need to output SFR table for Z80 as well */ { /* copy the sfr segment */ @@ -1692,7 +1660,7 @@ glue (void) dbuf_write_and_destroy (&sfr->oBuf, asmFile); } - if(mcs51_like) + if (mcs51_like) { /* copy the sbit segment */ fprintf (asmFile, "%s", iComments2); @@ -1701,21 +1669,21 @@ glue (void) dbuf_write_and_destroy (&sfrbit->oBuf, asmFile); /*JCF: Create the areas for the register banks*/ - if(RegBankUsed[0]||RegBankUsed[1]||RegBankUsed[2]||RegBankUsed[3]) + if (RegBankUsed[0] || RegBankUsed[1] || RegBankUsed[2] || RegBankUsed[3]) { fprintf (asmFile, "%s", iComments2); fprintf (asmFile, "; overlayable register banks\n"); fprintf (asmFile, "%s", iComments2); - if(RegBankUsed[0]) + if (RegBankUsed[0]) fprintf (asmFile, "\t.area REG_BANK_0\t(REL,OVR,DATA)\n\t.ds 8\n"); - if(RegBankUsed[1]||options.parms_in_bank1) + if (RegBankUsed[1] || options.parms_in_bank1) fprintf (asmFile, "\t.area REG_BANK_1\t(REL,OVR,DATA)\n\t.ds 8\n"); - if(RegBankUsed[2]) + if (RegBankUsed[2]) fprintf (asmFile, "\t.area REG_BANK_2\t(REL,OVR,DATA)\n\t.ds 8\n"); - if(RegBankUsed[3]) + if (RegBankUsed[3]) fprintf (asmFile, "\t.area REG_BANK_3\t(REL,OVR,DATA)\n\t.ds 8\n"); } - if(BitBankUsed) + if (BitBankUsed) { fprintf (asmFile, "%s", iComments2); fprintf (asmFile, "; overlayable bit register bank\n"); @@ -1750,7 +1718,7 @@ glue (void) } /* create the stack segment MOF */ - if (mainf && IFFUNC_HASBODY(mainf->type)) + if (mainf && IFFUNC_HASBODY (mainf->type)) { fprintf (asmFile, "%s", iComments2); fprintf (asmFile, "; Stack segment in internal ram \n"); @@ -1760,7 +1728,7 @@ glue (void) } /* create the idata segment */ - if ( (idata) && (mcs51_like) ) + if ((idata) && (mcs51_like)) { fprintf (asmFile, "%s", iComments2); fprintf (asmFile, "; indirectly addressable internal ram data\n"); @@ -1769,7 +1737,7 @@ glue (void) } /* create the absolute idata/data segment */ - if ( (i_abs) && (mcs51_like) ) + if ((i_abs) && (mcs51_like)) { fprintf (asmFile, "%s", iComments2); fprintf (asmFile, "; absolute internal ram data\n"); @@ -1797,7 +1765,7 @@ glue (void) } /* if external stack then reserve space for it */ - if (mainf && IFFUNC_HASBODY(mainf->type) && options.useXstack) + if (mainf && IFFUNC_HASBODY (mainf->type) && options.useXstack) { fprintf (asmFile, "%s", iComments2); fprintf (asmFile, "; external stack \n"); @@ -1838,7 +1806,7 @@ glue (void) } /* copy the interrupt vector table */ - if (mainf && IFFUNC_HASBODY(mainf->type)) + if (mainf && IFFUNC_HASBODY (mainf->type)) { fprintf (asmFile, "%s", iComments2); fprintf (asmFile, "; interrupt vector \n"); @@ -1862,11 +1830,11 @@ glue (void) tfprintf (asmFile, "\t!area\n", port->mem.post_static_name); tfprintf (asmFile, "\t!area\n", port->mem.static_name); - if (mainf && IFFUNC_HASBODY(mainf->type)) + if (mainf && IFFUNC_HASBODY (mainf->type)) { if (port->genInitStartup) { - port->genInitStartup(asmFile); + port->genInitStartup (asmFile); } else { @@ -1902,13 +1870,13 @@ glue (void) // if the port can copy the XINIT segment to XISEG if (port->genXINIT) { - port->genXINIT(asmFile); + port->genXINIT (asmFile); } } } dbuf_write_and_destroy (&statsg->oBuf, asmFile); - if (port->general.glue_up_main && mainf && IFFUNC_HASBODY(mainf->type)) + if (port->general.glue_up_main && mainf && IFFUNC_HASBODY (mainf->type)) { /* This code is generated in the post-static area. * This area is guaranteed to follow the static area @@ -1925,7 +1893,7 @@ glue (void) tfprintf (asmFile, "\t!areahome\n", HOME_NAME); dbuf_write_and_destroy (&home->oBuf, asmFile); - if (mainf && IFFUNC_HASBODY(mainf->type)) + if (mainf && IFFUNC_HASBODY (mainf->type)) { /* entry point @ start of HOME */ fprintf (asmFile, "__sdcc_program_startup:\n"); @@ -1952,7 +1920,7 @@ glue (void) if (port->genAssemblerEnd) { - port->genAssemblerEnd(asmFile); + port->genAssemblerEnd (asmFile); } fclose (asmFile); }