(optionally) push static array initialization down to the ports code generator
[fw/sdcc] / src / mcs51 / main.c
index 1e487e928b6c131fe759556aba66be381b5381b2..c06d08a9c6d0b0f6b44360da588127be7f522fe1 100644 (file)
 #include "common.h"
 #include "main.h"
 #include "ralloc.h"
+#include "gen.h"
+
+static char _defaultRules[] =
+{
+#include "peeph.rul"
+};
 
 /* list of key words used by msc51 */
-static char *_mcs51_keywords[] =     {
-    "at",
-    "bit",
-    "code",
-    "critical",
-    "data",
-    "far",
-    "idata",
-    "interrupt",
-    "near",
-    "pdata",
-    "reentrant",
-    "sfr",
-    "sbit",
-    "using",
-    "xdata",
-    "_data",
-    "_code",
-    "_generic",
-    "_near",
-    "_xdata",
-    "_pdata",
-    "_idata",
-    NULL
+static char *_mcs51_keywords[] =
+{
+  "at",
+  "bit",
+  "code",
+  "critical",
+  "data",
+  "far",
+  "idata",
+  "interrupt",
+  "near",
+  "pdata",
+  "reentrant",
+  "sfr",
+  "sbit",
+  "using",
+  "xdata",
+  "_data",
+  "_code",
+  "_generic",
+  "_near",
+  "_xdata",
+  "_pdata",
+  "_idata",
+  "_naked",
+  NULL
 };
 
 
-void mcs51_assignRegisters (eBBlock **ebbs, int count);
+void mcs51_assignRegisters (eBBlock ** ebbs, int count);
+
+static int regParmFlg = 0;     /* determine if we can register a parameter */
+
+static void
+_mcs51_init (void)
+{
+  asm_addTree (&asm_asxxxx_mapping);
+}
+
+static void
+_mcs51_reset_regparm ()
+{
+  regParmFlg = 0;
+}
 
-static bool _mcs51_parseOptions(int *pargc, char **argv)
+static int
+_mcs51_regparm (sym_link * l)
 {
-    return FALSE;
+  /* for this processor it is simple
+     can pass only the first parameter in a register */
+  if (regParmFlg)
+    return 0;
+
+  regParmFlg = 1;
+  return 1;
 }
 
-static void _mcs51_finaliseOptions(void)
+static bool
+_mcs51_parseOptions (int *pargc, char **argv, int *i)
 {
+  /* TODO: allow port-specific command line options to specify
+   * segment names here.
+   */
+  return FALSE;
 }
 
-static void _mcs51_setDefaultOptions(void)
-{    
+static void
+_mcs51_finaliseOptions (void)
+{
+  if (options.model == MODEL_LARGE) {
+      port->mem.default_local_map = xdata;
+      port->mem.default_globl_map = xdata;
+    }
+  else
+    {
+      port->mem.default_local_map = data;
+      port->mem.default_globl_map = data;
+    }
 }
 
-static const char *_mcs51_getRegName(struct regs *reg)
+static void
+_mcs51_setDefaultOptions (void)
 {
-    if (reg)
-       return reg->name;
-    return "err";
+}
+
+static const char *
+_mcs51_getRegName (struct regs *reg)
+{
+  if (reg)
+    return reg->name;
+  return "err";
+}
+
+static void
+_mcs51_genAssemblerPreamble (FILE * of)
+{
+}
+
+/* Generate interrupt vector table. */
+static int
+_mcs51_genIVT (FILE * of, symbol ** interrupts, int maxInterrupts)
+{
+  return FALSE;
 }
 
 /** $1 is always the basename.
@@ -64,54 +126,91 @@ static const char *_mcs51_getRegName(struct regs *reg)
     $l is the list of extra options that should be there somewhere...
     MUST be terminated with a NULL.
 */
-static const char *_linkCmd[] = {
-    "aslink", "-nf", "$1", NULL
+static const char *_linkCmd[] =
+{
+  "aslink", "-nf", "$1", NULL
 };
 
-static const char *_asmCmd[] = {
-    "asx8051", "-plosgffc", "$1.asm", NULL
+static const char *_asmCmd[] =
+{
+  "asx8051", "$l", "-plosgffc", "$1.asm", NULL
 };
 
 /* Globals */
-PORT mcs51_port = {
-    "mcs51",
-    "MCU 8051",                        /* Target name */
-    {  
-       _asmCmd,
-       "-plosgffc",            /* Options with debug */
-       "-plosgff",             /* Options without debug */
-    },
-    {
-       _linkCmd
-    },
-    {
-       /* Sizes: char, short, int, long, ptr, fptr, gptr, bit, float, max */
-       1, 1, 2, 4, 1, 2, 3, 1, 4, 4
-    },
-    {
-       "XSEG    (XDATA)",
-       "STACK   (DATA)",
-       "CSEG    (CODE)",
-       "DSEG    (DATA)",
-       "ISEG    (DATA)",
-       "XSEG    (XDATA)",
-       "BSEG    (BIT)",
-       "RSEG    (DATA)",
-       "GSINIT  (CODE)",
-       "OSEG    (OVR,DATA)"
-    },
-    { 
-       +1, 1, 4, 1, 1
-    },
+PORT mcs51_port =
+{
+  TARGET_ID_MCS51,
+  "mcs51",
+  "MCU 8051",                  /* Target name */
+  {
+    TRUE,                      /* Emit glue around main */
+    MODEL_SMALL | MODEL_LARGE,
+    MODEL_SMALL
+  },
+  {
+    _asmCmd,
+    "-plosgffc",               /* Options with debug */
+    "-plosgff",                        /* Options without debug */
+    0,
+    ".asm"
+  },
+  {
+    _linkCmd,
+    NULL,
+    ".rel"
+  },
+  {
+    _defaultRules
+  },
+  {
+       /* Sizes: char, short, int, long, ptr, fptr, gptr, bit, float, max */
+    1, 2, 2, 4, 1, 2, 3, 1, 4, 4
+  },
+  {
+    "XSEG    (XDATA)",
+    "STACK   (DATA)",
+    "CSEG    (CODE)",
+    "DSEG    (DATA)",
+    "ISEG    (DATA)",
+    "XSEG    (XDATA)",
+    "BSEG    (BIT)",
+    "RSEG    (DATA)",
+    "GSINIT  (CODE)",
+    "OSEG    (OVR,DATA)",
+    "GSFINAL (CODE)",
+    "HOME       (CODE)",
+    NULL,
+    NULL,
+    1
+  },
+  {
+    +1, 1, 4, 1, 1, 0
+  },
     /* mcs51 has an 8 bit mul */
-    {
-       1
-    },
-    _mcs51_parseOptions,
-    _mcs51_finaliseOptions,
-    _mcs51_setDefaultOptions,
-    mcs51_assignRegisters,
-    _mcs51_getRegName ,
-    _mcs51_keywords
-
+  {
+    1, -1
+  },
+  "_",
+  _mcs51_init,
+  _mcs51_parseOptions,
+  _mcs51_finaliseOptions,
+  _mcs51_setDefaultOptions,
+  mcs51_assignRegisters,
+  _mcs51_getRegName,
+  _mcs51_keywords,
+  _mcs51_genAssemblerPreamble,
+  _mcs51_genIVT,
+  _mcs51_reset_regparm,
+  _mcs51_regparm,
+  NULL,
+  NULL,
+  FALSE,
+  0,                           /* leave lt */
+  0,                           /* leave gt */
+  1,                           /* transform <= to ! > */
+  1,                           /* transform >= to ! < */
+  1,                           /* transform != to !(a == b) */
+  0,                           /* leave == */
+  FALSE,                        /* No array initializer support. */
+  PORT_MAGIC
 };