[project @ 2002-02-13 07:46:42 by sof]
[ghc-hetmet.git] / ghc / includes / InfoTables.h
index bfaa7d4..3554dbd 100644 (file)
@@ -1,5 +1,5 @@
 /* ----------------------------------------------------------------------------
- * $Id: InfoTables.h,v 1.23 2001/10/03 13:57:42 simonmar Exp $
+ * $Id: InfoTables.h,v 1.25 2002/01/29 16:50:08 simonmar Exp $
  * 
  * (c) The GHC Team, 1998-1999
  *
@@ -34,11 +34,6 @@ typedef struct {
 
 #endif /* 0 */
 
-typedef struct {
-       /* empty */
-} StgParInfo;
-
-
 /*
    Copied from ghc-0.29; ToDo: check this code -- HWL
 
@@ -206,7 +201,14 @@ typedef union {
 
 typedef StgClosure* StgSRT[];
 
+/*
+ * The entry code pointer must be the first word of an info table.
+ * See the comment in ghc/rts/Storage.h (Plan C) for details.
+ */
 typedef struct _StgInfoTable {
+#ifndef TABLES_NEXT_TO_CODE
+    StgFunPtr       entry;
+#endif
     StgSRT         *srt;       /* pointer to the SRT table */
 #if defined(PAR) || defined(GRAN)
     struct _StgInfoTable    *rbh_infoptr;
@@ -231,7 +233,6 @@ typedef struct _StgInfoTable {
 #ifdef TABLES_NEXT_TO_CODE
     StgCode         code[FLEXIBLE_ARRAY];
 #else
-    StgFunPtr       entry;
     StgFunPtr       vector[FLEXIBLE_ARRAY];
 #endif
 } StgInfoTable;