[project @ 2001-08-16 05:30:27 by chak]
[ghc-hetmet.git] / ghc / rts / FrontPanel.c
1 /* -----------------------------------------------------------------------------
2  * $Id: FrontPanel.c,v 1.6 2001/08/16 05:30:27 chak 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             /* color each block */
401             for (; a <= LAST_BLOCK(m); (char *)a += BLOCK_SIZE) {
402                 bd = Bdescr((P_)a);
403                 ASSERT(bd->start == a);
404                 if (bd->free == (void *)-1) {
405                     colorBlock( a, &free_color, 
406                                 block_width, block_height, blocks_per_line );
407                 } else {
408                     colorBlock( a, &gen_colors[bd->gen_no],
409                                 block_width, block_height, blocks_per_line );
410                 }
411             }
412         }
413
414         
415         { 
416             nat height = map_drawing_area->allocation.height,
417                 block_height, mblock_height;
418
419             block_height = (height / mblocks_allocated) / 
420                 ((MBLOCK_SIZE/BLOCK_SIZE) / blocks_per_line);
421             if (block_height < 1) block_height = 1;
422             mblock_height = block_height * 
423                 ((MBLOCK_SIZE/BLOCK_SIZE) / blocks_per_line);
424
425             gtk_ruler_set_range( GTK_RULER(map_ruler), 0, 
426                                  (double)(height * mblocks_allocated) / 
427                                  (double)((mblock_height * mblocks_allocated)),
428                                  0,
429                                  (double)(height * mblocks_allocated) / 
430                                  (double)((mblock_height * mblocks_allocated))
431                 );
432         }
433                                   
434         gtk_widget_draw( map_drawing_area, NULL );
435     }
436
437     if (gen_pixmap != NULL) {
438
439         GdkRectangle rect;
440         nat g, s, columns, column, max_blocks, height_blocks,
441             width, height;
442         
443         gdk_draw_rectangle (gen_pixmap,
444                             gen_drawing_area->style->white_gc,
445                             TRUE,
446                             0, 0,
447                             gen_drawing_area->allocation.width,
448                             gen_drawing_area->allocation.height);
449
450         height = gen_drawing_area->allocation.height;
451         width  = gen_drawing_area->allocation.width;
452
453         columns = 0; max_blocks = 0;
454         for(g = 0; g < RtsFlags.GcFlags.generations; g++) {
455             columns += generations[g].n_steps;
456             for(s = 0; s < generations[g].n_steps; s++) {
457                 if (generations[g].steps[s].n_blocks > max_blocks) {
458                     max_blocks = generations[g].steps[s].n_blocks;
459                 }
460             }
461         }
462
463         /* find a reasonable height value larger than max_blocks */
464         { 
465             nat n = 0;
466             while (max_blocks != 0) {
467                 max_blocks >>= 1; n++;
468             }
469             height_blocks = 1 << n;
470         }
471
472         column = 0;
473         for(g = 0; g < RtsFlags.GcFlags.generations; g++) {
474             for(s = 0; s < generations[g].n_steps; s++, column++) {
475                 gdk_gc_set_foreground(my_gc, &gen_colors[g]);
476
477                 rect.x = column * (width / columns);
478
479                 if (generations[g].steps[s].n_blocks == 0)
480                     rect.y = height;
481                 else
482                     rect.y = height - 
483                         (height * generations[g].steps[s].n_blocks
484                          / height_blocks);
485
486                 rect.width = (width / columns);
487                 rect.height = height - rect.y;
488
489                 gdk_draw_rectangle( gen_pixmap, my_gc, TRUE/*filled*/, 
490                                     rect.x, rect.y, rect.width,
491                                     rect.height );
492             }
493         }
494
495         gtk_ruler_set_range( GTK_RULER(gen_ruler), 
496                              height_blocks * BLOCK_SIZE / (1024 * 1024),
497                              0, 0,
498                              height_blocks * BLOCK_SIZE / (1024 * 1024)
499             );
500
501         gtk_widget_draw( gen_drawing_area, NULL );
502     }
503
504     if (res_pixmap != NULL) {
505         updateResidencyGraph();
506     }
507
508     while (gtk_events_pending()) {
509         gtk_main_iteration_do(FALSE/*don't block*/);
510     }
511 }
512
513 static void
514 colorBlock( void *addr, GdkColor *color, 
515             nat block_width, nat block_height, nat blocks_per_line )
516 {
517     GdkRectangle rect;
518     nat block_no;
519
520     gdk_gc_set_foreground(my_gc, color);
521
522     block_no = ((char *)addr - (char *)mem_start) / BLOCK_SIZE;
523
524     rect.x = (block_no % blocks_per_line) * block_width;
525     rect.y = block_no / blocks_per_line * block_height;
526     rect.width = block_width;
527     rect.height = block_height;
528     gdk_draw_rectangle( map_pixmap, my_gc, TRUE/*filled*/, 
529                         rect.x, rect.y, rect.width, rect.height );
530 }
531
532 static void
533 updateThreadsPanel( void )
534 {
535     nat running = 0,
536         b_read = 0,
537         b_write = 0,
538         b_mvar = 0,
539         b_throwto = 0,
540         b_bh = 0,
541         sleeping = 0,
542         total = 0;
543
544     StgTSO *t;
545
546     for (t = all_threads; t != END_TSO_QUEUE; t = t->global_link) {
547         switch (t->what_next) {
548         case ThreadKilled:          break;
549         case ThreadComplete:        break;
550         default:
551             switch (t->why_blocked) {
552             case BlockedOnRead:       b_read++;    break;
553             case BlockedOnWrite:      b_write++;   break;
554             case BlockedOnDelay:      sleeping++;  break;
555             case BlockedOnMVar:       b_mvar++;    break;
556             case BlockedOnException:  b_throwto++; break;
557             case BlockedOnBlackHole:  b_bh++;      break;
558             case NotBlocked:          running++;   break;
559             }
560         }
561     }
562     total = running + b_read + b_write + b_mvar + b_throwto + b_bh + sleeping;
563     numLabel(running_label,   running);
564     numLabel(b_read_label,    b_read);
565     numLabel(b_write_label,   b_write);
566     numLabel(b_mvar_label,    b_mvar);
567     numLabel(b_bh_label,      b_bh);
568     numLabel(b_throwto_label, b_throwto);
569     numLabel(sleeping_label,  sleeping);
570     numLabel(total_label,     total);
571 }
572
573 typedef enum { Thunk, Fun, Constr, BlackHole,
574                Array, Thread, Other, N_Cats } ClosureCategory;
575
576 #define N_SLICES 100
577
578 static nat *res_prof[N_SLICES];
579 static double res_time[N_SLICES];
580 static nat next_slice = 0;
581
582 static void
583 residencyCensus( void )
584 {
585     nat slice = next_slice++, *prof;
586     bdescr *bd;
587     nat g, s, size, type;
588     StgPtr p;
589     StgInfoTable *info;
590
591     if (slice >= N_SLICES) {
592         barf("too many slices");
593     }
594     res_prof[slice] = stgMallocBytes(N_Cats * sizeof(nat), "residencyCensus");
595     prof = res_prof[slice];
596     memset(prof, 0, N_Cats * sizeof(nat));
597
598     res_time[slice] = mut_user_time();
599     
600     for(g = 0; g < RtsFlags.GcFlags.generations; g++) {
601         for(s = 0; s < generations[g].n_steps; s++) {
602
603             /* skip over g0s0 if multi-generational */
604             if (RtsFlags.GcFlags.generations > 1 &&
605                 g == 0 && s == 0) continue;
606
607             if (RtsFlags.GcFlags.generations == 1) {
608                 bd = generations[g].steps[s].to_blocks;
609             } else {
610                 bd = generations[g].steps[s].blocks;
611             }
612
613             for (; bd != NULL; bd = bd->link) {
614
615                 p = bd->start;
616
617                 while (p < bd->free) {
618                     info = get_itbl((StgClosure *)p);
619                     type = Other;
620                     
621                     switch (info->type) {
622
623                     case CONSTR:
624                     case BCO:
625                         if (((StgClosure *)p)->header.info == &stg_DEAD_WEAK_info) {
626                             size = sizeofW(StgWeak);
627                             type = Other;
628                             break;
629                         }
630                         /* else, fall through... */
631                     case CONSTR_1_0:
632                     case CONSTR_0_1:
633                     case CONSTR_1_1:
634                     case CONSTR_0_2:
635                     case CONSTR_2_0:
636                         size = sizeW_fromITBL(info);
637                         type = Constr;
638                         break;
639                         
640                     case FUN_1_0:
641                     case FUN_0_1:
642                         size = sizeofW(StgHeader) + 1;
643                         goto fun;
644                     case FUN_1_1:
645                     case FUN_0_2:
646                     case FUN_2_0:
647                     case FUN:
648                         size = sizeW_fromITBL(info);
649                     fun:
650                         type = Fun;
651                         break;
652
653                     case THUNK_1_0:
654                     case THUNK_0_1:
655                     case THUNK_SELECTOR:
656                         size = sizeofW(StgHeader) + 2;
657                         goto thunk;
658                     case THUNK_1_1:
659                     case THUNK_0_2:
660                     case THUNK_2_0:
661                     case THUNK:
662                         size = sizeW_fromITBL(info);
663                     thunk:
664                         type = Thunk;
665                         break;
666
667                     case CAF_BLACKHOLE:
668                     case SE_CAF_BLACKHOLE:
669                     case SE_BLACKHOLE:
670                     case BLACKHOLE:
671                     case BLACKHOLE_BQ:
672                         size = sizeW_fromITBL(info);
673                         type = BlackHole;
674                         break;
675
676                     case AP_UPD:
677                         size = pap_sizeW((StgPAP *)p);
678                         type = Thunk;
679                         break;
680
681                     case PAP:
682                         size = pap_sizeW((StgPAP *)p);
683                         type = Fun;
684                         break;
685                         
686                     case ARR_WORDS:
687                         size = arr_words_sizeW(stgCast(StgArrWords*,p));
688                         type = Array;
689                         break;
690                         
691                     case MUT_ARR_PTRS:
692                     case MUT_ARR_PTRS_FROZEN:
693                         size = mut_arr_ptrs_sizeW((StgMutArrPtrs *)p);
694                         type = Array;
695                         break;
696                         
697                     case TSO:
698                         size = tso_sizeW((StgTSO *)p);
699                         type = Thread;
700                         break;
701                         
702                     case WEAK:
703                     case FOREIGN:
704                     case STABLE_NAME:
705                     case MVAR:
706                     case MUT_VAR:
707                     case IND_PERM:
708                     case IND_OLDGEN_PERM:
709                         size = sizeW_fromITBL(info);
710                         type = Other;
711                         break;
712
713                     default:
714                         barf("updateResidencyGraph: strange closure "
715                              "%d", info->type );
716                     }
717
718                     prof[type] += size;
719                     p += size;
720                 }
721             }
722         }
723     }
724
725 }
726             
727 static void
728 updateResidencyGraph( void )
729 {
730     nat total, prev_total, i, max_res;
731     double time;
732     double time_scale = 1;
733     nat last_slice = next_slice-1;
734     double res_scale  = 1; /* in megabytes, doubles */
735     nat *prof;
736     nat width, height;
737     GdkPoint points[4];
738
739     gdk_draw_rectangle (res_pixmap,
740                         res_drawing_area->style->bg_gc[GTK_STATE_NORMAL],
741                         TRUE,
742                         0, 0,
743                         res_drawing_area->allocation.width,
744                         res_drawing_area->allocation.height);
745     
746     if (next_slice == 0) return;
747
748     time = res_time[last_slice];
749     while (time > time_scale) {
750         time_scale *= 2;
751     }
752
753     max_res = 0; 
754     for (i = 0; i < next_slice; i++) {
755         prof = res_prof[i];
756         total = prof[Thunk] + prof[Fun] + prof[Constr] +
757             prof[BlackHole] + prof[Array] + prof[Other];
758         if (total > max_res) {
759             max_res = total;
760         }
761     }
762     while (max_res > res_scale) {
763         res_scale *= 2;
764     }
765
766     height = res_drawing_area->allocation.height;
767     width  = res_drawing_area->allocation.width;
768
769     points[0].x = 0;
770     points[0].y = height;
771     points[1].y = height;
772     points[3].x = 0;
773     points[3].y = height;
774
775     gdk_gc_set_foreground(my_gc, &free_color);
776
777     prev_total = 0;
778     for (i = 0; i < next_slice; i++) {
779         prof = res_prof[i];
780         total = prof[Thunk] + prof[Fun] + prof[Constr] +
781             prof[BlackHole] + prof[Array] + prof[Other];
782         points[1].x = width * res_time[i] / time_scale;
783         points[2].x = points[1].x;
784         points[2].y = height - ((height * total) / res_scale);
785         gdk_draw_polygon(res_pixmap, my_gc, TRUE/*filled*/, points, 4);
786         points[3] = points[2];
787         points[0] = points[1];
788     }
789
790     gtk_ruler_set_range( GTK_RULER(res_vruler), 
791                          res_scale / ((1024*1024)/sizeof(W_)),
792                          0, 0,
793                          res_scale / ((1024*1024)/sizeof(W_)) );
794
795     gtk_ruler_set_range( GTK_RULER(res_hruler), 
796                          0, time_scale, 0, time_scale );
797
798
799     gtk_widget_draw( res_drawing_area, NULL );
800 }
801
802 #endif /* RTS_GTK_FRONTPANEL */