X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FStg.h;h=b0468472d3a0726039f9a69ba0af9ee6e470ceba;hb=432ec49f1fbaefc54f03bc3378f63fbd1e75d44b;hp=7451b3c2ca8276df05a6b40c58b7cf6ceee77e22;hpb=d21ef7f6b0e2f42559062a4bd8d8ca662ed4809e;p=ghc-hetmet.git diff --git a/ghc/includes/Stg.h b/ghc/includes/Stg.h index 7451b3c..b046847 100644 --- a/ghc/includes/Stg.h +++ b/ghc/includes/Stg.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Stg.h,v 1.28 2000/04/14 14:15:07 simonmar Exp $ + * $Id: Stg.h,v 1.37 2001/08/14 13:40:08 sewardj Exp $ * * (c) The GHC Team, 1998-1999 * @@ -12,13 +12,6 @@ #ifndef STG_H #define STG_H -#ifndef NON_POSIX_SOURCE -#define _POSIX_SOURCE 1 -#define _POSIX_C_SOURCE 199309L -#define _ISOC9X_SOURCE -#endif - -/* Let's be ISO C9X too... */ /* If we include "Stg.h" directly, we're in STG code, and we therefore * get all the global register variables, macros etc. that go along @@ -30,20 +23,22 @@ #endif #if IN_STG_CODE == 0 -# ifndef NO_MACHREGS -# define NO_MACHREGS /* don't define fixed registers */ +# ifndef NO_REGS +# define NO_REGS /* don't define fixed registers */ # endif #endif /* Configuration */ #include "config.h" -#ifdef __HUGS__ /* vile hack till the GHC folks come on board */ -#include "options.h" -#endif /* Some macros to handle DLLing (Win32 only at the moment). */ #include "StgDLL.h" +/* Fix for mingw stat problem (done here so it's early enough) */ +#ifdef mingw32_TARGET_OS +#define __MSVCRT__ 1 +#endif + /* Turn lazy blackholing and eager blackholing on/off. * * Using eager blackholing makes things easier to debug because @@ -65,10 +60,8 @@ # define LAZY_BLACKHOLING #endif -/* ToDo: Set this flag properly: COMPILER and INTERPRETER should not be mutually exclusive. */ -#ifndef INTERPRETER +/* ToDo: remove */ #define COMPILER 1 -#endif /* TABLES_NEXT_TO_CODE says whether to assume that info tables are * assumed to reside just before the code for a function. @@ -102,13 +95,47 @@ void _stgAssert (char *, unsigned int); #endif /* DEBUG */ /* ----------------------------------------------------------------------------- - Include everything STG-ish + Global type definitions -------------------------------------------------------------------------- */ -/* Global type definitions*/ #include "StgTypes.h" #include "RtsTypes.h" +/* ----------------------------------------------------------------------------- + Shorthand forms + -------------------------------------------------------------------------- */ + +typedef StgChar C_; +typedef StgWord W_; +typedef StgWord* P_; +typedef P_* PP_; +typedef StgInt I_; +typedef StgAddr A_; +typedef const StgWord* D_; +typedef StgFunPtr F_; +typedef StgByteArray B_; +typedef StgClosurePtr L_; + +typedef StgInt64 LI_; +typedef StgWord64 LW_; + +/* + * We often want to know the size of something in units of an + * StgWord... (rounded up, of course!) + */ + +#define sizeofW(t) ((sizeof(t)+sizeof(W_)-1)/sizeof(W_)) + +/* + * It's nice to be able to grep for casts + */ + +#define stgCast(ty,e) ((ty)(e)) + +/* ----------------------------------------------------------------------------- + Include everything STG-ish + -------------------------------------------------------------------------- */ + /* Global constaints */ #include "Constants.h" @@ -179,12 +206,16 @@ void _stgAssert (char *, unsigned int); /* Runtime-system hooks */ #include "Hooks.h" +#include "HsFFI.h" + /* Misc stuff without a home */ DLL_IMPORT_RTS extern char **prog_argv; /* so we can get at these from Haskell */ DLL_IMPORT_RTS extern int prog_argc; extern char **environ; +extern void stackOverflow(void); + /* Creating and destroying an adjustor thunk. I cannot make myself create a separate .h file for these two (sof.)