X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Finterpreter%2Fstorage.h;h=069d7309c91287ea881433346b485838d8ca1a65;hb=95256bc8787b3a9cdbd50f6dafadf5d84354a3e8;hp=5fc03507b7741e8708fcedc29b53e16b5e4d33fa;hpb=51c33894862dfd591d71018a70f4ca3914b17f7b;p=ghc-hetmet.git diff --git a/ghc/interpreter/storage.h b/ghc/interpreter/storage.h index 5fc0350..069d730 100644 --- a/ghc/interpreter/storage.h +++ b/ghc/interpreter/storage.h @@ -10,10 +10,13 @@ * included in the distribution. * * $RCSfile: storage.h,v $ - * $Revision: 1.20 $ - * $Date: 1999/12/10 15:59:54 $ + * $Revision: 1.44 $ + * $Date: 2000/04/25 17:43:50 $ * ------------------------------------------------------------------------*/ +#define DEBUG_STORAGE /* a moderate level of sanity checking */ +#define DEBUG_STORAGE_EXTRA /* max paranoia in sanity checks */ + /* -------------------------------------------------------------------------- * Typedefs for main data types: * Many of these type names are used to indicate the intended us of a data @@ -29,7 +32,6 @@ typedef Cell far *Heap; /* storage of heap */ typedef Cell Pair; /* pair cell */ typedef Int StackPtr; /* stack pointer */ typedef Cell Offset; /* offset/generic variable*/ -typedef Int Script; /* script file number */ typedef Int Module; /* module */ typedef Cell Tycon; /* type constructor */ typedef Cell Type; /* type expression */ @@ -49,6 +51,33 @@ typedef Cell Ext; /* extension label */ typedef Cell ConId; typedef Cell VarId; +typedef Cell QualId; +typedef Cell ConVarId; + +/* -------------------------------------------------------------------------- + * Address ranges. + * + * -heapSize .. -1 cells in the heap + * 0 NIL + * + * TAG_NONPTR_MIN(100) .. TAG_NONPTR_MAX(115) non pointer tags + * TAG_PTR_MIN(200) .. TAG_PTR_MAX(298) pointer tags + * TAG_SPEC_MIN(400) .. TAG_SPEC_MAX(431) special tags + * OFF_MIN(1,000) .. OFF_MAX(1,999) offsets + * CHARR_MIN(3,000) .. CHARR_MAX(3,255) chars + * + * SMALL_INT_MIN(100,000) .. SMALL_INT_MAX(499,999) smallish ints + * (300,000 denotes 0) + * + * NAME_BASE_ADDR (1,000,000 .. 1,899,999) names + * TYCON_BASE_ADDR (2,000,000 .. 2,899,999) tycons + * CCLASS_BASE_ADDR (3,000,000 .. 3,899,999) classes + * INST_BASE_ADDR (4,000,000 .. 4,899,999) instances + * MODULE_BASE_ADDR (5,000,000 .. 5,899,999) modules + * INVAR_BASE_ADDR (6,000,000 .. 6,899,999) invented var names + * INDVAR_BASE_ADDR (7,000,000 .. 7,899,999) invented dict var names + * TEXT_BASE_ADDR (8,000,000 .. 8M +TEXT_SIZE-1) text + * ------------------------------------------------------------------------*/ /* -------------------------------------------------------------------------- * Text storage: @@ -56,21 +85,35 @@ typedef Cell VarId; * names, string literals, character constants etc... * ------------------------------------------------------------------------*/ -extern String textToStr Args((Text)); -extern Text findText Args((String)); -extern Text inventText Args((Void)); -extern Text inventDictText Args((Void)); -extern Bool inventedText Args((Text)); -extern Text enZcodeThenFindText Args((String)); -extern Text unZcodeThenFindText Args((String)); +extern String textToStr ( Text ); +extern Text findText ( String ); +extern Text inventText ( Void ); +extern Text inventDictText ( Void ); +extern Bool inventedText ( Text ); +extern Text enZcodeThenFindText ( String ); +extern Text unZcodeThenFindText ( String ); /* Variants of textToStr and syntaxOf which work for idents, ops whether * qualified or unqualified. */ -extern String identToStr Args((Cell)); -extern Text fixLitText Args((Text)); -extern Syntax identSyntax Args((Cell)); -extern Syntax defaultSyntax Args((Text)); +extern String identToStr ( Cell ); +extern Text fixLitText ( Text ); +extern Syntax identSyntax ( Cell ); +extern Syntax defaultSyntax ( Text ); + +#define INVAR_BASE_ADDR 6000000 +#define INVAR_MAX_AVAIL 900000 +#define isInventedVar(c) (INVAR_BASE_ADDR<=(c) \ + && (c)