PR target/19236
[official-gcc.git] / gcc / tree-mudflap.c
blob9672c20daf01d7418fd1eb8a622b55ab1c2bb786
1 /* Mudflap: narrow-pointer bounds-checking by tree rewriting.
2 Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
3 Contributed by Frank Ch. Eigler <fche@redhat.com>
4 and Graydon Hoare <graydon@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA. */
24 #include "config.h"
25 #include "errors.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tm.h"
29 #include "hard-reg-set.h"
30 #include "rtl.h"
31 #include "tree.h"
32 #include "tm_p.h"
33 #include "basic-block.h"
34 #include "flags.h"
35 #include "function.h"
36 #include "tree-inline.h"
37 #include "tree-gimple.h"
38 #include "tree-flow.h"
39 #include "tree-mudflap.h"
40 #include "tree-dump.h"
41 #include "tree-pass.h"
42 #include "hashtab.h"
43 #include "diagnostic.h"
44 #include <demangle.h>
45 #include "langhooks.h"
46 #include "ggc.h"
47 #include "cgraph.h"
49 /* Internal function decls */
51 /* Helpers. */
52 static tree mf_build_string (const char *string);
53 static tree mf_varname_tree (tree);
54 static tree mf_file_function_line_tree (location_t);
56 /* Indirection-related instrumentation. */
57 static void mf_decl_cache_locals (void);
58 static void mf_decl_clear_locals (void);
59 static void mf_xform_derefs (void);
60 static void execute_mudflap_function_ops (void);
62 /* Addressable variables instrumentation. */
63 static void mf_xform_decls (tree, tree);
64 static tree mx_xfn_xform_decls (tree *, int *, void *);
65 static void mx_register_decls (tree, tree *);
66 static void execute_mudflap_function_decls (void);
69 /* ------------------------------------------------------------------------ */
70 /* Some generally helpful functions for mudflap instrumentation. */
72 /* Build a reference to a literal string. */
73 static tree
74 mf_build_string (const char *string)
76 size_t len = strlen (string);
77 tree result = mf_mark (build_string (len + 1, string));
79 TREE_TYPE (result) = build_array_type
80 (char_type_node, build_index_type (build_int_cst (NULL_TREE, len)));
81 TREE_CONSTANT (result) = 1;
82 TREE_INVARIANT (result) = 1;
83 TREE_READONLY (result) = 1;
84 TREE_STATIC (result) = 1;
86 result = build1 (ADDR_EXPR, build_pointer_type (char_type_node), result);
88 return mf_mark (result);
91 /* Create a properly typed STRING_CST node that describes the given
92 declaration. It will be used as an argument for __mf_register().
93 Try to construct a helpful string, including file/function/variable
94 name. */
96 static tree
97 mf_varname_tree (tree decl)
99 static pretty_printer buf_rec;
100 static int initialized = 0;
101 pretty_printer *buf = & buf_rec;
102 const char *buf_contents;
103 tree result;
105 gcc_assert (decl);
107 if (!initialized)
109 pp_construct (buf, /* prefix */ NULL, /* line-width */ 0);
110 initialized = 1;
112 pp_clear_output_area (buf);
114 /* Add FILENAME[:LINENUMBER[:COLUMNNUMBER]]. */
116 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (decl));
117 const char *sourcefile;
118 unsigned sourceline = xloc.line;
119 unsigned sourcecolumn = 0;
120 #ifdef USE_MAPPED_LOCATION
121 sourcecolumn = xloc.column;
122 #endif
123 sourcefile = xloc.file;
124 if (sourcefile == NULL && current_function_decl != NULL_TREE)
125 sourcefile = DECL_SOURCE_FILE (current_function_decl);
126 if (sourcefile == NULL)
127 sourcefile = "<unknown file>";
129 pp_string (buf, sourcefile);
131 if (sourceline != 0)
133 pp_string (buf, ":");
134 pp_decimal_int (buf, sourceline);
136 if (sourcecolumn != 0)
138 pp_string (buf, ":");
139 pp_decimal_int (buf, sourcecolumn);
144 if (current_function_decl != NULL_TREE)
146 /* Add (FUNCTION) */
147 pp_string (buf, " (");
149 const char *funcname = NULL;
150 if (DECL_NAME (current_function_decl))
151 funcname = lang_hooks.decl_printable_name (current_function_decl, 1);
152 if (funcname == NULL)
153 funcname = "anonymous fn";
155 pp_string (buf, funcname);
157 pp_string (buf, ") ");
159 else
160 pp_string (buf, " ");
162 /* Add <variable-declaration>, possibly demangled. */
164 const char *declname = "<unnamed variable>";
166 if (DECL_NAME (decl) != NULL)
168 if (strcmp ("GNU C++", lang_hooks.name) == 0)
170 /* The gcc/cp decl_printable_name hook doesn't do as good a job as
171 the libiberty demangler. */
172 declname = cplus_demangle (IDENTIFIER_POINTER (DECL_NAME (decl)),
173 DMGL_AUTO | DMGL_VERBOSE);
175 if (declname == NULL)
176 declname = lang_hooks.decl_printable_name (decl, 3);
179 pp_string (buf, declname);
182 /* Return the lot as a new STRING_CST. */
183 buf_contents = pp_base_formatted_text (buf);
184 result = mf_build_string (buf_contents);
185 pp_clear_output_area (buf);
187 return result;
191 /* And another friend, for producing a simpler message. */
193 static tree
194 mf_file_function_line_tree (location_t location)
196 expanded_location xloc = expand_location (location);
197 const char *file = NULL, *colon, *line, *op, *name, *cp;
198 char linecolbuf[30]; /* Enough for two decimal numbers plus a colon. */
199 char *string;
200 tree result;
202 /* Add FILENAME[:LINENUMBER[:COLUMNNUMBER]]. */
203 file = xloc.file;
204 if (file == NULL && current_function_decl != NULL_TREE)
205 file = DECL_SOURCE_FILE (current_function_decl);
206 if (file == NULL)
207 file = "<unknown file>";
209 if (xloc.line > 0)
211 #ifdef USE_MAPPED_LOCATION
212 if (xloc.column > 0)
213 sprintf (linecolbuf, "%d:%d", xloc.line, xloc.column);
214 else
215 #endif
216 sprintf (linecolbuf, "%d", xloc.line);
217 colon = ":";
218 line = linecolbuf;
220 else
221 colon = line = "";
223 /* Add (FUNCTION). */
224 name = lang_hooks.decl_printable_name (current_function_decl, 1);
225 if (name)
227 op = " (";
228 cp = ")";
230 else
231 op = name = cp = "";
233 string = concat (file, colon, line, op, name, cp, NULL);
234 result = mf_build_string (string);
235 free (string);
237 return result;
241 /* global tree nodes */
243 /* Global tree objects for global variables and functions exported by
244 mudflap runtime library. mf_init_extern_trees must be called
245 before using these. */
247 /* uintptr_t (usually "unsigned long") */
248 static GTY (()) tree mf_uintptr_type;
250 /* struct __mf_cache { uintptr_t low; uintptr_t high; }; */
251 static GTY (()) tree mf_cache_struct_type;
253 /* struct __mf_cache * const */
254 static GTY (()) tree mf_cache_structptr_type;
256 /* extern struct __mf_cache __mf_lookup_cache []; */
257 static GTY (()) tree mf_cache_array_decl;
259 /* extern unsigned char __mf_lc_shift; */
260 static GTY (()) tree mf_cache_shift_decl;
262 /* extern uintptr_t __mf_lc_mask; */
263 static GTY (()) tree mf_cache_mask_decl;
265 /* Their function-scope local shadows, used in single-threaded mode only. */
267 /* auto const unsigned char __mf_lc_shift_l; */
268 static GTY (()) tree mf_cache_shift_decl_l;
270 /* auto const uintptr_t __mf_lc_mask_l; */
271 static GTY (()) tree mf_cache_mask_decl_l;
273 /* extern void __mf_check (void *ptr, size_t sz, int type, const char *); */
274 static GTY (()) tree mf_check_fndecl;
276 /* extern void __mf_register (void *ptr, size_t sz, int type, const char *); */
277 static GTY (()) tree mf_register_fndecl;
279 /* extern void __mf_unregister (void *ptr, size_t sz, int type); */
280 static GTY (()) tree mf_unregister_fndecl;
282 /* extern void __mf_init (); */
283 static GTY (()) tree mf_init_fndecl;
285 /* extern int __mf_set_options (const char*); */
286 static GTY (()) tree mf_set_options_fndecl;
289 /* Helper for mudflap_init: construct a decl with the given category,
290 name, and type, mark it an external reference, and pushdecl it. */
291 static inline tree
292 mf_make_builtin (enum tree_code category, const char *name, tree type)
294 tree decl = mf_mark (build_decl (category, get_identifier (name), type));
295 TREE_PUBLIC (decl) = 1;
296 DECL_EXTERNAL (decl) = 1;
297 lang_hooks.decls.pushdecl (decl);
298 return decl;
301 /* Helper for mudflap_init: construct a tree corresponding to the type
302 struct __mf_cache { uintptr_t low; uintptr_t high; };
303 where uintptr_t is the FIELD_TYPE argument. */
304 static inline tree
305 mf_make_mf_cache_struct_type (tree field_type)
307 /* There is, abominably, no language-independent way to construct a
308 RECORD_TYPE. So we have to call the basic type construction
309 primitives by hand. */
310 tree fieldlo = build_decl (FIELD_DECL, get_identifier ("low"), field_type);
311 tree fieldhi = build_decl (FIELD_DECL, get_identifier ("high"), field_type);
313 tree struct_type = make_node (RECORD_TYPE);
314 DECL_CONTEXT (fieldlo) = struct_type;
315 DECL_CONTEXT (fieldhi) = struct_type;
316 TREE_CHAIN (fieldlo) = fieldhi;
317 TYPE_FIELDS (struct_type) = fieldlo;
318 TYPE_NAME (struct_type) = get_identifier ("__mf_cache");
319 layout_type (struct_type);
321 return struct_type;
324 #define build_function_type_0(rtype) \
325 build_function_type (rtype, void_list_node)
326 #define build_function_type_1(rtype, arg1) \
327 build_function_type (rtype, tree_cons (0, arg1, void_list_node))
328 #define build_function_type_3(rtype, arg1, arg2, arg3) \
329 build_function_type (rtype, tree_cons (0, arg1, tree_cons (0, arg2, \
330 tree_cons (0, arg3, void_list_node))))
331 #define build_function_type_4(rtype, arg1, arg2, arg3, arg4) \
332 build_function_type (rtype, tree_cons (0, arg1, tree_cons (0, arg2, \
333 tree_cons (0, arg3, tree_cons (0, arg4, \
334 void_list_node)))))
336 /* Initialize the global tree nodes that correspond to mf-runtime.h
337 declarations. */
338 void
339 mudflap_init (void)
341 static bool done = false;
342 tree mf_const_string_type;
343 tree mf_cache_array_type;
344 tree mf_check_register_fntype;
345 tree mf_unregister_fntype;
346 tree mf_init_fntype;
347 tree mf_set_options_fntype;
349 if (done)
350 return;
351 done = true;
353 mf_uintptr_type = lang_hooks.types.type_for_mode (ptr_mode,
354 /*unsignedp=*/true);
355 mf_const_string_type
356 = build_pointer_type (build_qualified_type
357 (char_type_node, TYPE_QUAL_CONST));
359 mf_cache_struct_type = mf_make_mf_cache_struct_type (mf_uintptr_type);
360 mf_cache_structptr_type = build_pointer_type (mf_cache_struct_type);
361 mf_cache_array_type = build_array_type (mf_cache_struct_type, 0);
362 mf_check_register_fntype =
363 build_function_type_4 (void_type_node, ptr_type_node, size_type_node,
364 integer_type_node, mf_const_string_type);
365 mf_unregister_fntype =
366 build_function_type_3 (void_type_node, ptr_type_node, size_type_node,
367 integer_type_node);
368 mf_init_fntype =
369 build_function_type_0 (void_type_node);
370 mf_set_options_fntype =
371 build_function_type_1 (integer_type_node, mf_const_string_type);
373 mf_cache_array_decl = mf_make_builtin (VAR_DECL, "__mf_lookup_cache",
374 mf_cache_array_type);
375 mf_cache_shift_decl = mf_make_builtin (VAR_DECL, "__mf_lc_shift",
376 unsigned_char_type_node);
377 mf_cache_mask_decl = mf_make_builtin (VAR_DECL, "__mf_lc_mask",
378 mf_uintptr_type);
379 /* Don't process these in mudflap_enqueue_decl, should they come by
380 there for some reason. */
381 mf_mark (mf_cache_array_decl);
382 mf_mark (mf_cache_shift_decl);
383 mf_mark (mf_cache_mask_decl);
384 mf_check_fndecl = mf_make_builtin (FUNCTION_DECL, "__mf_check",
385 mf_check_register_fntype);
386 mf_register_fndecl = mf_make_builtin (FUNCTION_DECL, "__mf_register",
387 mf_check_register_fntype);
388 mf_unregister_fndecl = mf_make_builtin (FUNCTION_DECL, "__mf_unregister",
389 mf_unregister_fntype);
390 mf_init_fndecl = mf_make_builtin (FUNCTION_DECL, "__mf_init",
391 mf_init_fntype);
392 mf_set_options_fndecl = mf_make_builtin (FUNCTION_DECL, "__mf_set_options",
393 mf_set_options_fntype);
395 #undef build_function_type_4
396 #undef build_function_type_3
397 #undef build_function_type_1
398 #undef build_function_type_0
401 /* ------------------------------------------------------------------------ */
402 /* Memory reference transforms. Perform the mudflap indirection-related
403 tree transforms on the current function.
405 This is the second part of the mudflap instrumentation. It works on
406 low-level GIMPLE using the CFG, because we want to run this pass after
407 tree optimizations have been performed, but we have to preserve the CFG
408 for expansion from trees to RTL. */
410 static void
411 execute_mudflap_function_ops (void)
413 /* Don't instrument functions such as the synthetic constructor
414 built during mudflap_finish_file. */
415 if (mf_marked_p (current_function_decl) ||
416 DECL_ARTIFICIAL (current_function_decl))
417 return;
419 push_gimplify_context ();
421 /* In multithreaded mode, don't cache the lookup cache parameters. */
422 if (! flag_mudflap_threads)
423 mf_decl_cache_locals ();
425 mf_xform_derefs ();
427 if (! flag_mudflap_threads)
428 mf_decl_clear_locals ();
430 pop_gimplify_context (NULL);
433 /* Create and initialize local shadow variables for the lookup cache
434 globals. Put their decls in the *_l globals for use by
435 mf_build_check_statement_for. */
437 static void
438 mf_decl_cache_locals (void)
440 tree t, shift_init_stmts, mask_init_stmts;
441 tree_stmt_iterator tsi;
443 /* Build the cache vars. */
444 mf_cache_shift_decl_l
445 = mf_mark (create_tmp_var (TREE_TYPE (mf_cache_shift_decl),
446 "__mf_lookup_shift_l"));
448 mf_cache_mask_decl_l
449 = mf_mark (create_tmp_var (TREE_TYPE (mf_cache_mask_decl),
450 "__mf_lookup_mask_l"));
452 /* Build initialization nodes for the cache vars. We just load the
453 globals into the cache variables. */
454 t = build (MODIFY_EXPR, TREE_TYPE (mf_cache_shift_decl_l),
455 mf_cache_shift_decl_l, mf_cache_shift_decl);
456 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (current_function_decl));
457 gimplify_to_stmt_list (&t);
458 shift_init_stmts = t;
460 t = build (MODIFY_EXPR, TREE_TYPE (mf_cache_mask_decl_l),
461 mf_cache_mask_decl_l, mf_cache_mask_decl);
462 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (current_function_decl));
463 gimplify_to_stmt_list (&t);
464 mask_init_stmts = t;
466 /* Anticipating multiple entry points, we insert the cache vars
467 initializers in each successor of the ENTRY_BLOCK_PTR. */
468 for (tsi = tsi_start (shift_init_stmts);
469 ! tsi_end_p (tsi);
470 tsi_next (&tsi))
471 insert_edge_copies (tsi_stmt (tsi), ENTRY_BLOCK_PTR);
473 for (tsi = tsi_start (mask_init_stmts);
474 ! tsi_end_p (tsi);
475 tsi_next (&tsi))
476 insert_edge_copies (tsi_stmt (tsi), ENTRY_BLOCK_PTR);
477 bsi_commit_edge_inserts ();
481 static void
482 mf_decl_clear_locals (void)
484 /* Unset local shadows. */
485 mf_cache_shift_decl_l = NULL_TREE;
486 mf_cache_mask_decl_l = NULL_TREE;
489 static void
490 mf_build_check_statement_for (tree base, tree limit,
491 block_stmt_iterator *instr_bsi,
492 location_t *locus, tree dirflag)
494 tree_stmt_iterator head, tsi;
495 block_stmt_iterator bsi;
496 basic_block cond_bb, then_bb, join_bb;
497 edge e;
498 tree cond, t, u, v, l1, l2;
499 tree mf_base;
500 tree mf_elem;
501 tree mf_limit;
503 /* We first need to split the current basic block, and start altering
504 the CFG. This allows us to insert the statements we're about to
505 construct into the right basic blocks. The label l1 is the label
506 of the block for the THEN clause of the conditional jump we're
507 about to construct, and l2 is the ELSE clause, which is just the
508 continuation of the old statement stream. */
509 l1 = create_artificial_label ();
510 l2 = create_artificial_label ();
511 cond_bb = bb_for_stmt (bsi_stmt (*instr_bsi));
512 bsi = *instr_bsi;
513 bsi_prev (&bsi);
514 if (! bsi_end_p (bsi))
516 /* We're processing a statement in the middle of the block, so
517 we need to split the block. This creates a new block and a new
518 fallthrough edge. */
519 e = split_block (cond_bb, bsi_stmt (bsi));
520 cond_bb = e->src;
521 join_bb = e->dest;
523 else
525 /* We're processing the first statement in the block, so we need
526 to split the incoming edge. This also creates a new block
527 and a new fallthrough edge. */
528 join_bb = cond_bb;
529 cond_bb = split_edge (find_edge (join_bb->prev_bb, join_bb));
532 /* A recap at this point: join_bb is the basic block at whose head
533 is the gimple statement for which this check expression is being
534 built. cond_bb is the (possibly new, synthetic) basic block the
535 end of which will contain the cache-lookup code, and a
536 conditional that jumps to the cache-miss code or, much more
537 likely, over to join_bb. */
539 /* Create the bb that contains the cache-miss fallback block (mf_check). */
540 then_bb = create_empty_bb (cond_bb);
541 make_edge (cond_bb, then_bb, EDGE_TRUE_VALUE);
542 make_single_succ_edge (then_bb, join_bb, EDGE_FALLTHRU);
544 /* We expect that the conditional jump we will construct will not
545 be taken very often as it basically is an exception condition. */
546 predict_edge_def (EDGE_PRED (then_bb, 0), PRED_MUDFLAP, NOT_TAKEN);
548 /* Mark the pseudo-fallthrough edge from cond_bb to join_bb. */
549 e = find_edge (cond_bb, join_bb);
550 e->flags = EDGE_FALSE_VALUE;
551 predict_edge_def (e, PRED_MUDFLAP, TAKEN);
553 /* Update dominance info. Note that bb_join's data was
554 updated by split_block. */
555 if (dom_info_available_p (CDI_DOMINATORS))
557 set_immediate_dominator (CDI_DOMINATORS, then_bb, cond_bb);
558 set_immediate_dominator (CDI_DOMINATORS, join_bb, cond_bb);
561 /* Build our local variables. */
562 mf_elem = create_tmp_var (mf_cache_structptr_type, "__mf_elem");
563 mf_base = create_tmp_var (mf_uintptr_type, "__mf_base");
564 mf_limit = create_tmp_var (mf_uintptr_type, "__mf_limit");
566 /* Build: __mf_base = (uintptr_t) <base address expression>. */
567 t = build (MODIFY_EXPR, void_type_node, mf_base,
568 convert (mf_uintptr_type, unshare_expr (base)));
569 SET_EXPR_LOCUS (t, locus);
570 gimplify_to_stmt_list (&t);
571 head = tsi_start (t);
572 tsi = tsi_last (t);
574 /* Build: __mf_limit = (uintptr_t) <limit address expression>. */
575 t = build (MODIFY_EXPR, void_type_node, mf_limit,
576 convert (mf_uintptr_type, unshare_expr (limit)));
577 SET_EXPR_LOCUS (t, locus);
578 gimplify_to_stmt_list (&t);
579 tsi_link_after (&tsi, t, TSI_CONTINUE_LINKING);
581 /* Build: __mf_elem = &__mf_lookup_cache [(__mf_base >> __mf_shift)
582 & __mf_mask]. */
583 t = build (RSHIFT_EXPR, mf_uintptr_type, mf_base,
584 (flag_mudflap_threads ? mf_cache_shift_decl : mf_cache_shift_decl_l));
585 t = build (BIT_AND_EXPR, mf_uintptr_type, t,
586 (flag_mudflap_threads ? mf_cache_mask_decl : mf_cache_mask_decl_l));
587 t = build (ARRAY_REF,
588 TREE_TYPE (TREE_TYPE (mf_cache_array_decl)),
589 mf_cache_array_decl, t, NULL_TREE, NULL_TREE);
590 t = build1 (ADDR_EXPR, mf_cache_structptr_type, t);
591 t = build (MODIFY_EXPR, void_type_node, mf_elem, t);
592 SET_EXPR_LOCUS (t, locus);
593 gimplify_to_stmt_list (&t);
594 tsi_link_after (&tsi, t, TSI_CONTINUE_LINKING);
596 /* Quick validity check.
598 if (__mf_elem->low > __mf_base
599 || (__mf_elem_high < __mf_limit))
601 __mf_check ();
602 ... and only if single-threaded:
603 __mf_lookup_shift_1 = f...;
604 __mf_lookup_mask_l = ...;
607 It is expected that this body of code is rarely executed so we mark
608 the edge to the THEN clause of the conditional jump as unlikely. */
610 /* Construct t <-- '__mf_elem->low > __mf_base'. */
611 t = build (COMPONENT_REF, mf_uintptr_type,
612 build1 (INDIRECT_REF, mf_cache_struct_type, mf_elem),
613 TYPE_FIELDS (mf_cache_struct_type), NULL_TREE);
614 t = build (GT_EXPR, boolean_type_node, t, mf_base);
616 /* Construct '__mf_elem->high < __mf_limit'.
618 First build:
619 1) u <-- '__mf_elem->high'
620 2) v <-- '__mf_limit'.
622 Then build 'u <-- (u < v). */
624 u = build (COMPONENT_REF, mf_uintptr_type,
625 build1 (INDIRECT_REF, mf_cache_struct_type, mf_elem),
626 TREE_CHAIN (TYPE_FIELDS (mf_cache_struct_type)), NULL_TREE);
628 v = mf_limit;
630 u = build (LT_EXPR, boolean_type_node, u, v);
632 /* Build the composed conditional: t <-- 't || u'. Then store the
633 result of the evaluation of 't' in a temporary variable which we
634 can use as the condition for the conditional jump. */
635 t = build (TRUTH_OR_EXPR, boolean_type_node, t, u);
636 cond = create_tmp_var (boolean_type_node, "__mf_unlikely_cond");
637 t = build (MODIFY_EXPR, boolean_type_node, cond, t);
638 gimplify_to_stmt_list (&t);
639 tsi_link_after (&tsi, t, TSI_CONTINUE_LINKING);
641 /* Build the conditional jump. 'cond' is just a temporary so we can
642 simply build a void COND_EXPR. We do need labels in both arms though. */
643 t = build (COND_EXPR, void_type_node, cond,
644 build (GOTO_EXPR, void_type_node, tree_block_label (then_bb)),
645 build (GOTO_EXPR, void_type_node, tree_block_label (join_bb)));
646 SET_EXPR_LOCUS (t, locus);
647 tsi_link_after (&tsi, t, TSI_CONTINUE_LINKING);
649 /* At this point, after so much hard work, we have only constructed
650 the conditional jump,
652 if (__mf_elem->low > __mf_base
653 || (__mf_elem_high < __mf_limit))
655 The lowered GIMPLE tree representing this code is in the statement
656 list starting at 'head'.
658 We can insert this now in the current basic block, i.e. the one that
659 the statement we're instrumenting was originally in. */
660 bsi = bsi_last (cond_bb);
661 for (tsi = head; ! tsi_end_p (tsi); tsi_next (&tsi))
662 bsi_insert_after (&bsi, tsi_stmt (tsi), BSI_CONTINUE_LINKING);
664 /* Now build up the body of the cache-miss handling:
666 __mf_check();
667 refresh *_l vars.
669 This is the body of the conditional. */
671 u = tree_cons (NULL_TREE,
672 mf_file_function_line_tree (locus == NULL ? UNKNOWN_LOCATION
673 : *locus),
674 NULL_TREE);
675 u = tree_cons (NULL_TREE, dirflag, u);
676 /* NB: we pass the overall [base..limit] range to mf_check. */
677 u = tree_cons (NULL_TREE,
678 fold (build (PLUS_EXPR, integer_type_node,
679 fold (build (MINUS_EXPR, mf_uintptr_type, mf_limit, mf_base)),
680 integer_one_node)),
682 u = tree_cons (NULL_TREE, mf_base, u);
683 t = build_function_call_expr (mf_check_fndecl, u);
684 gimplify_to_stmt_list (&t);
685 head = tsi_start (t);
686 tsi = tsi_last (t);
688 if (! flag_mudflap_threads)
690 t = build (MODIFY_EXPR, void_type_node,
691 mf_cache_shift_decl_l, mf_cache_shift_decl);
692 tsi_link_after (&tsi, t, TSI_CONTINUE_LINKING);
694 t = build (MODIFY_EXPR, void_type_node,
695 mf_cache_mask_decl_l, mf_cache_mask_decl);
696 tsi_link_after (&tsi, t, TSI_CONTINUE_LINKING);
699 /* Insert the check code in the THEN block. */
700 bsi = bsi_start (then_bb);
701 for (tsi = head; ! tsi_end_p (tsi); tsi_next (&tsi))
702 bsi_insert_after (&bsi, tsi_stmt (tsi), BSI_CONTINUE_LINKING);
704 *instr_bsi = bsi_start (join_bb);
705 bsi_next (instr_bsi);
709 /* Check whether the given decl, generally a VAR_DECL or PARM_DECL, is
710 eligible for instrumentation. For the mudflap1 pass, this implies
711 that it should be registered with the libmudflap runtime. For the
712 mudflap2 pass this means instrumenting an indirection operation with
713 respect to the object.
715 static int
716 mf_decl_eligible_p (tree decl)
718 return ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
719 /* The decl must have its address taken. In the case of
720 arrays, this flag is also set if the indexes are not
721 compile-time known valid constants. */
722 && TREE_ADDRESSABLE (decl)
723 /* The type of the variable must be complete. */
724 && COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (decl))
725 /* The decl hasn't been decomposed somehow. */
726 && DECL_VALUE_EXPR (decl) == NULL);
730 static void
731 mf_xform_derefs_1 (block_stmt_iterator *iter, tree *tp,
732 location_t *locus, tree dirflag)
734 tree type, base, limit, addr, size, t;
736 /* Don't instrument read operations. */
737 if (dirflag == integer_zero_node && flag_mudflap_ignore_reads)
738 return;
740 /* Don't instrument marked nodes. */
741 if (mf_marked_p (*tp))
742 return;
744 t = *tp;
745 type = TREE_TYPE (t);
746 size = TYPE_SIZE_UNIT (type);
748 switch (TREE_CODE (t))
750 case ARRAY_REF:
751 case COMPONENT_REF:
753 /* This is trickier than it may first appear. The reason is
754 that we are looking at expressions from the "inside out" at
755 this point. We may have a complex nested aggregate/array
756 expression (e.g. "a.b[i].c"), maybe with an indirection as
757 the leftmost operator ("p->a.b.d"), where instrumentation
758 is necessary. Or we may have an innocent "a.b.c"
759 expression that must not be instrumented. We need to
760 recurse all the way down the nesting structure to figure it
761 out: looking just at the outer node is not enough. */
762 tree var;
763 int component_ref_only = (TREE_CODE (t) == COMPONENT_REF);
764 /* If we have a bitfield component reference, we must note the
765 innermost addressable object in ELT, from which we will
766 construct the byte-addressable bounds of the bitfield. */
767 tree elt = NULL_TREE;
768 int bitfield_ref_p = (TREE_CODE (t) == COMPONENT_REF
769 && DECL_BIT_FIELD_TYPE (TREE_OPERAND (t, 1)));
771 /* Iterate to the top of the ARRAY_REF/COMPONENT_REF
772 containment hierarchy to find the outermost VAR_DECL. */
773 var = TREE_OPERAND (t, 0);
774 while (1)
776 if (bitfield_ref_p && elt == NULL_TREE
777 && (TREE_CODE (var) == ARRAY_REF || TREE_CODE (var) == COMPONENT_REF))
778 elt = var;
780 if (TREE_CODE (var) == ARRAY_REF)
782 component_ref_only = 0;
783 var = TREE_OPERAND (var, 0);
785 else if (TREE_CODE (var) == COMPONENT_REF)
786 var = TREE_OPERAND (var, 0);
787 else if (INDIRECT_REF_P (var))
789 base = TREE_OPERAND (var, 0);
790 break;
792 else
794 gcc_assert (TREE_CODE (var) == VAR_DECL
795 || TREE_CODE (var) == PARM_DECL
796 || TREE_CODE (var) == RESULT_DECL
797 || TREE_CODE (var) == STRING_CST);
798 /* Don't instrument this access if the underlying
799 variable is not "eligible". This test matches
800 those arrays that have only known-valid indexes,
801 and thus are not labeled TREE_ADDRESSABLE. */
802 if (! mf_decl_eligible_p (var) || component_ref_only)
803 return;
804 else
806 base = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (var)), var);
807 break;
812 /* Handle the case of ordinary non-indirection structure
813 accesses. These have only nested COMPONENT_REF nodes (no
814 INDIRECT_REF), but pass through the above filter loop.
815 Note that it's possible for such a struct variable to match
816 the eligible_p test because someone else might take its
817 address sometime. */
819 /* We need special processing for bitfield components, because
820 their addresses cannot be taken. */
821 if (bitfield_ref_p)
823 tree field = TREE_OPERAND (t, 1);
825 if (TREE_CODE (DECL_SIZE_UNIT (field)) == INTEGER_CST)
826 size = DECL_SIZE_UNIT (field);
828 if (elt)
829 elt = build1 (ADDR_EXPR, build_pointer_type TREE_TYPE (elt), elt);
830 addr = fold_convert (ptr_type_node, elt ? elt : base);
831 addr = fold (build (PLUS_EXPR, ptr_type_node,
832 addr, fold_convert (ptr_type_node,
833 byte_position (field))));
835 else
836 addr = build1 (ADDR_EXPR, build_pointer_type (type), t);
838 limit = fold (build (MINUS_EXPR, mf_uintptr_type,
839 fold (build2 (PLUS_EXPR, mf_uintptr_type,
840 convert (mf_uintptr_type, addr),
841 size)),
842 integer_one_node));
844 break;
846 case INDIRECT_REF:
847 addr = TREE_OPERAND (t, 0);
848 base = addr;
849 limit = fold (build (MINUS_EXPR, ptr_type_node,
850 fold (build (PLUS_EXPR, ptr_type_node, base, size)),
851 integer_one_node));
852 break;
854 case ARRAY_RANGE_REF:
855 warning ("mudflap checking not yet implemented for ARRAY_RANGE_REF");
856 return;
858 case BIT_FIELD_REF:
859 /* ??? merge with COMPONENT_REF code above? */
861 tree ofs, rem, bpu;
863 /* If we're not dereferencing something, then the access
864 must be ok. */
865 if (TREE_CODE (TREE_OPERAND (t, 0)) != INDIRECT_REF)
866 return;
868 bpu = bitsize_int (BITS_PER_UNIT);
869 ofs = convert (bitsizetype, TREE_OPERAND (t, 2));
870 rem = size_binop (TRUNC_MOD_EXPR, ofs, bpu);
871 ofs = size_binop (TRUNC_DIV_EXPR, ofs, bpu);
873 size = convert (bitsizetype, TREE_OPERAND (t, 1));
874 size = size_binop (PLUS_EXPR, size, rem);
875 size = size_binop (CEIL_DIV_EXPR, size, bpu);
876 size = convert (sizetype, size);
878 addr = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
879 addr = convert (ptr_type_node, addr);
880 addr = fold (build (PLUS_EXPR, ptr_type_node, addr, ofs));
882 base = addr;
883 limit = fold (build (MINUS_EXPR, ptr_type_node,
884 fold (build (PLUS_EXPR, ptr_type_node, base, size)),
885 integer_one_node));
887 break;
889 default:
890 return;
893 mf_build_check_statement_for (base, limit, iter, locus, dirflag);
896 static void
897 mf_xform_derefs (void)
899 basic_block bb, next;
900 block_stmt_iterator i;
901 int saved_last_basic_block = last_basic_block;
903 bb = ENTRY_BLOCK_PTR ->next_bb;
906 next = bb->next_bb;
907 for (i = bsi_start (bb); !bsi_end_p (i); bsi_next (&i))
909 tree s = bsi_stmt (i);
911 /* Only a few GIMPLE statements can reference memory. */
912 switch (TREE_CODE (s))
914 case MODIFY_EXPR:
915 mf_xform_derefs_1 (&i, &TREE_OPERAND (s, 0), EXPR_LOCUS (s),
916 integer_one_node);
917 mf_xform_derefs_1 (&i, &TREE_OPERAND (s, 1), EXPR_LOCUS (s),
918 integer_zero_node);
919 break;
921 case RETURN_EXPR:
922 if (TREE_OPERAND (s, 0) != NULL_TREE)
924 if (TREE_CODE (TREE_OPERAND (s, 0)) == MODIFY_EXPR)
925 mf_xform_derefs_1 (&i, &TREE_OPERAND (TREE_OPERAND (s, 0), 1),
926 EXPR_LOCUS (s), integer_zero_node);
927 else
928 mf_xform_derefs_1 (&i, &TREE_OPERAND (s, 0), EXPR_LOCUS (s),
929 integer_zero_node);
931 break;
933 default:
937 bb = next;
939 while (bb && bb->index <= saved_last_basic_block);
942 /* ------------------------------------------------------------------------ */
943 /* ADDR_EXPR transforms. Perform the declaration-related mudflap tree
944 transforms on the current function.
946 This is the first part of the mudflap instrumentation. It works on
947 high-level GIMPLE because after lowering, all variables are moved out
948 of their BIND_EXPR binding context, and we lose liveness information
949 for the declarations we wish to instrument. */
951 static void
952 execute_mudflap_function_decls (void)
954 /* Don't instrument functions such as the synthetic constructor
955 built during mudflap_finish_file. */
956 if (mf_marked_p (current_function_decl) ||
957 DECL_ARTIFICIAL (current_function_decl))
958 return;
960 push_gimplify_context ();
962 mf_xform_decls (DECL_SAVED_TREE (current_function_decl),
963 DECL_ARGUMENTS (current_function_decl));
965 pop_gimplify_context (NULL);
968 /* This struct is passed between mf_xform_decls to store state needed
969 during the traversal searching for objects that have their
970 addresses taken. */
971 struct mf_xform_decls_data
973 tree param_decls;
977 /* Synthesize a CALL_EXPR and a TRY_FINALLY_EXPR, for this chain of
978 _DECLs if appropriate. Arrange to call the __mf_register function
979 now, and the __mf_unregister function later for each. */
980 static void
981 mx_register_decls (tree decl, tree *stmt_list)
983 tree finally_stmts = NULL_TREE;
984 tree_stmt_iterator initially_stmts = tsi_start (*stmt_list);
986 while (decl != NULL_TREE)
988 if (mf_decl_eligible_p (decl)
989 /* Not already processed. */
990 && ! mf_marked_p (decl)
991 /* Automatic variable. */
992 && ! DECL_EXTERNAL (decl)
993 && ! TREE_STATIC (decl))
995 tree size = NULL_TREE, variable_name;
996 tree unregister_fncall, unregister_fncall_params;
997 tree register_fncall, register_fncall_params;
999 size = convert (size_type_node, TYPE_SIZE_UNIT (TREE_TYPE (decl)));
1001 /* (& VARIABLE, sizeof (VARIABLE), __MF_TYPE_STACK) */
1002 unregister_fncall_params =
1003 tree_cons (NULL_TREE,
1004 convert (ptr_type_node,
1005 mf_mark (build1 (ADDR_EXPR,
1006 build_pointer_type (TREE_TYPE (decl)),
1007 decl))),
1008 tree_cons (NULL_TREE,
1009 size,
1010 tree_cons (NULL_TREE,
1011 /* __MF_TYPE_STACK */
1012 build_int_cst (NULL_TREE, 3),
1013 NULL_TREE)));
1014 /* __mf_unregister (...) */
1015 unregister_fncall = build_function_call_expr (mf_unregister_fndecl,
1016 unregister_fncall_params);
1018 /* (& VARIABLE, sizeof (VARIABLE), __MF_TYPE_STACK, "name") */
1019 variable_name = mf_varname_tree (decl);
1020 register_fncall_params =
1021 tree_cons (NULL_TREE,
1022 convert (ptr_type_node,
1023 mf_mark (build1 (ADDR_EXPR,
1024 build_pointer_type (TREE_TYPE (decl)),
1025 decl))),
1026 tree_cons (NULL_TREE,
1027 size,
1028 tree_cons (NULL_TREE,
1029 /* __MF_TYPE_STACK */
1030 build_int_cst (NULL_TREE, 3),
1031 tree_cons (NULL_TREE,
1032 variable_name,
1033 NULL_TREE))));
1035 /* __mf_register (...) */
1036 register_fncall = build_function_call_expr (mf_register_fndecl,
1037 register_fncall_params);
1039 /* Accumulate the two calls. */
1040 /* ??? Set EXPR_LOCATION. */
1041 gimplify_stmt (&register_fncall);
1042 gimplify_stmt (&unregister_fncall);
1044 /* Add the __mf_register call at the current appending point. */
1045 if (tsi_end_p (initially_stmts))
1046 warning ("mudflap cannot track %qs in stub function",
1047 IDENTIFIER_POINTER (DECL_NAME (decl)));
1048 else
1050 tsi_link_before (&initially_stmts, register_fncall, TSI_SAME_STMT);
1052 /* Accumulate the FINALLY piece. */
1053 append_to_statement_list (unregister_fncall, &finally_stmts);
1055 mf_mark (decl);
1058 decl = TREE_CHAIN (decl);
1061 /* Actually, (initially_stmts!=NULL) <=> (finally_stmts!=NULL) */
1062 if (finally_stmts != NULL_TREE)
1064 tree t = build (TRY_FINALLY_EXPR, void_type_node,
1065 *stmt_list, finally_stmts);
1066 *stmt_list = NULL;
1067 append_to_statement_list (t, stmt_list);
1072 /* Process every variable mentioned in BIND_EXPRs. */
1073 static tree
1074 mx_xfn_xform_decls (tree *t, int *continue_p, void *data)
1076 struct mf_xform_decls_data* d = (struct mf_xform_decls_data*) data;
1078 if (*t == NULL_TREE || *t == error_mark_node)
1080 *continue_p = 0;
1081 return NULL_TREE;
1084 *continue_p = 1;
1086 switch (TREE_CODE (*t))
1088 case BIND_EXPR:
1090 /* Process function parameters now (but only once). */
1091 mx_register_decls (d->param_decls, &BIND_EXPR_BODY (*t));
1092 d->param_decls = NULL_TREE;
1094 mx_register_decls (BIND_EXPR_VARS (*t), &BIND_EXPR_BODY (*t));
1096 break;
1098 default:
1099 break;
1102 return NULL_TREE;
1105 /* Perform the object lifetime tracking mudflap transform on the given function
1106 tree. The tree is mutated in place, with possibly copied subtree nodes.
1108 For every auto variable declared, if its address is ever taken
1109 within the function, then supply its lifetime to the mudflap
1110 runtime with the __mf_register and __mf_unregister calls.
1113 static void
1114 mf_xform_decls (tree fnbody, tree fnparams)
1116 struct mf_xform_decls_data d;
1117 d.param_decls = fnparams;
1118 walk_tree_without_duplicates (&fnbody, mx_xfn_xform_decls, &d);
1122 /* ------------------------------------------------------------------------ */
1123 /* Externally visible mudflap functions. */
1126 /* Mark and return the given tree node to prevent further mudflap
1127 transforms. */
1128 static GTY ((param_is (union tree_node))) htab_t marked_trees = NULL;
1130 tree
1131 mf_mark (tree t)
1133 void **slot;
1135 if (marked_trees == NULL)
1136 marked_trees = htab_create_ggc (31, htab_hash_pointer, htab_eq_pointer, NULL);
1138 slot = htab_find_slot (marked_trees, t, INSERT);
1139 *slot = t;
1140 return t;
1144 mf_marked_p (tree t)
1146 void *entry;
1148 if (marked_trees == NULL)
1149 return 0;
1151 entry = htab_find (marked_trees, t);
1152 return (entry != NULL);
1155 /* Remember given node as a static of some kind: global data,
1156 function-scope static, or an anonymous constant. Its assembler
1157 label is given. */
1159 /* A list of globals whose incomplete declarations we encountered.
1160 Instead of emitting the __mf_register call for them here, it's
1161 delayed until program finish time. If they're still incomplete by
1162 then, warnings are emitted. */
1164 static GTY (()) varray_type deferred_static_decls;
1166 /* A list of statements for calling __mf_register() at startup time. */
1167 static GTY (()) tree enqueued_call_stmt_chain;
1169 static void
1170 mudflap_register_call (tree obj, tree object_size, tree varname)
1172 tree arg, args, call_stmt;
1174 args = tree_cons (NULL_TREE, varname, NULL_TREE);
1176 arg = build_int_cst (NULL_TREE, 4); /* __MF_TYPE_STATIC */
1177 args = tree_cons (NULL_TREE, arg, args);
1179 arg = convert (size_type_node, object_size);
1180 args = tree_cons (NULL_TREE, arg, args);
1182 arg = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (obj)), obj);
1183 arg = convert (ptr_type_node, arg);
1184 args = tree_cons (NULL_TREE, arg, args);
1186 call_stmt = build_function_call_expr (mf_register_fndecl, args);
1188 append_to_statement_list (call_stmt, &enqueued_call_stmt_chain);
1191 void
1192 mudflap_enqueue_decl (tree obj)
1194 if (mf_marked_p (obj))
1195 return;
1197 /* We don't need to process variable decls that are internally
1198 generated extern. If we did, we'd end up with warnings for them
1199 during mudflap_finish_file (). That would confuse the user,
1200 since the text would refer to variables that don't show up in the
1201 user's source code. */
1202 if (DECL_P (obj) && DECL_EXTERNAL (obj) && DECL_ARTIFICIAL (obj))
1203 return;
1205 if (! deferred_static_decls)
1206 VARRAY_TREE_INIT (deferred_static_decls, 10, "deferred static list");
1208 VARRAY_PUSH_TREE (deferred_static_decls, obj);
1212 void
1213 mudflap_enqueue_constant (tree obj)
1215 tree object_size, varname;
1217 if (mf_marked_p (obj))
1218 return;
1220 if (TREE_CODE (obj) == STRING_CST)
1221 object_size = build_int_cst (NULL_TREE, TREE_STRING_LENGTH (obj));
1222 else
1223 object_size = size_in_bytes (TREE_TYPE (obj));
1225 if (TREE_CODE (obj) == STRING_CST)
1226 varname = mf_build_string ("string literal");
1227 else
1228 varname = mf_build_string ("constant");
1230 mudflap_register_call (obj, object_size, varname);
1234 /* Emit any file-wide instrumentation. */
1235 void
1236 mudflap_finish_file (void)
1238 tree ctor_statements = NULL_TREE;
1240 /* Insert a call to __mf_init. */
1242 tree call2_stmt = build_function_call_expr (mf_init_fndecl, NULL_TREE);
1243 append_to_statement_list (call2_stmt, &ctor_statements);
1246 /* If appropriate, call __mf_set_options to pass along read-ignore mode. */
1247 if (flag_mudflap_ignore_reads)
1249 tree arg = tree_cons (NULL_TREE,
1250 mf_build_string ("-ignore-reads"), NULL_TREE);
1251 tree call_stmt = build_function_call_expr (mf_set_options_fndecl, arg);
1252 append_to_statement_list (call_stmt, &ctor_statements);
1255 /* Process all enqueued object decls. */
1256 if (deferred_static_decls)
1258 size_t i;
1259 for (i = 0; i < VARRAY_ACTIVE_SIZE (deferred_static_decls); i++)
1261 tree obj = VARRAY_TREE (deferred_static_decls, i);
1263 gcc_assert (DECL_P (obj));
1265 if (mf_marked_p (obj))
1266 continue;
1268 /* Omit registration for static unaddressed objects. NB:
1269 Perform registration for non-static objects regardless of
1270 TREE_USED or TREE_ADDRESSABLE, because they may be used
1271 from other compilation units. */
1272 if (TREE_STATIC (obj) && ! TREE_ADDRESSABLE (obj))
1273 continue;
1275 if (! COMPLETE_TYPE_P (TREE_TYPE (obj)))
1277 warning ("mudflap cannot track unknown size extern %qs",
1278 IDENTIFIER_POINTER (DECL_NAME (obj)));
1279 continue;
1282 mudflap_register_call (obj,
1283 size_in_bytes (TREE_TYPE (obj)),
1284 mf_varname_tree (obj));
1287 VARRAY_CLEAR (deferred_static_decls);
1290 /* Append all the enqueued registration calls. */
1291 if (enqueued_call_stmt_chain)
1293 append_to_statement_list (enqueued_call_stmt_chain, &ctor_statements);
1294 enqueued_call_stmt_chain = NULL_TREE;
1297 cgraph_build_static_cdtor ('I', ctor_statements,
1298 MAX_RESERVED_INIT_PRIORITY-1);
1302 static bool
1303 gate_mudflap (void)
1305 return flag_mudflap != 0;
1308 struct tree_opt_pass pass_mudflap_1 =
1310 "mudflap1", /* name */
1311 gate_mudflap, /* gate */
1312 execute_mudflap_function_decls, /* execute */
1313 NULL, /* sub */
1314 NULL, /* next */
1315 0, /* static_pass_number */
1316 0, /* tv_id */
1317 PROP_gimple_any, /* properties_required */
1318 0, /* properties_provided */
1319 0, /* properties_destroyed */
1320 0, /* todo_flags_start */
1321 TODO_dump_func, /* todo_flags_finish */
1322 0 /* letter */
1325 struct tree_opt_pass pass_mudflap_2 =
1327 "mudflap2", /* name */
1328 gate_mudflap, /* gate */
1329 execute_mudflap_function_ops, /* execute */
1330 NULL, /* sub */
1331 NULL, /* next */
1332 0, /* static_pass_number */
1333 0, /* tv_id */
1334 PROP_gimple_leh, /* properties_required */
1335 0, /* properties_provided */
1336 0, /* properties_destroyed */
1337 0, /* todo_flags_start */
1338 TODO_verify_flow | TODO_verify_stmts
1339 | TODO_dump_func, /* todo_flags_finish */
1340 0 /* letter */
1343 #include "gt-tree-mudflap.h"