+ * trans-mem.c: Add contributed-by.
[official-gcc.git] / gcc / trans-mem.c
blobe7707acce688b9eed07f6aaaa2d71f975b18e29b
1 /* Passes for transactional memory support.
2 Copyright (C) 2008-2015 Free Software Foundation, Inc.
3 Contributed by Richard Henderson <rth@redhat.com>
4 and Aldy Hernandez <aldyh@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 3, 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 COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "alias.h"
26 #include "backend.h"
27 #include "cfghooks.h"
28 #include "tree.h"
29 #include "gimple.h"
30 #include "rtl.h"
31 #include "ssa.h"
32 #include "options.h"
33 #include "fold-const.h"
34 #include "internal-fn.h"
35 #include "tree-eh.h"
36 #include "calls.h"
37 #include "emit-rtl.h"
38 #include "gimplify.h"
39 #include "gimple-iterator.h"
40 #include "gimplify-me.h"
41 #include "gimple-walk.h"
42 #include "cgraph.h"
43 #include "tree-cfg.h"
44 #include "tree-into-ssa.h"
45 #include "tree-pass.h"
46 #include "tree-inline.h"
47 #include "diagnostic-core.h"
48 #include "demangle.h"
49 #include "output.h"
50 #include "trans-mem.h"
51 #include "params.h"
52 #include "target.h"
53 #include "langhooks.h"
54 #include "gimple-pretty-print.h"
55 #include "cfgloop.h"
56 #include "tree-ssa-address.h"
59 #define A_RUNINSTRUMENTEDCODE 0x0001
60 #define A_RUNUNINSTRUMENTEDCODE 0x0002
61 #define A_SAVELIVEVARIABLES 0x0004
62 #define A_RESTORELIVEVARIABLES 0x0008
63 #define A_ABORTTRANSACTION 0x0010
65 #define AR_USERABORT 0x0001
66 #define AR_USERRETRY 0x0002
67 #define AR_TMCONFLICT 0x0004
68 #define AR_EXCEPTIONBLOCKABORT 0x0008
69 #define AR_OUTERABORT 0x0010
71 #define MODE_SERIALIRREVOCABLE 0x0000
74 /* The representation of a transaction changes several times during the
75 lowering process. In the beginning, in the front-end we have the
76 GENERIC tree TRANSACTION_EXPR. For example,
78 __transaction {
79 local++;
80 if (++global == 10)
81 __tm_abort;
84 During initial gimplification (gimplify.c) the TRANSACTION_EXPR node is
85 trivially replaced with a GIMPLE_TRANSACTION node.
87 During pass_lower_tm, we examine the body of transactions looking
88 for aborts. Transactions that do not contain an abort may be
89 merged into an outer transaction. We also add a TRY-FINALLY node
90 to arrange for the transaction to be committed on any exit.
92 [??? Think about how this arrangement affects throw-with-commit
93 and throw-with-abort operations. In this case we want the TRY to
94 handle gotos, but not to catch any exceptions because the transaction
95 will already be closed.]
97 GIMPLE_TRANSACTION [label=NULL] {
98 try {
99 local = local + 1;
100 t0 = global;
101 t1 = t0 + 1;
102 global = t1;
103 if (t1 == 10)
104 __builtin___tm_abort ();
105 } finally {
106 __builtin___tm_commit ();
110 During pass_lower_eh, we create EH regions for the transactions,
111 intermixed with the regular EH stuff. This gives us a nice persistent
112 mapping (all the way through rtl) from transactional memory operation
113 back to the transaction, which allows us to get the abnormal edges
114 correct to model transaction aborts and restarts:
116 GIMPLE_TRANSACTION [label=over]
117 local = local + 1;
118 t0 = global;
119 t1 = t0 + 1;
120 global = t1;
121 if (t1 == 10)
122 __builtin___tm_abort ();
123 __builtin___tm_commit ();
124 over:
126 This is the end of all_lowering_passes, and so is what is present
127 during the IPA passes, and through all of the optimization passes.
129 During pass_ipa_tm, we examine all GIMPLE_TRANSACTION blocks in all
130 functions and mark functions for cloning.
132 At the end of gimple optimization, before exiting SSA form,
133 pass_tm_edges replaces statements that perform transactional
134 memory operations with the appropriate TM builtins, and swap
135 out function calls with their transactional clones. At this
136 point we introduce the abnormal transaction restart edges and
137 complete lowering of the GIMPLE_TRANSACTION node.
139 x = __builtin___tm_start (MAY_ABORT);
140 eh_label:
141 if (x & abort_transaction)
142 goto over;
143 local = local + 1;
144 t0 = __builtin___tm_load (global);
145 t1 = t0 + 1;
146 __builtin___tm_store (&global, t1);
147 if (t1 == 10)
148 __builtin___tm_abort ();
149 __builtin___tm_commit ();
150 over:
153 static void *expand_regions (struct tm_region *,
154 void *(*callback)(struct tm_region *, void *),
155 void *, bool);
158 /* Return the attributes we want to examine for X, or NULL if it's not
159 something we examine. We look at function types, but allow pointers
160 to function types and function decls and peek through. */
162 static tree
163 get_attrs_for (const_tree x)
165 if (x == NULL_TREE)
166 return NULL_TREE;
168 switch (TREE_CODE (x))
170 case FUNCTION_DECL:
171 return TYPE_ATTRIBUTES (TREE_TYPE (x));
172 break;
174 default:
175 if (TYPE_P (x))
176 return NULL_TREE;
177 x = TREE_TYPE (x);
178 if (TREE_CODE (x) != POINTER_TYPE)
179 return NULL_TREE;
180 /* FALLTHRU */
182 case POINTER_TYPE:
183 x = TREE_TYPE (x);
184 if (TREE_CODE (x) != FUNCTION_TYPE && TREE_CODE (x) != METHOD_TYPE)
185 return NULL_TREE;
186 /* FALLTHRU */
188 case FUNCTION_TYPE:
189 case METHOD_TYPE:
190 return TYPE_ATTRIBUTES (x);
194 /* Return true if X has been marked TM_PURE. */
196 bool
197 is_tm_pure (const_tree x)
199 unsigned flags;
201 switch (TREE_CODE (x))
203 case FUNCTION_DECL:
204 case FUNCTION_TYPE:
205 case METHOD_TYPE:
206 break;
208 default:
209 if (TYPE_P (x))
210 return false;
211 x = TREE_TYPE (x);
212 if (TREE_CODE (x) != POINTER_TYPE)
213 return false;
214 /* FALLTHRU */
216 case POINTER_TYPE:
217 x = TREE_TYPE (x);
218 if (TREE_CODE (x) != FUNCTION_TYPE && TREE_CODE (x) != METHOD_TYPE)
219 return false;
220 break;
223 flags = flags_from_decl_or_type (x);
224 return (flags & ECF_TM_PURE) != 0;
227 /* Return true if X has been marked TM_IRREVOCABLE. */
229 static bool
230 is_tm_irrevocable (tree x)
232 tree attrs = get_attrs_for (x);
234 if (attrs && lookup_attribute ("transaction_unsafe", attrs))
235 return true;
237 /* A call to the irrevocable builtin is by definition,
238 irrevocable. */
239 if (TREE_CODE (x) == ADDR_EXPR)
240 x = TREE_OPERAND (x, 0);
241 if (TREE_CODE (x) == FUNCTION_DECL
242 && DECL_BUILT_IN_CLASS (x) == BUILT_IN_NORMAL
243 && DECL_FUNCTION_CODE (x) == BUILT_IN_TM_IRREVOCABLE)
244 return true;
246 return false;
249 /* Return true if X has been marked TM_SAFE. */
251 bool
252 is_tm_safe (const_tree x)
254 if (flag_tm)
256 tree attrs = get_attrs_for (x);
257 if (attrs)
259 if (lookup_attribute ("transaction_safe", attrs))
260 return true;
261 if (lookup_attribute ("transaction_may_cancel_outer", attrs))
262 return true;
265 return false;
268 /* Return true if CALL is const, or tm_pure. */
270 static bool
271 is_tm_pure_call (gimple call)
273 tree fn = gimple_call_fn (call);
275 if (TREE_CODE (fn) == ADDR_EXPR)
277 fn = TREE_OPERAND (fn, 0);
278 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
280 else
281 fn = TREE_TYPE (fn);
283 return is_tm_pure (fn);
286 /* Return true if X has been marked TM_CALLABLE. */
288 static bool
289 is_tm_callable (tree x)
291 tree attrs = get_attrs_for (x);
292 if (attrs)
294 if (lookup_attribute ("transaction_callable", attrs))
295 return true;
296 if (lookup_attribute ("transaction_safe", attrs))
297 return true;
298 if (lookup_attribute ("transaction_may_cancel_outer", attrs))
299 return true;
301 return false;
304 /* Return true if X has been marked TRANSACTION_MAY_CANCEL_OUTER. */
306 bool
307 is_tm_may_cancel_outer (tree x)
309 tree attrs = get_attrs_for (x);
310 if (attrs)
311 return lookup_attribute ("transaction_may_cancel_outer", attrs) != NULL;
312 return false;
315 /* Return true for built in functions that "end" a transaction. */
317 bool
318 is_tm_ending_fndecl (tree fndecl)
320 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
321 switch (DECL_FUNCTION_CODE (fndecl))
323 case BUILT_IN_TM_COMMIT:
324 case BUILT_IN_TM_COMMIT_EH:
325 case BUILT_IN_TM_ABORT:
326 case BUILT_IN_TM_IRREVOCABLE:
327 return true;
328 default:
329 break;
332 return false;
335 /* Return true if STMT is a built in function call that "ends" a
336 transaction. */
338 bool
339 is_tm_ending (gimple stmt)
341 tree fndecl;
343 if (gimple_code (stmt) != GIMPLE_CALL)
344 return false;
346 fndecl = gimple_call_fndecl (stmt);
347 return (fndecl != NULL_TREE
348 && is_tm_ending_fndecl (fndecl));
351 /* Return true if STMT is a TM load. */
353 static bool
354 is_tm_load (gimple stmt)
356 tree fndecl;
358 if (gimple_code (stmt) != GIMPLE_CALL)
359 return false;
361 fndecl = gimple_call_fndecl (stmt);
362 return (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
363 && BUILTIN_TM_LOAD_P (DECL_FUNCTION_CODE (fndecl)));
366 /* Same as above, but for simple TM loads, that is, not the
367 after-write, after-read, etc optimized variants. */
369 static bool
370 is_tm_simple_load (gimple stmt)
372 tree fndecl;
374 if (gimple_code (stmt) != GIMPLE_CALL)
375 return false;
377 fndecl = gimple_call_fndecl (stmt);
378 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
380 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
381 return (fcode == BUILT_IN_TM_LOAD_1
382 || fcode == BUILT_IN_TM_LOAD_2
383 || fcode == BUILT_IN_TM_LOAD_4
384 || fcode == BUILT_IN_TM_LOAD_8
385 || fcode == BUILT_IN_TM_LOAD_FLOAT
386 || fcode == BUILT_IN_TM_LOAD_DOUBLE
387 || fcode == BUILT_IN_TM_LOAD_LDOUBLE
388 || fcode == BUILT_IN_TM_LOAD_M64
389 || fcode == BUILT_IN_TM_LOAD_M128
390 || fcode == BUILT_IN_TM_LOAD_M256);
392 return false;
395 /* Return true if STMT is a TM store. */
397 static bool
398 is_tm_store (gimple stmt)
400 tree fndecl;
402 if (gimple_code (stmt) != GIMPLE_CALL)
403 return false;
405 fndecl = gimple_call_fndecl (stmt);
406 return (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
407 && BUILTIN_TM_STORE_P (DECL_FUNCTION_CODE (fndecl)));
410 /* Same as above, but for simple TM stores, that is, not the
411 after-write, after-read, etc optimized variants. */
413 static bool
414 is_tm_simple_store (gimple stmt)
416 tree fndecl;
418 if (gimple_code (stmt) != GIMPLE_CALL)
419 return false;
421 fndecl = gimple_call_fndecl (stmt);
422 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
424 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
425 return (fcode == BUILT_IN_TM_STORE_1
426 || fcode == BUILT_IN_TM_STORE_2
427 || fcode == BUILT_IN_TM_STORE_4
428 || fcode == BUILT_IN_TM_STORE_8
429 || fcode == BUILT_IN_TM_STORE_FLOAT
430 || fcode == BUILT_IN_TM_STORE_DOUBLE
431 || fcode == BUILT_IN_TM_STORE_LDOUBLE
432 || fcode == BUILT_IN_TM_STORE_M64
433 || fcode == BUILT_IN_TM_STORE_M128
434 || fcode == BUILT_IN_TM_STORE_M256);
436 return false;
439 /* Return true if FNDECL is BUILT_IN_TM_ABORT. */
441 static bool
442 is_tm_abort (tree fndecl)
444 return (fndecl
445 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
446 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_TM_ABORT);
449 /* Build a GENERIC tree for a user abort. This is called by front ends
450 while transforming the __tm_abort statement. */
452 tree
453 build_tm_abort_call (location_t loc, bool is_outer)
455 return build_call_expr_loc (loc, builtin_decl_explicit (BUILT_IN_TM_ABORT), 1,
456 build_int_cst (integer_type_node,
457 AR_USERABORT
458 | (is_outer ? AR_OUTERABORT : 0)));
461 /* Map for aribtrary function replacement under TM, as created
462 by the tm_wrap attribute. */
464 struct tm_wrapper_hasher : ggc_cache_ptr_hash<tree_map>
466 static inline hashval_t hash (tree_map *m) { return m->hash; }
467 static inline bool
468 equal (tree_map *a, tree_map *b)
470 return a->base.from == b->base.from;
473 static int
474 keep_cache_entry (tree_map *&m)
476 return ggc_marked_p (m->base.from);
480 static GTY((cache)) hash_table<tm_wrapper_hasher> *tm_wrap_map;
482 void
483 record_tm_replacement (tree from, tree to)
485 struct tree_map **slot, *h;
487 /* Do not inline wrapper functions that will get replaced in the TM
488 pass.
490 Suppose you have foo() that will get replaced into tmfoo(). Make
491 sure the inliner doesn't try to outsmart us and inline foo()
492 before we get a chance to do the TM replacement. */
493 DECL_UNINLINABLE (from) = 1;
495 if (tm_wrap_map == NULL)
496 tm_wrap_map = hash_table<tm_wrapper_hasher>::create_ggc (32);
498 h = ggc_alloc<tree_map> ();
499 h->hash = htab_hash_pointer (from);
500 h->base.from = from;
501 h->to = to;
503 slot = tm_wrap_map->find_slot_with_hash (h, h->hash, INSERT);
504 *slot = h;
507 /* Return a TM-aware replacement function for DECL. */
509 static tree
510 find_tm_replacement_function (tree fndecl)
512 if (tm_wrap_map)
514 struct tree_map *h, in;
516 in.base.from = fndecl;
517 in.hash = htab_hash_pointer (fndecl);
518 h = tm_wrap_map->find_with_hash (&in, in.hash);
519 if (h)
520 return h->to;
523 /* ??? We may well want TM versions of most of the common <string.h>
524 functions. For now, we've already these two defined. */
525 /* Adjust expand_call_tm() attributes as necessary for the cases
526 handled here: */
527 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
528 switch (DECL_FUNCTION_CODE (fndecl))
530 case BUILT_IN_MEMCPY:
531 return builtin_decl_explicit (BUILT_IN_TM_MEMCPY);
532 case BUILT_IN_MEMMOVE:
533 return builtin_decl_explicit (BUILT_IN_TM_MEMMOVE);
534 case BUILT_IN_MEMSET:
535 return builtin_decl_explicit (BUILT_IN_TM_MEMSET);
536 default:
537 return NULL;
540 return NULL;
543 /* When appropriate, record TM replacement for memory allocation functions.
545 FROM is the FNDECL to wrap. */
546 void
547 tm_malloc_replacement (tree from)
549 const char *str;
550 tree to;
552 if (TREE_CODE (from) != FUNCTION_DECL)
553 return;
555 /* If we have a previous replacement, the user must be explicitly
556 wrapping malloc/calloc/free. They better know what they're
557 doing... */
558 if (find_tm_replacement_function (from))
559 return;
561 str = IDENTIFIER_POINTER (DECL_NAME (from));
563 if (!strcmp (str, "malloc"))
564 to = builtin_decl_explicit (BUILT_IN_TM_MALLOC);
565 else if (!strcmp (str, "calloc"))
566 to = builtin_decl_explicit (BUILT_IN_TM_CALLOC);
567 else if (!strcmp (str, "free"))
568 to = builtin_decl_explicit (BUILT_IN_TM_FREE);
569 else
570 return;
572 TREE_NOTHROW (to) = 0;
574 record_tm_replacement (from, to);
577 /* Diagnostics for tm_safe functions/regions. Called by the front end
578 once we've lowered the function to high-gimple. */
580 /* Subroutine of diagnose_tm_safe_errors, called through walk_gimple_seq.
581 Process exactly one statement. WI->INFO is set to non-null when in
582 the context of a tm_safe function, and null for a __transaction block. */
584 #define DIAG_TM_OUTER 1
585 #define DIAG_TM_SAFE 2
586 #define DIAG_TM_RELAXED 4
588 struct diagnose_tm
590 unsigned int summary_flags : 8;
591 unsigned int block_flags : 8;
592 unsigned int func_flags : 8;
593 unsigned int saw_volatile : 1;
594 gimple stmt;
597 /* Return true if T is a volatile variable of some kind. */
599 static bool
600 volatile_var_p (tree t)
602 return (SSA_VAR_P (t)
603 && TREE_THIS_VOLATILE (TREE_TYPE (t)));
606 /* Tree callback function for diagnose_tm pass. */
608 static tree
609 diagnose_tm_1_op (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
610 void *data)
612 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
613 struct diagnose_tm *d = (struct diagnose_tm *) wi->info;
615 if (volatile_var_p (*tp)
616 && d->block_flags & DIAG_TM_SAFE
617 && !d->saw_volatile)
619 d->saw_volatile = 1;
620 error_at (gimple_location (d->stmt),
621 "invalid volatile use of %qD inside transaction",
622 *tp);
625 return NULL_TREE;
628 static inline bool
629 is_tm_safe_or_pure (const_tree x)
631 return is_tm_safe (x) || is_tm_pure (x);
634 static tree
635 diagnose_tm_1 (gimple_stmt_iterator *gsi, bool *handled_ops_p,
636 struct walk_stmt_info *wi)
638 gimple stmt = gsi_stmt (*gsi);
639 struct diagnose_tm *d = (struct diagnose_tm *) wi->info;
641 /* Save stmt for use in leaf analysis. */
642 d->stmt = stmt;
644 switch (gimple_code (stmt))
646 case GIMPLE_CALL:
648 tree fn = gimple_call_fn (stmt);
650 if ((d->summary_flags & DIAG_TM_OUTER) == 0
651 && is_tm_may_cancel_outer (fn))
652 error_at (gimple_location (stmt),
653 "%<transaction_may_cancel_outer%> function call not within"
654 " outer transaction or %<transaction_may_cancel_outer%>");
656 if (d->summary_flags & DIAG_TM_SAFE)
658 bool is_safe, direct_call_p;
659 tree replacement;
661 if (TREE_CODE (fn) == ADDR_EXPR
662 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL)
664 direct_call_p = true;
665 replacement = TREE_OPERAND (fn, 0);
666 replacement = find_tm_replacement_function (replacement);
667 if (replacement)
668 fn = replacement;
670 else
672 direct_call_p = false;
673 replacement = NULL_TREE;
676 if (is_tm_safe_or_pure (fn))
677 is_safe = true;
678 else if (is_tm_callable (fn) || is_tm_irrevocable (fn))
680 /* A function explicitly marked transaction_callable as
681 opposed to transaction_safe is being defined to be
682 unsafe as part of its ABI, regardless of its contents. */
683 is_safe = false;
685 else if (direct_call_p)
687 if (IS_TYPE_OR_DECL_P (fn)
688 && flags_from_decl_or_type (fn) & ECF_TM_BUILTIN)
689 is_safe = true;
690 else if (replacement)
692 /* ??? At present we've been considering replacements
693 merely transaction_callable, and therefore might
694 enter irrevocable. The tm_wrap attribute has not
695 yet made it into the new language spec. */
696 is_safe = false;
698 else
700 /* ??? Diagnostics for unmarked direct calls moved into
701 the IPA pass. Section 3.2 of the spec details how
702 functions not marked should be considered "implicitly
703 safe" based on having examined the function body. */
704 is_safe = true;
707 else
709 /* An unmarked indirect call. Consider it unsafe even
710 though optimization may yet figure out how to inline. */
711 is_safe = false;
714 if (!is_safe)
716 if (TREE_CODE (fn) == ADDR_EXPR)
717 fn = TREE_OPERAND (fn, 0);
718 if (d->block_flags & DIAG_TM_SAFE)
720 if (direct_call_p)
721 error_at (gimple_location (stmt),
722 "unsafe function call %qD within "
723 "atomic transaction", fn);
724 else
726 if (!DECL_P (fn) || DECL_NAME (fn))
727 error_at (gimple_location (stmt),
728 "unsafe function call %qE within "
729 "atomic transaction", fn);
730 else
731 error_at (gimple_location (stmt),
732 "unsafe indirect function call within "
733 "atomic transaction");
736 else
738 if (direct_call_p)
739 error_at (gimple_location (stmt),
740 "unsafe function call %qD within "
741 "%<transaction_safe%> function", fn);
742 else
744 if (!DECL_P (fn) || DECL_NAME (fn))
745 error_at (gimple_location (stmt),
746 "unsafe function call %qE within "
747 "%<transaction_safe%> function", fn);
748 else
749 error_at (gimple_location (stmt),
750 "unsafe indirect function call within "
751 "%<transaction_safe%> function");
757 break;
759 case GIMPLE_ASM:
760 /* ??? We ought to come up with a way to add attributes to
761 asm statements, and then add "transaction_safe" to it.
762 Either that or get the language spec to resurrect __tm_waiver. */
763 if (d->block_flags & DIAG_TM_SAFE)
764 error_at (gimple_location (stmt),
765 "asm not allowed in atomic transaction");
766 else if (d->func_flags & DIAG_TM_SAFE)
767 error_at (gimple_location (stmt),
768 "asm not allowed in %<transaction_safe%> function");
769 break;
771 case GIMPLE_TRANSACTION:
773 gtransaction *trans_stmt = as_a <gtransaction *> (stmt);
774 unsigned char inner_flags = DIAG_TM_SAFE;
776 if (gimple_transaction_subcode (trans_stmt) & GTMA_IS_RELAXED)
778 if (d->block_flags & DIAG_TM_SAFE)
779 error_at (gimple_location (stmt),
780 "relaxed transaction in atomic transaction");
781 else if (d->func_flags & DIAG_TM_SAFE)
782 error_at (gimple_location (stmt),
783 "relaxed transaction in %<transaction_safe%> function");
784 inner_flags = DIAG_TM_RELAXED;
786 else if (gimple_transaction_subcode (trans_stmt) & GTMA_IS_OUTER)
788 if (d->block_flags)
789 error_at (gimple_location (stmt),
790 "outer transaction in transaction");
791 else if (d->func_flags & DIAG_TM_OUTER)
792 error_at (gimple_location (stmt),
793 "outer transaction in "
794 "%<transaction_may_cancel_outer%> function");
795 else if (d->func_flags & DIAG_TM_SAFE)
796 error_at (gimple_location (stmt),
797 "outer transaction in %<transaction_safe%> function");
798 inner_flags |= DIAG_TM_OUTER;
801 *handled_ops_p = true;
802 if (gimple_transaction_body (trans_stmt))
804 struct walk_stmt_info wi_inner;
805 struct diagnose_tm d_inner;
807 memset (&d_inner, 0, sizeof (d_inner));
808 d_inner.func_flags = d->func_flags;
809 d_inner.block_flags = d->block_flags | inner_flags;
810 d_inner.summary_flags = d_inner.func_flags | d_inner.block_flags;
812 memset (&wi_inner, 0, sizeof (wi_inner));
813 wi_inner.info = &d_inner;
815 walk_gimple_seq (gimple_transaction_body (trans_stmt),
816 diagnose_tm_1, diagnose_tm_1_op, &wi_inner);
819 break;
821 default:
822 break;
825 return NULL_TREE;
828 static unsigned int
829 diagnose_tm_blocks (void)
831 struct walk_stmt_info wi;
832 struct diagnose_tm d;
834 memset (&d, 0, sizeof (d));
835 if (is_tm_may_cancel_outer (current_function_decl))
836 d.func_flags = DIAG_TM_OUTER | DIAG_TM_SAFE;
837 else if (is_tm_safe (current_function_decl))
838 d.func_flags = DIAG_TM_SAFE;
839 d.summary_flags = d.func_flags;
841 memset (&wi, 0, sizeof (wi));
842 wi.info = &d;
844 walk_gimple_seq (gimple_body (current_function_decl),
845 diagnose_tm_1, diagnose_tm_1_op, &wi);
847 return 0;
850 namespace {
852 const pass_data pass_data_diagnose_tm_blocks =
854 GIMPLE_PASS, /* type */
855 "*diagnose_tm_blocks", /* name */
856 OPTGROUP_NONE, /* optinfo_flags */
857 TV_TRANS_MEM, /* tv_id */
858 PROP_gimple_any, /* properties_required */
859 0, /* properties_provided */
860 0, /* properties_destroyed */
861 0, /* todo_flags_start */
862 0, /* todo_flags_finish */
865 class pass_diagnose_tm_blocks : public gimple_opt_pass
867 public:
868 pass_diagnose_tm_blocks (gcc::context *ctxt)
869 : gimple_opt_pass (pass_data_diagnose_tm_blocks, ctxt)
872 /* opt_pass methods: */
873 virtual bool gate (function *) { return flag_tm; }
874 virtual unsigned int execute (function *) { return diagnose_tm_blocks (); }
876 }; // class pass_diagnose_tm_blocks
878 } // anon namespace
880 gimple_opt_pass *
881 make_pass_diagnose_tm_blocks (gcc::context *ctxt)
883 return new pass_diagnose_tm_blocks (ctxt);
886 /* Instead of instrumenting thread private memory, we save the
887 addresses in a log which we later use to save/restore the addresses
888 upon transaction start/restart.
890 The log is keyed by address, where each element contains individual
891 statements among different code paths that perform the store.
893 This log is later used to generate either plain save/restore of the
894 addresses upon transaction start/restart, or calls to the ITM_L*
895 logging functions.
897 So for something like:
899 struct large { int x[1000]; };
900 struct large lala = { 0 };
901 __transaction {
902 lala.x[i] = 123;
906 We can either save/restore:
908 lala = { 0 };
909 trxn = _ITM_startTransaction ();
910 if (trxn & a_saveLiveVariables)
911 tmp_lala1 = lala.x[i];
912 else if (a & a_restoreLiveVariables)
913 lala.x[i] = tmp_lala1;
915 or use the logging functions:
917 lala = { 0 };
918 trxn = _ITM_startTransaction ();
919 _ITM_LU4 (&lala.x[i]);
921 Obviously, if we use _ITM_L* to log, we prefer to call _ITM_L* as
922 far up the dominator tree to shadow all of the writes to a given
923 location (thus reducing the total number of logging calls), but not
924 so high as to be called on a path that does not perform a
925 write. */
927 /* One individual log entry. We may have multiple statements for the
928 same location if neither dominate each other (on different
929 execution paths). */
930 typedef struct tm_log_entry
932 /* Address to save. */
933 tree addr;
934 /* Entry block for the transaction this address occurs in. */
935 basic_block entry_block;
936 /* Dominating statements the store occurs in. */
937 vec<gimple> stmts;
938 /* Initially, while we are building the log, we place a nonzero
939 value here to mean that this address *will* be saved with a
940 save/restore sequence. Later, when generating the save sequence
941 we place the SSA temp generated here. */
942 tree save_var;
943 } *tm_log_entry_t;
946 /* Log entry hashtable helpers. */
948 struct log_entry_hasher : pointer_hash <tm_log_entry>
950 static inline hashval_t hash (const tm_log_entry *);
951 static inline bool equal (const tm_log_entry *, const tm_log_entry *);
952 static inline void remove (tm_log_entry *);
955 /* Htab support. Return hash value for a `tm_log_entry'. */
956 inline hashval_t
957 log_entry_hasher::hash (const tm_log_entry *log)
959 return iterative_hash_expr (log->addr, 0);
962 /* Htab support. Return true if two log entries are the same. */
963 inline bool
964 log_entry_hasher::equal (const tm_log_entry *log1, const tm_log_entry *log2)
966 /* FIXME:
968 rth: I suggest that we get rid of the component refs etc.
969 I.e. resolve the reference to base + offset.
971 We may need to actually finish a merge with mainline for this,
972 since we'd like to be presented with Richi's MEM_REF_EXPRs more
973 often than not. But in the meantime your tm_log_entry could save
974 the results of get_inner_reference.
976 See: g++.dg/tm/pr46653.C
979 /* Special case plain equality because operand_equal_p() below will
980 return FALSE if the addresses are equal but they have
981 side-effects (e.g. a volatile address). */
982 if (log1->addr == log2->addr)
983 return true;
985 return operand_equal_p (log1->addr, log2->addr, 0);
988 /* Htab support. Free one tm_log_entry. */
989 inline void
990 log_entry_hasher::remove (tm_log_entry *lp)
992 lp->stmts.release ();
993 free (lp);
997 /* The actual log. */
998 static hash_table<log_entry_hasher> *tm_log;
1000 /* Addresses to log with a save/restore sequence. These should be in
1001 dominator order. */
1002 static vec<tree> tm_log_save_addresses;
1004 enum thread_memory_type
1006 mem_non_local = 0,
1007 mem_thread_local,
1008 mem_transaction_local,
1009 mem_max
1012 typedef struct tm_new_mem_map
1014 /* SSA_NAME being dereferenced. */
1015 tree val;
1016 enum thread_memory_type local_new_memory;
1017 } tm_new_mem_map_t;
1019 /* Hashtable helpers. */
1021 struct tm_mem_map_hasher : free_ptr_hash <tm_new_mem_map_t>
1023 static inline hashval_t hash (const tm_new_mem_map_t *);
1024 static inline bool equal (const tm_new_mem_map_t *, const tm_new_mem_map_t *);
1027 inline hashval_t
1028 tm_mem_map_hasher::hash (const tm_new_mem_map_t *v)
1030 return (intptr_t)v->val >> 4;
1033 inline bool
1034 tm_mem_map_hasher::equal (const tm_new_mem_map_t *v, const tm_new_mem_map_t *c)
1036 return v->val == c->val;
1039 /* Map for an SSA_NAME originally pointing to a non aliased new piece
1040 of memory (malloc, alloc, etc). */
1041 static hash_table<tm_mem_map_hasher> *tm_new_mem_hash;
1043 /* Initialize logging data structures. */
1044 static void
1045 tm_log_init (void)
1047 tm_log = new hash_table<log_entry_hasher> (10);
1048 tm_new_mem_hash = new hash_table<tm_mem_map_hasher> (5);
1049 tm_log_save_addresses.create (5);
1052 /* Free logging data structures. */
1053 static void
1054 tm_log_delete (void)
1056 delete tm_log;
1057 tm_log = NULL;
1058 delete tm_new_mem_hash;
1059 tm_new_mem_hash = NULL;
1060 tm_log_save_addresses.release ();
1063 /* Return true if MEM is a transaction invariant memory for the TM
1064 region starting at REGION_ENTRY_BLOCK. */
1065 static bool
1066 transaction_invariant_address_p (const_tree mem, basic_block region_entry_block)
1068 if ((TREE_CODE (mem) == INDIRECT_REF || TREE_CODE (mem) == MEM_REF)
1069 && TREE_CODE (TREE_OPERAND (mem, 0)) == SSA_NAME)
1071 basic_block def_bb;
1073 def_bb = gimple_bb (SSA_NAME_DEF_STMT (TREE_OPERAND (mem, 0)));
1074 return def_bb != region_entry_block
1075 && dominated_by_p (CDI_DOMINATORS, region_entry_block, def_bb);
1078 mem = strip_invariant_refs (mem);
1079 return mem && (CONSTANT_CLASS_P (mem) || decl_address_invariant_p (mem));
1082 /* Given an address ADDR in STMT, find it in the memory log or add it,
1083 making sure to keep only the addresses highest in the dominator
1084 tree.
1086 ENTRY_BLOCK is the entry_block for the transaction.
1088 If we find the address in the log, make sure it's either the same
1089 address, or an equivalent one that dominates ADDR.
1091 If we find the address, but neither ADDR dominates the found
1092 address, nor the found one dominates ADDR, we're on different
1093 execution paths. Add it.
1095 If known, ENTRY_BLOCK is the entry block for the region, otherwise
1096 NULL. */
1097 static void
1098 tm_log_add (basic_block entry_block, tree addr, gimple stmt)
1100 tm_log_entry **slot;
1101 struct tm_log_entry l, *lp;
1103 l.addr = addr;
1104 slot = tm_log->find_slot (&l, INSERT);
1105 if (!*slot)
1107 tree type = TREE_TYPE (addr);
1109 lp = XNEW (struct tm_log_entry);
1110 lp->addr = addr;
1111 *slot = lp;
1113 /* Small invariant addresses can be handled as save/restores. */
1114 if (entry_block
1115 && transaction_invariant_address_p (lp->addr, entry_block)
1116 && TYPE_SIZE_UNIT (type) != NULL
1117 && tree_fits_uhwi_p (TYPE_SIZE_UNIT (type))
1118 && ((HOST_WIDE_INT) tree_to_uhwi (TYPE_SIZE_UNIT (type))
1119 < PARAM_VALUE (PARAM_TM_MAX_AGGREGATE_SIZE))
1120 /* We must be able to copy this type normally. I.e., no
1121 special constructors and the like. */
1122 && !TREE_ADDRESSABLE (type))
1124 lp->save_var = create_tmp_reg (TREE_TYPE (lp->addr), "tm_save");
1125 lp->stmts.create (0);
1126 lp->entry_block = entry_block;
1127 /* Save addresses separately in dominator order so we don't
1128 get confused by overlapping addresses in the save/restore
1129 sequence. */
1130 tm_log_save_addresses.safe_push (lp->addr);
1132 else
1134 /* Use the logging functions. */
1135 lp->stmts.create (5);
1136 lp->stmts.quick_push (stmt);
1137 lp->save_var = NULL;
1140 else
1142 size_t i;
1143 gimple oldstmt;
1145 lp = *slot;
1147 /* If we're generating a save/restore sequence, we don't care
1148 about statements. */
1149 if (lp->save_var)
1150 return;
1152 for (i = 0; lp->stmts.iterate (i, &oldstmt); ++i)
1154 if (stmt == oldstmt)
1155 return;
1156 /* We already have a store to the same address, higher up the
1157 dominator tree. Nothing to do. */
1158 if (dominated_by_p (CDI_DOMINATORS,
1159 gimple_bb (stmt), gimple_bb (oldstmt)))
1160 return;
1161 /* We should be processing blocks in dominator tree order. */
1162 gcc_assert (!dominated_by_p (CDI_DOMINATORS,
1163 gimple_bb (oldstmt), gimple_bb (stmt)));
1165 /* Store is on a different code path. */
1166 lp->stmts.safe_push (stmt);
1170 /* Gimplify the address of a TARGET_MEM_REF. Return the SSA_NAME
1171 result, insert the new statements before GSI. */
1173 static tree
1174 gimplify_addr (gimple_stmt_iterator *gsi, tree x)
1176 if (TREE_CODE (x) == TARGET_MEM_REF)
1177 x = tree_mem_ref_addr (build_pointer_type (TREE_TYPE (x)), x);
1178 else
1179 x = build_fold_addr_expr (x);
1180 return force_gimple_operand_gsi (gsi, x, true, NULL, true, GSI_SAME_STMT);
1183 /* Instrument one address with the logging functions.
1184 ADDR is the address to save.
1185 STMT is the statement before which to place it. */
1186 static void
1187 tm_log_emit_stmt (tree addr, gimple stmt)
1189 tree type = TREE_TYPE (addr);
1190 tree size = TYPE_SIZE_UNIT (type);
1191 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
1192 gimple log;
1193 enum built_in_function code = BUILT_IN_TM_LOG;
1195 if (type == float_type_node)
1196 code = BUILT_IN_TM_LOG_FLOAT;
1197 else if (type == double_type_node)
1198 code = BUILT_IN_TM_LOG_DOUBLE;
1199 else if (type == long_double_type_node)
1200 code = BUILT_IN_TM_LOG_LDOUBLE;
1201 else if (tree_fits_uhwi_p (size))
1203 unsigned int n = tree_to_uhwi (size);
1204 switch (n)
1206 case 1:
1207 code = BUILT_IN_TM_LOG_1;
1208 break;
1209 case 2:
1210 code = BUILT_IN_TM_LOG_2;
1211 break;
1212 case 4:
1213 code = BUILT_IN_TM_LOG_4;
1214 break;
1215 case 8:
1216 code = BUILT_IN_TM_LOG_8;
1217 break;
1218 default:
1219 code = BUILT_IN_TM_LOG;
1220 if (TREE_CODE (type) == VECTOR_TYPE)
1222 if (n == 8 && builtin_decl_explicit (BUILT_IN_TM_LOG_M64))
1223 code = BUILT_IN_TM_LOG_M64;
1224 else if (n == 16 && builtin_decl_explicit (BUILT_IN_TM_LOG_M128))
1225 code = BUILT_IN_TM_LOG_M128;
1226 else if (n == 32 && builtin_decl_explicit (BUILT_IN_TM_LOG_M256))
1227 code = BUILT_IN_TM_LOG_M256;
1229 break;
1233 addr = gimplify_addr (&gsi, addr);
1234 if (code == BUILT_IN_TM_LOG)
1235 log = gimple_build_call (builtin_decl_explicit (code), 2, addr, size);
1236 else
1237 log = gimple_build_call (builtin_decl_explicit (code), 1, addr);
1238 gsi_insert_before (&gsi, log, GSI_SAME_STMT);
1241 /* Go through the log and instrument address that must be instrumented
1242 with the logging functions. Leave the save/restore addresses for
1243 later. */
1244 static void
1245 tm_log_emit (void)
1247 hash_table<log_entry_hasher>::iterator hi;
1248 struct tm_log_entry *lp;
1250 FOR_EACH_HASH_TABLE_ELEMENT (*tm_log, lp, tm_log_entry_t, hi)
1252 size_t i;
1253 gimple stmt;
1255 if (dump_file)
1257 fprintf (dump_file, "TM thread private mem logging: ");
1258 print_generic_expr (dump_file, lp->addr, 0);
1259 fprintf (dump_file, "\n");
1262 if (lp->save_var)
1264 if (dump_file)
1265 fprintf (dump_file, "DUMPING to variable\n");
1266 continue;
1268 else
1270 if (dump_file)
1271 fprintf (dump_file, "DUMPING with logging functions\n");
1272 for (i = 0; lp->stmts.iterate (i, &stmt); ++i)
1273 tm_log_emit_stmt (lp->addr, stmt);
1278 /* Emit the save sequence for the corresponding addresses in the log.
1279 ENTRY_BLOCK is the entry block for the transaction.
1280 BB is the basic block to insert the code in. */
1281 static void
1282 tm_log_emit_saves (basic_block entry_block, basic_block bb)
1284 size_t i;
1285 gimple_stmt_iterator gsi = gsi_last_bb (bb);
1286 gimple stmt;
1287 struct tm_log_entry l, *lp;
1289 for (i = 0; i < tm_log_save_addresses.length (); ++i)
1291 l.addr = tm_log_save_addresses[i];
1292 lp = *(tm_log->find_slot (&l, NO_INSERT));
1293 gcc_assert (lp->save_var != NULL);
1295 /* We only care about variables in the current transaction. */
1296 if (lp->entry_block != entry_block)
1297 continue;
1299 stmt = gimple_build_assign (lp->save_var, unshare_expr (lp->addr));
1301 /* Make sure we can create an SSA_NAME for this type. For
1302 instance, aggregates aren't allowed, in which case the system
1303 will create a VOP for us and everything will just work. */
1304 if (is_gimple_reg_type (TREE_TYPE (lp->save_var)))
1306 lp->save_var = make_ssa_name (lp->save_var, stmt);
1307 gimple_assign_set_lhs (stmt, lp->save_var);
1310 gsi_insert_before (&gsi, stmt, GSI_SAME_STMT);
1314 /* Emit the restore sequence for the corresponding addresses in the log.
1315 ENTRY_BLOCK is the entry block for the transaction.
1316 BB is the basic block to insert the code in. */
1317 static void
1318 tm_log_emit_restores (basic_block entry_block, basic_block bb)
1320 int i;
1321 struct tm_log_entry l, *lp;
1322 gimple_stmt_iterator gsi;
1323 gimple stmt;
1325 for (i = tm_log_save_addresses.length () - 1; i >= 0; i--)
1327 l.addr = tm_log_save_addresses[i];
1328 lp = *(tm_log->find_slot (&l, NO_INSERT));
1329 gcc_assert (lp->save_var != NULL);
1331 /* We only care about variables in the current transaction. */
1332 if (lp->entry_block != entry_block)
1333 continue;
1335 /* Restores are in LIFO order from the saves in case we have
1336 overlaps. */
1337 gsi = gsi_start_bb (bb);
1339 stmt = gimple_build_assign (unshare_expr (lp->addr), lp->save_var);
1340 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
1345 static tree lower_sequence_tm (gimple_stmt_iterator *, bool *,
1346 struct walk_stmt_info *);
1347 static tree lower_sequence_no_tm (gimple_stmt_iterator *, bool *,
1348 struct walk_stmt_info *);
1350 /* Evaluate an address X being dereferenced and determine if it
1351 originally points to a non aliased new chunk of memory (malloc,
1352 alloca, etc).
1354 Return MEM_THREAD_LOCAL if it points to a thread-local address.
1355 Return MEM_TRANSACTION_LOCAL if it points to a transaction-local address.
1356 Return MEM_NON_LOCAL otherwise.
1358 ENTRY_BLOCK is the entry block to the transaction containing the
1359 dereference of X. */
1360 static enum thread_memory_type
1361 thread_private_new_memory (basic_block entry_block, tree x)
1363 gimple stmt = NULL;
1364 enum tree_code code;
1365 tm_new_mem_map_t **slot;
1366 tm_new_mem_map_t elt, *elt_p;
1367 tree val = x;
1368 enum thread_memory_type retval = mem_transaction_local;
1370 if (!entry_block
1371 || TREE_CODE (x) != SSA_NAME
1372 /* Possible uninitialized use, or a function argument. In
1373 either case, we don't care. */
1374 || SSA_NAME_IS_DEFAULT_DEF (x))
1375 return mem_non_local;
1377 /* Look in cache first. */
1378 elt.val = x;
1379 slot = tm_new_mem_hash->find_slot (&elt, INSERT);
1380 elt_p = *slot;
1381 if (elt_p)
1382 return elt_p->local_new_memory;
1384 /* Optimistically assume the memory is transaction local during
1385 processing. This catches recursion into this variable. */
1386 *slot = elt_p = XNEW (tm_new_mem_map_t);
1387 elt_p->val = val;
1388 elt_p->local_new_memory = mem_transaction_local;
1390 /* Search DEF chain to find the original definition of this address. */
1393 if (ptr_deref_may_alias_global_p (x))
1395 /* Address escapes. This is not thread-private. */
1396 retval = mem_non_local;
1397 goto new_memory_ret;
1400 stmt = SSA_NAME_DEF_STMT (x);
1402 /* If the malloc call is outside the transaction, this is
1403 thread-local. */
1404 if (retval != mem_thread_local
1405 && !dominated_by_p (CDI_DOMINATORS, gimple_bb (stmt), entry_block))
1406 retval = mem_thread_local;
1408 if (is_gimple_assign (stmt))
1410 code = gimple_assign_rhs_code (stmt);
1411 /* x = foo ==> foo */
1412 if (code == SSA_NAME)
1413 x = gimple_assign_rhs1 (stmt);
1414 /* x = foo + n ==> foo */
1415 else if (code == POINTER_PLUS_EXPR)
1416 x = gimple_assign_rhs1 (stmt);
1417 /* x = (cast*) foo ==> foo */
1418 else if (code == VIEW_CONVERT_EXPR || CONVERT_EXPR_CODE_P (code))
1419 x = gimple_assign_rhs1 (stmt);
1420 /* x = c ? op1 : op2 == > op1 or op2 just like a PHI */
1421 else if (code == COND_EXPR)
1423 tree op1 = gimple_assign_rhs2 (stmt);
1424 tree op2 = gimple_assign_rhs3 (stmt);
1425 enum thread_memory_type mem;
1426 retval = thread_private_new_memory (entry_block, op1);
1427 if (retval == mem_non_local)
1428 goto new_memory_ret;
1429 mem = thread_private_new_memory (entry_block, op2);
1430 retval = MIN (retval, mem);
1431 goto new_memory_ret;
1433 else
1435 retval = mem_non_local;
1436 goto new_memory_ret;
1439 else
1441 if (gimple_code (stmt) == GIMPLE_PHI)
1443 unsigned int i;
1444 enum thread_memory_type mem;
1445 tree phi_result = gimple_phi_result (stmt);
1447 /* If any of the ancestors are non-local, we are sure to
1448 be non-local. Otherwise we can avoid doing anything
1449 and inherit what has already been generated. */
1450 retval = mem_max;
1451 for (i = 0; i < gimple_phi_num_args (stmt); ++i)
1453 tree op = PHI_ARG_DEF (stmt, i);
1455 /* Exclude self-assignment. */
1456 if (phi_result == op)
1457 continue;
1459 mem = thread_private_new_memory (entry_block, op);
1460 if (mem == mem_non_local)
1462 retval = mem;
1463 goto new_memory_ret;
1465 retval = MIN (retval, mem);
1467 goto new_memory_ret;
1469 break;
1472 while (TREE_CODE (x) == SSA_NAME);
1474 if (stmt && is_gimple_call (stmt) && gimple_call_flags (stmt) & ECF_MALLOC)
1475 /* Thread-local or transaction-local. */
1477 else
1478 retval = mem_non_local;
1480 new_memory_ret:
1481 elt_p->local_new_memory = retval;
1482 return retval;
1485 /* Determine whether X has to be instrumented using a read
1486 or write barrier.
1488 ENTRY_BLOCK is the entry block for the region where stmt resides
1489 in. NULL if unknown.
1491 STMT is the statement in which X occurs in. It is used for thread
1492 private memory instrumentation. If no TPM instrumentation is
1493 desired, STMT should be null. */
1494 static bool
1495 requires_barrier (basic_block entry_block, tree x, gimple stmt)
1497 tree orig = x;
1498 while (handled_component_p (x))
1499 x = TREE_OPERAND (x, 0);
1501 switch (TREE_CODE (x))
1503 case INDIRECT_REF:
1504 case MEM_REF:
1506 enum thread_memory_type ret;
1508 ret = thread_private_new_memory (entry_block, TREE_OPERAND (x, 0));
1509 if (ret == mem_non_local)
1510 return true;
1511 if (stmt && ret == mem_thread_local)
1512 /* ?? Should we pass `orig', or the INDIRECT_REF X. ?? */
1513 tm_log_add (entry_block, orig, stmt);
1515 /* Transaction-locals require nothing at all. For malloc, a
1516 transaction restart frees the memory and we reallocate.
1517 For alloca, the stack pointer gets reset by the retry and
1518 we reallocate. */
1519 return false;
1522 case TARGET_MEM_REF:
1523 if (TREE_CODE (TMR_BASE (x)) != ADDR_EXPR)
1524 return true;
1525 x = TREE_OPERAND (TMR_BASE (x), 0);
1526 if (TREE_CODE (x) == PARM_DECL)
1527 return false;
1528 gcc_assert (TREE_CODE (x) == VAR_DECL);
1529 /* FALLTHRU */
1531 case PARM_DECL:
1532 case RESULT_DECL:
1533 case VAR_DECL:
1534 if (DECL_BY_REFERENCE (x))
1536 /* ??? This value is a pointer, but aggregate_value_p has been
1537 jigged to return true which confuses needs_to_live_in_memory.
1538 This ought to be cleaned up generically.
1540 FIXME: Verify this still happens after the next mainline
1541 merge. Testcase ie g++.dg/tm/pr47554.C.
1543 return false;
1546 if (is_global_var (x))
1547 return !TREE_READONLY (x);
1548 if (/* FIXME: This condition should actually go below in the
1549 tm_log_add() call, however is_call_clobbered() depends on
1550 aliasing info which is not available during
1551 gimplification. Since requires_barrier() gets called
1552 during lower_sequence_tm/gimplification, leave the call
1553 to needs_to_live_in_memory until we eliminate
1554 lower_sequence_tm altogether. */
1555 needs_to_live_in_memory (x))
1556 return true;
1557 else
1559 /* For local memory that doesn't escape (aka thread private
1560 memory), we can either save the value at the beginning of
1561 the transaction and restore on restart, or call a tm
1562 function to dynamically save and restore on restart
1563 (ITM_L*). */
1564 if (stmt)
1565 tm_log_add (entry_block, orig, stmt);
1566 return false;
1569 default:
1570 return false;
1574 /* Mark the GIMPLE_ASSIGN statement as appropriate for being inside
1575 a transaction region. */
1577 static void
1578 examine_assign_tm (unsigned *state, gimple_stmt_iterator *gsi)
1580 gimple stmt = gsi_stmt (*gsi);
1582 if (requires_barrier (/*entry_block=*/NULL, gimple_assign_rhs1 (stmt), NULL))
1583 *state |= GTMA_HAVE_LOAD;
1584 if (requires_barrier (/*entry_block=*/NULL, gimple_assign_lhs (stmt), NULL))
1585 *state |= GTMA_HAVE_STORE;
1588 /* Mark a GIMPLE_CALL as appropriate for being inside a transaction. */
1590 static void
1591 examine_call_tm (unsigned *state, gimple_stmt_iterator *gsi)
1593 gimple stmt = gsi_stmt (*gsi);
1594 tree fn;
1596 if (is_tm_pure_call (stmt))
1597 return;
1599 /* Check if this call is a transaction abort. */
1600 fn = gimple_call_fndecl (stmt);
1601 if (is_tm_abort (fn))
1602 *state |= GTMA_HAVE_ABORT;
1604 /* Note that something may happen. */
1605 *state |= GTMA_HAVE_LOAD | GTMA_HAVE_STORE;
1608 /* Lower a GIMPLE_TRANSACTION statement. */
1610 static void
1611 lower_transaction (gimple_stmt_iterator *gsi, struct walk_stmt_info *wi)
1613 gimple g;
1614 gtransaction *stmt = as_a <gtransaction *> (gsi_stmt (*gsi));
1615 unsigned int *outer_state = (unsigned int *) wi->info;
1616 unsigned int this_state = 0;
1617 struct walk_stmt_info this_wi;
1619 /* First, lower the body. The scanning that we do inside gives
1620 us some idea of what we're dealing with. */
1621 memset (&this_wi, 0, sizeof (this_wi));
1622 this_wi.info = (void *) &this_state;
1623 walk_gimple_seq_mod (gimple_transaction_body_ptr (stmt),
1624 lower_sequence_tm, NULL, &this_wi);
1626 /* If there was absolutely nothing transaction related inside the
1627 transaction, we may elide it. Likewise if this is a nested
1628 transaction and does not contain an abort. */
1629 if (this_state == 0
1630 || (!(this_state & GTMA_HAVE_ABORT) && outer_state != NULL))
1632 if (outer_state)
1633 *outer_state |= this_state;
1635 gsi_insert_seq_before (gsi, gimple_transaction_body (stmt),
1636 GSI_SAME_STMT);
1637 gimple_transaction_set_body (stmt, NULL);
1639 gsi_remove (gsi, true);
1640 wi->removed_stmt = true;
1641 return;
1644 /* Wrap the body of the transaction in a try-finally node so that
1645 the commit call is always properly called. */
1646 g = gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_COMMIT), 0);
1647 if (flag_exceptions)
1649 tree ptr;
1650 gimple_seq n_seq, e_seq;
1652 n_seq = gimple_seq_alloc_with_stmt (g);
1653 e_seq = NULL;
1655 g = gimple_build_call (builtin_decl_explicit (BUILT_IN_EH_POINTER),
1656 1, integer_zero_node);
1657 ptr = create_tmp_var (ptr_type_node);
1658 gimple_call_set_lhs (g, ptr);
1659 gimple_seq_add_stmt (&e_seq, g);
1661 g = gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_COMMIT_EH),
1662 1, ptr);
1663 gimple_seq_add_stmt (&e_seq, g);
1665 g = gimple_build_eh_else (n_seq, e_seq);
1668 g = gimple_build_try (gimple_transaction_body (stmt),
1669 gimple_seq_alloc_with_stmt (g), GIMPLE_TRY_FINALLY);
1670 gsi_insert_after (gsi, g, GSI_CONTINUE_LINKING);
1672 gimple_transaction_set_body (stmt, NULL);
1674 /* If the transaction calls abort or if this is an outer transaction,
1675 add an "over" label afterwards. */
1676 if ((this_state & (GTMA_HAVE_ABORT))
1677 || (gimple_transaction_subcode (stmt) & GTMA_IS_OUTER))
1679 tree label = create_artificial_label (UNKNOWN_LOCATION);
1680 gimple_transaction_set_label (stmt, label);
1681 gsi_insert_after (gsi, gimple_build_label (label), GSI_CONTINUE_LINKING);
1684 /* Record the set of operations found for use later. */
1685 this_state |= gimple_transaction_subcode (stmt) & GTMA_DECLARATION_MASK;
1686 gimple_transaction_set_subcode (stmt, this_state);
1689 /* Iterate through the statements in the sequence, lowering them all
1690 as appropriate for being in a transaction. */
1692 static tree
1693 lower_sequence_tm (gimple_stmt_iterator *gsi, bool *handled_ops_p,
1694 struct walk_stmt_info *wi)
1696 unsigned int *state = (unsigned int *) wi->info;
1697 gimple stmt = gsi_stmt (*gsi);
1699 *handled_ops_p = true;
1700 switch (gimple_code (stmt))
1702 case GIMPLE_ASSIGN:
1703 /* Only memory reads/writes need to be instrumented. */
1704 if (gimple_assign_single_p (stmt))
1705 examine_assign_tm (state, gsi);
1706 break;
1708 case GIMPLE_CALL:
1709 examine_call_tm (state, gsi);
1710 break;
1712 case GIMPLE_ASM:
1713 *state |= GTMA_MAY_ENTER_IRREVOCABLE;
1714 break;
1716 case GIMPLE_TRANSACTION:
1717 lower_transaction (gsi, wi);
1718 break;
1720 default:
1721 *handled_ops_p = !gimple_has_substatements (stmt);
1722 break;
1725 return NULL_TREE;
1728 /* Iterate through the statements in the sequence, lowering them all
1729 as appropriate for being outside of a transaction. */
1731 static tree
1732 lower_sequence_no_tm (gimple_stmt_iterator *gsi, bool *handled_ops_p,
1733 struct walk_stmt_info * wi)
1735 gimple stmt = gsi_stmt (*gsi);
1737 if (gimple_code (stmt) == GIMPLE_TRANSACTION)
1739 *handled_ops_p = true;
1740 lower_transaction (gsi, wi);
1742 else
1743 *handled_ops_p = !gimple_has_substatements (stmt);
1745 return NULL_TREE;
1748 /* Main entry point for flattening GIMPLE_TRANSACTION constructs. After
1749 this, GIMPLE_TRANSACTION nodes still exist, but the nested body has
1750 been moved out, and all the data required for constructing a proper
1751 CFG has been recorded. */
1753 static unsigned int
1754 execute_lower_tm (void)
1756 struct walk_stmt_info wi;
1757 gimple_seq body;
1759 /* Transactional clones aren't created until a later pass. */
1760 gcc_assert (!decl_is_tm_clone (current_function_decl));
1762 body = gimple_body (current_function_decl);
1763 memset (&wi, 0, sizeof (wi));
1764 walk_gimple_seq_mod (&body, lower_sequence_no_tm, NULL, &wi);
1765 gimple_set_body (current_function_decl, body);
1767 return 0;
1770 namespace {
1772 const pass_data pass_data_lower_tm =
1774 GIMPLE_PASS, /* type */
1775 "tmlower", /* name */
1776 OPTGROUP_NONE, /* optinfo_flags */
1777 TV_TRANS_MEM, /* tv_id */
1778 PROP_gimple_lcf, /* properties_required */
1779 0, /* properties_provided */
1780 0, /* properties_destroyed */
1781 0, /* todo_flags_start */
1782 0, /* todo_flags_finish */
1785 class pass_lower_tm : public gimple_opt_pass
1787 public:
1788 pass_lower_tm (gcc::context *ctxt)
1789 : gimple_opt_pass (pass_data_lower_tm, ctxt)
1792 /* opt_pass methods: */
1793 virtual bool gate (function *) { return flag_tm; }
1794 virtual unsigned int execute (function *) { return execute_lower_tm (); }
1796 }; // class pass_lower_tm
1798 } // anon namespace
1800 gimple_opt_pass *
1801 make_pass_lower_tm (gcc::context *ctxt)
1803 return new pass_lower_tm (ctxt);
1806 /* Collect region information for each transaction. */
1808 struct tm_region
1810 public:
1812 /* The field "transaction_stmt" is initially a gtransaction *,
1813 but eventually gets lowered to a gcall *(to BUILT_IN_TM_START).
1815 Helper method to get it as a gtransaction *, with code-checking
1816 in a checked-build. */
1818 gtransaction *
1819 get_transaction_stmt () const
1821 return as_a <gtransaction *> (transaction_stmt);
1824 public:
1826 /* Link to the next unnested transaction. */
1827 struct tm_region *next;
1829 /* Link to the next inner transaction. */
1830 struct tm_region *inner;
1832 /* Link to the next outer transaction. */
1833 struct tm_region *outer;
1835 /* The GIMPLE_TRANSACTION statement beginning this transaction.
1836 After TM_MARK, this gets replaced by a call to
1837 BUILT_IN_TM_START.
1838 Hence this will be either a gtransaction *or a gcall *. */
1839 gimple transaction_stmt;
1841 /* After TM_MARK expands the GIMPLE_TRANSACTION into a call to
1842 BUILT_IN_TM_START, this field is true if the transaction is an
1843 outer transaction. */
1844 bool original_transaction_was_outer;
1846 /* Return value from BUILT_IN_TM_START. */
1847 tree tm_state;
1849 /* The entry block to this region. This will always be the first
1850 block of the body of the transaction. */
1851 basic_block entry_block;
1853 /* The first block after an expanded call to _ITM_beginTransaction. */
1854 basic_block restart_block;
1856 /* The set of all blocks that end the region; NULL if only EXIT_BLOCK.
1857 These blocks are still a part of the region (i.e., the border is
1858 inclusive). Note that this set is only complete for paths in the CFG
1859 starting at ENTRY_BLOCK, and that there is no exit block recorded for
1860 the edge to the "over" label. */
1861 bitmap exit_blocks;
1863 /* The set of all blocks that have an TM_IRREVOCABLE call. */
1864 bitmap irr_blocks;
1867 typedef struct tm_region *tm_region_p;
1869 /* True if there are pending edge statements to be committed for the
1870 current function being scanned in the tmmark pass. */
1871 bool pending_edge_inserts_p;
1873 static struct tm_region *all_tm_regions;
1874 static bitmap_obstack tm_obstack;
1877 /* A subroutine of tm_region_init. Record the existence of the
1878 GIMPLE_TRANSACTION statement in a tree of tm_region elements. */
1880 static struct tm_region *
1881 tm_region_init_0 (struct tm_region *outer, basic_block bb,
1882 gtransaction *stmt)
1884 struct tm_region *region;
1886 region = (struct tm_region *)
1887 obstack_alloc (&tm_obstack.obstack, sizeof (struct tm_region));
1889 if (outer)
1891 region->next = outer->inner;
1892 outer->inner = region;
1894 else
1896 region->next = all_tm_regions;
1897 all_tm_regions = region;
1899 region->inner = NULL;
1900 region->outer = outer;
1902 region->transaction_stmt = stmt;
1903 region->original_transaction_was_outer = false;
1904 region->tm_state = NULL;
1906 /* There are either one or two edges out of the block containing
1907 the GIMPLE_TRANSACTION, one to the actual region and one to the
1908 "over" label if the region contains an abort. The former will
1909 always be the one marked FALLTHRU. */
1910 region->entry_block = FALLTHRU_EDGE (bb)->dest;
1912 region->exit_blocks = BITMAP_ALLOC (&tm_obstack);
1913 region->irr_blocks = BITMAP_ALLOC (&tm_obstack);
1915 return region;
1918 /* A subroutine of tm_region_init. Record all the exit and
1919 irrevocable blocks in BB into the region's exit_blocks and
1920 irr_blocks bitmaps. Returns the new region being scanned. */
1922 static struct tm_region *
1923 tm_region_init_1 (struct tm_region *region, basic_block bb)
1925 gimple_stmt_iterator gsi;
1926 gimple g;
1928 if (!region
1929 || (!region->irr_blocks && !region->exit_blocks))
1930 return region;
1932 /* Check to see if this is the end of a region by seeing if it
1933 contains a call to __builtin_tm_commit{,_eh}. Note that the
1934 outermost region for DECL_IS_TM_CLONE need not collect this. */
1935 for (gsi = gsi_last_bb (bb); !gsi_end_p (gsi); gsi_prev (&gsi))
1937 g = gsi_stmt (gsi);
1938 if (gimple_code (g) == GIMPLE_CALL)
1940 tree fn = gimple_call_fndecl (g);
1941 if (fn && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
1943 if ((DECL_FUNCTION_CODE (fn) == BUILT_IN_TM_COMMIT
1944 || DECL_FUNCTION_CODE (fn) == BUILT_IN_TM_COMMIT_EH)
1945 && region->exit_blocks)
1947 bitmap_set_bit (region->exit_blocks, bb->index);
1948 region = region->outer;
1949 break;
1951 if (DECL_FUNCTION_CODE (fn) == BUILT_IN_TM_IRREVOCABLE)
1952 bitmap_set_bit (region->irr_blocks, bb->index);
1956 return region;
1959 /* Collect all of the transaction regions within the current function
1960 and record them in ALL_TM_REGIONS. The REGION parameter may specify
1961 an "outermost" region for use by tm clones. */
1963 static void
1964 tm_region_init (struct tm_region *region)
1966 gimple g;
1967 edge_iterator ei;
1968 edge e;
1969 basic_block bb;
1970 auto_vec<basic_block> queue;
1971 bitmap visited_blocks = BITMAP_ALLOC (NULL);
1972 struct tm_region *old_region;
1973 auto_vec<tm_region_p> bb_regions;
1975 all_tm_regions = region;
1976 bb = single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun));
1978 /* We could store this information in bb->aux, but we may get called
1979 through get_all_tm_blocks() from another pass that may be already
1980 using bb->aux. */
1981 bb_regions.safe_grow_cleared (last_basic_block_for_fn (cfun));
1983 queue.safe_push (bb);
1984 bb_regions[bb->index] = region;
1987 bb = queue.pop ();
1988 region = bb_regions[bb->index];
1989 bb_regions[bb->index] = NULL;
1991 /* Record exit and irrevocable blocks. */
1992 region = tm_region_init_1 (region, bb);
1994 /* Check for the last statement in the block beginning a new region. */
1995 g = last_stmt (bb);
1996 old_region = region;
1997 if (g)
1998 if (gtransaction *trans_stmt = dyn_cast <gtransaction *> (g))
1999 region = tm_region_init_0 (region, bb, trans_stmt);
2001 /* Process subsequent blocks. */
2002 FOR_EACH_EDGE (e, ei, bb->succs)
2003 if (!bitmap_bit_p (visited_blocks, e->dest->index))
2005 bitmap_set_bit (visited_blocks, e->dest->index);
2006 queue.safe_push (e->dest);
2008 /* If the current block started a new region, make sure that only
2009 the entry block of the new region is associated with this region.
2010 Other successors are still part of the old region. */
2011 if (old_region != region && e->dest != region->entry_block)
2012 bb_regions[e->dest->index] = old_region;
2013 else
2014 bb_regions[e->dest->index] = region;
2017 while (!queue.is_empty ());
2018 BITMAP_FREE (visited_blocks);
2021 /* The "gate" function for all transactional memory expansion and optimization
2022 passes. We collect region information for each top-level transaction, and
2023 if we don't find any, we skip all of the TM passes. Each region will have
2024 all of the exit blocks recorded, and the originating statement. */
2026 static bool
2027 gate_tm_init (void)
2029 if (!flag_tm)
2030 return false;
2032 calculate_dominance_info (CDI_DOMINATORS);
2033 bitmap_obstack_initialize (&tm_obstack);
2035 /* If the function is a TM_CLONE, then the entire function is the region. */
2036 if (decl_is_tm_clone (current_function_decl))
2038 struct tm_region *region = (struct tm_region *)
2039 obstack_alloc (&tm_obstack.obstack, sizeof (struct tm_region));
2040 memset (region, 0, sizeof (*region));
2041 region->entry_block = single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun));
2042 /* For a clone, the entire function is the region. But even if
2043 we don't need to record any exit blocks, we may need to
2044 record irrevocable blocks. */
2045 region->irr_blocks = BITMAP_ALLOC (&tm_obstack);
2047 tm_region_init (region);
2049 else
2051 tm_region_init (NULL);
2053 /* If we didn't find any regions, cleanup and skip the whole tree
2054 of tm-related optimizations. */
2055 if (all_tm_regions == NULL)
2057 bitmap_obstack_release (&tm_obstack);
2058 return false;
2062 return true;
2065 namespace {
2067 const pass_data pass_data_tm_init =
2069 GIMPLE_PASS, /* type */
2070 "*tminit", /* name */
2071 OPTGROUP_NONE, /* optinfo_flags */
2072 TV_TRANS_MEM, /* tv_id */
2073 ( PROP_ssa | PROP_cfg ), /* properties_required */
2074 0, /* properties_provided */
2075 0, /* properties_destroyed */
2076 0, /* todo_flags_start */
2077 0, /* todo_flags_finish */
2080 class pass_tm_init : public gimple_opt_pass
2082 public:
2083 pass_tm_init (gcc::context *ctxt)
2084 : gimple_opt_pass (pass_data_tm_init, ctxt)
2087 /* opt_pass methods: */
2088 virtual bool gate (function *) { return gate_tm_init (); }
2090 }; // class pass_tm_init
2092 } // anon namespace
2094 gimple_opt_pass *
2095 make_pass_tm_init (gcc::context *ctxt)
2097 return new pass_tm_init (ctxt);
2100 /* Add FLAGS to the GIMPLE_TRANSACTION subcode for the transaction region
2101 represented by STATE. */
2103 static inline void
2104 transaction_subcode_ior (struct tm_region *region, unsigned flags)
2106 if (region && region->transaction_stmt)
2108 gtransaction *transaction_stmt = region->get_transaction_stmt ();
2109 flags |= gimple_transaction_subcode (transaction_stmt);
2110 gimple_transaction_set_subcode (transaction_stmt, flags);
2114 /* Construct a memory load in a transactional context. Return the
2115 gimple statement performing the load, or NULL if there is no
2116 TM_LOAD builtin of the appropriate size to do the load.
2118 LOC is the location to use for the new statement(s). */
2120 static gcall *
2121 build_tm_load (location_t loc, tree lhs, tree rhs, gimple_stmt_iterator *gsi)
2123 enum built_in_function code = END_BUILTINS;
2124 tree t, type = TREE_TYPE (rhs), decl;
2125 gcall *gcall;
2127 if (type == float_type_node)
2128 code = BUILT_IN_TM_LOAD_FLOAT;
2129 else if (type == double_type_node)
2130 code = BUILT_IN_TM_LOAD_DOUBLE;
2131 else if (type == long_double_type_node)
2132 code = BUILT_IN_TM_LOAD_LDOUBLE;
2133 else if (TYPE_SIZE_UNIT (type) != NULL
2134 && tree_fits_uhwi_p (TYPE_SIZE_UNIT (type)))
2136 switch (tree_to_uhwi (TYPE_SIZE_UNIT (type)))
2138 case 1:
2139 code = BUILT_IN_TM_LOAD_1;
2140 break;
2141 case 2:
2142 code = BUILT_IN_TM_LOAD_2;
2143 break;
2144 case 4:
2145 code = BUILT_IN_TM_LOAD_4;
2146 break;
2147 case 8:
2148 code = BUILT_IN_TM_LOAD_8;
2149 break;
2153 if (code == END_BUILTINS)
2155 decl = targetm.vectorize.builtin_tm_load (type);
2156 if (!decl)
2157 return NULL;
2159 else
2160 decl = builtin_decl_explicit (code);
2162 t = gimplify_addr (gsi, rhs);
2163 gcall = gimple_build_call (decl, 1, t);
2164 gimple_set_location (gcall, loc);
2166 t = TREE_TYPE (TREE_TYPE (decl));
2167 if (useless_type_conversion_p (type, t))
2169 gimple_call_set_lhs (gcall, lhs);
2170 gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2172 else
2174 gimple g;
2175 tree temp;
2177 temp = create_tmp_reg (t);
2178 gimple_call_set_lhs (gcall, temp);
2179 gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2181 t = fold_build1 (VIEW_CONVERT_EXPR, type, temp);
2182 g = gimple_build_assign (lhs, t);
2183 gsi_insert_before (gsi, g, GSI_SAME_STMT);
2186 return gcall;
2190 /* Similarly for storing TYPE in a transactional context. */
2192 static gcall *
2193 build_tm_store (location_t loc, tree lhs, tree rhs, gimple_stmt_iterator *gsi)
2195 enum built_in_function code = END_BUILTINS;
2196 tree t, fn, type = TREE_TYPE (rhs), simple_type;
2197 gcall *gcall;
2199 if (type == float_type_node)
2200 code = BUILT_IN_TM_STORE_FLOAT;
2201 else if (type == double_type_node)
2202 code = BUILT_IN_TM_STORE_DOUBLE;
2203 else if (type == long_double_type_node)
2204 code = BUILT_IN_TM_STORE_LDOUBLE;
2205 else if (TYPE_SIZE_UNIT (type) != NULL
2206 && tree_fits_uhwi_p (TYPE_SIZE_UNIT (type)))
2208 switch (tree_to_uhwi (TYPE_SIZE_UNIT (type)))
2210 case 1:
2211 code = BUILT_IN_TM_STORE_1;
2212 break;
2213 case 2:
2214 code = BUILT_IN_TM_STORE_2;
2215 break;
2216 case 4:
2217 code = BUILT_IN_TM_STORE_4;
2218 break;
2219 case 8:
2220 code = BUILT_IN_TM_STORE_8;
2221 break;
2225 if (code == END_BUILTINS)
2227 fn = targetm.vectorize.builtin_tm_store (type);
2228 if (!fn)
2229 return NULL;
2231 else
2232 fn = builtin_decl_explicit (code);
2234 simple_type = TREE_VALUE (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (fn))));
2236 if (TREE_CODE (rhs) == CONSTRUCTOR)
2238 /* Handle the easy initialization to zero. */
2239 if (!CONSTRUCTOR_ELTS (rhs))
2240 rhs = build_int_cst (simple_type, 0);
2241 else
2243 /* ...otherwise punt to the caller and probably use
2244 BUILT_IN_TM_MEMMOVE, because we can't wrap a
2245 VIEW_CONVERT_EXPR around a CONSTRUCTOR (below) and produce
2246 valid gimple. */
2247 return NULL;
2250 else if (!useless_type_conversion_p (simple_type, type))
2252 gimple g;
2253 tree temp;
2255 temp = create_tmp_reg (simple_type);
2256 t = fold_build1 (VIEW_CONVERT_EXPR, simple_type, rhs);
2257 g = gimple_build_assign (temp, t);
2258 gimple_set_location (g, loc);
2259 gsi_insert_before (gsi, g, GSI_SAME_STMT);
2261 rhs = temp;
2264 t = gimplify_addr (gsi, lhs);
2265 gcall = gimple_build_call (fn, 2, t, rhs);
2266 gimple_set_location (gcall, loc);
2267 gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2269 return gcall;
2273 /* Expand an assignment statement into transactional builtins. */
2275 static void
2276 expand_assign_tm (struct tm_region *region, gimple_stmt_iterator *gsi)
2278 gimple stmt = gsi_stmt (*gsi);
2279 location_t loc = gimple_location (stmt);
2280 tree lhs = gimple_assign_lhs (stmt);
2281 tree rhs = gimple_assign_rhs1 (stmt);
2282 bool store_p = requires_barrier (region->entry_block, lhs, NULL);
2283 bool load_p = requires_barrier (region->entry_block, rhs, NULL);
2284 gimple gcall = NULL;
2286 if (!load_p && !store_p)
2288 /* Add thread private addresses to log if applicable. */
2289 requires_barrier (region->entry_block, lhs, stmt);
2290 gsi_next (gsi);
2291 return;
2294 // Remove original load/store statement.
2295 gsi_remove (gsi, true);
2297 if (load_p && !store_p)
2299 transaction_subcode_ior (region, GTMA_HAVE_LOAD);
2300 gcall = build_tm_load (loc, lhs, rhs, gsi);
2302 else if (store_p && !load_p)
2304 transaction_subcode_ior (region, GTMA_HAVE_STORE);
2305 gcall = build_tm_store (loc, lhs, rhs, gsi);
2307 if (!gcall)
2309 tree lhs_addr, rhs_addr, tmp;
2311 if (load_p)
2312 transaction_subcode_ior (region, GTMA_HAVE_LOAD);
2313 if (store_p)
2314 transaction_subcode_ior (region, GTMA_HAVE_STORE);
2316 /* ??? Figure out if there's any possible overlap between the LHS
2317 and the RHS and if not, use MEMCPY. */
2319 if (load_p && is_gimple_reg (lhs))
2321 tmp = create_tmp_var (TREE_TYPE (lhs));
2322 lhs_addr = build_fold_addr_expr (tmp);
2324 else
2326 tmp = NULL_TREE;
2327 lhs_addr = gimplify_addr (gsi, lhs);
2329 rhs_addr = gimplify_addr (gsi, rhs);
2330 gcall = gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_MEMMOVE),
2331 3, lhs_addr, rhs_addr,
2332 TYPE_SIZE_UNIT (TREE_TYPE (lhs)));
2333 gimple_set_location (gcall, loc);
2334 gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2336 if (tmp)
2338 gcall = gimple_build_assign (lhs, tmp);
2339 gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2343 /* Now that we have the load/store in its instrumented form, add
2344 thread private addresses to the log if applicable. */
2345 if (!store_p)
2346 requires_barrier (region->entry_block, lhs, gcall);
2348 // The calls to build_tm_{store,load} above inserted the instrumented
2349 // call into the stream.
2350 // gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2354 /* Expand a call statement as appropriate for a transaction. That is,
2355 either verify that the call does not affect the transaction, or
2356 redirect the call to a clone that handles transactions, or change
2357 the transaction state to IRREVOCABLE. Return true if the call is
2358 one of the builtins that end a transaction. */
2360 static bool
2361 expand_call_tm (struct tm_region *region,
2362 gimple_stmt_iterator *gsi)
2364 gcall *stmt = as_a <gcall *> (gsi_stmt (*gsi));
2365 tree lhs = gimple_call_lhs (stmt);
2366 tree fn_decl;
2367 struct cgraph_node *node;
2368 bool retval = false;
2370 fn_decl = gimple_call_fndecl (stmt);
2372 if (fn_decl == builtin_decl_explicit (BUILT_IN_TM_MEMCPY)
2373 || fn_decl == builtin_decl_explicit (BUILT_IN_TM_MEMMOVE))
2374 transaction_subcode_ior (region, GTMA_HAVE_STORE | GTMA_HAVE_LOAD);
2375 if (fn_decl == builtin_decl_explicit (BUILT_IN_TM_MEMSET))
2376 transaction_subcode_ior (region, GTMA_HAVE_STORE);
2378 if (is_tm_pure_call (stmt))
2379 return false;
2381 if (fn_decl)
2382 retval = is_tm_ending_fndecl (fn_decl);
2383 if (!retval)
2385 /* Assume all non-const/pure calls write to memory, except
2386 transaction ending builtins. */
2387 transaction_subcode_ior (region, GTMA_HAVE_STORE);
2390 /* For indirect calls, we already generated a call into the runtime. */
2391 if (!fn_decl)
2393 tree fn = gimple_call_fn (stmt);
2395 /* We are guaranteed never to go irrevocable on a safe or pure
2396 call, and the pure call was handled above. */
2397 if (is_tm_safe (fn))
2398 return false;
2399 else
2400 transaction_subcode_ior (region, GTMA_MAY_ENTER_IRREVOCABLE);
2402 return false;
2405 node = cgraph_node::get (fn_decl);
2406 /* All calls should have cgraph here. */
2407 if (!node)
2409 /* We can have a nodeless call here if some pass after IPA-tm
2410 added uninstrumented calls. For example, loop distribution
2411 can transform certain loop constructs into __builtin_mem*
2412 calls. In this case, see if we have a suitable TM
2413 replacement and fill in the gaps. */
2414 gcc_assert (DECL_BUILT_IN_CLASS (fn_decl) == BUILT_IN_NORMAL);
2415 enum built_in_function code = DECL_FUNCTION_CODE (fn_decl);
2416 gcc_assert (code == BUILT_IN_MEMCPY
2417 || code == BUILT_IN_MEMMOVE
2418 || code == BUILT_IN_MEMSET);
2420 tree repl = find_tm_replacement_function (fn_decl);
2421 if (repl)
2423 gimple_call_set_fndecl (stmt, repl);
2424 update_stmt (stmt);
2425 node = cgraph_node::create (repl);
2426 node->local.tm_may_enter_irr = false;
2427 return expand_call_tm (region, gsi);
2429 gcc_unreachable ();
2431 if (node->local.tm_may_enter_irr)
2432 transaction_subcode_ior (region, GTMA_MAY_ENTER_IRREVOCABLE);
2434 if (is_tm_abort (fn_decl))
2436 transaction_subcode_ior (region, GTMA_HAVE_ABORT);
2437 return true;
2440 /* Instrument the store if needed.
2442 If the assignment happens inside the function call (return slot
2443 optimization), there is no instrumentation to be done, since
2444 the callee should have done the right thing. */
2445 if (lhs && requires_barrier (region->entry_block, lhs, stmt)
2446 && !gimple_call_return_slot_opt_p (stmt))
2448 tree tmp = create_tmp_reg (TREE_TYPE (lhs));
2449 location_t loc = gimple_location (stmt);
2450 edge fallthru_edge = NULL;
2451 gassign *assign_stmt;
2453 /* Remember if the call was going to throw. */
2454 if (stmt_can_throw_internal (stmt))
2456 edge_iterator ei;
2457 edge e;
2458 basic_block bb = gimple_bb (stmt);
2460 FOR_EACH_EDGE (e, ei, bb->succs)
2461 if (e->flags & EDGE_FALLTHRU)
2463 fallthru_edge = e;
2464 break;
2468 gimple_call_set_lhs (stmt, tmp);
2469 update_stmt (stmt);
2470 assign_stmt = gimple_build_assign (lhs, tmp);
2471 gimple_set_location (assign_stmt, loc);
2473 /* We cannot throw in the middle of a BB. If the call was going
2474 to throw, place the instrumentation on the fallthru edge, so
2475 the call remains the last statement in the block. */
2476 if (fallthru_edge)
2478 gimple_seq fallthru_seq = gimple_seq_alloc_with_stmt (assign_stmt);
2479 gimple_stmt_iterator fallthru_gsi = gsi_start (fallthru_seq);
2480 expand_assign_tm (region, &fallthru_gsi);
2481 gsi_insert_seq_on_edge (fallthru_edge, fallthru_seq);
2482 pending_edge_inserts_p = true;
2484 else
2486 gsi_insert_after (gsi, assign_stmt, GSI_CONTINUE_LINKING);
2487 expand_assign_tm (region, gsi);
2490 transaction_subcode_ior (region, GTMA_HAVE_STORE);
2493 return retval;
2497 /* Expand all statements in BB as appropriate for being inside
2498 a transaction. */
2500 static void
2501 expand_block_tm (struct tm_region *region, basic_block bb)
2503 gimple_stmt_iterator gsi;
2505 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); )
2507 gimple stmt = gsi_stmt (gsi);
2508 switch (gimple_code (stmt))
2510 case GIMPLE_ASSIGN:
2511 /* Only memory reads/writes need to be instrumented. */
2512 if (gimple_assign_single_p (stmt)
2513 && !gimple_clobber_p (stmt))
2515 expand_assign_tm (region, &gsi);
2516 continue;
2518 break;
2520 case GIMPLE_CALL:
2521 if (expand_call_tm (region, &gsi))
2522 return;
2523 break;
2525 case GIMPLE_ASM:
2526 gcc_unreachable ();
2528 default:
2529 break;
2531 if (!gsi_end_p (gsi))
2532 gsi_next (&gsi);
2536 /* Return the list of basic-blocks in REGION.
2538 STOP_AT_IRREVOCABLE_P is true if caller is uninterested in blocks
2539 following a TM_IRREVOCABLE call.
2541 INCLUDE_UNINSTRUMENTED_P is TRUE if we should include the
2542 uninstrumented code path blocks in the list of basic blocks
2543 returned, false otherwise. */
2545 static vec<basic_block>
2546 get_tm_region_blocks (basic_block entry_block,
2547 bitmap exit_blocks,
2548 bitmap irr_blocks,
2549 bitmap all_region_blocks,
2550 bool stop_at_irrevocable_p,
2551 bool include_uninstrumented_p = true)
2553 vec<basic_block> bbs = vNULL;
2554 unsigned i;
2555 edge e;
2556 edge_iterator ei;
2557 bitmap visited_blocks = BITMAP_ALLOC (NULL);
2559 i = 0;
2560 bbs.safe_push (entry_block);
2561 bitmap_set_bit (visited_blocks, entry_block->index);
2565 basic_block bb = bbs[i++];
2567 if (exit_blocks &&
2568 bitmap_bit_p (exit_blocks, bb->index))
2569 continue;
2571 if (stop_at_irrevocable_p
2572 && irr_blocks
2573 && bitmap_bit_p (irr_blocks, bb->index))
2574 continue;
2576 FOR_EACH_EDGE (e, ei, bb->succs)
2577 if ((include_uninstrumented_p
2578 || !(e->flags & EDGE_TM_UNINSTRUMENTED))
2579 && !bitmap_bit_p (visited_blocks, e->dest->index))
2581 bitmap_set_bit (visited_blocks, e->dest->index);
2582 bbs.safe_push (e->dest);
2585 while (i < bbs.length ());
2587 if (all_region_blocks)
2588 bitmap_ior_into (all_region_blocks, visited_blocks);
2590 BITMAP_FREE (visited_blocks);
2591 return bbs;
2594 // Callback data for collect_bb2reg.
2595 struct bb2reg_stuff
2597 vec<tm_region_p> *bb2reg;
2598 bool include_uninstrumented_p;
2601 // Callback for expand_regions, collect innermost region data for each bb.
2602 static void *
2603 collect_bb2reg (struct tm_region *region, void *data)
2605 struct bb2reg_stuff *stuff = (struct bb2reg_stuff *)data;
2606 vec<tm_region_p> *bb2reg = stuff->bb2reg;
2607 vec<basic_block> queue;
2608 unsigned int i;
2609 basic_block bb;
2611 queue = get_tm_region_blocks (region->entry_block,
2612 region->exit_blocks,
2613 region->irr_blocks,
2614 NULL,
2615 /*stop_at_irr_p=*/true,
2616 stuff->include_uninstrumented_p);
2618 // We expect expand_region to perform a post-order traversal of the region
2619 // tree. Therefore the last region seen for any bb is the innermost.
2620 FOR_EACH_VEC_ELT (queue, i, bb)
2621 (*bb2reg)[bb->index] = region;
2623 queue.release ();
2624 return NULL;
2627 // Returns a vector, indexed by BB->INDEX, of the innermost tm_region to
2628 // which a basic block belongs. Note that we only consider the instrumented
2629 // code paths for the region; the uninstrumented code paths are ignored if
2630 // INCLUDE_UNINSTRUMENTED_P is false.
2632 // ??? This data is very similar to the bb_regions array that is collected
2633 // during tm_region_init. Or, rather, this data is similar to what could
2634 // be used within tm_region_init. The actual computation in tm_region_init
2635 // begins and ends with bb_regions entirely full of NULL pointers, due to
2636 // the way in which pointers are swapped in and out of the array.
2638 // ??? Our callers expect that blocks are not shared between transactions.
2639 // When the optimizers get too smart, and blocks are shared, then during
2640 // the tm_mark phase we'll add log entries to only one of the two transactions,
2641 // and in the tm_edge phase we'll add edges to the CFG that create invalid
2642 // cycles. The symptom being SSA defs that do not dominate their uses.
2643 // Note that the optimizers were locally correct with their transformation,
2644 // as we have no info within the program that suggests that the blocks cannot
2645 // be shared.
2647 // ??? There is currently a hack inside tree-ssa-pre.c to work around the
2648 // only known instance of this block sharing.
2650 static vec<tm_region_p>
2651 get_bb_regions_instrumented (bool traverse_clones,
2652 bool include_uninstrumented_p)
2654 unsigned n = last_basic_block_for_fn (cfun);
2655 struct bb2reg_stuff stuff;
2656 vec<tm_region_p> ret;
2658 ret.create (n);
2659 ret.safe_grow_cleared (n);
2660 stuff.bb2reg = &ret;
2661 stuff.include_uninstrumented_p = include_uninstrumented_p;
2662 expand_regions (all_tm_regions, collect_bb2reg, &stuff, traverse_clones);
2664 return ret;
2667 /* Set the IN_TRANSACTION for all gimple statements that appear in a
2668 transaction. */
2670 void
2671 compute_transaction_bits (void)
2673 struct tm_region *region;
2674 vec<basic_block> queue;
2675 unsigned int i;
2676 basic_block bb;
2678 /* ?? Perhaps we need to abstract gate_tm_init further, because we
2679 certainly don't need it to calculate CDI_DOMINATOR info. */
2680 gate_tm_init ();
2682 FOR_EACH_BB_FN (bb, cfun)
2683 bb->flags &= ~BB_IN_TRANSACTION;
2685 for (region = all_tm_regions; region; region = region->next)
2687 queue = get_tm_region_blocks (region->entry_block,
2688 region->exit_blocks,
2689 region->irr_blocks,
2690 NULL,
2691 /*stop_at_irr_p=*/true);
2692 for (i = 0; queue.iterate (i, &bb); ++i)
2693 bb->flags |= BB_IN_TRANSACTION;
2694 queue.release ();
2697 if (all_tm_regions)
2698 bitmap_obstack_release (&tm_obstack);
2701 /* Replace the GIMPLE_TRANSACTION in this region with the corresponding
2702 call to BUILT_IN_TM_START. */
2704 static void *
2705 expand_transaction (struct tm_region *region, void *data ATTRIBUTE_UNUSED)
2707 tree tm_start = builtin_decl_explicit (BUILT_IN_TM_START);
2708 basic_block transaction_bb = gimple_bb (region->transaction_stmt);
2709 tree tm_state = region->tm_state;
2710 tree tm_state_type = TREE_TYPE (tm_state);
2711 edge abort_edge = NULL;
2712 edge inst_edge = NULL;
2713 edge uninst_edge = NULL;
2714 edge fallthru_edge = NULL;
2716 // Identify the various successors of the transaction start.
2718 edge_iterator i;
2719 edge e;
2720 FOR_EACH_EDGE (e, i, transaction_bb->succs)
2722 if (e->flags & EDGE_TM_ABORT)
2723 abort_edge = e;
2724 else if (e->flags & EDGE_TM_UNINSTRUMENTED)
2725 uninst_edge = e;
2726 else
2727 inst_edge = e;
2728 if (e->flags & EDGE_FALLTHRU)
2729 fallthru_edge = e;
2733 /* ??? There are plenty of bits here we're not computing. */
2735 int subcode = gimple_transaction_subcode (region->get_transaction_stmt ());
2736 int flags = 0;
2737 if (subcode & GTMA_DOES_GO_IRREVOCABLE)
2738 flags |= PR_DOESGOIRREVOCABLE;
2739 if ((subcode & GTMA_MAY_ENTER_IRREVOCABLE) == 0)
2740 flags |= PR_HASNOIRREVOCABLE;
2741 /* If the transaction does not have an abort in lexical scope and is not
2742 marked as an outer transaction, then it will never abort. */
2743 if ((subcode & GTMA_HAVE_ABORT) == 0 && (subcode & GTMA_IS_OUTER) == 0)
2744 flags |= PR_HASNOABORT;
2745 if ((subcode & GTMA_HAVE_STORE) == 0)
2746 flags |= PR_READONLY;
2747 if (inst_edge && !(subcode & GTMA_HAS_NO_INSTRUMENTATION))
2748 flags |= PR_INSTRUMENTEDCODE;
2749 if (uninst_edge)
2750 flags |= PR_UNINSTRUMENTEDCODE;
2751 if (subcode & GTMA_IS_OUTER)
2752 region->original_transaction_was_outer = true;
2753 tree t = build_int_cst (tm_state_type, flags);
2754 gcall *call = gimple_build_call (tm_start, 1, t);
2755 gimple_call_set_lhs (call, tm_state);
2756 gimple_set_location (call, gimple_location (region->transaction_stmt));
2758 // Replace the GIMPLE_TRANSACTION with the call to BUILT_IN_TM_START.
2759 gimple_stmt_iterator gsi = gsi_last_bb (transaction_bb);
2760 gcc_assert (gsi_stmt (gsi) == region->transaction_stmt);
2761 gsi_insert_before (&gsi, call, GSI_SAME_STMT);
2762 gsi_remove (&gsi, true);
2763 region->transaction_stmt = call;
2766 // Generate log saves.
2767 if (!tm_log_save_addresses.is_empty ())
2768 tm_log_emit_saves (region->entry_block, transaction_bb);
2770 // In the beginning, we've no tests to perform on transaction restart.
2771 // Note that after this point, transaction_bb becomes the "most recent
2772 // block containing tests for the transaction".
2773 region->restart_block = region->entry_block;
2775 // Generate log restores.
2776 if (!tm_log_save_addresses.is_empty ())
2778 basic_block test_bb = create_empty_bb (transaction_bb);
2779 basic_block code_bb = create_empty_bb (test_bb);
2780 basic_block join_bb = create_empty_bb (code_bb);
2781 add_bb_to_loop (test_bb, transaction_bb->loop_father);
2782 add_bb_to_loop (code_bb, transaction_bb->loop_father);
2783 add_bb_to_loop (join_bb, transaction_bb->loop_father);
2784 if (region->restart_block == region->entry_block)
2785 region->restart_block = test_bb;
2787 tree t1 = create_tmp_reg (tm_state_type);
2788 tree t2 = build_int_cst (tm_state_type, A_RESTORELIVEVARIABLES);
2789 gimple stmt = gimple_build_assign (t1, BIT_AND_EXPR, tm_state, t2);
2790 gimple_stmt_iterator gsi = gsi_last_bb (test_bb);
2791 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
2793 t2 = build_int_cst (tm_state_type, 0);
2794 stmt = gimple_build_cond (NE_EXPR, t1, t2, NULL, NULL);
2795 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
2797 tm_log_emit_restores (region->entry_block, code_bb);
2799 edge ei = make_edge (transaction_bb, test_bb, EDGE_FALLTHRU);
2800 edge et = make_edge (test_bb, code_bb, EDGE_TRUE_VALUE);
2801 edge ef = make_edge (test_bb, join_bb, EDGE_FALSE_VALUE);
2802 redirect_edge_pred (fallthru_edge, join_bb);
2804 join_bb->frequency = test_bb->frequency = transaction_bb->frequency;
2805 join_bb->count = test_bb->count = transaction_bb->count;
2807 ei->probability = PROB_ALWAYS;
2808 et->probability = PROB_LIKELY;
2809 ef->probability = PROB_UNLIKELY;
2810 et->count = apply_probability (test_bb->count, et->probability);
2811 ef->count = apply_probability (test_bb->count, ef->probability);
2813 code_bb->count = et->count;
2814 code_bb->frequency = EDGE_FREQUENCY (et);
2816 transaction_bb = join_bb;
2819 // If we have an ABORT edge, create a test to perform the abort.
2820 if (abort_edge)
2822 basic_block test_bb = create_empty_bb (transaction_bb);
2823 add_bb_to_loop (test_bb, transaction_bb->loop_father);
2824 if (region->restart_block == region->entry_block)
2825 region->restart_block = test_bb;
2827 tree t1 = create_tmp_reg (tm_state_type);
2828 tree t2 = build_int_cst (tm_state_type, A_ABORTTRANSACTION);
2829 gimple stmt = gimple_build_assign (t1, BIT_AND_EXPR, tm_state, t2);
2830 gimple_stmt_iterator gsi = gsi_last_bb (test_bb);
2831 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
2833 t2 = build_int_cst (tm_state_type, 0);
2834 stmt = gimple_build_cond (NE_EXPR, t1, t2, NULL, NULL);
2835 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
2837 edge ei = make_edge (transaction_bb, test_bb, EDGE_FALLTHRU);
2838 test_bb->frequency = transaction_bb->frequency;
2839 test_bb->count = transaction_bb->count;
2840 ei->probability = PROB_ALWAYS;
2842 // Not abort edge. If both are live, chose one at random as we'll
2843 // we'll be fixing that up below.
2844 redirect_edge_pred (fallthru_edge, test_bb);
2845 fallthru_edge->flags = EDGE_FALSE_VALUE;
2846 fallthru_edge->probability = PROB_VERY_LIKELY;
2847 fallthru_edge->count
2848 = apply_probability (test_bb->count, fallthru_edge->probability);
2850 // Abort/over edge.
2851 redirect_edge_pred (abort_edge, test_bb);
2852 abort_edge->flags = EDGE_TRUE_VALUE;
2853 abort_edge->probability = PROB_VERY_UNLIKELY;
2854 abort_edge->count
2855 = apply_probability (test_bb->count, abort_edge->probability);
2857 transaction_bb = test_bb;
2860 // If we have both instrumented and uninstrumented code paths, select one.
2861 if (inst_edge && uninst_edge)
2863 basic_block test_bb = create_empty_bb (transaction_bb);
2864 add_bb_to_loop (test_bb, transaction_bb->loop_father);
2865 if (region->restart_block == region->entry_block)
2866 region->restart_block = test_bb;
2868 tree t1 = create_tmp_reg (tm_state_type);
2869 tree t2 = build_int_cst (tm_state_type, A_RUNUNINSTRUMENTEDCODE);
2871 gimple stmt = gimple_build_assign (t1, BIT_AND_EXPR, tm_state, t2);
2872 gimple_stmt_iterator gsi = gsi_last_bb (test_bb);
2873 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
2875 t2 = build_int_cst (tm_state_type, 0);
2876 stmt = gimple_build_cond (NE_EXPR, t1, t2, NULL, NULL);
2877 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
2879 // Create the edge into test_bb first, as we want to copy values
2880 // out of the fallthru edge.
2881 edge e = make_edge (transaction_bb, test_bb, fallthru_edge->flags);
2882 e->probability = fallthru_edge->probability;
2883 test_bb->count = e->count = fallthru_edge->count;
2884 test_bb->frequency = EDGE_FREQUENCY (e);
2886 // Now update the edges to the inst/uninist implementations.
2887 // For now assume that the paths are equally likely. When using HTM,
2888 // we'll try the uninst path first and fallback to inst path if htm
2889 // buffers are exceeded. Without HTM we start with the inst path and
2890 // use the uninst path when falling back to serial mode.
2891 redirect_edge_pred (inst_edge, test_bb);
2892 inst_edge->flags = EDGE_FALSE_VALUE;
2893 inst_edge->probability = REG_BR_PROB_BASE / 2;
2894 inst_edge->count
2895 = apply_probability (test_bb->count, inst_edge->probability);
2897 redirect_edge_pred (uninst_edge, test_bb);
2898 uninst_edge->flags = EDGE_TRUE_VALUE;
2899 uninst_edge->probability = REG_BR_PROB_BASE / 2;
2900 uninst_edge->count
2901 = apply_probability (test_bb->count, uninst_edge->probability);
2904 // If we have no previous special cases, and we have PHIs at the beginning
2905 // of the atomic region, this means we have a loop at the beginning of the
2906 // atomic region that shares the first block. This can cause problems with
2907 // the transaction restart abnormal edges to be added in the tm_edges pass.
2908 // Solve this by adding a new empty block to receive the abnormal edges.
2909 if (region->restart_block == region->entry_block
2910 && phi_nodes (region->entry_block))
2912 basic_block empty_bb = create_empty_bb (transaction_bb);
2913 region->restart_block = empty_bb;
2914 add_bb_to_loop (empty_bb, transaction_bb->loop_father);
2916 redirect_edge_pred (fallthru_edge, empty_bb);
2917 make_edge (transaction_bb, empty_bb, EDGE_FALLTHRU);
2920 return NULL;
2923 /* Generate the temporary to be used for the return value of
2924 BUILT_IN_TM_START. */
2926 static void *
2927 generate_tm_state (struct tm_region *region, void *data ATTRIBUTE_UNUSED)
2929 tree tm_start = builtin_decl_explicit (BUILT_IN_TM_START);
2930 region->tm_state =
2931 create_tmp_reg (TREE_TYPE (TREE_TYPE (tm_start)), "tm_state");
2933 // Reset the subcode, post optimizations. We'll fill this in
2934 // again as we process blocks.
2935 if (region->exit_blocks)
2937 gtransaction *transaction_stmt = region->get_transaction_stmt ();
2938 unsigned int subcode = gimple_transaction_subcode (transaction_stmt);
2940 if (subcode & GTMA_DOES_GO_IRREVOCABLE)
2941 subcode &= (GTMA_DECLARATION_MASK | GTMA_DOES_GO_IRREVOCABLE
2942 | GTMA_MAY_ENTER_IRREVOCABLE
2943 | GTMA_HAS_NO_INSTRUMENTATION);
2944 else
2945 subcode &= GTMA_DECLARATION_MASK;
2946 gimple_transaction_set_subcode (transaction_stmt, subcode);
2949 return NULL;
2952 // Propagate flags from inner transactions outwards.
2953 static void
2954 propagate_tm_flags_out (struct tm_region *region)
2956 if (region == NULL)
2957 return;
2958 propagate_tm_flags_out (region->inner);
2960 if (region->outer && region->outer->transaction_stmt)
2962 unsigned s
2963 = gimple_transaction_subcode (region->get_transaction_stmt ());
2964 s &= (GTMA_HAVE_ABORT | GTMA_HAVE_LOAD | GTMA_HAVE_STORE
2965 | GTMA_MAY_ENTER_IRREVOCABLE);
2966 s |= gimple_transaction_subcode (region->outer->get_transaction_stmt ());
2967 gimple_transaction_set_subcode (region->outer->get_transaction_stmt (),
2971 propagate_tm_flags_out (region->next);
2974 /* Entry point to the MARK phase of TM expansion. Here we replace
2975 transactional memory statements with calls to builtins, and function
2976 calls with their transactional clones (if available). But we don't
2977 yet lower GIMPLE_TRANSACTION or add the transaction restart back-edges. */
2979 static unsigned int
2980 execute_tm_mark (void)
2982 pending_edge_inserts_p = false;
2984 expand_regions (all_tm_regions, generate_tm_state, NULL,
2985 /*traverse_clones=*/true);
2987 tm_log_init ();
2989 vec<tm_region_p> bb_regions
2990 = get_bb_regions_instrumented (/*traverse_clones=*/true,
2991 /*include_uninstrumented_p=*/false);
2992 struct tm_region *r;
2993 unsigned i;
2995 // Expand memory operations into calls into the runtime.
2996 // This collects log entries as well.
2997 FOR_EACH_VEC_ELT (bb_regions, i, r)
2999 if (r != NULL)
3001 if (r->transaction_stmt)
3003 unsigned sub
3004 = gimple_transaction_subcode (r->get_transaction_stmt ());
3006 /* If we're sure to go irrevocable, there won't be
3007 anything to expand, since the run-time will go
3008 irrevocable right away. */
3009 if (sub & GTMA_DOES_GO_IRREVOCABLE
3010 && sub & GTMA_MAY_ENTER_IRREVOCABLE)
3011 continue;
3013 expand_block_tm (r, BASIC_BLOCK_FOR_FN (cfun, i));
3017 bb_regions.release ();
3019 // Propagate flags from inner transactions outwards.
3020 propagate_tm_flags_out (all_tm_regions);
3022 // Expand GIMPLE_TRANSACTIONs into calls into the runtime.
3023 expand_regions (all_tm_regions, expand_transaction, NULL,
3024 /*traverse_clones=*/false);
3026 tm_log_emit ();
3027 tm_log_delete ();
3029 if (pending_edge_inserts_p)
3030 gsi_commit_edge_inserts ();
3031 free_dominance_info (CDI_DOMINATORS);
3032 return 0;
3035 namespace {
3037 const pass_data pass_data_tm_mark =
3039 GIMPLE_PASS, /* type */
3040 "tmmark", /* name */
3041 OPTGROUP_NONE, /* optinfo_flags */
3042 TV_TRANS_MEM, /* tv_id */
3043 ( PROP_ssa | PROP_cfg ), /* properties_required */
3044 0, /* properties_provided */
3045 0, /* properties_destroyed */
3046 0, /* todo_flags_start */
3047 TODO_update_ssa, /* todo_flags_finish */
3050 class pass_tm_mark : public gimple_opt_pass
3052 public:
3053 pass_tm_mark (gcc::context *ctxt)
3054 : gimple_opt_pass (pass_data_tm_mark, ctxt)
3057 /* opt_pass methods: */
3058 virtual unsigned int execute (function *) { return execute_tm_mark (); }
3060 }; // class pass_tm_mark
3062 } // anon namespace
3064 gimple_opt_pass *
3065 make_pass_tm_mark (gcc::context *ctxt)
3067 return new pass_tm_mark (ctxt);
3071 /* Create an abnormal edge from STMT at iter, splitting the block
3072 as necessary. Adjust *PNEXT as needed for the split block. */
3074 static inline void
3075 split_bb_make_tm_edge (gimple stmt, basic_block dest_bb,
3076 gimple_stmt_iterator iter, gimple_stmt_iterator *pnext)
3078 basic_block bb = gimple_bb (stmt);
3079 if (!gsi_one_before_end_p (iter))
3081 edge e = split_block (bb, stmt);
3082 *pnext = gsi_start_bb (e->dest);
3084 make_edge (bb, dest_bb, EDGE_ABNORMAL);
3086 // Record the need for the edge for the benefit of the rtl passes.
3087 if (cfun->gimple_df->tm_restart == NULL)
3088 cfun->gimple_df->tm_restart
3089 = hash_table<tm_restart_hasher>::create_ggc (31);
3091 struct tm_restart_node dummy;
3092 dummy.stmt = stmt;
3093 dummy.label_or_list = gimple_block_label (dest_bb);
3095 tm_restart_node **slot = cfun->gimple_df->tm_restart->find_slot (&dummy,
3096 INSERT);
3097 struct tm_restart_node *n = *slot;
3098 if (n == NULL)
3100 n = ggc_alloc<tm_restart_node> ();
3101 *n = dummy;
3103 else
3105 tree old = n->label_or_list;
3106 if (TREE_CODE (old) == LABEL_DECL)
3107 old = tree_cons (NULL, old, NULL);
3108 n->label_or_list = tree_cons (NULL, dummy.label_or_list, old);
3112 /* Split block BB as necessary for every builtin function we added, and
3113 wire up the abnormal back edges implied by the transaction restart. */
3115 static void
3116 expand_block_edges (struct tm_region *const region, basic_block bb)
3118 gimple_stmt_iterator gsi, next_gsi;
3120 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi = next_gsi)
3122 gimple stmt = gsi_stmt (gsi);
3123 gcall *call_stmt;
3125 next_gsi = gsi;
3126 gsi_next (&next_gsi);
3128 // ??? Shouldn't we split for any non-pure, non-irrevocable function?
3129 call_stmt = dyn_cast <gcall *> (stmt);
3130 if ((!call_stmt)
3131 || (gimple_call_flags (call_stmt) & ECF_TM_BUILTIN) == 0)
3132 continue;
3134 if (DECL_FUNCTION_CODE (gimple_call_fndecl (call_stmt))
3135 == BUILT_IN_TM_ABORT)
3137 // If we have a ``_transaction_cancel [[outer]]'', there is only
3138 // one abnormal edge: to the transaction marked OUTER.
3139 // All compiler-generated instances of BUILT_IN_TM_ABORT have a
3140 // constant argument, which we can examine here. Users invoking
3141 // TM_ABORT directly get what they deserve.
3142 tree arg = gimple_call_arg (call_stmt, 0);
3143 if (TREE_CODE (arg) == INTEGER_CST
3144 && (TREE_INT_CST_LOW (arg) & AR_OUTERABORT) != 0
3145 && !decl_is_tm_clone (current_function_decl))
3147 // Find the GTMA_IS_OUTER transaction.
3148 for (struct tm_region *o = region; o; o = o->outer)
3149 if (o->original_transaction_was_outer)
3151 split_bb_make_tm_edge (call_stmt, o->restart_block,
3152 gsi, &next_gsi);
3153 break;
3156 // Otherwise, the front-end should have semantically checked
3157 // outer aborts, but in either case the target region is not
3158 // within this function.
3159 continue;
3162 // Non-outer, TM aborts have an abnormal edge to the inner-most
3163 // transaction, the one being aborted;
3164 split_bb_make_tm_edge (call_stmt, region->restart_block, gsi,
3165 &next_gsi);
3168 // All TM builtins have an abnormal edge to the outer-most transaction.
3169 // We never restart inner transactions. For tm clones, we know a-priori
3170 // that the outer-most transaction is outside the function.
3171 if (decl_is_tm_clone (current_function_decl))
3172 continue;
3174 if (cfun->gimple_df->tm_restart == NULL)
3175 cfun->gimple_df->tm_restart
3176 = hash_table<tm_restart_hasher>::create_ggc (31);
3178 // All TM builtins have an abnormal edge to the outer-most transaction.
3179 // We never restart inner transactions.
3180 for (struct tm_region *o = region; o; o = o->outer)
3181 if (!o->outer)
3183 split_bb_make_tm_edge (call_stmt, o->restart_block, gsi, &next_gsi);
3184 break;
3187 // Delete any tail-call annotation that may have been added.
3188 // The tail-call pass may have mis-identified the commit as being
3189 // a candidate because we had not yet added this restart edge.
3190 gimple_call_set_tail (call_stmt, false);
3194 /* Entry point to the final expansion of transactional nodes. */
3196 namespace {
3198 const pass_data pass_data_tm_edges =
3200 GIMPLE_PASS, /* type */
3201 "tmedge", /* name */
3202 OPTGROUP_NONE, /* optinfo_flags */
3203 TV_TRANS_MEM, /* tv_id */
3204 ( PROP_ssa | PROP_cfg ), /* properties_required */
3205 0, /* properties_provided */
3206 0, /* properties_destroyed */
3207 0, /* todo_flags_start */
3208 TODO_update_ssa, /* todo_flags_finish */
3211 class pass_tm_edges : public gimple_opt_pass
3213 public:
3214 pass_tm_edges (gcc::context *ctxt)
3215 : gimple_opt_pass (pass_data_tm_edges, ctxt)
3218 /* opt_pass methods: */
3219 virtual unsigned int execute (function *);
3221 }; // class pass_tm_edges
3223 unsigned int
3224 pass_tm_edges::execute (function *fun)
3226 vec<tm_region_p> bb_regions
3227 = get_bb_regions_instrumented (/*traverse_clones=*/false,
3228 /*include_uninstrumented_p=*/true);
3229 struct tm_region *r;
3230 unsigned i;
3232 FOR_EACH_VEC_ELT (bb_regions, i, r)
3233 if (r != NULL)
3234 expand_block_edges (r, BASIC_BLOCK_FOR_FN (fun, i));
3236 bb_regions.release ();
3238 /* We've got to release the dominance info now, to indicate that it
3239 must be rebuilt completely. Otherwise we'll crash trying to update
3240 the SSA web in the TODO section following this pass. */
3241 free_dominance_info (CDI_DOMINATORS);
3242 bitmap_obstack_release (&tm_obstack);
3243 all_tm_regions = NULL;
3245 return 0;
3248 } // anon namespace
3250 gimple_opt_pass *
3251 make_pass_tm_edges (gcc::context *ctxt)
3253 return new pass_tm_edges (ctxt);
3256 /* Helper function for expand_regions. Expand REGION and recurse to
3257 the inner region. Call CALLBACK on each region. CALLBACK returns
3258 NULL to continue the traversal, otherwise a non-null value which
3259 this function will return as well. TRAVERSE_CLONES is true if we
3260 should traverse transactional clones. */
3262 static void *
3263 expand_regions_1 (struct tm_region *region,
3264 void *(*callback)(struct tm_region *, void *),
3265 void *data,
3266 bool traverse_clones)
3268 void *retval = NULL;
3269 if (region->exit_blocks
3270 || (traverse_clones && decl_is_tm_clone (current_function_decl)))
3272 retval = callback (region, data);
3273 if (retval)
3274 return retval;
3276 if (region->inner)
3278 retval = expand_regions (region->inner, callback, data, traverse_clones);
3279 if (retval)
3280 return retval;
3282 return retval;
3285 /* Traverse the regions enclosed and including REGION. Execute
3286 CALLBACK for each region, passing DATA. CALLBACK returns NULL to
3287 continue the traversal, otherwise a non-null value which this
3288 function will return as well. TRAVERSE_CLONES is true if we should
3289 traverse transactional clones. */
3291 static void *
3292 expand_regions (struct tm_region *region,
3293 void *(*callback)(struct tm_region *, void *),
3294 void *data,
3295 bool traverse_clones)
3297 void *retval = NULL;
3298 while (region)
3300 retval = expand_regions_1 (region, callback, data, traverse_clones);
3301 if (retval)
3302 return retval;
3303 region = region->next;
3305 return retval;
3309 /* A unique TM memory operation. */
3310 typedef struct tm_memop
3312 /* Unique ID that all memory operations to the same location have. */
3313 unsigned int value_id;
3314 /* Address of load/store. */
3315 tree addr;
3316 } *tm_memop_t;
3318 /* TM memory operation hashtable helpers. */
3320 struct tm_memop_hasher : free_ptr_hash <tm_memop>
3322 static inline hashval_t hash (const tm_memop *);
3323 static inline bool equal (const tm_memop *, const tm_memop *);
3326 /* Htab support. Return a hash value for a `tm_memop'. */
3327 inline hashval_t
3328 tm_memop_hasher::hash (const tm_memop *mem)
3330 tree addr = mem->addr;
3331 /* We drill down to the SSA_NAME/DECL for the hash, but equality is
3332 actually done with operand_equal_p (see tm_memop_eq). */
3333 if (TREE_CODE (addr) == ADDR_EXPR)
3334 addr = TREE_OPERAND (addr, 0);
3335 return iterative_hash_expr (addr, 0);
3338 /* Htab support. Return true if two tm_memop's are the same. */
3339 inline bool
3340 tm_memop_hasher::equal (const tm_memop *mem1, const tm_memop *mem2)
3342 return operand_equal_p (mem1->addr, mem2->addr, 0);
3345 /* Sets for solving data flow equations in the memory optimization pass. */
3346 struct tm_memopt_bitmaps
3348 /* Stores available to this BB upon entry. Basically, stores that
3349 dominate this BB. */
3350 bitmap store_avail_in;
3351 /* Stores available at the end of this BB. */
3352 bitmap store_avail_out;
3353 bitmap store_antic_in;
3354 bitmap store_antic_out;
3355 /* Reads available to this BB upon entry. Basically, reads that
3356 dominate this BB. */
3357 bitmap read_avail_in;
3358 /* Reads available at the end of this BB. */
3359 bitmap read_avail_out;
3360 /* Reads performed in this BB. */
3361 bitmap read_local;
3362 /* Writes performed in this BB. */
3363 bitmap store_local;
3365 /* Temporary storage for pass. */
3366 /* Is the current BB in the worklist? */
3367 bool avail_in_worklist_p;
3368 /* Have we visited this BB? */
3369 bool visited_p;
3372 static bitmap_obstack tm_memopt_obstack;
3374 /* Unique counter for TM loads and stores. Loads and stores of the
3375 same address get the same ID. */
3376 static unsigned int tm_memopt_value_id;
3377 static hash_table<tm_memop_hasher> *tm_memopt_value_numbers;
3379 #define STORE_AVAIL_IN(BB) \
3380 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_avail_in
3381 #define STORE_AVAIL_OUT(BB) \
3382 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_avail_out
3383 #define STORE_ANTIC_IN(BB) \
3384 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_antic_in
3385 #define STORE_ANTIC_OUT(BB) \
3386 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_antic_out
3387 #define READ_AVAIL_IN(BB) \
3388 ((struct tm_memopt_bitmaps *) ((BB)->aux))->read_avail_in
3389 #define READ_AVAIL_OUT(BB) \
3390 ((struct tm_memopt_bitmaps *) ((BB)->aux))->read_avail_out
3391 #define READ_LOCAL(BB) \
3392 ((struct tm_memopt_bitmaps *) ((BB)->aux))->read_local
3393 #define STORE_LOCAL(BB) \
3394 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_local
3395 #define AVAIL_IN_WORKLIST_P(BB) \
3396 ((struct tm_memopt_bitmaps *) ((BB)->aux))->avail_in_worklist_p
3397 #define BB_VISITED_P(BB) \
3398 ((struct tm_memopt_bitmaps *) ((BB)->aux))->visited_p
3400 /* Given a TM load/store in STMT, return the value number for the address
3401 it accesses. */
3403 static unsigned int
3404 tm_memopt_value_number (gimple stmt, enum insert_option op)
3406 struct tm_memop tmpmem, *mem;
3407 tm_memop **slot;
3409 gcc_assert (is_tm_load (stmt) || is_tm_store (stmt));
3410 tmpmem.addr = gimple_call_arg (stmt, 0);
3411 slot = tm_memopt_value_numbers->find_slot (&tmpmem, op);
3412 if (*slot)
3413 mem = *slot;
3414 else if (op == INSERT)
3416 mem = XNEW (struct tm_memop);
3417 *slot = mem;
3418 mem->value_id = tm_memopt_value_id++;
3419 mem->addr = tmpmem.addr;
3421 else
3422 gcc_unreachable ();
3423 return mem->value_id;
3426 /* Accumulate TM memory operations in BB into STORE_LOCAL and READ_LOCAL. */
3428 static void
3429 tm_memopt_accumulate_memops (basic_block bb)
3431 gimple_stmt_iterator gsi;
3433 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3435 gimple stmt = gsi_stmt (gsi);
3436 bitmap bits;
3437 unsigned int loc;
3439 if (is_tm_store (stmt))
3440 bits = STORE_LOCAL (bb);
3441 else if (is_tm_load (stmt))
3442 bits = READ_LOCAL (bb);
3443 else
3444 continue;
3446 loc = tm_memopt_value_number (stmt, INSERT);
3447 bitmap_set_bit (bits, loc);
3448 if (dump_file)
3450 fprintf (dump_file, "TM memopt (%s): value num=%d, BB=%d, addr=",
3451 is_tm_load (stmt) ? "LOAD" : "STORE", loc,
3452 gimple_bb (stmt)->index);
3453 print_generic_expr (dump_file, gimple_call_arg (stmt, 0), 0);
3454 fprintf (dump_file, "\n");
3459 /* Prettily dump one of the memopt sets. BITS is the bitmap to dump. */
3461 static void
3462 dump_tm_memopt_set (const char *set_name, bitmap bits)
3464 unsigned i;
3465 bitmap_iterator bi;
3466 const char *comma = "";
3468 fprintf (dump_file, "TM memopt: %s: [", set_name);
3469 EXECUTE_IF_SET_IN_BITMAP (bits, 0, i, bi)
3471 hash_table<tm_memop_hasher>::iterator hi;
3472 struct tm_memop *mem = NULL;
3474 /* Yeah, yeah, yeah. Whatever. This is just for debugging. */
3475 FOR_EACH_HASH_TABLE_ELEMENT (*tm_memopt_value_numbers, mem, tm_memop_t, hi)
3476 if (mem->value_id == i)
3477 break;
3478 gcc_assert (mem->value_id == i);
3479 fprintf (dump_file, "%s", comma);
3480 comma = ", ";
3481 print_generic_expr (dump_file, mem->addr, 0);
3483 fprintf (dump_file, "]\n");
3486 /* Prettily dump all of the memopt sets in BLOCKS. */
3488 static void
3489 dump_tm_memopt_sets (vec<basic_block> blocks)
3491 size_t i;
3492 basic_block bb;
3494 for (i = 0; blocks.iterate (i, &bb); ++i)
3496 fprintf (dump_file, "------------BB %d---------\n", bb->index);
3497 dump_tm_memopt_set ("STORE_LOCAL", STORE_LOCAL (bb));
3498 dump_tm_memopt_set ("READ_LOCAL", READ_LOCAL (bb));
3499 dump_tm_memopt_set ("STORE_AVAIL_IN", STORE_AVAIL_IN (bb));
3500 dump_tm_memopt_set ("STORE_AVAIL_OUT", STORE_AVAIL_OUT (bb));
3501 dump_tm_memopt_set ("READ_AVAIL_IN", READ_AVAIL_IN (bb));
3502 dump_tm_memopt_set ("READ_AVAIL_OUT", READ_AVAIL_OUT (bb));
3506 /* Compute {STORE,READ}_AVAIL_IN for the basic block BB. */
3508 static void
3509 tm_memopt_compute_avin (basic_block bb)
3511 edge e;
3512 unsigned ix;
3514 /* Seed with the AVOUT of any predecessor. */
3515 for (ix = 0; ix < EDGE_COUNT (bb->preds); ix++)
3517 e = EDGE_PRED (bb, ix);
3518 /* Make sure we have already visited this BB, and is thus
3519 initialized.
3521 If e->src->aux is NULL, this predecessor is actually on an
3522 enclosing transaction. We only care about the current
3523 transaction, so ignore it. */
3524 if (e->src->aux && BB_VISITED_P (e->src))
3526 bitmap_copy (STORE_AVAIL_IN (bb), STORE_AVAIL_OUT (e->src));
3527 bitmap_copy (READ_AVAIL_IN (bb), READ_AVAIL_OUT (e->src));
3528 break;
3532 for (; ix < EDGE_COUNT (bb->preds); ix++)
3534 e = EDGE_PRED (bb, ix);
3535 if (e->src->aux && BB_VISITED_P (e->src))
3537 bitmap_and_into (STORE_AVAIL_IN (bb), STORE_AVAIL_OUT (e->src));
3538 bitmap_and_into (READ_AVAIL_IN (bb), READ_AVAIL_OUT (e->src));
3542 BB_VISITED_P (bb) = true;
3545 /* Compute the STORE_ANTIC_IN for the basic block BB. */
3547 static void
3548 tm_memopt_compute_antin (basic_block bb)
3550 edge e;
3551 unsigned ix;
3553 /* Seed with the ANTIC_OUT of any successor. */
3554 for (ix = 0; ix < EDGE_COUNT (bb->succs); ix++)
3556 e = EDGE_SUCC (bb, ix);
3557 /* Make sure we have already visited this BB, and is thus
3558 initialized. */
3559 if (BB_VISITED_P (e->dest))
3561 bitmap_copy (STORE_ANTIC_IN (bb), STORE_ANTIC_OUT (e->dest));
3562 break;
3566 for (; ix < EDGE_COUNT (bb->succs); ix++)
3568 e = EDGE_SUCC (bb, ix);
3569 if (BB_VISITED_P (e->dest))
3570 bitmap_and_into (STORE_ANTIC_IN (bb), STORE_ANTIC_OUT (e->dest));
3573 BB_VISITED_P (bb) = true;
3576 /* Compute the AVAIL sets for every basic block in BLOCKS.
3578 We compute {STORE,READ}_AVAIL_{OUT,IN} as follows:
3580 AVAIL_OUT[bb] = union (AVAIL_IN[bb], LOCAL[bb])
3581 AVAIL_IN[bb] = intersect (AVAIL_OUT[predecessors])
3583 This is basically what we do in lcm's compute_available(), but here
3584 we calculate two sets of sets (one for STOREs and one for READs),
3585 and we work on a region instead of the entire CFG.
3587 REGION is the TM region.
3588 BLOCKS are the basic blocks in the region. */
3590 static void
3591 tm_memopt_compute_available (struct tm_region *region,
3592 vec<basic_block> blocks)
3594 edge e;
3595 basic_block *worklist, *qin, *qout, *qend, bb;
3596 unsigned int qlen, i;
3597 edge_iterator ei;
3598 bool changed;
3600 /* Allocate a worklist array/queue. Entries are only added to the
3601 list if they were not already on the list. So the size is
3602 bounded by the number of basic blocks in the region. */
3603 qlen = blocks.length () - 1;
3604 qin = qout = worklist =
3605 XNEWVEC (basic_block, qlen);
3607 /* Put every block in the region on the worklist. */
3608 for (i = 0; blocks.iterate (i, &bb); ++i)
3610 /* Seed AVAIL_OUT with the LOCAL set. */
3611 bitmap_ior_into (STORE_AVAIL_OUT (bb), STORE_LOCAL (bb));
3612 bitmap_ior_into (READ_AVAIL_OUT (bb), READ_LOCAL (bb));
3614 AVAIL_IN_WORKLIST_P (bb) = true;
3615 /* No need to insert the entry block, since it has an AVIN of
3616 null, and an AVOUT that has already been seeded in. */
3617 if (bb != region->entry_block)
3618 *qin++ = bb;
3621 /* The entry block has been initialized with the local sets. */
3622 BB_VISITED_P (region->entry_block) = true;
3624 qin = worklist;
3625 qend = &worklist[qlen];
3627 /* Iterate until the worklist is empty. */
3628 while (qlen)
3630 /* Take the first entry off the worklist. */
3631 bb = *qout++;
3632 qlen--;
3634 if (qout >= qend)
3635 qout = worklist;
3637 /* This block can be added to the worklist again if necessary. */
3638 AVAIL_IN_WORKLIST_P (bb) = false;
3639 tm_memopt_compute_avin (bb);
3641 /* Note: We do not add the LOCAL sets here because we already
3642 seeded the AVAIL_OUT sets with them. */
3643 changed = bitmap_ior_into (STORE_AVAIL_OUT (bb), STORE_AVAIL_IN (bb));
3644 changed |= bitmap_ior_into (READ_AVAIL_OUT (bb), READ_AVAIL_IN (bb));
3645 if (changed
3646 && (region->exit_blocks == NULL
3647 || !bitmap_bit_p (region->exit_blocks, bb->index)))
3648 /* If the out state of this block changed, then we need to add
3649 its successors to the worklist if they are not already in. */
3650 FOR_EACH_EDGE (e, ei, bb->succs)
3651 if (!AVAIL_IN_WORKLIST_P (e->dest)
3652 && e->dest != EXIT_BLOCK_PTR_FOR_FN (cfun))
3654 *qin++ = e->dest;
3655 AVAIL_IN_WORKLIST_P (e->dest) = true;
3656 qlen++;
3658 if (qin >= qend)
3659 qin = worklist;
3663 free (worklist);
3665 if (dump_file)
3666 dump_tm_memopt_sets (blocks);
3669 /* Compute ANTIC sets for every basic block in BLOCKS.
3671 We compute STORE_ANTIC_OUT as follows:
3673 STORE_ANTIC_OUT[bb] = union(STORE_ANTIC_IN[bb], STORE_LOCAL[bb])
3674 STORE_ANTIC_IN[bb] = intersect(STORE_ANTIC_OUT[successors])
3676 REGION is the TM region.
3677 BLOCKS are the basic blocks in the region. */
3679 static void
3680 tm_memopt_compute_antic (struct tm_region *region,
3681 vec<basic_block> blocks)
3683 edge e;
3684 basic_block *worklist, *qin, *qout, *qend, bb;
3685 unsigned int qlen;
3686 int i;
3687 edge_iterator ei;
3689 /* Allocate a worklist array/queue. Entries are only added to the
3690 list if they were not already on the list. So the size is
3691 bounded by the number of basic blocks in the region. */
3692 qin = qout = worklist = XNEWVEC (basic_block, blocks.length ());
3694 for (qlen = 0, i = blocks.length () - 1; i >= 0; --i)
3696 bb = blocks[i];
3698 /* Seed ANTIC_OUT with the LOCAL set. */
3699 bitmap_ior_into (STORE_ANTIC_OUT (bb), STORE_LOCAL (bb));
3701 /* Put every block in the region on the worklist. */
3702 AVAIL_IN_WORKLIST_P (bb) = true;
3703 /* No need to insert exit blocks, since their ANTIC_IN is NULL,
3704 and their ANTIC_OUT has already been seeded in. */
3705 if (region->exit_blocks
3706 && !bitmap_bit_p (region->exit_blocks, bb->index))
3708 qlen++;
3709 *qin++ = bb;
3713 /* The exit blocks have been initialized with the local sets. */
3714 if (region->exit_blocks)
3716 unsigned int i;
3717 bitmap_iterator bi;
3718 EXECUTE_IF_SET_IN_BITMAP (region->exit_blocks, 0, i, bi)
3719 BB_VISITED_P (BASIC_BLOCK_FOR_FN (cfun, i)) = true;
3722 qin = worklist;
3723 qend = &worklist[qlen];
3725 /* Iterate until the worklist is empty. */
3726 while (qlen)
3728 /* Take the first entry off the worklist. */
3729 bb = *qout++;
3730 qlen--;
3732 if (qout >= qend)
3733 qout = worklist;
3735 /* This block can be added to the worklist again if necessary. */
3736 AVAIL_IN_WORKLIST_P (bb) = false;
3737 tm_memopt_compute_antin (bb);
3739 /* Note: We do not add the LOCAL sets here because we already
3740 seeded the ANTIC_OUT sets with them. */
3741 if (bitmap_ior_into (STORE_ANTIC_OUT (bb), STORE_ANTIC_IN (bb))
3742 && bb != region->entry_block)
3743 /* If the out state of this block changed, then we need to add
3744 its predecessors to the worklist if they are not already in. */
3745 FOR_EACH_EDGE (e, ei, bb->preds)
3746 if (!AVAIL_IN_WORKLIST_P (e->src))
3748 *qin++ = e->src;
3749 AVAIL_IN_WORKLIST_P (e->src) = true;
3750 qlen++;
3752 if (qin >= qend)
3753 qin = worklist;
3757 free (worklist);
3759 if (dump_file)
3760 dump_tm_memopt_sets (blocks);
3763 /* Offsets of load variants from TM_LOAD. For example,
3764 BUILT_IN_TM_LOAD_RAR* is an offset of 1 from BUILT_IN_TM_LOAD*.
3765 See gtm-builtins.def. */
3766 #define TRANSFORM_RAR 1
3767 #define TRANSFORM_RAW 2
3768 #define TRANSFORM_RFW 3
3769 /* Offsets of store variants from TM_STORE. */
3770 #define TRANSFORM_WAR 1
3771 #define TRANSFORM_WAW 2
3773 /* Inform about a load/store optimization. */
3775 static void
3776 dump_tm_memopt_transform (gimple stmt)
3778 if (dump_file)
3780 fprintf (dump_file, "TM memopt: transforming: ");
3781 print_gimple_stmt (dump_file, stmt, 0, 0);
3782 fprintf (dump_file, "\n");
3786 /* Perform a read/write optimization. Replaces the TM builtin in STMT
3787 by a builtin that is OFFSET entries down in the builtins table in
3788 gtm-builtins.def. */
3790 static void
3791 tm_memopt_transform_stmt (unsigned int offset,
3792 gcall *stmt,
3793 gimple_stmt_iterator *gsi)
3795 tree fn = gimple_call_fn (stmt);
3796 gcc_assert (TREE_CODE (fn) == ADDR_EXPR);
3797 TREE_OPERAND (fn, 0)
3798 = builtin_decl_explicit ((enum built_in_function)
3799 (DECL_FUNCTION_CODE (TREE_OPERAND (fn, 0))
3800 + offset));
3801 gimple_call_set_fn (stmt, fn);
3802 gsi_replace (gsi, stmt, true);
3803 dump_tm_memopt_transform (stmt);
3806 /* Perform the actual TM memory optimization transformations in the
3807 basic blocks in BLOCKS. */
3809 static void
3810 tm_memopt_transform_blocks (vec<basic_block> blocks)
3812 size_t i;
3813 basic_block bb;
3814 gimple_stmt_iterator gsi;
3816 for (i = 0; blocks.iterate (i, &bb); ++i)
3818 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3820 gimple stmt = gsi_stmt (gsi);
3821 bitmap read_avail = READ_AVAIL_IN (bb);
3822 bitmap store_avail = STORE_AVAIL_IN (bb);
3823 bitmap store_antic = STORE_ANTIC_OUT (bb);
3824 unsigned int loc;
3826 if (is_tm_simple_load (stmt))
3828 gcall *call_stmt = as_a <gcall *> (stmt);
3829 loc = tm_memopt_value_number (stmt, NO_INSERT);
3830 if (store_avail && bitmap_bit_p (store_avail, loc))
3831 tm_memopt_transform_stmt (TRANSFORM_RAW, call_stmt, &gsi);
3832 else if (store_antic && bitmap_bit_p (store_antic, loc))
3834 tm_memopt_transform_stmt (TRANSFORM_RFW, call_stmt, &gsi);
3835 bitmap_set_bit (store_avail, loc);
3837 else if (read_avail && bitmap_bit_p (read_avail, loc))
3838 tm_memopt_transform_stmt (TRANSFORM_RAR, call_stmt, &gsi);
3839 else
3840 bitmap_set_bit (read_avail, loc);
3842 else if (is_tm_simple_store (stmt))
3844 gcall *call_stmt = as_a <gcall *> (stmt);
3845 loc = tm_memopt_value_number (stmt, NO_INSERT);
3846 if (store_avail && bitmap_bit_p (store_avail, loc))
3847 tm_memopt_transform_stmt (TRANSFORM_WAW, call_stmt, &gsi);
3848 else
3850 if (read_avail && bitmap_bit_p (read_avail, loc))
3851 tm_memopt_transform_stmt (TRANSFORM_WAR, call_stmt, &gsi);
3852 bitmap_set_bit (store_avail, loc);
3859 /* Return a new set of bitmaps for a BB. */
3861 static struct tm_memopt_bitmaps *
3862 tm_memopt_init_sets (void)
3864 struct tm_memopt_bitmaps *b
3865 = XOBNEW (&tm_memopt_obstack.obstack, struct tm_memopt_bitmaps);
3866 b->store_avail_in = BITMAP_ALLOC (&tm_memopt_obstack);
3867 b->store_avail_out = BITMAP_ALLOC (&tm_memopt_obstack);
3868 b->store_antic_in = BITMAP_ALLOC (&tm_memopt_obstack);
3869 b->store_antic_out = BITMAP_ALLOC (&tm_memopt_obstack);
3870 b->store_avail_out = BITMAP_ALLOC (&tm_memopt_obstack);
3871 b->read_avail_in = BITMAP_ALLOC (&tm_memopt_obstack);
3872 b->read_avail_out = BITMAP_ALLOC (&tm_memopt_obstack);
3873 b->read_local = BITMAP_ALLOC (&tm_memopt_obstack);
3874 b->store_local = BITMAP_ALLOC (&tm_memopt_obstack);
3875 return b;
3878 /* Free sets computed for each BB. */
3880 static void
3881 tm_memopt_free_sets (vec<basic_block> blocks)
3883 size_t i;
3884 basic_block bb;
3886 for (i = 0; blocks.iterate (i, &bb); ++i)
3887 bb->aux = NULL;
3890 /* Clear the visited bit for every basic block in BLOCKS. */
3892 static void
3893 tm_memopt_clear_visited (vec<basic_block> blocks)
3895 size_t i;
3896 basic_block bb;
3898 for (i = 0; blocks.iterate (i, &bb); ++i)
3899 BB_VISITED_P (bb) = false;
3902 /* Replace TM load/stores with hints for the runtime. We handle
3903 things like read-after-write, write-after-read, read-after-read,
3904 read-for-write, etc. */
3906 static unsigned int
3907 execute_tm_memopt (void)
3909 struct tm_region *region;
3910 vec<basic_block> bbs;
3912 tm_memopt_value_id = 0;
3913 tm_memopt_value_numbers = new hash_table<tm_memop_hasher> (10);
3915 for (region = all_tm_regions; region; region = region->next)
3917 /* All the TM stores/loads in the current region. */
3918 size_t i;
3919 basic_block bb;
3921 bitmap_obstack_initialize (&tm_memopt_obstack);
3923 /* Save all BBs for the current region. */
3924 bbs = get_tm_region_blocks (region->entry_block,
3925 region->exit_blocks,
3926 region->irr_blocks,
3927 NULL,
3928 false);
3930 /* Collect all the memory operations. */
3931 for (i = 0; bbs.iterate (i, &bb); ++i)
3933 bb->aux = tm_memopt_init_sets ();
3934 tm_memopt_accumulate_memops (bb);
3937 /* Solve data flow equations and transform each block accordingly. */
3938 tm_memopt_clear_visited (bbs);
3939 tm_memopt_compute_available (region, bbs);
3940 tm_memopt_clear_visited (bbs);
3941 tm_memopt_compute_antic (region, bbs);
3942 tm_memopt_transform_blocks (bbs);
3944 tm_memopt_free_sets (bbs);
3945 bbs.release ();
3946 bitmap_obstack_release (&tm_memopt_obstack);
3947 tm_memopt_value_numbers->empty ();
3950 delete tm_memopt_value_numbers;
3951 tm_memopt_value_numbers = NULL;
3952 return 0;
3955 namespace {
3957 const pass_data pass_data_tm_memopt =
3959 GIMPLE_PASS, /* type */
3960 "tmmemopt", /* name */
3961 OPTGROUP_NONE, /* optinfo_flags */
3962 TV_TRANS_MEM, /* tv_id */
3963 ( PROP_ssa | PROP_cfg ), /* properties_required */
3964 0, /* properties_provided */
3965 0, /* properties_destroyed */
3966 0, /* todo_flags_start */
3967 0, /* todo_flags_finish */
3970 class pass_tm_memopt : public gimple_opt_pass
3972 public:
3973 pass_tm_memopt (gcc::context *ctxt)
3974 : gimple_opt_pass (pass_data_tm_memopt, ctxt)
3977 /* opt_pass methods: */
3978 virtual bool gate (function *) { return flag_tm && optimize > 0; }
3979 virtual unsigned int execute (function *) { return execute_tm_memopt (); }
3981 }; // class pass_tm_memopt
3983 } // anon namespace
3985 gimple_opt_pass *
3986 make_pass_tm_memopt (gcc::context *ctxt)
3988 return new pass_tm_memopt (ctxt);
3992 /* Interprocedual analysis for the creation of transactional clones.
3993 The aim of this pass is to find which functions are referenced in
3994 a non-irrevocable transaction context, and for those over which
3995 we have control (or user directive), create a version of the
3996 function which uses only the transactional interface to reference
3997 protected memories. This analysis proceeds in several steps:
3999 (1) Collect the set of all possible transactional clones:
4001 (a) For all local public functions marked tm_callable, push
4002 it onto the tm_callee queue.
4004 (b) For all local functions, scan for calls in transaction blocks.
4005 Push the caller and callee onto the tm_caller and tm_callee
4006 queues. Count the number of callers for each callee.
4008 (c) For each local function on the callee list, assume we will
4009 create a transactional clone. Push *all* calls onto the
4010 callee queues; count the number of clone callers separately
4011 to the number of original callers.
4013 (2) Propagate irrevocable status up the dominator tree:
4015 (a) Any external function on the callee list that is not marked
4016 tm_callable is irrevocable. Push all callers of such onto
4017 a worklist.
4019 (b) For each function on the worklist, mark each block that
4020 contains an irrevocable call. Use the AND operator to
4021 propagate that mark up the dominator tree.
4023 (c) If we reach the entry block for a possible transactional
4024 clone, then the transactional clone is irrevocable, and
4025 we should not create the clone after all. Push all
4026 callers onto the worklist.
4028 (d) Place tm_irrevocable calls at the beginning of the relevant
4029 blocks. Special case here is the entry block for the entire
4030 transaction region; there we mark it GTMA_DOES_GO_IRREVOCABLE for
4031 the library to begin the region in serial mode. Decrement
4032 the call count for all callees in the irrevocable region.
4034 (3) Create the transactional clones:
4036 Any tm_callee that still has a non-zero call count is cloned.
4039 /* This structure is stored in the AUX field of each cgraph_node. */
4040 struct tm_ipa_cg_data
4042 /* The clone of the function that got created. */
4043 struct cgraph_node *clone;
4045 /* The tm regions in the normal function. */
4046 struct tm_region *all_tm_regions;
4048 /* The blocks of the normal/clone functions that contain irrevocable
4049 calls, or blocks that are post-dominated by irrevocable calls. */
4050 bitmap irrevocable_blocks_normal;
4051 bitmap irrevocable_blocks_clone;
4053 /* The blocks of the normal function that are involved in transactions. */
4054 bitmap transaction_blocks_normal;
4056 /* The number of callers to the transactional clone of this function
4057 from normal and transactional clones respectively. */
4058 unsigned tm_callers_normal;
4059 unsigned tm_callers_clone;
4061 /* True if all calls to this function's transactional clone
4062 are irrevocable. Also automatically true if the function
4063 has no transactional clone. */
4064 bool is_irrevocable;
4066 /* Flags indicating the presence of this function in various queues. */
4067 bool in_callee_queue;
4068 bool in_worklist;
4070 /* Flags indicating the kind of scan desired while in the worklist. */
4071 bool want_irr_scan_normal;
4074 typedef vec<cgraph_node *> cgraph_node_queue;
4076 /* Return the ipa data associated with NODE, allocating zeroed memory
4077 if necessary. TRAVERSE_ALIASES is true if we must traverse aliases
4078 and set *NODE accordingly. */
4080 static struct tm_ipa_cg_data *
4081 get_cg_data (struct cgraph_node **node, bool traverse_aliases)
4083 struct tm_ipa_cg_data *d;
4085 if (traverse_aliases && (*node)->alias)
4086 *node = (*node)->get_alias_target ();
4088 d = (struct tm_ipa_cg_data *) (*node)->aux;
4090 if (d == NULL)
4092 d = (struct tm_ipa_cg_data *)
4093 obstack_alloc (&tm_obstack.obstack, sizeof (*d));
4094 (*node)->aux = (void *) d;
4095 memset (d, 0, sizeof (*d));
4098 return d;
4101 /* Add NODE to the end of QUEUE, unless IN_QUEUE_P indicates that
4102 it is already present. */
4104 static void
4105 maybe_push_queue (struct cgraph_node *node,
4106 cgraph_node_queue *queue_p, bool *in_queue_p)
4108 if (!*in_queue_p)
4110 *in_queue_p = true;
4111 queue_p->safe_push (node);
4115 /* Duplicate the basic blocks in QUEUE for use in the uninstrumented
4116 code path. QUEUE are the basic blocks inside the transaction
4117 represented in REGION.
4119 Later in split_code_paths() we will add the conditional to choose
4120 between the two alternatives. */
4122 static void
4123 ipa_uninstrument_transaction (struct tm_region *region,
4124 vec<basic_block> queue)
4126 gimple transaction = region->transaction_stmt;
4127 basic_block transaction_bb = gimple_bb (transaction);
4128 int n = queue.length ();
4129 basic_block *new_bbs = XNEWVEC (basic_block, n);
4131 copy_bbs (queue.address (), n, new_bbs, NULL, 0, NULL, NULL, transaction_bb,
4132 true);
4133 edge e = make_edge (transaction_bb, new_bbs[0], EDGE_TM_UNINSTRUMENTED);
4134 add_phi_args_after_copy (new_bbs, n, e);
4136 // Now we will have a GIMPLE_ATOMIC with 3 possible edges out of it.
4137 // a) EDGE_FALLTHRU into the transaction
4138 // b) EDGE_TM_ABORT out of the transaction
4139 // c) EDGE_TM_UNINSTRUMENTED into the uninstrumented blocks.
4141 free (new_bbs);
4144 /* A subroutine of ipa_tm_scan_calls_transaction and ipa_tm_scan_calls_clone.
4145 Queue all callees within block BB. */
4147 static void
4148 ipa_tm_scan_calls_block (cgraph_node_queue *callees_p,
4149 basic_block bb, bool for_clone)
4151 gimple_stmt_iterator gsi;
4153 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4155 gimple stmt = gsi_stmt (gsi);
4156 if (is_gimple_call (stmt) && !is_tm_pure_call (stmt))
4158 tree fndecl = gimple_call_fndecl (stmt);
4159 if (fndecl)
4161 struct tm_ipa_cg_data *d;
4162 unsigned *pcallers;
4163 struct cgraph_node *node;
4165 if (is_tm_ending_fndecl (fndecl))
4166 continue;
4167 if (find_tm_replacement_function (fndecl))
4168 continue;
4170 node = cgraph_node::get (fndecl);
4171 gcc_assert (node != NULL);
4172 d = get_cg_data (&node, true);
4174 pcallers = (for_clone ? &d->tm_callers_clone
4175 : &d->tm_callers_normal);
4176 *pcallers += 1;
4178 maybe_push_queue (node, callees_p, &d->in_callee_queue);
4184 /* Scan all calls in NODE that are within a transaction region,
4185 and push the resulting nodes into the callee queue. */
4187 static void
4188 ipa_tm_scan_calls_transaction (struct tm_ipa_cg_data *d,
4189 cgraph_node_queue *callees_p)
4191 struct tm_region *r;
4193 d->transaction_blocks_normal = BITMAP_ALLOC (&tm_obstack);
4194 d->all_tm_regions = all_tm_regions;
4196 for (r = all_tm_regions; r; r = r->next)
4198 vec<basic_block> bbs;
4199 basic_block bb;
4200 unsigned i;
4202 bbs = get_tm_region_blocks (r->entry_block, r->exit_blocks, NULL,
4203 d->transaction_blocks_normal, false);
4205 // Generate the uninstrumented code path for this transaction.
4206 ipa_uninstrument_transaction (r, bbs);
4208 FOR_EACH_VEC_ELT (bbs, i, bb)
4209 ipa_tm_scan_calls_block (callees_p, bb, false);
4211 bbs.release ();
4214 // ??? copy_bbs should maintain cgraph edges for the blocks as it is
4215 // copying them, rather than forcing us to do this externally.
4216 cgraph_edge::rebuild_edges ();
4218 // ??? In ipa_uninstrument_transaction we don't try to update dominators
4219 // because copy_bbs doesn't return a VEC like iterate_fix_dominators expects.
4220 // Instead, just release dominators here so update_ssa recomputes them.
4221 free_dominance_info (CDI_DOMINATORS);
4223 // When building the uninstrumented code path, copy_bbs will have invoked
4224 // create_new_def_for starting an "ssa update context". There is only one
4225 // instance of this context, so resolve ssa updates before moving on to
4226 // the next function.
4227 update_ssa (TODO_update_ssa);
4230 /* Scan all calls in NODE as if this is the transactional clone,
4231 and push the destinations into the callee queue. */
4233 static void
4234 ipa_tm_scan_calls_clone (struct cgraph_node *node,
4235 cgraph_node_queue *callees_p)
4237 struct function *fn = DECL_STRUCT_FUNCTION (node->decl);
4238 basic_block bb;
4240 FOR_EACH_BB_FN (bb, fn)
4241 ipa_tm_scan_calls_block (callees_p, bb, true);
4244 /* The function NODE has been detected to be irrevocable. Push all
4245 of its callers onto WORKLIST for the purpose of re-scanning them. */
4247 static void
4248 ipa_tm_note_irrevocable (struct cgraph_node *node,
4249 cgraph_node_queue *worklist_p)
4251 struct tm_ipa_cg_data *d = get_cg_data (&node, true);
4252 struct cgraph_edge *e;
4254 d->is_irrevocable = true;
4256 for (e = node->callers; e ; e = e->next_caller)
4258 basic_block bb;
4259 struct cgraph_node *caller;
4261 /* Don't examine recursive calls. */
4262 if (e->caller == node)
4263 continue;
4264 /* Even if we think we can go irrevocable, believe the user
4265 above all. */
4266 if (is_tm_safe_or_pure (e->caller->decl))
4267 continue;
4269 caller = e->caller;
4270 d = get_cg_data (&caller, true);
4272 /* Check if the callee is in a transactional region. If so,
4273 schedule the function for normal re-scan as well. */
4274 bb = gimple_bb (e->call_stmt);
4275 gcc_assert (bb != NULL);
4276 if (d->transaction_blocks_normal
4277 && bitmap_bit_p (d->transaction_blocks_normal, bb->index))
4278 d->want_irr_scan_normal = true;
4280 maybe_push_queue (caller, worklist_p, &d->in_worklist);
4284 /* A subroutine of ipa_tm_scan_irr_blocks; return true iff any statement
4285 within the block is irrevocable. */
4287 static bool
4288 ipa_tm_scan_irr_block (basic_block bb)
4290 gimple_stmt_iterator gsi;
4291 tree fn;
4293 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4295 gimple stmt = gsi_stmt (gsi);
4296 switch (gimple_code (stmt))
4298 case GIMPLE_ASSIGN:
4299 if (gimple_assign_single_p (stmt))
4301 tree lhs = gimple_assign_lhs (stmt);
4302 tree rhs = gimple_assign_rhs1 (stmt);
4303 if (volatile_var_p (lhs) || volatile_var_p (rhs))
4304 return true;
4306 break;
4308 case GIMPLE_CALL:
4310 tree lhs = gimple_call_lhs (stmt);
4311 if (lhs && volatile_var_p (lhs))
4312 return true;
4314 if (is_tm_pure_call (stmt))
4315 break;
4317 fn = gimple_call_fn (stmt);
4319 /* Functions with the attribute are by definition irrevocable. */
4320 if (is_tm_irrevocable (fn))
4321 return true;
4323 /* For direct function calls, go ahead and check for replacement
4324 functions, or transitive irrevocable functions. For indirect
4325 functions, we'll ask the runtime. */
4326 if (TREE_CODE (fn) == ADDR_EXPR)
4328 struct tm_ipa_cg_data *d;
4329 struct cgraph_node *node;
4331 fn = TREE_OPERAND (fn, 0);
4332 if (is_tm_ending_fndecl (fn))
4333 break;
4334 if (find_tm_replacement_function (fn))
4335 break;
4337 node = cgraph_node::get (fn);
4338 d = get_cg_data (&node, true);
4340 /* Return true if irrevocable, but above all, believe
4341 the user. */
4342 if (d->is_irrevocable
4343 && !is_tm_safe_or_pure (fn))
4344 return true;
4346 break;
4349 case GIMPLE_ASM:
4350 /* ??? The Approved Method of indicating that an inline
4351 assembly statement is not relevant to the transaction
4352 is to wrap it in a __tm_waiver block. This is not
4353 yet implemented, so we can't check for it. */
4354 if (is_tm_safe (current_function_decl))
4356 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
4357 SET_EXPR_LOCATION (t, gimple_location (stmt));
4358 error ("%Kasm not allowed in %<transaction_safe%> function", t);
4360 return true;
4362 default:
4363 break;
4367 return false;
4370 /* For each of the blocks seeded witin PQUEUE, walk the CFG looking
4371 for new irrevocable blocks, marking them in NEW_IRR. Don't bother
4372 scanning past OLD_IRR or EXIT_BLOCKS. */
4374 static bool
4375 ipa_tm_scan_irr_blocks (vec<basic_block> *pqueue, bitmap new_irr,
4376 bitmap old_irr, bitmap exit_blocks)
4378 bool any_new_irr = false;
4379 edge e;
4380 edge_iterator ei;
4381 bitmap visited_blocks = BITMAP_ALLOC (NULL);
4385 basic_block bb = pqueue->pop ();
4387 /* Don't re-scan blocks we know already are irrevocable. */
4388 if (old_irr && bitmap_bit_p (old_irr, bb->index))
4389 continue;
4391 if (ipa_tm_scan_irr_block (bb))
4393 bitmap_set_bit (new_irr, bb->index);
4394 any_new_irr = true;
4396 else if (exit_blocks == NULL || !bitmap_bit_p (exit_blocks, bb->index))
4398 FOR_EACH_EDGE (e, ei, bb->succs)
4399 if (!bitmap_bit_p (visited_blocks, e->dest->index))
4401 bitmap_set_bit (visited_blocks, e->dest->index);
4402 pqueue->safe_push (e->dest);
4406 while (!pqueue->is_empty ());
4408 BITMAP_FREE (visited_blocks);
4410 return any_new_irr;
4413 /* Propagate the irrevocable property both up and down the dominator tree.
4414 BB is the current block being scanned; EXIT_BLOCKS are the edges of the
4415 TM regions; OLD_IRR are the results of a previous scan of the dominator
4416 tree which has been fully propagated; NEW_IRR is the set of new blocks
4417 which are gaining the irrevocable property during the current scan. */
4419 static void
4420 ipa_tm_propagate_irr (basic_block entry_block, bitmap new_irr,
4421 bitmap old_irr, bitmap exit_blocks)
4423 vec<basic_block> bbs;
4424 bitmap all_region_blocks;
4426 /* If this block is in the old set, no need to rescan. */
4427 if (old_irr && bitmap_bit_p (old_irr, entry_block->index))
4428 return;
4430 all_region_blocks = BITMAP_ALLOC (&tm_obstack);
4431 bbs = get_tm_region_blocks (entry_block, exit_blocks, NULL,
4432 all_region_blocks, false);
4435 basic_block bb = bbs.pop ();
4436 bool this_irr = bitmap_bit_p (new_irr, bb->index);
4437 bool all_son_irr = false;
4438 edge_iterator ei;
4439 edge e;
4441 /* Propagate up. If my children are, I am too, but we must have
4442 at least one child that is. */
4443 if (!this_irr)
4445 FOR_EACH_EDGE (e, ei, bb->succs)
4447 if (!bitmap_bit_p (new_irr, e->dest->index))
4449 all_son_irr = false;
4450 break;
4452 else
4453 all_son_irr = true;
4455 if (all_son_irr)
4457 /* Add block to new_irr if it hasn't already been processed. */
4458 if (!old_irr || !bitmap_bit_p (old_irr, bb->index))
4460 bitmap_set_bit (new_irr, bb->index);
4461 this_irr = true;
4466 /* Propagate down to everyone we immediately dominate. */
4467 if (this_irr)
4469 basic_block son;
4470 for (son = first_dom_son (CDI_DOMINATORS, bb);
4471 son;
4472 son = next_dom_son (CDI_DOMINATORS, son))
4474 /* Make sure block is actually in a TM region, and it
4475 isn't already in old_irr. */
4476 if ((!old_irr || !bitmap_bit_p (old_irr, son->index))
4477 && bitmap_bit_p (all_region_blocks, son->index))
4478 bitmap_set_bit (new_irr, son->index);
4482 while (!bbs.is_empty ());
4484 BITMAP_FREE (all_region_blocks);
4485 bbs.release ();
4488 static void
4489 ipa_tm_decrement_clone_counts (basic_block bb, bool for_clone)
4491 gimple_stmt_iterator gsi;
4493 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4495 gimple stmt = gsi_stmt (gsi);
4496 if (is_gimple_call (stmt) && !is_tm_pure_call (stmt))
4498 tree fndecl = gimple_call_fndecl (stmt);
4499 if (fndecl)
4501 struct tm_ipa_cg_data *d;
4502 unsigned *pcallers;
4503 struct cgraph_node *tnode;
4505 if (is_tm_ending_fndecl (fndecl))
4506 continue;
4507 if (find_tm_replacement_function (fndecl))
4508 continue;
4510 tnode = cgraph_node::get (fndecl);
4511 d = get_cg_data (&tnode, true);
4513 pcallers = (for_clone ? &d->tm_callers_clone
4514 : &d->tm_callers_normal);
4516 gcc_assert (*pcallers > 0);
4517 *pcallers -= 1;
4523 /* (Re-)Scan the transaction blocks in NODE for calls to irrevocable functions,
4524 as well as other irrevocable actions such as inline assembly. Mark all
4525 such blocks as irrevocable and decrement the number of calls to
4526 transactional clones. Return true if, for the transactional clone, the
4527 entire function is irrevocable. */
4529 static bool
4530 ipa_tm_scan_irr_function (struct cgraph_node *node, bool for_clone)
4532 struct tm_ipa_cg_data *d;
4533 bitmap new_irr, old_irr;
4534 bool ret = false;
4536 /* Builtin operators (operator new, and such). */
4537 if (DECL_STRUCT_FUNCTION (node->decl) == NULL
4538 || DECL_STRUCT_FUNCTION (node->decl)->cfg == NULL)
4539 return false;
4541 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
4542 calculate_dominance_info (CDI_DOMINATORS);
4544 d = get_cg_data (&node, true);
4545 auto_vec<basic_block, 10> queue;
4546 new_irr = BITMAP_ALLOC (&tm_obstack);
4548 /* Scan each tm region, propagating irrevocable status through the tree. */
4549 if (for_clone)
4551 old_irr = d->irrevocable_blocks_clone;
4552 queue.quick_push (single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
4553 if (ipa_tm_scan_irr_blocks (&queue, new_irr, old_irr, NULL))
4555 ipa_tm_propagate_irr (single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun)),
4556 new_irr,
4557 old_irr, NULL);
4558 ret = bitmap_bit_p (new_irr,
4559 single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun))->index);
4562 else
4564 struct tm_region *region;
4566 old_irr = d->irrevocable_blocks_normal;
4567 for (region = d->all_tm_regions; region; region = region->next)
4569 queue.quick_push (region->entry_block);
4570 if (ipa_tm_scan_irr_blocks (&queue, new_irr, old_irr,
4571 region->exit_blocks))
4572 ipa_tm_propagate_irr (region->entry_block, new_irr, old_irr,
4573 region->exit_blocks);
4577 /* If we found any new irrevocable blocks, reduce the call count for
4578 transactional clones within the irrevocable blocks. Save the new
4579 set of irrevocable blocks for next time. */
4580 if (!bitmap_empty_p (new_irr))
4582 bitmap_iterator bmi;
4583 unsigned i;
4585 EXECUTE_IF_SET_IN_BITMAP (new_irr, 0, i, bmi)
4586 ipa_tm_decrement_clone_counts (BASIC_BLOCK_FOR_FN (cfun, i),
4587 for_clone);
4589 if (old_irr)
4591 bitmap_ior_into (old_irr, new_irr);
4592 BITMAP_FREE (new_irr);
4594 else if (for_clone)
4595 d->irrevocable_blocks_clone = new_irr;
4596 else
4597 d->irrevocable_blocks_normal = new_irr;
4599 if (dump_file && new_irr)
4601 const char *dname;
4602 bitmap_iterator bmi;
4603 unsigned i;
4605 dname = lang_hooks.decl_printable_name (current_function_decl, 2);
4606 EXECUTE_IF_SET_IN_BITMAP (new_irr, 0, i, bmi)
4607 fprintf (dump_file, "%s: bb %d goes irrevocable\n", dname, i);
4610 else
4611 BITMAP_FREE (new_irr);
4613 pop_cfun ();
4615 return ret;
4618 /* Return true if, for the transactional clone of NODE, any call
4619 may enter irrevocable mode. */
4621 static bool
4622 ipa_tm_mayenterirr_function (struct cgraph_node *node)
4624 struct tm_ipa_cg_data *d;
4625 tree decl;
4626 unsigned flags;
4628 d = get_cg_data (&node, true);
4629 decl = node->decl;
4630 flags = flags_from_decl_or_type (decl);
4632 /* Handle some TM builtins. Ordinarily these aren't actually generated
4633 at this point, but handling these functions when written in by the
4634 user makes it easier to build unit tests. */
4635 if (flags & ECF_TM_BUILTIN)
4636 return false;
4638 /* Filter out all functions that are marked. */
4639 if (flags & ECF_TM_PURE)
4640 return false;
4641 if (is_tm_safe (decl))
4642 return false;
4643 if (is_tm_irrevocable (decl))
4644 return true;
4645 if (is_tm_callable (decl))
4646 return true;
4647 if (find_tm_replacement_function (decl))
4648 return true;
4650 /* If we aren't seeing the final version of the function we don't
4651 know what it will contain at runtime. */
4652 if (node->get_availability () < AVAIL_AVAILABLE)
4653 return true;
4655 /* If the function must go irrevocable, then of course true. */
4656 if (d->is_irrevocable)
4657 return true;
4659 /* If there are any blocks marked irrevocable, then the function
4660 as a whole may enter irrevocable. */
4661 if (d->irrevocable_blocks_clone)
4662 return true;
4664 /* We may have previously marked this function as tm_may_enter_irr;
4665 see pass_diagnose_tm_blocks. */
4666 if (node->local.tm_may_enter_irr)
4667 return true;
4669 /* Recurse on the main body for aliases. In general, this will
4670 result in one of the bits above being set so that we will not
4671 have to recurse next time. */
4672 if (node->alias)
4673 return ipa_tm_mayenterirr_function (cgraph_node::get (node->thunk.alias));
4675 /* What remains is unmarked local functions without items that force
4676 the function to go irrevocable. */
4677 return false;
4680 /* Diagnose calls from transaction_safe functions to unmarked
4681 functions that are determined to not be safe. */
4683 static void
4684 ipa_tm_diagnose_tm_safe (struct cgraph_node *node)
4686 struct cgraph_edge *e;
4688 for (e = node->callees; e ; e = e->next_callee)
4689 if (!is_tm_callable (e->callee->decl)
4690 && e->callee->local.tm_may_enter_irr)
4691 error_at (gimple_location (e->call_stmt),
4692 "unsafe function call %qD within "
4693 "%<transaction_safe%> function", e->callee->decl);
4696 /* Diagnose call from atomic transactions to unmarked functions
4697 that are determined to not be safe. */
4699 static void
4700 ipa_tm_diagnose_transaction (struct cgraph_node *node,
4701 struct tm_region *all_tm_regions)
4703 struct tm_region *r;
4705 for (r = all_tm_regions; r ; r = r->next)
4706 if (gimple_transaction_subcode (r->get_transaction_stmt ())
4707 & GTMA_IS_RELAXED)
4709 /* Atomic transactions can be nested inside relaxed. */
4710 if (r->inner)
4711 ipa_tm_diagnose_transaction (node, r->inner);
4713 else
4715 vec<basic_block> bbs;
4716 gimple_stmt_iterator gsi;
4717 basic_block bb;
4718 size_t i;
4720 bbs = get_tm_region_blocks (r->entry_block, r->exit_blocks,
4721 r->irr_blocks, NULL, false);
4723 for (i = 0; bbs.iterate (i, &bb); ++i)
4724 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4726 gimple stmt = gsi_stmt (gsi);
4727 tree fndecl;
4729 if (gimple_code (stmt) == GIMPLE_ASM)
4731 error_at (gimple_location (stmt),
4732 "asm not allowed in atomic transaction");
4733 continue;
4736 if (!is_gimple_call (stmt))
4737 continue;
4738 fndecl = gimple_call_fndecl (stmt);
4740 /* Indirect function calls have been diagnosed already. */
4741 if (!fndecl)
4742 continue;
4744 /* Stop at the end of the transaction. */
4745 if (is_tm_ending_fndecl (fndecl))
4747 if (bitmap_bit_p (r->exit_blocks, bb->index))
4748 break;
4749 continue;
4752 /* Marked functions have been diagnosed already. */
4753 if (is_tm_pure_call (stmt))
4754 continue;
4755 if (is_tm_callable (fndecl))
4756 continue;
4758 if (cgraph_node::local_info (fndecl)->tm_may_enter_irr)
4759 error_at (gimple_location (stmt),
4760 "unsafe function call %qD within "
4761 "atomic transaction", fndecl);
4764 bbs.release ();
4768 /* Return a transactional mangled name for the DECL_ASSEMBLER_NAME in
4769 OLD_DECL. The returned value is a freshly malloced pointer that
4770 should be freed by the caller. */
4772 static tree
4773 tm_mangle (tree old_asm_id)
4775 const char *old_asm_name;
4776 char *tm_name;
4777 void *alloc = NULL;
4778 struct demangle_component *dc;
4779 tree new_asm_id;
4781 /* Determine if the symbol is already a valid C++ mangled name. Do this
4782 even for C, which might be interfacing with C++ code via appropriately
4783 ugly identifiers. */
4784 /* ??? We could probably do just as well checking for "_Z" and be done. */
4785 old_asm_name = IDENTIFIER_POINTER (old_asm_id);
4786 dc = cplus_demangle_v3_components (old_asm_name, DMGL_NO_OPTS, &alloc);
4788 if (dc == NULL)
4790 char length[8];
4792 do_unencoded:
4793 sprintf (length, "%u", IDENTIFIER_LENGTH (old_asm_id));
4794 tm_name = concat ("_ZGTt", length, old_asm_name, NULL);
4796 else
4798 old_asm_name += 2; /* Skip _Z */
4800 switch (dc->type)
4802 case DEMANGLE_COMPONENT_TRANSACTION_CLONE:
4803 case DEMANGLE_COMPONENT_NONTRANSACTION_CLONE:
4804 /* Don't play silly games, you! */
4805 goto do_unencoded;
4807 case DEMANGLE_COMPONENT_HIDDEN_ALIAS:
4808 /* I'd really like to know if we can ever be passed one of
4809 these from the C++ front end. The Logical Thing would
4810 seem that hidden-alias should be outer-most, so that we
4811 get hidden-alias of a transaction-clone and not vice-versa. */
4812 old_asm_name += 2;
4813 break;
4815 default:
4816 break;
4819 tm_name = concat ("_ZGTt", old_asm_name, NULL);
4821 free (alloc);
4823 new_asm_id = get_identifier (tm_name);
4824 free (tm_name);
4826 return new_asm_id;
4829 static inline void
4830 ipa_tm_mark_force_output_node (struct cgraph_node *node)
4832 node->mark_force_output ();
4833 node->analyzed = true;
4836 static inline void
4837 ipa_tm_mark_forced_by_abi_node (struct cgraph_node *node)
4839 node->forced_by_abi = true;
4840 node->analyzed = true;
4843 /* Callback data for ipa_tm_create_version_alias. */
4844 struct create_version_alias_info
4846 struct cgraph_node *old_node;
4847 tree new_decl;
4850 /* A subroutine of ipa_tm_create_version, called via
4851 cgraph_for_node_and_aliases. Create new tm clones for each of
4852 the existing aliases. */
4853 static bool
4854 ipa_tm_create_version_alias (struct cgraph_node *node, void *data)
4856 struct create_version_alias_info *info
4857 = (struct create_version_alias_info *)data;
4858 tree old_decl, new_decl, tm_name;
4859 struct cgraph_node *new_node;
4861 if (!node->cpp_implicit_alias)
4862 return false;
4864 old_decl = node->decl;
4865 tm_name = tm_mangle (DECL_ASSEMBLER_NAME (old_decl));
4866 new_decl = build_decl (DECL_SOURCE_LOCATION (old_decl),
4867 TREE_CODE (old_decl), tm_name,
4868 TREE_TYPE (old_decl));
4870 SET_DECL_ASSEMBLER_NAME (new_decl, tm_name);
4871 SET_DECL_RTL (new_decl, NULL);
4873 /* Based loosely on C++'s make_alias_for(). */
4874 TREE_PUBLIC (new_decl) = TREE_PUBLIC (old_decl);
4875 DECL_CONTEXT (new_decl) = DECL_CONTEXT (old_decl);
4876 DECL_LANG_SPECIFIC (new_decl) = DECL_LANG_SPECIFIC (old_decl);
4877 TREE_READONLY (new_decl) = TREE_READONLY (old_decl);
4878 DECL_EXTERNAL (new_decl) = 0;
4879 DECL_ARTIFICIAL (new_decl) = 1;
4880 TREE_ADDRESSABLE (new_decl) = 1;
4881 TREE_USED (new_decl) = 1;
4882 TREE_SYMBOL_REFERENCED (tm_name) = 1;
4884 /* Perform the same remapping to the comdat group. */
4885 if (DECL_ONE_ONLY (new_decl))
4886 varpool_node::get (new_decl)->set_comdat_group
4887 (tm_mangle (decl_comdat_group_id (old_decl)));
4889 new_node = cgraph_node::create_same_body_alias (new_decl, info->new_decl);
4890 new_node->tm_clone = true;
4891 new_node->externally_visible = info->old_node->externally_visible;
4892 new_node->no_reorder = info->old_node->no_reorder;
4893 /* ?? Do not traverse aliases here. */
4894 get_cg_data (&node, false)->clone = new_node;
4896 record_tm_clone_pair (old_decl, new_decl);
4898 if (info->old_node->force_output
4899 || info->old_node->ref_list.first_referring ())
4900 ipa_tm_mark_force_output_node (new_node);
4901 if (info->old_node->forced_by_abi)
4902 ipa_tm_mark_forced_by_abi_node (new_node);
4903 return false;
4906 /* Create a copy of the function (possibly declaration only) of OLD_NODE,
4907 appropriate for the transactional clone. */
4909 static void
4910 ipa_tm_create_version (struct cgraph_node *old_node)
4912 tree new_decl, old_decl, tm_name;
4913 struct cgraph_node *new_node;
4915 old_decl = old_node->decl;
4916 new_decl = copy_node (old_decl);
4918 /* DECL_ASSEMBLER_NAME needs to be set before we call
4919 cgraph_copy_node_for_versioning below, because cgraph_node will
4920 fill the assembler_name_hash. */
4921 tm_name = tm_mangle (DECL_ASSEMBLER_NAME (old_decl));
4922 SET_DECL_ASSEMBLER_NAME (new_decl, tm_name);
4923 SET_DECL_RTL (new_decl, NULL);
4924 TREE_SYMBOL_REFERENCED (tm_name) = 1;
4926 /* Perform the same remapping to the comdat group. */
4927 if (DECL_ONE_ONLY (new_decl))
4928 varpool_node::get (new_decl)->set_comdat_group
4929 (tm_mangle (DECL_COMDAT_GROUP (old_decl)));
4931 gcc_assert (!old_node->ipa_transforms_to_apply.exists ());
4932 new_node = old_node->create_version_clone (new_decl, vNULL, NULL);
4933 new_node->local.local = false;
4934 new_node->externally_visible = old_node->externally_visible;
4935 new_node->lowered = true;
4936 new_node->tm_clone = 1;
4937 if (!old_node->implicit_section)
4938 new_node->set_section (old_node->get_section ());
4939 get_cg_data (&old_node, true)->clone = new_node;
4941 if (old_node->get_availability () >= AVAIL_INTERPOSABLE)
4943 /* Remap extern inline to static inline. */
4944 /* ??? Is it worth trying to use make_decl_one_only? */
4945 if (DECL_DECLARED_INLINE_P (new_decl) && DECL_EXTERNAL (new_decl))
4947 DECL_EXTERNAL (new_decl) = 0;
4948 TREE_PUBLIC (new_decl) = 0;
4949 DECL_WEAK (new_decl) = 0;
4952 tree_function_versioning (old_decl, new_decl,
4953 NULL, false, NULL,
4954 false, NULL, NULL);
4957 record_tm_clone_pair (old_decl, new_decl);
4959 symtab->call_cgraph_insertion_hooks (new_node);
4960 if (old_node->force_output
4961 || old_node->ref_list.first_referring ())
4962 ipa_tm_mark_force_output_node (new_node);
4963 if (old_node->forced_by_abi)
4964 ipa_tm_mark_forced_by_abi_node (new_node);
4966 /* Do the same thing, but for any aliases of the original node. */
4968 struct create_version_alias_info data;
4969 data.old_node = old_node;
4970 data.new_decl = new_decl;
4971 old_node->call_for_symbol_thunks_and_aliases (ipa_tm_create_version_alias,
4972 &data, true);
4976 /* Construct a call to TM_IRREVOCABLE and insert it at the beginning of BB. */
4978 static void
4979 ipa_tm_insert_irr_call (struct cgraph_node *node, struct tm_region *region,
4980 basic_block bb)
4982 gimple_stmt_iterator gsi;
4983 gcall *g;
4985 transaction_subcode_ior (region, GTMA_MAY_ENTER_IRREVOCABLE);
4987 g = gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_IRREVOCABLE),
4988 1, build_int_cst (NULL_TREE, MODE_SERIALIRREVOCABLE));
4990 split_block_after_labels (bb);
4991 gsi = gsi_after_labels (bb);
4992 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
4994 node->create_edge (cgraph_node::get_create
4995 (builtin_decl_explicit (BUILT_IN_TM_IRREVOCABLE)),
4996 g, 0,
4997 compute_call_stmt_bb_frequency (node->decl,
4998 gimple_bb (g)));
5001 /* Construct a call to TM_GETTMCLONE and insert it before GSI. */
5003 static bool
5004 ipa_tm_insert_gettmclone_call (struct cgraph_node *node,
5005 struct tm_region *region,
5006 gimple_stmt_iterator *gsi, gcall *stmt)
5008 tree gettm_fn, ret, old_fn, callfn;
5009 gcall *g;
5010 gassign *g2;
5011 bool safe;
5013 old_fn = gimple_call_fn (stmt);
5015 if (TREE_CODE (old_fn) == ADDR_EXPR)
5017 tree fndecl = TREE_OPERAND (old_fn, 0);
5018 tree clone = get_tm_clone_pair (fndecl);
5020 /* By transforming the call into a TM_GETTMCLONE, we are
5021 technically taking the address of the original function and
5022 its clone. Explain this so inlining will know this function
5023 is needed. */
5024 cgraph_node::get (fndecl)->mark_address_taken () ;
5025 if (clone)
5026 cgraph_node::get (clone)->mark_address_taken ();
5029 safe = is_tm_safe (TREE_TYPE (old_fn));
5030 gettm_fn = builtin_decl_explicit (safe ? BUILT_IN_TM_GETTMCLONE_SAFE
5031 : BUILT_IN_TM_GETTMCLONE_IRR);
5032 ret = create_tmp_var (ptr_type_node);
5034 if (!safe)
5035 transaction_subcode_ior (region, GTMA_MAY_ENTER_IRREVOCABLE);
5037 /* Discard OBJ_TYPE_REF, since we weren't able to fold it. */
5038 if (TREE_CODE (old_fn) == OBJ_TYPE_REF)
5039 old_fn = OBJ_TYPE_REF_EXPR (old_fn);
5041 g = gimple_build_call (gettm_fn, 1, old_fn);
5042 ret = make_ssa_name (ret, g);
5043 gimple_call_set_lhs (g, ret);
5045 gsi_insert_before (gsi, g, GSI_SAME_STMT);
5047 node->create_edge (cgraph_node::get_create (gettm_fn), g, 0,
5048 compute_call_stmt_bb_frequency (node->decl,
5049 gimple_bb (g)));
5051 /* Cast return value from tm_gettmclone* into appropriate function
5052 pointer. */
5053 callfn = create_tmp_var (TREE_TYPE (old_fn));
5054 g2 = gimple_build_assign (callfn,
5055 fold_build1 (NOP_EXPR, TREE_TYPE (callfn), ret));
5056 callfn = make_ssa_name (callfn, g2);
5057 gimple_assign_set_lhs (g2, callfn);
5058 gsi_insert_before (gsi, g2, GSI_SAME_STMT);
5060 /* ??? This is a hack to preserve the NOTHROW bit on the call,
5061 which we would have derived from the decl. Failure to save
5062 this bit means we might have to split the basic block. */
5063 if (gimple_call_nothrow_p (stmt))
5064 gimple_call_set_nothrow (stmt, true);
5066 gimple_call_set_fn (stmt, callfn);
5068 /* Discarding OBJ_TYPE_REF above may produce incompatible LHS and RHS
5069 for a call statement. Fix it. */
5071 tree lhs = gimple_call_lhs (stmt);
5072 tree rettype = TREE_TYPE (gimple_call_fntype (stmt));
5073 if (lhs
5074 && !useless_type_conversion_p (TREE_TYPE (lhs), rettype))
5076 tree temp;
5078 temp = create_tmp_reg (rettype);
5079 gimple_call_set_lhs (stmt, temp);
5081 g2 = gimple_build_assign (lhs,
5082 fold_build1 (VIEW_CONVERT_EXPR,
5083 TREE_TYPE (lhs), temp));
5084 gsi_insert_after (gsi, g2, GSI_SAME_STMT);
5088 update_stmt (stmt);
5089 cgraph_edge *e = cgraph_node::get (current_function_decl)->get_edge (stmt);
5090 if (e && e->indirect_info)
5091 e->indirect_info->polymorphic = false;
5093 return true;
5096 /* Helper function for ipa_tm_transform_calls*. Given a call
5097 statement in GSI which resides inside transaction REGION, redirect
5098 the call to either its wrapper function, or its clone. */
5100 static void
5101 ipa_tm_transform_calls_redirect (struct cgraph_node *node,
5102 struct tm_region *region,
5103 gimple_stmt_iterator *gsi,
5104 bool *need_ssa_rename_p)
5106 gcall *stmt = as_a <gcall *> (gsi_stmt (*gsi));
5107 struct cgraph_node *new_node;
5108 struct cgraph_edge *e = node->get_edge (stmt);
5109 tree fndecl = gimple_call_fndecl (stmt);
5111 /* For indirect calls, pass the address through the runtime. */
5112 if (fndecl == NULL)
5114 *need_ssa_rename_p |=
5115 ipa_tm_insert_gettmclone_call (node, region, gsi, stmt);
5116 return;
5119 /* Handle some TM builtins. Ordinarily these aren't actually generated
5120 at this point, but handling these functions when written in by the
5121 user makes it easier to build unit tests. */
5122 if (flags_from_decl_or_type (fndecl) & ECF_TM_BUILTIN)
5123 return;
5125 /* Fixup recursive calls inside clones. */
5126 /* ??? Why did cgraph_copy_node_for_versioning update the call edges
5127 for recursion but not update the call statements themselves? */
5128 if (e->caller == e->callee && decl_is_tm_clone (current_function_decl))
5130 gimple_call_set_fndecl (stmt, current_function_decl);
5131 return;
5134 /* If there is a replacement, use it. */
5135 fndecl = find_tm_replacement_function (fndecl);
5136 if (fndecl)
5138 new_node = cgraph_node::get_create (fndecl);
5140 /* ??? Mark all transaction_wrap functions tm_may_enter_irr.
5142 We can't do this earlier in record_tm_replacement because
5143 cgraph_remove_unreachable_nodes is called before we inject
5144 references to the node. Further, we can't do this in some
5145 nice central place in ipa_tm_execute because we don't have
5146 the exact list of wrapper functions that would be used.
5147 Marking more wrappers than necessary results in the creation
5148 of unnecessary cgraph_nodes, which can cause some of the
5149 other IPA passes to crash.
5151 We do need to mark these nodes so that we get the proper
5152 result in expand_call_tm. */
5153 /* ??? This seems broken. How is it that we're marking the
5154 CALLEE as may_enter_irr? Surely we should be marking the
5155 CALLER. Also note that find_tm_replacement_function also
5156 contains mappings into the TM runtime, e.g. memcpy. These
5157 we know won't go irrevocable. */
5158 new_node->local.tm_may_enter_irr = 1;
5160 else
5162 struct tm_ipa_cg_data *d;
5163 struct cgraph_node *tnode = e->callee;
5165 d = get_cg_data (&tnode, true);
5166 new_node = d->clone;
5168 /* As we've already skipped pure calls and appropriate builtins,
5169 and we've already marked irrevocable blocks, if we can't come
5170 up with a static replacement, then ask the runtime. */
5171 if (new_node == NULL)
5173 *need_ssa_rename_p |=
5174 ipa_tm_insert_gettmclone_call (node, region, gsi, stmt);
5175 return;
5178 fndecl = new_node->decl;
5181 e->redirect_callee (new_node);
5182 gimple_call_set_fndecl (stmt, fndecl);
5185 /* Helper function for ipa_tm_transform_calls. For a given BB,
5186 install calls to tm_irrevocable when IRR_BLOCKS are reached,
5187 redirect other calls to the generated transactional clone. */
5189 static bool
5190 ipa_tm_transform_calls_1 (struct cgraph_node *node, struct tm_region *region,
5191 basic_block bb, bitmap irr_blocks)
5193 gimple_stmt_iterator gsi;
5194 bool need_ssa_rename = false;
5196 if (irr_blocks && bitmap_bit_p (irr_blocks, bb->index))
5198 ipa_tm_insert_irr_call (node, region, bb);
5199 return true;
5202 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5204 gimple stmt = gsi_stmt (gsi);
5206 if (!is_gimple_call (stmt))
5207 continue;
5208 if (is_tm_pure_call (stmt))
5209 continue;
5211 /* Redirect edges to the appropriate replacement or clone. */
5212 ipa_tm_transform_calls_redirect (node, region, &gsi, &need_ssa_rename);
5215 return need_ssa_rename;
5218 /* Walk the CFG for REGION, beginning at BB. Install calls to
5219 tm_irrevocable when IRR_BLOCKS are reached, redirect other calls to
5220 the generated transactional clone. */
5222 static bool
5223 ipa_tm_transform_calls (struct cgraph_node *node, struct tm_region *region,
5224 basic_block bb, bitmap irr_blocks)
5226 bool need_ssa_rename = false;
5227 edge e;
5228 edge_iterator ei;
5229 auto_vec<basic_block> queue;
5230 bitmap visited_blocks = BITMAP_ALLOC (NULL);
5232 queue.safe_push (bb);
5235 bb = queue.pop ();
5237 need_ssa_rename |=
5238 ipa_tm_transform_calls_1 (node, region, bb, irr_blocks);
5240 if (irr_blocks && bitmap_bit_p (irr_blocks, bb->index))
5241 continue;
5243 if (region && bitmap_bit_p (region->exit_blocks, bb->index))
5244 continue;
5246 FOR_EACH_EDGE (e, ei, bb->succs)
5247 if (!bitmap_bit_p (visited_blocks, e->dest->index))
5249 bitmap_set_bit (visited_blocks, e->dest->index);
5250 queue.safe_push (e->dest);
5253 while (!queue.is_empty ());
5255 BITMAP_FREE (visited_blocks);
5257 return need_ssa_rename;
5260 /* Transform the calls within the TM regions within NODE. */
5262 static void
5263 ipa_tm_transform_transaction (struct cgraph_node *node)
5265 struct tm_ipa_cg_data *d;
5266 struct tm_region *region;
5267 bool need_ssa_rename = false;
5269 d = get_cg_data (&node, true);
5271 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
5272 calculate_dominance_info (CDI_DOMINATORS);
5274 for (region = d->all_tm_regions; region; region = region->next)
5276 /* If we're sure to go irrevocable, don't transform anything. */
5277 if (d->irrevocable_blocks_normal
5278 && bitmap_bit_p (d->irrevocable_blocks_normal,
5279 region->entry_block->index))
5281 transaction_subcode_ior (region, GTMA_DOES_GO_IRREVOCABLE
5282 | GTMA_MAY_ENTER_IRREVOCABLE
5283 | GTMA_HAS_NO_INSTRUMENTATION);
5284 continue;
5287 need_ssa_rename |=
5288 ipa_tm_transform_calls (node, region, region->entry_block,
5289 d->irrevocable_blocks_normal);
5292 if (need_ssa_rename)
5293 update_ssa (TODO_update_ssa_only_virtuals);
5295 pop_cfun ();
5298 /* Transform the calls within the transactional clone of NODE. */
5300 static void
5301 ipa_tm_transform_clone (struct cgraph_node *node)
5303 struct tm_ipa_cg_data *d;
5304 bool need_ssa_rename;
5306 d = get_cg_data (&node, true);
5308 /* If this function makes no calls and has no irrevocable blocks,
5309 then there's nothing to do. */
5310 /* ??? Remove non-aborting top-level transactions. */
5311 if (!node->callees && !node->indirect_calls && !d->irrevocable_blocks_clone)
5312 return;
5314 push_cfun (DECL_STRUCT_FUNCTION (d->clone->decl));
5315 calculate_dominance_info (CDI_DOMINATORS);
5317 need_ssa_rename =
5318 ipa_tm_transform_calls (d->clone, NULL,
5319 single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun)),
5320 d->irrevocable_blocks_clone);
5322 if (need_ssa_rename)
5323 update_ssa (TODO_update_ssa_only_virtuals);
5325 pop_cfun ();
5328 /* Main entry point for the transactional memory IPA pass. */
5330 static unsigned int
5331 ipa_tm_execute (void)
5333 cgraph_node_queue tm_callees = cgraph_node_queue ();
5334 /* List of functions that will go irrevocable. */
5335 cgraph_node_queue irr_worklist = cgraph_node_queue ();
5337 struct cgraph_node *node;
5338 struct tm_ipa_cg_data *d;
5339 enum availability a;
5340 unsigned int i;
5342 #ifdef ENABLE_CHECKING
5343 cgraph_node::verify_cgraph_nodes ();
5344 #endif
5346 bitmap_obstack_initialize (&tm_obstack);
5347 initialize_original_copy_tables ();
5349 /* For all local functions marked tm_callable, queue them. */
5350 FOR_EACH_DEFINED_FUNCTION (node)
5351 if (is_tm_callable (node->decl)
5352 && node->get_availability () >= AVAIL_INTERPOSABLE)
5354 d = get_cg_data (&node, true);
5355 maybe_push_queue (node, &tm_callees, &d->in_callee_queue);
5358 /* For all local reachable functions... */
5359 FOR_EACH_DEFINED_FUNCTION (node)
5360 if (node->lowered
5361 && node->get_availability () >= AVAIL_INTERPOSABLE)
5363 /* ... marked tm_pure, record that fact for the runtime by
5364 indicating that the pure function is its own tm_callable.
5365 No need to do this if the function's address can't be taken. */
5366 if (is_tm_pure (node->decl))
5368 if (!node->local.local)
5369 record_tm_clone_pair (node->decl, node->decl);
5370 continue;
5373 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
5374 calculate_dominance_info (CDI_DOMINATORS);
5376 tm_region_init (NULL);
5377 if (all_tm_regions)
5379 d = get_cg_data (&node, true);
5381 /* Scan for calls that are in each transaction, and
5382 generate the uninstrumented code path. */
5383 ipa_tm_scan_calls_transaction (d, &tm_callees);
5385 /* Put it in the worklist so we can scan the function
5386 later (ipa_tm_scan_irr_function) and mark the
5387 irrevocable blocks. */
5388 maybe_push_queue (node, &irr_worklist, &d->in_worklist);
5389 d->want_irr_scan_normal = true;
5392 pop_cfun ();
5395 /* For every local function on the callee list, scan as if we will be
5396 creating a transactional clone, queueing all new functions we find
5397 along the way. */
5398 for (i = 0; i < tm_callees.length (); ++i)
5400 node = tm_callees[i];
5401 a = node->get_availability ();
5402 d = get_cg_data (&node, true);
5404 /* Put it in the worklist so we can scan the function later
5405 (ipa_tm_scan_irr_function) and mark the irrevocable
5406 blocks. */
5407 maybe_push_queue (node, &irr_worklist, &d->in_worklist);
5409 /* Some callees cannot be arbitrarily cloned. These will always be
5410 irrevocable. Mark these now, so that we need not scan them. */
5411 if (is_tm_irrevocable (node->decl))
5412 ipa_tm_note_irrevocable (node, &irr_worklist);
5413 else if (a <= AVAIL_NOT_AVAILABLE
5414 && !is_tm_safe_or_pure (node->decl))
5415 ipa_tm_note_irrevocable (node, &irr_worklist);
5416 else if (a >= AVAIL_INTERPOSABLE)
5418 if (!tree_versionable_function_p (node->decl))
5419 ipa_tm_note_irrevocable (node, &irr_worklist);
5420 else if (!d->is_irrevocable)
5422 /* If this is an alias, make sure its base is queued as well.
5423 we need not scan the callees now, as the base will do. */
5424 if (node->alias)
5426 node = cgraph_node::get (node->thunk.alias);
5427 d = get_cg_data (&node, true);
5428 maybe_push_queue (node, &tm_callees, &d->in_callee_queue);
5429 continue;
5432 /* Add all nodes called by this function into
5433 tm_callees as well. */
5434 ipa_tm_scan_calls_clone (node, &tm_callees);
5439 /* Iterate scans until no more work to be done. Prefer not to use
5440 vec::pop because the worklist tends to follow a breadth-first
5441 search of the callgraph, which should allow convergance with a
5442 minimum number of scans. But we also don't want the worklist
5443 array to grow without bound, so we shift the array up periodically. */
5444 for (i = 0; i < irr_worklist.length (); ++i)
5446 if (i > 256 && i == irr_worklist.length () / 8)
5448 irr_worklist.block_remove (0, i);
5449 i = 0;
5452 node = irr_worklist[i];
5453 d = get_cg_data (&node, true);
5454 d->in_worklist = false;
5456 if (d->want_irr_scan_normal)
5458 d->want_irr_scan_normal = false;
5459 ipa_tm_scan_irr_function (node, false);
5461 if (d->in_callee_queue && ipa_tm_scan_irr_function (node, true))
5462 ipa_tm_note_irrevocable (node, &irr_worklist);
5465 /* For every function on the callee list, collect the tm_may_enter_irr
5466 bit on the node. */
5467 irr_worklist.truncate (0);
5468 for (i = 0; i < tm_callees.length (); ++i)
5470 node = tm_callees[i];
5471 if (ipa_tm_mayenterirr_function (node))
5473 d = get_cg_data (&node, true);
5474 gcc_assert (d->in_worklist == false);
5475 maybe_push_queue (node, &irr_worklist, &d->in_worklist);
5479 /* Propagate the tm_may_enter_irr bit to callers until stable. */
5480 for (i = 0; i < irr_worklist.length (); ++i)
5482 struct cgraph_node *caller;
5483 struct cgraph_edge *e;
5484 struct ipa_ref *ref;
5486 if (i > 256 && i == irr_worklist.length () / 8)
5488 irr_worklist.block_remove (0, i);
5489 i = 0;
5492 node = irr_worklist[i];
5493 d = get_cg_data (&node, true);
5494 d->in_worklist = false;
5495 node->local.tm_may_enter_irr = true;
5497 /* Propagate back to normal callers. */
5498 for (e = node->callers; e ; e = e->next_caller)
5500 caller = e->caller;
5501 if (!is_tm_safe_or_pure (caller->decl)
5502 && !caller->local.tm_may_enter_irr)
5504 d = get_cg_data (&caller, true);
5505 maybe_push_queue (caller, &irr_worklist, &d->in_worklist);
5509 /* Propagate back to referring aliases as well. */
5510 FOR_EACH_ALIAS (node, ref)
5512 caller = dyn_cast<cgraph_node *> (ref->referring);
5513 if (!caller->local.tm_may_enter_irr)
5515 /* ?? Do not traverse aliases here. */
5516 d = get_cg_data (&caller, false);
5517 maybe_push_queue (caller, &irr_worklist, &d->in_worklist);
5522 /* Now validate all tm_safe functions, and all atomic regions in
5523 other functions. */
5524 FOR_EACH_DEFINED_FUNCTION (node)
5525 if (node->lowered
5526 && node->get_availability () >= AVAIL_INTERPOSABLE)
5528 d = get_cg_data (&node, true);
5529 if (is_tm_safe (node->decl))
5530 ipa_tm_diagnose_tm_safe (node);
5531 else if (d->all_tm_regions)
5532 ipa_tm_diagnose_transaction (node, d->all_tm_regions);
5535 /* Create clones. Do those that are not irrevocable and have a
5536 positive call count. Do those publicly visible functions that
5537 the user directed us to clone. */
5538 for (i = 0; i < tm_callees.length (); ++i)
5540 bool doit = false;
5542 node = tm_callees[i];
5543 if (node->cpp_implicit_alias)
5544 continue;
5546 a = node->get_availability ();
5547 d = get_cg_data (&node, true);
5549 if (a <= AVAIL_NOT_AVAILABLE)
5550 doit = is_tm_callable (node->decl);
5551 else if (a <= AVAIL_AVAILABLE && is_tm_callable (node->decl))
5552 doit = true;
5553 else if (!d->is_irrevocable
5554 && d->tm_callers_normal + d->tm_callers_clone > 0)
5555 doit = true;
5557 if (doit)
5558 ipa_tm_create_version (node);
5561 /* Redirect calls to the new clones, and insert irrevocable marks. */
5562 for (i = 0; i < tm_callees.length (); ++i)
5564 node = tm_callees[i];
5565 if (node->analyzed)
5567 d = get_cg_data (&node, true);
5568 if (d->clone)
5569 ipa_tm_transform_clone (node);
5572 FOR_EACH_DEFINED_FUNCTION (node)
5573 if (node->lowered
5574 && node->get_availability () >= AVAIL_INTERPOSABLE)
5576 d = get_cg_data (&node, true);
5577 if (d->all_tm_regions)
5578 ipa_tm_transform_transaction (node);
5581 /* Free and clear all data structures. */
5582 tm_callees.release ();
5583 irr_worklist.release ();
5584 bitmap_obstack_release (&tm_obstack);
5585 free_original_copy_tables ();
5587 FOR_EACH_FUNCTION (node)
5588 node->aux = NULL;
5590 #ifdef ENABLE_CHECKING
5591 cgraph_node::verify_cgraph_nodes ();
5592 #endif
5594 return 0;
5597 namespace {
5599 const pass_data pass_data_ipa_tm =
5601 SIMPLE_IPA_PASS, /* type */
5602 "tmipa", /* name */
5603 OPTGROUP_NONE, /* optinfo_flags */
5604 TV_TRANS_MEM, /* tv_id */
5605 ( PROP_ssa | PROP_cfg ), /* properties_required */
5606 0, /* properties_provided */
5607 0, /* properties_destroyed */
5608 0, /* todo_flags_start */
5609 0, /* todo_flags_finish */
5612 class pass_ipa_tm : public simple_ipa_opt_pass
5614 public:
5615 pass_ipa_tm (gcc::context *ctxt)
5616 : simple_ipa_opt_pass (pass_data_ipa_tm, ctxt)
5619 /* opt_pass methods: */
5620 virtual bool gate (function *) { return flag_tm; }
5621 virtual unsigned int execute (function *) { return ipa_tm_execute (); }
5623 }; // class pass_ipa_tm
5625 } // anon namespace
5627 simple_ipa_opt_pass *
5628 make_pass_ipa_tm (gcc::context *ctxt)
5630 return new pass_ipa_tm (ctxt);
5633 #include "gt-trans-mem.h"