[project @ 2000-03-16 17:27:12 by simonmar]
[ghc-hetmet.git] / ghc / rts / Bytecodes.h
index c52d51c..b66fcc7 100644 (file)
@@ -1,6 +1,6 @@
 
 /* -----------------------------------------------------------------------------
- * $Id: Bytecodes.h,v 1.8 1999/10/26 17:27:30 sewardj Exp $
+ * $Id: Bytecodes.h,v 1.13 1999/12/07 11:49:10 sewardj Exp $
  *
  * (c) The GHC Team, 1998-1999
  *
     Ins(i_INTERNAL_ERROR),    \
     Ins(i_PANIC),             \
     Ins(i_STK_CHECK),         \
+    Ins(i_STK_CHECK_big),     \
     Ins(i_ARG_CHECK),         \
     Ins(i_ALLOC_AP),          \
     Ins(i_ALLOC_PAP),         \
     Ins(i_ALLOC_CONSTR),      \
+    Ins(i_ALLOC_CONSTR_big),  \
     Ins(i_MKAP),              \
     Ins(i_MKAP_big),          \
     Ins(i_MKPAP),             \
@@ -412,18 +414,25 @@ typedef enum
     /* foreign export dynamic support */
     , i_createAdjThunkARCH
 
+    /* misc handy hacks */
+    , i_getArgc
+    , i_getArgv
+
 #ifdef PROVIDE_CONCURRENT
     /* Concurrency operations */
     , i_fork
     , i_killThread
-    , i_sameMVar
-    , i_newMVar
-    , i_takeMVar
-    , i_putMVar
     , i_delay
     , i_waitRead
     , i_waitWrite
 #endif
+    , i_sameMVar
+    , i_newMVar
+    , i_takeMVar
+    , i_putMVar
+    , i_getThreadId
+    , i_cmpThreadIds
+    , i_forkIO
 
     /* CCall! */
     , i_ccall_ccall_Id