X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2FSDCCglobl.h;h=258be0f63b344e340ed5bdf9c96bb612f8bd1b19;hb=018012d1b59dfb839b511183ef7640b969a00669;hp=602aef492f5bd26c4f948d208f1a0382026b9d10;hpb=e33697a63656f0521f622699c6051483f7c740ed;p=fw%2Fsdcc diff --git a/src/SDCCglobl.h b/src/SDCCglobl.h index 602aef49..258be0f6 100644 --- a/src/SDCCglobl.h +++ b/src/SDCCglobl.h @@ -48,6 +48,11 @@ #define SPACE ' ' #define ZERO 0 +#include /* PATH_MAX */ +#ifndef PATH_MAX /* POSIX, but not required */ +#define PATH_MAX 255 /* define a reasonable value */ +#endif + #define MAX_FNAME_LEN 128 #define MAX_REG_PARMS 1 typedef int bool; @@ -93,6 +98,7 @@ typedef int bool; #define PRAGMA_NOOVERLAY "NOOVERLAY" #define PRAGMA_CALLEESAVES "CALLEE-SAVES" #define PRAGMA_EXCLUDE "EXCLUDE" +#define PRAGMA_OVERLAY "OVERLAY" #define SMALL_MODEL 0 #define LARGE_MODEL 1 #define TRUE 1 @@ -183,6 +189,14 @@ enum MODEL_FLAT24 = 16 }; +/* overlay segment name and the functions + that belong to it. used by pragma overlay */ +typedef struct { + char *osname; /* overlay segment name */ + int nfuncs; /* number of functions in this overlay */ + char *funcs[128]; /* function name that belong to this */ +} olay; + /* other command line options */ struct options { @@ -198,6 +212,7 @@ struct options int dump_range; /* dump after live range analysis */ int dump_pack; /* dump after register packing */ int dump_rassgn; /* dump after register assignment */ + int dump_tree; /* dump front-end tree before lowering to iCode */ int cc_only; /* compile only flag */ int intlong_rent; /* integer & long support routines reentrant */ int float_rent; /* floating point routines are reentrant */ @@ -214,12 +229,19 @@ struct options char *out_name; /* Asm output name for c1 mode */ int nostdlib; /* Don't use standard lib files */ int nostdinc; /* Don't use standard include files */ + int noRegParams; /* Disable passing some parameters in registers */ int verbose; /* Show what the compiler is doing */ int shortis8bits; /* treat short like int or char */ - + int lessPedantic; /* disable some warnings */ + 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 all_callee_saves; /* callee saves for all functions */ + int stack_probe; /* insert call to function __stack_probe */ + int tini_libid; /* library ID for TINI */ + 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 */ @@ -227,7 +249,7 @@ struct options int data_loc; /* interram start location */ int idata_loc; /* indirect address space */ int code_loc; /* code location start */ - int iram_size; /* internal ram size (used only for error checking) */ + int iram_size; /* internal ram size (used only for error checking) */ }; /* forward definition for variables accessed globally */ @@ -259,6 +281,9 @@ extern int nrelFiles; extern char *relFiles[128]; extern char *libFiles[128]; extern int nlibFiles; +extern char *libPaths[128]; +extern int nlibPaths; + extern bool verboseExec ; void parseWithComma (char **, char *); @@ -269,10 +294,12 @@ void parseWithComma (char **, char *); */ FILE *tempfile (void); -/** Creates a duplicate of the string 'sz' a'la strdup but using - libgc. +/** Creates a temporary file name a'la tmpnam which avoids the bugs + in cygwin wrt c:\tmp. + Scans, in order: TMP, TEMP, TMPDIR, else uses tmpfile(). */ -char *gc_strdup (const char *sz); +char * +tempfilename (void); /** An assert() macro that will go out through sdcc's error system. @@ -307,6 +334,6 @@ extern struct _dumpFiles dumpFiles[]; /* Buffer which can be used to hold a file name; assume it will * be trashed by any function call within SDCC. */ -extern char scratchFileName[FILENAME_MAX]; +extern char scratchFileName[PATH_MAX]; #endif