Tidied up the build, install, and regression tests.
[fw/sdcc] / src / SDCCglobl.h
index 8183937555eb6a10f4621b990e7b640fa52e1aea..5ef744e0e711d34a311abd2ed8b7fb45a5f7a297 100644 (file)
@@ -139,6 +139,10 @@ typedef int bool;
                                           : "empty"))
 
 /* optimization options */
+/*
+ * cloneOptimize function in SDCC.lex should be updated every time
+ * a new set is added to the optimize structure!
+ */
 struct optimize
   {
     unsigned global_cse;
@@ -176,6 +180,10 @@ typedef struct {
 } olay;
 
 /* other command line options */
+/*
+ * cloneOptions function in SDCC.lex should be updated every time
+ * a new set is added to the options structure!
+ */
 struct options
   {
     int model;                 /* see MODEL_* defines above */
@@ -212,15 +220,12 @@ struct options
     int profile;                /* Turn on extra profiling information */
     int ommitFramePtr;         /* Turn off the frame pointer. */
     int useAccelerator;                /* use ds390 Arithmetic Accelerator */
-    char *calleeSaves[128];    /* list of functions using callee save */
-    char *excludeRegs[32];     /* registers excluded from saving */
     int noiv;                  /* do not generate irq vector table entries */
     int all_callee_saves;      /* callee saves for all functions */
     int stack_probe;            /* insert call to function __stack_probe */
     int tini_libid;            /* library ID for TINI */
     int protect_sp_update;     /* DS390 - will disable interrupts during ESP:SP updates */
     int parms_in_bank1;        /* DS390 - use reg bank1 to pass parameters */
-    olay olays[128];            /* overlay segments used in #pragma OVERLAY */
     /* starting address of the segments */
     int xstack_loc;            /* initial location of external stack */
     int stack_loc;             /* initial value of internal stack pointer */
@@ -230,12 +235,20 @@ struct options
     int code_loc;              /* code location start           */
     int iram_size;             /* internal ram size (used only for error checking) */   
     int xram_size;             /* external ram size (used only for error checking) */
-       bool xram_size_set; /* since xram_size=0 is a possibility */
+    bool xram_size_set;         /* since xram_size=0 is a possibility */
     int code_size;             /* code size (used only for error checking) */    
     int verboseExec;            /* show what we are doing */
     int noXinitOpt;             /* don't optimize initialized xdata */
     int noCcodeInAsm;           /* hide c-code from asm */
     int iCodeInAsm;             /* show i-code in asm */
+    int printSearchDirs;        /* display the directories in the compiler's search path */
+    int vc_err_style;           /* errors and warnings are compatible with Micro$oft visual studio */
+    int use_stdout;             /* send errors to stdout instead of stderr */
+    int no_std_crt0;            /*For the z80/gbz80 do not link default crt0.o*/
+    /* sets */
+    set *calleeSavesSet;        /* list of functions using callee save */
+    set *excludeRegsSet;        /* registers excluded from saving */
+/*  set *olaysSet;               * not implemented yet: overlay segments used in #pragma OVERLAY */
   };
 
 /* forward definition for variables accessed globally */
@@ -251,8 +264,9 @@ extern char *dstPath;               /* path for the output files; */
                                /* "" is equivalent with cwd */
 extern char *moduleName;       /* module name is source file without path and extension */
                                /* can be NULL while linking without compiling */
+extern int seqPointNo;         /* current sequence point */
 extern int currLineno;         /* current line number    */
-extern int yylineno;           /* line number of the current file SDCC.lex */
+extern int mylineno;           /* line number of the current file SDCC.lex */
 extern FILE *yyin;             /* */
 extern FILE *asmFile;          /* assembly output file */
 extern FILE *cdbFile;          /* debugger symbol file */
@@ -269,17 +283,16 @@ extern int currBlockno;           /* sequentail block number */
 extern struct optimize optimize;
 extern struct options options;
 extern unsigned maxInterrupts;
+extern int ignoreTypedefType;
 
 /* Visible from SDCCmain.c */
-extern int nrelFiles;
-extern char *relFiles[128];
-extern char *libFiles[128];
-extern int nlibFiles;
-extern char *libPaths[128];
-extern int nlibPaths;
+extern set *preArgvSet;
+extern set *relFilesSet;
+extern set *libFilesSet;
+extern set *libPathsSet;
+extern set *libDirsSet;         /* list of lib search directories */
 
 void setParseWithComma (set **, char *);
-void parseWithComma (char **, char *);
 
 /** Creates a temporary file a'la tmpfile which avoids the bugs
     in cygwin wrt c:\tmp.
@@ -328,4 +341,15 @@ extern struct _dumpFiles dumpFiles[];
  */
 extern char scratchFileName[PATH_MAX];
 
+/* Define well known filenos if the system does not define them.  */
+#ifndef STDIN_FILENO
+# define STDIN_FILENO   0
+#endif
+#ifndef STDOUT_FILENO
+# define STDOUT_FILENO  1
+#endif
+#ifndef STDERR_FILENO
+# define STDERR_FILENO  2
+#endif
+
 #endif