1 /* Passes for transactional memory support.
2 Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
25 #include "tree-flow.h"
26 #include "tree-pass.h"
27 #include "tree-inline.h"
28 #include "diagnostic-core.h"
31 #include "trans-mem.h"
34 #include "langhooks.h"
35 #include "tree-pretty-print.h"
36 #include "gimple-pretty-print.h"
39 #define PROB_VERY_UNLIKELY (REG_BR_PROB_BASE / 2000 - 1)
40 #define PROB_ALWAYS (REG_BR_PROB_BASE)
42 #define A_RUNINSTRUMENTEDCODE 0x0001
43 #define A_RUNUNINSTRUMENTEDCODE 0x0002
44 #define A_SAVELIVEVARIABLES 0x0004
45 #define A_RESTORELIVEVARIABLES 0x0008
46 #define A_ABORTTRANSACTION 0x0010
48 #define AR_USERABORT 0x0001
49 #define AR_USERRETRY 0x0002
50 #define AR_TMCONFLICT 0x0004
51 #define AR_EXCEPTIONBLOCKABORT 0x0008
52 #define AR_OUTERABORT 0x0010
54 #define MODE_SERIALIRREVOCABLE 0x0000
57 /* The representation of a transaction changes several times during the
58 lowering process. In the beginning, in the front-end we have the
59 GENERIC tree TRANSACTION_EXPR. For example,
67 During initial gimplification (gimplify.c) the TRANSACTION_EXPR node is
68 trivially replaced with a GIMPLE_TRANSACTION node.
70 During pass_lower_tm, we examine the body of transactions looking
71 for aborts. Transactions that do not contain an abort may be
72 merged into an outer transaction. We also add a TRY-FINALLY node
73 to arrange for the transaction to be committed on any exit.
75 [??? Think about how this arrangement affects throw-with-commit
76 and throw-with-abort operations. In this case we want the TRY to
77 handle gotos, but not to catch any exceptions because the transaction
78 will already be closed.]
80 GIMPLE_TRANSACTION [label=NULL] {
87 __builtin___tm_abort ();
89 __builtin___tm_commit ();
93 During pass_lower_eh, we create EH regions for the transactions,
94 intermixed with the regular EH stuff. This gives us a nice persistent
95 mapping (all the way through rtl) from transactional memory operation
96 back to the transaction, which allows us to get the abnormal edges
97 correct to model transaction aborts and restarts:
99 GIMPLE_TRANSACTION [label=over]
105 __builtin___tm_abort ();
106 __builtin___tm_commit ();
109 This is the end of all_lowering_passes, and so is what is present
110 during the IPA passes, and through all of the optimization passes.
112 During pass_ipa_tm, we examine all GIMPLE_TRANSACTION blocks in all
113 functions and mark functions for cloning.
115 At the end of gimple optimization, before exiting SSA form,
116 pass_tm_edges replaces statements that perform transactional
117 memory operations with the appropriate TM builtins, and swap
118 out function calls with their transactional clones. At this
119 point we introduce the abnormal transaction restart edges and
120 complete lowering of the GIMPLE_TRANSACTION node.
122 x = __builtin___tm_start (MAY_ABORT);
124 if (x & abort_transaction)
127 t0 = __builtin___tm_load (global);
129 __builtin___tm_store (&global, t1);
131 __builtin___tm_abort ();
132 __builtin___tm_commit ();
137 /* Return the attributes we want to examine for X, or NULL if it's not
138 something we examine. We look at function types, but allow pointers
139 to function types and function decls and peek through. */
142 get_attrs_for (const_tree x)
144 switch (TREE_CODE (x))
147 return TYPE_ATTRIBUTES (TREE_TYPE (x));
154 if (TREE_CODE (x) != POINTER_TYPE)
160 if (TREE_CODE (x) != FUNCTION_TYPE && TREE_CODE (x) != METHOD_TYPE)
166 return TYPE_ATTRIBUTES (x);
170 /* Return true if X has been marked TM_PURE. */
173 is_tm_pure (const_tree x)
177 switch (TREE_CODE (x))
188 if (TREE_CODE (x) != POINTER_TYPE)
194 if (TREE_CODE (x) != FUNCTION_TYPE && TREE_CODE (x) != METHOD_TYPE)
199 flags = flags_from_decl_or_type (x);
200 return (flags & ECF_TM_PURE) != 0;
203 /* Return true if X has been marked TM_IRREVOCABLE. */
206 is_tm_irrevocable (tree x)
208 tree attrs = get_attrs_for (x);
210 if (attrs && lookup_attribute ("transaction_unsafe", attrs))
213 /* A call to the irrevocable builtin is by definition,
215 if (TREE_CODE (x) == ADDR_EXPR)
216 x = TREE_OPERAND (x, 0);
217 if (TREE_CODE (x) == FUNCTION_DECL
218 && DECL_BUILT_IN_CLASS (x) == BUILT_IN_NORMAL
219 && DECL_FUNCTION_CODE (x) == BUILT_IN_TM_IRREVOCABLE)
225 /* Return true if X has been marked TM_SAFE. */
228 is_tm_safe (const_tree x)
232 tree attrs = get_attrs_for (x);
235 if (lookup_attribute ("transaction_safe", attrs))
237 if (lookup_attribute ("transaction_may_cancel_outer", attrs))
244 /* Return true if CALL is const, or tm_pure. */
247 is_tm_pure_call (gimple call)
249 tree fn = gimple_call_fn (call);
251 if (TREE_CODE (fn) == ADDR_EXPR)
253 fn = TREE_OPERAND (fn, 0);
254 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
259 return is_tm_pure (fn);
262 /* Return true if X has been marked TM_CALLABLE. */
265 is_tm_callable (tree x)
267 tree attrs = get_attrs_for (x);
270 if (lookup_attribute ("transaction_callable", attrs))
272 if (lookup_attribute ("transaction_safe", attrs))
274 if (lookup_attribute ("transaction_may_cancel_outer", attrs))
280 /* Return true if X has been marked TRANSACTION_MAY_CANCEL_OUTER. */
283 is_tm_may_cancel_outer (tree x)
285 tree attrs = get_attrs_for (x);
287 return lookup_attribute ("transaction_may_cancel_outer", attrs) != NULL;
291 /* Return true for built in functions that "end" a transaction. */
294 is_tm_ending_fndecl (tree fndecl)
296 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
297 switch (DECL_FUNCTION_CODE (fndecl))
299 case BUILT_IN_TM_COMMIT:
300 case BUILT_IN_TM_COMMIT_EH:
301 case BUILT_IN_TM_ABORT:
302 case BUILT_IN_TM_IRREVOCABLE:
311 /* Return true if STMT is a TM load. */
314 is_tm_load (gimple stmt)
318 if (gimple_code (stmt) != GIMPLE_CALL)
321 fndecl = gimple_call_fndecl (stmt);
322 return (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
323 && BUILTIN_TM_LOAD_P (DECL_FUNCTION_CODE (fndecl)));
326 /* Same as above, but for simple TM loads, that is, not the
327 after-write, after-read, etc optimized variants. */
330 is_tm_simple_load (gimple stmt)
334 if (gimple_code (stmt) != GIMPLE_CALL)
337 fndecl = gimple_call_fndecl (stmt);
338 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
340 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
341 return (fcode == BUILT_IN_TM_LOAD_1
342 || fcode == BUILT_IN_TM_LOAD_2
343 || fcode == BUILT_IN_TM_LOAD_4
344 || fcode == BUILT_IN_TM_LOAD_8
345 || fcode == BUILT_IN_TM_LOAD_FLOAT
346 || fcode == BUILT_IN_TM_LOAD_DOUBLE
347 || fcode == BUILT_IN_TM_LOAD_LDOUBLE
348 || fcode == BUILT_IN_TM_LOAD_M64
349 || fcode == BUILT_IN_TM_LOAD_M128
350 || fcode == BUILT_IN_TM_LOAD_M256);
355 /* Return true if STMT is a TM store. */
358 is_tm_store (gimple stmt)
362 if (gimple_code (stmt) != GIMPLE_CALL)
365 fndecl = gimple_call_fndecl (stmt);
366 return (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
367 && BUILTIN_TM_STORE_P (DECL_FUNCTION_CODE (fndecl)));
370 /* Same as above, but for simple TM stores, that is, not the
371 after-write, after-read, etc optimized variants. */
374 is_tm_simple_store (gimple stmt)
378 if (gimple_code (stmt) != GIMPLE_CALL)
381 fndecl = gimple_call_fndecl (stmt);
382 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
384 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
385 return (fcode == BUILT_IN_TM_STORE_1
386 || fcode == BUILT_IN_TM_STORE_2
387 || fcode == BUILT_IN_TM_STORE_4
388 || fcode == BUILT_IN_TM_STORE_8
389 || fcode == BUILT_IN_TM_STORE_FLOAT
390 || fcode == BUILT_IN_TM_STORE_DOUBLE
391 || fcode == BUILT_IN_TM_STORE_LDOUBLE
392 || fcode == BUILT_IN_TM_STORE_M64
393 || fcode == BUILT_IN_TM_STORE_M128
394 || fcode == BUILT_IN_TM_STORE_M256);
399 /* Return true if FNDECL is BUILT_IN_TM_ABORT. */
402 is_tm_abort (tree fndecl)
405 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
406 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_TM_ABORT);
409 /* Build a GENERIC tree for a user abort. This is called by front ends
410 while transforming the __tm_abort statement. */
413 build_tm_abort_call (location_t loc, bool is_outer)
415 return build_call_expr_loc (loc, builtin_decl_explicit (BUILT_IN_TM_ABORT), 1,
416 build_int_cst (integer_type_node,
418 | (is_outer ? AR_OUTERABORT : 0)));
421 /* Common gateing function for several of the TM passes. */
429 /* Map for aribtrary function replacement under TM, as created
430 by the tm_wrap attribute. */
432 static GTY((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
436 record_tm_replacement (tree from, tree to)
438 struct tree_map **slot, *h;
440 /* Do not inline wrapper functions that will get replaced in the TM
443 Suppose you have foo() that will get replaced into tmfoo(). Make
444 sure the inliner doesn't try to outsmart us and inline foo()
445 before we get a chance to do the TM replacement. */
446 DECL_UNINLINABLE (from) = 1;
448 if (tm_wrap_map == NULL)
449 tm_wrap_map = htab_create_ggc (32, tree_map_hash, tree_map_eq, 0);
451 h = ggc_alloc_tree_map ();
452 h->hash = htab_hash_pointer (from);
456 slot = (struct tree_map **)
457 htab_find_slot_with_hash (tm_wrap_map, h, h->hash, INSERT);
461 /* Return a TM-aware replacement function for DECL. */
464 find_tm_replacement_function (tree fndecl)
468 struct tree_map *h, in;
470 in.base.from = fndecl;
471 in.hash = htab_hash_pointer (fndecl);
472 h = (struct tree_map *) htab_find_with_hash (tm_wrap_map, &in, in.hash);
477 /* ??? We may well want TM versions of most of the common <string.h>
478 functions. For now, we've already these two defined. */
479 /* Adjust expand_call_tm() attributes as necessary for the cases
481 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
482 switch (DECL_FUNCTION_CODE (fndecl))
484 case BUILT_IN_MEMCPY:
485 return builtin_decl_explicit (BUILT_IN_TM_MEMCPY);
486 case BUILT_IN_MEMMOVE:
487 return builtin_decl_explicit (BUILT_IN_TM_MEMMOVE);
488 case BUILT_IN_MEMSET:
489 return builtin_decl_explicit (BUILT_IN_TM_MEMSET);
497 /* When appropriate, record TM replacement for memory allocation functions.
499 FROM is the FNDECL to wrap. */
501 tm_malloc_replacement (tree from)
506 if (TREE_CODE (from) != FUNCTION_DECL)
509 /* If we have a previous replacement, the user must be explicitly
510 wrapping malloc/calloc/free. They better know what they're
512 if (find_tm_replacement_function (from))
515 str = IDENTIFIER_POINTER (DECL_NAME (from));
517 if (!strcmp (str, "malloc"))
518 to = builtin_decl_explicit (BUILT_IN_TM_MALLOC);
519 else if (!strcmp (str, "calloc"))
520 to = builtin_decl_explicit (BUILT_IN_TM_CALLOC);
521 else if (!strcmp (str, "free"))
522 to = builtin_decl_explicit (BUILT_IN_TM_FREE);
526 TREE_NOTHROW (to) = 0;
528 record_tm_replacement (from, to);
531 /* Diagnostics for tm_safe functions/regions. Called by the front end
532 once we've lowered the function to high-gimple. */
534 /* Subroutine of diagnose_tm_safe_errors, called through walk_gimple_seq.
535 Process exactly one statement. WI->INFO is set to non-null when in
536 the context of a tm_safe function, and null for a __transaction block. */
538 #define DIAG_TM_OUTER 1
539 #define DIAG_TM_SAFE 2
540 #define DIAG_TM_RELAXED 4
544 unsigned int summary_flags : 8;
545 unsigned int block_flags : 8;
546 unsigned int func_flags : 8;
547 unsigned int saw_volatile : 1;
551 /* Tree callback function for diagnose_tm pass. */
554 diagnose_tm_1_op (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
557 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
558 struct diagnose_tm *d = (struct diagnose_tm *) wi->info;
559 enum tree_code code = TREE_CODE (*tp);
561 if ((code == VAR_DECL
562 || code == RESULT_DECL
563 || code == PARM_DECL)
564 && d->block_flags & (DIAG_TM_SAFE | DIAG_TM_RELAXED)
565 && TREE_THIS_VOLATILE (TREE_TYPE (*tp))
569 error_at (gimple_location (d->stmt),
570 "invalid volatile use of %qD inside transaction",
578 diagnose_tm_1 (gimple_stmt_iterator *gsi, bool *handled_ops_p,
579 struct walk_stmt_info *wi)
581 gimple stmt = gsi_stmt (*gsi);
582 struct diagnose_tm *d = (struct diagnose_tm *) wi->info;
584 /* Save stmt for use in leaf analysis. */
587 switch (gimple_code (stmt))
591 tree fn = gimple_call_fn (stmt);
593 if ((d->summary_flags & DIAG_TM_OUTER) == 0
594 && is_tm_may_cancel_outer (fn))
595 error_at (gimple_location (stmt),
596 "%<transaction_may_cancel_outer%> function call not within"
597 " outer transaction or %<transaction_may_cancel_outer%>");
599 if (d->summary_flags & DIAG_TM_SAFE)
601 bool is_safe, direct_call_p;
604 if (TREE_CODE (fn) == ADDR_EXPR
605 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL)
607 direct_call_p = true;
608 replacement = TREE_OPERAND (fn, 0);
609 replacement = find_tm_replacement_function (replacement);
615 direct_call_p = false;
616 replacement = NULL_TREE;
619 if (is_tm_safe_or_pure (fn))
621 else if (is_tm_callable (fn) || is_tm_irrevocable (fn))
623 /* A function explicitly marked transaction_callable as
624 opposed to transaction_safe is being defined to be
625 unsafe as part of its ABI, regardless of its contents. */
628 else if (direct_call_p)
630 if (flags_from_decl_or_type (fn) & ECF_TM_BUILTIN)
632 else if (replacement)
634 /* ??? At present we've been considering replacements
635 merely transaction_callable, and therefore might
636 enter irrevocable. The tm_wrap attribute has not
637 yet made it into the new language spec. */
642 /* ??? Diagnostics for unmarked direct calls moved into
643 the IPA pass. Section 3.2 of the spec details how
644 functions not marked should be considered "implicitly
645 safe" based on having examined the function body. */
651 /* An unmarked indirect call. Consider it unsafe even
652 though optimization may yet figure out how to inline. */
658 if (TREE_CODE (fn) == ADDR_EXPR)
659 fn = TREE_OPERAND (fn, 0);
660 if (d->block_flags & DIAG_TM_SAFE)
663 error_at (gimple_location (stmt),
664 "unsafe function call %qD within "
665 "atomic transaction", fn);
667 error_at (gimple_location (stmt),
668 "unsafe function call %qE within "
669 "atomic transaction", fn);
674 error_at (gimple_location (stmt),
675 "unsafe function call %qD within "
676 "%<transaction_safe%> function", fn);
678 error_at (gimple_location (stmt),
679 "unsafe function call %qE within "
680 "%<transaction_safe%> function", fn);
688 /* ??? We ought to come up with a way to add attributes to
689 asm statements, and then add "transaction_safe" to it.
690 Either that or get the language spec to resurrect __tm_waiver. */
691 if (d->block_flags & DIAG_TM_SAFE)
692 error_at (gimple_location (stmt),
693 "asm not allowed in atomic transaction");
694 else if (d->func_flags & DIAG_TM_SAFE)
695 error_at (gimple_location (stmt),
696 "asm not allowed in %<transaction_safe%> function");
699 case GIMPLE_TRANSACTION:
701 unsigned char inner_flags = DIAG_TM_SAFE;
703 if (gimple_transaction_subcode (stmt) & GTMA_IS_RELAXED)
705 if (d->block_flags & DIAG_TM_SAFE)
706 error_at (gimple_location (stmt),
707 "relaxed transaction in atomic transaction");
708 else if (d->func_flags & DIAG_TM_SAFE)
709 error_at (gimple_location (stmt),
710 "relaxed transaction in %<transaction_safe%> function");
711 inner_flags = DIAG_TM_RELAXED;
713 else if (gimple_transaction_subcode (stmt) & GTMA_IS_OUTER)
716 error_at (gimple_location (stmt),
717 "outer transaction in transaction");
718 else if (d->func_flags & DIAG_TM_OUTER)
719 error_at (gimple_location (stmt),
720 "outer transaction in "
721 "%<transaction_may_cancel_outer%> function");
722 else if (d->func_flags & DIAG_TM_SAFE)
723 error_at (gimple_location (stmt),
724 "outer transaction in %<transaction_safe%> function");
725 inner_flags |= DIAG_TM_OUTER;
728 *handled_ops_p = true;
729 if (gimple_transaction_body (stmt))
731 struct walk_stmt_info wi_inner;
732 struct diagnose_tm d_inner;
734 memset (&d_inner, 0, sizeof (d_inner));
735 d_inner.func_flags = d->func_flags;
736 d_inner.block_flags = d->block_flags | inner_flags;
737 d_inner.summary_flags = d_inner.func_flags | d_inner.block_flags;
739 memset (&wi_inner, 0, sizeof (wi_inner));
740 wi_inner.info = &d_inner;
742 walk_gimple_seq (gimple_transaction_body (stmt),
743 diagnose_tm_1, diagnose_tm_1_op, &wi_inner);
756 diagnose_tm_blocks (void)
758 struct walk_stmt_info wi;
759 struct diagnose_tm d;
761 memset (&d, 0, sizeof (d));
762 if (is_tm_may_cancel_outer (current_function_decl))
763 d.func_flags = DIAG_TM_OUTER | DIAG_TM_SAFE;
764 else if (is_tm_safe (current_function_decl))
765 d.func_flags = DIAG_TM_SAFE;
766 d.summary_flags = d.func_flags;
768 memset (&wi, 0, sizeof (wi));
771 walk_gimple_seq (gimple_body (current_function_decl),
772 diagnose_tm_1, diagnose_tm_1_op, &wi);
777 struct gimple_opt_pass pass_diagnose_tm_blocks =
781 "*diagnose_tm_blocks", /* name */
783 diagnose_tm_blocks, /* execute */
786 0, /* static_pass_number */
787 TV_TRANS_MEM, /* tv_id */
788 PROP_gimple_any, /* properties_required */
789 0, /* properties_provided */
790 0, /* properties_destroyed */
791 0, /* todo_flags_start */
792 0, /* todo_flags_finish */
796 /* Instead of instrumenting thread private memory, we save the
797 addresses in a log which we later use to save/restore the addresses
798 upon transaction start/restart.
800 The log is keyed by address, where each element contains individual
801 statements among different code paths that perform the store.
803 This log is later used to generate either plain save/restore of the
804 addresses upon transaction start/restart, or calls to the ITM_L*
807 So for something like:
809 struct large { int x[1000]; };
810 struct large lala = { 0 };
816 We can either save/restore:
819 trxn = _ITM_startTransaction ();
820 if (trxn & a_saveLiveVariables)
821 tmp_lala1 = lala.x[i];
822 else if (a & a_restoreLiveVariables)
823 lala.x[i] = tmp_lala1;
825 or use the logging functions:
828 trxn = _ITM_startTransaction ();
829 _ITM_LU4 (&lala.x[i]);
831 Obviously, if we use _ITM_L* to log, we prefer to call _ITM_L* as
832 far up the dominator tree to shadow all of the writes to a given
833 location (thus reducing the total number of logging calls), but not
834 so high as to be called on a path that does not perform a
837 /* One individual log entry. We may have multiple statements for the
838 same location if neither dominate each other (on different
840 typedef struct tm_log_entry
842 /* Address to save. */
844 /* Entry block for the transaction this address occurs in. */
845 basic_block entry_block;
846 /* Dominating statements the store occurs in. */
848 /* Initially, while we are building the log, we place a nonzero
849 value here to mean that this address *will* be saved with a
850 save/restore sequence. Later, when generating the save sequence
851 we place the SSA temp generated here. */
855 /* The actual log. */
856 static htab_t tm_log;
858 /* Addresses to log with a save/restore sequence. These should be in
860 static VEC(tree,heap) *tm_log_save_addresses;
862 /* Map for an SSA_NAME originally pointing to a non aliased new piece
863 of memory (malloc, alloc, etc). */
864 static htab_t tm_new_mem_hash;
866 enum thread_memory_type
870 mem_transaction_local,
874 typedef struct tm_new_mem_map
876 /* SSA_NAME being dereferenced. */
878 enum thread_memory_type local_new_memory;
881 /* Htab support. Return hash value for a `tm_log_entry'. */
883 tm_log_hash (const void *p)
885 const struct tm_log_entry *log = (const struct tm_log_entry *) p;
886 return iterative_hash_expr (log->addr, 0);
889 /* Htab support. Return true if two log entries are the same. */
891 tm_log_eq (const void *p1, const void *p2)
893 const struct tm_log_entry *log1 = (const struct tm_log_entry *) p1;
894 const struct tm_log_entry *log2 = (const struct tm_log_entry *) p2;
898 rth: I suggest that we get rid of the component refs etc.
899 I.e. resolve the reference to base + offset.
901 We may need to actually finish a merge with mainline for this,
902 since we'd like to be presented with Richi's MEM_REF_EXPRs more
903 often than not. But in the meantime your tm_log_entry could save
904 the results of get_inner_reference.
906 See: g++.dg/tm/pr46653.C
909 /* Special case plain equality because operand_equal_p() below will
910 return FALSE if the addresses are equal but they have
911 side-effects (e.g. a volatile address). */
912 if (log1->addr == log2->addr)
915 return operand_equal_p (log1->addr, log2->addr, 0);
918 /* Htab support. Free one tm_log_entry. */
920 tm_log_free (void *p)
922 struct tm_log_entry *lp = (struct tm_log_entry *) p;
923 VEC_free (gimple, heap, lp->stmts);
927 /* Initialize logging data structures. */
931 tm_log = htab_create (10, tm_log_hash, tm_log_eq, tm_log_free);
932 tm_new_mem_hash = htab_create (5, struct_ptr_hash, struct_ptr_eq, free);
933 tm_log_save_addresses = VEC_alloc (tree, heap, 5);
936 /* Free logging data structures. */
940 htab_delete (tm_log);
941 htab_delete (tm_new_mem_hash);
942 VEC_free (tree, heap, tm_log_save_addresses);
945 /* Return true if MEM is a transaction invariant memory for the TM
946 region starting at REGION_ENTRY_BLOCK. */
948 transaction_invariant_address_p (const_tree mem, basic_block region_entry_block)
950 if ((TREE_CODE (mem) == INDIRECT_REF || TREE_CODE (mem) == MEM_REF)
951 && TREE_CODE (TREE_OPERAND (mem, 0)) == SSA_NAME)
955 def_bb = gimple_bb (SSA_NAME_DEF_STMT (TREE_OPERAND (mem, 0)));
956 return def_bb != region_entry_block
957 && dominated_by_p (CDI_DOMINATORS, region_entry_block, def_bb);
960 mem = strip_invariant_refs (mem);
961 return mem && (CONSTANT_CLASS_P (mem) || decl_address_invariant_p (mem));
964 /* Given an address ADDR in STMT, find it in the memory log or add it,
965 making sure to keep only the addresses highest in the dominator
968 ENTRY_BLOCK is the entry_block for the transaction.
970 If we find the address in the log, make sure it's either the same
971 address, or an equivalent one that dominates ADDR.
973 If we find the address, but neither ADDR dominates the found
974 address, nor the found one dominates ADDR, we're on different
975 execution paths. Add it.
977 If known, ENTRY_BLOCK is the entry block for the region, otherwise
980 tm_log_add (basic_block entry_block, tree addr, gimple stmt)
983 struct tm_log_entry l, *lp;
986 slot = htab_find_slot (tm_log, &l, INSERT);
989 tree type = TREE_TYPE (addr);
991 lp = XNEW (struct tm_log_entry);
995 /* Small invariant addresses can be handled as save/restores. */
997 && transaction_invariant_address_p (lp->addr, entry_block)
998 && TYPE_SIZE_UNIT (type) != NULL
999 && host_integerp (TYPE_SIZE_UNIT (type), 1)
1000 && (tree_low_cst (TYPE_SIZE_UNIT (type), 1)
1001 < PARAM_VALUE (PARAM_TM_MAX_AGGREGATE_SIZE))
1002 /* We must be able to copy this type normally. I.e., no
1003 special constructors and the like. */
1004 && !TREE_ADDRESSABLE (type))
1006 lp->save_var = create_tmp_reg (TREE_TYPE (lp->addr), "tm_save");
1007 add_referenced_var (lp->save_var);
1009 lp->entry_block = entry_block;
1010 /* Save addresses separately in dominator order so we don't
1011 get confused by overlapping addresses in the save/restore
1013 VEC_safe_push (tree, heap, tm_log_save_addresses, lp->addr);
1017 /* Use the logging functions. */
1018 lp->stmts = VEC_alloc (gimple, heap, 5);
1019 VEC_quick_push (gimple, lp->stmts, stmt);
1020 lp->save_var = NULL;
1028 lp = (struct tm_log_entry *) *slot;
1030 /* If we're generating a save/restore sequence, we don't care
1031 about statements. */
1035 for (i = 0; VEC_iterate (gimple, lp->stmts, i, oldstmt); ++i)
1037 if (stmt == oldstmt)
1039 /* We already have a store to the same address, higher up the
1040 dominator tree. Nothing to do. */
1041 if (dominated_by_p (CDI_DOMINATORS,
1042 gimple_bb (stmt), gimple_bb (oldstmt)))
1044 /* We should be processing blocks in dominator tree order. */
1045 gcc_assert (!dominated_by_p (CDI_DOMINATORS,
1046 gimple_bb (oldstmt), gimple_bb (stmt)));
1048 /* Store is on a different code path. */
1049 VEC_safe_push (gimple, heap, lp->stmts, stmt);
1053 /* Gimplify the address of a TARGET_MEM_REF. Return the SSA_NAME
1054 result, insert the new statements before GSI. */
1057 gimplify_addr (gimple_stmt_iterator *gsi, tree x)
1059 if (TREE_CODE (x) == TARGET_MEM_REF)
1060 x = tree_mem_ref_addr (build_pointer_type (TREE_TYPE (x)), x);
1062 x = build_fold_addr_expr (x);
1063 return force_gimple_operand_gsi (gsi, x, true, NULL, true, GSI_SAME_STMT);
1066 /* Instrument one address with the logging functions.
1067 ADDR is the address to save.
1068 STMT is the statement before which to place it. */
1070 tm_log_emit_stmt (tree addr, gimple stmt)
1072 tree type = TREE_TYPE (addr);
1073 tree size = TYPE_SIZE_UNIT (type);
1074 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
1076 enum built_in_function code = BUILT_IN_TM_LOG;
1078 if (type == float_type_node)
1079 code = BUILT_IN_TM_LOG_FLOAT;
1080 else if (type == double_type_node)
1081 code = BUILT_IN_TM_LOG_DOUBLE;
1082 else if (type == long_double_type_node)
1083 code = BUILT_IN_TM_LOG_LDOUBLE;
1084 else if (host_integerp (size, 1))
1086 unsigned int n = tree_low_cst (size, 1);
1090 code = BUILT_IN_TM_LOG_1;
1093 code = BUILT_IN_TM_LOG_2;
1096 code = BUILT_IN_TM_LOG_4;
1099 code = BUILT_IN_TM_LOG_8;
1102 code = BUILT_IN_TM_LOG;
1103 if (TREE_CODE (type) == VECTOR_TYPE)
1105 if (n == 8 && builtin_decl_explicit (BUILT_IN_TM_LOG_M64))
1106 code = BUILT_IN_TM_LOG_M64;
1107 else if (n == 16 && builtin_decl_explicit (BUILT_IN_TM_LOG_M128))
1108 code = BUILT_IN_TM_LOG_M128;
1109 else if (n == 32 && builtin_decl_explicit (BUILT_IN_TM_LOG_M256))
1110 code = BUILT_IN_TM_LOG_M256;
1116 addr = gimplify_addr (&gsi, addr);
1117 if (code == BUILT_IN_TM_LOG)
1118 log = gimple_build_call (builtin_decl_explicit (code), 2, addr, size);
1120 log = gimple_build_call (builtin_decl_explicit (code), 1, addr);
1121 gsi_insert_before (&gsi, log, GSI_SAME_STMT);
1124 /* Go through the log and instrument address that must be instrumented
1125 with the logging functions. Leave the save/restore addresses for
1131 struct tm_log_entry *lp;
1133 FOR_EACH_HTAB_ELEMENT (tm_log, lp, tm_log_entry_t, hi)
1140 fprintf (dump_file, "TM thread private mem logging: ");
1141 print_generic_expr (dump_file, lp->addr, 0);
1142 fprintf (dump_file, "\n");
1148 fprintf (dump_file, "DUMPING to variable\n");
1154 fprintf (dump_file, "DUMPING with logging functions\n");
1155 for (i = 0; VEC_iterate (gimple, lp->stmts, i, stmt); ++i)
1156 tm_log_emit_stmt (lp->addr, stmt);
1161 /* Emit the save sequence for the corresponding addresses in the log.
1162 ENTRY_BLOCK is the entry block for the transaction.
1163 BB is the basic block to insert the code in. */
1165 tm_log_emit_saves (basic_block entry_block, basic_block bb)
1168 gimple_stmt_iterator gsi = gsi_last_bb (bb);
1170 struct tm_log_entry l, *lp;
1172 for (i = 0; i < VEC_length (tree, tm_log_save_addresses); ++i)
1174 l.addr = VEC_index (tree, tm_log_save_addresses, i);
1175 lp = (struct tm_log_entry *) *htab_find_slot (tm_log, &l, NO_INSERT);
1176 gcc_assert (lp->save_var != NULL);
1178 /* We only care about variables in the current transaction. */
1179 if (lp->entry_block != entry_block)
1182 stmt = gimple_build_assign (lp->save_var, unshare_expr (lp->addr));
1184 /* Make sure we can create an SSA_NAME for this type. For
1185 instance, aggregates aren't allowed, in which case the system
1186 will create a VOP for us and everything will just work. */
1187 if (is_gimple_reg_type (TREE_TYPE (lp->save_var)))
1189 lp->save_var = make_ssa_name (lp->save_var, stmt);
1190 gimple_assign_set_lhs (stmt, lp->save_var);
1193 gsi_insert_before (&gsi, stmt, GSI_SAME_STMT);
1197 /* Emit the restore sequence for the corresponding addresses in the log.
1198 ENTRY_BLOCK is the entry block for the transaction.
1199 BB is the basic block to insert the code in. */
1201 tm_log_emit_restores (basic_block entry_block, basic_block bb)
1204 struct tm_log_entry l, *lp;
1205 gimple_stmt_iterator gsi;
1208 for (i = VEC_length (tree, tm_log_save_addresses) - 1; i >= 0; i--)
1210 l.addr = VEC_index (tree, tm_log_save_addresses, i);
1211 lp = (struct tm_log_entry *) *htab_find_slot (tm_log, &l, NO_INSERT);
1212 gcc_assert (lp->save_var != NULL);
1214 /* We only care about variables in the current transaction. */
1215 if (lp->entry_block != entry_block)
1218 /* Restores are in LIFO order from the saves in case we have
1220 gsi = gsi_start_bb (bb);
1222 stmt = gimple_build_assign (unshare_expr (lp->addr), lp->save_var);
1223 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
1227 /* Emit the checks for performing either a save or a restore sequence.
1229 TRXN_PROP is either A_SAVELIVEVARIABLES or A_RESTORELIVEVARIABLES.
1231 The code sequence is inserted in a new basic block created in
1232 END_BB which is inserted between BEFORE_BB and the destination of
1235 STATUS is the return value from _ITM_beginTransaction.
1236 ENTRY_BLOCK is the entry block for the transaction.
1237 EMITF is a callback to emit the actual save/restore code.
1239 The basic block containing the conditional checking for TRXN_PROP
1242 tm_log_emit_save_or_restores (basic_block entry_block,
1245 void (*emitf)(basic_block, basic_block),
1246 basic_block before_bb,
1248 basic_block *end_bb)
1250 basic_block cond_bb, code_bb;
1251 gimple cond_stmt, stmt;
1252 gimple_stmt_iterator gsi;
1254 int old_flags = fallthru_edge->flags;
1256 cond_bb = create_empty_bb (before_bb);
1257 code_bb = create_empty_bb (cond_bb);
1258 *end_bb = create_empty_bb (code_bb);
1259 redirect_edge_pred (fallthru_edge, *end_bb);
1260 fallthru_edge->flags = EDGE_FALLTHRU;
1261 make_edge (before_bb, cond_bb, old_flags);
1263 set_immediate_dominator (CDI_DOMINATORS, cond_bb, before_bb);
1264 set_immediate_dominator (CDI_DOMINATORS, code_bb, cond_bb);
1266 gsi = gsi_last_bb (cond_bb);
1268 /* t1 = status & A_{property}. */
1269 t1 = make_rename_temp (TREE_TYPE (status), NULL);
1270 t2 = build_int_cst (TREE_TYPE (status), trxn_prop);
1271 stmt = gimple_build_assign_with_ops (BIT_AND_EXPR, t1, status, t2);
1272 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
1275 t2 = build_int_cst (TREE_TYPE (status), 0);
1276 cond_stmt = gimple_build_cond (NE_EXPR, t1, t2, NULL, NULL);
1277 gsi_insert_after (&gsi, cond_stmt, GSI_CONTINUE_LINKING);
1279 emitf (entry_block, code_bb);
1281 make_edge (cond_bb, code_bb, EDGE_TRUE_VALUE);
1282 make_edge (cond_bb, *end_bb, EDGE_FALSE_VALUE);
1283 make_edge (code_bb, *end_bb, EDGE_FALLTHRU);
1288 static tree lower_sequence_tm (gimple_stmt_iterator *, bool *,
1289 struct walk_stmt_info *);
1290 static tree lower_sequence_no_tm (gimple_stmt_iterator *, bool *,
1291 struct walk_stmt_info *);
1293 /* Evaluate an address X being dereferenced and determine if it
1294 originally points to a non aliased new chunk of memory (malloc,
1297 Return MEM_THREAD_LOCAL if it points to a thread-local address.
1298 Return MEM_TRANSACTION_LOCAL if it points to a transaction-local address.
1299 Return MEM_NON_LOCAL otherwise.
1301 ENTRY_BLOCK is the entry block to the transaction containing the
1302 dereference of X. */
1303 static enum thread_memory_type
1304 thread_private_new_memory (basic_block entry_block, tree x)
1307 enum tree_code code;
1309 tm_new_mem_map_t elt, *elt_p;
1311 enum thread_memory_type retval = mem_transaction_local;
1314 || TREE_CODE (x) != SSA_NAME
1315 /* Possible uninitialized use, or a function argument. In
1316 either case, we don't care. */
1317 || SSA_NAME_IS_DEFAULT_DEF (x))
1318 return mem_non_local;
1320 /* Look in cache first. */
1322 slot = htab_find_slot (tm_new_mem_hash, &elt, INSERT);
1323 elt_p = (tm_new_mem_map_t *) *slot;
1325 return elt_p->local_new_memory;
1327 /* Optimistically assume the memory is transaction local during
1328 processing. This catches recursion into this variable. */
1329 *slot = elt_p = XNEW (tm_new_mem_map_t);
1331 elt_p->local_new_memory = mem_transaction_local;
1333 /* Search DEF chain to find the original definition of this address. */
1336 if (ptr_deref_may_alias_global_p (x))
1338 /* Address escapes. This is not thread-private. */
1339 retval = mem_non_local;
1340 goto new_memory_ret;
1343 stmt = SSA_NAME_DEF_STMT (x);
1345 /* If the malloc call is outside the transaction, this is
1347 if (retval != mem_thread_local
1348 && !dominated_by_p (CDI_DOMINATORS, gimple_bb (stmt), entry_block))
1349 retval = mem_thread_local;
1351 if (is_gimple_assign (stmt))
1353 code = gimple_assign_rhs_code (stmt);
1354 /* x = foo ==> foo */
1355 if (code == SSA_NAME)
1356 x = gimple_assign_rhs1 (stmt);
1357 /* x = foo + n ==> foo */
1358 else if (code == POINTER_PLUS_EXPR)
1359 x = gimple_assign_rhs1 (stmt);
1360 /* x = (cast*) foo ==> foo */
1361 else if (code == VIEW_CONVERT_EXPR || code == NOP_EXPR)
1362 x = gimple_assign_rhs1 (stmt);
1365 retval = mem_non_local;
1366 goto new_memory_ret;
1371 if (gimple_code (stmt) == GIMPLE_PHI)
1374 enum thread_memory_type mem;
1375 tree phi_result = gimple_phi_result (stmt);
1377 /* If any of the ancestors are non-local, we are sure to
1378 be non-local. Otherwise we can avoid doing anything
1379 and inherit what has already been generated. */
1381 for (i = 0; i < gimple_phi_num_args (stmt); ++i)
1383 tree op = PHI_ARG_DEF (stmt, i);
1385 /* Exclude self-assignment. */
1386 if (phi_result == op)
1389 mem = thread_private_new_memory (entry_block, op);
1390 if (mem == mem_non_local)
1393 goto new_memory_ret;
1395 retval = MIN (retval, mem);
1397 goto new_memory_ret;
1402 while (TREE_CODE (x) == SSA_NAME);
1404 if (stmt && is_gimple_call (stmt) && gimple_call_flags (stmt) & ECF_MALLOC)
1405 /* Thread-local or transaction-local. */
1408 retval = mem_non_local;
1411 elt_p->local_new_memory = retval;
1415 /* Determine whether X has to be instrumented using a read
1418 ENTRY_BLOCK is the entry block for the region where stmt resides
1419 in. NULL if unknown.
1421 STMT is the statement in which X occurs in. It is used for thread
1422 private memory instrumentation. If no TPM instrumentation is
1423 desired, STMT should be null. */
1425 requires_barrier (basic_block entry_block, tree x, gimple stmt)
1428 while (handled_component_p (x))
1429 x = TREE_OPERAND (x, 0);
1431 switch (TREE_CODE (x))
1436 enum thread_memory_type ret;
1438 ret = thread_private_new_memory (entry_block, TREE_OPERAND (x, 0));
1439 if (ret == mem_non_local)
1441 if (stmt && ret == mem_thread_local)
1442 /* ?? Should we pass `orig', or the INDIRECT_REF X. ?? */
1443 tm_log_add (entry_block, orig, stmt);
1445 /* Transaction-locals require nothing at all. For malloc, a
1446 transaction restart frees the memory and we reallocate.
1447 For alloca, the stack pointer gets reset by the retry and
1452 case TARGET_MEM_REF:
1453 if (TREE_CODE (TMR_BASE (x)) != ADDR_EXPR)
1455 x = TREE_OPERAND (TMR_BASE (x), 0);
1456 if (TREE_CODE (x) == PARM_DECL)
1458 gcc_assert (TREE_CODE (x) == VAR_DECL);
1464 if (DECL_BY_REFERENCE (x))
1466 /* ??? This value is a pointer, but aggregate_value_p has been
1467 jigged to return true which confuses needs_to_live_in_memory.
1468 This ought to be cleaned up generically.
1470 FIXME: Verify this still happens after the next mainline
1471 merge. Testcase ie g++.dg/tm/pr47554.C.
1476 if (is_global_var (x))
1477 return !TREE_READONLY (x);
1478 if (/* FIXME: This condition should actually go below in the
1479 tm_log_add() call, however is_call_clobbered() depends on
1480 aliasing info which is not available during
1481 gimplification. Since requires_barrier() gets called
1482 during lower_sequence_tm/gimplification, leave the call
1483 to needs_to_live_in_memory until we eliminate
1484 lower_sequence_tm altogether. */
1485 needs_to_live_in_memory (x)
1487 || ptr_deref_may_alias_global_p (x))
1491 /* For local memory that doesn't escape (aka thread private
1492 memory), we can either save the value at the beginning of
1493 the transaction and restore on restart, or call a tm
1494 function to dynamically save and restore on restart
1497 tm_log_add (entry_block, orig, stmt);
1506 /* Mark the GIMPLE_ASSIGN statement as appropriate for being inside
1507 a transaction region. */
1510 examine_assign_tm (unsigned *state, gimple_stmt_iterator *gsi)
1512 gimple stmt = gsi_stmt (*gsi);
1514 if (requires_barrier (/*entry_block=*/NULL, gimple_assign_rhs1 (stmt), NULL))
1515 *state |= GTMA_HAVE_LOAD;
1516 if (requires_barrier (/*entry_block=*/NULL, gimple_assign_lhs (stmt), NULL))
1517 *state |= GTMA_HAVE_STORE;
1520 /* Mark a GIMPLE_CALL as appropriate for being inside a transaction. */
1523 examine_call_tm (unsigned *state, gimple_stmt_iterator *gsi)
1525 gimple stmt = gsi_stmt (*gsi);
1528 if (is_tm_pure_call (stmt))
1531 /* Check if this call is a transaction abort. */
1532 fn = gimple_call_fndecl (stmt);
1533 if (is_tm_abort (fn))
1534 *state |= GTMA_HAVE_ABORT;
1536 /* Note that something may happen. */
1537 *state |= GTMA_HAVE_LOAD | GTMA_HAVE_STORE;
1540 /* Lower a GIMPLE_TRANSACTION statement. */
1543 lower_transaction (gimple_stmt_iterator *gsi, struct walk_stmt_info *wi)
1545 gimple g, stmt = gsi_stmt (*gsi);
1546 unsigned int *outer_state = (unsigned int *) wi->info;
1547 unsigned int this_state = 0;
1548 struct walk_stmt_info this_wi;
1550 /* First, lower the body. The scanning that we do inside gives
1551 us some idea of what we're dealing with. */
1552 memset (&this_wi, 0, sizeof (this_wi));
1553 this_wi.info = (void *) &this_state;
1554 walk_gimple_seq (gimple_transaction_body (stmt),
1555 lower_sequence_tm, NULL, &this_wi);
1557 /* If there was absolutely nothing transaction related inside the
1558 transaction, we may elide it. Likewise if this is a nested
1559 transaction and does not contain an abort. */
1561 || (!(this_state & GTMA_HAVE_ABORT) && outer_state != NULL))
1564 *outer_state |= this_state;
1566 gsi_insert_seq_before (gsi, gimple_transaction_body (stmt),
1568 gimple_transaction_set_body (stmt, NULL);
1570 gsi_remove (gsi, true);
1571 wi->removed_stmt = true;
1575 /* Wrap the body of the transaction in a try-finally node so that
1576 the commit call is always properly called. */
1577 g = gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_COMMIT), 0);
1578 if (flag_exceptions)
1581 gimple_seq n_seq, e_seq;
1583 n_seq = gimple_seq_alloc_with_stmt (g);
1584 e_seq = gimple_seq_alloc ();
1586 g = gimple_build_call (builtin_decl_explicit (BUILT_IN_EH_POINTER),
1587 1, integer_zero_node);
1588 ptr = create_tmp_var (ptr_type_node, NULL);
1589 gimple_call_set_lhs (g, ptr);
1590 gimple_seq_add_stmt (&e_seq, g);
1592 g = gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_COMMIT_EH),
1594 gimple_seq_add_stmt (&e_seq, g);
1596 g = gimple_build_eh_else (n_seq, e_seq);
1599 g = gimple_build_try (gimple_transaction_body (stmt),
1600 gimple_seq_alloc_with_stmt (g), GIMPLE_TRY_FINALLY);
1601 gsi_insert_after (gsi, g, GSI_CONTINUE_LINKING);
1603 gimple_transaction_set_body (stmt, NULL);
1605 /* If the transaction calls abort or if this is an outer transaction,
1606 add an "over" label afterwards. */
1607 if ((this_state & (GTMA_HAVE_ABORT))
1608 || (gimple_transaction_subcode(stmt) & GTMA_IS_OUTER))
1610 tree label = create_artificial_label (UNKNOWN_LOCATION);
1611 gimple_transaction_set_label (stmt, label);
1612 gsi_insert_after (gsi, gimple_build_label (label), GSI_CONTINUE_LINKING);
1615 /* Record the set of operations found for use later. */
1616 this_state |= gimple_transaction_subcode (stmt) & GTMA_DECLARATION_MASK;
1617 gimple_transaction_set_subcode (stmt, this_state);
1620 /* Iterate through the statements in the sequence, lowering them all
1621 as appropriate for being in a transaction. */
1624 lower_sequence_tm (gimple_stmt_iterator *gsi, bool *handled_ops_p,
1625 struct walk_stmt_info *wi)
1627 unsigned int *state = (unsigned int *) wi->info;
1628 gimple stmt = gsi_stmt (*gsi);
1630 *handled_ops_p = true;
1631 switch (gimple_code (stmt))
1634 /* Only memory reads/writes need to be instrumented. */
1635 if (gimple_assign_single_p (stmt))
1636 examine_assign_tm (state, gsi);
1640 examine_call_tm (state, gsi);
1644 *state |= GTMA_MAY_ENTER_IRREVOCABLE;
1647 case GIMPLE_TRANSACTION:
1648 lower_transaction (gsi, wi);
1652 *handled_ops_p = !gimple_has_substatements (stmt);
1659 /* Iterate through the statements in the sequence, lowering them all
1660 as appropriate for being outside of a transaction. */
1663 lower_sequence_no_tm (gimple_stmt_iterator *gsi, bool *handled_ops_p,
1664 struct walk_stmt_info * wi)
1666 gimple stmt = gsi_stmt (*gsi);
1668 if (gimple_code (stmt) == GIMPLE_TRANSACTION)
1670 *handled_ops_p = true;
1671 lower_transaction (gsi, wi);
1674 *handled_ops_p = !gimple_has_substatements (stmt);
1679 /* Main entry point for flattening GIMPLE_TRANSACTION constructs. After
1680 this, GIMPLE_TRANSACTION nodes still exist, but the nested body has
1681 been moved out, and all the data required for constructing a proper
1682 CFG has been recorded. */
1685 execute_lower_tm (void)
1687 struct walk_stmt_info wi;
1689 /* Transactional clones aren't created until a later pass. */
1690 gcc_assert (!decl_is_tm_clone (current_function_decl));
1692 memset (&wi, 0, sizeof (wi));
1693 walk_gimple_seq (gimple_body (current_function_decl),
1694 lower_sequence_no_tm, NULL, &wi);
1699 struct gimple_opt_pass pass_lower_tm =
1703 "tmlower", /* name */
1705 execute_lower_tm, /* execute */
1708 0, /* static_pass_number */
1709 TV_TRANS_MEM, /* tv_id */
1710 PROP_gimple_lcf, /* properties_required */
1711 0, /* properties_provided */
1712 0, /* properties_destroyed */
1713 0, /* todo_flags_start */
1714 TODO_dump_func /* todo_flags_finish */
1718 /* Collect region information for each transaction. */
1722 /* Link to the next unnested transaction. */
1723 struct tm_region *next;
1725 /* Link to the next inner transaction. */
1726 struct tm_region *inner;
1728 /* Link to the next outer transaction. */
1729 struct tm_region *outer;
1731 /* The GIMPLE_TRANSACTION statement beginning this transaction. */
1732 gimple transaction_stmt;
1734 /* The entry block to this region. */
1735 basic_block entry_block;
1737 /* The set of all blocks that end the region; NULL if only EXIT_BLOCK.
1738 These blocks are still a part of the region (i.e., the border is
1739 inclusive). Note that this set is only complete for paths in the CFG
1740 starting at ENTRY_BLOCK, and that there is no exit block recorded for
1741 the edge to the "over" label. */
1744 /* The set of all blocks that have an TM_IRREVOCABLE call. */
1748 /* True if there are pending edge statements to be committed for the
1749 current function being scanned in the tmmark pass. */
1750 bool pending_edge_inserts_p;
1752 static struct tm_region *all_tm_regions;
1753 static bitmap_obstack tm_obstack;
1756 /* A subroutine of tm_region_init. Record the existance of the
1757 GIMPLE_TRANSACTION statement in a tree of tm_region elements. */
1759 static struct tm_region *
1760 tm_region_init_0 (struct tm_region *outer, basic_block bb, gimple stmt)
1762 struct tm_region *region;
1764 region = (struct tm_region *)
1765 obstack_alloc (&tm_obstack.obstack, sizeof (struct tm_region));
1769 region->next = outer->inner;
1770 outer->inner = region;
1774 region->next = all_tm_regions;
1775 all_tm_regions = region;
1777 region->inner = NULL;
1778 region->outer = outer;
1780 region->transaction_stmt = stmt;
1782 /* There are either one or two edges out of the block containing
1783 the GIMPLE_TRANSACTION, one to the actual region and one to the
1784 "over" label if the region contains an abort. The former will
1785 always be the one marked FALLTHRU. */
1786 region->entry_block = FALLTHRU_EDGE (bb)->dest;
1788 region->exit_blocks = BITMAP_ALLOC (&tm_obstack);
1789 region->irr_blocks = BITMAP_ALLOC (&tm_obstack);
1794 /* A subroutine of tm_region_init. Record all the exit and
1795 irrevocable blocks in BB into the region's exit_blocks and
1796 irr_blocks bitmaps. Returns the new region being scanned. */
1798 static struct tm_region *
1799 tm_region_init_1 (struct tm_region *region, basic_block bb)
1801 gimple_stmt_iterator gsi;
1805 || (!region->irr_blocks && !region->exit_blocks))
1808 /* Check to see if this is the end of a region by seeing if it
1809 contains a call to __builtin_tm_commit{,_eh}. Note that the
1810 outermost region for DECL_IS_TM_CLONE need not collect this. */
1811 for (gsi = gsi_last_bb (bb); !gsi_end_p (gsi); gsi_prev (&gsi))
1814 if (gimple_code (g) == GIMPLE_CALL)
1816 tree fn = gimple_call_fndecl (g);
1817 if (fn && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
1819 if ((DECL_FUNCTION_CODE (fn) == BUILT_IN_TM_COMMIT
1820 || DECL_FUNCTION_CODE (fn) == BUILT_IN_TM_COMMIT_EH)
1821 && region->exit_blocks)
1823 bitmap_set_bit (region->exit_blocks, bb->index);
1824 region = region->outer;
1827 if (DECL_FUNCTION_CODE (fn) == BUILT_IN_TM_IRREVOCABLE)
1828 bitmap_set_bit (region->irr_blocks, bb->index);
1835 /* Collect all of the transaction regions within the current function
1836 and record them in ALL_TM_REGIONS. The REGION parameter may specify
1837 an "outermost" region for use by tm clones. */
1840 tm_region_init (struct tm_region *region)
1846 VEC(basic_block, heap) *queue = NULL;
1847 bitmap visited_blocks = BITMAP_ALLOC (NULL);
1848 struct tm_region *old_region;
1850 all_tm_regions = region;
1851 bb = single_succ (ENTRY_BLOCK_PTR);
1853 VEC_safe_push (basic_block, heap, queue, bb);
1854 gcc_assert (!bb->aux); /* FIXME: Remove me. */
1858 bb = VEC_pop (basic_block, queue);
1859 region = (struct tm_region *)bb->aux;
1862 /* Record exit and irrevocable blocks. */
1863 region = tm_region_init_1 (region, bb);
1865 /* Check for the last statement in the block beginning a new region. */
1867 old_region = region;
1868 if (g && gimple_code (g) == GIMPLE_TRANSACTION)
1869 region = tm_region_init_0 (region, bb, g);
1871 /* Process subsequent blocks. */
1872 FOR_EACH_EDGE (e, ei, bb->succs)
1873 if (!bitmap_bit_p (visited_blocks, e->dest->index))
1875 bitmap_set_bit (visited_blocks, e->dest->index);
1876 VEC_safe_push (basic_block, heap, queue, e->dest);
1877 gcc_assert (!e->dest->aux); /* FIXME: Remove me. */
1879 /* If the current block started a new region, make sure that only
1880 the entry block of the new region is associated with this region.
1881 Other successors are still part of the old region. */
1882 if (old_region != region && e->dest != region->entry_block)
1883 e->dest->aux = old_region;
1885 e->dest->aux = region;
1888 while (!VEC_empty (basic_block, queue));
1889 VEC_free (basic_block, heap, queue);
1890 BITMAP_FREE (visited_blocks);
1893 /* The "gate" function for all transactional memory expansion and optimization
1894 passes. We collect region information for each top-level transaction, and
1895 if we don't find any, we skip all of the TM passes. Each region will have
1896 all of the exit blocks recorded, and the originating statement. */
1904 calculate_dominance_info (CDI_DOMINATORS);
1905 bitmap_obstack_initialize (&tm_obstack);
1907 /* If the function is a TM_CLONE, then the entire function is the region. */
1908 if (decl_is_tm_clone (current_function_decl))
1910 struct tm_region *region = (struct tm_region *)
1911 obstack_alloc (&tm_obstack.obstack, sizeof (struct tm_region));
1912 memset (region, 0, sizeof (*region));
1913 region->entry_block = single_succ (ENTRY_BLOCK_PTR);
1914 /* For a clone, the entire function is the region. But even if
1915 we don't need to record any exit blocks, we may need to
1916 record irrevocable blocks. */
1917 region->irr_blocks = BITMAP_ALLOC (&tm_obstack);
1919 tm_region_init (region);
1923 tm_region_init (NULL);
1925 /* If we didn't find any regions, cleanup and skip the whole tree
1926 of tm-related optimizations. */
1927 if (all_tm_regions == NULL)
1929 bitmap_obstack_release (&tm_obstack);
1937 struct gimple_opt_pass pass_tm_init =
1941 "*tminit", /* name */
1942 gate_tm_init, /* gate */
1946 0, /* static_pass_number */
1947 TV_TRANS_MEM, /* tv_id */
1948 PROP_ssa | PROP_cfg, /* properties_required */
1949 0, /* properties_provided */
1950 0, /* properties_destroyed */
1951 0, /* todo_flags_start */
1952 0, /* todo_flags_finish */
1956 /* Add FLAGS to the GIMPLE_TRANSACTION subcode for the transaction region
1957 represented by STATE. */
1960 transaction_subcode_ior (struct tm_region *region, unsigned flags)
1962 if (region && region->transaction_stmt)
1964 flags |= gimple_transaction_subcode (region->transaction_stmt);
1965 gimple_transaction_set_subcode (region->transaction_stmt, flags);
1969 /* Construct a memory load in a transactional context. Return the
1970 gimple statement performing the load, or NULL if there is no
1971 TM_LOAD builtin of the appropriate size to do the load.
1973 LOC is the location to use for the new statement(s). */
1976 build_tm_load (location_t loc, tree lhs, tree rhs, gimple_stmt_iterator *gsi)
1978 enum built_in_function code = END_BUILTINS;
1979 tree t, type = TREE_TYPE (rhs), decl;
1982 if (type == float_type_node)
1983 code = BUILT_IN_TM_LOAD_FLOAT;
1984 else if (type == double_type_node)
1985 code = BUILT_IN_TM_LOAD_DOUBLE;
1986 else if (type == long_double_type_node)
1987 code = BUILT_IN_TM_LOAD_LDOUBLE;
1988 else if (TYPE_SIZE_UNIT (type) != NULL
1989 && host_integerp (TYPE_SIZE_UNIT (type), 1))
1991 switch (tree_low_cst (TYPE_SIZE_UNIT (type), 1))
1994 code = BUILT_IN_TM_LOAD_1;
1997 code = BUILT_IN_TM_LOAD_2;
2000 code = BUILT_IN_TM_LOAD_4;
2003 code = BUILT_IN_TM_LOAD_8;
2008 if (code == END_BUILTINS)
2010 decl = targetm.vectorize.builtin_tm_load (type);
2015 decl = builtin_decl_explicit (code);
2017 t = gimplify_addr (gsi, rhs);
2018 gcall = gimple_build_call (decl, 1, t);
2019 gimple_set_location (gcall, loc);
2021 t = TREE_TYPE (TREE_TYPE (decl));
2022 if (useless_type_conversion_p (type, t))
2024 gimple_call_set_lhs (gcall, lhs);
2025 gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2032 temp = make_rename_temp (t, NULL);
2033 gimple_call_set_lhs (gcall, temp);
2034 gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2036 t = fold_build1 (VIEW_CONVERT_EXPR, type, temp);
2037 g = gimple_build_assign (lhs, t);
2038 gsi_insert_before (gsi, g, GSI_SAME_STMT);
2045 /* Similarly for storing TYPE in a transactional context. */
2048 build_tm_store (location_t loc, tree lhs, tree rhs, gimple_stmt_iterator *gsi)
2050 enum built_in_function code = END_BUILTINS;
2051 tree t, fn, type = TREE_TYPE (rhs), simple_type;
2054 if (type == float_type_node)
2055 code = BUILT_IN_TM_STORE_FLOAT;
2056 else if (type == double_type_node)
2057 code = BUILT_IN_TM_STORE_DOUBLE;
2058 else if (type == long_double_type_node)
2059 code = BUILT_IN_TM_STORE_LDOUBLE;
2060 else if (TYPE_SIZE_UNIT (type) != NULL
2061 && host_integerp (TYPE_SIZE_UNIT (type), 1))
2063 switch (tree_low_cst (TYPE_SIZE_UNIT (type), 1))
2066 code = BUILT_IN_TM_STORE_1;
2069 code = BUILT_IN_TM_STORE_2;
2072 code = BUILT_IN_TM_STORE_4;
2075 code = BUILT_IN_TM_STORE_8;
2080 if (code == END_BUILTINS)
2082 fn = targetm.vectorize.builtin_tm_store (type);
2087 fn = builtin_decl_explicit (code);
2089 simple_type = TREE_VALUE (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (fn))));
2091 if (TREE_CODE (rhs) == CONSTRUCTOR)
2093 /* Handle the easy initialization to zero. */
2094 if (CONSTRUCTOR_ELTS (rhs) == 0)
2095 rhs = build_int_cst (simple_type, 0);
2098 /* ...otherwise punt to the caller and probably use
2099 BUILT_IN_TM_MEMMOVE, because we can't wrap a
2100 VIEW_CONVERT_EXPR around a CONSTRUCTOR (below) and produce
2105 else if (!useless_type_conversion_p (simple_type, type))
2110 temp = make_rename_temp (simple_type, NULL);
2111 t = fold_build1 (VIEW_CONVERT_EXPR, simple_type, rhs);
2112 g = gimple_build_assign (temp, t);
2113 gimple_set_location (g, loc);
2114 gsi_insert_before (gsi, g, GSI_SAME_STMT);
2119 t = gimplify_addr (gsi, lhs);
2120 gcall = gimple_build_call (fn, 2, t, rhs);
2121 gimple_set_location (gcall, loc);
2122 gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2128 /* Expand an assignment statement into transactional builtins. */
2131 expand_assign_tm (struct tm_region *region, gimple_stmt_iterator *gsi)
2133 gimple stmt = gsi_stmt (*gsi);
2134 location_t loc = gimple_location (stmt);
2135 tree lhs = gimple_assign_lhs (stmt);
2136 tree rhs = gimple_assign_rhs1 (stmt);
2137 bool store_p = requires_barrier (region->entry_block, lhs, NULL);
2138 bool load_p = requires_barrier (region->entry_block, rhs, NULL);
2139 gimple gcall = NULL;
2141 if (!load_p && !store_p)
2143 /* Add thread private addresses to log if applicable. */
2144 requires_barrier (region->entry_block, lhs, stmt);
2149 gsi_remove (gsi, true);
2151 if (load_p && !store_p)
2153 transaction_subcode_ior (region, GTMA_HAVE_LOAD);
2154 gcall = build_tm_load (loc, lhs, rhs, gsi);
2156 else if (store_p && !load_p)
2158 transaction_subcode_ior (region, GTMA_HAVE_STORE);
2159 gcall = build_tm_store (loc, lhs, rhs, gsi);
2163 tree lhs_addr, rhs_addr;
2166 transaction_subcode_ior (region, GTMA_HAVE_LOAD);
2168 transaction_subcode_ior (region, GTMA_HAVE_STORE);
2170 /* ??? Figure out if there's any possible overlap between the LHS
2171 and the RHS and if not, use MEMCPY. */
2172 lhs_addr = gimplify_addr (gsi, lhs);
2173 rhs_addr = gimplify_addr (gsi, rhs);
2174 gcall = gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_MEMMOVE),
2175 3, lhs_addr, rhs_addr,
2176 TYPE_SIZE_UNIT (TREE_TYPE (lhs)));
2177 gimple_set_location (gcall, loc);
2178 gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2181 /* Now that we have the load/store in its instrumented form, add
2182 thread private addresses to the log if applicable. */
2184 requires_barrier (region->entry_block, lhs, gcall);
2186 /* add_stmt_to_tm_region (region, gcall); */
2190 /* Expand a call statement as appropriate for a transaction. That is,
2191 either verify that the call does not affect the transaction, or
2192 redirect the call to a clone that handles transactions, or change
2193 the transaction state to IRREVOCABLE. Return true if the call is
2194 one of the builtins that end a transaction. */
2197 expand_call_tm (struct tm_region *region,
2198 gimple_stmt_iterator *gsi)
2200 gimple stmt = gsi_stmt (*gsi);
2201 tree lhs = gimple_call_lhs (stmt);
2203 struct cgraph_node *node;
2204 bool retval = false;
2206 fn_decl = gimple_call_fndecl (stmt);
2208 if (fn_decl == builtin_decl_explicit (BUILT_IN_TM_MEMCPY)
2209 || fn_decl == builtin_decl_explicit (BUILT_IN_TM_MEMMOVE))
2210 transaction_subcode_ior (region, GTMA_HAVE_STORE | GTMA_HAVE_LOAD);
2211 if (fn_decl == builtin_decl_explicit (BUILT_IN_TM_MEMSET))
2212 transaction_subcode_ior (region, GTMA_HAVE_STORE);
2214 if (is_tm_pure_call (stmt))
2218 retval = is_tm_ending_fndecl (fn_decl);
2221 /* Assume all non-const/pure calls write to memory, except
2222 transaction ending builtins. */
2223 transaction_subcode_ior (region, GTMA_HAVE_STORE);
2226 /* For indirect calls, we already generated a call into the runtime. */
2229 tree fn = gimple_call_fn (stmt);
2231 /* We are guaranteed never to go irrevocable on a safe or pure
2232 call, and the pure call was handled above. */
2233 if (is_tm_safe (fn))
2236 transaction_subcode_ior (region, GTMA_MAY_ENTER_IRREVOCABLE);
2241 node = cgraph_get_node (fn_decl);
2242 if (node->local.tm_may_enter_irr)
2243 transaction_subcode_ior (region, GTMA_MAY_ENTER_IRREVOCABLE);
2245 if (is_tm_abort (fn_decl))
2247 transaction_subcode_ior (region, GTMA_HAVE_ABORT);
2251 /* Instrument the store if needed.
2253 If the assignment happens inside the function call (return slot
2254 optimization), there is no instrumentation to be done, since
2255 the callee should have done the right thing. */
2256 if (lhs && requires_barrier (region->entry_block, lhs, stmt)
2257 && !gimple_call_return_slot_opt_p (stmt))
2259 tree tmp = make_rename_temp (TREE_TYPE (lhs), NULL);
2260 location_t loc = gimple_location (stmt);
2261 edge fallthru_edge = NULL;
2263 /* Remember if the call was going to throw. */
2264 if (stmt_can_throw_internal (stmt))
2268 basic_block bb = gimple_bb (stmt);
2270 FOR_EACH_EDGE (e, ei, bb->succs)
2271 if (e->flags & EDGE_FALLTHRU)
2278 gimple_call_set_lhs (stmt, tmp);
2280 stmt = gimple_build_assign (lhs, tmp);
2281 gimple_set_location (stmt, loc);
2283 /* We cannot throw in the middle of a BB. If the call was going
2284 to throw, place the instrumentation on the fallthru edge, so
2285 the call remains the last statement in the block. */
2288 gimple_seq fallthru_seq = gimple_seq_alloc_with_stmt (stmt);
2289 gimple_stmt_iterator fallthru_gsi = gsi_start (fallthru_seq);
2290 expand_assign_tm (region, &fallthru_gsi);
2291 gsi_insert_seq_on_edge (fallthru_edge, fallthru_seq);
2292 pending_edge_inserts_p = true;
2296 gsi_insert_after (gsi, stmt, GSI_CONTINUE_LINKING);
2297 expand_assign_tm (region, gsi);
2300 transaction_subcode_ior (region, GTMA_HAVE_STORE);
2307 /* Expand all statements in BB as appropriate for being inside
2311 expand_block_tm (struct tm_region *region, basic_block bb)
2313 gimple_stmt_iterator gsi;
2315 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); )
2317 gimple stmt = gsi_stmt (gsi);
2318 switch (gimple_code (stmt))
2321 /* Only memory reads/writes need to be instrumented. */
2322 if (gimple_assign_single_p (stmt)
2323 && !gimple_clobber_p (stmt))
2325 expand_assign_tm (region, &gsi);
2331 if (expand_call_tm (region, &gsi))
2341 if (!gsi_end_p (gsi))
2346 /* Return the list of basic-blocks in REGION.
2348 STOP_AT_IRREVOCABLE_P is true if caller is uninterested in blocks
2349 following a TM_IRREVOCABLE call. */
2351 static VEC (basic_block, heap) *
2352 get_tm_region_blocks (basic_block entry_block,
2355 bitmap all_region_blocks,
2356 bool stop_at_irrevocable_p)
2358 VEC(basic_block, heap) *bbs = NULL;
2362 bitmap visited_blocks = BITMAP_ALLOC (NULL);
2365 VEC_safe_push (basic_block, heap, bbs, entry_block);
2366 bitmap_set_bit (visited_blocks, entry_block->index);
2370 basic_block bb = VEC_index (basic_block, bbs, i++);
2373 bitmap_bit_p (exit_blocks, bb->index))
2376 if (stop_at_irrevocable_p
2378 && bitmap_bit_p (irr_blocks, bb->index))
2381 FOR_EACH_EDGE (e, ei, bb->succs)
2382 if (!bitmap_bit_p (visited_blocks, e->dest->index))
2384 bitmap_set_bit (visited_blocks, e->dest->index);
2385 VEC_safe_push (basic_block, heap, bbs, e->dest);
2388 while (i < VEC_length (basic_block, bbs));
2390 if (all_region_blocks)
2391 bitmap_ior_into (all_region_blocks, visited_blocks);
2393 BITMAP_FREE (visited_blocks);
2397 /* Entry point to the MARK phase of TM expansion. Here we replace
2398 transactional memory statements with calls to builtins, and function
2399 calls with their transactional clones (if available). But we don't
2400 yet lower GIMPLE_TRANSACTION or add the transaction restart back-edges. */
2403 execute_tm_mark (void)
2405 struct tm_region *region;
2407 VEC (basic_block, heap) *queue;
2410 queue = VEC_alloc (basic_block, heap, 10);
2411 pending_edge_inserts_p = false;
2413 for (region = all_tm_regions; region ; region = region->next)
2416 /* If we have a transaction... */
2417 if (region->exit_blocks)
2419 unsigned int subcode
2420 = gimple_transaction_subcode (region->transaction_stmt);
2422 /* Collect a new SUBCODE set, now that optimizations are done... */
2423 if (subcode & GTMA_DOES_GO_IRREVOCABLE)
2424 subcode &= (GTMA_DECLARATION_MASK | GTMA_DOES_GO_IRREVOCABLE
2425 | GTMA_MAY_ENTER_IRREVOCABLE);
2427 subcode &= GTMA_DECLARATION_MASK;
2428 gimple_transaction_set_subcode (region->transaction_stmt, subcode);
2431 queue = get_tm_region_blocks (region->entry_block,
2432 region->exit_blocks,
2435 /*stop_at_irr_p=*/true);
2436 for (i = 0; VEC_iterate (basic_block, queue, i, bb); ++i)
2437 expand_block_tm (region, bb);
2438 VEC_free (basic_block, heap, queue);
2443 if (pending_edge_inserts_p)
2444 gsi_commit_edge_inserts ();
2448 struct gimple_opt_pass pass_tm_mark =
2452 "tmmark", /* name */
2454 execute_tm_mark, /* execute */
2457 0, /* static_pass_number */
2458 TV_TRANS_MEM, /* tv_id */
2459 PROP_ssa | PROP_cfg, /* properties_required */
2460 0, /* properties_provided */
2461 0, /* properties_destroyed */
2462 0, /* todo_flags_start */
2465 | TODO_dump_func, /* todo_flags_finish */
2469 /* Create an abnormal call edge from BB to the first block of the region
2470 represented by STATE. Also record the edge in the TM_RESTART map. */
2473 make_tm_edge (gimple stmt, basic_block bb, struct tm_region *region)
2476 struct tm_restart_node *n, dummy;
2478 if (cfun->gimple_df->tm_restart == NULL)
2479 cfun->gimple_df->tm_restart = htab_create_ggc (31, struct_ptr_hash,
2480 struct_ptr_eq, ggc_free);
2483 dummy.label_or_list = gimple_block_label (region->entry_block);
2484 slot = htab_find_slot (cfun->gimple_df->tm_restart, &dummy, INSERT);
2485 n = (struct tm_restart_node *) *slot;
2488 n = ggc_alloc_tm_restart_node ();
2493 tree old = n->label_or_list;
2494 if (TREE_CODE (old) == LABEL_DECL)
2495 old = tree_cons (NULL, old, NULL);
2496 n->label_or_list = tree_cons (NULL, dummy.label_or_list, old);
2499 make_edge (bb, region->entry_block, EDGE_ABNORMAL | EDGE_ABNORMAL_CALL);
2503 /* Split block BB as necessary for every builtin function we added, and
2504 wire up the abnormal back edges implied by the transaction restart. */
2507 expand_block_edges (struct tm_region *region, basic_block bb)
2509 gimple_stmt_iterator gsi;
2511 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); )
2513 gimple stmt = gsi_stmt (gsi);
2515 /* ??? TM_COMMIT (and any other tm builtin function) in a nested
2516 transaction has an abnormal edge back to the outer-most transaction
2517 (there are no nested retries), while a TM_ABORT also has an abnormal
2518 backedge to the inner-most transaction. We haven't actually saved
2519 the inner-most transaction here. We should be able to get to it
2520 via the region_nr saved on STMT, and read the transaction_stmt from
2521 that, and find the first region block from there. */
2522 /* ??? Shouldn't we split for any non-pure, non-irrevocable function? */
2523 if (gimple_code (stmt) == GIMPLE_CALL
2524 && (gimple_call_flags (stmt) & ECF_TM_BUILTIN) != 0)
2526 if (gsi_one_before_end_p (gsi))
2527 make_tm_edge (stmt, bb, region);
2530 edge e = split_block (bb, stmt);
2531 make_tm_edge (stmt, bb, region);
2533 gsi = gsi_start_bb (bb);
2536 /* Delete any tail-call annotation that may have been added.
2537 The tail-call pass may have mis-identified the commit as being
2538 a candidate because we had not yet added this restart edge. */
2539 gimple_call_set_tail (stmt, false);
2546 /* Expand the GIMPLE_TRANSACTION statement into the STM library call. */
2549 expand_transaction (struct tm_region *region)
2551 tree status, tm_start;
2552 basic_block atomic_bb, slice_bb;
2553 gimple_stmt_iterator gsi;
2558 tm_start = builtin_decl_explicit (BUILT_IN_TM_START);
2559 status = make_rename_temp (TREE_TYPE (TREE_TYPE (tm_start)), "tm_state");
2561 /* ??? There are plenty of bits here we're not computing. */
2562 subcode = gimple_transaction_subcode (region->transaction_stmt);
2563 if (subcode & GTMA_DOES_GO_IRREVOCABLE)
2564 flags = PR_DOESGOIRREVOCABLE | PR_UNINSTRUMENTEDCODE;
2566 flags = PR_INSTRUMENTEDCODE;
2567 if ((subcode & GTMA_MAY_ENTER_IRREVOCABLE) == 0)
2568 flags |= PR_HASNOIRREVOCABLE;
2569 /* If the transaction does not have an abort in lexical scope and is not
2570 marked as an outer transaction, then it will never abort. */
2571 if ((subcode & GTMA_HAVE_ABORT) == 0
2572 && (subcode & GTMA_IS_OUTER) == 0)
2573 flags |= PR_HASNOABORT;
2574 if ((subcode & GTMA_HAVE_STORE) == 0)
2575 flags |= PR_READONLY;
2576 t2 = build_int_cst (TREE_TYPE (status), flags);
2577 g = gimple_build_call (tm_start, 1, t2);
2578 gimple_call_set_lhs (g, status);
2579 gimple_set_location (g, gimple_location (region->transaction_stmt));
2581 atomic_bb = gimple_bb (region->transaction_stmt);
2583 if (!VEC_empty (tree, tm_log_save_addresses))
2584 tm_log_emit_saves (region->entry_block, atomic_bb);
2586 gsi = gsi_last_bb (atomic_bb);
2587 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
2588 gsi_remove (&gsi, true);
2590 if (!VEC_empty (tree, tm_log_save_addresses))
2591 region->entry_block =
2592 tm_log_emit_save_or_restores (region->entry_block,
2593 A_RESTORELIVEVARIABLES,
2595 tm_log_emit_restores,
2597 FALLTHRU_EDGE (atomic_bb),
2600 slice_bb = atomic_bb;
2602 /* If we have an ABORT statement, create a test following the start
2603 call to perform the abort. */
2604 if (gimple_transaction_label (region->transaction_stmt))
2607 basic_block test_bb;
2609 test_bb = create_empty_bb (slice_bb);
2610 if (VEC_empty (tree, tm_log_save_addresses))
2611 region->entry_block = test_bb;
2612 gsi = gsi_last_bb (test_bb);
2614 t1 = make_rename_temp (TREE_TYPE (status), NULL);
2615 t2 = build_int_cst (TREE_TYPE (status), A_ABORTTRANSACTION);
2616 g = gimple_build_assign_with_ops (BIT_AND_EXPR, t1, status, t2);
2617 gsi_insert_after (&gsi, g, GSI_CONTINUE_LINKING);
2619 t2 = build_int_cst (TREE_TYPE (status), 0);
2620 g = gimple_build_cond (NE_EXPR, t1, t2, NULL, NULL);
2621 gsi_insert_after (&gsi, g, GSI_CONTINUE_LINKING);
2623 e = FALLTHRU_EDGE (slice_bb);
2624 redirect_edge_pred (e, test_bb);
2625 e->flags = EDGE_FALSE_VALUE;
2626 e->probability = PROB_ALWAYS - PROB_VERY_UNLIKELY;
2628 e = BRANCH_EDGE (atomic_bb);
2629 redirect_edge_pred (e, test_bb);
2630 e->flags = EDGE_TRUE_VALUE;
2631 e->probability = PROB_VERY_UNLIKELY;
2633 e = make_edge (slice_bb, test_bb, EDGE_FALLTHRU);
2636 /* If we've no abort, but we do have PHIs at the beginning of the atomic
2637 region, that means we've a loop at the beginning of the atomic region
2638 that shares the first block. This can cause problems with the abnormal
2639 edges we're about to add for the transaction restart. Solve this by
2640 adding a new empty block to receive the abnormal edges. */
2641 else if (phi_nodes (region->entry_block))
2644 basic_block empty_bb;
2646 region->entry_block = empty_bb = create_empty_bb (atomic_bb);
2648 e = FALLTHRU_EDGE (atomic_bb);
2649 redirect_edge_pred (e, empty_bb);
2651 e = make_edge (atomic_bb, empty_bb, EDGE_FALLTHRU);
2654 /* The GIMPLE_TRANSACTION statement no longer exists. */
2655 region->transaction_stmt = NULL;
2658 static void expand_regions (struct tm_region *);
2660 /* Helper function for expand_regions. Expand REGION and recurse to
2661 the inner region. */
2664 expand_regions_1 (struct tm_region *region)
2666 if (region->exit_blocks)
2670 VEC (basic_block, heap) *queue;
2672 /* Collect the set of blocks in this region. Do this before
2673 splitting edges, so that we don't have to play with the
2674 dominator tree in the middle. */
2675 queue = get_tm_region_blocks (region->entry_block,
2676 region->exit_blocks,
2679 /*stop_at_irr_p=*/false);
2680 expand_transaction (region);
2681 for (i = 0; VEC_iterate (basic_block, queue, i, bb); ++i)
2682 expand_block_edges (region, bb);
2683 VEC_free (basic_block, heap, queue);
2686 expand_regions (region->inner);
2689 /* Expand regions starting at REGION. */
2692 expand_regions (struct tm_region *region)
2696 expand_regions_1 (region);
2697 region = region->next;
2701 /* Entry point to the final expansion of transactional nodes. */
2704 execute_tm_edges (void)
2706 expand_regions (all_tm_regions);
2709 /* We've got to release the dominance info now, to indicate that it
2710 must be rebuilt completely. Otherwise we'll crash trying to update
2711 the SSA web in the TODO section following this pass. */
2712 free_dominance_info (CDI_DOMINATORS);
2713 bitmap_obstack_release (&tm_obstack);
2714 all_tm_regions = NULL;
2719 struct gimple_opt_pass pass_tm_edges =
2723 "tmedge", /* name */
2725 execute_tm_edges, /* execute */
2728 0, /* static_pass_number */
2729 TV_TRANS_MEM, /* tv_id */
2730 PROP_ssa | PROP_cfg, /* properties_required */
2731 0, /* properties_provided */
2732 0, /* properties_destroyed */
2733 0, /* todo_flags_start */
2736 | TODO_dump_func, /* todo_flags_finish */
2740 /* A unique TM memory operation. */
2741 typedef struct tm_memop
2743 /* Unique ID that all memory operations to the same location have. */
2744 unsigned int value_id;
2745 /* Address of load/store. */
2749 /* Sets for solving data flow equations in the memory optimization pass. */
2750 struct tm_memopt_bitmaps
2752 /* Stores available to this BB upon entry. Basically, stores that
2753 dominate this BB. */
2754 bitmap store_avail_in;
2755 /* Stores available at the end of this BB. */
2756 bitmap store_avail_out;
2757 bitmap store_antic_in;
2758 bitmap store_antic_out;
2759 /* Reads available to this BB upon entry. Basically, reads that
2760 dominate this BB. */
2761 bitmap read_avail_in;
2762 /* Reads available at the end of this BB. */
2763 bitmap read_avail_out;
2764 /* Reads performed in this BB. */
2766 /* Writes performed in this BB. */
2769 /* Temporary storage for pass. */
2770 /* Is the current BB in the worklist? */
2771 bool avail_in_worklist_p;
2772 /* Have we visited this BB? */
2776 static bitmap_obstack tm_memopt_obstack;
2778 /* Unique counter for TM loads and stores. Loads and stores of the
2779 same address get the same ID. */
2780 static unsigned int tm_memopt_value_id;
2781 static htab_t tm_memopt_value_numbers;
2783 #define STORE_AVAIL_IN(BB) \
2784 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_avail_in
2785 #define STORE_AVAIL_OUT(BB) \
2786 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_avail_out
2787 #define STORE_ANTIC_IN(BB) \
2788 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_antic_in
2789 #define STORE_ANTIC_OUT(BB) \
2790 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_antic_out
2791 #define READ_AVAIL_IN(BB) \
2792 ((struct tm_memopt_bitmaps *) ((BB)->aux))->read_avail_in
2793 #define READ_AVAIL_OUT(BB) \
2794 ((struct tm_memopt_bitmaps *) ((BB)->aux))->read_avail_out
2795 #define READ_LOCAL(BB) \
2796 ((struct tm_memopt_bitmaps *) ((BB)->aux))->read_local
2797 #define STORE_LOCAL(BB) \
2798 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_local
2799 #define AVAIL_IN_WORKLIST_P(BB) \
2800 ((struct tm_memopt_bitmaps *) ((BB)->aux))->avail_in_worklist_p
2801 #define BB_VISITED_P(BB) \
2802 ((struct tm_memopt_bitmaps *) ((BB)->aux))->visited_p
2804 /* Htab support. Return a hash value for a `tm_memop'. */
2806 tm_memop_hash (const void *p)
2808 const struct tm_memop *mem = (const struct tm_memop *) p;
2809 tree addr = mem->addr;
2810 /* We drill down to the SSA_NAME/DECL for the hash, but equality is
2811 actually done with operand_equal_p (see tm_memop_eq). */
2812 if (TREE_CODE (addr) == ADDR_EXPR)
2813 addr = TREE_OPERAND (addr, 0);
2814 return iterative_hash_expr (addr, 0);
2817 /* Htab support. Return true if two tm_memop's are the same. */
2819 tm_memop_eq (const void *p1, const void *p2)
2821 const struct tm_memop *mem1 = (const struct tm_memop *) p1;
2822 const struct tm_memop *mem2 = (const struct tm_memop *) p2;
2824 return operand_equal_p (mem1->addr, mem2->addr, 0);
2827 /* Given a TM load/store in STMT, return the value number for the address
2831 tm_memopt_value_number (gimple stmt, enum insert_option op)
2833 struct tm_memop tmpmem, *mem;
2836 gcc_assert (is_tm_load (stmt) || is_tm_store (stmt));
2837 tmpmem.addr = gimple_call_arg (stmt, 0);
2838 slot = htab_find_slot (tm_memopt_value_numbers, &tmpmem, op);
2840 mem = (struct tm_memop *) *slot;
2841 else if (op == INSERT)
2843 mem = XNEW (struct tm_memop);
2845 mem->value_id = tm_memopt_value_id++;
2846 mem->addr = tmpmem.addr;
2850 return mem->value_id;
2853 /* Accumulate TM memory operations in BB into STORE_LOCAL and READ_LOCAL. */
2856 tm_memopt_accumulate_memops (basic_block bb)
2858 gimple_stmt_iterator gsi;
2860 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2862 gimple stmt = gsi_stmt (gsi);
2866 if (is_tm_store (stmt))
2867 bits = STORE_LOCAL (bb);
2868 else if (is_tm_load (stmt))
2869 bits = READ_LOCAL (bb);
2873 loc = tm_memopt_value_number (stmt, INSERT);
2874 bitmap_set_bit (bits, loc);
2877 fprintf (dump_file, "TM memopt (%s): value num=%d, BB=%d, addr=",
2878 is_tm_load (stmt) ? "LOAD" : "STORE", loc,
2879 gimple_bb (stmt)->index);
2880 print_generic_expr (dump_file, gimple_call_arg (stmt, 0), 0);
2881 fprintf (dump_file, "\n");
2886 /* Prettily dump one of the memopt sets. BITS is the bitmap to dump. */
2889 dump_tm_memopt_set (const char *set_name, bitmap bits)
2893 const char *comma = "";
2895 fprintf (dump_file, "TM memopt: %s: [", set_name);
2896 EXECUTE_IF_SET_IN_BITMAP (bits, 0, i, bi)
2899 struct tm_memop *mem;
2901 /* Yeah, yeah, yeah. Whatever. This is just for debugging. */
2902 FOR_EACH_HTAB_ELEMENT (tm_memopt_value_numbers, mem, tm_memop_t, hi)
2903 if (mem->value_id == i)
2905 gcc_assert (mem->value_id == i);
2906 fprintf (dump_file, "%s", comma);
2908 print_generic_expr (dump_file, mem->addr, 0);
2910 fprintf (dump_file, "]\n");
2913 /* Prettily dump all of the memopt sets in BLOCKS. */
2916 dump_tm_memopt_sets (VEC (basic_block, heap) *blocks)
2921 for (i = 0; VEC_iterate (basic_block, blocks, i, bb); ++i)
2923 fprintf (dump_file, "------------BB %d---------\n", bb->index);
2924 dump_tm_memopt_set ("STORE_LOCAL", STORE_LOCAL (bb));
2925 dump_tm_memopt_set ("READ_LOCAL", READ_LOCAL (bb));
2926 dump_tm_memopt_set ("STORE_AVAIL_IN", STORE_AVAIL_IN (bb));
2927 dump_tm_memopt_set ("STORE_AVAIL_OUT", STORE_AVAIL_OUT (bb));
2928 dump_tm_memopt_set ("READ_AVAIL_IN", READ_AVAIL_IN (bb));
2929 dump_tm_memopt_set ("READ_AVAIL_OUT", READ_AVAIL_OUT (bb));
2933 /* Compute {STORE,READ}_AVAIL_IN for the basic block BB. */
2936 tm_memopt_compute_avin (basic_block bb)
2941 /* Seed with the AVOUT of any predecessor. */
2942 for (ix = 0; ix < EDGE_COUNT (bb->preds); ix++)
2944 e = EDGE_PRED (bb, ix);
2945 /* Make sure we have already visited this BB, and is thus
2948 If e->src->aux is NULL, this predecessor is actually on an
2949 enclosing transaction. We only care about the current
2950 transaction, so ignore it. */
2951 if (e->src->aux && BB_VISITED_P (e->src))
2953 bitmap_copy (STORE_AVAIL_IN (bb), STORE_AVAIL_OUT (e->src));
2954 bitmap_copy (READ_AVAIL_IN (bb), READ_AVAIL_OUT (e->src));
2959 for (; ix < EDGE_COUNT (bb->preds); ix++)
2961 e = EDGE_PRED (bb, ix);
2962 if (e->src->aux && BB_VISITED_P (e->src))
2964 bitmap_and_into (STORE_AVAIL_IN (bb), STORE_AVAIL_OUT (e->src));
2965 bitmap_and_into (READ_AVAIL_IN (bb), READ_AVAIL_OUT (e->src));
2969 BB_VISITED_P (bb) = true;
2972 /* Compute the STORE_ANTIC_IN for the basic block BB. */
2975 tm_memopt_compute_antin (basic_block bb)
2980 /* Seed with the ANTIC_OUT of any successor. */
2981 for (ix = 0; ix < EDGE_COUNT (bb->succs); ix++)
2983 e = EDGE_SUCC (bb, ix);
2984 /* Make sure we have already visited this BB, and is thus
2986 if (BB_VISITED_P (e->dest))
2988 bitmap_copy (STORE_ANTIC_IN (bb), STORE_ANTIC_OUT (e->dest));
2993 for (; ix < EDGE_COUNT (bb->succs); ix++)
2995 e = EDGE_SUCC (bb, ix);
2996 if (BB_VISITED_P (e->dest))
2997 bitmap_and_into (STORE_ANTIC_IN (bb), STORE_ANTIC_OUT (e->dest));
3000 BB_VISITED_P (bb) = true;
3003 /* Compute the AVAIL sets for every basic block in BLOCKS.
3005 We compute {STORE,READ}_AVAIL_{OUT,IN} as follows:
3007 AVAIL_OUT[bb] = union (AVAIL_IN[bb], LOCAL[bb])
3008 AVAIL_IN[bb] = intersect (AVAIL_OUT[predecessors])
3010 This is basically what we do in lcm's compute_available(), but here
3011 we calculate two sets of sets (one for STOREs and one for READs),
3012 and we work on a region instead of the entire CFG.
3014 REGION is the TM region.
3015 BLOCKS are the basic blocks in the region. */
3018 tm_memopt_compute_available (struct tm_region *region,
3019 VEC (basic_block, heap) *blocks)
3022 basic_block *worklist, *qin, *qout, *qend, bb;
3023 unsigned int qlen, i;
3027 /* Allocate a worklist array/queue. Entries are only added to the
3028 list if they were not already on the list. So the size is
3029 bounded by the number of basic blocks in the region. */
3030 qlen = VEC_length (basic_block, blocks) - 1;
3031 qin = qout = worklist =
3032 XNEWVEC (basic_block, qlen);
3034 /* Put every block in the region on the worklist. */
3035 for (i = 0; VEC_iterate (basic_block, blocks, i, bb); ++i)
3037 /* Seed AVAIL_OUT with the LOCAL set. */
3038 bitmap_ior_into (STORE_AVAIL_OUT (bb), STORE_LOCAL (bb));
3039 bitmap_ior_into (READ_AVAIL_OUT (bb), READ_LOCAL (bb));
3041 AVAIL_IN_WORKLIST_P (bb) = true;
3042 /* No need to insert the entry block, since it has an AVIN of
3043 null, and an AVOUT that has already been seeded in. */
3044 if (bb != region->entry_block)
3048 /* The entry block has been initialized with the local sets. */
3049 BB_VISITED_P (region->entry_block) = true;
3052 qend = &worklist[qlen];
3054 /* Iterate until the worklist is empty. */
3057 /* Take the first entry off the worklist. */
3064 /* This block can be added to the worklist again if necessary. */
3065 AVAIL_IN_WORKLIST_P (bb) = false;
3066 tm_memopt_compute_avin (bb);
3068 /* Note: We do not add the LOCAL sets here because we already
3069 seeded the AVAIL_OUT sets with them. */
3070 changed = bitmap_ior_into (STORE_AVAIL_OUT (bb), STORE_AVAIL_IN (bb));
3071 changed |= bitmap_ior_into (READ_AVAIL_OUT (bb), READ_AVAIL_IN (bb));
3073 && (region->exit_blocks == NULL
3074 || !bitmap_bit_p (region->exit_blocks, bb->index)))
3075 /* If the out state of this block changed, then we need to add
3076 its successors to the worklist if they are not already in. */
3077 FOR_EACH_EDGE (e, ei, bb->succs)
3078 if (!AVAIL_IN_WORKLIST_P (e->dest) && e->dest != EXIT_BLOCK_PTR)
3081 AVAIL_IN_WORKLIST_P (e->dest) = true;
3092 dump_tm_memopt_sets (blocks);
3095 /* Compute ANTIC sets for every basic block in BLOCKS.
3097 We compute STORE_ANTIC_OUT as follows:
3099 STORE_ANTIC_OUT[bb] = union(STORE_ANTIC_IN[bb], STORE_LOCAL[bb])
3100 STORE_ANTIC_IN[bb] = intersect(STORE_ANTIC_OUT[successors])
3102 REGION is the TM region.
3103 BLOCKS are the basic blocks in the region. */
3106 tm_memopt_compute_antic (struct tm_region *region,
3107 VEC (basic_block, heap) *blocks)
3110 basic_block *worklist, *qin, *qout, *qend, bb;
3115 /* Allocate a worklist array/queue. Entries are only added to the
3116 list if they were not already on the list. So the size is
3117 bounded by the number of basic blocks in the region. */
3118 qin = qout = worklist =
3119 XNEWVEC (basic_block, VEC_length (basic_block, blocks));
3121 for (qlen = 0, i = VEC_length (basic_block, blocks) - 1; i >= 0; --i)
3123 bb = VEC_index (basic_block, blocks, i);
3125 /* Seed ANTIC_OUT with the LOCAL set. */
3126 bitmap_ior_into (STORE_ANTIC_OUT (bb), STORE_LOCAL (bb));
3128 /* Put every block in the region on the worklist. */
3129 AVAIL_IN_WORKLIST_P (bb) = true;
3130 /* No need to insert exit blocks, since their ANTIC_IN is NULL,
3131 and their ANTIC_OUT has already been seeded in. */
3132 if (region->exit_blocks
3133 && !bitmap_bit_p (region->exit_blocks, bb->index))
3140 /* The exit blocks have been initialized with the local sets. */
3141 if (region->exit_blocks)
3145 EXECUTE_IF_SET_IN_BITMAP (region->exit_blocks, 0, i, bi)
3146 BB_VISITED_P (BASIC_BLOCK (i)) = true;
3150 qend = &worklist[qlen];
3152 /* Iterate until the worklist is empty. */
3155 /* Take the first entry off the worklist. */
3162 /* This block can be added to the worklist again if necessary. */
3163 AVAIL_IN_WORKLIST_P (bb) = false;
3164 tm_memopt_compute_antin (bb);
3166 /* Note: We do not add the LOCAL sets here because we already
3167 seeded the ANTIC_OUT sets with them. */
3168 if (bitmap_ior_into (STORE_ANTIC_OUT (bb), STORE_ANTIC_IN (bb))
3169 && bb != region->entry_block)
3170 /* If the out state of this block changed, then we need to add
3171 its predecessors to the worklist if they are not already in. */
3172 FOR_EACH_EDGE (e, ei, bb->preds)
3173 if (!AVAIL_IN_WORKLIST_P (e->src))
3176 AVAIL_IN_WORKLIST_P (e->src) = true;
3187 dump_tm_memopt_sets (blocks);
3190 /* Offsets of load variants from TM_LOAD. For example,
3191 BUILT_IN_TM_LOAD_RAR* is an offset of 1 from BUILT_IN_TM_LOAD*.
3192 See gtm-builtins.def. */
3193 #define TRANSFORM_RAR 1
3194 #define TRANSFORM_RAW 2
3195 #define TRANSFORM_RFW 3
3196 /* Offsets of store variants from TM_STORE. */
3197 #define TRANSFORM_WAR 1
3198 #define TRANSFORM_WAW 2
3200 /* Inform about a load/store optimization. */
3203 dump_tm_memopt_transform (gimple stmt)
3207 fprintf (dump_file, "TM memopt: transforming: ");
3208 print_gimple_stmt (dump_file, stmt, 0, 0);
3209 fprintf (dump_file, "\n");
3213 /* Perform a read/write optimization. Replaces the TM builtin in STMT
3214 by a builtin that is OFFSET entries down in the builtins table in
3215 gtm-builtins.def. */
3218 tm_memopt_transform_stmt (unsigned int offset,
3220 gimple_stmt_iterator *gsi)
3222 tree fn = gimple_call_fn (stmt);
3223 gcc_assert (TREE_CODE (fn) == ADDR_EXPR);
3224 TREE_OPERAND (fn, 0)
3225 = builtin_decl_explicit ((enum built_in_function)
3226 (DECL_FUNCTION_CODE (TREE_OPERAND (fn, 0))
3228 gimple_call_set_fn (stmt, fn);
3229 gsi_replace (gsi, stmt, true);
3230 dump_tm_memopt_transform (stmt);
3233 /* Perform the actual TM memory optimization transformations in the
3234 basic blocks in BLOCKS. */
3237 tm_memopt_transform_blocks (VEC (basic_block, heap) *blocks)
3241 gimple_stmt_iterator gsi;
3243 for (i = 0; VEC_iterate (basic_block, blocks, i, bb); ++i)
3245 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3247 gimple stmt = gsi_stmt (gsi);
3248 bitmap read_avail = READ_AVAIL_IN (bb);
3249 bitmap store_avail = STORE_AVAIL_IN (bb);
3250 bitmap store_antic = STORE_ANTIC_OUT (bb);
3253 if (is_tm_simple_load (stmt))
3255 loc = tm_memopt_value_number (stmt, NO_INSERT);
3256 if (store_avail && bitmap_bit_p (store_avail, loc))
3257 tm_memopt_transform_stmt (TRANSFORM_RAW, stmt, &gsi);
3258 else if (store_antic && bitmap_bit_p (store_antic, loc))
3260 tm_memopt_transform_stmt (TRANSFORM_RFW, stmt, &gsi);
3261 bitmap_set_bit (store_avail, loc);
3263 else if (read_avail && bitmap_bit_p (read_avail, loc))
3264 tm_memopt_transform_stmt (TRANSFORM_RAR, stmt, &gsi);
3266 bitmap_set_bit (read_avail, loc);
3268 else if (is_tm_simple_store (stmt))
3270 loc = tm_memopt_value_number (stmt, NO_INSERT);
3271 if (store_avail && bitmap_bit_p (store_avail, loc))
3272 tm_memopt_transform_stmt (TRANSFORM_WAW, stmt, &gsi);
3275 if (read_avail && bitmap_bit_p (read_avail, loc))
3276 tm_memopt_transform_stmt (TRANSFORM_WAR, stmt, &gsi);
3277 bitmap_set_bit (store_avail, loc);
3284 /* Return a new set of bitmaps for a BB. */
3286 static struct tm_memopt_bitmaps *
3287 tm_memopt_init_sets (void)
3289 struct tm_memopt_bitmaps *b
3290 = XOBNEW (&tm_memopt_obstack.obstack, struct tm_memopt_bitmaps);
3291 b->store_avail_in = BITMAP_ALLOC (&tm_memopt_obstack);
3292 b->store_avail_out = BITMAP_ALLOC (&tm_memopt_obstack);
3293 b->store_antic_in = BITMAP_ALLOC (&tm_memopt_obstack);
3294 b->store_antic_out = BITMAP_ALLOC (&tm_memopt_obstack);
3295 b->store_avail_out = BITMAP_ALLOC (&tm_memopt_obstack);
3296 b->read_avail_in = BITMAP_ALLOC (&tm_memopt_obstack);
3297 b->read_avail_out = BITMAP_ALLOC (&tm_memopt_obstack);
3298 b->read_local = BITMAP_ALLOC (&tm_memopt_obstack);
3299 b->store_local = BITMAP_ALLOC (&tm_memopt_obstack);
3303 /* Free sets computed for each BB. */
3306 tm_memopt_free_sets (VEC (basic_block, heap) *blocks)
3311 for (i = 0; VEC_iterate (basic_block, blocks, i, bb); ++i)
3315 /* Clear the visited bit for every basic block in BLOCKS. */
3318 tm_memopt_clear_visited (VEC (basic_block, heap) *blocks)
3323 for (i = 0; VEC_iterate (basic_block, blocks, i, bb); ++i)
3324 BB_VISITED_P (bb) = false;
3327 /* Replace TM load/stores with hints for the runtime. We handle
3328 things like read-after-write, write-after-read, read-after-read,
3329 read-for-write, etc. */
3332 execute_tm_memopt (void)
3334 struct tm_region *region;
3335 VEC (basic_block, heap) *bbs;
3337 tm_memopt_value_id = 0;
3338 tm_memopt_value_numbers = htab_create (10, tm_memop_hash, tm_memop_eq, free);
3340 for (region = all_tm_regions; region; region = region->next)
3342 /* All the TM stores/loads in the current region. */
3346 bitmap_obstack_initialize (&tm_memopt_obstack);
3348 /* Save all BBs for the current region. */
3349 bbs = get_tm_region_blocks (region->entry_block,
3350 region->exit_blocks,
3355 /* Collect all the memory operations. */
3356 for (i = 0; VEC_iterate (basic_block, bbs, i, bb); ++i)
3358 bb->aux = tm_memopt_init_sets ();
3359 tm_memopt_accumulate_memops (bb);
3362 /* Solve data flow equations and transform each block accordingly. */
3363 tm_memopt_clear_visited (bbs);
3364 tm_memopt_compute_available (region, bbs);
3365 tm_memopt_clear_visited (bbs);
3366 tm_memopt_compute_antic (region, bbs);
3367 tm_memopt_transform_blocks (bbs);
3369 tm_memopt_free_sets (bbs);
3370 VEC_free (basic_block, heap, bbs);
3371 bitmap_obstack_release (&tm_memopt_obstack);
3372 htab_empty (tm_memopt_value_numbers);
3375 htab_delete (tm_memopt_value_numbers);
3380 gate_tm_memopt (void)
3382 return flag_tm && optimize > 0;
3385 struct gimple_opt_pass pass_tm_memopt =
3389 "tmmemopt", /* name */
3390 gate_tm_memopt, /* gate */
3391 execute_tm_memopt, /* execute */
3394 0, /* static_pass_number */
3395 TV_TRANS_MEM, /* tv_id */
3396 PROP_ssa | PROP_cfg, /* properties_required */
3397 0, /* properties_provided */
3398 0, /* properties_destroyed */
3399 0, /* todo_flags_start */
3400 TODO_dump_func, /* todo_flags_finish */
3405 /* Interprocedual analysis for the creation of transactional clones.
3406 The aim of this pass is to find which functions are referenced in
3407 a non-irrevocable transaction context, and for those over which
3408 we have control (or user directive), create a version of the
3409 function which uses only the transactional interface to reference
3410 protected memories. This analysis proceeds in several steps:
3412 (1) Collect the set of all possible transactional clones:
3414 (a) For all local public functions marked tm_callable, push
3415 it onto the tm_callee queue.
3417 (b) For all local functions, scan for calls in transaction blocks.
3418 Push the caller and callee onto the tm_caller and tm_callee
3419 queues. Count the number of callers for each callee.
3421 (c) For each local function on the callee list, assume we will
3422 create a transactional clone. Push *all* calls onto the
3423 callee queues; count the number of clone callers separately
3424 to the number of original callers.
3426 (2) Propagate irrevocable status up the dominator tree:
3428 (a) Any external function on the callee list that is not marked
3429 tm_callable is irrevocable. Push all callers of such onto
3432 (b) For each function on the worklist, mark each block that
3433 contains an irrevocable call. Use the AND operator to
3434 propagate that mark up the dominator tree.
3436 (c) If we reach the entry block for a possible transactional
3437 clone, then the transactional clone is irrevocable, and
3438 we should not create the clone after all. Push all
3439 callers onto the worklist.
3441 (d) Place tm_irrevocable calls at the beginning of the relevant
3442 blocks. Special case here is the entry block for the entire
3443 transaction region; there we mark it GTMA_DOES_GO_IRREVOCABLE for
3444 the library to begin the region in serial mode. Decrement
3445 the call count for all callees in the irrevocable region.
3447 (3) Create the transactional clones:
3449 Any tm_callee that still has a non-zero call count is cloned.
3452 /* This structure is stored in the AUX field of each cgraph_node. */
3453 struct tm_ipa_cg_data
3455 /* The clone of the function that got created. */
3456 struct cgraph_node *clone;
3458 /* The tm regions in the normal function. */
3459 struct tm_region *all_tm_regions;
3461 /* The blocks of the normal/clone functions that contain irrevocable
3462 calls, or blocks that are post-dominated by irrevocable calls. */
3463 bitmap irrevocable_blocks_normal;
3464 bitmap irrevocable_blocks_clone;
3466 /* The blocks of the normal function that are involved in transactions. */
3467 bitmap transaction_blocks_normal;
3469 /* The number of callers to the transactional clone of this function
3470 from normal and transactional clones respectively. */
3471 unsigned tm_callers_normal;
3472 unsigned tm_callers_clone;
3474 /* True if all calls to this function's transactional clone
3475 are irrevocable. Also automatically true if the function
3476 has no transactional clone. */
3477 bool is_irrevocable;
3479 /* Flags indicating the presence of this function in various queues. */
3480 bool in_callee_queue;
3483 /* Flags indicating the kind of scan desired while in the worklist. */
3484 bool want_irr_scan_normal;
3487 typedef struct cgraph_node *cgraph_node_p;
3489 DEF_VEC_P (cgraph_node_p);
3490 DEF_VEC_ALLOC_P (cgraph_node_p, heap);
3492 typedef VEC (cgraph_node_p, heap) *cgraph_node_queue;
3494 /* Return the ipa data associated with NODE, allocating zeroed memory
3497 static struct tm_ipa_cg_data *
3498 get_cg_data (struct cgraph_node *node)
3500 struct tm_ipa_cg_data *d = (struct tm_ipa_cg_data *) node->aux;
3504 d = (struct tm_ipa_cg_data *)
3505 obstack_alloc (&tm_obstack.obstack, sizeof (*d));
3506 node->aux = (void *) d;
3507 memset (d, 0, sizeof (*d));
3513 /* Add NODE to the end of QUEUE, unless IN_QUEUE_P indicates that
3514 it is already present. */
3517 maybe_push_queue (struct cgraph_node *node,
3518 cgraph_node_queue *queue_p, bool *in_queue_p)
3523 VEC_safe_push (cgraph_node_p, heap, *queue_p, node);
3527 /* A subroutine of ipa_tm_scan_calls_transaction and ipa_tm_scan_calls_clone.
3528 Queue all callees within block BB. */
3531 ipa_tm_scan_calls_block (cgraph_node_queue *callees_p,
3532 basic_block bb, bool for_clone)
3534 gimple_stmt_iterator gsi;
3536 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3538 gimple stmt = gsi_stmt (gsi);
3539 if (is_gimple_call (stmt) && !is_tm_pure_call (stmt))
3541 tree fndecl = gimple_call_fndecl (stmt);
3544 struct tm_ipa_cg_data *d;
3546 struct cgraph_node *node;
3548 if (is_tm_ending_fndecl (fndecl))
3550 if (find_tm_replacement_function (fndecl))
3553 node = cgraph_get_node (fndecl);
3554 gcc_assert (node != NULL);
3555 d = get_cg_data (node);
3557 pcallers = (for_clone ? &d->tm_callers_clone
3558 : &d->tm_callers_normal);
3561 maybe_push_queue (node, callees_p, &d->in_callee_queue);
3567 /* Scan all calls in NODE that are within a transaction region,
3568 and push the resulting nodes into the callee queue. */
3571 ipa_tm_scan_calls_transaction (struct tm_ipa_cg_data *d,
3572 cgraph_node_queue *callees_p)
3574 struct tm_region *r;
3576 d->transaction_blocks_normal = BITMAP_ALLOC (&tm_obstack);
3577 d->all_tm_regions = all_tm_regions;
3579 for (r = all_tm_regions; r; r = r->next)
3581 VEC (basic_block, heap) *bbs;
3585 bbs = get_tm_region_blocks (r->entry_block, r->exit_blocks, NULL,
3586 d->transaction_blocks_normal, false);
3588 FOR_EACH_VEC_ELT (basic_block, bbs, i, bb)
3589 ipa_tm_scan_calls_block (callees_p, bb, false);
3591 VEC_free (basic_block, heap, bbs);
3595 /* Scan all calls in NODE as if this is the transactional clone,
3596 and push the destinations into the callee queue. */
3599 ipa_tm_scan_calls_clone (struct cgraph_node *node,
3600 cgraph_node_queue *callees_p)
3602 struct function *fn = DECL_STRUCT_FUNCTION (node->decl);
3605 FOR_EACH_BB_FN (bb, fn)
3606 ipa_tm_scan_calls_block (callees_p, bb, true);
3609 /* The function NODE has been detected to be irrevocable. Push all
3610 of its callers onto WORKLIST for the purpose of re-scanning them. */
3613 ipa_tm_note_irrevocable (struct cgraph_node *node,
3614 cgraph_node_queue *worklist_p)
3616 struct tm_ipa_cg_data *d = get_cg_data (node);
3617 struct cgraph_edge *e;
3619 d->is_irrevocable = true;
3621 for (e = node->callers; e ; e = e->next_caller)
3625 /* Don't examine recursive calls. */
3626 if (e->caller == node)
3628 /* Even if we think we can go irrevocable, believe the user
3630 if (is_tm_safe_or_pure (e->caller->decl))
3633 d = get_cg_data (e->caller);
3635 /* Check if the callee is in a transactional region. If so,
3636 schedule the function for normal re-scan as well. */
3637 bb = gimple_bb (e->call_stmt);
3638 gcc_assert (bb != NULL);
3639 if (d->transaction_blocks_normal
3640 && bitmap_bit_p (d->transaction_blocks_normal, bb->index))
3641 d->want_irr_scan_normal = true;
3643 maybe_push_queue (e->caller, worklist_p, &d->in_worklist);
3647 /* A subroutine of ipa_tm_scan_irr_blocks; return true iff any statement
3648 within the block is irrevocable. */
3651 ipa_tm_scan_irr_block (basic_block bb)
3653 gimple_stmt_iterator gsi;
3656 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3658 gimple stmt = gsi_stmt (gsi);
3659 switch (gimple_code (stmt))
3662 if (is_tm_pure_call (stmt))
3665 fn = gimple_call_fn (stmt);
3667 /* Functions with the attribute are by definition irrevocable. */
3668 if (is_tm_irrevocable (fn))
3671 /* For direct function calls, go ahead and check for replacement
3672 functions, or transitive irrevocable functions. For indirect
3673 functions, we'll ask the runtime. */
3674 if (TREE_CODE (fn) == ADDR_EXPR)
3676 struct tm_ipa_cg_data *d;
3678 fn = TREE_OPERAND (fn, 0);
3679 if (is_tm_ending_fndecl (fn))
3681 if (find_tm_replacement_function (fn))
3684 d = get_cg_data (cgraph_get_node (fn));
3686 /* Return true if irrevocable, but above all, believe
3688 if (d->is_irrevocable
3689 && !is_tm_safe_or_pure (fn))
3695 /* ??? The Approved Method of indicating that an inline
3696 assembly statement is not relevant to the transaction
3697 is to wrap it in a __tm_waiver block. This is not
3698 yet implemented, so we can't check for it. */
3709 /* For each of the blocks seeded witin PQUEUE, walk the CFG looking
3710 for new irrevocable blocks, marking them in NEW_IRR. Don't bother
3711 scanning past OLD_IRR or EXIT_BLOCKS. */
3714 ipa_tm_scan_irr_blocks (VEC (basic_block, heap) **pqueue, bitmap new_irr,
3715 bitmap old_irr, bitmap exit_blocks)
3717 bool any_new_irr = false;
3720 bitmap visited_blocks = BITMAP_ALLOC (NULL);
3724 basic_block bb = VEC_pop (basic_block, *pqueue);
3726 /* Don't re-scan blocks we know already are irrevocable. */
3727 if (old_irr && bitmap_bit_p (old_irr, bb->index))
3730 if (ipa_tm_scan_irr_block (bb))
3732 bitmap_set_bit (new_irr, bb->index);
3735 else if (exit_blocks == NULL || !bitmap_bit_p (exit_blocks, bb->index))
3737 FOR_EACH_EDGE (e, ei, bb->succs)
3738 if (!bitmap_bit_p (visited_blocks, e->dest->index))
3740 bitmap_set_bit (visited_blocks, e->dest->index);
3741 VEC_safe_push (basic_block, heap, *pqueue, e->dest);
3745 while (!VEC_empty (basic_block, *pqueue));
3747 BITMAP_FREE (visited_blocks);
3752 /* Propagate the irrevocable property both up and down the dominator tree.
3753 BB is the current block being scanned; EXIT_BLOCKS are the edges of the
3754 TM regions; OLD_IRR are the results of a previous scan of the dominator
3755 tree which has been fully propagated; NEW_IRR is the set of new blocks
3756 which are gaining the irrevocable property during the current scan. */
3759 ipa_tm_propagate_irr (basic_block entry_block, bitmap new_irr,
3760 bitmap old_irr, bitmap exit_blocks)
3762 VEC (basic_block, heap) *bbs;
3763 bitmap all_region_blocks;
3765 /* If this block is in the old set, no need to rescan. */
3766 if (old_irr && bitmap_bit_p (old_irr, entry_block->index))
3769 all_region_blocks = BITMAP_ALLOC (&tm_obstack);
3770 bbs = get_tm_region_blocks (entry_block, exit_blocks, NULL,
3771 all_region_blocks, false);
3774 basic_block bb = VEC_pop (basic_block, bbs);
3775 bool this_irr = bitmap_bit_p (new_irr, bb->index);
3776 bool all_son_irr = false;
3780 /* Propagate up. If my children are, I am too, but we must have
3781 at least one child that is. */
3784 FOR_EACH_EDGE (e, ei, bb->succs)
3786 if (!bitmap_bit_p (new_irr, e->dest->index))
3788 all_son_irr = false;
3796 /* Add block to new_irr if it hasn't already been processed. */
3797 if (!old_irr || !bitmap_bit_p (old_irr, bb->index))
3799 bitmap_set_bit (new_irr, bb->index);
3805 /* Propagate down to everyone we immediately dominate. */
3809 for (son = first_dom_son (CDI_DOMINATORS, bb);
3811 son = next_dom_son (CDI_DOMINATORS, son))
3813 /* Make sure block is actually in a TM region, and it
3814 isn't already in old_irr. */
3815 if ((!old_irr || !bitmap_bit_p (old_irr, son->index))
3816 && bitmap_bit_p (all_region_blocks, son->index))
3817 bitmap_set_bit (new_irr, son->index);
3821 while (!VEC_empty (basic_block, bbs));
3823 BITMAP_FREE (all_region_blocks);
3824 VEC_free (basic_block, heap, bbs);
3828 ipa_tm_decrement_clone_counts (basic_block bb, bool for_clone)
3830 gimple_stmt_iterator gsi;
3832 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3834 gimple stmt = gsi_stmt (gsi);
3835 if (is_gimple_call (stmt) && !is_tm_pure_call (stmt))
3837 tree fndecl = gimple_call_fndecl (stmt);
3840 struct tm_ipa_cg_data *d;
3843 if (is_tm_ending_fndecl (fndecl))
3845 if (find_tm_replacement_function (fndecl))
3848 d = get_cg_data (cgraph_get_node (fndecl));
3849 pcallers = (for_clone ? &d->tm_callers_clone
3850 : &d->tm_callers_normal);
3852 gcc_assert (*pcallers > 0);
3859 /* (Re-)Scan the transaction blocks in NODE for calls to irrevocable functions,
3860 as well as other irrevocable actions such as inline assembly. Mark all
3861 such blocks as irrevocable and decrement the number of calls to
3862 transactional clones. Return true if, for the transactional clone, the
3863 entire function is irrevocable. */
3866 ipa_tm_scan_irr_function (struct cgraph_node *node, bool for_clone)
3868 struct tm_ipa_cg_data *d;
3869 bitmap new_irr, old_irr;
3870 VEC (basic_block, heap) *queue;
3873 /* Builtin operators (operator new, and such). */
3874 if (DECL_STRUCT_FUNCTION (node->decl) == NULL
3875 || DECL_STRUCT_FUNCTION (node->decl)->cfg == NULL)
3878 current_function_decl = node->decl;
3879 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
3880 calculate_dominance_info (CDI_DOMINATORS);
3882 d = get_cg_data (node);
3883 queue = VEC_alloc (basic_block, heap, 10);
3884 new_irr = BITMAP_ALLOC (&tm_obstack);
3886 /* Scan each tm region, propagating irrevocable status through the tree. */
3889 old_irr = d->irrevocable_blocks_clone;
3890 VEC_quick_push (basic_block, queue, single_succ (ENTRY_BLOCK_PTR));
3891 if (ipa_tm_scan_irr_blocks (&queue, new_irr, old_irr, NULL))
3893 ipa_tm_propagate_irr (single_succ (ENTRY_BLOCK_PTR), new_irr,
3895 ret = bitmap_bit_p (new_irr, single_succ (ENTRY_BLOCK_PTR)->index);
3900 struct tm_region *region;
3902 old_irr = d->irrevocable_blocks_normal;
3903 for (region = d->all_tm_regions; region; region = region->next)
3905 VEC_quick_push (basic_block, queue, region->entry_block);
3906 if (ipa_tm_scan_irr_blocks (&queue, new_irr, old_irr,
3907 region->exit_blocks))
3908 ipa_tm_propagate_irr (region->entry_block, new_irr, old_irr,
3909 region->exit_blocks);
3913 /* If we found any new irrevocable blocks, reduce the call count for
3914 transactional clones within the irrevocable blocks. Save the new
3915 set of irrevocable blocks for next time. */
3916 if (!bitmap_empty_p (new_irr))
3918 bitmap_iterator bmi;
3921 EXECUTE_IF_SET_IN_BITMAP (new_irr, 0, i, bmi)
3922 ipa_tm_decrement_clone_counts (BASIC_BLOCK (i), for_clone);
3926 bitmap_ior_into (old_irr, new_irr);
3927 BITMAP_FREE (new_irr);
3930 d->irrevocable_blocks_clone = new_irr;
3932 d->irrevocable_blocks_normal = new_irr;
3934 if (dump_file && new_irr)
3937 bitmap_iterator bmi;
3940 dname = lang_hooks.decl_printable_name (current_function_decl, 2);
3941 EXECUTE_IF_SET_IN_BITMAP (new_irr, 0, i, bmi)
3942 fprintf (dump_file, "%s: bb %d goes irrevocable\n", dname, i);
3946 BITMAP_FREE (new_irr);
3948 VEC_free (basic_block, heap, queue);
3950 current_function_decl = NULL;
3955 /* Return true if, for the transactional clone of NODE, any call
3956 may enter irrevocable mode. */
3959 ipa_tm_mayenterirr_function (struct cgraph_node *node)
3961 struct tm_ipa_cg_data *d = get_cg_data (node);
3962 tree decl = node->decl;
3963 unsigned flags = flags_from_decl_or_type (decl);
3965 /* Handle some TM builtins. Ordinarily these aren't actually generated
3966 at this point, but handling these functions when written in by the
3967 user makes it easier to build unit tests. */
3968 if (flags & ECF_TM_BUILTIN)
3971 /* Filter out all functions that are marked. */
3972 if (flags & ECF_TM_PURE)
3974 if (is_tm_safe (decl))
3976 if (is_tm_irrevocable (decl))
3978 if (is_tm_callable (decl))
3980 if (find_tm_replacement_function (decl))
3983 /* If we aren't seeing the final version of the function we don't
3984 know what it will contain at runtime. */
3985 if (cgraph_function_body_availability (node) < AVAIL_AVAILABLE)
3988 /* If the function must go irrevocable, then of course true. */
3989 if (d->is_irrevocable)
3992 /* If there are any blocks marked irrevocable, then the function
3993 as a whole may enter irrevocable. */
3994 if (d->irrevocable_blocks_clone)
3997 /* We may have previously marked this function as tm_may_enter_irr;
3998 see pass_diagnose_tm_blocks. */
3999 if (node->local.tm_may_enter_irr)
4002 /* Recurse on the main body for aliases. In general, this will
4003 result in one of the bits above being set so that we will not
4004 have to recurse next time. */
4006 return ipa_tm_mayenterirr_function (cgraph_get_node (node->thunk.alias));
4008 /* What remains is unmarked local functions without items that force
4009 the function to go irrevocable. */
4013 /* Diagnose calls from transaction_safe functions to unmarked
4014 functions that are determined to not be safe. */
4017 ipa_tm_diagnose_tm_safe (struct cgraph_node *node)
4019 struct cgraph_edge *e;
4021 for (e = node->callees; e ; e = e->next_callee)
4022 if (!is_tm_callable (e->callee->decl)
4023 && e->callee->local.tm_may_enter_irr)
4024 error_at (gimple_location (e->call_stmt),
4025 "unsafe function call %qD within "
4026 "%<transaction_safe%> function", e->callee->decl);
4029 /* Diagnose call from atomic transactions to unmarked functions
4030 that are determined to not be safe. */
4033 ipa_tm_diagnose_transaction (struct cgraph_node *node,
4034 struct tm_region *all_tm_regions)
4036 struct tm_region *r;
4038 for (r = all_tm_regions; r ; r = r->next)
4039 if (gimple_transaction_subcode (r->transaction_stmt) & GTMA_IS_RELAXED)
4041 /* Atomic transactions can be nested inside relaxed. */
4043 ipa_tm_diagnose_transaction (node, r->inner);
4047 VEC (basic_block, heap) *bbs;
4048 gimple_stmt_iterator gsi;
4052 bbs = get_tm_region_blocks (r->entry_block, r->exit_blocks,
4053 r->irr_blocks, NULL, false);
4055 for (i = 0; VEC_iterate (basic_block, bbs, i, bb); ++i)
4056 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4058 gimple stmt = gsi_stmt (gsi);
4061 if (gimple_code (stmt) == GIMPLE_ASM)
4063 error_at (gimple_location (stmt),
4064 "asm not allowed in atomic transaction");
4068 if (!is_gimple_call (stmt))
4070 fndecl = gimple_call_fndecl (stmt);
4072 /* Indirect function calls have been diagnosed already. */
4076 /* Stop at the end of the transaction. */
4077 if (is_tm_ending_fndecl (fndecl))
4079 if (bitmap_bit_p (r->exit_blocks, bb->index))
4084 /* Marked functions have been diagnosed already. */
4085 if (is_tm_pure_call (stmt))
4087 if (is_tm_callable (fndecl))
4090 if (cgraph_local_info (fndecl)->tm_may_enter_irr)
4091 error_at (gimple_location (stmt),
4092 "unsafe function call %qD within "
4093 "atomic transaction", fndecl);
4096 VEC_free (basic_block, heap, bbs);
4100 /* Return a transactional mangled name for the DECL_ASSEMBLER_NAME in
4101 OLD_DECL. The returned value is a freshly malloced pointer that
4102 should be freed by the caller. */
4105 tm_mangle (tree old_asm_id)
4107 const char *old_asm_name;
4110 struct demangle_component *dc;
4113 /* Determine if the symbol is already a valid C++ mangled name. Do this
4114 even for C, which might be interfacing with C++ code via appropriately
4115 ugly identifiers. */
4116 /* ??? We could probably do just as well checking for "_Z" and be done. */
4117 old_asm_name = IDENTIFIER_POINTER (old_asm_id);
4118 dc = cplus_demangle_v3_components (old_asm_name, DMGL_NO_OPTS, &alloc);
4125 sprintf (length, "%u", IDENTIFIER_LENGTH (old_asm_id));
4126 tm_name = concat ("_ZGTt", length, old_asm_name, NULL);
4130 old_asm_name += 2; /* Skip _Z */
4134 case DEMANGLE_COMPONENT_TRANSACTION_CLONE:
4135 case DEMANGLE_COMPONENT_NONTRANSACTION_CLONE:
4136 /* Don't play silly games, you! */
4139 case DEMANGLE_COMPONENT_HIDDEN_ALIAS:
4140 /* I'd really like to know if we can ever be passed one of
4141 these from the C++ front end. The Logical Thing would
4142 seem that hidden-alias should be outer-most, so that we
4143 get hidden-alias of a transaction-clone and not vice-versa. */
4151 tm_name = concat ("_ZGTt", old_asm_name, NULL);
4155 new_asm_id = get_identifier (tm_name);
4162 ipa_tm_mark_needed_node (struct cgraph_node *node)
4164 cgraph_mark_needed_node (node);
4165 /* ??? function_and_variable_visibility will reset
4166 the needed bit, without actually checking. */
4170 /* Callback data for ipa_tm_create_version_alias. */
4171 struct create_version_alias_info
4173 struct cgraph_node *old_node;
4177 /* A subrontine of ipa_tm_create_version, called via
4178 cgraph_for_node_and_aliases. Create new tm clones for each of
4179 the existing aliases. */
4181 ipa_tm_create_version_alias (struct cgraph_node *node, void *data)
4183 struct create_version_alias_info *info
4184 = (struct create_version_alias_info *)data;
4185 tree old_decl, new_decl, tm_name;
4186 struct cgraph_node *new_node;
4188 if (!node->same_body_alias)
4191 old_decl = node->decl;
4192 tm_name = tm_mangle (DECL_ASSEMBLER_NAME (old_decl));
4193 new_decl = build_decl (DECL_SOURCE_LOCATION (old_decl),
4194 TREE_CODE (old_decl), tm_name,
4195 TREE_TYPE (old_decl));