gbdk-releases/sdcc/src/SDCCglue.c

1609 lines
43 KiB
C
Raw Permalink Normal View History

2015-01-10 16:25:06 +01:00
/*-------------------------------------------------------------------------
2015-01-10 16:25:09 +01:00
SDCCglue.c - glues everything we have done together into one file.
2015-01-10 16:25:06 +01:00
Written By - Sandeep Dutta . sandeep.dutta@usa.net (1998)
2015-01-10 16:25:09 +01:00
2015-01-10 16:25:06 +01:00
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
2015-01-10 16:25:09 +01:00
2015-01-10 16:25:06 +01:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2015-01-10 16:25:09 +01:00
2015-01-10 16:25:06 +01:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2015-01-10 16:25:09 +01:00
2015-01-10 16:25:06 +01:00
In other words, you are welcome to use, share and improve this program.
You are forbidden to forbid anyone else to use, share and improve
2015-01-10 16:25:09 +01:00
what you give them. Help stamp out software-hoarding!
2015-01-10 16:25:06 +01:00
-------------------------------------------------------------------------*/
#include "common.h"
2015-01-10 16:25:07 +01:00
#include "asm.h"
2015-01-10 16:25:06 +01:00
#include <time.h>
2015-01-10 16:25:09 +01:00
#include "newalloc.h"
#if !defined(__BORLANDC__) && !defined(_MSC_VER)
#include <unistd.h>
#endif
2015-01-10 16:25:06 +01:00
symbol *interrupts[256];
2015-01-10 16:25:09 +01:00
void printIval (symbol *, sym_link *, initList *, FILE *);
2015-01-10 16:25:06 +01:00
set *publics = NULL; /* public variables */
2015-01-10 16:25:08 +01:00
set *externs = NULL; /* Varibles that are declared as extern */
2015-01-10 16:25:06 +01:00
/* TODO: this should be configurable (DS803C90 uses more than 6) */
2015-01-10 16:25:09 +01:00
unsigned maxInterrupts = 6;
2015-01-10 16:25:08 +01:00
int allocInfo = 1;
2015-01-10 16:25:06 +01:00
symbol *mainf;
extern char *VersionString;
2015-01-10 16:25:09 +01:00
set *tmpfileSet = NULL; /* set of tmp file created by the compiler */
set *tmpfileNameSet = NULL; /* All are unlinked at close. */
2015-01-10 16:25:08 +01:00
2015-01-10 16:25:06 +01:00
/*-----------------------------------------------------------------*/
/* closeTmpFiles - closes all tmp files created by the compiler */
/* because of BRAIN DEAD MS/DOS & CYGNUS Libraries */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
DEFSETFUNC (closeTmpFiles)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
FILE *tfile = item;
if (tfile)
fclose (tfile);
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
return 0;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:07 +01:00
/*-----------------------------------------------------------------*/
/* rmTmpFiles - closes all tmp files created by the compiler */
/* because of BRAIN DEAD MS/DOS & CYGNUS Libraries */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
DEFSETFUNC (rmTmpFiles)
2015-01-10 16:25:07 +01:00
{
2015-01-10 16:25:09 +01:00
char *name = item;
2015-01-10 16:25:07 +01:00
2015-01-10 16:25:09 +01:00
if (name)
{
unlink (name);
Safe_free (name);
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:09 +01:00
return 0;
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:06 +01:00
/*-----------------------------------------------------------------*/
/* copyFile - copies source file to destination file */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
copyFile (FILE * dest, FILE * src)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
int ch;
rewind (src);
while (!feof (src))
if ((ch = fgetc (src)) != EOF)
fputc (ch, dest);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
char *
aopLiteralLong (value * val, int offset, int size)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
char *rs;
union {
float f;
unsigned char c[4];
}
fl;
if (!val) {
// assuming we have been warned before
val=constVal("0");
}
/* if it is a float then it gets tricky */
/* otherwise it is fairly simple */
if (!IS_FLOAT (val->type)) {
unsigned long v = (unsigned long) floatFromVal (val);
v >>= (offset * 8);
switch (size) {
case 1:
tsprintf (buffer, "!immedbyte", (unsigned int) v & 0xff);
break;
case 2:
tsprintf (buffer, "!immedword", (unsigned int) v & 0xffff);
break;
default:
/* Hmm. Too big for now. */
assert (0);
}
rs = Safe_calloc (1, strlen (buffer) + 1);
return strcpy (rs, buffer);
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* PENDING: For now size must be 1 */
assert (size == 1);
2015-01-10 16:25:07 +01:00
2015-01-10 16:25:09 +01:00
/* it is type float */
fl.f = (float) floatFromVal (val);
2015-01-10 16:25:07 +01:00
#ifdef _BIG_ENDIAN
2015-01-10 16:25:09 +01:00
tsprintf (buffer, "!immedbyte", fl.c[3 - offset]);
2015-01-10 16:25:06 +01:00
#else
2015-01-10 16:25:09 +01:00
tsprintf (buffer, "!immedbyte", fl.c[offset]);
2015-01-10 16:25:06 +01:00
#endif
2015-01-10 16:25:09 +01:00
rs = Safe_calloc (1, strlen (buffer) + 1);
return strcpy (rs, buffer);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:07 +01:00
/*-----------------------------------------------------------------*/
/* aopLiteral - string from a literal value */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
char *
aopLiteral (value * val, int offset)
2015-01-10 16:25:07 +01:00
{
2015-01-10 16:25:09 +01:00
return aopLiteralLong (val, offset, 1);
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:06 +01:00
/*-----------------------------------------------------------------*/
/* emitRegularMap - emit code for maps with no special cases */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
static void
emitRegularMap (memmap * map, bool addPublics, bool arFlag)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
symbol *sym, *symIval;
ast *ival = NULL;
memmap *segment;
if (addPublics)
{
/* PENDING: special case here - should remove */
if (!strcmp (map->sname, CODE_NAME))
tfprintf (map->oFile, "\t!areacode\n", map->sname);
else if (!strcmp (map->sname, DATA_NAME))
tfprintf (map->oFile, "\t!areadata\n", map->sname);
else if (!strcmp (map->sname, HOME_NAME))
tfprintf (map->oFile, "\t!areahome\n", map->sname);
else
tfprintf (map->oFile, "\t!area\n", map->sname);
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* print the area name */
for (sym = setFirstItem (map->syms); sym;
sym = setNextItem (map->syms))
{
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* if extern then add it into the extern list */
if (IS_EXTERN (sym->etype))
{
addSetHead (&externs, sym);
continue;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* if allocation required check is needed
then check if the symbol really requires
allocation only for local variables */
if (arFlag && !IS_AGGREGATE (sym->type) &&
!(sym->_isparm && !IS_REGPARM (sym->etype)) &&
!sym->allocreq && sym->level)
continue;
/* for bitvar locals and parameters */
if (!arFlag && !sym->allocreq && sym->level
&& !SPEC_ABSA (sym->etype)) {
continue;
}
/* if global variable & not static or extern
and addPublics allowed then add it to the public set */
if ((sym->level == 0 ||
(sym->_isparm && !IS_REGPARM (sym->etype))) &&
addPublics &&
!IS_STATIC (sym->etype) &&
(IS_FUNC(sym->type) ? (sym->used || IFFUNC_HASBODY(sym->type)) : 1))
{
addSetHead (&publics, sym);
}
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* if extern then do nothing or is a function
then do nothing */
if (IS_FUNC (sym->type))
continue;
/* print extra debug info if required */
if (options.debug) {
cdbSymbol (sym, cdbFile, FALSE, FALSE);
if (!sym->level) /* global */
if (IS_STATIC (sym->etype))
fprintf (map->oFile, "F%s$", moduleName); /* scope is file */
else
fprintf (map->oFile, "G$"); /* scope is global */
else
/* symbol is local */
fprintf (map->oFile, "L%s$", (sym->localof ? sym->localof->name : "-null-"));
fprintf (map->oFile, "%s$%d$%d", sym->name, sym->level, sym->block);
}
/* if is has an absolute address then generate
an equate for this no need to allocate space */
if (SPEC_ABSA (sym->etype))
{
if (options.debug) {
fprintf (map->oFile, " == 0x%04x\n", SPEC_ADDR (sym->etype));
}
fprintf (map->oFile, "%s\t=\t0x%04x\n",
sym->rname,
SPEC_ADDR (sym->etype));
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else
{
/* allocate space */
if (options.debug) {
fprintf (map->oFile, "==.\n");
}
if (IS_STATIC (sym->etype))
tfprintf (map->oFile, "!slabeldef\n", sym->rname);
else
tfprintf (map->oFile, "!labeldef\n", sym->rname);
tfprintf (map->oFile, "\t!ds\n",
(unsigned int) getSize (sym->type) & 0xffff);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* if it has an initial value then do it only if
it is a global variable */
if (sym->ival && sym->level == 0)
{
if (IS_AGGREGATE (sym->type)) {
ival = initAggregates (sym, sym->ival, NULL);
} else {
ival = newNode ('=', newAst_VALUE (symbolVal (sym)),
decorateType (resolveSymbols (list2expr (sym->ival))));
}
codeOutFile = statsg->oFile;
allocInfo = 0;
// set ival's lineno to where the symbol was defined
if (ival) ival->lineno=sym->lineDef;
eBBlockFromiCode (iCodeFromAst (ival));
allocInfo = 1;
/* if the ival is a symbol assigned to an aggregate,
(bug #458099 -> #462479)
we don't need it anymore, so delete it from its segment */
if (sym->ival->type == INIT_NODE &&
IS_AST_SYM_VALUE(sym->ival->init.node) &&
IS_AGGREGATE (sym->type) ) {
symIval=AST_SYMBOL(sym->ival->init.node);
segment = SPEC_OCLS (symIval->etype);
deleteSetItem (&segment->syms, symIval);
}
sym->ival = NULL;
2015-01-10 16:25:06 +01:00
}
}
}
/*-----------------------------------------------------------------*/
/* initPointer - pointer initialization code massaging */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
value *
initPointer (initList * ilist)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
value *val;
ast *expr = list2expr (ilist);
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
if (!expr)
goto wrong;
/* try it the oldway first */
if ((val = constExprValue (expr, FALSE)))
return val;
/* no then we have to do these cludgy checks */
/* pointers can be initialized with address of
a variable or address of an array element */
if (IS_AST_OP (expr) && expr->opval.op == '&') {
/* address of symbol */
if (IS_AST_SYM_VALUE (expr->left)) {
val = copyValue (AST_VALUE (expr->left));
val->type = newLink ();
if (SPEC_SCLS (expr->left->etype) == S_CODE) {
DCL_TYPE (val->type) = CPOINTER;
DCL_PTR_CONST (val->type) = port->mem.code_ro;
}
else if (SPEC_SCLS (expr->left->etype) == S_XDATA)
DCL_TYPE (val->type) = FPOINTER;
else if (SPEC_SCLS (expr->left->etype) == S_XSTACK)
DCL_TYPE (val->type) = PPOINTER;
else if (SPEC_SCLS (expr->left->etype) == S_IDATA)
DCL_TYPE (val->type) = IPOINTER;
else if (SPEC_SCLS (expr->left->etype) == S_EEPROM)
DCL_TYPE (val->type) = EEPPOINTER;
2015-01-10 16:25:06 +01:00
else
2015-01-10 16:25:09 +01:00
DCL_TYPE (val->type) = POINTER;
val->type->next = expr->left->ftype;
val->etype = getSpec (val->type);
return val;
}
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* if address of indexed array */
if (IS_AST_OP (expr->left) && expr->left->opval.op == '[')
return valForArray (expr->left);
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* if address of structure element then
case 1. a.b ; */
if (IS_AST_OP (expr->left) &&
expr->left->opval.op == '.') {
return valForStructElem (expr->left->left,
expr->left->right);
}
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* case 2. (&a)->b ;
(&some_struct)->element */
if (IS_AST_OP (expr->left) &&
expr->left->opval.op == PTR_OP &&
IS_ADDRESS_OF_OP (expr->left->left))
return valForStructElem (expr->left->left->left,
expr->left->right);
2015-01-10 16:25:08 +01:00
2015-01-10 16:25:09 +01:00
}
/* case 3. (((char *) &a) +/- constant) */
if (IS_AST_OP (expr) &&
(expr->opval.op == '+' || expr->opval.op == '-') &&
IS_AST_OP (expr->left) && expr->left->opval.op == CAST &&
IS_AST_OP (expr->left->right) &&
expr->left->right->opval.op == '&' &&
IS_AST_LIT_VALUE (expr->right)) {
return valForCastAggr (expr->left->right->left,
expr->left->left->opval.lnk,
expr->right, expr->opval.op);
}
2015-01-10 16:25:08 +01:00
2015-01-10 16:25:09 +01:00
/* case 4. (char *)(array type) */
if (IS_CAST_OP(expr) && IS_AST_SYM_VALUE (expr->right) &&
IS_ARRAY(expr->right->ftype)) {
val = copyValue (AST_VALUE (expr->right));
val->type = newLink ();
if (SPEC_SCLS (expr->right->etype) == S_CODE) {
DCL_TYPE (val->type) = CPOINTER;
DCL_PTR_CONST (val->type) = port->mem.code_ro;
}
else if (SPEC_SCLS (expr->right->etype) == S_XDATA)
DCL_TYPE (val->type) = FPOINTER;
else if (SPEC_SCLS (expr->right->etype) == S_XSTACK)
DCL_TYPE (val->type) = PPOINTER;
else if (SPEC_SCLS (expr->right->etype) == S_IDATA)
DCL_TYPE (val->type) = IPOINTER;
else if (SPEC_SCLS (expr->right->etype) == S_EEPROM)
DCL_TYPE (val->type) = EEPPOINTER;
else
DCL_TYPE (val->type) = POINTER;
val->type->next = expr->right->ftype->next;
val->etype = getSpec (val->type);
return val;
}
wrong:
werror (W_INIT_WRONG);
return NULL;
2015-01-10 16:25:06 +01:00
}
/*-----------------------------------------------------------------*/
/* printChar - formats and prints a characater string with DB */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
printChar (FILE * ofile, char *s, int plen)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
int i;
int len = strlen (s);
int pplen = 0;
char buf[100];
char *p = buf;
while (len && pplen < plen)
{
i = 60;
while (i && *s && pplen < plen)
{
if (*s < ' ' || *s == '\"' || *s=='\\')
{
*p = '\0';
if (p != buf)
tfprintf (ofile, "\t!ascii\n", buf);
tfprintf (ofile, "\t!db !constbyte\n", (unsigned char)*s);
p = buf;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else
{
*p = *s;
p++;
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:09 +01:00
s++;
pplen++;
i--;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
if (p != buf)
{
*p = '\0';
tfprintf (ofile, "\t!ascii\n", buf);
p = buf;
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:09 +01:00
if (len > 60)
len -= 60;
else
len = 0;
}
tfprintf (ofile, "\t!db !constbyte\n", 0);
}
/*-----------------------------------------------------------------*/
/* return the generic pointer high byte for a given pointer type. */
/*-----------------------------------------------------------------*/
int
pointerTypeToGPByte (const int p_type, const char *iname, const char *oname)
{
switch (p_type)
{
case IPOINTER:
case POINTER:
return 0;
case GPOINTER:
/* hack - if we get a generic pointer, we just assume
* it's an FPOINTER (i.e. in XDATA space).
*/
werror (E_CANNOT_USE_GENERIC_POINTER, iname, oname);
exit (1);
// fall through
case FPOINTER:
return 1;
case CPOINTER:
return 2;
case PPOINTER:
return 3;
default:
fprintf (stderr, "*** internal error: unknown pointer type %d in GPByte.\n",
p_type);
break;
}
return -1;
}
/*-----------------------------------------------------------------*/
/* printPointerType - generates ival for pointer type */
/*-----------------------------------------------------------------*/
void
_printPointerType (FILE * oFile, const char *name)
{
/* if (TARGET_IS_DS390) */
if (options.model == MODEL_FLAT24)
{
fprintf (oFile, "\t.byte %s,(%s >> 8),(%s >> 16)", name, name, name);
}
else
{
fprintf (oFile, "\t.byte %s,(%s >> 8)", name, name);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
}
/*-----------------------------------------------------------------*/
/* printPointerType - generates ival for pointer type */
/*-----------------------------------------------------------------*/
void
printPointerType (FILE * oFile, const char *name)
{
_printPointerType (oFile, name);
fprintf (oFile, "\n");
}
/*-----------------------------------------------------------------*/
/* printGPointerType - generates ival for generic pointer type */
/*-----------------------------------------------------------------*/
void
printGPointerType (FILE * oFile, const char *iname, const char *oname,
const unsigned int type)
{
_printPointerType (oFile, iname);
fprintf (oFile, ",#0x%02x\n", pointerTypeToGPByte (type, iname, oname));
2015-01-10 16:25:06 +01:00
}
/*-----------------------------------------------------------------*/
/* printIvalType - generates ival for int/char */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
printIvalType (sym_link * type, initList * ilist, FILE * oFile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
value *val;
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* if initList is deep */
if (ilist->type == INIT_DEEP)
ilist = ilist->init.deep;
val = list2val (ilist);
switch (getSize (type)) {
case 1:
if (!val)
tfprintf (oFile, "\t!db !constbyte\n", 0);
else
tfprintf (oFile, "\t!dbs\n",
aopLiteral (val, 0));
break;
case 2:
if (port->use_dw_for_init)
tfprintf (oFile, "\t!dws\n", aopLiteralLong (val, 0, 2));
else
fprintf (oFile, "\t.byte %s,%s\n", aopLiteral (val, 0), aopLiteral (val, 1));
break;
case 4:
if (!val) {
tfprintf (oFile, "\t!dw !constword\n", 0);
tfprintf (oFile, "\t!dw !constword\n", 0);
}
else {
fprintf (oFile, "\t.byte %s,%s,%s,%s\n",
aopLiteral (val, 0), aopLiteral (val, 1),
aopLiteral (val, 2), aopLiteral (val, 3));
}
break;
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:09 +01:00
}
/*-----------------------------------------------------------------*/
/* printIvalBitFields - generate initializer for bitfields */
/*-----------------------------------------------------------------*/
void printIvalBitFields(symbol **sym, initList **ilist, FILE * oFile)
{
value *val ;
symbol *lsym = *sym;
initList *lilist = *ilist ;
unsigned long ival = 0;
int size =0;
do {
unsigned long i;
val = list2val(lilist);
if (size) {
if (SPEC_BLEN(lsym->etype) > 8) {
size += ((SPEC_BLEN (lsym->etype) / 8) +
(SPEC_BLEN (lsym->etype) % 8 ? 1 : 0));
}
} else {
size = ((SPEC_BLEN (lsym->etype) / 8) +
(SPEC_BLEN (lsym->etype) % 8 ? 1 : 0));
}
i = (unsigned long)floatFromVal(val);
i <<= SPEC_BSTR (lsym->etype);
ival |= i;
if (! ( lsym->next &&
(IS_BITFIELD(lsym->next->type)) &&
(SPEC_BSTR(lsym->next->etype)))) break;
lsym = lsym->next;
lilist = lilist->next;
} while (1);
switch (size) {
case 1:
tfprintf (oFile, "\t!db !constbyte\n",ival);
break;
case 2:
tfprintf (oFile, "\t!dw !constword\n",ival);
break;
case 4:
tfprintf (oFile, "\t!db !constword,!constword\n",
(ival >> 8) & 0xffff, (ival & 0xffff));
break;
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:09 +01:00
*sym = lsym;
*ilist = lilist;
2015-01-10 16:25:06 +01:00
}
/*-----------------------------------------------------------------*/
/* printIvalStruct - generates initial value for structures */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
printIvalStruct (symbol * sym, sym_link * type,
initList * ilist, FILE * oFile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
symbol *sflds;
initList *iloop;
sflds = SPEC_STRUCT (type)->fields;
if (ilist->type != INIT_DEEP) {
werror (E_INIT_STRUCT, sym->name);
return;
}
iloop = ilist->init.deep;
for (; sflds; sflds = sflds->next, iloop = (iloop ? iloop->next : NULL)) {
if (IS_BITFIELD(sflds->type)) {
printIvalBitFields(&sflds,&iloop,oFile);
} else {
printIval (sflds, sflds->type, iloop, oFile);
}
}
2015-01-10 16:25:06 +01:00
return;
}
/*-----------------------------------------------------------------*/
/* printIvalChar - generates initital value for character array */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
int
printIvalChar (sym_link * type, initList * ilist, FILE * oFile, char *s)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
value *val;
int remain;
if (!s)
{
val = list2val (ilist);
/* if the value is a character string */
if (IS_ARRAY (val->type) && IS_CHAR (val->etype))
{
if (!DCL_ELEM (type))
DCL_ELEM (type) = strlen (SPEC_CVAL (val->etype).v_char) + 1;
printChar (oFile, SPEC_CVAL (val->etype).v_char, DCL_ELEM (type));
if ((remain = (DCL_ELEM (type) - strlen (SPEC_CVAL (val->etype).v_char) - 1)) > 0)
while (remain--)
tfprintf (oFile, "\t!db !constbyte\n", 0);
return 1;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else
return 0;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else
printChar (oFile, s, strlen (s) + 1);
return 1;
2015-01-10 16:25:06 +01:00
}
/*-----------------------------------------------------------------*/
/* printIvalArray - generates code for array initialization */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
printIvalArray (symbol * sym, sym_link * type, initList * ilist,
FILE * oFile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
initList *iloop;
int lcnt = 0, size = 0;
/* take care of the special case */
/* array of characters can be init */
/* by a string */
if (IS_CHAR (type->next))
if (printIvalChar (type,
(ilist->type == INIT_DEEP ? ilist->init.deep : ilist),
oFile, SPEC_CVAL (sym->etype).v_char))
return;
/* not the special case */
if (ilist->type != INIT_DEEP)
{
werror (E_INIT_STRUCT, sym->name);
return;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
iloop = ilist->init.deep;
lcnt = DCL_ELEM (type);
for (;;)
{
size++;
printIval (sym, type->next, iloop, oFile);
iloop = (iloop ? iloop->next : NULL);
/* if not array limits given & we */
/* are out of initialisers then */
if (!DCL_ELEM (type) && !iloop)
break;
/* no of elements given and we */
/* have generated for all of them */
if (!--lcnt) {
/* if initializers left */
if (iloop) {
werror (W_EXESS_ARRAY_INITIALIZERS, sym->name, sym->lineDef);
}
break;
}
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* if we have not been given a size */
if (!DCL_ELEM (type))
DCL_ELEM (type) = size;
return;
2015-01-10 16:25:06 +01:00
}
/*-----------------------------------------------------------------*/
/* printIvalFuncPtr - generate initial value for function pointers */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
printIvalFuncPtr (sym_link * type, initList * ilist, FILE * oFile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
value *val;
int dLvl = 0;
val = list2val (ilist);
/* check the types */
if ((dLvl = compareType (val->type, type->next)) <= 0)
{
tfprintf (oFile, "\t!dw !constword\n", 0);
return;
}
/* now generate the name */
if (!val->sym)
{
if (port->use_dw_for_init)
{
tfprintf (oFile, "\t!dws\n", val->name);
}
else
{
printPointerType (oFile, val->name);
}
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else if (port->use_dw_for_init)
{
tfprintf (oFile, "\t!dws\n", val->sym->rname);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else
{
printPointerType (oFile, val->sym->rname);
}
return;
2015-01-10 16:25:06 +01:00
}
/*-----------------------------------------------------------------*/
/* printIvalCharPtr - generates initial values for character pointers */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
int
printIvalCharPtr (symbol * sym, sym_link * type, value * val, FILE * oFile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
int size = 0;
/* PENDING: this is _very_ mcs51 specific, including a magic
number...
It's also endin specific.
*/
size = getSize (type);
if (val->name && strlen (val->name))
{
if (size == 1) /* This appears to be Z80 specific?? */
{
tfprintf (oFile,
"\t!dbs\n", val->name);
}
else if (size == FPTRSIZE)
{
if (port->use_dw_for_init)
{
tfprintf (oFile, "\t!dws\n", val->name);
}
else
{
printPointerType (oFile, val->name);
}
}
else if (size == GPTRSIZE)
{
int type;
if (IS_PTR (val->type)) {
type = DCL_TYPE (val->type);
} else {
type = PTR_TYPE (SPEC_OCLS (val->etype));
}
if (val->sym && val->sym->isstrlit) {
// this is a literal string
type=CPOINTER;
}
printGPointerType (oFile, val->name, sym->name, type);
}
else
{
fprintf (stderr, "*** internal error: unknown size in "
"printIvalCharPtr.\n");
2015-01-10 16:25:07 +01:00
}
}
2015-01-10 16:25:09 +01:00
else
{
/* What is this case? Are these pointers? */
switch (size)
{
2015-01-10 16:25:07 +01:00
case 1:
2015-01-10 16:25:09 +01:00
tfprintf (oFile, "\t!dbs\n", aopLiteral (val, 0));
break;
2015-01-10 16:25:07 +01:00
case 2:
2015-01-10 16:25:09 +01:00
if (port->use_dw_for_init)
tfprintf (oFile, "\t!dws\n", aopLiteralLong (val, 0, size));
else
tfprintf (oFile, "\t.byte %s,%s\n",
aopLiteral (val, 0), aopLiteral (val, 1));
break;
2015-01-10 16:25:07 +01:00
case 3:
2015-01-10 16:25:09 +01:00
/* PENDING: 0x02 or 0x%02x, CDATA? */
fprintf (oFile, "\t.byte %s,%s,#0x02\n",
aopLiteral (val, 0), aopLiteral (val, 1));
break;
2015-01-10 16:25:07 +01:00
default:
2015-01-10 16:25:09 +01:00
assert (0);
2015-01-10 16:25:07 +01:00
}
}
2015-01-10 16:25:09 +01:00
if (val->sym && val->sym->isstrlit && !isinSet(statsg->syms, val->sym)) {
addSet (&statsg->syms, val->sym);
}
2015-01-10 16:25:07 +01:00
2015-01-10 16:25:09 +01:00
return 1;
2015-01-10 16:25:06 +01:00
}
/*-----------------------------------------------------------------*/
/* printIvalPtr - generates initial value for pointers */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
printIvalPtr (symbol * sym, sym_link * type, initList * ilist, FILE * oFile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
value *val;
int size;
/* if deep then */
if (ilist->type == INIT_DEEP)
ilist = ilist->init.deep;
/* function pointer */
if (IS_FUNC (type->next))
{
printIvalFuncPtr (type, ilist, oFile);
return;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
if (!(val = initPointer (ilist)))
return;
/* if character pointer */
if (IS_CHAR (type->next))
if (printIvalCharPtr (sym, type, val, oFile))
return;
/* check the type */
if (compareType (type, val->type) == 0)
werror (W_INIT_WRONG);
/* if val is literal */
if (IS_LITERAL (val->etype))
{
switch (getSize (type))
{
2015-01-10 16:25:06 +01:00
case 1:
2015-01-10 16:25:09 +01:00
tfprintf (oFile, "\t!db !constbyte\n", (unsigned int) floatFromVal (val) & 0xff);
break;
2015-01-10 16:25:06 +01:00
case 2:
2015-01-10 16:25:09 +01:00
if (port->use_dw_for_init)
tfprintf (oFile, "\t!dws\n", aopLiteralLong (val, 0, 2));
else
tfprintf (oFile, "\t.byte %s,%s\n", aopLiteral (val, 0), aopLiteral (val, 1));
break;
2015-01-10 16:25:06 +01:00
case 3:
2015-01-10 16:25:09 +01:00
fprintf (oFile, "\t.byte %s,%s,#0x02\n",
aopLiteral (val, 0), aopLiteral (val, 1));
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
return;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
size = getSize (type);
if (size == 1) /* Z80 specific?? */
{
tfprintf (oFile, "\t!dbs\n", val->name);
}
else if (size == FPTRSIZE)
{
if (port->use_dw_for_init) {
2015-01-10 16:25:07 +01:00
tfprintf (oFile, "\t!dws\n", val->name);
2015-01-10 16:25:09 +01:00
} else {
printPointerType (oFile, val->name);
}
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else if (size == GPTRSIZE)
{
printGPointerType (oFile, val->name, sym->name,
(IS_PTR (val->type) ? DCL_TYPE (val->type) :
PTR_TYPE (SPEC_OCLS (val->etype))));
}
return;
2015-01-10 16:25:06 +01:00
}
/*-----------------------------------------------------------------*/
/* printIval - generates code for initial value */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
printIval (symbol * sym, sym_link * type, initList * ilist, FILE * oFile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
if (!ilist)
return;
/* if structure then */
if (IS_STRUCT (type))
{
printIvalStruct (sym, type, ilist, oFile);
return;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* if this is a pointer */
if (IS_PTR (type))
{
printIvalPtr (sym, type, ilist, oFile);
return;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* if this is an array */
if (IS_ARRAY (type))
{
printIvalArray (sym, type, ilist, oFile);
return;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* if type is SPECIFIER */
if (IS_SPEC (type))
{
printIvalType (type, ilist, oFile);
return;
2015-01-10 16:25:06 +01:00
}
}
/*-----------------------------------------------------------------*/
/* emitStaticSeg - emitcode for the static segment */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
emitStaticSeg (memmap * map, FILE * out)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
symbol *sym;
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* fprintf(map->oFile,"\t.area\t%s\n",map->sname); */
if (!out)
out = code->oFile;
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* for all variables in this segment do */
for (sym = setFirstItem (map->syms); sym;
sym = setNextItem (map->syms))
{
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
/* if it is "extern" then do nothing */
if (IS_EXTERN (sym->etype))
continue;
/* if it is not static add it to the public
table */
if (!IS_STATIC (sym->etype))
addSetHead (&publics, sym);
/* print extra debug info if required */
if (options.debug) {
cdbSymbol (sym, cdbFile, FALSE, FALSE);
if (!sym->level)
{ /* global */
if (IS_STATIC (sym->etype))
fprintf (out, "F%s$", moduleName); /* scope is file */
2015-01-10 16:25:06 +01:00
else
2015-01-10 16:25:09 +01:00
fprintf (out, "G$"); /* scope is global */
}
else
/* symbol is local */
fprintf (out, "L%s$",
(sym->localof ? sym->localof->name : "-null-"));
fprintf (out, "%s$%d$%d", sym->name, sym->level, sym->block);
}
/* if it has an absolute address */
if (SPEC_ABSA (sym->etype))
{
if (options.debug)
fprintf (out, " == 0x%04x\n", SPEC_ADDR (sym->etype));
fprintf (out, "%s\t=\t0x%04x\n",
sym->rname,
SPEC_ADDR (sym->etype));
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else
{
if (options.debug)
fprintf (out, " == .\n");
/* if it has an initial value */
if (sym->ival)
{
fprintf (out, "%s:\n", sym->rname);
noAlloc++;
resolveIvalSym (sym->ival);
printIval (sym, sym->type, sym->ival, out);
noAlloc--;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else
{
/* allocate space */
fprintf (out, "%s:\n", sym->rname);
/* special case for character strings */
if (IS_ARRAY (sym->type) && IS_CHAR (sym->type->next) &&
SPEC_CVAL (sym->etype).v_char)
printChar (out,
SPEC_CVAL (sym->etype).v_char,
strlen (SPEC_CVAL (sym->etype).v_char) + 1);
else
tfprintf (out, "\t!ds\n", (unsigned int) getSize (sym->type) & 0xffff);
2015-01-10 16:25:06 +01:00
}
}
}
}
/*-----------------------------------------------------------------*/
/* emitMaps - emits the code for the data portion the code */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
emitMaps ()
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
inInitMode++;
/* no special considerations for the following
data, idata & bit & xdata */
emitRegularMap (data, TRUE, TRUE);
emitRegularMap (idata, TRUE, TRUE);
emitRegularMap (bit, TRUE, FALSE);
emitRegularMap (xdata, TRUE, TRUE);
emitRegularMap (sfr, FALSE, FALSE);
emitRegularMap (sfrbit, FALSE, FALSE);
emitRegularMap (home, TRUE, FALSE);
emitRegularMap (code, TRUE, FALSE);
emitStaticSeg (statsg, code->oFile);
inInitMode--;
2015-01-10 16:25:08 +01:00
}
/*-----------------------------------------------------------------*/
/* flushStatics - flush all currently defined statics out to file */
/* and delete. Temporary function */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
flushStatics (void)
2015-01-10 16:25:08 +01:00
{
2015-01-10 16:25:09 +01:00
emitStaticSeg (statsg, codeOutFile);
statsg->syms = NULL;
2015-01-10 16:25:06 +01:00
}
/*-----------------------------------------------------------------*/
/* createInterruptVect - creates the interrupt vector */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
createInterruptVect (FILE * vFile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
unsigned i = 0;
mainf = newSymbol ("main", 0);
mainf->block = 0;
/* only if the main function exists */
if (!(mainf = findSymWithLevel (SymbolTab, mainf)))
{
if (!options.cc_only && !noAssemble)
werror (E_NO_MAIN);
return;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* if the main is only a prototype ie. no body then do nothing */
if (!IFFUNC_HASBODY(mainf->type))
{
/* if ! compile only then main function should be present */
if (!options.cc_only && !noAssemble)
werror (E_NO_MAIN);
return;
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
tfprintf (vFile, "\t!areacode\n", CODE_NAME);
fprintf (vFile, "__interrupt_vect:\n");
if (!port->genIVT || !(port->genIVT (vFile, interrupts, maxInterrupts)))
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
/* "generic" interrupt table header (if port doesn't specify one).
* Look suspiciously like 8051 code to me...
*/
fprintf (vFile, "\tljmp\t__sdcc_gsinit_startup\n");
/* now for the other interrupts */
for (; i < maxInterrupts; i++)
{
if (interrupts[i])
fprintf (vFile, "\tljmp\t%s\n\t.ds\t5\n", interrupts[i]->rname);
else
fprintf (vFile, "\treti\n\t.ds\t7\n");
}
2015-01-10 16:25:06 +01:00
}
}
char *iComments1 =
{
2015-01-10 16:25:09 +01:00
";--------------------------------------------------------\n"
"; File Created by SDCC : FreeWare ANSI-C Compiler\n"};
2015-01-10 16:25:06 +01:00
char *iComments2 =
{
2015-01-10 16:25:09 +01:00
";--------------------------------------------------------\n"};
2015-01-10 16:25:06 +01:00
/*-----------------------------------------------------------------*/
/* initialComments - puts in some initial comments */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
initialComments (FILE * afile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
time_t t;
time (&t);
fprintf (afile, "%s", iComments1);
fprintf (afile, "; Version %s %s\n", VersionString, asctime (localtime (&t)));
fprintf (afile, "%s", iComments2);
2015-01-10 16:25:06 +01:00
}
/*-----------------------------------------------------------------*/
/* printPublics - generates .global for publics */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
printPublics (FILE * afile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
symbol *sym;
fprintf (afile, "%s", iComments2);
fprintf (afile, "; Public variables in this module\n");
fprintf (afile, "%s", iComments2);
for (sym = setFirstItem (publics); sym;
sym = setNextItem (publics))
tfprintf (afile, "\t!global\n", sym->rname);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:08 +01:00
/*-----------------------------------------------------------------*/
/* printExterns - generates .global for externs */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
printExterns (FILE * afile)
2015-01-10 16:25:08 +01:00
{
2015-01-10 16:25:09 +01:00
symbol *sym;
fprintf (afile, "%s", iComments2);
fprintf (afile, "; Externals used\n");
fprintf (afile, "%s", iComments2);
for (sym = setFirstItem (externs); sym;
sym = setNextItem (externs))
tfprintf (afile, "\t!global\n", sym->rname);
2015-01-10 16:25:08 +01:00
}
2015-01-10 16:25:06 +01:00
/*-----------------------------------------------------------------*/
/* emitOverlay - will emit code for the overlay stuff */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
static void
emitOverlay (FILE * afile)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
set *ovrset;
if (!elementsInSet (ovrSetSets))
tfprintf (afile, "\t!area\n", port->mem.overlay_name);
/* for each of the sets in the overlay segment do */
for (ovrset = setFirstItem (ovrSetSets); ovrset;
ovrset = setNextItem (ovrSetSets))
{
symbol *sym;
if (elementsInSet (ovrset))
{
/* this dummy area is used to fool the assembler
otherwise the assembler will append each of these
declarations into one chunk and will not overlay
sad but true */
fprintf (afile, "\t.area _DUMMY\n");
/* output the area informtion */
fprintf (afile, "\t.area\t%s\n", port->mem.overlay_name); /* MOF */
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
for (sym = setFirstItem (ovrset); sym;
sym = setNextItem (ovrset))
{
/* if extern then add it to the publics tabledo nothing */
if (IS_EXTERN (sym->etype))
continue;
/* if allocation required check is needed
then check if the symbol really requires
allocation only for local variables */
if (!IS_AGGREGATE (sym->type) &&
!(sym->_isparm && !IS_REGPARM (sym->etype))
&& !sym->allocreq && sym->level)
continue;
/* if global variable & not static or extern
and addPublics allowed then add it to the public set */
if ((sym->_isparm && !IS_REGPARM (sym->etype))
&& !IS_STATIC (sym->etype))
addSetHead (&publics, sym);
/* if extern then do nothing or is a function
then do nothing */
if (IS_FUNC (sym->type))
continue;
/* print extra debug info if required */
if (options.debug)
{
cdbSymbol (sym, cdbFile, FALSE, FALSE);
if (!sym->level)
{ /* global */
if (IS_STATIC (sym->etype))
fprintf (afile, "F%s$", moduleName); /* scope is file */
else
fprintf (afile, "G$"); /* scope is global */
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else
/* symbol is local */
fprintf (afile, "L%s$",
(sym->localof ? sym->localof->name : "-null-"));
fprintf (afile, "%s$%d$%d", sym->name, sym->level, sym->block);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* if is has an absolute address then generate
an equate for this no need to allocate space */
if (SPEC_ABSA (sym->etype))
{
if (options.debug)
fprintf (afile, " == 0x%04x\n", SPEC_ADDR (sym->etype));
fprintf (afile, "%s\t=\t0x%04x\n",
sym->rname,
SPEC_ADDR (sym->etype));
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else
{
if (options.debug)
fprintf (afile, "==.\n");
/* allocate space */
tfprintf (afile, "!labeldef\n", sym->rname);
tfprintf (afile, "\t!ds\n", (unsigned int) getSize (sym->type) & 0xffff);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
2015-01-10 16:25:06 +01:00
}
}
}
/*-----------------------------------------------------------------*/
/* glue - the final glue that hold the whole thing together */
/*-----------------------------------------------------------------*/
2015-01-10 16:25:09 +01:00
void
glue ()
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
FILE *vFile;
FILE *asmFile;
FILE *ovrFile = tempfile ();
addSetHead (&tmpfileSet, ovrFile);
/* print the global struct definitions */
if (options.debug)
cdbStructBlock (0, cdbFile);
vFile = tempfile ();
/* PENDING: this isnt the best place but it will do */
if (port->general.glue_up_main)
{
/* create the interrupt vector table */
createInterruptVect (vFile);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
addSetHead (&tmpfileSet, vFile);
/* emit code for the all the variables declared */
emitMaps ();
/* do the overlay segments */
emitOverlay (ovrFile);
/* now put it all together into the assembler file */
/* create the assembler file name */
if (!options.c1mode)
{
sprintf (scratchFileName, srcFileName);
strcat (scratchFileName, port->assembler.file_ext);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
else
{
strcpy (scratchFileName, options.out_name);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
if (!(asmFile = fopen (scratchFileName, "w")))
{
werror (E_FILE_OPEN_ERR, scratchFileName);
exit (1);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* initial comments */
initialComments (asmFile);
/* print module name */
tfprintf (asmFile, "\t!module\n", moduleName);
tfprintf (asmFile, "\t!fileprelude\n");
/* Let the port generate any global directives, etc. */
if (port->genAssemblerPreamble)
2015-01-10 16:25:06 +01:00
{
2015-01-10 16:25:09 +01:00
port->genAssemblerPreamble (asmFile);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* print the global variables in this module */
printPublics (asmFile);
if (port->assembler.externGlobal)
printExterns (asmFile);
/* copy the sfr segment */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; special function registers\n");
fprintf (asmFile, "%s", iComments2);
copyFile (asmFile, sfr->oFile);
/* copy the sbit segment */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; special function bits \n");
fprintf (asmFile, "%s", iComments2);
copyFile (asmFile, sfrbit->oFile);
/* copy the data segment */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; internal ram data\n");
fprintf (asmFile, "%s", iComments2);
copyFile (asmFile, data->oFile);
/* create the overlay segments */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; overlayable items in internal ram \n");
fprintf (asmFile, "%s", iComments2);
copyFile (asmFile, ovrFile);
/* create the stack segment MOF */
if (mainf && IFFUNC_HASBODY(mainf->type))
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; Stack segment in internal ram \n");
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "\t.area\tSSEG\t(DATA)\n"
"__start__stack:\n\t.ds\t1\n\n");
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* create the idata segment */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; indirectly addressable internal ram data\n");
fprintf (asmFile, "%s", iComments2);
copyFile (asmFile, idata->oFile);
/* copy the bit segment */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; bit data\n");
fprintf (asmFile, "%s", iComments2);
copyFile (asmFile, bit->oFile);
/* if external stack then reserve space of it */
if (mainf && IFFUNC_HASBODY(mainf->type) && options.useXstack)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; external stack \n");
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "\t.area XSEG (XDATA)\n"); /* MOF */
fprintf (asmFile, "\t.ds 256\n");
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* copy xtern ram data */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; external ram data\n");
fprintf (asmFile, "%s", iComments2);
copyFile (asmFile, xdata->oFile);
/* copy the interrupt vector table */
if (mainf && IFFUNC_HASBODY(mainf->type))
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; interrupt vector \n");
fprintf (asmFile, "%s", iComments2);
copyFile (asmFile, vFile);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* copy global & static initialisations */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; global & static initialisations\n");
fprintf (asmFile, "%s", iComments2);
/* Everywhere we generate a reference to the static_name area,
* (which is currently only here), we immediately follow it with a
* definition of the post_static_name area. This guarantees that
* the post_static_name area will immediately follow the static_name
* area.
*/
tfprintf (asmFile, "\t!area\n", port->mem.static_name); /* MOF */
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))
{
fprintf (asmFile, "__sdcc_gsinit_startup:\n");
/* if external stack is specified then the
higher order byte of the xdatalocation is
going into P2 and the lower order going into
spx */
if (options.useXstack)
{
fprintf (asmFile, "\tmov\tP2,#0x%02x\n",
(((unsigned int) options.xdata_loc) >> 8) & 0xff);
fprintf (asmFile, "\tmov\t_spx,#0x%02x\n",
(unsigned int) options.xdata_loc & 0xff);
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
/* initialise the stack pointer */
/* if the user specified a value then use it */
if (options.stack_loc)
fprintf (asmFile, "\tmov\tsp,#%d\n", options.stack_loc);
else
/* no: we have to compute it */
if (!options.stackOnData && maxRegBank <= 3)
fprintf (asmFile, "\tmov\tsp,#%d\n", ((maxRegBank + 1) * 8) - 1);
else
fprintf (asmFile, "\tmov\tsp,#__start__stack\n"); /* MOF */
fprintf (asmFile, "\tlcall\t__sdcc_external_startup\n");
fprintf (asmFile, "\tmov\ta,dpl\n");
fprintf (asmFile, "\tjz\t__sdcc_init_data\n");
fprintf (asmFile, "\tljmp\t__sdcc_program_startup\n");
fprintf (asmFile, "__sdcc_init_data:\n");
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00
copyFile (asmFile, statsg->oFile);
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
if (port->general.glue_up_main && mainf && IFFUNC_HASBODY(mainf->type))
2015-01-10 16:25:07 +01:00
{
2015-01-10 16:25:09 +01:00
/* This code is generated in the post-static area.
* This area is guaranteed to follow the static area
* by the ugly shucking and jiving about 20 lines ago.
*/
tfprintf (asmFile, "\t!area\n", port->mem.post_static_name);
fprintf (asmFile, "\tljmp\t__sdcc_program_startup\n");
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:08 +01:00
2015-01-10 16:25:09 +01:00
fprintf (asmFile,
"%s"
"; Home\n"
"%s", iComments2, iComments2);
tfprintf (asmFile, "\t!areahome\n", HOME_NAME);
copyFile (asmFile, home->oFile);
/* copy over code */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; code\n");
fprintf (asmFile, "%s", iComments2);
tfprintf (asmFile, "\t!areacode\n", CODE_NAME);
if (mainf && IFFUNC_HASBODY(mainf->type))
{
/* entry point @ start of CSEG */
fprintf (asmFile, "__sdcc_program_startup:\n");
/* put in the call to main */
fprintf (asmFile, "\tlcall\t_main\n");
if (options.mainreturn)
{
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
fprintf (asmFile, ";\treturn from main ; will return to caller\n");
fprintf (asmFile, "\tret\n");
}
else
{
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
fprintf (asmFile, ";\treturn from main will lock up\n");
fprintf (asmFile, "\tsjmp .\n");
2015-01-10 16:25:06 +01:00
}
}
2015-01-10 16:25:09 +01:00
copyFile (asmFile, code->oFile);
fclose (asmFile);
applyToSet (tmpfileSet, closeTmpFiles);
applyToSet (tmpfileNameSet, rmTmpFiles);
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:09 +01:00
#if defined (__MINGW32__) || defined (__CYGWIN__) || defined (_MSC_VER)
void
rm_tmpfiles (void)
{
applyToSet (tmpfileSet, closeTmpFiles);
applyToSet (tmpfileNameSet, rmTmpFiles);
}
#endif
/** Creates a temporary file name a'la tmpnam which avoids the bugs
2015-01-10 16:25:07 +01:00
in cygwin wrt c:\tmp.
Scans, in order: TMP, TEMP, TMPDIR, else uses tmpfile().
*/
2015-01-10 16:25:09 +01:00
char *
tempfilename (void)
2015-01-10 16:25:07 +01:00
{
2015-01-10 16:25:09 +01:00
#if !defined(_MSC_VER)
const char *tmpdir = NULL;
if (getenv ("TMP"))
tmpdir = getenv ("TMP");
else if (getenv ("TEMP"))
tmpdir = getenv ("TEMP");
else if (getenv ("TMPDIR"))
tmpdir = getenv ("TMPDIR");
if (tmpdir)
{
char *name = tempnam (tmpdir, "sdcc");
if (name)
{
return name;
}
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:09 +01:00
#endif
return tmpnam (NULL);
2015-01-10 16:25:07 +01:00
}
2015-01-10 16:25:09 +01:00
/** Creates a temporary file a'la tmpfile which avoids the bugs
in cygwin wrt c:\tmp.
Scans, in order: TMP, TEMP, TMPDIR, else uses tmpfile().
*/
FILE *
tempfile (void)
2015-01-10 16:25:07 +01:00
{
2015-01-10 16:25:09 +01:00
#if !defined(_MSC_VER)
const char *tmpdir = NULL;
if (getenv ("TMP"))
tmpdir = getenv ("TMP");
else if (getenv ("TEMP"))
tmpdir = getenv ("TEMP");
else if (getenv ("TMPDIR"))
tmpdir = getenv ("TMPDIR");
if (tmpdir)
{
char *name = Safe_strdup( tempnam (tmpdir, "sdcc"));
if (name)
{
FILE *fp = fopen (name, "w+b");
if (fp)
{
addSetHead (&tmpfileNameSet, name);
}
return fp;
}
return NULL;
}
#endif
return tmpfile ();
2015-01-10 16:25:06 +01:00
}
2015-01-10 16:25:09 +01:00