1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team 2000
7 * ---------------------------------------------------------------------------*/
9 #ifdef RTS_GTK_FRONTPANEL
11 /* Alas, not Posix. */
12 /* #include "PosixSource.h" */
17 #include "FrontPanel.h"
27 #include "VisSupport.h"
28 #include "VisWindow.h"
30 static GtkWidget *window, *map_drawing_area, *gen_drawing_area;
31 static GtkWidget *res_drawing_area;
32 static GtkWidget *continue_but, *stop_but, *quit_but;
33 static GtkWidget *statusbar;
34 static GtkWidget *live_label, *allocated_label;
35 static GtkWidget *footprint_label, *alloc_rate_label;
36 static GtkWidget *map_ruler, *gen_ruler;
37 static GtkWidget *res_vruler, *res_hruler;
38 static GtkWidget *running_label, *b_read_label, *b_write_label, *total_label;
39 static GtkWidget *b_mvar_label, *b_bh_label, *b_throwto_label, *sleeping_label;
41 static guint status_context_id;
43 gboolean continue_now = FALSE, stop_now = FALSE, quit = FALSE;
44 UpdateMode update_mode = Continuous;
46 static GdkPixmap *map_pixmap = NULL;
47 static GdkPixmap *gen_pixmap = NULL;
48 static GdkPixmap *res_pixmap = NULL;
53 bdescr_color = { 0, 0xffff, 0, 0 }, /* red */
54 free_color = { 0, 0, 0, 0xffff }, /* blue */
55 gen_colors[N_GENS] = {
70 static void *mem_start = (void *) 0x50000000;
72 static void colorBlock( void *addr, GdkColor *color,
73 nat block_width, nat block_height,
74 nat blocks_per_line );
76 static void residencyCensus( void );
77 static void updateResidencyGraph( void );
78 static void updateThreadsPanel( void );
80 /* Some code pinched from examples/scribble-simple in the GTK+
84 /* Create a new backing pixmap of the appropriate size */
86 configure_event( GtkWidget *widget, GdkEventConfigure *event STG_UNUSED,
90 gdk_pixmap_unref(*pixmap);
92 *pixmap = gdk_pixmap_new(widget->window,
93 widget->allocation.width,
94 widget->allocation.height,
97 gdk_draw_rectangle (*pixmap,
98 widget->style->white_gc,
101 widget->allocation.width,
102 widget->allocation.height);
104 debugBelch("configure!\n");
109 /* Redraw the screen from the backing pixmap */
111 expose_event( GtkWidget *widget, GdkEventExpose *event, GdkPixmap **pixmap )
113 gdk_draw_pixmap(widget->window,
114 widget->style->fg_gc[GTK_WIDGET_STATE (widget)],
116 event->area.x, event->area.y,
117 event->area.x, event->area.y,
118 event->area.width, event->area.height);
124 initFrontPanel( void )
126 GdkColormap *colormap;
129 gtk_init( &prog_argc, &prog_argv );
131 window = create_GHC_Front_Panel();
132 map_drawing_area = lookup_widget(window, "memmap");
133 gen_drawing_area = lookup_widget(window, "generations");
134 res_drawing_area = lookup_widget(window, "res_drawingarea");
135 stop_but = lookup_widget(window, "stop_but");
136 continue_but = lookup_widget(window, "continue_but");
137 quit_but = lookup_widget(window, "quit_but");
138 statusbar = lookup_widget(window, "statusbar");
139 live_label = lookup_widget(window, "live_label");
140 footprint_label = lookup_widget(window, "footprint_label");
141 allocated_label = lookup_widget(window, "allocated_label");
142 alloc_rate_label = lookup_widget(window, "alloc_rate_label");
143 gen_hbox = lookup_widget(window, "gen_hbox");
144 gen_ruler = lookup_widget(window, "gen_ruler");
145 map_ruler = lookup_widget(window, "map_ruler");
146 res_vruler = lookup_widget(window, "res_vruler");
147 res_hruler = lookup_widget(window, "res_hruler");
148 running_label = lookup_widget(window, "running_label");
149 b_read_label = lookup_widget(window, "blockread_label");
150 b_write_label = lookup_widget(window, "blockwrite_label");
151 b_mvar_label = lookup_widget(window, "blockmvar_label");
152 b_bh_label = lookup_widget(window, "blockbh_label");
153 b_throwto_label = lookup_widget(window, "blockthrowto_label");
154 sleeping_label = lookup_widget(window, "sleeping_label");
155 total_label = lookup_widget(window, "total_label");
158 gtk_statusbar_get_context_id( GTK_STATUSBAR(statusbar), "context" );
160 /* hook up some signals for the mem map drawing area */
161 gtk_signal_connect (GTK_OBJECT(map_drawing_area), "expose_event",
162 (GtkSignalFunc)expose_event, &map_pixmap);
163 gtk_signal_connect (GTK_OBJECT(map_drawing_area), "configure_event",
164 (GtkSignalFunc)configure_event, &map_pixmap);
166 gtk_widget_set_events(map_drawing_area, GDK_EXPOSURE_MASK);
168 /* hook up some signals for the gen drawing area */
169 gtk_signal_connect (GTK_OBJECT(gen_drawing_area), "expose_event",
170 (GtkSignalFunc)expose_event, &gen_pixmap);
171 gtk_signal_connect (GTK_OBJECT(gen_drawing_area), "configure_event",
172 (GtkSignalFunc)configure_event, &gen_pixmap);
174 gtk_widget_set_events(gen_drawing_area, GDK_EXPOSURE_MASK);
176 /* hook up some signals for the res drawing area */
177 gtk_signal_connect (GTK_OBJECT(res_drawing_area), "expose_event",
178 (GtkSignalFunc)expose_event, &res_pixmap);
179 gtk_signal_connect (GTK_OBJECT(res_drawing_area), "configure_event",
180 (GtkSignalFunc)configure_event, &res_pixmap);
182 gtk_widget_set_events(res_drawing_area, GDK_EXPOSURE_MASK);
184 /* allocate our colors */
185 colormap = gdk_colormap_get_system();
186 gdk_colormap_alloc_color(colormap, &bdescr_color, TRUE, TRUE);
187 gdk_colormap_alloc_color(colormap, &free_color, TRUE, TRUE);
190 gboolean success[N_GENS];
191 gdk_colormap_alloc_colors(colormap, gen_colors, N_GENS, TRUE,
193 if (!success) { barf("can't allocate colors"); }
196 /* set the labels on the generation histogram */
202 for(g = 0; g < RtsFlags.GcFlags.generations; g++) {
203 for(s = 0; s < generations[g].n_steps; s++) {
204 g_snprintf( buf, 64, "%d.%d", g, s );
205 label = gtk_label_new( buf );
206 gtk_box_pack_start( GTK_BOX(gen_hbox), label,
208 gtk_widget_show(label);
213 gtk_widget_show(window);
215 /* wait for the user to press "Continue" before getting going... */
216 gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id,
218 gtk_widget_set_sensitive( stop_but, FALSE );
219 continue_now = FALSE;
220 while (continue_now == FALSE) {
221 gtk_main_iteration();
223 gtk_statusbar_pop( GTK_STATUSBAR(statusbar), status_context_id );
224 gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id,
227 gtk_widget_set_sensitive( continue_but, FALSE );
228 gtk_widget_set_sensitive( stop_but, TRUE );
229 gtk_widget_set_sensitive( quit_but, FALSE );
231 while (gtk_events_pending()) {
232 gtk_main_iteration();
237 stopFrontPanel( void )
239 gtk_widget_set_sensitive( quit_but, TRUE );
240 gtk_widget_set_sensitive( continue_but, FALSE );
241 gtk_widget_set_sensitive( stop_but, FALSE );
245 gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id,
249 while (quit == FALSE) {
250 gtk_main_iteration();
255 waitForContinue( void )
257 gtk_widget_set_sensitive( continue_but, TRUE );
258 gtk_widget_set_sensitive( stop_but, FALSE );
260 continue_now = FALSE;
261 while (continue_now == FALSE) {
262 gtk_main_iteration();
264 gtk_widget_set_sensitive( continue_but, FALSE );
265 gtk_widget_set_sensitive( stop_but, TRUE );
269 updateFrontPanelBeforeGC( nat N )
275 if (update_mode == BeforeGC
276 || update_mode == BeforeAfterGC
277 || stop_now == TRUE) {
278 g_snprintf( buf, 1000, "Stopped (before GC, generation %d)", N );
279 gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id, buf );
281 gtk_statusbar_pop( GTK_STATUSBAR(statusbar), status_context_id );
284 g_snprintf( buf, 1000, "Garbage collecting (generation %d)", N );
285 gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id, buf);
287 while (gtk_events_pending()) {
288 gtk_main_iteration();
293 numLabel( GtkWidget *lbl, nat n )
296 g_snprintf(buf, 64, "%d", n);
297 gtk_label_set_text( GTK_LABEL(lbl), buf );
301 updateFrontPanelAfterGC( nat N, lnat live )
305 gtk_statusbar_pop( GTK_STATUSBAR(statusbar), status_context_id );
308 if (N == RtsFlags.GcFlags.generations-1) {
314 if (update_mode == AfterGC
315 || update_mode == BeforeAfterGC
316 || stop_now == TRUE) {
317 snprintf( buf, 1000, "Stopped (after GC, generation %d)", N );
318 gtk_statusbar_push( GTK_STATUSBAR(statusbar), status_context_id, buf );
320 gtk_statusbar_pop( GTK_STATUSBAR(statusbar), status_context_id );
324 double words_to_megs = (1024 * 1024) / sizeof(W_);
325 double time = mut_user_time();
327 snprintf( buf, 1000, "%.2f", (double)live / words_to_megs );
328 gtk_label_set_text( GTK_LABEL(live_label), buf );
330 snprintf( buf, 1000, "%.2f", (double)total_allocated / words_to_megs );
331 gtk_label_set_text( GTK_LABEL(allocated_label), buf );
333 snprintf( buf, 1000, "%.2f",
334 (double)(mblocks_allocated * MBLOCK_SIZE_W) / words_to_megs );
335 gtk_label_set_text( GTK_LABEL(footprint_label), buf );
338 snprintf( buf, 1000, "%.2f", time );
340 snprintf( buf, 1000, "%.2f",
341 (double)(total_allocated / words_to_megs) / time );
342 gtk_label_set_text( GTK_LABEL(alloc_rate_label), buf );
345 while (gtk_events_pending()) {
346 gtk_main_iteration();
351 updateFrontPanel( void )
356 updateThreadsPanel();
359 my_gc = gdk_gc_new( window->window );
362 if (map_pixmap != NULL) {
363 nat height, width, blocks_per_line,
364 block_height, block_width, mblock_height;
366 height = map_drawing_area->allocation.height;
367 width = map_drawing_area->allocation.width;
369 mblock_height = height / mblocks_allocated;
370 blocks_per_line = 16;
371 block_height = mblock_height /
372 ((MBLOCK_SIZE/BLOCK_SIZE) / blocks_per_line);
373 while (block_height == 0) {
374 blocks_per_line *= 2;
375 block_height = mblock_height /
376 ((MBLOCK_SIZE/BLOCK_SIZE) / blocks_per_line);
378 block_width = width / blocks_per_line;
380 gdk_draw_rectangle (map_pixmap,
381 map_drawing_area->style->bg_gc[GTK_STATE_NORMAL],
384 map_drawing_area->allocation.width,
385 map_drawing_area->allocation.height);
388 (char *)m < (char *)mem_start +
389 (mblocks_allocated * MBLOCK_SIZE);
390 (char *)m += MBLOCK_SIZE ) {
392 /* color the bdescr area first */
393 for (a = m; a < FIRST_BLOCK(m); (char *)a += BLOCK_SIZE) {
394 colorBlock( a, &bdescr_color,
395 block_width, block_height, blocks_per_line );
398 #if 0 /* Segfaults because bd appears to be bogus but != NULL. stolz, 2003-06-24 */
399 /* color each block */
400 for (; a <= LAST_BLOCK(m); (char *)a += BLOCK_SIZE) {
402 ASSERT(bd->start == a);
403 if (bd->flags & BF_FREE) {
404 colorBlock( a, &free_color,
405 block_width, block_height, blocks_per_line );
407 colorBlock( a, &gen_colors[bd->gen_no],
408 block_width, block_height, blocks_per_line );
416 nat height = map_drawing_area->allocation.height,
417 block_height, mblock_height;
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);
425 gtk_ruler_set_range( GTK_RULER(map_ruler), 0,
426 (double)(height * mblocks_allocated) /
427 (double)((mblock_height * mblocks_allocated)),
429 (double)(height * mblocks_allocated) /
430 (double)((mblock_height * mblocks_allocated))
434 gtk_widget_draw( map_drawing_area, NULL );
437 if (gen_pixmap != NULL) {
440 nat g, s, columns, column, max_blocks, height_blocks,
443 gdk_draw_rectangle (gen_pixmap,
444 gen_drawing_area->style->white_gc,
447 gen_drawing_area->allocation.width,
448 gen_drawing_area->allocation.height);
450 height = gen_drawing_area->allocation.height;
451 width = gen_drawing_area->allocation.width;
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;
463 /* find a reasonable height value larger than max_blocks */
466 while (max_blocks != 0) {
467 max_blocks >>= 1; n++;
469 height_blocks = 1 << n;
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]);
477 rect.x = column * (width / columns);
479 if (generations[g].steps[s].n_blocks == 0)
483 (height * generations[g].steps[s].n_blocks
486 rect.width = (width / columns);
487 rect.height = height - rect.y;
489 gdk_draw_rectangle( gen_pixmap, my_gc, TRUE/*filled*/,
490 rect.x, rect.y, rect.width,
495 gtk_ruler_set_range( GTK_RULER(gen_ruler),
496 height_blocks * BLOCK_SIZE / (1024 * 1024),
498 height_blocks * BLOCK_SIZE / (1024 * 1024)
501 gtk_widget_draw( gen_drawing_area, NULL );
504 if (res_pixmap != NULL) {
505 updateResidencyGraph();
508 while (gtk_events_pending()) {
509 gtk_main_iteration_do(FALSE/*don't block*/);
514 colorBlock( void *addr, GdkColor *color,
515 nat block_width, nat block_height, nat blocks_per_line )
520 gdk_gc_set_foreground(my_gc, color);
522 block_no = ((char *)addr - (char *)mem_start) / BLOCK_SIZE;
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 );
533 updateThreadsPanel( void )
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;
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;
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);
573 typedef enum { Thunk, Fun, Constr, BlackHole,
574 Array, Thread, Other, N_Cats } ClosureCategory;
578 static nat *res_prof[N_SLICES];
579 static double res_time[N_SLICES];
580 static nat next_slice = 0;
583 residencyCensus( void )
585 nat slice = next_slice++, *prof;
587 nat g, s, size, type;
591 if (slice >= N_SLICES) {
592 barf("too many slices");
594 res_prof[slice] = stgMallocBytes(N_Cats * sizeof(nat), "residencyCensus");
595 prof = res_prof[slice];
596 memset(prof, 0, N_Cats * sizeof(nat));
598 res_time[slice] = mut_user_time();
600 for(g = 0; g < RtsFlags.GcFlags.generations; g++) {
601 for(s = 0; s < generations[g].n_steps; s++) {
603 /* skip over g0s0 if multi-generational */
604 if (RtsFlags.GcFlags.generations > 1 &&
605 g == 0 && s == 0) continue;
607 if (RtsFlags.GcFlags.generations == 1) {
608 /* bd = generations[g].steps[s].to_blocks; FIXME to_blocks does not exist */
610 bd = generations[g].steps[s].blocks;
613 for (; bd != NULL; bd = bd->link) {
617 while (p < bd->free) {
618 info = get_itbl((StgClosure *)p);
621 switch (info->type) {
625 if (((StgClosure *)p)->header.info == &stg_DEAD_WEAK_info) {
626 size = sizeofW(StgWeak);
630 /* else, fall through... */
636 size = sizeW_fromITBL(info);
642 size = sizeofW(StgHeader) + 1;
648 size = sizeW_fromITBL(info);
656 size = sizeofW(StgHeader) + 2;
662 size = sizeW_fromITBL(info);
668 case SE_CAF_BLACKHOLE:
671 /* case BLACKHOLE_BQ: FIXME: case does not exist */
672 size = sizeW_fromITBL(info);
677 size = pap_sizeW((StgPAP *)p);
682 size = pap_sizeW((StgPAP *)p);
687 size = arr_words_sizeW(stgCast(StgArrWords*,p));
692 case MUT_ARR_PTRS_FROZEN:
693 size = mut_arr_ptrs_sizeW((StgMutArrPtrs *)p);
698 size = tso_sizeW((StgTSO *)p);
706 /* case MUT_CONS: FIXME: case does not exist */
708 case IND_OLDGEN_PERM:
709 size = sizeW_fromITBL(info);
714 barf("updateResidencyGraph: strange closure "
728 updateResidencyGraph( void )
730 nat total, prev_total, i, max_res;
732 double time_scale = 1;
733 nat last_slice = next_slice-1;
734 double res_scale = 1; /* in megabytes, doubles */
739 gdk_draw_rectangle (res_pixmap,
740 res_drawing_area->style->bg_gc[GTK_STATE_NORMAL],
743 res_drawing_area->allocation.width,
744 res_drawing_area->allocation.height);
746 if (next_slice == 0) return;
748 time = res_time[last_slice];
749 while (time > time_scale) {
754 for (i = 0; i < next_slice; i++) {
756 total = prof[Thunk] + prof[Fun] + prof[Constr] +
757 prof[BlackHole] + prof[Array] + prof[Other];
758 if (total > max_res) {
762 while (max_res > res_scale) {
766 height = res_drawing_area->allocation.height;
767 width = res_drawing_area->allocation.width;
770 points[0].y = height;
771 points[1].y = height;
773 points[3].y = height;
775 gdk_gc_set_foreground(my_gc, &free_color);
778 for (i = 0; i < next_slice; 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];
790 gtk_ruler_set_range( GTK_RULER(res_vruler),
791 res_scale / ((1024*1024)/sizeof(W_)),
793 res_scale / ((1024*1024)/sizeof(W_)) );
795 gtk_ruler_set_range( GTK_RULER(res_hruler),
796 0, time_scale, 0, time_scale );
799 gtk_widget_draw( res_drawing_area, NULL );
802 #endif /* RTS_GTK_FRONTPANEL */