summaryrefslogtreecommitdiff
path: root/rts/Hpc.c
blob: b183253147e5c88bdb63b3fe6b719d67d5055ff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
/*
 * (c)2006 Galois Connections, Inc.
 */ 

#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>

#include "Rts.h"
#include "Hpc.h"
#include "Trace.h"

#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif


/* This is the runtime support for the Haskell Program Coverage (hpc) toolkit,
 * inside GHC.
 *
 */

#define WOP_SIZE 1024	

static int hpc_inited = 0;		// Have you started this component?
static FILE *tixFile;			// file being read/written
static int tix_ch;			// current char

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
  int tickCount;		// number of ticks
  int tickOffset;		// offset into a single large .tix Array
  int hashNo;			// Hash number for this module's mix info
  StgWord64 *tixArr;		// tix Array from the program execution (local for this module)
  struct _Info *next;
} Info;

// This is a cruel hack, we should completely redesign the format specifier handling in the RTS.
#if SIZEOF_LONG == 8
#define PRIuWORD64 "lu"
#else
#define PRIuWORD64 "llu"
#endif

Info *modules = 0;
Info *nextModule = 0;
int totalTixes = 0;		// total number of tix boxes.

static char *tixFilename;

static void failure(char *msg) {
  debugTrace(DEBUG_hpc,"hpc failure: %s\n",msg);
  fprintf(stderr,"Hpc failure: %s\n",msg);
  if (tixFilename) {
    fprintf(stderr,"(perhaps remove %s file?)\n",tixFilename);
  } else {
    fprintf(stderr,"(perhaps remove .tix file?)\n");
  }
  exit(-1);
}

static int init_open(char *filename) 
{
  tixFile = fopen(filename,"r");
 if (tixFile == 0) {
    return 0;
  }
  tix_ch = getc(tixFile);
  return 1;
}

static void expect(char c) {
  if (tix_ch != c) {
    fprintf(stderr,"('%c' '%c')\n",tix_ch,c);
    failure("parse error when reading .tix file");
  }
  tix_ch = getc(tixFile);
}

static void ws(void) {
  while (tix_ch == ' ') {
    tix_ch = getc(tixFile);
  }
}

static char *expectString(void) {
  char tmp[256], *res;
  int tmp_ix = 0;
  expect('"');
  while (tix_ch != '"') {
    tmp[tmp_ix++] = tix_ch;
    tix_ch = getc(tixFile);
  }
  tmp[tmp_ix++] = 0;
  expect('"');
  res = malloc(tmp_ix);
  strcpy(res,tmp);
  return res;
}

static StgWord64 expectWord64(void) {
  StgWord64 tmp = 0;
  while (isdigit(tix_ch)) {
    tmp = tmp * 10 + (tix_ch -'0');
    tix_ch = getc(tixFile);
  }
  return tmp;
}

static void hpc_init(void) {
  int i;
  Info *tmpModule;  

  if (hpc_inited != 0) {
    return;
  }
  hpc_inited = 1;

  tixFilename = (char *) malloc(strlen(prog_name) + 6);
  sprintf(tixFilename, "%s.tix", prog_name);

  if (init_open(tixFilename)) { 
    totalTixes = 0;

    ws();
    expect('T');
    expect('i');
    expect('x');
    ws();
    expect('[');
    ws();
    while(tix_ch != ']') {
      tmpModule = (Info *)calloc(1,sizeof(Info));
      expect('T');
      expect('i');
      expect('x');
      expect('M');
      expect('o');
      expect('d');
      expect('u');
      expect('l');
      expect('e');
      ws();
      tmpModule -> modName = expectString();
      ws();
      tmpModule -> hashNo = (unsigned int)expectWord64();
      ws();
      tmpModule -> tickCount = (int)expectWord64();
      tmpModule -> tixArr = (StgWord64 *)calloc(tmpModule->tickCount,sizeof(StgWord64));
      tmpModule -> tickOffset = totalTixes;
      totalTixes += tmpModule -> tickCount;
      ws();
      expect('[');
      ws();
      for(i = 0;i < tmpModule->tickCount;i++) {
	tmpModule->tixArr[i] = expectWord64();
	ws();
	if (tix_ch == ',') {
	  expect(',');
	  ws();
	}
      }
      expect(']');
      ws();

      if (!modules) {
	modules = tmpModule;
      } else {
	nextModule->next=tmpModule;
      }
      nextModule=tmpModule;
      
      if (tix_ch == ',') {
	expect(',');
	ws();
      }
    }
    expect(']');
    fclose(tixFile);
  }
}

/* Called on a per-module basis, at startup time, declaring where the tix boxes are stored in memory.
 * This memory can be uninitized, because we will initialize it with either the contents
 * of the tix file, or all zeros.
 */

int
hs_hpc_module(char *modName,
	      int modCount,
	      int modHashNo,
	      StgWord64 *tixArr) {
  Info *tmpModule, *lastModule;
  int i;
  int offset = 0;
  
  debugTrace(DEBUG_hpc,"hs_hpc_module(%s,%d)",modName,modCount);

  hpc_init();

  tmpModule = modules;
  lastModule = 0;
  
  for(;tmpModule != 0;tmpModule = tmpModule->next) {
    if (!strcmp(tmpModule->modName,modName)) {
      if (tmpModule->tickCount != modCount) {
	failure("inconsistent number of tick boxes");
      }
      assert(tmpModule->tixArr != 0);	
      if (tmpModule->hashNo != modHashNo) {
	fprintf(stderr,"in module '%s'\n",tmpModule->modName);
	failure("module mismatch with .tix/.mix file hash number");
	fprintf(stderr,"(perhaps remove %s ?)\n",tixFilename);
	exit(-1);

      }
      for(i=0;i < modCount;i++) {
	tixArr[i] = tmpModule->tixArr[i];
      }
      tmpModule->tixArr = tixArr;
      return tmpModule->tickOffset;
    }
    lastModule = tmpModule;
  }
  // Did not find entry so add one on.
  tmpModule = (Info *)calloc(1,sizeof(Info));
  tmpModule->modName = modName;
  tmpModule->tickCount = modCount;
  tmpModule->hashNo = modHashNo;
  if (lastModule) {
    tmpModule->tickOffset = lastModule->tickOffset + lastModule->tickCount;
  } else {
    tmpModule->tickOffset = 0;
  }
  tmpModule->tixArr = tixArr;
  for(i=0;i < modCount;i++) {
    tixArr[i] = 0;
  }
  tmpModule->next = 0;

  if (!modules) {
    modules = tmpModule;
  } else {
    lastModule->next=tmpModule;
  }

  debugTrace(DEBUG_hpc,"end: hs_hpc_module");

  return offset;
}

static void breakPointCommand(HpcRixOp rixOp, StgThreadID rixTid);

// 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, dynamically, sending to our 
 * external record of program execution.
 */

void
hs_hpc_tick(int rixOp, StgTSO *current_tso) {

  debugTrace(DEBUG_hpc,"hs_hpc_tick(%x)",rixOp);

  if (rixFile == NULL) {
    return;
  }
  assert(rixCmdFile != NULL);
  StgThreadID tid = (current_tso == 0) ? 0 : current_tso->id;

  // 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++;

  debugTrace(DEBUG_hpc, "end: hs_hpc_tick");
}

static void 
printEvent(FILE *out,StgWord64 rixCounter,StgThreadID rixTid,HpcRixOp rixOp) {
  char prefixMsg[128];
  char suffixMsg[128];

  sprintf(prefixMsg,
	  "Event %" PRIuWORD64 " %u ",
	  rixCounter,
	  (unsigned int)rixTid);

  switch(rixOp) {
  case RixThreadFinishedOp:
    sprintf(suffixMsg,"ThreadFinished");
    break;
  case RixRaiseOp:
    sprintf(suffixMsg,"Raise");
    break;
  case RixFinishedOp:
    sprintf(suffixMsg,"Finished");
    break;
  default:
    sprintf(suffixMsg,"%u",rixOp);
  }

  fprintf(out,"%s%s\n",prefixMsg,suffixMsg);
  debugTrace(DEBUG_hpc,"sending %s%s",prefixMsg,suffixMsg);
}

static void
breakPointCommand(HpcRixOp rixOp, StgThreadID rixTid) {
  StgWord64 tmp64 = 0;
  unsigned int tmp = 0;

  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;
  }

  debugTrace(DEBUG_hpc,"breakPointCommand %d %x",rixOp,(unsigned int)rixTid);

  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);
      }
      debugTrace(DEBUG_hpc,"setting countBP = %" PRIuWORD64,tmp64);

      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);
      }

      debugTrace(DEBUG_hpc,"seting bp for tix %d",tmp);

      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);
      }

      debugTrace(DEBUG_hpc,"unseting bp for tix %d",tmp);

      tixBoxBP[tmp] = 0;
      break;
    case 'h': // h -- history of the last few (WOP_SIZE) steps 
      if (rixCounter > WOP_SIZE) {
	tmp64 = rixCounter - WOP_SIZE;
      } else {
	tmp64 = 0;
      }
      for(;tmp64 < rixCounter;tmp64++) {
	printEvent(rixFile,
		   tmp64,
		   rixTidBack[tmp64 % WOP_SIZE],
		   rixOpBack[tmp64 % WOP_SIZE]);
      }
      fflush(rixFile);
      c = getc(rixCmdFile);
      break;
    default:

      debugTrace(DEBUG_hpc,"strange command from HPCRIX (%d)",c);

      c = getc(rixCmdFile);
    }
    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
  }

  debugTrace(DEBUG_hpc,"leaving breakPointCommand");

}

/* This is called after all the modules have registered their local tixboxes,
 * and does a sanity check: are we good to go?
 */

void
startupHpc(void) {
  char *hpcRix;

  debugTrace(DEBUG_hpc,"startupHpc");
 
 if (hpc_inited == 0) {
    return;
  }
  // 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;
    int tixCount = 0;

    assert(hpc_inited);

    if (sscanf(hpcRix,"%d:%d",&rixFD,&rixCmdFD) != 2) {
      /* Bad format for HPCRIX.
       */
      debugTrace(DEBUG_hpc,"Bad HPCRIX (%s)",hpcRix);
      exit(0);
    }

    debugTrace(DEBUG_hpc,"found HPCRIX pipes: %d:%d",rixFD,rixCmdFD);

    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);

      tixCount += tmpModule->tickCount;

      debugTrace(DEBUG_hpc,"(tracer)%s: %u (offset=%u) (hash=%u)\n",
		 tmpModule->modName,
		 tmpModule->tickCount,
		 tmpModule->hashNo,
		 tmpModule->tickOffset);

    }
    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(tixCount,sizeof(int));
  }

}


/* Called at the end of execution, to write out the Hpc *.tix file  
 * for this exection. Safe to call, even if coverage is not used.
 */
void
exitHpc(void) {
  Info *tmpModule;  
  int i, inner_comma, outer_comma;

  debugTrace(DEBUG_hpc,"exitHpc");

  if (hpc_inited == 0) {
    return;
  }

  FILE *f = fopen(tixFilename,"w");
  
  outer_comma = 0;

  fprintf(f,"Tix [");
  tmpModule = modules;
  for(;tmpModule != 0;tmpModule = tmpModule->next) {
    if (outer_comma) {
      fprintf(f,",");
    } else {
      outer_comma = 1;
    }
    fprintf(f," TixModule \"%s\" %u %u [",
	   tmpModule->modName,
	    tmpModule->hashNo,
	    tmpModule->tickCount);
    debugTrace(DEBUG_hpc,"%s: %u (offset=%u) (hash=%u)\n",
	       tmpModule->modName,
	       tmpModule->tickCount,
	       tmpModule->hashNo,
	       tmpModule->tickOffset);

    inner_comma = 0;
    for(i = 0;i < tmpModule->tickCount;i++) {
      if (inner_comma) {
	fprintf(f,",");
      } else {
	inner_comma = 1;
      }

      if (tmpModule->tixArr) {
	fprintf(f,"%" PRIuWORD64,tmpModule->tixArr[i]);
      } else {
	fprintf(f,"0");
      }
    }
    fprintf(f,"]");
  }
  fprintf(f,"]\n");
  
  /*
  tmpModule = modules;
  for(;tmpModule != 0;tmpModule = tmpModule->next) {
      if (!tmpModule->tixArr) {
	debugTrace(DEBUG_hpc,
		   "warning: module %s did not register any hpc tick data\n",
		   tmpModule->modName);
      }

    for(i = 0;i < tmpModule->tickCount;i++) {
      if (comma) {
	fprintf(f,",");
      } else {
	comma = 1;
      }

      if (tmpModule->tixArr) {
	fprintf(f,"%" PRIuWORD64,tmpModule->tixArr[i]);
      } else {
	fprintf(f,"0");
      }

    }
  }
      
  fprintf(f,"]\n");
  */
  fclose(f);

  if (rixFile != NULL) {
    hs_hpc_tick(RixFinishedOp,(StgThreadID)0);
    fclose(rixFile);
  }
  if (rixCmdFile != NULL) {
    fclose(rixCmdFile);
  }
  
}