[project @ 2004-02-12 02:04:59 by mthomas]
[ghc-hetmet.git] / ghc / rts / FrontPanel.c
1 /* -----------------------------------------------------------------------------
2  * $Id: FrontPanel.c,v 1.8 2003/06/24 08:49:55 stolz Exp $
3  *
4  * (c) The GHC Team 2000
5  *
6  * RTS GTK Front Panel
7  *
8  * ---------------------------------------------------------------------------*/
9
10 #ifdef RTS_GTK_FRONTPANEL
11
12 /* Alas, not Posix. */
13 /* #include "PosixSource.h" */
14
15 #include "Rts.h"
16 #include "RtsUtils.h"
17 #include "MBlock.h"
18 #include "FrontPanel.h"
19 #include "Storage.h"
20 #include "StoragePriv.h"
21 #include "Stats.h"
22 #include "RtsFlags.h"
23 #include "Schedule.h"
24
25 #include <unistd.h>
26 #include <gdk/gdktypes.h>
27 #include <gtk/gtk.h>
28
29 #include "VisSupport.h"
30 #include "VisWindow.h"
31
32 static GtkWidget *window, *map_drawing_area, *gen_drawing_area;
33 static GtkWidget *res_drawing_area;
34 static GtkWidget *continue_but, *stop_but, *quit_but;
35 static GtkWidget *statusbar;
36 static GtkWidget *live_label, *allocated_label;
37 static GtkWidget *footprint_label, *alloc_rate_label;
38 static GtkWidget *map_ruler, *gen_ruler;
39 static GtkWidget *res_vruler, *res_hruler;
40 static GtkWidget *running_label, *b_read_label, *b_write_label, *total_label;
41 static GtkWidget *b_mvar_label, *b_bh_label, *b_throwto_label, *sleeping_label;
42
43 static guint status_context_id;
44
45 gboolean continue_now = FALSE, stop_now = FALSE, quit = FALSE;
46 UpdateMode update_mode = Continuous;
47
48 static GdkPixmap *map_pixmap = NULL;
49 static GdkPixmap *gen_pixmap = NULL;
50 static GdkPixmap *res_pixmap = NULL;
51
52 #define N_GENS 10
53
54 static GdkColor 
55     bdescr_color = { 0, 0xffff, 0, 0 }, /* red */
56     free_color   = { 0, 0, 0, 0xffff }, /* blue */
57     gen_colors[N_GENS] = {
58         { 0, 0, 0xffff, 0 },
59         { 0, 0, 0xf000, 0 },
60         { 0, 0, 0xe000, 0 },
61         { 0, 0, 0xd000, 0 },
62         { 0, 0, 0xc000, 0 },
63         { 0, 0, 0xb000, 0 },
64         { 0, 0, 0xa000, 0 },
65         { 0, 0, 0x9000, 0 },
66         { 0, 0, 0x8000, 0 },
67         { 0, 0, 0x7000, 0 }
68     };
69
70 GdkGC *my_gc = NULL;
71
72 static void *mem_start = (void *) 0x50000000;
73
74 static void colorBlock( void *addr, GdkColor *color, 
75                         nat block_width, nat block_height, 
76                         nat blocks_per_line );
77
78 static void residencyCensus( void );
79 static void updateResidencyGraph( void );
80 static void updateThreadsPanel( void );
81
82 /* Some code pinched from examples/scribble-simple in the GTK+
83  * distribution.
84  */
85
86 /* Create a new backing pixmap of the appropriate size */
87 static gint 
88 configure_event( GtkWidget *widget, GdkEventConfigure *event STG_UNUSED,
89                  GdkPixmap **pixmap )
90 {
91   if (*pixmap)
92     gdk_pixmap_unref(*pixmap);
93
94   *pixmap = gdk_pixmap_new(widget->window,
95                            widget->allocation.width,
96                            widget->allocation.height,
97                            -1);
98
99   gdk_draw_rectangle (*pixmap,
100                       widget->style->white_gc,
101                       TRUE,
102                       0, 0,
103                       widget->allocation.width,
104                       widget->allocation.height);
105
106   fprintf(stderr, "configure!\n");
107   updateFrontPanel();
108   return TRUE;
109 }
110
111 /* Redraw the screen from the backing pixmap */
112 static gint 
113 expose_event( GtkWidget *widget, GdkEventExpose *event, GdkPixmap **pixmap )
114 {
115   gdk_draw_pixmap(widget->window,
116                   widget->style->fg_gc[GTK_WIDGET_STATE (widget)],
117                   *pixmap,
118                   event->area.x, event->area.y,
119                   event->area.x, event->area.y,
120                   event->area.width, event->area.height);
121
122   return FALSE;
123 }
124
125 void
126 initFrontPanel( void )
127 {
128     GdkColormap *colormap;
129     GtkWidget *gen_hbox;
130
131     gtk_init( &prog_argc, &prog_argv );
132
133     window = create_GHC_Front_Panel();
134     map_drawing_area  = lookup_widget(window, "memmap");
135     gen_drawing_area  = lookup_widget(window, "generations");
136     res_drawing_area  = lookup_widget(window, "res_drawingarea");
137     stop_but          = lookup_widget(window, "stop_but");
138     continue_but      = lookup_widget(window, "continue_but");
139     quit_but          = lookup_widget(window, "quit_but");
140     statusbar         = lookup_widget(window, "statusbar");
141     live_label        = lookup_widget(window, "live_label");
142     footprint_label   = lookup_widget(window, "footprint_label");
143     allocated_label   = lookup_widget(window, "allocated_label");
144     alloc_rate_label  = lookup_widget(window, "alloc_rate_label");
145     gen_hbox          = lookup_widget(window, "gen_hbox");
146     gen_ruler         = lookup_widget(window, "gen_ruler");
147     map_ruler         = lookup_widget(window, "map_ruler");
148     res_vruler        = lookup_widget(window, "res_vruler");
149     res_hruler        = lookup_widget(window, "res_hruler");
150     running_label     = lookup_widget(window, "running_label");
151     b_read_label      = lookup_widget(window, "blockread_label");
152     b_write_label     = lookup_widget(window, "blockwrite_label");
153     b_mvar_label      = lookup_widget(window, "blockmvar_label");
154     b_bh_label        = lookup_widget(window, "blockbh_label");
155     b_throwto_label   = lookup_widget(window, "blockthrowto_label");
156     sleeping_label    = lookup_widget(window, "sleeping_label");
157     total_label       = lookup_widget(window, "total_label");
158     
159     status_context_id = 
160         gtk_statusbar_get_context_id( GTK_STATUSBAR(statusbar), "context" );
161
162     /* hook up some signals for the mem map drawing area */
163     gtk_signal_connect (GTK_OBJECT(map_drawing_area), "expose_event",
164                         (GtkSignalFunc)expose_event, &map_pixmap);
165     gtk_signal_connect (GTK_OBJECT(map_drawing_area), "configure_event",
166                         (GtkSignalFunc)configure_event, &map_pixmap);
167
168     gtk_widget_set_events(map_drawing_area, GDK_EXPOSURE_MASK);
169
170     /* hook up some signals for the gen drawing area */
171     gtk_signal_connect (GTK_OBJECT(gen_drawing_area), "expose_event",
172                         (GtkSignalFunc)expose_event, &gen_pixmap);
173     gtk_signal_connect (GTK_OBJECT(gen_drawing_area), "configure_event",
174                         (GtkSignalFunc)configure_event, &gen_pixmap);
175
176     gtk_widget_set_events(gen_drawing_area, GDK_EXPOSURE_MASK);
177     
178     /* hook up some signals for the res drawing area */
179     gtk_signal_connect (GTK_OBJECT(res_drawing_area), "expose_event",
180                         (GtkSignalFunc)expose_event, &res_pixmap);
181     gtk_signal_connect (GTK_OBJECT(res_drawing_area), "configure_event",
182                         (GtkSignalFunc)configure_event, &res_pixmap);
183
184     gtk_widget_set_events(res_drawing_area, GDK_EXPOSURE_MASK);
185     
186     /* allocate our colors */
187     colormap = gdk_colormap_get_system();
188     gdk_colormap_alloc_color(colormap, &bdescr_color, TRUE, TRUE);
189     gdk_colormap_alloc_color(colormap, &free_color, TRUE, TRUE);
190
191     {
192         gboolean success[N_GENS];
193         gdk_colormap_alloc_colors(colormap, gen_colors, N_GENS, TRUE,
194                                   TRUE, success);
195         if (!success) { barf("can't allocate colors"); }
196     }
197
198     /* set the labels on the generation histogram */
199     {
200         char buf[64];
201         nat g, s;
202         GtkWidget *label;
203
204         for(g = 0; g < RtsFlags.GcFlags.generations; g++) {
205             for(s = 0; s < generations[g].n_steps; s++) {
206                 g_snprintf( buf, 64, "%d.%d", g, s );
207                 label = gtk_label_new( buf );
208                 gtk_box_pack_start( GTK_BOX(gen_hbox), label,
209                                     TRUE, TRUE, 5 );
210                 gtk_widget_show(label);
211             }
212         }
213     }
214
215     gtk_widget_show(window);
216
217     /* wait for the user to press "Continue" before getting going... */
218     gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id, 
219                         "Program start");
220     gtk_widget_set_sensitive( stop_but, FALSE );
221     continue_now = FALSE;
222     while (continue_now == FALSE) {
223         gtk_main_iteration();
224     }
225     gtk_statusbar_pop( GTK_STATUSBAR(statusbar), status_context_id );
226     gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id, 
227                         "Running");
228
229     gtk_widget_set_sensitive( continue_but, FALSE );
230     gtk_widget_set_sensitive( stop_but, TRUE );
231     gtk_widget_set_sensitive( quit_but, FALSE );
232
233     while (gtk_events_pending()) {
234         gtk_main_iteration();
235     }
236 }
237
238 void
239 stopFrontPanel( void )
240 {
241     gtk_widget_set_sensitive( quit_but, TRUE );
242     gtk_widget_set_sensitive( continue_but, FALSE );
243     gtk_widget_set_sensitive( stop_but, FALSE );
244
245     updateFrontPanel();
246
247     gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id, 
248                         "Program finished");
249
250     quit = FALSE;
251     while (quit == FALSE) {
252         gtk_main_iteration();
253     }
254 }
255
256 static void
257 waitForContinue( void )
258 {
259     gtk_widget_set_sensitive( continue_but, TRUE );
260     gtk_widget_set_sensitive( stop_but, FALSE );
261     stop_now = FALSE;
262     continue_now = FALSE;
263     while (continue_now == FALSE) {
264         gtk_main_iteration();
265     }
266     gtk_widget_set_sensitive( continue_but, FALSE );
267     gtk_widget_set_sensitive( stop_but, TRUE );
268 }
269
270 void
271 updateFrontPanelBeforeGC( nat N )
272 {
273     char buf[1000];
274
275     updateFrontPanel();
276
277     if (update_mode == BeforeGC 
278         || update_mode == BeforeAfterGC
279         || stop_now == TRUE) {
280         g_snprintf( buf, 1000, "Stopped (before GC, generation %d)", N );
281         gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id, buf );
282         waitForContinue();
283         gtk_statusbar_pop( GTK_STATUSBAR(statusbar), status_context_id );
284     }
285
286     g_snprintf( buf, 1000, "Garbage collecting (generation %d)", N );
287     gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id, buf);
288
289     while (gtk_events_pending()) {
290         gtk_main_iteration();
291     }
292 }
293
294 static void
295 numLabel( GtkWidget *lbl, nat n )
296 {
297     char buf[64];
298     g_snprintf(buf, 64, "%d", n);
299     gtk_label_set_text( GTK_LABEL(lbl), buf );
300 }
301
302 void
303 updateFrontPanelAfterGC( nat N, lnat live )
304 {
305     char buf[1000];
306
307     gtk_statusbar_pop( GTK_STATUSBAR(statusbar), status_context_id );
308
309     /* is a major GC? */
310     if (N == RtsFlags.GcFlags.generations-1) {
311         residencyCensus();
312     }
313
314     updateFrontPanel();
315
316     if (update_mode == AfterGC 
317         || update_mode == BeforeAfterGC
318         || stop_now == TRUE) {
319         snprintf( buf, 1000, "Stopped (after GC, generation %d)", N );
320         gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id, buf );
321         waitForContinue();
322         gtk_statusbar_pop( GTK_STATUSBAR(statusbar), status_context_id );
323     }
324
325     {
326         double words_to_megs = (1024 * 1024) / sizeof(W_);
327         double time = mut_user_time();
328
329         snprintf( buf, 1000, "%.2f", (double)live / words_to_megs );
330         gtk_label_set_text( GTK_LABEL(live_label), buf );
331
332         snprintf( buf, 1000, "%.2f", (double)total_allocated / words_to_megs );
333         gtk_label_set_text( GTK_LABEL(allocated_label), buf );
334
335         snprintf( buf, 1000, "%.2f",
336                   (double)(mblocks_allocated * MBLOCK_SIZE_W) / words_to_megs );
337         gtk_label_set_text( GTK_LABEL(footprint_label), buf );
338
339         if ( time == 0.0 )
340             snprintf( buf, 1000, "%.2f", time );
341         else
342             snprintf( buf, 1000, "%.2f",
343                       (double)(total_allocated / words_to_megs) / time );
344         gtk_label_set_text( GTK_LABEL(alloc_rate_label), buf );
345     }
346
347     while (gtk_events_pending()) {
348         gtk_main_iteration();
349     }
350 }
351
352 void
353 updateFrontPanel( void )
354 {
355     void *m, *a;
356     bdescr *bd;
357
358     updateThreadsPanel();
359
360     if (my_gc == NULL) {
361         my_gc = gdk_gc_new( window->window );
362     }
363
364     if (map_pixmap != NULL) {
365         nat height, width, blocks_per_line, 
366             block_height, block_width, mblock_height;
367
368         height = map_drawing_area->allocation.height;
369         width  = map_drawing_area->allocation.width;
370
371         mblock_height =  height / mblocks_allocated;
372         blocks_per_line = 16;
373         block_height  = mblock_height / 
374             ((MBLOCK_SIZE/BLOCK_SIZE) / blocks_per_line);
375         while (block_height == 0) {
376             blocks_per_line *= 2;
377             block_height  = mblock_height / 
378                 ((MBLOCK_SIZE/BLOCK_SIZE) / blocks_per_line);
379         }
380         block_width = width / blocks_per_line;
381
382         gdk_draw_rectangle (map_pixmap,
383                             map_drawing_area->style->bg_gc[GTK_STATE_NORMAL],
384                             TRUE,
385                             0, 0,
386                             map_drawing_area->allocation.width,
387                             map_drawing_area->allocation.height);
388         
389         for ( m = mem_start; 
390               (char *)m < (char *)mem_start + 
391                   (mblocks_allocated * MBLOCK_SIZE); 
392               (char *)m += MBLOCK_SIZE ) {
393             
394             /* color the bdescr area first */
395             for (a = m; a < FIRST_BLOCK(m); (char *)a += BLOCK_SIZE) {
396                 colorBlock( a, &bdescr_color, 
397                             block_width, block_height, blocks_per_line );
398             }
399             
400 #if 0 /* Segfaults because bd appears to be bogus but != NULL. stolz, 2003-06-24 */
401             /* color each block */
402             for (; a <= LAST_BLOCK(m); (char *)a += BLOCK_SIZE) {
403                 bd = Bdescr((P_)a);
404                 ASSERT(bd->start == a);
405                 if (bd->free == (void *)-1) {
406                     colorBlock( a, &free_color, 
407                                 block_width, block_height, blocks_per_line );
408                 } else {
409                     colorBlock( a, &gen_colors[bd->gen_no],
410                                 block_width, block_height, blocks_per_line );
411                 }
412             }
413 #endif
414         }
415
416         
417         { 
418             nat height = map_drawing_area->allocation.height,
419                 block_height, mblock_height;
420
421             block_height = (height / mblocks_allocated) / 
422                 ((MBLOCK_SIZE/BLOCK_SIZE) / blocks_per_line);
423             if (block_height < 1) block_height = 1;
424             mblock_height = block_height * 
425                 ((MBLOCK_SIZE/BLOCK_SIZE) / blocks_per_line);
426
427             gtk_ruler_set_range( GTK_RULER(map_ruler), 0, 
428                                  (double)(height * mblocks_allocated) / 
429                                  (double)((mblock_height * mblocks_allocated)),
430                                  0,
431                                  (double)(height * mblocks_allocated) / 
432                                  (double)((mblock_height * mblocks_allocated))
433                 );
434         }
435                                   
436         gtk_widget_draw( map_drawing_area, NULL );
437     }
438
439     if (gen_pixmap != NULL) {
440
441         GdkRectangle rect;
442         nat g, s, columns, column, max_blocks, height_blocks,
443             width, height;
444         
445         gdk_draw_rectangle (gen_pixmap,
446                             gen_drawing_area->style->white_gc,
447                             TRUE,
448                             0, 0,
449                             gen_drawing_area->allocation.width,
450                             gen_drawing_area->allocation.height);
451
452         height = gen_drawing_area->allocation.height;
453         width  = gen_drawing_area->allocation.width;
454
455         columns = 0; max_blocks = 0;
456         for(g = 0; g < RtsFlags.GcFlags.generations; g++) {
457             columns += generations[g].n_steps;
458             for(s = 0; s < generations[g].n_steps; s++) {
459                 if (generations[g].steps[s].n_blocks > max_blocks) {
460                     max_blocks = generations[g].steps[s].n_blocks;
461                 }
462             }
463         }
464
465         /* find a reasonable height value larger than max_blocks */
466         { 
467             nat n = 0;
468             while (max_blocks != 0) {
469                 max_blocks >>= 1; n++;
470             }
471             height_blocks = 1 << n;
472         }
473
474         column = 0;
475         for(g = 0; g < RtsFlags.GcFlags.generations; g++) {
476             for(s = 0; s < generations[g].n_steps; s++, column++) {
477                 gdk_gc_set_foreground(my_gc, &gen_colors[g]);
478
479                 rect.x = column * (width / columns);
480
481                 if (generations[g].steps[s].n_blocks == 0)
482                     rect.y = height;
483                 else
484                     rect.y = height - 
485                         (height * generations[g].steps[s].n_blocks
486                          / height_blocks);
487
488                 rect.width = (width / columns);
489                 rect.height = height - rect.y;
490
491                 gdk_draw_rectangle( gen_pixmap, my_gc, TRUE/*filled*/, 
492                                     rect.x, rect.y, rect.width,
493                                     rect.height );
494             }
495         }
496
497         gtk_ruler_set_range( GTK_RULER(gen_ruler), 
498                              height_blocks * BLOCK_SIZE / (1024 * 1024),
499                              0, 0,
500                              height_blocks * BLOCK_SIZE / (1024 * 1024)
501             );
502
503         gtk_widget_draw( gen_drawing_area, NULL );
504     }
505
506     if (res_pixmap != NULL) {
507         updateResidencyGraph();
508     }
509
510     while (gtk_events_pending()) {
511         gtk_main_iteration_do(FALSE/*don't block*/);
512     }
513 }
514
515 static void
516 colorBlock( void *addr, GdkColor *color, 
517             nat block_width, nat block_height, nat blocks_per_line )
518 {
519     GdkRectangle rect;
520     nat block_no;
521
522     gdk_gc_set_foreground(my_gc, color);
523
524     block_no = ((char *)addr - (char *)mem_start) / BLOCK_SIZE;
525
526     rect.x = (block_no % blocks_per_line) * block_width;
527     rect.y = block_no / blocks_per_line * block_height;
528     rect.width = block_width;
529     rect.height = block_height;
530     gdk_draw_rectangle( map_pixmap, my_gc, TRUE/*filled*/, 
531                         rect.x, rect.y, rect.width, rect.height );
532 }
533
534 static void
535 updateThreadsPanel( void )
536 {
537     nat running = 0,
538         b_read = 0,
539         b_write = 0,
540         b_mvar = 0,
541         b_throwto = 0,
542         b_bh = 0,
543         sleeping = 0,
544         total = 0;
545
546     StgTSO *t;
547
548     for (t = all_threads; t != END_TSO_QUEUE; t = t->global_link) {
549         switch (t->what_next) {
550         case ThreadKilled:          break;
551         case ThreadComplete:        break;
552         default:
553             switch (t->why_blocked) {
554             case BlockedOnRead:       b_read++;    break;
555             case BlockedOnWrite:      b_write++;   break;
556             case BlockedOnDelay:      sleeping++;  break;
557             case BlockedOnMVar:       b_mvar++;    break;
558             case BlockedOnException:  b_throwto++; break;
559             case BlockedOnBlackHole:  b_bh++;      break;
560             case NotBlocked:          running++;   break;
561             }
562         }
563     }
564     total = running + b_read + b_write + b_mvar + b_throwto + b_bh + sleeping;
565     numLabel(running_label,   running);
566     numLabel(b_read_label,    b_read);
567     numLabel(b_write_label,   b_write);
568     numLabel(b_mvar_label,    b_mvar);
569     numLabel(b_bh_label,      b_bh);
570     numLabel(b_throwto_label, b_throwto);
571     numLabel(sleeping_label,  sleeping);
572     numLabel(total_label,     total);
573 }
574
575 typedef enum { Thunk, Fun, Constr, BlackHole,
576                Array, Thread, Other, N_Cats } ClosureCategory;
577
578 #define N_SLICES 100
579
580 static nat *res_prof[N_SLICES];
581 static double res_time[N_SLICES];
582 static nat next_slice = 0;
583
584 static void
585 residencyCensus( void )
586 {
587     nat slice = next_slice++, *prof;
588     bdescr *bd;
589     nat g, s, size, type;
590     StgPtr p;
591     StgInfoTable *info;
592
593     if (slice >= N_SLICES) {
594         barf("too many slices");
595     }
596     res_prof[slice] = stgMallocBytes(N_Cats * sizeof(nat), "residencyCensus");
597     prof = res_prof[slice];
598     memset(prof, 0, N_Cats * sizeof(nat));
599
600     res_time[slice] = mut_user_time();
601     
602     for(g = 0; g < RtsFlags.GcFlags.generations; g++) {
603         for(s = 0; s < generations[g].n_steps; s++) {
604
605             /* skip over g0s0 if multi-generational */
606             if (RtsFlags.GcFlags.generations > 1 &&
607                 g == 0 && s == 0) continue;
608
609             if (RtsFlags.GcFlags.generations == 1) {
610                 bd = generations[g].steps[s].to_blocks;
611             } else {
612                 bd = generations[g].steps[s].blocks;
613             }
614
615             for (; bd != NULL; bd = bd->link) {
616
617                 p = bd->start;
618
619                 while (p < bd->free) {
620                     info = get_itbl((StgClosure *)p);
621                     type = Other;
622                     
623                     switch (info->type) {
624
625                     case CONSTR:
626                     case BCO:
627                         if (((StgClosure *)p)->header.info == &stg_DEAD_WEAK_info) {
628                             size = sizeofW(StgWeak);
629                             type = Other;
630                             break;
631                         }
632                         /* else, fall through... */
633                     case CONSTR_1_0:
634                     case CONSTR_0_1:
635                     case CONSTR_1_1:
636                     case CONSTR_0_2:
637                     case CONSTR_2_0:
638                         size = sizeW_fromITBL(info);
639                         type = Constr;
640                         break;
641                         
642                     case FUN_1_0:
643                     case FUN_0_1:
644                         size = sizeofW(StgHeader) + 1;
645                         goto fun;
646                     case FUN_1_1:
647                     case FUN_0_2:
648                     case FUN_2_0:
649                     case FUN:
650                         size = sizeW_fromITBL(info);
651                     fun:
652                         type = Fun;
653                         break;
654
655                     case THUNK_1_0:
656                     case THUNK_0_1:
657                     case THUNK_SELECTOR:
658                         size = sizeofW(StgHeader) + 2;
659                         goto thunk;
660                     case THUNK_1_1:
661                     case THUNK_0_2:
662                     case THUNK_2_0:
663                     case THUNK:
664                         size = sizeW_fromITBL(info);
665                     thunk:
666                         type = Thunk;
667                         break;
668
669                     case CAF_BLACKHOLE:
670                     case SE_CAF_BLACKHOLE:
671                     case SE_BLACKHOLE:
672                     case BLACKHOLE:
673                     case BLACKHOLE_BQ:
674                         size = sizeW_fromITBL(info);
675                         type = BlackHole;
676                         break;
677
678                     case AP:
679                         size = pap_sizeW((StgPAP *)p);
680                         type = Thunk;
681                         break;
682
683                     case PAP:
684                         size = pap_sizeW((StgPAP *)p);
685                         type = Fun;
686                         break;
687                         
688                     case ARR_WORDS:
689                         size = arr_words_sizeW(stgCast(StgArrWords*,p));
690                         type = Array;
691                         break;
692                         
693                     case MUT_ARR_PTRS:
694                     case MUT_ARR_PTRS_FROZEN:
695                         size = mut_arr_ptrs_sizeW((StgMutArrPtrs *)p);
696                         type = Array;
697                         break;
698                         
699                     case TSO:
700                         size = tso_sizeW((StgTSO *)p);
701                         type = Thread;
702                         break;
703                         
704                     case WEAK:
705                     case FOREIGN:
706                     case STABLE_NAME:
707                     case MVAR:
708                     case MUT_VAR:
709                     case MUT_CONS:
710                     case IND_PERM:
711                     case IND_OLDGEN_PERM:
712                         size = sizeW_fromITBL(info);
713                         type = Other;
714                         break;
715
716                     default:
717                         barf("updateResidencyGraph: strange closure "
718                              "%d", info->type );
719                     }
720
721                     prof[type] += size;
722                     p += size;
723                 }
724             }
725         }
726     }
727
728 }
729             
730 static void
731 updateResidencyGraph( void )
732 {
733     nat total, prev_total, i, max_res;
734     double time;
735     double time_scale = 1;
736     nat last_slice = next_slice-1;
737     double res_scale  = 1; /* in megabytes, doubles */
738     nat *prof;
739     nat width, height;
740     GdkPoint points[4];
741
742     gdk_draw_rectangle (res_pixmap,
743                         res_drawing_area->style->bg_gc[GTK_STATE_NORMAL],
744                         TRUE,
745                         0, 0,
746                         res_drawing_area->allocation.width,
747                         res_drawing_area->allocation.height);
748     
749     if (next_slice == 0) return;
750
751     time = res_time[last_slice];
752     while (time > time_scale) {
753         time_scale *= 2;
754     }
755
756     max_res = 0; 
757     for (i = 0; i < next_slice; i++) {
758         prof = res_prof[i];
759         total = prof[Thunk] + prof[Fun] + prof[Constr] +
760             prof[BlackHole] + prof[Array] + prof[Other];
761         if (total > max_res) {
762             max_res = total;
763         }
764     }
765     while (max_res > res_scale) {
766         res_scale *= 2;
767     }
768
769     height = res_drawing_area->allocation.height;
770     width  = res_drawing_area->allocation.width;
771
772     points[0].x = 0;
773     points[0].y = height;
774     points[1].y = height;
775     points[3].x = 0;
776     points[3].y = height;
777
778     gdk_gc_set_foreground(my_gc, &free_color);
779
780     prev_total = 0;
781     for (i = 0; i < next_slice; i++) {
782         prof = res_prof[i];
783         total = prof[Thunk] + prof[Fun] + prof[Constr] +
784             prof[BlackHole] + prof[Array] + prof[Other];
785         points[1].x = width * res_time[i] / time_scale;
786         points[2].x = points[1].x;
787         points[2].y = height - ((height * total) / res_scale);
788         gdk_draw_polygon(res_pixmap, my_gc, TRUE/*filled*/, points, 4);
789         points[3] = points[2];
790         points[0] = points[1];
791     }
792
793     gtk_ruler_set_range( GTK_RULER(res_vruler), 
794                          res_scale / ((1024*1024)/sizeof(W_)),
795                          0, 0,
796                          res_scale / ((1024*1024)/sizeof(W_)) );
797
798     gtk_ruler_set_range( GTK_RULER(res_hruler), 
799                          0, time_scale, 0, time_scale );
800
801
802     gtk_widget_draw( res_drawing_area, NULL );
803 }
804
805 #endif /* RTS_GTK_FRONTPANEL */