42c0d4c2b5b37ef2e1f857e55d30b14af6066c30
[libfirm] / ir / be / beprofile.c
1 /** vim: set sw=4 ts=4:
2  * @file   beprofile.c
3  * @date   2006-04-06
4  * @author Adam M. Szalkowski
5  * @cvs-id $Id$
6  *
7  * Code instrumentation and execution count profiling
8  *
9  * Copyright (C) 2006 Universitaet Karlsruhe
10  * Released under the GPL
11  */
12 #ifdef HAVE_CONFIG_H
13 #include "config.h"
14 #endif
15
16 #include <math.h>
17
18 #include "hashptr.h"
19 #include "debug.h"
20 #include "obst.h"
21 #include "set.h"
22 #include "list.h"
23 #include "pmap.h"
24
25 #include "entity.h"
26 #include "irprintf.h"
27 #include "irgwalk.h"
28 #include "irdump_t.h"
29 #include "irnode_t.h"
30 #include "ircons_t.h"
31 #include "irloop_t.h"
32 #include "iredges.h"
33 #include "execfreq.h"
34 #include "irvrfy.h"
35 #include "type.h"
36 #include "entity.h"
37
38 #include "be_t.h"
39 #include "belive_t.h"
40 #include "besched_t.h"
41 #include "beirgmod.h"
42 #include "bearch.h"
43 #include "beabi.h"
44 #include "benode_t.h"
45 #include "beutil.h"
46 #include "ircons.h"
47 #include "irhooks.h"
48 #include "iredges.h"
49
50 #include "bechordal_t.h"
51
52 #ifdef WITH_LIBCORE
53 #include <libcore/lc_opts.h>
54 #include <libcore/lc_opts_enum.h>
55 #endif /* WITH_LIBCORE */
56
57 #include "beprofile.h"
58
59 /** An entry in the id-to-location map */
60 typedef struct loc_entry {
61         entity       *fname;   /**< the entity holding the file name */
62         unsigned int lineno;   /**< line number */
63 } loc_entry;
64
65 typedef struct _block_id_walker_data_t {
66         tarval         **array;    /**< the entity the holds the block counts */
67         unsigned int   id;         /**< current block id number */
68         ir_node        *symconst;  /**< the SymConst representing array */
69         pmap           *fname_map; /**< set containing all found filenames */
70         loc_entry      *locs;      /**< locations */
71         ir_type        *tp_char;   /**< the character type */
72         unsigned       flags;      /**< profile flags */
73 } block_id_walker_data_t;
74
75 typedef struct _execcount_t {
76         unsigned int block;
77         unsigned int count;
78 } execcount_t;
79
80 static int
81 cmp_execcount(const void * a, const void * b, size_t size)
82 {
83         return ((execcount_t*)a)->block != ((execcount_t*)b)->block;
84 }
85
86 static void
87 block_counter(ir_node * bb, void * data)
88 {
89         unsigned int  *count = data;
90         *count = *count + 1;
91 }
92
93 static unsigned int
94 count_blocks(ir_graph * irg)
95 {
96         unsigned int count = 0;
97
98         irg_block_walk_graph(irg, block_counter, NULL, &count);
99         return count;
100 }
101
102 /* keep the execcounts here because they are only read once per compiler run */
103 static set * profile = NULL;
104 static hook_entry_t hook;
105
106 /**
107  * Instrument a block with code needed for profiling
108  */
109 static void
110 instrument_block(ir_node * bb, ir_node * address, unsigned int id)
111 {
112         ir_graph *irg = get_irn_irg(bb);
113         ir_node  *start_block = get_irg_start_block(irg);
114         ir_node  *load, *store, *offset, *add, *projm, *proji, *unknown;
115         ir_node  *cnst;
116
117         /**
118          * We can't instrument the start and end block as there are no real
119          * instructions in these blocks
120          */
121         if(bb == start_block || bb == get_irg_end_block(irg))
122                 return;
123
124         unknown = new_r_Unknown(irg, mode_M);
125         cnst    = new_r_Const_long(irg, start_block, mode_Iu, get_mode_size_bytes(mode_Iu) * id);
126         offset  = new_r_Add(irg, bb, address, cnst, mode_P);
127         load    = new_r_Load(irg, bb, unknown, offset, mode_Iu);
128         projm   = new_r_Proj(irg, bb, load, mode_M, pn_Load_M);
129         proji   = new_r_Proj(irg, bb, load, mode_Iu, pn_Load_res);
130         cnst    = new_r_Const_long(irg, start_block, mode_Iu, 1);
131         add     = new_r_Add(irg, bb, proji, cnst, mode_Iu);
132         store   = new_r_Store(irg, bb, projm, offset, add);
133         projm   = new_r_Proj(irg, bb, store, mode_M, pn_Store_M);
134         set_irn_link(bb, projm);
135         set_irn_link(projm, load);
136 }
137
138 typedef struct fix_env {
139         ir_node *start_block;
140         ir_node *end_block;
141 } fix_env;
142
143 /**
144  * SSA Construction for instrumentation code memory
145  */
146 static void
147 fix_ssa(ir_node * bb, void * data)
148 {
149         fix_env *env = data;
150         ir_node *mem;
151         int     arity = get_Block_n_cfgpreds(bb);
152
153         /* start and end block are not instrumented, skip! */
154         if (bb == env->start_block || bb == env->end_block)
155                 return;
156
157         if (arity == 1) {
158                 mem = get_irn_link(get_Block_cfgpred_block(bb, 0));
159         } else {
160                 int n;
161                 ir_node **ins;
162                 ir_graph *irg = current_ir_graph;
163
164                 NEW_ARR_A(ir_node*, ins, arity);
165                 for (n = arity - 1; n >= 0; --n) {
166                         ins[n] = get_irn_link(get_Block_cfgpred_block(bb, n));
167                 }
168                 mem = new_r_Phi(irg, bb, arity, ins, mode_M);
169         }
170         set_Load_mem(get_irn_link(get_irn_link(bb)), mem);
171 }
172
173
174 /**
175  * Generates a new irg which calls the initializer
176  *
177  * Pseudocode:
178  *       void __firmprof_initializer(void) { __init_firmprof(ent_filename, bblock_id, bblock_counts, n_blocks); }
179  */
180 static ir_graph *
181 gen_initializer_irg(entity * ent_filename, entity * bblock_id, entity * bblock_counts, int n_blocks)
182 {
183         ir_node *start_block;
184
185         ir_node   *ins[4];
186         ident     *name = new_id_from_str("__firmprof_initializer");
187         entity    *ent  = new_entity(get_glob_type(), name, new_type_method(name, 0, 0));
188         ir_node   *ret, *call, *symconst;
189         symconst_symbol sym;
190
191         ident     *init_name = new_id_from_str("__init_firmprof");
192         ir_type   *init_type = new_type_method(init_name, 4, 0);
193         ir_type   *uint, *uintptr, *string;
194         entity    *init_ent;
195         ir_graph  *irg;
196         ir_node   *bb;
197         ir_type   *empty_frame_type;
198
199         set_entity_ld_ident(ent, name);
200
201         uint    = new_type_primitive(new_id_from_str("__uint"), mode_Iu);
202         uintptr = new_type_pointer(new_id_from_str("__uintptr"), uint, mode_P);
203         string  = new_type_pointer(new_id_from_str("__charptr"), new_type_primitive(new_id_from_str("__char"), mode_Bs), mode_P);
204
205         set_method_param_type(init_type, 0, string);
206         set_method_param_type(init_type, 1, uintptr);
207         set_method_param_type(init_type, 2, uintptr);
208         set_method_param_type(init_type, 3, uint);
209         init_ent = new_entity(get_glob_type(), init_name, init_type);
210         set_entity_ld_ident(init_ent, init_name);
211
212         irg = new_ir_graph(ent, 0);
213         empty_frame_type = get_irg_frame_type(irg);
214         set_type_size_bytes(empty_frame_type, 0);
215
216         bb = get_cur_block();
217
218         start_block = get_irg_start_block(irg);
219
220         sym.entity_p = init_ent;
221         symconst     = new_r_SymConst(irg, start_block, sym, symconst_addr_ent);
222
223         sym.entity_p = ent_filename;
224         ins[0] = new_r_SymConst(irg, start_block, sym, symconst_addr_ent);
225         sym.entity_p = bblock_id;
226         ins[1] = new_r_SymConst(irg, start_block, sym, symconst_addr_ent);
227         sym.entity_p = bblock_counts;
228         ins[2] = new_r_SymConst(irg, start_block, sym, symconst_addr_ent);
229         ins[3] = new_r_Const_long(irg, start_block, mode_Iu, n_blocks);
230
231         call = new_r_Call(irg, bb, get_irg_initial_mem(irg), symconst, 4, ins, init_type);
232         ret = new_r_Return(irg, bb, new_r_Proj(irg, bb, call, mode_M, pn_Call_M_regular), 0, NULL);
233         mature_immBlock(bb);
234
235         add_immBlock_pred(get_irg_end_block(irg), ret);
236         mature_immBlock(get_irg_end_block(irg));
237
238         irg_finalize_cons(irg);
239
240         return irg;
241 }
242
243 /**
244  * Create the location data for the given debug info.
245  */
246 static void create_location_data(dbg_info *dbg, block_id_walker_data_t *wd)
247 {
248         unsigned lineno;
249         const char *fname = be_retrieve_dbg_info(dbg, &lineno);
250
251         if (fname) {
252                 pmap_entry *entry = pmap_find(wd->fname_map, (void *)fname);
253                 entity     *ent;
254
255                 if (! entry) {
256                         static unsigned nr = 0;
257                         ident   *id;
258                         char    buf[128];
259                         ir_type *arr;
260                         int     i, len = strlen(fname) + 1;
261                         tarval  **tarval_string;
262
263                         snprintf(buf, sizeof(buf), "firm_name_arr.%d", nr);
264                         arr = new_type_array(new_id_from_str(buf), 1, wd->tp_char);
265                         set_array_bounds_int(arr, 0, 0, len);
266
267                         snprintf(buf, sizeof(buf), "__firm_name.%d", nr++);
268                         id = new_id_from_str(buf);
269                         ent = new_entity(get_glob_type(), id, arr);
270                         set_entity_ld_ident(ent, id);
271
272                         pmap_insert(wd->fname_map, (void *)fname, ent);
273
274                         /* initialize file name string constant */
275                         tarval_string = alloca(sizeof(*tarval_string) * (len));
276                         for (i = 0; i < len; ++i) {
277                                 tarval_string[i] = new_tarval_from_long(fname[i], mode_Bs);
278                         }
279                         set_entity_variability(ent, variability_constant);
280                         set_array_entity_values(ent, tarval_string, len);
281                 } else {
282                         ent = entry->value;
283                 }
284                 wd->locs[wd->id].fname  = ent;
285                 wd->locs[wd->id].lineno = lineno;
286         } else {
287                 wd->locs[wd->id].fname  = NULL;
288                 wd->locs[wd->id].lineno = 0;
289         }
290 }
291
292 /**
293  * Walker: assigns an ID to every block.
294  * Builds the string table
295  */
296 static void
297 block_id_walker(ir_node * bb, void * data)
298 {
299         block_id_walker_data_t *wd = data;
300
301         wd->array[wd->id] = new_tarval_from_long(get_irn_node_nr(bb), mode_Iu);
302         instrument_block(bb, wd->symconst, wd->id);
303
304         if (wd->flags & profile_with_locations) {
305                 dbg_info *dbg = get_irn_dbg_info(bb);
306                 create_location_data(dbg, wd);
307         }
308         ++wd->id;
309 }
310
311 #define IDENT(x)        new_id_from_chars(x, sizeof(x) - 1)
312
313 ir_graph *
314 be_profile_instrument(const char *filename, unsigned flags)
315 {
316         int            n, i;
317         unsigned int   n_blocks = 0;
318         entity        *bblock_id, *bblock_counts, *ent_filename, *ent_locations,
319                           *loc_lineno, *loc_name, *ent;
320         ir_type       *array_type, *uint_type, *string_type, *character_type,
321                           *loc_type, *charptr_type, *gtp;
322         tarval       **tarval_array, **tarval_string, *tv;
323         int            filename_len = strlen(filename)+1;
324         ident         *cur_ident;
325         int            align_l, align_n, size;
326         ir_graph      *rem;
327
328         block_id_walker_data_t  wd;
329         symconst_symbol sym;
330
331         /* count the number of block first */
332         for (n = get_irp_n_irgs() - 1; n >= 0; --n) {
333                 ir_graph *irg = get_irp_irg(n);
334
335                 n_blocks += count_blocks(irg);
336         }
337
338         /* create all the necessary types and entities. Note that the
339            types must have a fixed layout, because we already running in the
340            backend */
341         uint_type      = new_type_primitive(IDENT("__uint"), mode_Iu);
342         set_type_alignment_bytes(uint_type, get_type_size_bytes(uint_type));
343         array_type     = new_type_array(IDENT("__block_info_array"), 1, uint_type);
344         set_array_bounds_int(array_type, 0, 0, n_blocks);
345
346         character_type = new_type_primitive(IDENT("__char"), mode_Bs);
347         string_type    = new_type_array(IDENT("__filename"), 1, character_type);
348         set_array_bounds_int(string_type, 0, 0, filename_len);
349
350         gtp            = get_glob_type();
351
352         cur_ident      = IDENT("__FIRMPROF__BLOCK_IDS");
353         bblock_id      = new_entity(gtp, cur_ident, array_type);
354         set_entity_ld_ident(bblock_id, cur_ident);
355         set_entity_variability(bblock_id, variability_initialized);
356
357         cur_ident      = IDENT("__FIRMPROF__BLOCK_COUNTS");
358         bblock_counts  = new_entity(gtp, cur_ident, array_type);
359         set_entity_ld_ident(bblock_counts, cur_ident);
360         set_entity_variability(bblock_counts, variability_initialized);
361
362         cur_ident      = IDENT("__FIRMPROF__FILE_NAME");
363         ent_filename   = new_entity(gtp, cur_ident, string_type);
364         set_entity_ld_ident(ent_filename, cur_ident);
365
366         if (flags & profile_with_locations) {
367                 loc_type       = new_type_struct(IDENT("__location"));
368                 loc_lineno     = new_entity(loc_type, IDENT("lineno"), uint_type);
369                 align_l        = get_type_alignment_bytes(uint_type);
370                 size           = get_type_size_bytes(uint_type);
371                 set_entity_offset_bytes(loc_lineno, 0);
372
373                 charptr_type   = new_type_pointer(IDENT("__charptr"), character_type, mode_P_data);
374                 align_n        = get_type_size_bytes(charptr_type);
375                 set_type_alignment_bytes(charptr_type, align_n);
376                 loc_name       = new_entity(loc_type, IDENT("name"), charptr_type);
377                 size           = (size + align_n - 1) & -align_n;
378                 set_entity_offset_bytes(loc_name, size);
379                 size          += align_n;
380
381                 if (align_n > align_l)
382                         align_l = align_n;
383                 size = (size + align_l - 1) & -align_l;
384                 set_type_size_bytes(loc_type, size);
385                 set_type_state(loc_type, layout_fixed);
386
387                 loc_type = new_type_array(IDENT("__locarray"), 1, loc_type);
388                 set_array_bounds_int(string_type, 0, 0, n_blocks);
389
390                 cur_ident      = IDENT("__FIRMPROF__LOCATIONS");
391                 ent_locations   = new_entity(gtp, cur_ident, loc_type);
392                 set_entity_ld_ident(ent_locations, cur_ident);
393         }
394
395         /* initialize count array */
396         NEW_ARR_A(tarval *, tarval_array, n_blocks);
397         tv = get_tarval_null(mode_Iu);
398         for (i = 0; i < n_blocks; ++i) {
399                 tarval_array[i] = tv;
400         }
401         set_array_entity_values(bblock_counts, tarval_array, n_blocks);
402
403         /* initialize function name string constant */
404         tarval_string = alloca(sizeof(*tarval_string) * (filename_len));
405         for (i = 0; i < filename_len; ++i) {
406                 tarval_string[i] = new_tarval_from_long(filename[i], mode_Bs);
407         }
408         set_entity_variability(ent_filename, variability_constant);
409         set_array_entity_values(ent_filename, tarval_string, filename_len);
410
411         /* initialize block id array and instrument blocks */
412         wd.array     = tarval_array;
413         wd.id        = 0;
414         wd.tp_char   = character_type;
415         wd.flags     = flags;
416         if (flags & profile_with_locations) {
417                 wd.fname_map = pmap_create();
418                 NEW_ARR_A(loc_entry, wd.locs, n_blocks);
419         }
420
421         for (n = get_irp_n_irgs() - 1; n >= 0; --n) {
422                 ir_graph      *irg = get_irp_irg(n);
423                 int            i;
424                 ir_node       *endbb = get_irg_end_block(irg);
425                 fix_env       env;
426
427                 set_current_ir_graph(irg);
428
429                 /* generate a symbolic constant pointing to the count array */
430                 sym.entity_p = bblock_counts;
431                 wd.symconst  = new_r_SymConst(irg, get_irg_start_block(irg), sym, symconst_addr_ent);
432
433                 irg_block_walk_graph(irg, block_id_walker, NULL, &wd);
434                 env.start_block = get_irg_start_block(irg);
435                 env.end_block   = get_irg_end_block(irg);
436                 set_irn_link(env.start_block, get_irg_no_mem(irg));
437                 irg_block_walk_graph(irg, fix_ssa, NULL, &env);
438                 for (i = get_Block_n_cfgpreds(endbb) - 1; i >= 0; --i) {
439                         ir_node *node = skip_Proj(get_Block_cfgpred(endbb, i));
440                         ir_node *bb   = get_Block_cfgpred_block(endbb, i);
441                         ir_node *sync;
442                         ir_node *ins[2];
443
444                         switch (get_irn_opcode(node)) {
445                         case iro_Return:
446                                 ins[0] = get_irn_link(bb);
447                                 ins[1] = get_Return_mem(node);
448                                 sync   = new_r_Sync(irg, bb, 2, ins);
449                                 set_Return_mem(node, sync);
450                                 break;
451                         case iro_Raise:
452                                 ins[0] = get_irn_link(bb);
453                                 ins[1] = get_Raise_mem(node);
454                                 sync   = new_r_Sync(irg, bb, 2, ins);
455                                 set_Raise_mem(node, sync);
456                                 break;
457                         default:
458                                 /* a fragile's op exception. There should be another path to End,
459                                    so ignore it */
460                                 assert(is_fragile_op(node) && "unexpected End control flow predecessor");
461                         }
462                 }
463         }
464         set_array_entity_values(bblock_id, tarval_array, n_blocks);
465
466         if (flags & profile_with_locations) {
467                 /* build the initializer for the locations */
468                 rem = current_ir_graph;
469                 current_ir_graph = get_const_code_irg();
470                 ent = get_array_element_entity(loc_type);
471                 set_entity_variability(ent_locations, variability_constant);
472                 for (i = 0; i < n_blocks; ++i) {
473                         compound_graph_path *path;
474                         tarval *tv;
475                         ir_node *n;
476
477                         /* lineno */
478                         path = new_compound_graph_path(loc_type, 2);
479                         set_compound_graph_path_array_index(path, 0, i);
480                         set_compound_graph_path_node(path, 0, ent);
481                         set_compound_graph_path_node(path, 1, loc_lineno);
482                         tv = new_tarval_from_long(wd.locs[i].lineno, mode_Iu);
483                         add_compound_ent_value_w_path(ent_locations, new_Const(mode_Iu, tv), path);
484
485                         /* name */
486                         path = new_compound_graph_path(loc_type, 2);
487                         set_compound_graph_path_array_index(path, 0, i);
488                         set_compound_graph_path_node(path, 0, ent);
489                         set_compound_graph_path_node(path, 1, loc_name);
490                         if (wd.locs[i].fname) {
491                                 sym.entity_p = wd.locs[i].fname;
492                                 n = new_SymConst(sym, symconst_addr_ent);
493                         } else {
494                                 n = new_Const(mode_P_data, get_mode_null(mode_P_data));
495                         }
496                         add_compound_ent_value_w_path(ent_locations, n, path);
497                 }
498                 pmap_destroy(wd.fname_map);
499         }
500         return gen_initializer_irg(ent_filename, bblock_id, bblock_counts, n_blocks);
501 }
502
503 static void
504 profile_node_info(void *ctx, FILE *f, const ir_node *irn)
505 {
506         if(is_Block(irn)) {
507                 fprintf(f, "profiled execution count: %u\n", be_profile_get_block_execcount(irn));
508         }
509 }
510
511 static void
512 register_vcg_hook(void)
513 {
514         memset(&hook, 0, sizeof(hook));
515         hook.hook._hook_node_info = profile_node_info;
516         register_hook(hook_node_info, &hook);
517 }
518
519 static void
520 unregister_vcg_hook(void)
521 {
522         unregister_hook(hook_node_info, &hook);
523 }
524
525 /**
526  * Reads the corresponding profile info file if it exists and returns a
527  * profile info struct
528  */
529 void
530 be_profile_read(const char *filename)
531 {
532         FILE   *f;
533         char    buf[8];
534         size_t  ret;
535
536         f = fopen(filename, "r");
537         if(f == NULL) {
538                 return;
539         }
540         printf("found profile data '%s'.\n", filename);
541
542         /* check magic */
543         ret = fread(buf, 8, 1, f);
544         if(ret == 0 || strncmp(buf, "firmprof", 8) != 0) {
545                 return;
546         }
547
548         if(profile) be_profile_free();
549         profile = new_set(cmp_execcount, 16);
550
551         do {
552                 execcount_t  query;
553                 ret = fread(&query, sizeof(unsigned int), 2, f);
554
555                 if(ret != 2) break;
556
557                 set_insert(profile, &query, sizeof(query), query.block);
558         } while(1);
559
560         fclose(f);
561         register_vcg_hook();
562 }
563
564 /**
565  * Frees the profile info
566  */
567 void
568 be_profile_free(void)
569 {
570         if(profile) {
571                 unregister_vcg_hook();
572                 del_set(profile);
573         }
574 }
575
576 /**
577  * Tells whether profile module has acquired data
578  */
579 int
580 be_profile_has_data(void)
581 {
582         return (profile != NULL);
583 }
584
585 /**
586  * Get block execution count as determined be profiling
587  */
588 unsigned int
589 be_profile_get_block_execcount(const ir_node *block)
590 {
591         execcount_t *ec, query;
592
593         if(!profile)
594                 return 1;
595
596         query.block = get_irn_node_nr(block);
597         ec = set_find(profile, &query, sizeof(query), get_irn_node_nr(block));
598
599         if(ec != NULL) {
600                 return ec->count;
601         } else {
602                 ir_fprintf(stderr, "Warning: Profile contains no data for %+F\n",
603                            block);
604                 return 1;
605         }
606 }
607
608 typedef struct _intialize_execfreq_env_t {
609         ir_graph *irg;
610         exec_freq_t *execfreqs;
611         double freq_factor;
612 } initialize_execfreq_env_t;
613
614 // minimal execution frequency (an execfreq of 0 confuses algos)
615 static const double MIN_EXECFREQ = 0.00001;
616
617 static void initialize_execfreq(ir_node *block, void *data) {
618         initialize_execfreq_env_t *env = data;
619         double freq;
620
621         if(block == get_irg_start_block(env->irg)
622            || block == get_irg_end_block(env->irg)) {
623                 freq = 1.0;
624         } else {
625                 freq = be_profile_get_block_execcount(block);
626                 freq *= env->freq_factor;
627                 if(freq < MIN_EXECFREQ)
628                         freq = MIN_EXECFREQ;
629         }
630
631         set_execfreq(env->execfreqs, block, freq);
632 }
633
634 exec_freq_t *be_create_execfreqs_from_profile(ir_graph *irg)
635 {
636         ir_node *block2 = NULL;
637         ir_node *start_block;
638         const ir_edge_t *edge;
639         initialize_execfreq_env_t env;
640         unsigned count;
641
642         env.irg = irg;
643         env.execfreqs = create_execfreq(irg);
644
645         // find the successor to the start block
646         start_block = get_irg_start_block(irg);
647         foreach_block_succ(start_block, edge) {
648                 ir_node *succ = get_edge_src_irn(edge);
649                 if(succ != start_block) {
650                         block2 = succ;
651                         break;
652                 }
653         }
654         assert(block2 != NULL);
655
656         count = be_profile_get_block_execcount(block2);
657         if(count == 0) {
658                 // the function was never executed, so fallback to estimated freqs
659                 free_execfreq(env.execfreqs);
660
661                 return compute_execfreq(irg, 10);
662         }
663
664         env.freq_factor = 1.0 / count;
665         irg_block_walk_graph(irg, initialize_execfreq, NULL, &env);
666
667         return env.execfreqs;
668 }