X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2FSDCCglobl.h;h=947156f9e0ff40fa169ef4339c721ab5414961ff;hb=f0be1f29144f92632436c652a47b7f29dcefb86a;hp=df96d5be1668b1216953fde9dc8441ec53455c84;hpb=1ed2739f2173e7e9755a87667e66462b32b0f0bb;p=fw%2Fsdcc diff --git a/src/SDCCglobl.h b/src/SDCCglobl.h index df96d5be..947156f9 100644 --- a/src/SDCCglobl.h +++ b/src/SDCCglobl.h @@ -16,32 +16,25 @@ #define UNIX_DIR_SEPARATOR_CHAR '/' #define UNIX_DIR_SEPARATOR_STRING "/" -#if defined(__BORLANDC__) /* Borland Turbo C/Win32 Host */ - -#define NATIVE_WIN32 1 -#define DIR_SEPARATOR_CHAR DOS_DIR_SEPARATOR_CHAR -#define DIR_SEPARATOR_STRING DOS_DIR_SEPARATOR_STRING - -#elif defined(_MSC_VER) /* Miscosoft VC6/Win32 Host */ +#ifdef _WIN32 /* WIN32 native */ #define NATIVE_WIN32 1 +#ifdef __MINGW32__ /* GCC MINGW32 depends on configure */ +#include "sdccconf.h" +#else #include "sdcc_vc.h" -#define DIR_SEPARATOR_CHAR DOS_DIR_SEPARATOR_CHAR -#define DIR_SEPARATOR_STRING DOS_DIR_SEPARATOR_STRING - -#elif defined(__MINGW32__) /* MINGW32 DOS Host */ - -#define NATIVE_WIN32 1 -#define DIR_SEPARATOR_CHAR DOS_DIR_SEPARATOR_CHAR -#define DIR_SEPARATOR_STRING DOS_DIR_SEPARATOR_STRING +#define PATH_MAX _MAX_PATH +#endif +#define DIR_SEPARATOR_CHAR DOS_DIR_SEPARATOR_CHAR +#define DIR_SEPARATOR_STRING DOS_DIR_SEPARATOR_STRING -#else /* Assume Un*x style system */ +#else /* Assume Un*x style system */ #include "sdccconf.h" #define DIR_SEPARATOR_CHAR UNIX_DIR_SEPARATOR_CHAR #define DIR_SEPARATOR_STRING UNIX_DIR_SEPARATOR_STRING -#endif // _MSC_VER +#endif #include "SDCCerr.h" @@ -53,7 +46,6 @@ #define PATH_MAX 255 /* define a reasonable value */ #endif -#define MAX_FNAME_LEN 128 #define MAX_REG_PARMS 1 typedef int bool; @@ -98,6 +90,7 @@ typedef int bool; #define PRAGMA_NOOVERLAY "NOOVERLAY" #define PRAGMA_CALLEESAVES "CALLEE-SAVES" #define PRAGMA_EXCLUDE "EXCLUDE" +#define PRAGMA_NOIV "NOIV" #define PRAGMA_OVERLAY "OVERLAY" #define SMALL_MODEL 0 #define LARGE_MODEL 1 @@ -186,7 +179,8 @@ enum MODEL_COMPACT = 2, MODEL_MEDIUM = 4, MODEL_LARGE = 8, - MODEL_FLAT24 = 16 + MODEL_FLAT24 = 16, + MODEL_PAGE0 = 32 /* for the xa51 port */ }; /* overlay segment name and the functions @@ -204,7 +198,6 @@ struct options int stackAuto; /* Stack Automatic */ int useXstack; /* use Xternal Stack */ int stack10bit; /* use 10 bit stack (flat24 model only) */ - int genericPtr; /* use generic pointers */ int dump_raw; /* dump after intermediate code generation */ int dump_gcse; /* dump after gcse */ int dump_loop; /* dump after loop optimizations */ @@ -224,10 +217,8 @@ struct options int nopeep; /* no peep hole optimization */ int asmpeep; /* pass inline assembler thru peep hole */ int debug; /* generate extra debug info */ - int stackOnData; /* stack after data segment */ int c1mode; /* Act like c1 - no pre-proc, asm or link */ char *peep_file; /* additional rules for peep hole */ - 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 */ @@ -239,6 +230,7 @@ struct options 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 */ @@ -252,15 +244,29 @@ 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) */ + int xram_size; /* external ram size (used only for error checking) */ + 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 */ }; /* forward definition for variables accessed globally */ extern int noAssemble; /* no assembly, stop after code generation */ extern char *yytext; extern char *currFname; -extern char *srcFileName; /* source file name without the extenstion */ -extern char *moduleName; /* source file name without path & extension */ +extern char *fullSrcFileName; /* full name for the source file; */ + /* can be NULL while linking without compiling */ +extern char *fullDstFileName; /* full name for the output file; */ + /* only given by -o, otherwise NULL */ +extern char *dstFileName; /* destination file name without extension */ +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 currLineno; /* current line number */ extern int yylineno; /* line number of the current file SDCC.lex */ extern FILE *yyin; /* */ @@ -270,8 +276,9 @@ extern int NestLevel; /* NestLevel SDCC.y */ extern int stackPtr; /* stack pointer SDCC.y */ extern int xstackPtr; /* external stack pointer SDCC.y */ extern int reentrant; /* /X flag has been sent SDCC.y */ -extern char buffer[]; /* general buffer SDCCgen.c */ -extern int currRegBank; /* register bank being used SDCCgens.c */ +extern char buffer[PATH_MAX * 2];/* general buffer SDCCmain.c */ +extern int currRegBank; /* register bank being used SDCCgens.c */ +extern int RegBankUsed[4]; /* JCF: register banks used SDCCmain.c */ extern struct symbol *currFunc; /* current function SDCCgens.c */ extern int cNestLevel; /* block nest level SDCCval.c */ extern int currBlockno; /* sequentail block number */ @@ -287,8 +294,6 @@ extern int nlibFiles; extern char *libPaths[128]; extern int nlibPaths; -extern bool verboseExec ; - void parseWithComma (char **, char *); /** Creates a temporary file a'la tmpfile which avoids the bugs @@ -301,8 +306,7 @@ FILE *tempfile (void); in cygwin wrt c:\tmp. Scans, in order: TMP, TEMP, TMPDIR, else uses tmpfile(). */ -char * -tempfilename (void); +char *tempfilename (void); /** An assert() macro that will go out through sdcc's error system.