Fix typo causing the PowerPC OS X build to fail
[ghc-hetmet.git] / rts / Hpc.c
index 6d79f26..456c881 100644 (file)
--- a/rts/Hpc.c
+++ b/rts/Hpc.c
@@ -7,25 +7,40 @@
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
-#include "HsFFI.h"
 
 #include "Rts.h"
 #include "Hpc.h"
 
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
+
 /* This is the runtime support for the Haskell Program Coverage (hpc) toolkit,
  * inside GHC.
  *
  */
 
 #define DEBUG_HPC 0
+#define WOP_SIZE 1024  
 
 static int hpc_inited = 0;             // Have you started this component?
+static int totalTickCount = 0;         // How many ticks have we got to work with
 static FILE *tixFile;                  // file being read/written
 static int tix_ch;                     // current char
 static StgWord64 magicTixNumber;       // Magic/Hash number to mark .tix files
 
-static int hpc_ticks_inited = 0;       // Have you started the dynamic external ticking?
-static FILE *rixFile;                  // The tracer file/pipe
+static FILE *rixFile = NULL;           // The tracer file/pipe (to debugger)
+static FILE *rixCmdFile = NULL;                // The tracer file/pipe (from debugger)
+static StgWord64 rixCounter = 0;       // The global event counter
+static int debuggee_pid;
+
+typedef enum {
+  RixThreadFinishedOp   = -1,
+  RixRaiseOp            = -2,
+  RixFinishedOp         = -3
+} HpcRixOp;
+
 
 typedef struct _Info {
   char *modName;               // name of module
@@ -47,13 +62,12 @@ Info *nextModule = 0;
 StgWord64 *tixBoxes = 0;       // local copy of tixBoxes array, from file.
 int totalTixes = 0;            // total number of tix boxes.
 
-
-
 static char *tixFilename;
 
+
 static void failure(char *msg) {
-  printf("Hpc failure: %s\n",msg);
-  printf("(perhaps remove .tix file?)\n");
+  fprintf(stderr,"Hpc failure: %s\n",msg);
+  fprintf(stderr,"(perhaps remove .tix file?)\n");
   exit(-1);
 }
 
@@ -70,7 +84,7 @@ static int init_open(char *filename)
 
 static void expect(char c) {
   if (tix_ch != c) {
-    printf("Hpc: parse failed (%c,%c)\n",tix_ch,c);
+    fprintf(stderr,"Hpc: parse failed (%c,%c)\n",tix_ch,c);
     exit(-1);
   }
   tix_ch = getc(tixFile);
@@ -195,7 +209,7 @@ hs_hpc_module(char *modName,int modCount,StgWord64 *tixArr) {
   int offset = 0;
   
 #if DEBUG_HPC
-  printf("hs_hpc_module(%s,%d)\n",modName,modCount);
+  fprintf(stderr,"hs_hpc_module(%s,%d)\n",modName,modCount);
 #endif
 
   hpc_init();
@@ -240,82 +254,182 @@ hs_hpc_module(char *modName,int modCount,StgWord64 *tixArr) {
   }
 
 #if DEBUG_HPC
-  printf("end: hs_hpc_module\n");
+  fprintf(stderr,"end: hs_hpc_module\n");
 #endif
   return offset;
 }
 
+static void breakPointCommand(HpcRixOp rixOp, StgThreadID rixTid);
 
-/*
- * Called on *every* exception thrown
- */
-void
-hs_hpc_throw() {
-  // Assumes that we have had at least *one* tick first.
-  // All exceptions before the first tick are not reported.
-  // The only time this might be an issue is in bootstrapping code,
-  // so this is a feature.
-  if (hpc_inited != 0 && hpc_ticks_inited != 0) {
-    fprintf(rixFile,"Throw\n");
-  }
+// Breakpointing
+static StgThreadID previousTid = 0;
+static StgWord64 rixBPCounter = 0;     // The global event breakpoint counter
+static int *tixBoxBP;
+static HpcRixOp rixOpBack[WOP_SIZE];   // The actual op
+static HpcRixOp rixTidBack[WOP_SIZE];  // Tid's before the op
+
+void 
+hs_hpc_raise_event(StgTSO *current_tso) {
+  hs_hpc_tick(RixRaiseOp,current_tso);
+}
+
+void 
+hs_hpc_thread_finished_event(StgTSO *current_tso) {
+  hs_hpc_tick(RixThreadFinishedOp,current_tso);
 }
 
-/* Called on every tick
+/* Called on every tick, dynamically, sending to our 
+ * external record of program execution.
  */
 
 void
-hs_hpc_tick(int globIx) {
-  int threadId = 0;     // for now, assume single thread
-                        // TODO: work out how to get the thread Id to here.
+hs_hpc_tick(int rixOp, StgTSO *current_tso) {
+#if DEBUG_HPC
+  fprintf(stderr,"hs_hpc_tick(%x)\n",rixOp);
+#endif
+  if (rixFile == NULL) {
+    return;
+  }
+  assert(rixCmdFile != NULL);
+  StgThreadID tid = (current_tso == 0) ? 0 : current_tso->id;
 
-  
-#if DEBUG_HPC && DEBUG
-  printf("hs_hpc_tick(%d)\n",globIx);
+  // now check to see if we have met a breakpoint condition
+  if (rixCounter == rixBPCounter 
+      || tid != previousTid) {
+    breakPointCommand(rixOp,tid);
+  } else {
+    if (rixOp >= 0) {
+      // Tix op
+      if (tixBoxBP[rixOp] == 1) {      // reached a bp tixbox
+         breakPointCommand(rixOp,tid);
+      }
+    } else {
+      // record the special operation
+      breakPointCommand(rixOp,tid);
+    }
+  }
+  // update the history information.
+  previousTid = tid;
+  rixOpBack[rixCounter % WOP_SIZE]  = rixOp;
+  rixTidBack[rixCounter % WOP_SIZE] = tid;
+  rixCounter++;
+
+#if DEBUG_HPC
+  fprintf(stderr,"end: hs_hpc_tick\n");
 #endif
-  if (!hpc_ticks_inited) {
-    char* trace_filename;
-    int comma;
-    Info *tmpModule;  
+}
 
-    assert(hpc_inited);
-    hpc_ticks_inited = 1;
+static void 
+printEvent(FILE *out,StgWord64 rixCounter,StgThreadID rixTid,HpcRixOp rixOp) {
+#if DEBUG_HPC
+  if (out != stderr) {
+    printEvent(stderr,rixCounter,rixTid,rixOp);
+  }
+#endif
+  fprintf(out,"Event %" PRIuWORD64 " %u ",rixCounter,(unsigned int)rixTid);
+  switch(rixOp) {
+  case RixThreadFinishedOp:
+    fprintf(out,"ThreadFinished\n");
+    break;
+  case RixRaiseOp:
+    fprintf(out,"Raise\n");
+    break;
+  case RixFinishedOp:
+    fprintf(out,"Finished\n");
+    break;
+  default:
+    fprintf(out,"%u\n",rixOp);
+  }
+}
 
-    trace_filename = (char *) malloc(strlen(prog_name) + 6);
-    sprintf(trace_filename, "%s.rix", prog_name);
-    rixFile = fopen(trace_filename,"w+");
+static void
+breakPointCommand(HpcRixOp rixOp, StgThreadID rixTid) {
+  StgWord64 tmp64 = 0;
+  unsigned int tmp = 0;
 
-    comma = 0;
-    
-    fprintf(rixFile,"START %s\n",prog_name);
-    fprintf(rixFile,"[");
-    tmpModule = modules;
-    for(;tmpModule != 0;tmpModule = tmpModule->next) {
-      if (comma) {
-       fprintf(rixFile,",");
+  if (getpid() != debuggee_pid) {
+    // We are not the original process, to do not issue 
+    // any events, and do not try to talk to the debugger.
+    return;
+  }
+
+  printEvent(rixFile,rixCounter,rixTid,rixOp);
+  fflush(rixFile);
+  /* From here, you can ask some basic questions.
+   * 
+   *  c<nat>           set the (one) counter breakpoint
+   *  s<nat>           set the (many) tickbox breakpoint
+   *  u<nat>           unset the (many) tickbox breakpoint
+   *  h                        history
+
+   * Note that you aways end up here on the first tick
+   * because the rixBPCounter starts equal to 0.
+   */
+  int c = getc(rixCmdFile);
+  while(c != 10 && c != -1) {
+    switch(c) {
+    case 'c': // c1234 -- set counter breakpoint at 1234
+      c = getc(rixCmdFile);
+      tmp64 = 0;
+      while(isdigit(c)) {
+       tmp64 = tmp64 * 10 + (c - '0');
+       c = getc(rixCmdFile);
+      }
+#if DEBUG_HPC
+      fprintf(stderr,"setting countBP = %" PRIuWORD64 "\n",tmp64);
+#endif
+      rixBPCounter = tmp64;
+      break;
+    case 's': // s2323  -- set tick box breakpoint at 2323
+      c = getc(rixCmdFile);
+      tmp = 0;
+      while(isdigit(c)) {
+       tmp = tmp * 10 + (c - '0');
+       c = getc(rixCmdFile);
+      }
+#if DEBUG_HPC
+      fprintf(stderr,"seting bp for tix %d\n",tmp);
+#endif
+      tixBoxBP[tmp] = 1;
+      break;
+    case 'u': // u2323  -- unset tick box breakpoint at 2323
+      c = getc(rixCmdFile);
+      tmp = 0;
+      while(isdigit(c)) {
+       tmp = tmp * 10 + (c - '0');
+       c = getc(rixCmdFile);
+      }
+#if DEBUG_HPC
+      fprintf(stderr,"unseting bp for tix %d\n",tmp);
+#endif
+      tixBoxBP[tmp] = 0;
+      break;
+    case 'h': // h -- history of the last few (WOP_SIZE) steps 
+      if (rixCounter > WOP_SIZE) {
+       tmp64 = rixCounter - WOP_SIZE;
       } else {
-       comma = 1;
+       tmp64 = 0;
       }
-      fprintf(rixFile,"(\"%s\",%u)",
-             tmpModule->modName,
-             tmpModule->tickCount);
+      for(;tmp64 < rixCounter;tmp64++) {
+       printEvent(rixFile,tmp64,rixTidBack[tmp64 % WOP_SIZE],rixOpBack[tmp64 % WOP_SIZE]);
+      }
+      fflush(rixFile);
+      c = getc(rixCmdFile);
+      break;
+    default:
 #if DEBUG_HPC
-      fprintf(stderr,"(tracer)%s: %u (offset=%u)\n",
-             tmpModule->modName,
-             tmpModule->tickCount,
-             tmpModule->tickOffset);
+      fprintf(stderr,"strange command from HPCRIX (%d)\n",c);
 #endif
+      c = getc(rixCmdFile);
     }
-    fprintf(rixFile,"]\n");
-    fflush(rixFile);
+    while (c != 10) {          // the end of the line
+       c = getc(rixCmdFile); // to the end of the line
+    }
+    c = getc(rixCmdFile); // the first char on the next command
   }
-  assert(rixFile != 0);
-
-  fprintf(rixFile,"%d\n",globIx);
-
 #if DEBUG_HPC
-  printf("end: hs_hpc_tick\n");
+  fprintf(stderr,"re entering program\n");
 #endif
-  
 }
 
 /* This is called after all the modules have registered their local tixboxes,
@@ -325,8 +439,10 @@ hs_hpc_tick(int globIx) {
 void
 startupHpc(void) {
   Info *tmpModule;
+  char *hpcRix;
+
 #if DEBUG_HPC
-  printf("startupHpc\n");
+  fprintf(stderr,"startupHpc\n");
 #endif
  
  if (hpc_inited == 0) {
@@ -337,6 +453,7 @@ startupHpc(void) {
 
   if (tixBoxes) {
     for(;tmpModule != 0;tmpModule = tmpModule->next) {
+      totalTickCount += tmpModule->tickCount;
       if (!tmpModule->tixArr) {
        fprintf(stderr,"error: module %s did not register any hpc tick data\n",
                tmpModule->modName);
@@ -345,6 +462,71 @@ startupHpc(void) {
       }
     }
   }
+
+  // HPCRIX contains the name of the file to send our dynamic runtime output to (a named pipe).
+
+  hpcRix = getenv("HPCRIX");
+  if (hpcRix) {
+    int comma;
+    Info *tmpModule;  
+    int rixFD, rixCmdFD;
+
+    assert(hpc_inited);
+
+    if (sscanf(hpcRix,"%d:%d",&rixFD,&rixCmdFD) != 2) {
+      /* Bad format for HPCRIX.
+       */
+      fprintf(stderr,"Bad HPCRIX (%s)\n",hpcRix);
+      exit(0);
+    }
+
+#if DEBUG_HPC    
+    fprintf(stderr,"found HPCRIX pipes: %d:%d\n",rixFD,rixCmdFD);
+#endif
+
+    rixFile = fdopen(rixFD,"w");
+    assert(rixFile != NULL);
+
+    rixCmdFile = fdopen(rixCmdFD,"r");
+    assert(rixCmdFile != NULL);
+
+    // If we fork a process, then we do not want ticks inside
+    // the sub-process to talk to the debugger. So we remember
+    // our pid at startup time, so we can check if we are still
+    // the original process.
+
+    debuggee_pid = getpid();
+
+    comma = 0;
+    
+    fprintf(rixFile,"Starting %s\n",prog_name);
+    fprintf(rixFile,"[");
+    tmpModule = modules;
+    for(;tmpModule != 0;tmpModule = tmpModule->next) {
+      if (comma) {
+       fprintf(rixFile,",");
+      } else {
+       comma = 1;
+      }
+      fprintf(rixFile,"(\"%s\",%u)",
+             tmpModule->modName,
+             tmpModule->tickCount);
+#if DEBUG_HPC
+      fprintf(stderr,"(tracer)%s: %u (offset=%u)\n",
+             tmpModule->modName,
+             tmpModule->tickCount,
+             tmpModule->tickOffset);
+#endif
+    }
+    fprintf(rixFile,"]\n");
+    fflush(rixFile);
+
+    // Allocate the tixBox breakpoint array
+    // These are set to 1 if you want to 
+    // stop at a specific breakpoint
+    tixBoxBP = (int *)calloc(1,sizeof(int));
+  }
+
 }
 
 
@@ -357,7 +539,7 @@ exitHpc(void) {
   int i, comma;
 
 #if DEBUG_HPC
-  printf("exitHpc\n");
+  fprintf(stderr,"exitHpc\n");
 #endif
 
   if (hpc_inited == 0) {
@@ -415,9 +597,13 @@ exitHpc(void) {
   fprintf(f,"]\n");
   fclose(f);
 
-  if (hpc_ticks_inited && rixFile != 0) {
+  if (rixFile != NULL) {
+    hs_hpc_tick(RixFinishedOp,(StgThreadID)0);
     fclose(rixFile);
   }
+  if (rixCmdFile != NULL) {
+    fclose(rixCmdFile);
+  }
   
 }