1 /* Passes for transactional memory support.
2 Copyright (C) 2008-2015 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"
30 #include "fold-const.h"
31 #include "internal-fn.h"
36 #include "gimple-iterator.h"
37 #include "gimplify-me.h"
38 #include "gimple-walk.h"
41 #include "tree-into-ssa.h"
42 #include "tree-pass.h"
43 #include "tree-inline.h"
44 #include "diagnostic-core.h"
47 #include "trans-mem.h"
50 #include "langhooks.h"
51 #include "gimple-pretty-print.h"
53 #include "tree-ssa-address.h"
56 #define A_RUNINSTRUMENTEDCODE 0x0001
57 #define A_RUNUNINSTRUMENTEDCODE 0x0002
58 #define A_SAVELIVEVARIABLES 0x0004
59 #define A_RESTORELIVEVARIABLES 0x0008
60 #define A_ABORTTRANSACTION 0x0010
62 #define AR_USERABORT 0x0001
63 #define AR_USERRETRY 0x0002
64 #define AR_TMCONFLICT 0x0004
65 #define AR_EXCEPTIONBLOCKABORT 0x0008
66 #define AR_OUTERABORT 0x0010
68 #define MODE_SERIALIRREVOCABLE 0x0000
71 /* The representation of a transaction changes several times during the
72 lowering process. In the beginning, in the front-end we have the
73 GENERIC tree TRANSACTION_EXPR. For example,
81 During initial gimplification (gimplify.c) the TRANSACTION_EXPR node is
82 trivially replaced with a GIMPLE_TRANSACTION node.
84 During pass_lower_tm, we examine the body of transactions looking
85 for aborts. Transactions that do not contain an abort may be
86 merged into an outer transaction. We also add a TRY-FINALLY node
87 to arrange for the transaction to be committed on any exit.
89 [??? Think about how this arrangement affects throw-with-commit
90 and throw-with-abort operations. In this case we want the TRY to
91 handle gotos, but not to catch any exceptions because the transaction
92 will already be closed.]
94 GIMPLE_TRANSACTION [label=NULL] {
101 __builtin___tm_abort ();
103 __builtin___tm_commit ();
107 During pass_lower_eh, we create EH regions for the transactions,
108 intermixed with the regular EH stuff. This gives us a nice persistent
109 mapping (all the way through rtl) from transactional memory operation
110 back to the transaction, which allows us to get the abnormal edges
111 correct to model transaction aborts and restarts:
113 GIMPLE_TRANSACTION [label=over]
119 __builtin___tm_abort ();
120 __builtin___tm_commit ();
123 This is the end of all_lowering_passes, and so is what is present
124 during the IPA passes, and through all of the optimization passes.
126 During pass_ipa_tm, we examine all GIMPLE_TRANSACTION blocks in all
127 functions and mark functions for cloning.
129 At the end of gimple optimization, before exiting SSA form,
130 pass_tm_edges replaces statements that perform transactional
131 memory operations with the appropriate TM builtins, and swap
132 out function calls with their transactional clones. At this
133 point we introduce the abnormal transaction restart edges and
134 complete lowering of the GIMPLE_TRANSACTION node.
136 x = __builtin___tm_start (MAY_ABORT);
138 if (x & abort_transaction)
141 t0 = __builtin___tm_load (global);
143 __builtin___tm_store (&global, t1);
145 __builtin___tm_abort ();
146 __builtin___tm_commit ();
150 static void *expand_regions (struct tm_region
*,
151 void *(*callback
)(struct tm_region
*, void *),
155 /* Return the attributes we want to examine for X, or NULL if it's not
156 something we examine. We look at function types, but allow pointers
157 to function types and function decls and peek through. */
160 get_attrs_for (const_tree x
)
165 switch (TREE_CODE (x
))
168 return TYPE_ATTRIBUTES (TREE_TYPE (x
));
175 if (TREE_CODE (x
) != POINTER_TYPE
)
181 if (TREE_CODE (x
) != FUNCTION_TYPE
&& TREE_CODE (x
) != METHOD_TYPE
)
187 return TYPE_ATTRIBUTES (x
);
191 /* Return true if X has been marked TM_PURE. */
194 is_tm_pure (const_tree x
)
198 switch (TREE_CODE (x
))
209 if (TREE_CODE (x
) != POINTER_TYPE
)
215 if (TREE_CODE (x
) != FUNCTION_TYPE
&& TREE_CODE (x
) != METHOD_TYPE
)
220 flags
= flags_from_decl_or_type (x
);
221 return (flags
& ECF_TM_PURE
) != 0;
224 /* Return true if X has been marked TM_IRREVOCABLE. */
227 is_tm_irrevocable (tree x
)
229 tree attrs
= get_attrs_for (x
);
231 if (attrs
&& lookup_attribute ("transaction_unsafe", attrs
))
234 /* A call to the irrevocable builtin is by definition,
236 if (TREE_CODE (x
) == ADDR_EXPR
)
237 x
= TREE_OPERAND (x
, 0);
238 if (TREE_CODE (x
) == FUNCTION_DECL
239 && DECL_BUILT_IN_CLASS (x
) == BUILT_IN_NORMAL
240 && DECL_FUNCTION_CODE (x
) == BUILT_IN_TM_IRREVOCABLE
)
246 /* Return true if X has been marked TM_SAFE. */
249 is_tm_safe (const_tree x
)
253 tree attrs
= get_attrs_for (x
);
256 if (lookup_attribute ("transaction_safe", attrs
))
258 if (lookup_attribute ("transaction_may_cancel_outer", attrs
))
265 /* Return true if CALL is const, or tm_pure. */
268 is_tm_pure_call (gimple call
)
270 tree fn
= gimple_call_fn (call
);
272 if (TREE_CODE (fn
) == ADDR_EXPR
)
274 fn
= TREE_OPERAND (fn
, 0);
275 gcc_assert (TREE_CODE (fn
) == FUNCTION_DECL
);
280 return is_tm_pure (fn
);
283 /* Return true if X has been marked TM_CALLABLE. */
286 is_tm_callable (tree x
)
288 tree attrs
= get_attrs_for (x
);
291 if (lookup_attribute ("transaction_callable", attrs
))
293 if (lookup_attribute ("transaction_safe", attrs
))
295 if (lookup_attribute ("transaction_may_cancel_outer", attrs
))
301 /* Return true if X has been marked TRANSACTION_MAY_CANCEL_OUTER. */
304 is_tm_may_cancel_outer (tree x
)
306 tree attrs
= get_attrs_for (x
);
308 return lookup_attribute ("transaction_may_cancel_outer", attrs
) != NULL
;
312 /* Return true for built in functions that "end" a transaction. */
315 is_tm_ending_fndecl (tree fndecl
)
317 if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
)
318 switch (DECL_FUNCTION_CODE (fndecl
))
320 case BUILT_IN_TM_COMMIT
:
321 case BUILT_IN_TM_COMMIT_EH
:
322 case BUILT_IN_TM_ABORT
:
323 case BUILT_IN_TM_IRREVOCABLE
:
332 /* Return true if STMT is a built in function call that "ends" a
336 is_tm_ending (gimple stmt
)
340 if (gimple_code (stmt
) != GIMPLE_CALL
)
343 fndecl
= gimple_call_fndecl (stmt
);
344 return (fndecl
!= NULL_TREE
345 && is_tm_ending_fndecl (fndecl
));
348 /* Return true if STMT is a TM load. */
351 is_tm_load (gimple stmt
)
355 if (gimple_code (stmt
) != GIMPLE_CALL
)
358 fndecl
= gimple_call_fndecl (stmt
);
359 return (fndecl
&& DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
360 && BUILTIN_TM_LOAD_P (DECL_FUNCTION_CODE (fndecl
)));
363 /* Same as above, but for simple TM loads, that is, not the
364 after-write, after-read, etc optimized variants. */
367 is_tm_simple_load (gimple stmt
)
371 if (gimple_code (stmt
) != GIMPLE_CALL
)
374 fndecl
= gimple_call_fndecl (stmt
);
375 if (fndecl
&& DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
)
377 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
378 return (fcode
== BUILT_IN_TM_LOAD_1
379 || fcode
== BUILT_IN_TM_LOAD_2
380 || fcode
== BUILT_IN_TM_LOAD_4
381 || fcode
== BUILT_IN_TM_LOAD_8
382 || fcode
== BUILT_IN_TM_LOAD_FLOAT
383 || fcode
== BUILT_IN_TM_LOAD_DOUBLE
384 || fcode
== BUILT_IN_TM_LOAD_LDOUBLE
385 || fcode
== BUILT_IN_TM_LOAD_M64
386 || fcode
== BUILT_IN_TM_LOAD_M128
387 || fcode
== BUILT_IN_TM_LOAD_M256
);
392 /* Return true if STMT is a TM store. */
395 is_tm_store (gimple stmt
)
399 if (gimple_code (stmt
) != GIMPLE_CALL
)
402 fndecl
= gimple_call_fndecl (stmt
);
403 return (fndecl
&& DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
404 && BUILTIN_TM_STORE_P (DECL_FUNCTION_CODE (fndecl
)));
407 /* Same as above, but for simple TM stores, that is, not the
408 after-write, after-read, etc optimized variants. */
411 is_tm_simple_store (gimple stmt
)
415 if (gimple_code (stmt
) != GIMPLE_CALL
)
418 fndecl
= gimple_call_fndecl (stmt
);
419 if (fndecl
&& DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
)
421 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
422 return (fcode
== BUILT_IN_TM_STORE_1
423 || fcode
== BUILT_IN_TM_STORE_2
424 || fcode
== BUILT_IN_TM_STORE_4
425 || fcode
== BUILT_IN_TM_STORE_8
426 || fcode
== BUILT_IN_TM_STORE_FLOAT
427 || fcode
== BUILT_IN_TM_STORE_DOUBLE
428 || fcode
== BUILT_IN_TM_STORE_LDOUBLE
429 || fcode
== BUILT_IN_TM_STORE_M64
430 || fcode
== BUILT_IN_TM_STORE_M128
431 || fcode
== BUILT_IN_TM_STORE_M256
);
436 /* Return true if FNDECL is BUILT_IN_TM_ABORT. */
439 is_tm_abort (tree fndecl
)
442 && DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
443 && DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_TM_ABORT
);
446 /* Build a GENERIC tree for a user abort. This is called by front ends
447 while transforming the __tm_abort statement. */
450 build_tm_abort_call (location_t loc
, bool is_outer
)
452 return build_call_expr_loc (loc
, builtin_decl_explicit (BUILT_IN_TM_ABORT
), 1,
453 build_int_cst (integer_type_node
,
455 | (is_outer
? AR_OUTERABORT
: 0)));
458 /* Map for aribtrary function replacement under TM, as created
459 by the tm_wrap attribute. */
461 struct tm_wrapper_hasher
: ggc_cache_ptr_hash
<tree_map
>
463 static inline hashval_t
hash (tree_map
*m
) { return m
->hash
; }
465 equal (tree_map
*a
, tree_map
*b
)
467 return a
->base
.from
== b
->base
.from
;
471 keep_cache_entry (tree_map
*&m
)
473 return ggc_marked_p (m
->base
.from
);
477 static GTY((cache
)) hash_table
<tm_wrapper_hasher
> *tm_wrap_map
;
480 record_tm_replacement (tree from
, tree to
)
482 struct tree_map
**slot
, *h
;
484 /* Do not inline wrapper functions that will get replaced in the TM
487 Suppose you have foo() that will get replaced into tmfoo(). Make
488 sure the inliner doesn't try to outsmart us and inline foo()
489 before we get a chance to do the TM replacement. */
490 DECL_UNINLINABLE (from
) = 1;
492 if (tm_wrap_map
== NULL
)
493 tm_wrap_map
= hash_table
<tm_wrapper_hasher
>::create_ggc (32);
495 h
= ggc_alloc
<tree_map
> ();
496 h
->hash
= htab_hash_pointer (from
);
500 slot
= tm_wrap_map
->find_slot_with_hash (h
, h
->hash
, INSERT
);
504 /* Return a TM-aware replacement function for DECL. */
507 find_tm_replacement_function (tree fndecl
)
511 struct tree_map
*h
, in
;
513 in
.base
.from
= fndecl
;
514 in
.hash
= htab_hash_pointer (fndecl
);
515 h
= tm_wrap_map
->find_with_hash (&in
, in
.hash
);
520 /* ??? We may well want TM versions of most of the common <string.h>
521 functions. For now, we've already these two defined. */
522 /* Adjust expand_call_tm() attributes as necessary for the cases
524 if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
)
525 switch (DECL_FUNCTION_CODE (fndecl
))
527 case BUILT_IN_MEMCPY
:
528 return builtin_decl_explicit (BUILT_IN_TM_MEMCPY
);
529 case BUILT_IN_MEMMOVE
:
530 return builtin_decl_explicit (BUILT_IN_TM_MEMMOVE
);
531 case BUILT_IN_MEMSET
:
532 return builtin_decl_explicit (BUILT_IN_TM_MEMSET
);
540 /* When appropriate, record TM replacement for memory allocation functions.
542 FROM is the FNDECL to wrap. */
544 tm_malloc_replacement (tree from
)
549 if (TREE_CODE (from
) != FUNCTION_DECL
)
552 /* If we have a previous replacement, the user must be explicitly
553 wrapping malloc/calloc/free. They better know what they're
555 if (find_tm_replacement_function (from
))
558 str
= IDENTIFIER_POINTER (DECL_NAME (from
));
560 if (!strcmp (str
, "malloc"))
561 to
= builtin_decl_explicit (BUILT_IN_TM_MALLOC
);
562 else if (!strcmp (str
, "calloc"))
563 to
= builtin_decl_explicit (BUILT_IN_TM_CALLOC
);
564 else if (!strcmp (str
, "free"))
565 to
= builtin_decl_explicit (BUILT_IN_TM_FREE
);
569 TREE_NOTHROW (to
) = 0;
571 record_tm_replacement (from
, to
);
574 /* Diagnostics for tm_safe functions/regions. Called by the front end
575 once we've lowered the function to high-gimple. */
577 /* Subroutine of diagnose_tm_safe_errors, called through walk_gimple_seq.
578 Process exactly one statement. WI->INFO is set to non-null when in
579 the context of a tm_safe function, and null for a __transaction block. */
581 #define DIAG_TM_OUTER 1
582 #define DIAG_TM_SAFE 2
583 #define DIAG_TM_RELAXED 4
587 unsigned int summary_flags
: 8;
588 unsigned int block_flags
: 8;
589 unsigned int func_flags
: 8;
590 unsigned int saw_volatile
: 1;
594 /* Return true if T is a volatile variable of some kind. */
597 volatile_var_p (tree t
)
599 return (SSA_VAR_P (t
)
600 && TREE_THIS_VOLATILE (TREE_TYPE (t
)));
603 /* Tree callback function for diagnose_tm pass. */
606 diagnose_tm_1_op (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
609 struct walk_stmt_info
*wi
= (struct walk_stmt_info
*) data
;
610 struct diagnose_tm
*d
= (struct diagnose_tm
*) wi
->info
;
612 if (volatile_var_p (*tp
)
613 && d
->block_flags
& DIAG_TM_SAFE
617 error_at (gimple_location (d
->stmt
),
618 "invalid volatile use of %qD inside transaction",
626 is_tm_safe_or_pure (const_tree x
)
628 return is_tm_safe (x
) || is_tm_pure (x
);
632 diagnose_tm_1 (gimple_stmt_iterator
*gsi
, bool *handled_ops_p
,
633 struct walk_stmt_info
*wi
)
635 gimple stmt
= gsi_stmt (*gsi
);
636 struct diagnose_tm
*d
= (struct diagnose_tm
*) wi
->info
;
638 /* Save stmt for use in leaf analysis. */
641 switch (gimple_code (stmt
))
645 tree fn
= gimple_call_fn (stmt
);
647 if ((d
->summary_flags
& DIAG_TM_OUTER
) == 0
648 && is_tm_may_cancel_outer (fn
))
649 error_at (gimple_location (stmt
),
650 "%<transaction_may_cancel_outer%> function call not within"
651 " outer transaction or %<transaction_may_cancel_outer%>");
653 if (d
->summary_flags
& DIAG_TM_SAFE
)
655 bool is_safe
, direct_call_p
;
658 if (TREE_CODE (fn
) == ADDR_EXPR
659 && TREE_CODE (TREE_OPERAND (fn
, 0)) == FUNCTION_DECL
)
661 direct_call_p
= true;
662 replacement
= TREE_OPERAND (fn
, 0);
663 replacement
= find_tm_replacement_function (replacement
);
669 direct_call_p
= false;
670 replacement
= NULL_TREE
;
673 if (is_tm_safe_or_pure (fn
))
675 else if (is_tm_callable (fn
) || is_tm_irrevocable (fn
))
677 /* A function explicitly marked transaction_callable as
678 opposed to transaction_safe is being defined to be
679 unsafe as part of its ABI, regardless of its contents. */
682 else if (direct_call_p
)
684 if (IS_TYPE_OR_DECL_P (fn
)
685 && flags_from_decl_or_type (fn
) & ECF_TM_BUILTIN
)
687 else if (replacement
)
689 /* ??? At present we've been considering replacements
690 merely transaction_callable, and therefore might
691 enter irrevocable. The tm_wrap attribute has not
692 yet made it into the new language spec. */
697 /* ??? Diagnostics for unmarked direct calls moved into
698 the IPA pass. Section 3.2 of the spec details how
699 functions not marked should be considered "implicitly
700 safe" based on having examined the function body. */
706 /* An unmarked indirect call. Consider it unsafe even
707 though optimization may yet figure out how to inline. */
713 if (TREE_CODE (fn
) == ADDR_EXPR
)
714 fn
= TREE_OPERAND (fn
, 0);
715 if (d
->block_flags
& DIAG_TM_SAFE
)
718 error_at (gimple_location (stmt
),
719 "unsafe function call %qD within "
720 "atomic transaction", fn
);
723 if (!DECL_P (fn
) || DECL_NAME (fn
))
724 error_at (gimple_location (stmt
),
725 "unsafe function call %qE within "
726 "atomic transaction", fn
);
728 error_at (gimple_location (stmt
),
729 "unsafe indirect function call within "
730 "atomic transaction");
736 error_at (gimple_location (stmt
),
737 "unsafe function call %qD within "
738 "%<transaction_safe%> function", fn
);
741 if (!DECL_P (fn
) || DECL_NAME (fn
))
742 error_at (gimple_location (stmt
),
743 "unsafe function call %qE within "
744 "%<transaction_safe%> function", fn
);
746 error_at (gimple_location (stmt
),
747 "unsafe indirect function call within "
748 "%<transaction_safe%> function");
757 /* ??? We ought to come up with a way to add attributes to
758 asm statements, and then add "transaction_safe" to it.
759 Either that or get the language spec to resurrect __tm_waiver. */
760 if (d
->block_flags
& DIAG_TM_SAFE
)
761 error_at (gimple_location (stmt
),
762 "asm not allowed in atomic transaction");
763 else if (d
->func_flags
& DIAG_TM_SAFE
)
764 error_at (gimple_location (stmt
),
765 "asm not allowed in %<transaction_safe%> function");
768 case GIMPLE_TRANSACTION
:
770 gtransaction
*trans_stmt
= as_a
<gtransaction
*> (stmt
);
771 unsigned char inner_flags
= DIAG_TM_SAFE
;
773 if (gimple_transaction_subcode (trans_stmt
) & GTMA_IS_RELAXED
)
775 if (d
->block_flags
& DIAG_TM_SAFE
)
776 error_at (gimple_location (stmt
),
777 "relaxed transaction in atomic transaction");
778 else if (d
->func_flags
& DIAG_TM_SAFE
)
779 error_at (gimple_location (stmt
),
780 "relaxed transaction in %<transaction_safe%> function");
781 inner_flags
= DIAG_TM_RELAXED
;
783 else if (gimple_transaction_subcode (trans_stmt
) & GTMA_IS_OUTER
)
786 error_at (gimple_location (stmt
),
787 "outer transaction in transaction");
788 else if (d
->func_flags
& DIAG_TM_OUTER
)
789 error_at (gimple_location (stmt
),
790 "outer transaction in "
791 "%<transaction_may_cancel_outer%> function");
792 else if (d
->func_flags
& DIAG_TM_SAFE
)
793 error_at (gimple_location (stmt
),
794 "outer transaction in %<transaction_safe%> function");
795 inner_flags
|= DIAG_TM_OUTER
;
798 *handled_ops_p
= true;
799 if (gimple_transaction_body (trans_stmt
))
801 struct walk_stmt_info wi_inner
;
802 struct diagnose_tm d_inner
;
804 memset (&d_inner
, 0, sizeof (d_inner
));
805 d_inner
.func_flags
= d
->func_flags
;
806 d_inner
.block_flags
= d
->block_flags
| inner_flags
;
807 d_inner
.summary_flags
= d_inner
.func_flags
| d_inner
.block_flags
;
809 memset (&wi_inner
, 0, sizeof (wi_inner
));
810 wi_inner
.info
= &d_inner
;
812 walk_gimple_seq (gimple_transaction_body (trans_stmt
),
813 diagnose_tm_1
, diagnose_tm_1_op
, &wi_inner
);
826 diagnose_tm_blocks (void)
828 struct walk_stmt_info wi
;
829 struct diagnose_tm d
;
831 memset (&d
, 0, sizeof (d
));
832 if (is_tm_may_cancel_outer (current_function_decl
))
833 d
.func_flags
= DIAG_TM_OUTER
| DIAG_TM_SAFE
;
834 else if (is_tm_safe (current_function_decl
))
835 d
.func_flags
= DIAG_TM_SAFE
;
836 d
.summary_flags
= d
.func_flags
;
838 memset (&wi
, 0, sizeof (wi
));
841 walk_gimple_seq (gimple_body (current_function_decl
),
842 diagnose_tm_1
, diagnose_tm_1_op
, &wi
);
849 const pass_data pass_data_diagnose_tm_blocks
=
851 GIMPLE_PASS
, /* type */
852 "*diagnose_tm_blocks", /* name */
853 OPTGROUP_NONE
, /* optinfo_flags */
854 TV_TRANS_MEM
, /* tv_id */
855 PROP_gimple_any
, /* properties_required */
856 0, /* properties_provided */
857 0, /* properties_destroyed */
858 0, /* todo_flags_start */
859 0, /* todo_flags_finish */
862 class pass_diagnose_tm_blocks
: public gimple_opt_pass
865 pass_diagnose_tm_blocks (gcc::context
*ctxt
)
866 : gimple_opt_pass (pass_data_diagnose_tm_blocks
, ctxt
)
869 /* opt_pass methods: */
870 virtual bool gate (function
*) { return flag_tm
; }
871 virtual unsigned int execute (function
*) { return diagnose_tm_blocks (); }
873 }; // class pass_diagnose_tm_blocks
878 make_pass_diagnose_tm_blocks (gcc::context
*ctxt
)
880 return new pass_diagnose_tm_blocks (ctxt
);
883 /* Instead of instrumenting thread private memory, we save the
884 addresses in a log which we later use to save/restore the addresses
885 upon transaction start/restart.
887 The log is keyed by address, where each element contains individual
888 statements among different code paths that perform the store.
890 This log is later used to generate either plain save/restore of the
891 addresses upon transaction start/restart, or calls to the ITM_L*
894 So for something like:
896 struct large { int x[1000]; };
897 struct large lala = { 0 };
903 We can either save/restore:
906 trxn = _ITM_startTransaction ();
907 if (trxn & a_saveLiveVariables)
908 tmp_lala1 = lala.x[i];
909 else if (a & a_restoreLiveVariables)
910 lala.x[i] = tmp_lala1;
912 or use the logging functions:
915 trxn = _ITM_startTransaction ();
916 _ITM_LU4 (&lala.x[i]);
918 Obviously, if we use _ITM_L* to log, we prefer to call _ITM_L* as
919 far up the dominator tree to shadow all of the writes to a given
920 location (thus reducing the total number of logging calls), but not
921 so high as to be called on a path that does not perform a
924 /* One individual log entry. We may have multiple statements for the
925 same location if neither dominate each other (on different
927 typedef struct tm_log_entry
929 /* Address to save. */
931 /* Entry block for the transaction this address occurs in. */
932 basic_block entry_block
;
933 /* Dominating statements the store occurs in. */
935 /* Initially, while we are building the log, we place a nonzero
936 value here to mean that this address *will* be saved with a
937 save/restore sequence. Later, when generating the save sequence
938 we place the SSA temp generated here. */
943 /* Log entry hashtable helpers. */
945 struct log_entry_hasher
: pointer_hash
<tm_log_entry
>
947 static inline hashval_t
hash (const tm_log_entry
*);
948 static inline bool equal (const tm_log_entry
*, const tm_log_entry
*);
949 static inline void remove (tm_log_entry
*);
952 /* Htab support. Return hash value for a `tm_log_entry'. */
954 log_entry_hasher::hash (const tm_log_entry
*log
)
956 return iterative_hash_expr (log
->addr
, 0);
959 /* Htab support. Return true if two log entries are the same. */
961 log_entry_hasher::equal (const tm_log_entry
*log1
, const tm_log_entry
*log2
)
965 rth: I suggest that we get rid of the component refs etc.
966 I.e. resolve the reference to base + offset.
968 We may need to actually finish a merge with mainline for this,
969 since we'd like to be presented with Richi's MEM_REF_EXPRs more
970 often than not. But in the meantime your tm_log_entry could save
971 the results of get_inner_reference.
973 See: g++.dg/tm/pr46653.C
976 /* Special case plain equality because operand_equal_p() below will
977 return FALSE if the addresses are equal but they have
978 side-effects (e.g. a volatile address). */
979 if (log1
->addr
== log2
->addr
)
982 return operand_equal_p (log1
->addr
, log2
->addr
, 0);
985 /* Htab support. Free one tm_log_entry. */
987 log_entry_hasher::remove (tm_log_entry
*lp
)
989 lp
->stmts
.release ();
994 /* The actual log. */
995 static hash_table
<log_entry_hasher
> *tm_log
;
997 /* Addresses to log with a save/restore sequence. These should be in
999 static vec
<tree
> tm_log_save_addresses
;
1001 enum thread_memory_type
1005 mem_transaction_local
,
1009 typedef struct tm_new_mem_map
1011 /* SSA_NAME being dereferenced. */
1013 enum thread_memory_type local_new_memory
;
1016 /* Hashtable helpers. */
1018 struct tm_mem_map_hasher
: free_ptr_hash
<tm_new_mem_map_t
>
1020 static inline hashval_t
hash (const tm_new_mem_map_t
*);
1021 static inline bool equal (const tm_new_mem_map_t
*, const tm_new_mem_map_t
*);
1025 tm_mem_map_hasher::hash (const tm_new_mem_map_t
*v
)
1027 return (intptr_t)v
->val
>> 4;
1031 tm_mem_map_hasher::equal (const tm_new_mem_map_t
*v
, const tm_new_mem_map_t
*c
)
1033 return v
->val
== c
->val
;
1036 /* Map for an SSA_NAME originally pointing to a non aliased new piece
1037 of memory (malloc, alloc, etc). */
1038 static hash_table
<tm_mem_map_hasher
> *tm_new_mem_hash
;
1040 /* Initialize logging data structures. */
1044 tm_log
= new hash_table
<log_entry_hasher
> (10);
1045 tm_new_mem_hash
= new hash_table
<tm_mem_map_hasher
> (5);
1046 tm_log_save_addresses
.create (5);
1049 /* Free logging data structures. */
1051 tm_log_delete (void)
1055 delete tm_new_mem_hash
;
1056 tm_new_mem_hash
= NULL
;
1057 tm_log_save_addresses
.release ();
1060 /* Return true if MEM is a transaction invariant memory for the TM
1061 region starting at REGION_ENTRY_BLOCK. */
1063 transaction_invariant_address_p (const_tree mem
, basic_block region_entry_block
)
1065 if ((TREE_CODE (mem
) == INDIRECT_REF
|| TREE_CODE (mem
) == MEM_REF
)
1066 && TREE_CODE (TREE_OPERAND (mem
, 0)) == SSA_NAME
)
1070 def_bb
= gimple_bb (SSA_NAME_DEF_STMT (TREE_OPERAND (mem
, 0)));
1071 return def_bb
!= region_entry_block
1072 && dominated_by_p (CDI_DOMINATORS
, region_entry_block
, def_bb
);
1075 mem
= strip_invariant_refs (mem
);
1076 return mem
&& (CONSTANT_CLASS_P (mem
) || decl_address_invariant_p (mem
));
1079 /* Given an address ADDR in STMT, find it in the memory log or add it,
1080 making sure to keep only the addresses highest in the dominator
1083 ENTRY_BLOCK is the entry_block for the transaction.
1085 If we find the address in the log, make sure it's either the same
1086 address, or an equivalent one that dominates ADDR.
1088 If we find the address, but neither ADDR dominates the found
1089 address, nor the found one dominates ADDR, we're on different
1090 execution paths. Add it.
1092 If known, ENTRY_BLOCK is the entry block for the region, otherwise
1095 tm_log_add (basic_block entry_block
, tree addr
, gimple stmt
)
1097 tm_log_entry
**slot
;
1098 struct tm_log_entry l
, *lp
;
1101 slot
= tm_log
->find_slot (&l
, INSERT
);
1104 tree type
= TREE_TYPE (addr
);
1106 lp
= XNEW (struct tm_log_entry
);
1110 /* Small invariant addresses can be handled as save/restores. */
1112 && transaction_invariant_address_p (lp
->addr
, entry_block
)
1113 && TYPE_SIZE_UNIT (type
) != NULL
1114 && tree_fits_uhwi_p (TYPE_SIZE_UNIT (type
))
1115 && ((HOST_WIDE_INT
) tree_to_uhwi (TYPE_SIZE_UNIT (type
))
1116 < PARAM_VALUE (PARAM_TM_MAX_AGGREGATE_SIZE
))
1117 /* We must be able to copy this type normally. I.e., no
1118 special constructors and the like. */
1119 && !TREE_ADDRESSABLE (type
))
1121 lp
->save_var
= create_tmp_reg (TREE_TYPE (lp
->addr
), "tm_save");
1122 lp
->stmts
.create (0);
1123 lp
->entry_block
= entry_block
;
1124 /* Save addresses separately in dominator order so we don't
1125 get confused by overlapping addresses in the save/restore
1127 tm_log_save_addresses
.safe_push (lp
->addr
);
1131 /* Use the logging functions. */
1132 lp
->stmts
.create (5);
1133 lp
->stmts
.quick_push (stmt
);
1134 lp
->save_var
= NULL
;
1144 /* If we're generating a save/restore sequence, we don't care
1145 about statements. */
1149 for (i
= 0; lp
->stmts
.iterate (i
, &oldstmt
); ++i
)
1151 if (stmt
== oldstmt
)
1153 /* We already have a store to the same address, higher up the
1154 dominator tree. Nothing to do. */
1155 if (dominated_by_p (CDI_DOMINATORS
,
1156 gimple_bb (stmt
), gimple_bb (oldstmt
)))
1158 /* We should be processing blocks in dominator tree order. */
1159 gcc_assert (!dominated_by_p (CDI_DOMINATORS
,
1160 gimple_bb (oldstmt
), gimple_bb (stmt
)));
1162 /* Store is on a different code path. */
1163 lp
->stmts
.safe_push (stmt
);
1167 /* Gimplify the address of a TARGET_MEM_REF. Return the SSA_NAME
1168 result, insert the new statements before GSI. */
1171 gimplify_addr (gimple_stmt_iterator
*gsi
, tree x
)
1173 if (TREE_CODE (x
) == TARGET_MEM_REF
)
1174 x
= tree_mem_ref_addr (build_pointer_type (TREE_TYPE (x
)), x
);
1176 x
= build_fold_addr_expr (x
);
1177 return force_gimple_operand_gsi (gsi
, x
, true, NULL
, true, GSI_SAME_STMT
);
1180 /* Instrument one address with the logging functions.
1181 ADDR is the address to save.
1182 STMT is the statement before which to place it. */
1184 tm_log_emit_stmt (tree addr
, gimple stmt
)
1186 tree type
= TREE_TYPE (addr
);
1187 tree size
= TYPE_SIZE_UNIT (type
);
1188 gimple_stmt_iterator gsi
= gsi_for_stmt (stmt
);
1190 enum built_in_function code
= BUILT_IN_TM_LOG
;
1192 if (type
== float_type_node
)
1193 code
= BUILT_IN_TM_LOG_FLOAT
;
1194 else if (type
== double_type_node
)
1195 code
= BUILT_IN_TM_LOG_DOUBLE
;
1196 else if (type
== long_double_type_node
)
1197 code
= BUILT_IN_TM_LOG_LDOUBLE
;
1198 else if (tree_fits_uhwi_p (size
))
1200 unsigned int n
= tree_to_uhwi (size
);
1204 code
= BUILT_IN_TM_LOG_1
;
1207 code
= BUILT_IN_TM_LOG_2
;
1210 code
= BUILT_IN_TM_LOG_4
;
1213 code
= BUILT_IN_TM_LOG_8
;
1216 code
= BUILT_IN_TM_LOG
;
1217 if (TREE_CODE (type
) == VECTOR_TYPE
)
1219 if (n
== 8 && builtin_decl_explicit (BUILT_IN_TM_LOG_M64
))
1220 code
= BUILT_IN_TM_LOG_M64
;
1221 else if (n
== 16 && builtin_decl_explicit (BUILT_IN_TM_LOG_M128
))
1222 code
= BUILT_IN_TM_LOG_M128
;
1223 else if (n
== 32 && builtin_decl_explicit (BUILT_IN_TM_LOG_M256
))
1224 code
= BUILT_IN_TM_LOG_M256
;
1230 addr
= gimplify_addr (&gsi
, addr
);
1231 if (code
== BUILT_IN_TM_LOG
)
1232 log
= gimple_build_call (builtin_decl_explicit (code
), 2, addr
, size
);
1234 log
= gimple_build_call (builtin_decl_explicit (code
), 1, addr
);
1235 gsi_insert_before (&gsi
, log
, GSI_SAME_STMT
);
1238 /* Go through the log and instrument address that must be instrumented
1239 with the logging functions. Leave the save/restore addresses for
1244 hash_table
<log_entry_hasher
>::iterator hi
;
1245 struct tm_log_entry
*lp
;
1247 FOR_EACH_HASH_TABLE_ELEMENT (*tm_log
, lp
, tm_log_entry_t
, hi
)
1254 fprintf (dump_file
, "TM thread private mem logging: ");
1255 print_generic_expr (dump_file
, lp
->addr
, 0);
1256 fprintf (dump_file
, "\n");
1262 fprintf (dump_file
, "DUMPING to variable\n");
1268 fprintf (dump_file
, "DUMPING with logging functions\n");
1269 for (i
= 0; lp
->stmts
.iterate (i
, &stmt
); ++i
)
1270 tm_log_emit_stmt (lp
->addr
, stmt
);
1275 /* Emit the save sequence for the corresponding addresses in the log.
1276 ENTRY_BLOCK is the entry block for the transaction.
1277 BB is the basic block to insert the code in. */
1279 tm_log_emit_saves (basic_block entry_block
, basic_block bb
)
1282 gimple_stmt_iterator gsi
= gsi_last_bb (bb
);
1284 struct tm_log_entry l
, *lp
;
1286 for (i
= 0; i
< tm_log_save_addresses
.length (); ++i
)
1288 l
.addr
= tm_log_save_addresses
[i
];
1289 lp
= *(tm_log
->find_slot (&l
, NO_INSERT
));
1290 gcc_assert (lp
->save_var
!= NULL
);
1292 /* We only care about variables in the current transaction. */
1293 if (lp
->entry_block
!= entry_block
)
1296 stmt
= gimple_build_assign (lp
->save_var
, unshare_expr (lp
->addr
));
1298 /* Make sure we can create an SSA_NAME for this type. For
1299 instance, aggregates aren't allowed, in which case the system
1300 will create a VOP for us and everything will just work. */
1301 if (is_gimple_reg_type (TREE_TYPE (lp
->save_var
)))
1303 lp
->save_var
= make_ssa_name (lp
->save_var
, stmt
);
1304 gimple_assign_set_lhs (stmt
, lp
->save_var
);
1307 gsi_insert_before (&gsi
, stmt
, GSI_SAME_STMT
);
1311 /* Emit the restore sequence for the corresponding addresses in the log.
1312 ENTRY_BLOCK is the entry block for the transaction.
1313 BB is the basic block to insert the code in. */
1315 tm_log_emit_restores (basic_block entry_block
, basic_block bb
)
1318 struct tm_log_entry l
, *lp
;
1319 gimple_stmt_iterator gsi
;
1322 for (i
= tm_log_save_addresses
.length () - 1; i
>= 0; i
--)
1324 l
.addr
= tm_log_save_addresses
[i
];
1325 lp
= *(tm_log
->find_slot (&l
, NO_INSERT
));
1326 gcc_assert (lp
->save_var
!= NULL
);
1328 /* We only care about variables in the current transaction. */
1329 if (lp
->entry_block
!= entry_block
)
1332 /* Restores are in LIFO order from the saves in case we have
1334 gsi
= gsi_start_bb (bb
);
1336 stmt
= gimple_build_assign (unshare_expr (lp
->addr
), lp
->save_var
);
1337 gsi_insert_after (&gsi
, stmt
, GSI_CONTINUE_LINKING
);
1342 static tree
lower_sequence_tm (gimple_stmt_iterator
*, bool *,
1343 struct walk_stmt_info
*);
1344 static tree
lower_sequence_no_tm (gimple_stmt_iterator
*, bool *,
1345 struct walk_stmt_info
*);
1347 /* Evaluate an address X being dereferenced and determine if it
1348 originally points to a non aliased new chunk of memory (malloc,
1351 Return MEM_THREAD_LOCAL if it points to a thread-local address.
1352 Return MEM_TRANSACTION_LOCAL if it points to a transaction-local address.
1353 Return MEM_NON_LOCAL otherwise.
1355 ENTRY_BLOCK is the entry block to the transaction containing the
1356 dereference of X. */
1357 static enum thread_memory_type
1358 thread_private_new_memory (basic_block entry_block
, tree x
)
1361 enum tree_code code
;
1362 tm_new_mem_map_t
**slot
;
1363 tm_new_mem_map_t elt
, *elt_p
;
1365 enum thread_memory_type retval
= mem_transaction_local
;
1368 || TREE_CODE (x
) != SSA_NAME
1369 /* Possible uninitialized use, or a function argument. In
1370 either case, we don't care. */
1371 || SSA_NAME_IS_DEFAULT_DEF (x
))
1372 return mem_non_local
;
1374 /* Look in cache first. */
1376 slot
= tm_new_mem_hash
->find_slot (&elt
, INSERT
);
1379 return elt_p
->local_new_memory
;
1381 /* Optimistically assume the memory is transaction local during
1382 processing. This catches recursion into this variable. */
1383 *slot
= elt_p
= XNEW (tm_new_mem_map_t
);
1385 elt_p
->local_new_memory
= mem_transaction_local
;
1387 /* Search DEF chain to find the original definition of this address. */
1390 if (ptr_deref_may_alias_global_p (x
))
1392 /* Address escapes. This is not thread-private. */
1393 retval
= mem_non_local
;
1394 goto new_memory_ret
;
1397 stmt
= SSA_NAME_DEF_STMT (x
);
1399 /* If the malloc call is outside the transaction, this is
1401 if (retval
!= mem_thread_local
1402 && !dominated_by_p (CDI_DOMINATORS
, gimple_bb (stmt
), entry_block
))
1403 retval
= mem_thread_local
;
1405 if (is_gimple_assign (stmt
))
1407 code
= gimple_assign_rhs_code (stmt
);
1408 /* x = foo ==> foo */
1409 if (code
== SSA_NAME
)
1410 x
= gimple_assign_rhs1 (stmt
);
1411 /* x = foo + n ==> foo */
1412 else if (code
== POINTER_PLUS_EXPR
)
1413 x
= gimple_assign_rhs1 (stmt
);
1414 /* x = (cast*) foo ==> foo */
1415 else if (code
== VIEW_CONVERT_EXPR
|| CONVERT_EXPR_CODE_P (code
))
1416 x
= gimple_assign_rhs1 (stmt
);
1417 /* x = c ? op1 : op2 == > op1 or op2 just like a PHI */
1418 else if (code
== COND_EXPR
)
1420 tree op1
= gimple_assign_rhs2 (stmt
);
1421 tree op2
= gimple_assign_rhs3 (stmt
);
1422 enum thread_memory_type mem
;
1423 retval
= thread_private_new_memory (entry_block
, op1
);
1424 if (retval
== mem_non_local
)
1425 goto new_memory_ret
;
1426 mem
= thread_private_new_memory (entry_block
, op2
);
1427 retval
= MIN (retval
, mem
);
1428 goto new_memory_ret
;
1432 retval
= mem_non_local
;
1433 goto new_memory_ret
;
1438 if (gimple_code (stmt
) == GIMPLE_PHI
)
1441 enum thread_memory_type mem
;
1442 tree phi_result
= gimple_phi_result (stmt
);
1444 /* If any of the ancestors are non-local, we are sure to
1445 be non-local. Otherwise we can avoid doing anything
1446 and inherit what has already been generated. */
1448 for (i
= 0; i
< gimple_phi_num_args (stmt
); ++i
)
1450 tree op
= PHI_ARG_DEF (stmt
, i
);
1452 /* Exclude self-assignment. */
1453 if (phi_result
== op
)
1456 mem
= thread_private_new_memory (entry_block
, op
);
1457 if (mem
== mem_non_local
)
1460 goto new_memory_ret
;
1462 retval
= MIN (retval
, mem
);
1464 goto new_memory_ret
;
1469 while (TREE_CODE (x
) == SSA_NAME
);
1471 if (stmt
&& is_gimple_call (stmt
) && gimple_call_flags (stmt
) & ECF_MALLOC
)
1472 /* Thread-local or transaction-local. */
1475 retval
= mem_non_local
;
1478 elt_p
->local_new_memory
= retval
;
1482 /* Determine whether X has to be instrumented using a read
1485 ENTRY_BLOCK is the entry block for the region where stmt resides
1486 in. NULL if unknown.
1488 STMT is the statement in which X occurs in. It is used for thread
1489 private memory instrumentation. If no TPM instrumentation is
1490 desired, STMT should be null. */
1492 requires_barrier (basic_block entry_block
, tree x
, gimple stmt
)
1495 while (handled_component_p (x
))
1496 x
= TREE_OPERAND (x
, 0);
1498 switch (TREE_CODE (x
))
1503 enum thread_memory_type ret
;
1505 ret
= thread_private_new_memory (entry_block
, TREE_OPERAND (x
, 0));
1506 if (ret
== mem_non_local
)
1508 if (stmt
&& ret
== mem_thread_local
)
1509 /* ?? Should we pass `orig', or the INDIRECT_REF X. ?? */
1510 tm_log_add (entry_block
, orig
, stmt
);
1512 /* Transaction-locals require nothing at all. For malloc, a
1513 transaction restart frees the memory and we reallocate.
1514 For alloca, the stack pointer gets reset by the retry and
1519 case TARGET_MEM_REF
:
1520 if (TREE_CODE (TMR_BASE (x
)) != ADDR_EXPR
)
1522 x
= TREE_OPERAND (TMR_BASE (x
), 0);
1523 if (TREE_CODE (x
) == PARM_DECL
)
1525 gcc_assert (TREE_CODE (x
) == VAR_DECL
);
1531 if (DECL_BY_REFERENCE (x
))
1533 /* ??? This value is a pointer, but aggregate_value_p has been
1534 jigged to return true which confuses needs_to_live_in_memory.
1535 This ought to be cleaned up generically.
1537 FIXME: Verify this still happens after the next mainline
1538 merge. Testcase ie g++.dg/tm/pr47554.C.
1543 if (is_global_var (x
))
1544 return !TREE_READONLY (x
);
1545 if (/* FIXME: This condition should actually go below in the
1546 tm_log_add() call, however is_call_clobbered() depends on
1547 aliasing info which is not available during
1548 gimplification. Since requires_barrier() gets called
1549 during lower_sequence_tm/gimplification, leave the call
1550 to needs_to_live_in_memory until we eliminate
1551 lower_sequence_tm altogether. */
1552 needs_to_live_in_memory (x
))
1556 /* For local memory that doesn't escape (aka thread private
1557 memory), we can either save the value at the beginning of
1558 the transaction and restore on restart, or call a tm
1559 function to dynamically save and restore on restart
1562 tm_log_add (entry_block
, orig
, stmt
);
1571 /* Mark the GIMPLE_ASSIGN statement as appropriate for being inside
1572 a transaction region. */
1575 examine_assign_tm (unsigned *state
, gimple_stmt_iterator
*gsi
)
1577 gimple stmt
= gsi_stmt (*gsi
);
1579 if (requires_barrier (/*entry_block=*/NULL
, gimple_assign_rhs1 (stmt
), NULL
))
1580 *state
|= GTMA_HAVE_LOAD
;
1581 if (requires_barrier (/*entry_block=*/NULL
, gimple_assign_lhs (stmt
), NULL
))
1582 *state
|= GTMA_HAVE_STORE
;
1585 /* Mark a GIMPLE_CALL as appropriate for being inside a transaction. */
1588 examine_call_tm (unsigned *state
, gimple_stmt_iterator
*gsi
)
1590 gimple stmt
= gsi_stmt (*gsi
);
1593 if (is_tm_pure_call (stmt
))
1596 /* Check if this call is a transaction abort. */
1597 fn
= gimple_call_fndecl (stmt
);
1598 if (is_tm_abort (fn
))
1599 *state
|= GTMA_HAVE_ABORT
;
1601 /* Note that something may happen. */
1602 *state
|= GTMA_HAVE_LOAD
| GTMA_HAVE_STORE
;
1605 /* Lower a GIMPLE_TRANSACTION statement. */
1608 lower_transaction (gimple_stmt_iterator
*gsi
, struct walk_stmt_info
*wi
)
1611 gtransaction
*stmt
= as_a
<gtransaction
*> (gsi_stmt (*gsi
));
1612 unsigned int *outer_state
= (unsigned int *) wi
->info
;
1613 unsigned int this_state
= 0;
1614 struct walk_stmt_info this_wi
;
1616 /* First, lower the body. The scanning that we do inside gives
1617 us some idea of what we're dealing with. */
1618 memset (&this_wi
, 0, sizeof (this_wi
));
1619 this_wi
.info
= (void *) &this_state
;
1620 walk_gimple_seq_mod (gimple_transaction_body_ptr (stmt
),
1621 lower_sequence_tm
, NULL
, &this_wi
);
1623 /* If there was absolutely nothing transaction related inside the
1624 transaction, we may elide it. Likewise if this is a nested
1625 transaction and does not contain an abort. */
1627 || (!(this_state
& GTMA_HAVE_ABORT
) && outer_state
!= NULL
))
1630 *outer_state
|= this_state
;
1632 gsi_insert_seq_before (gsi
, gimple_transaction_body (stmt
),
1634 gimple_transaction_set_body (stmt
, NULL
);
1636 gsi_remove (gsi
, true);
1637 wi
->removed_stmt
= true;
1641 /* Wrap the body of the transaction in a try-finally node so that
1642 the commit call is always properly called. */
1643 g
= gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_COMMIT
), 0);
1644 if (flag_exceptions
)
1647 gimple_seq n_seq
, e_seq
;
1649 n_seq
= gimple_seq_alloc_with_stmt (g
);
1652 g
= gimple_build_call (builtin_decl_explicit (BUILT_IN_EH_POINTER
),
1653 1, integer_zero_node
);
1654 ptr
= create_tmp_var (ptr_type_node
);
1655 gimple_call_set_lhs (g
, ptr
);
1656 gimple_seq_add_stmt (&e_seq
, g
);
1658 g
= gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_COMMIT_EH
),
1660 gimple_seq_add_stmt (&e_seq
, g
);
1662 g
= gimple_build_eh_else (n_seq
, e_seq
);
1665 g
= gimple_build_try (gimple_transaction_body (stmt
),
1666 gimple_seq_alloc_with_stmt (g
), GIMPLE_TRY_FINALLY
);
1667 gsi_insert_after (gsi
, g
, GSI_CONTINUE_LINKING
);
1669 gimple_transaction_set_body (stmt
, NULL
);
1671 /* If the transaction calls abort or if this is an outer transaction,
1672 add an "over" label afterwards. */
1673 if ((this_state
& (GTMA_HAVE_ABORT
))
1674 || (gimple_transaction_subcode (stmt
) & GTMA_IS_OUTER
))
1676 tree label
= create_artificial_label (UNKNOWN_LOCATION
);
1677 gimple_transaction_set_label (stmt
, label
);
1678 gsi_insert_after (gsi
, gimple_build_label (label
), GSI_CONTINUE_LINKING
);
1681 /* Record the set of operations found for use later. */
1682 this_state
|= gimple_transaction_subcode (stmt
) & GTMA_DECLARATION_MASK
;
1683 gimple_transaction_set_subcode (stmt
, this_state
);
1686 /* Iterate through the statements in the sequence, lowering them all
1687 as appropriate for being in a transaction. */
1690 lower_sequence_tm (gimple_stmt_iterator
*gsi
, bool *handled_ops_p
,
1691 struct walk_stmt_info
*wi
)
1693 unsigned int *state
= (unsigned int *) wi
->info
;
1694 gimple stmt
= gsi_stmt (*gsi
);
1696 *handled_ops_p
= true;
1697 switch (gimple_code (stmt
))
1700 /* Only memory reads/writes need to be instrumented. */
1701 if (gimple_assign_single_p (stmt
))
1702 examine_assign_tm (state
, gsi
);
1706 examine_call_tm (state
, gsi
);
1710 *state
|= GTMA_MAY_ENTER_IRREVOCABLE
;
1713 case GIMPLE_TRANSACTION
:
1714 lower_transaction (gsi
, wi
);
1718 *handled_ops_p
= !gimple_has_substatements (stmt
);
1725 /* Iterate through the statements in the sequence, lowering them all
1726 as appropriate for being outside of a transaction. */
1729 lower_sequence_no_tm (gimple_stmt_iterator
*gsi
, bool *handled_ops_p
,
1730 struct walk_stmt_info
* wi
)
1732 gimple stmt
= gsi_stmt (*gsi
);
1734 if (gimple_code (stmt
) == GIMPLE_TRANSACTION
)
1736 *handled_ops_p
= true;
1737 lower_transaction (gsi
, wi
);
1740 *handled_ops_p
= !gimple_has_substatements (stmt
);
1745 /* Main entry point for flattening GIMPLE_TRANSACTION constructs. After
1746 this, GIMPLE_TRANSACTION nodes still exist, but the nested body has
1747 been moved out, and all the data required for constructing a proper
1748 CFG has been recorded. */
1751 execute_lower_tm (void)
1753 struct walk_stmt_info wi
;
1756 /* Transactional clones aren't created until a later pass. */
1757 gcc_assert (!decl_is_tm_clone (current_function_decl
));
1759 body
= gimple_body (current_function_decl
);
1760 memset (&wi
, 0, sizeof (wi
));
1761 walk_gimple_seq_mod (&body
, lower_sequence_no_tm
, NULL
, &wi
);
1762 gimple_set_body (current_function_decl
, body
);
1769 const pass_data pass_data_lower_tm
=
1771 GIMPLE_PASS
, /* type */
1772 "tmlower", /* name */
1773 OPTGROUP_NONE
, /* optinfo_flags */
1774 TV_TRANS_MEM
, /* tv_id */
1775 PROP_gimple_lcf
, /* properties_required */
1776 0, /* properties_provided */
1777 0, /* properties_destroyed */
1778 0, /* todo_flags_start */
1779 0, /* todo_flags_finish */
1782 class pass_lower_tm
: public gimple_opt_pass
1785 pass_lower_tm (gcc::context
*ctxt
)
1786 : gimple_opt_pass (pass_data_lower_tm
, ctxt
)
1789 /* opt_pass methods: */
1790 virtual bool gate (function
*) { return flag_tm
; }
1791 virtual unsigned int execute (function
*) { return execute_lower_tm (); }
1793 }; // class pass_lower_tm
1798 make_pass_lower_tm (gcc::context
*ctxt
)
1800 return new pass_lower_tm (ctxt
);
1803 /* Collect region information for each transaction. */
1809 /* The field "transaction_stmt" is initially a gtransaction *,
1810 but eventually gets lowered to a gcall *(to BUILT_IN_TM_START).
1812 Helper method to get it as a gtransaction *, with code-checking
1813 in a checked-build. */
1816 get_transaction_stmt () const
1818 return as_a
<gtransaction
*> (transaction_stmt
);
1823 /* Link to the next unnested transaction. */
1824 struct tm_region
*next
;
1826 /* Link to the next inner transaction. */
1827 struct tm_region
*inner
;
1829 /* Link to the next outer transaction. */
1830 struct tm_region
*outer
;
1832 /* The GIMPLE_TRANSACTION statement beginning this transaction.
1833 After TM_MARK, this gets replaced by a call to
1835 Hence this will be either a gtransaction *or a gcall *. */
1836 gimple transaction_stmt
;
1838 /* After TM_MARK expands the GIMPLE_TRANSACTION into a call to
1839 BUILT_IN_TM_START, this field is true if the transaction is an
1840 outer transaction. */
1841 bool original_transaction_was_outer
;
1843 /* Return value from BUILT_IN_TM_START. */
1846 /* The entry block to this region. This will always be the first
1847 block of the body of the transaction. */
1848 basic_block entry_block
;
1850 /* The first block after an expanded call to _ITM_beginTransaction. */
1851 basic_block restart_block
;
1853 /* The set of all blocks that end the region; NULL if only EXIT_BLOCK.
1854 These blocks are still a part of the region (i.e., the border is
1855 inclusive). Note that this set is only complete for paths in the CFG
1856 starting at ENTRY_BLOCK, and that there is no exit block recorded for
1857 the edge to the "over" label. */
1860 /* The set of all blocks that have an TM_IRREVOCABLE call. */
1864 typedef struct tm_region
*tm_region_p
;
1866 /* True if there are pending edge statements to be committed for the
1867 current function being scanned in the tmmark pass. */
1868 bool pending_edge_inserts_p
;
1870 static struct tm_region
*all_tm_regions
;
1871 static bitmap_obstack tm_obstack
;
1874 /* A subroutine of tm_region_init. Record the existence of the
1875 GIMPLE_TRANSACTION statement in a tree of tm_region elements. */
1877 static struct tm_region
*
1878 tm_region_init_0 (struct tm_region
*outer
, basic_block bb
,
1881 struct tm_region
*region
;
1883 region
= (struct tm_region
*)
1884 obstack_alloc (&tm_obstack
.obstack
, sizeof (struct tm_region
));
1888 region
->next
= outer
->inner
;
1889 outer
->inner
= region
;
1893 region
->next
= all_tm_regions
;
1894 all_tm_regions
= region
;
1896 region
->inner
= NULL
;
1897 region
->outer
= outer
;
1899 region
->transaction_stmt
= stmt
;
1900 region
->original_transaction_was_outer
= false;
1901 region
->tm_state
= NULL
;
1903 /* There are either one or two edges out of the block containing
1904 the GIMPLE_TRANSACTION, one to the actual region and one to the
1905 "over" label if the region contains an abort. The former will
1906 always be the one marked FALLTHRU. */
1907 region
->entry_block
= FALLTHRU_EDGE (bb
)->dest
;
1909 region
->exit_blocks
= BITMAP_ALLOC (&tm_obstack
);
1910 region
->irr_blocks
= BITMAP_ALLOC (&tm_obstack
);
1915 /* A subroutine of tm_region_init. Record all the exit and
1916 irrevocable blocks in BB into the region's exit_blocks and
1917 irr_blocks bitmaps. Returns the new region being scanned. */
1919 static struct tm_region
*
1920 tm_region_init_1 (struct tm_region
*region
, basic_block bb
)
1922 gimple_stmt_iterator gsi
;
1926 || (!region
->irr_blocks
&& !region
->exit_blocks
))
1929 /* Check to see if this is the end of a region by seeing if it
1930 contains a call to __builtin_tm_commit{,_eh}. Note that the
1931 outermost region for DECL_IS_TM_CLONE need not collect this. */
1932 for (gsi
= gsi_last_bb (bb
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
1935 if (gimple_code (g
) == GIMPLE_CALL
)
1937 tree fn
= gimple_call_fndecl (g
);
1938 if (fn
&& DECL_BUILT_IN_CLASS (fn
) == BUILT_IN_NORMAL
)
1940 if ((DECL_FUNCTION_CODE (fn
) == BUILT_IN_TM_COMMIT
1941 || DECL_FUNCTION_CODE (fn
) == BUILT_IN_TM_COMMIT_EH
)
1942 && region
->exit_blocks
)
1944 bitmap_set_bit (region
->exit_blocks
, bb
->index
);
1945 region
= region
->outer
;
1948 if (DECL_FUNCTION_CODE (fn
) == BUILT_IN_TM_IRREVOCABLE
)
1949 bitmap_set_bit (region
->irr_blocks
, bb
->index
);
1956 /* Collect all of the transaction regions within the current function
1957 and record them in ALL_TM_REGIONS. The REGION parameter may specify
1958 an "outermost" region for use by tm clones. */
1961 tm_region_init (struct tm_region
*region
)
1967 auto_vec
<basic_block
> queue
;
1968 bitmap visited_blocks
= BITMAP_ALLOC (NULL
);
1969 struct tm_region
*old_region
;
1970 auto_vec
<tm_region_p
> bb_regions
;
1972 all_tm_regions
= region
;
1973 bb
= single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
));
1975 /* We could store this information in bb->aux, but we may get called
1976 through get_all_tm_blocks() from another pass that may be already
1978 bb_regions
.safe_grow_cleared (last_basic_block_for_fn (cfun
));
1980 queue
.safe_push (bb
);
1981 bb_regions
[bb
->index
] = region
;
1985 region
= bb_regions
[bb
->index
];
1986 bb_regions
[bb
->index
] = NULL
;
1988 /* Record exit and irrevocable blocks. */
1989 region
= tm_region_init_1 (region
, bb
);
1991 /* Check for the last statement in the block beginning a new region. */
1993 old_region
= region
;
1995 if (gtransaction
*trans_stmt
= dyn_cast
<gtransaction
*> (g
))
1996 region
= tm_region_init_0 (region
, bb
, trans_stmt
);
1998 /* Process subsequent blocks. */
1999 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2000 if (!bitmap_bit_p (visited_blocks
, e
->dest
->index
))
2002 bitmap_set_bit (visited_blocks
, e
->dest
->index
);
2003 queue
.safe_push (e
->dest
);
2005 /* If the current block started a new region, make sure that only
2006 the entry block of the new region is associated with this region.
2007 Other successors are still part of the old region. */
2008 if (old_region
!= region
&& e
->dest
!= region
->entry_block
)
2009 bb_regions
[e
->dest
->index
] = old_region
;
2011 bb_regions
[e
->dest
->index
] = region
;
2014 while (!queue
.is_empty ());
2015 BITMAP_FREE (visited_blocks
);
2018 /* The "gate" function for all transactional memory expansion and optimization
2019 passes. We collect region information for each top-level transaction, and
2020 if we don't find any, we skip all of the TM passes. Each region will have
2021 all of the exit blocks recorded, and the originating statement. */
2029 calculate_dominance_info (CDI_DOMINATORS
);
2030 bitmap_obstack_initialize (&tm_obstack
);
2032 /* If the function is a TM_CLONE, then the entire function is the region. */
2033 if (decl_is_tm_clone (current_function_decl
))
2035 struct tm_region
*region
= (struct tm_region
*)
2036 obstack_alloc (&tm_obstack
.obstack
, sizeof (struct tm_region
));
2037 memset (region
, 0, sizeof (*region
));
2038 region
->entry_block
= single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
));
2039 /* For a clone, the entire function is the region. But even if
2040 we don't need to record any exit blocks, we may need to
2041 record irrevocable blocks. */
2042 region
->irr_blocks
= BITMAP_ALLOC (&tm_obstack
);
2044 tm_region_init (region
);
2048 tm_region_init (NULL
);
2050 /* If we didn't find any regions, cleanup and skip the whole tree
2051 of tm-related optimizations. */
2052 if (all_tm_regions
== NULL
)
2054 bitmap_obstack_release (&tm_obstack
);
2064 const pass_data pass_data_tm_init
=
2066 GIMPLE_PASS
, /* type */
2067 "*tminit", /* name */
2068 OPTGROUP_NONE
, /* optinfo_flags */
2069 TV_TRANS_MEM
, /* tv_id */
2070 ( PROP_ssa
| PROP_cfg
), /* properties_required */
2071 0, /* properties_provided */
2072 0, /* properties_destroyed */
2073 0, /* todo_flags_start */
2074 0, /* todo_flags_finish */
2077 class pass_tm_init
: public gimple_opt_pass
2080 pass_tm_init (gcc::context
*ctxt
)
2081 : gimple_opt_pass (pass_data_tm_init
, ctxt
)
2084 /* opt_pass methods: */
2085 virtual bool gate (function
*) { return gate_tm_init (); }
2087 }; // class pass_tm_init
2092 make_pass_tm_init (gcc::context
*ctxt
)
2094 return new pass_tm_init (ctxt
);
2097 /* Add FLAGS to the GIMPLE_TRANSACTION subcode for the transaction region
2098 represented by STATE. */
2101 transaction_subcode_ior (struct tm_region
*region
, unsigned flags
)
2103 if (region
&& region
->transaction_stmt
)
2105 gtransaction
*transaction_stmt
= region
->get_transaction_stmt ();
2106 flags
|= gimple_transaction_subcode (transaction_stmt
);
2107 gimple_transaction_set_subcode (transaction_stmt
, flags
);
2111 /* Construct a memory load in a transactional context. Return the
2112 gimple statement performing the load, or NULL if there is no
2113 TM_LOAD builtin of the appropriate size to do the load.
2115 LOC is the location to use for the new statement(s). */
2118 build_tm_load (location_t loc
, tree lhs
, tree rhs
, gimple_stmt_iterator
*gsi
)
2120 enum built_in_function code
= END_BUILTINS
;
2121 tree t
, type
= TREE_TYPE (rhs
), decl
;
2124 if (type
== float_type_node
)
2125 code
= BUILT_IN_TM_LOAD_FLOAT
;
2126 else if (type
== double_type_node
)
2127 code
= BUILT_IN_TM_LOAD_DOUBLE
;
2128 else if (type
== long_double_type_node
)
2129 code
= BUILT_IN_TM_LOAD_LDOUBLE
;
2130 else if (TYPE_SIZE_UNIT (type
) != NULL
2131 && tree_fits_uhwi_p (TYPE_SIZE_UNIT (type
)))
2133 switch (tree_to_uhwi (TYPE_SIZE_UNIT (type
)))
2136 code
= BUILT_IN_TM_LOAD_1
;
2139 code
= BUILT_IN_TM_LOAD_2
;
2142 code
= BUILT_IN_TM_LOAD_4
;
2145 code
= BUILT_IN_TM_LOAD_8
;
2150 if (code
== END_BUILTINS
)
2152 decl
= targetm
.vectorize
.builtin_tm_load (type
);
2157 decl
= builtin_decl_explicit (code
);
2159 t
= gimplify_addr (gsi
, rhs
);
2160 gcall
= gimple_build_call (decl
, 1, t
);
2161 gimple_set_location (gcall
, loc
);
2163 t
= TREE_TYPE (TREE_TYPE (decl
));
2164 if (useless_type_conversion_p (type
, t
))
2166 gimple_call_set_lhs (gcall
, lhs
);
2167 gsi_insert_before (gsi
, gcall
, GSI_SAME_STMT
);
2174 temp
= create_tmp_reg (t
);
2175 gimple_call_set_lhs (gcall
, temp
);
2176 gsi_insert_before (gsi
, gcall
, GSI_SAME_STMT
);
2178 t
= fold_build1 (VIEW_CONVERT_EXPR
, type
, temp
);
2179 g
= gimple_build_assign (lhs
, t
);
2180 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
2187 /* Similarly for storing TYPE in a transactional context. */
2190 build_tm_store (location_t loc
, tree lhs
, tree rhs
, gimple_stmt_iterator
*gsi
)
2192 enum built_in_function code
= END_BUILTINS
;
2193 tree t
, fn
, type
= TREE_TYPE (rhs
), simple_type
;
2196 if (type
== float_type_node
)
2197 code
= BUILT_IN_TM_STORE_FLOAT
;
2198 else if (type
== double_type_node
)
2199 code
= BUILT_IN_TM_STORE_DOUBLE
;
2200 else if (type
== long_double_type_node
)
2201 code
= BUILT_IN_TM_STORE_LDOUBLE
;
2202 else if (TYPE_SIZE_UNIT (type
) != NULL
2203 && tree_fits_uhwi_p (TYPE_SIZE_UNIT (type
)))
2205 switch (tree_to_uhwi (TYPE_SIZE_UNIT (type
)))
2208 code
= BUILT_IN_TM_STORE_1
;
2211 code
= BUILT_IN_TM_STORE_2
;
2214 code
= BUILT_IN_TM_STORE_4
;
2217 code
= BUILT_IN_TM_STORE_8
;
2222 if (code
== END_BUILTINS
)
2224 fn
= targetm
.vectorize
.builtin_tm_store (type
);
2229 fn
= builtin_decl_explicit (code
);
2231 simple_type
= TREE_VALUE (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (fn
))));
2233 if (TREE_CODE (rhs
) == CONSTRUCTOR
)
2235 /* Handle the easy initialization to zero. */
2236 if (!CONSTRUCTOR_ELTS (rhs
))
2237 rhs
= build_int_cst (simple_type
, 0);
2240 /* ...otherwise punt to the caller and probably use
2241 BUILT_IN_TM_MEMMOVE, because we can't wrap a
2242 VIEW_CONVERT_EXPR around a CONSTRUCTOR (below) and produce
2247 else if (!useless_type_conversion_p (simple_type
, type
))
2252 temp
= create_tmp_reg (simple_type
);
2253 t
= fold_build1 (VIEW_CONVERT_EXPR
, simple_type
, rhs
);
2254 g
= gimple_build_assign (temp
, t
);
2255 gimple_set_location (g
, loc
);
2256 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
2261 t
= gimplify_addr (gsi
, lhs
);
2262 gcall
= gimple_build_call (fn
, 2, t
, rhs
);
2263 gimple_set_location (gcall
, loc
);
2264 gsi_insert_before (gsi
, gcall
, GSI_SAME_STMT
);
2270 /* Expand an assignment statement into transactional builtins. */
2273 expand_assign_tm (struct tm_region
*region
, gimple_stmt_iterator
*gsi
)
2275 gimple stmt
= gsi_stmt (*gsi
);
2276 location_t loc
= gimple_location (stmt
);
2277 tree lhs
= gimple_assign_lhs (stmt
);
2278 tree rhs
= gimple_assign_rhs1 (stmt
);
2279 bool store_p
= requires_barrier (region
->entry_block
, lhs
, NULL
);
2280 bool load_p
= requires_barrier (region
->entry_block
, rhs
, NULL
);
2281 gimple gcall
= NULL
;
2283 if (!load_p
&& !store_p
)
2285 /* Add thread private addresses to log if applicable. */
2286 requires_barrier (region
->entry_block
, lhs
, stmt
);
2291 // Remove original load/store statement.
2292 gsi_remove (gsi
, true);
2294 if (load_p
&& !store_p
)
2296 transaction_subcode_ior (region
, GTMA_HAVE_LOAD
);
2297 gcall
= build_tm_load (loc
, lhs
, rhs
, gsi
);
2299 else if (store_p
&& !load_p
)
2301 transaction_subcode_ior (region
, GTMA_HAVE_STORE
);
2302 gcall
= build_tm_store (loc
, lhs
, rhs
, gsi
);
2306 tree lhs_addr
, rhs_addr
, tmp
;
2309 transaction_subcode_ior (region
, GTMA_HAVE_LOAD
);
2311 transaction_subcode_ior (region
, GTMA_HAVE_STORE
);
2313 /* ??? Figure out if there's any possible overlap between the LHS
2314 and the RHS and if not, use MEMCPY. */
2316 if (load_p
&& is_gimple_reg (lhs
))
2318 tmp
= create_tmp_var (TREE_TYPE (lhs
));
2319 lhs_addr
= build_fold_addr_expr (tmp
);
2324 lhs_addr
= gimplify_addr (gsi
, lhs
);
2326 rhs_addr
= gimplify_addr (gsi
, rhs
);
2327 gcall
= gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_MEMMOVE
),
2328 3, lhs_addr
, rhs_addr
,
2329 TYPE_SIZE_UNIT (TREE_TYPE (lhs
)));
2330 gimple_set_location (gcall
, loc
);
2331 gsi_insert_before (gsi
, gcall
, GSI_SAME_STMT
);
2335 gcall
= gimple_build_assign (lhs
, tmp
);
2336 gsi_insert_before (gsi
, gcall
, GSI_SAME_STMT
);
2340 /* Now that we have the load/store in its instrumented form, add
2341 thread private addresses to the log if applicable. */
2343 requires_barrier (region
->entry_block
, lhs
, gcall
);
2345 // The calls to build_tm_{store,load} above inserted the instrumented
2346 // call into the stream.
2347 // gsi_insert_before (gsi, gcall, GSI_SAME_STMT);
2351 /* Expand a call statement as appropriate for a transaction. That is,
2352 either verify that the call does not affect the transaction, or
2353 redirect the call to a clone that handles transactions, or change
2354 the transaction state to IRREVOCABLE. Return true if the call is
2355 one of the builtins that end a transaction. */
2358 expand_call_tm (struct tm_region
*region
,
2359 gimple_stmt_iterator
*gsi
)
2361 gcall
*stmt
= as_a
<gcall
*> (gsi_stmt (*gsi
));
2362 tree lhs
= gimple_call_lhs (stmt
);
2364 struct cgraph_node
*node
;
2365 bool retval
= false;
2367 fn_decl
= gimple_call_fndecl (stmt
);
2369 if (fn_decl
== builtin_decl_explicit (BUILT_IN_TM_MEMCPY
)
2370 || fn_decl
== builtin_decl_explicit (BUILT_IN_TM_MEMMOVE
))
2371 transaction_subcode_ior (region
, GTMA_HAVE_STORE
| GTMA_HAVE_LOAD
);
2372 if (fn_decl
== builtin_decl_explicit (BUILT_IN_TM_MEMSET
))
2373 transaction_subcode_ior (region
, GTMA_HAVE_STORE
);
2375 if (is_tm_pure_call (stmt
))
2379 retval
= is_tm_ending_fndecl (fn_decl
);
2382 /* Assume all non-const/pure calls write to memory, except
2383 transaction ending builtins. */
2384 transaction_subcode_ior (region
, GTMA_HAVE_STORE
);
2387 /* For indirect calls, we already generated a call into the runtime. */
2390 tree fn
= gimple_call_fn (stmt
);
2392 /* We are guaranteed never to go irrevocable on a safe or pure
2393 call, and the pure call was handled above. */
2394 if (is_tm_safe (fn
))
2397 transaction_subcode_ior (region
, GTMA_MAY_ENTER_IRREVOCABLE
);
2402 node
= cgraph_node::get (fn_decl
);
2403 /* All calls should have cgraph here. */
2406 /* We can have a nodeless call here if some pass after IPA-tm
2407 added uninstrumented calls. For example, loop distribution
2408 can transform certain loop constructs into __builtin_mem*
2409 calls. In this case, see if we have a suitable TM
2410 replacement and fill in the gaps. */
2411 gcc_assert (DECL_BUILT_IN_CLASS (fn_decl
) == BUILT_IN_NORMAL
);
2412 enum built_in_function code
= DECL_FUNCTION_CODE (fn_decl
);
2413 gcc_assert (code
== BUILT_IN_MEMCPY
2414 || code
== BUILT_IN_MEMMOVE
2415 || code
== BUILT_IN_MEMSET
);
2417 tree repl
= find_tm_replacement_function (fn_decl
);
2420 gimple_call_set_fndecl (stmt
, repl
);
2422 node
= cgraph_node::create (repl
);
2423 node
->local
.tm_may_enter_irr
= false;
2424 return expand_call_tm (region
, gsi
);
2428 if (node
->local
.tm_may_enter_irr
)
2429 transaction_subcode_ior (region
, GTMA_MAY_ENTER_IRREVOCABLE
);
2431 if (is_tm_abort (fn_decl
))
2433 transaction_subcode_ior (region
, GTMA_HAVE_ABORT
);
2437 /* Instrument the store if needed.
2439 If the assignment happens inside the function call (return slot
2440 optimization), there is no instrumentation to be done, since
2441 the callee should have done the right thing. */
2442 if (lhs
&& requires_barrier (region
->entry_block
, lhs
, stmt
)
2443 && !gimple_call_return_slot_opt_p (stmt
))
2445 tree tmp
= create_tmp_reg (TREE_TYPE (lhs
));
2446 location_t loc
= gimple_location (stmt
);
2447 edge fallthru_edge
= NULL
;
2448 gassign
*assign_stmt
;
2450 /* Remember if the call was going to throw. */
2451 if (stmt_can_throw_internal (stmt
))
2455 basic_block bb
= gimple_bb (stmt
);
2457 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2458 if (e
->flags
& EDGE_FALLTHRU
)
2465 gimple_call_set_lhs (stmt
, tmp
);
2467 assign_stmt
= gimple_build_assign (lhs
, tmp
);
2468 gimple_set_location (assign_stmt
, loc
);
2470 /* We cannot throw in the middle of a BB. If the call was going
2471 to throw, place the instrumentation on the fallthru edge, so
2472 the call remains the last statement in the block. */
2475 gimple_seq fallthru_seq
= gimple_seq_alloc_with_stmt (assign_stmt
);
2476 gimple_stmt_iterator fallthru_gsi
= gsi_start (fallthru_seq
);
2477 expand_assign_tm (region
, &fallthru_gsi
);
2478 gsi_insert_seq_on_edge (fallthru_edge
, fallthru_seq
);
2479 pending_edge_inserts_p
= true;
2483 gsi_insert_after (gsi
, assign_stmt
, GSI_CONTINUE_LINKING
);
2484 expand_assign_tm (region
, gsi
);
2487 transaction_subcode_ior (region
, GTMA_HAVE_STORE
);
2494 /* Expand all statements in BB as appropriate for being inside
2498 expand_block_tm (struct tm_region
*region
, basic_block bb
)
2500 gimple_stmt_iterator gsi
;
2502 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); )
2504 gimple stmt
= gsi_stmt (gsi
);
2505 switch (gimple_code (stmt
))
2508 /* Only memory reads/writes need to be instrumented. */
2509 if (gimple_assign_single_p (stmt
)
2510 && !gimple_clobber_p (stmt
))
2512 expand_assign_tm (region
, &gsi
);
2518 if (expand_call_tm (region
, &gsi
))
2528 if (!gsi_end_p (gsi
))
2533 /* Return the list of basic-blocks in REGION.
2535 STOP_AT_IRREVOCABLE_P is true if caller is uninterested in blocks
2536 following a TM_IRREVOCABLE call.
2538 INCLUDE_UNINSTRUMENTED_P is TRUE if we should include the
2539 uninstrumented code path blocks in the list of basic blocks
2540 returned, false otherwise. */
2542 static vec
<basic_block
>
2543 get_tm_region_blocks (basic_block entry_block
,
2546 bitmap all_region_blocks
,
2547 bool stop_at_irrevocable_p
,
2548 bool include_uninstrumented_p
= true)
2550 vec
<basic_block
> bbs
= vNULL
;
2554 bitmap visited_blocks
= BITMAP_ALLOC (NULL
);
2557 bbs
.safe_push (entry_block
);
2558 bitmap_set_bit (visited_blocks
, entry_block
->index
);
2562 basic_block bb
= bbs
[i
++];
2565 bitmap_bit_p (exit_blocks
, bb
->index
))
2568 if (stop_at_irrevocable_p
2570 && bitmap_bit_p (irr_blocks
, bb
->index
))
2573 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2574 if ((include_uninstrumented_p
2575 || !(e
->flags
& EDGE_TM_UNINSTRUMENTED
))
2576 && !bitmap_bit_p (visited_blocks
, e
->dest
->index
))
2578 bitmap_set_bit (visited_blocks
, e
->dest
->index
);
2579 bbs
.safe_push (e
->dest
);
2582 while (i
< bbs
.length ());
2584 if (all_region_blocks
)
2585 bitmap_ior_into (all_region_blocks
, visited_blocks
);
2587 BITMAP_FREE (visited_blocks
);
2591 // Callback data for collect_bb2reg.
2594 vec
<tm_region_p
> *bb2reg
;
2595 bool include_uninstrumented_p
;
2598 // Callback for expand_regions, collect innermost region data for each bb.
2600 collect_bb2reg (struct tm_region
*region
, void *data
)
2602 struct bb2reg_stuff
*stuff
= (struct bb2reg_stuff
*)data
;
2603 vec
<tm_region_p
> *bb2reg
= stuff
->bb2reg
;
2604 vec
<basic_block
> queue
;
2608 queue
= get_tm_region_blocks (region
->entry_block
,
2609 region
->exit_blocks
,
2612 /*stop_at_irr_p=*/true,
2613 stuff
->include_uninstrumented_p
);
2615 // We expect expand_region to perform a post-order traversal of the region
2616 // tree. Therefore the last region seen for any bb is the innermost.
2617 FOR_EACH_VEC_ELT (queue
, i
, bb
)
2618 (*bb2reg
)[bb
->index
] = region
;
2624 // Returns a vector, indexed by BB->INDEX, of the innermost tm_region to
2625 // which a basic block belongs. Note that we only consider the instrumented
2626 // code paths for the region; the uninstrumented code paths are ignored if
2627 // INCLUDE_UNINSTRUMENTED_P is false.
2629 // ??? This data is very similar to the bb_regions array that is collected
2630 // during tm_region_init. Or, rather, this data is similar to what could
2631 // be used within tm_region_init. The actual computation in tm_region_init
2632 // begins and ends with bb_regions entirely full of NULL pointers, due to
2633 // the way in which pointers are swapped in and out of the array.
2635 // ??? Our callers expect that blocks are not shared between transactions.
2636 // When the optimizers get too smart, and blocks are shared, then during
2637 // the tm_mark phase we'll add log entries to only one of the two transactions,
2638 // and in the tm_edge phase we'll add edges to the CFG that create invalid
2639 // cycles. The symptom being SSA defs that do not dominate their uses.
2640 // Note that the optimizers were locally correct with their transformation,
2641 // as we have no info within the program that suggests that the blocks cannot
2644 // ??? There is currently a hack inside tree-ssa-pre.c to work around the
2645 // only known instance of this block sharing.
2647 static vec
<tm_region_p
>
2648 get_bb_regions_instrumented (bool traverse_clones
,
2649 bool include_uninstrumented_p
)
2651 unsigned n
= last_basic_block_for_fn (cfun
);
2652 struct bb2reg_stuff stuff
;
2653 vec
<tm_region_p
> ret
;
2656 ret
.safe_grow_cleared (n
);
2657 stuff
.bb2reg
= &ret
;
2658 stuff
.include_uninstrumented_p
= include_uninstrumented_p
;
2659 expand_regions (all_tm_regions
, collect_bb2reg
, &stuff
, traverse_clones
);
2664 /* Set the IN_TRANSACTION for all gimple statements that appear in a
2668 compute_transaction_bits (void)
2670 struct tm_region
*region
;
2671 vec
<basic_block
> queue
;
2675 /* ?? Perhaps we need to abstract gate_tm_init further, because we
2676 certainly don't need it to calculate CDI_DOMINATOR info. */
2679 FOR_EACH_BB_FN (bb
, cfun
)
2680 bb
->flags
&= ~BB_IN_TRANSACTION
;
2682 for (region
= all_tm_regions
; region
; region
= region
->next
)
2684 queue
= get_tm_region_blocks (region
->entry_block
,
2685 region
->exit_blocks
,
2688 /*stop_at_irr_p=*/true);
2689 for (i
= 0; queue
.iterate (i
, &bb
); ++i
)
2690 bb
->flags
|= BB_IN_TRANSACTION
;
2695 bitmap_obstack_release (&tm_obstack
);
2698 /* Replace the GIMPLE_TRANSACTION in this region with the corresponding
2699 call to BUILT_IN_TM_START. */
2702 expand_transaction (struct tm_region
*region
, void *data ATTRIBUTE_UNUSED
)
2704 tree tm_start
= builtin_decl_explicit (BUILT_IN_TM_START
);
2705 basic_block transaction_bb
= gimple_bb (region
->transaction_stmt
);
2706 tree tm_state
= region
->tm_state
;
2707 tree tm_state_type
= TREE_TYPE (tm_state
);
2708 edge abort_edge
= NULL
;
2709 edge inst_edge
= NULL
;
2710 edge uninst_edge
= NULL
;
2711 edge fallthru_edge
= NULL
;
2713 // Identify the various successors of the transaction start.
2717 FOR_EACH_EDGE (e
, i
, transaction_bb
->succs
)
2719 if (e
->flags
& EDGE_TM_ABORT
)
2721 else if (e
->flags
& EDGE_TM_UNINSTRUMENTED
)
2725 if (e
->flags
& EDGE_FALLTHRU
)
2730 /* ??? There are plenty of bits here we're not computing. */
2732 int subcode
= gimple_transaction_subcode (region
->get_transaction_stmt ());
2734 if (subcode
& GTMA_DOES_GO_IRREVOCABLE
)
2735 flags
|= PR_DOESGOIRREVOCABLE
;
2736 if ((subcode
& GTMA_MAY_ENTER_IRREVOCABLE
) == 0)
2737 flags
|= PR_HASNOIRREVOCABLE
;
2738 /* If the transaction does not have an abort in lexical scope and is not
2739 marked as an outer transaction, then it will never abort. */
2740 if ((subcode
& GTMA_HAVE_ABORT
) == 0 && (subcode
& GTMA_IS_OUTER
) == 0)
2741 flags
|= PR_HASNOABORT
;
2742 if ((subcode
& GTMA_HAVE_STORE
) == 0)
2743 flags
|= PR_READONLY
;
2744 if (inst_edge
&& !(subcode
& GTMA_HAS_NO_INSTRUMENTATION
))
2745 flags
|= PR_INSTRUMENTEDCODE
;
2747 flags
|= PR_UNINSTRUMENTEDCODE
;
2748 if (subcode
& GTMA_IS_OUTER
)
2749 region
->original_transaction_was_outer
= true;
2750 tree t
= build_int_cst (tm_state_type
, flags
);
2751 gcall
*call
= gimple_build_call (tm_start
, 1, t
);
2752 gimple_call_set_lhs (call
, tm_state
);
2753 gimple_set_location (call
, gimple_location (region
->transaction_stmt
));
2755 // Replace the GIMPLE_TRANSACTION with the call to BUILT_IN_TM_START.
2756 gimple_stmt_iterator gsi
= gsi_last_bb (transaction_bb
);
2757 gcc_assert (gsi_stmt (gsi
) == region
->transaction_stmt
);
2758 gsi_insert_before (&gsi
, call
, GSI_SAME_STMT
);
2759 gsi_remove (&gsi
, true);
2760 region
->transaction_stmt
= call
;
2763 // Generate log saves.
2764 if (!tm_log_save_addresses
.is_empty ())
2765 tm_log_emit_saves (region
->entry_block
, transaction_bb
);
2767 // In the beginning, we've no tests to perform on transaction restart.
2768 // Note that after this point, transaction_bb becomes the "most recent
2769 // block containing tests for the transaction".
2770 region
->restart_block
= region
->entry_block
;
2772 // Generate log restores.
2773 if (!tm_log_save_addresses
.is_empty ())
2775 basic_block test_bb
= create_empty_bb (transaction_bb
);
2776 basic_block code_bb
= create_empty_bb (test_bb
);
2777 basic_block join_bb
= create_empty_bb (code_bb
);
2778 add_bb_to_loop (test_bb
, transaction_bb
->loop_father
);
2779 add_bb_to_loop (code_bb
, transaction_bb
->loop_father
);
2780 add_bb_to_loop (join_bb
, transaction_bb
->loop_father
);
2781 if (region
->restart_block
== region
->entry_block
)
2782 region
->restart_block
= test_bb
;
2784 tree t1
= create_tmp_reg (tm_state_type
);
2785 tree t2
= build_int_cst (tm_state_type
, A_RESTORELIVEVARIABLES
);
2786 gimple stmt
= gimple_build_assign (t1
, BIT_AND_EXPR
, tm_state
, t2
);
2787 gimple_stmt_iterator gsi
= gsi_last_bb (test_bb
);
2788 gsi_insert_after (&gsi
, stmt
, GSI_CONTINUE_LINKING
);
2790 t2
= build_int_cst (tm_state_type
, 0);
2791 stmt
= gimple_build_cond (NE_EXPR
, t1
, t2
, NULL
, NULL
);
2792 gsi_insert_after (&gsi
, stmt
, GSI_CONTINUE_LINKING
);
2794 tm_log_emit_restores (region
->entry_block
, code_bb
);
2796 edge ei
= make_edge (transaction_bb
, test_bb
, EDGE_FALLTHRU
);
2797 edge et
= make_edge (test_bb
, code_bb
, EDGE_TRUE_VALUE
);
2798 edge ef
= make_edge (test_bb
, join_bb
, EDGE_FALSE_VALUE
);
2799 redirect_edge_pred (fallthru_edge
, join_bb
);
2801 join_bb
->frequency
= test_bb
->frequency
= transaction_bb
->frequency
;
2802 join_bb
->count
= test_bb
->count
= transaction_bb
->count
;
2804 ei
->probability
= PROB_ALWAYS
;
2805 et
->probability
= PROB_LIKELY
;
2806 ef
->probability
= PROB_UNLIKELY
;
2807 et
->count
= apply_probability (test_bb
->count
, et
->probability
);
2808 ef
->count
= apply_probability (test_bb
->count
, ef
->probability
);
2810 code_bb
->count
= et
->count
;
2811 code_bb
->frequency
= EDGE_FREQUENCY (et
);
2813 transaction_bb
= join_bb
;
2816 // If we have an ABORT edge, create a test to perform the abort.
2819 basic_block test_bb
= create_empty_bb (transaction_bb
);
2820 add_bb_to_loop (test_bb
, transaction_bb
->loop_father
);
2821 if (region
->restart_block
== region
->entry_block
)
2822 region
->restart_block
= test_bb
;
2824 tree t1
= create_tmp_reg (tm_state_type
);
2825 tree t2
= build_int_cst (tm_state_type
, A_ABORTTRANSACTION
);
2826 gimple stmt
= gimple_build_assign (t1
, BIT_AND_EXPR
, tm_state
, t2
);
2827 gimple_stmt_iterator gsi
= gsi_last_bb (test_bb
);
2828 gsi_insert_after (&gsi
, stmt
, GSI_CONTINUE_LINKING
);
2830 t2
= build_int_cst (tm_state_type
, 0);
2831 stmt
= gimple_build_cond (NE_EXPR
, t1
, t2
, NULL
, NULL
);
2832 gsi_insert_after (&gsi
, stmt
, GSI_CONTINUE_LINKING
);
2834 edge ei
= make_edge (transaction_bb
, test_bb
, EDGE_FALLTHRU
);
2835 test_bb
->frequency
= transaction_bb
->frequency
;
2836 test_bb
->count
= transaction_bb
->count
;
2837 ei
->probability
= PROB_ALWAYS
;
2839 // Not abort edge. If both are live, chose one at random as we'll
2840 // we'll be fixing that up below.
2841 redirect_edge_pred (fallthru_edge
, test_bb
);
2842 fallthru_edge
->flags
= EDGE_FALSE_VALUE
;
2843 fallthru_edge
->probability
= PROB_VERY_LIKELY
;
2844 fallthru_edge
->count
2845 = apply_probability (test_bb
->count
, fallthru_edge
->probability
);
2848 redirect_edge_pred (abort_edge
, test_bb
);
2849 abort_edge
->flags
= EDGE_TRUE_VALUE
;
2850 abort_edge
->probability
= PROB_VERY_UNLIKELY
;
2852 = apply_probability (test_bb
->count
, abort_edge
->probability
);
2854 transaction_bb
= test_bb
;
2857 // If we have both instrumented and uninstrumented code paths, select one.
2858 if (inst_edge
&& uninst_edge
)
2860 basic_block test_bb
= create_empty_bb (transaction_bb
);
2861 add_bb_to_loop (test_bb
, transaction_bb
->loop_father
);
2862 if (region
->restart_block
== region
->entry_block
)
2863 region
->restart_block
= test_bb
;
2865 tree t1
= create_tmp_reg (tm_state_type
);
2866 tree t2
= build_int_cst (tm_state_type
, A_RUNUNINSTRUMENTEDCODE
);
2868 gimple stmt
= gimple_build_assign (t1
, BIT_AND_EXPR
, tm_state
, t2
);
2869 gimple_stmt_iterator gsi
= gsi_last_bb (test_bb
);
2870 gsi_insert_after (&gsi
, stmt
, GSI_CONTINUE_LINKING
);
2872 t2
= build_int_cst (tm_state_type
, 0);
2873 stmt
= gimple_build_cond (NE_EXPR
, t1
, t2
, NULL
, NULL
);
2874 gsi_insert_after (&gsi
, stmt
, GSI_CONTINUE_LINKING
);
2876 // Create the edge into test_bb first, as we want to copy values
2877 // out of the fallthru edge.
2878 edge e
= make_edge (transaction_bb
, test_bb
, fallthru_edge
->flags
);
2879 e
->probability
= fallthru_edge
->probability
;
2880 test_bb
->count
= e
->count
= fallthru_edge
->count
;
2881 test_bb
->frequency
= EDGE_FREQUENCY (e
);
2883 // Now update the edges to the inst/uninist implementations.
2884 // For now assume that the paths are equally likely. When using HTM,
2885 // we'll try the uninst path first and fallback to inst path if htm
2886 // buffers are exceeded. Without HTM we start with the inst path and
2887 // use the uninst path when falling back to serial mode.
2888 redirect_edge_pred (inst_edge
, test_bb
);
2889 inst_edge
->flags
= EDGE_FALSE_VALUE
;
2890 inst_edge
->probability
= REG_BR_PROB_BASE
/ 2;
2892 = apply_probability (test_bb
->count
, inst_edge
->probability
);
2894 redirect_edge_pred (uninst_edge
, test_bb
);
2895 uninst_edge
->flags
= EDGE_TRUE_VALUE
;
2896 uninst_edge
->probability
= REG_BR_PROB_BASE
/ 2;
2898 = apply_probability (test_bb
->count
, uninst_edge
->probability
);
2901 // If we have no previous special cases, and we have PHIs at the beginning
2902 // of the atomic region, this means we have a loop at the beginning of the
2903 // atomic region that shares the first block. This can cause problems with
2904 // the transaction restart abnormal edges to be added in the tm_edges pass.
2905 // Solve this by adding a new empty block to receive the abnormal edges.
2906 if (region
->restart_block
== region
->entry_block
2907 && phi_nodes (region
->entry_block
))
2909 basic_block empty_bb
= create_empty_bb (transaction_bb
);
2910 region
->restart_block
= empty_bb
;
2911 add_bb_to_loop (empty_bb
, transaction_bb
->loop_father
);
2913 redirect_edge_pred (fallthru_edge
, empty_bb
);
2914 make_edge (transaction_bb
, empty_bb
, EDGE_FALLTHRU
);
2920 /* Generate the temporary to be used for the return value of
2921 BUILT_IN_TM_START. */
2924 generate_tm_state (struct tm_region
*region
, void *data ATTRIBUTE_UNUSED
)
2926 tree tm_start
= builtin_decl_explicit (BUILT_IN_TM_START
);
2928 create_tmp_reg (TREE_TYPE (TREE_TYPE (tm_start
)), "tm_state");
2930 // Reset the subcode, post optimizations. We'll fill this in
2931 // again as we process blocks.
2932 if (region
->exit_blocks
)
2934 gtransaction
*transaction_stmt
= region
->get_transaction_stmt ();
2935 unsigned int subcode
= gimple_transaction_subcode (transaction_stmt
);
2937 if (subcode
& GTMA_DOES_GO_IRREVOCABLE
)
2938 subcode
&= (GTMA_DECLARATION_MASK
| GTMA_DOES_GO_IRREVOCABLE
2939 | GTMA_MAY_ENTER_IRREVOCABLE
2940 | GTMA_HAS_NO_INSTRUMENTATION
);
2942 subcode
&= GTMA_DECLARATION_MASK
;
2943 gimple_transaction_set_subcode (transaction_stmt
, subcode
);
2949 // Propagate flags from inner transactions outwards.
2951 propagate_tm_flags_out (struct tm_region
*region
)
2955 propagate_tm_flags_out (region
->inner
);
2957 if (region
->outer
&& region
->outer
->transaction_stmt
)
2960 = gimple_transaction_subcode (region
->get_transaction_stmt ());
2961 s
&= (GTMA_HAVE_ABORT
| GTMA_HAVE_LOAD
| GTMA_HAVE_STORE
2962 | GTMA_MAY_ENTER_IRREVOCABLE
);
2963 s
|= gimple_transaction_subcode (region
->outer
->get_transaction_stmt ());
2964 gimple_transaction_set_subcode (region
->outer
->get_transaction_stmt (),
2968 propagate_tm_flags_out (region
->next
);
2971 /* Entry point to the MARK phase of TM expansion. Here we replace
2972 transactional memory statements with calls to builtins, and function
2973 calls with their transactional clones (if available). But we don't
2974 yet lower GIMPLE_TRANSACTION or add the transaction restart back-edges. */
2977 execute_tm_mark (void)
2979 pending_edge_inserts_p
= false;
2981 expand_regions (all_tm_regions
, generate_tm_state
, NULL
,
2982 /*traverse_clones=*/true);
2986 vec
<tm_region_p
> bb_regions
2987 = get_bb_regions_instrumented (/*traverse_clones=*/true,
2988 /*include_uninstrumented_p=*/false);
2989 struct tm_region
*r
;
2992 // Expand memory operations into calls into the runtime.
2993 // This collects log entries as well.
2994 FOR_EACH_VEC_ELT (bb_regions
, i
, r
)
2998 if (r
->transaction_stmt
)
3001 = gimple_transaction_subcode (r
->get_transaction_stmt ());
3003 /* If we're sure to go irrevocable, there won't be
3004 anything to expand, since the run-time will go
3005 irrevocable right away. */
3006 if (sub
& GTMA_DOES_GO_IRREVOCABLE
3007 && sub
& GTMA_MAY_ENTER_IRREVOCABLE
)
3010 expand_block_tm (r
, BASIC_BLOCK_FOR_FN (cfun
, i
));
3014 bb_regions
.release ();
3016 // Propagate flags from inner transactions outwards.
3017 propagate_tm_flags_out (all_tm_regions
);
3019 // Expand GIMPLE_TRANSACTIONs into calls into the runtime.
3020 expand_regions (all_tm_regions
, expand_transaction
, NULL
,
3021 /*traverse_clones=*/false);
3026 if (pending_edge_inserts_p
)
3027 gsi_commit_edge_inserts ();
3028 free_dominance_info (CDI_DOMINATORS
);
3034 const pass_data pass_data_tm_mark
=
3036 GIMPLE_PASS
, /* type */
3037 "tmmark", /* name */
3038 OPTGROUP_NONE
, /* optinfo_flags */
3039 TV_TRANS_MEM
, /* tv_id */
3040 ( PROP_ssa
| PROP_cfg
), /* properties_required */
3041 0, /* properties_provided */
3042 0, /* properties_destroyed */
3043 0, /* todo_flags_start */
3044 TODO_update_ssa
, /* todo_flags_finish */
3047 class pass_tm_mark
: public gimple_opt_pass
3050 pass_tm_mark (gcc::context
*ctxt
)
3051 : gimple_opt_pass (pass_data_tm_mark
, ctxt
)
3054 /* opt_pass methods: */
3055 virtual unsigned int execute (function
*) { return execute_tm_mark (); }
3057 }; // class pass_tm_mark
3062 make_pass_tm_mark (gcc::context
*ctxt
)
3064 return new pass_tm_mark (ctxt
);
3068 /* Create an abnormal edge from STMT at iter, splitting the block
3069 as necessary. Adjust *PNEXT as needed for the split block. */
3072 split_bb_make_tm_edge (gimple stmt
, basic_block dest_bb
,
3073 gimple_stmt_iterator iter
, gimple_stmt_iterator
*pnext
)
3075 basic_block bb
= gimple_bb (stmt
);
3076 if (!gsi_one_before_end_p (iter
))
3078 edge e
= split_block (bb
, stmt
);
3079 *pnext
= gsi_start_bb (e
->dest
);
3081 make_edge (bb
, dest_bb
, EDGE_ABNORMAL
);
3083 // Record the need for the edge for the benefit of the rtl passes.
3084 if (cfun
->gimple_df
->tm_restart
== NULL
)
3085 cfun
->gimple_df
->tm_restart
3086 = hash_table
<tm_restart_hasher
>::create_ggc (31);
3088 struct tm_restart_node dummy
;
3090 dummy
.label_or_list
= gimple_block_label (dest_bb
);
3092 tm_restart_node
**slot
= cfun
->gimple_df
->tm_restart
->find_slot (&dummy
,
3094 struct tm_restart_node
*n
= *slot
;
3097 n
= ggc_alloc
<tm_restart_node
> ();
3102 tree old
= n
->label_or_list
;
3103 if (TREE_CODE (old
) == LABEL_DECL
)
3104 old
= tree_cons (NULL
, old
, NULL
);
3105 n
->label_or_list
= tree_cons (NULL
, dummy
.label_or_list
, old
);
3109 /* Split block BB as necessary for every builtin function we added, and
3110 wire up the abnormal back edges implied by the transaction restart. */
3113 expand_block_edges (struct tm_region
*const region
, basic_block bb
)
3115 gimple_stmt_iterator gsi
, next_gsi
;
3117 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi
= next_gsi
)
3119 gimple stmt
= gsi_stmt (gsi
);
3123 gsi_next (&next_gsi
);
3125 // ??? Shouldn't we split for any non-pure, non-irrevocable function?
3126 call_stmt
= dyn_cast
<gcall
*> (stmt
);
3128 || (gimple_call_flags (call_stmt
) & ECF_TM_BUILTIN
) == 0)
3131 if (DECL_FUNCTION_CODE (gimple_call_fndecl (call_stmt
))
3132 == BUILT_IN_TM_ABORT
)
3134 // If we have a ``_transaction_cancel [[outer]]'', there is only
3135 // one abnormal edge: to the transaction marked OUTER.
3136 // All compiler-generated instances of BUILT_IN_TM_ABORT have a
3137 // constant argument, which we can examine here. Users invoking
3138 // TM_ABORT directly get what they deserve.
3139 tree arg
= gimple_call_arg (call_stmt
, 0);
3140 if (TREE_CODE (arg
) == INTEGER_CST
3141 && (TREE_INT_CST_LOW (arg
) & AR_OUTERABORT
) != 0
3142 && !decl_is_tm_clone (current_function_decl
))
3144 // Find the GTMA_IS_OUTER transaction.
3145 for (struct tm_region
*o
= region
; o
; o
= o
->outer
)
3146 if (o
->original_transaction_was_outer
)
3148 split_bb_make_tm_edge (call_stmt
, o
->restart_block
,
3153 // Otherwise, the front-end should have semantically checked
3154 // outer aborts, but in either case the target region is not
3155 // within this function.
3159 // Non-outer, TM aborts have an abnormal edge to the inner-most
3160 // transaction, the one being aborted;
3161 split_bb_make_tm_edge (call_stmt
, region
->restart_block
, gsi
,
3165 // All TM builtins have an abnormal edge to the outer-most transaction.
3166 // We never restart inner transactions. For tm clones, we know a-priori
3167 // that the outer-most transaction is outside the function.
3168 if (decl_is_tm_clone (current_function_decl
))
3171 if (cfun
->gimple_df
->tm_restart
== NULL
)
3172 cfun
->gimple_df
->tm_restart
3173 = hash_table
<tm_restart_hasher
>::create_ggc (31);
3175 // All TM builtins have an abnormal edge to the outer-most transaction.
3176 // We never restart inner transactions.
3177 for (struct tm_region
*o
= region
; o
; o
= o
->outer
)
3180 split_bb_make_tm_edge (call_stmt
, o
->restart_block
, gsi
, &next_gsi
);
3184 // Delete any tail-call annotation that may have been added.
3185 // The tail-call pass may have mis-identified the commit as being
3186 // a candidate because we had not yet added this restart edge.
3187 gimple_call_set_tail (call_stmt
, false);
3191 /* Entry point to the final expansion of transactional nodes. */
3195 const pass_data pass_data_tm_edges
=
3197 GIMPLE_PASS
, /* type */
3198 "tmedge", /* name */
3199 OPTGROUP_NONE
, /* optinfo_flags */
3200 TV_TRANS_MEM
, /* tv_id */
3201 ( PROP_ssa
| PROP_cfg
), /* properties_required */
3202 0, /* properties_provided */
3203 0, /* properties_destroyed */
3204 0, /* todo_flags_start */
3205 TODO_update_ssa
, /* todo_flags_finish */
3208 class pass_tm_edges
: public gimple_opt_pass
3211 pass_tm_edges (gcc::context
*ctxt
)
3212 : gimple_opt_pass (pass_data_tm_edges
, ctxt
)
3215 /* opt_pass methods: */
3216 virtual unsigned int execute (function
*);
3218 }; // class pass_tm_edges
3221 pass_tm_edges::execute (function
*fun
)
3223 vec
<tm_region_p
> bb_regions
3224 = get_bb_regions_instrumented (/*traverse_clones=*/false,
3225 /*include_uninstrumented_p=*/true);
3226 struct tm_region
*r
;
3229 FOR_EACH_VEC_ELT (bb_regions
, i
, r
)
3231 expand_block_edges (r
, BASIC_BLOCK_FOR_FN (fun
, i
));
3233 bb_regions
.release ();
3235 /* We've got to release the dominance info now, to indicate that it
3236 must be rebuilt completely. Otherwise we'll crash trying to update
3237 the SSA web in the TODO section following this pass. */
3238 free_dominance_info (CDI_DOMINATORS
);
3239 bitmap_obstack_release (&tm_obstack
);
3240 all_tm_regions
= NULL
;
3248 make_pass_tm_edges (gcc::context
*ctxt
)
3250 return new pass_tm_edges (ctxt
);
3253 /* Helper function for expand_regions. Expand REGION and recurse to
3254 the inner region. Call CALLBACK on each region. CALLBACK returns
3255 NULL to continue the traversal, otherwise a non-null value which
3256 this function will return as well. TRAVERSE_CLONES is true if we
3257 should traverse transactional clones. */
3260 expand_regions_1 (struct tm_region
*region
,
3261 void *(*callback
)(struct tm_region
*, void *),
3263 bool traverse_clones
)
3265 void *retval
= NULL
;
3266 if (region
->exit_blocks
3267 || (traverse_clones
&& decl_is_tm_clone (current_function_decl
)))
3269 retval
= callback (region
, data
);
3275 retval
= expand_regions (region
->inner
, callback
, data
, traverse_clones
);
3282 /* Traverse the regions enclosed and including REGION. Execute
3283 CALLBACK for each region, passing DATA. CALLBACK returns NULL to
3284 continue the traversal, otherwise a non-null value which this
3285 function will return as well. TRAVERSE_CLONES is true if we should
3286 traverse transactional clones. */
3289 expand_regions (struct tm_region
*region
,
3290 void *(*callback
)(struct tm_region
*, void *),
3292 bool traverse_clones
)
3294 void *retval
= NULL
;
3297 retval
= expand_regions_1 (region
, callback
, data
, traverse_clones
);
3300 region
= region
->next
;
3306 /* A unique TM memory operation. */
3307 typedef struct tm_memop
3309 /* Unique ID that all memory operations to the same location have. */
3310 unsigned int value_id
;
3311 /* Address of load/store. */
3315 /* TM memory operation hashtable helpers. */
3317 struct tm_memop_hasher
: free_ptr_hash
<tm_memop
>
3319 static inline hashval_t
hash (const tm_memop
*);
3320 static inline bool equal (const tm_memop
*, const tm_memop
*);
3323 /* Htab support. Return a hash value for a `tm_memop'. */
3325 tm_memop_hasher::hash (const tm_memop
*mem
)
3327 tree addr
= mem
->addr
;
3328 /* We drill down to the SSA_NAME/DECL for the hash, but equality is
3329 actually done with operand_equal_p (see tm_memop_eq). */
3330 if (TREE_CODE (addr
) == ADDR_EXPR
)
3331 addr
= TREE_OPERAND (addr
, 0);
3332 return iterative_hash_expr (addr
, 0);
3335 /* Htab support. Return true if two tm_memop's are the same. */
3337 tm_memop_hasher::equal (const tm_memop
*mem1
, const tm_memop
*mem2
)
3339 return operand_equal_p (mem1
->addr
, mem2
->addr
, 0);
3342 /* Sets for solving data flow equations in the memory optimization pass. */
3343 struct tm_memopt_bitmaps
3345 /* Stores available to this BB upon entry. Basically, stores that
3346 dominate this BB. */
3347 bitmap store_avail_in
;
3348 /* Stores available at the end of this BB. */
3349 bitmap store_avail_out
;
3350 bitmap store_antic_in
;
3351 bitmap store_antic_out
;
3352 /* Reads available to this BB upon entry. Basically, reads that
3353 dominate this BB. */
3354 bitmap read_avail_in
;
3355 /* Reads available at the end of this BB. */
3356 bitmap read_avail_out
;
3357 /* Reads performed in this BB. */
3359 /* Writes performed in this BB. */
3362 /* Temporary storage for pass. */
3363 /* Is the current BB in the worklist? */
3364 bool avail_in_worklist_p
;
3365 /* Have we visited this BB? */
3369 static bitmap_obstack tm_memopt_obstack
;
3371 /* Unique counter for TM loads and stores. Loads and stores of the
3372 same address get the same ID. */
3373 static unsigned int tm_memopt_value_id
;
3374 static hash_table
<tm_memop_hasher
> *tm_memopt_value_numbers
;
3376 #define STORE_AVAIL_IN(BB) \
3377 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_avail_in
3378 #define STORE_AVAIL_OUT(BB) \
3379 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_avail_out
3380 #define STORE_ANTIC_IN(BB) \
3381 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_antic_in
3382 #define STORE_ANTIC_OUT(BB) \
3383 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_antic_out
3384 #define READ_AVAIL_IN(BB) \
3385 ((struct tm_memopt_bitmaps *) ((BB)->aux))->read_avail_in
3386 #define READ_AVAIL_OUT(BB) \
3387 ((struct tm_memopt_bitmaps *) ((BB)->aux))->read_avail_out
3388 #define READ_LOCAL(BB) \
3389 ((struct tm_memopt_bitmaps *) ((BB)->aux))->read_local
3390 #define STORE_LOCAL(BB) \
3391 ((struct tm_memopt_bitmaps *) ((BB)->aux))->store_local
3392 #define AVAIL_IN_WORKLIST_P(BB) \
3393 ((struct tm_memopt_bitmaps *) ((BB)->aux))->avail_in_worklist_p
3394 #define BB_VISITED_P(BB) \
3395 ((struct tm_memopt_bitmaps *) ((BB)->aux))->visited_p
3397 /* Given a TM load/store in STMT, return the value number for the address
3401 tm_memopt_value_number (gimple stmt
, enum insert_option op
)
3403 struct tm_memop tmpmem
, *mem
;
3406 gcc_assert (is_tm_load (stmt
) || is_tm_store (stmt
));
3407 tmpmem
.addr
= gimple_call_arg (stmt
, 0);
3408 slot
= tm_memopt_value_numbers
->find_slot (&tmpmem
, op
);
3411 else if (op
== INSERT
)
3413 mem
= XNEW (struct tm_memop
);
3415 mem
->value_id
= tm_memopt_value_id
++;
3416 mem
->addr
= tmpmem
.addr
;
3420 return mem
->value_id
;
3423 /* Accumulate TM memory operations in BB into STORE_LOCAL and READ_LOCAL. */
3426 tm_memopt_accumulate_memops (basic_block bb
)
3428 gimple_stmt_iterator gsi
;
3430 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3432 gimple stmt
= gsi_stmt (gsi
);
3436 if (is_tm_store (stmt
))
3437 bits
= STORE_LOCAL (bb
);
3438 else if (is_tm_load (stmt
))
3439 bits
= READ_LOCAL (bb
);
3443 loc
= tm_memopt_value_number (stmt
, INSERT
);
3444 bitmap_set_bit (bits
, loc
);
3447 fprintf (dump_file
, "TM memopt (%s): value num=%d, BB=%d, addr=",
3448 is_tm_load (stmt
) ? "LOAD" : "STORE", loc
,
3449 gimple_bb (stmt
)->index
);
3450 print_generic_expr (dump_file
, gimple_call_arg (stmt
, 0), 0);
3451 fprintf (dump_file
, "\n");
3456 /* Prettily dump one of the memopt sets. BITS is the bitmap to dump. */
3459 dump_tm_memopt_set (const char *set_name
, bitmap bits
)
3463 const char *comma
= "";
3465 fprintf (dump_file
, "TM memopt: %s: [", set_name
);
3466 EXECUTE_IF_SET_IN_BITMAP (bits
, 0, i
, bi
)
3468 hash_table
<tm_memop_hasher
>::iterator hi
;
3469 struct tm_memop
*mem
= NULL
;
3471 /* Yeah, yeah, yeah. Whatever. This is just for debugging. */
3472 FOR_EACH_HASH_TABLE_ELEMENT (*tm_memopt_value_numbers
, mem
, tm_memop_t
, hi
)
3473 if (mem
->value_id
== i
)
3475 gcc_assert (mem
->value_id
== i
);
3476 fprintf (dump_file
, "%s", comma
);
3478 print_generic_expr (dump_file
, mem
->addr
, 0);
3480 fprintf (dump_file
, "]\n");
3483 /* Prettily dump all of the memopt sets in BLOCKS. */
3486 dump_tm_memopt_sets (vec
<basic_block
> blocks
)
3491 for (i
= 0; blocks
.iterate (i
, &bb
); ++i
)
3493 fprintf (dump_file
, "------------BB %d---------\n", bb
->index
);
3494 dump_tm_memopt_set ("STORE_LOCAL", STORE_LOCAL (bb
));
3495 dump_tm_memopt_set ("READ_LOCAL", READ_LOCAL (bb
));
3496 dump_tm_memopt_set ("STORE_AVAIL_IN", STORE_AVAIL_IN (bb
));
3497 dump_tm_memopt_set ("STORE_AVAIL_OUT", STORE_AVAIL_OUT (bb
));
3498 dump_tm_memopt_set ("READ_AVAIL_IN", READ_AVAIL_IN (bb
));
3499 dump_tm_memopt_set ("READ_AVAIL_OUT", READ_AVAIL_OUT (bb
));
3503 /* Compute {STORE,READ}_AVAIL_IN for the basic block BB. */
3506 tm_memopt_compute_avin (basic_block bb
)
3511 /* Seed with the AVOUT of any predecessor. */
3512 for (ix
= 0; ix
< EDGE_COUNT (bb
->preds
); ix
++)
3514 e
= EDGE_PRED (bb
, ix
);
3515 /* Make sure we have already visited this BB, and is thus
3518 If e->src->aux is NULL, this predecessor is actually on an
3519 enclosing transaction. We only care about the current
3520 transaction, so ignore it. */
3521 if (e
->src
->aux
&& BB_VISITED_P (e
->src
))
3523 bitmap_copy (STORE_AVAIL_IN (bb
), STORE_AVAIL_OUT (e
->src
));
3524 bitmap_copy (READ_AVAIL_IN (bb
), READ_AVAIL_OUT (e
->src
));
3529 for (; ix
< EDGE_COUNT (bb
->preds
); ix
++)
3531 e
= EDGE_PRED (bb
, ix
);
3532 if (e
->src
->aux
&& BB_VISITED_P (e
->src
))
3534 bitmap_and_into (STORE_AVAIL_IN (bb
), STORE_AVAIL_OUT (e
->src
));
3535 bitmap_and_into (READ_AVAIL_IN (bb
), READ_AVAIL_OUT (e
->src
));
3539 BB_VISITED_P (bb
) = true;
3542 /* Compute the STORE_ANTIC_IN for the basic block BB. */
3545 tm_memopt_compute_antin (basic_block bb
)
3550 /* Seed with the ANTIC_OUT of any successor. */
3551 for (ix
= 0; ix
< EDGE_COUNT (bb
->succs
); ix
++)
3553 e
= EDGE_SUCC (bb
, ix
);
3554 /* Make sure we have already visited this BB, and is thus
3556 if (BB_VISITED_P (e
->dest
))
3558 bitmap_copy (STORE_ANTIC_IN (bb
), STORE_ANTIC_OUT (e
->dest
));
3563 for (; ix
< EDGE_COUNT (bb
->succs
); ix
++)
3565 e
= EDGE_SUCC (bb
, ix
);
3566 if (BB_VISITED_P (e
->dest
))
3567 bitmap_and_into (STORE_ANTIC_IN (bb
), STORE_ANTIC_OUT (e
->dest
));
3570 BB_VISITED_P (bb
) = true;
3573 /* Compute the AVAIL sets for every basic block in BLOCKS.
3575 We compute {STORE,READ}_AVAIL_{OUT,IN} as follows:
3577 AVAIL_OUT[bb] = union (AVAIL_IN[bb], LOCAL[bb])
3578 AVAIL_IN[bb] = intersect (AVAIL_OUT[predecessors])
3580 This is basically what we do in lcm's compute_available(), but here
3581 we calculate two sets of sets (one for STOREs and one for READs),
3582 and we work on a region instead of the entire CFG.
3584 REGION is the TM region.
3585 BLOCKS are the basic blocks in the region. */
3588 tm_memopt_compute_available (struct tm_region
*region
,
3589 vec
<basic_block
> blocks
)
3592 basic_block
*worklist
, *qin
, *qout
, *qend
, bb
;
3593 unsigned int qlen
, i
;
3597 /* Allocate a worklist array/queue. Entries are only added to the
3598 list if they were not already on the list. So the size is
3599 bounded by the number of basic blocks in the region. */
3600 qlen
= blocks
.length () - 1;
3601 qin
= qout
= worklist
=
3602 XNEWVEC (basic_block
, qlen
);
3604 /* Put every block in the region on the worklist. */
3605 for (i
= 0; blocks
.iterate (i
, &bb
); ++i
)
3607 /* Seed AVAIL_OUT with the LOCAL set. */
3608 bitmap_ior_into (STORE_AVAIL_OUT (bb
), STORE_LOCAL (bb
));
3609 bitmap_ior_into (READ_AVAIL_OUT (bb
), READ_LOCAL (bb
));
3611 AVAIL_IN_WORKLIST_P (bb
) = true;
3612 /* No need to insert the entry block, since it has an AVIN of
3613 null, and an AVOUT that has already been seeded in. */
3614 if (bb
!= region
->entry_block
)
3618 /* The entry block has been initialized with the local sets. */
3619 BB_VISITED_P (region
->entry_block
) = true;
3622 qend
= &worklist
[qlen
];
3624 /* Iterate until the worklist is empty. */
3627 /* Take the first entry off the worklist. */
3634 /* This block can be added to the worklist again if necessary. */
3635 AVAIL_IN_WORKLIST_P (bb
) = false;
3636 tm_memopt_compute_avin (bb
);
3638 /* Note: We do not add the LOCAL sets here because we already
3639 seeded the AVAIL_OUT sets with them. */
3640 changed
= bitmap_ior_into (STORE_AVAIL_OUT (bb
), STORE_AVAIL_IN (bb
));
3641 changed
|= bitmap_ior_into (READ_AVAIL_OUT (bb
), READ_AVAIL_IN (bb
));
3643 && (region
->exit_blocks
== NULL
3644 || !bitmap_bit_p (region
->exit_blocks
, bb
->index
)))
3645 /* If the out state of this block changed, then we need to add
3646 its successors to the worklist if they are not already in. */
3647 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
3648 if (!AVAIL_IN_WORKLIST_P (e
->dest
)
3649 && e
->dest
!= EXIT_BLOCK_PTR_FOR_FN (cfun
))
3652 AVAIL_IN_WORKLIST_P (e
->dest
) = true;
3663 dump_tm_memopt_sets (blocks
);
3666 /* Compute ANTIC sets for every basic block in BLOCKS.
3668 We compute STORE_ANTIC_OUT as follows:
3670 STORE_ANTIC_OUT[bb] = union(STORE_ANTIC_IN[bb], STORE_LOCAL[bb])
3671 STORE_ANTIC_IN[bb] = intersect(STORE_ANTIC_OUT[successors])
3673 REGION is the TM region.
3674 BLOCKS are the basic blocks in the region. */
3677 tm_memopt_compute_antic (struct tm_region
*region
,
3678 vec
<basic_block
> blocks
)
3681 basic_block
*worklist
, *qin
, *qout
, *qend
, bb
;
3686 /* Allocate a worklist array/queue. Entries are only added to the
3687 list if they were not already on the list. So the size is
3688 bounded by the number of basic blocks in the region. */
3689 qin
= qout
= worklist
= XNEWVEC (basic_block
, blocks
.length ());
3691 for (qlen
= 0, i
= blocks
.length () - 1; i
>= 0; --i
)
3695 /* Seed ANTIC_OUT with the LOCAL set. */
3696 bitmap_ior_into (STORE_ANTIC_OUT (bb
), STORE_LOCAL (bb
));
3698 /* Put every block in the region on the worklist. */
3699 AVAIL_IN_WORKLIST_P (bb
) = true;
3700 /* No need to insert exit blocks, since their ANTIC_IN is NULL,
3701 and their ANTIC_OUT has already been seeded in. */
3702 if (region
->exit_blocks
3703 && !bitmap_bit_p (region
->exit_blocks
, bb
->index
))
3710 /* The exit blocks have been initialized with the local sets. */
3711 if (region
->exit_blocks
)
3715 EXECUTE_IF_SET_IN_BITMAP (region
->exit_blocks
, 0, i
, bi
)
3716 BB_VISITED_P (BASIC_BLOCK_FOR_FN (cfun
, i
)) = true;
3720 qend
= &worklist
[qlen
];
3722 /* Iterate until the worklist is empty. */
3725 /* Take the first entry off the worklist. */
3732 /* This block can be added to the worklist again if necessary. */
3733 AVAIL_IN_WORKLIST_P (bb
) = false;
3734 tm_memopt_compute_antin (bb
);
3736 /* Note: We do not add the LOCAL sets here because we already
3737 seeded the ANTIC_OUT sets with them. */
3738 if (bitmap_ior_into (STORE_ANTIC_OUT (bb
), STORE_ANTIC_IN (bb
))
3739 && bb
!= region
->entry_block
)
3740 /* If the out state of this block changed, then we need to add
3741 its predecessors to the worklist if they are not already in. */
3742 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
3743 if (!AVAIL_IN_WORKLIST_P (e
->src
))
3746 AVAIL_IN_WORKLIST_P (e
->src
) = true;
3757 dump_tm_memopt_sets (blocks
);
3760 /* Offsets of load variants from TM_LOAD. For example,
3761 BUILT_IN_TM_LOAD_RAR* is an offset of 1 from BUILT_IN_TM_LOAD*.
3762 See gtm-builtins.def. */
3763 #define TRANSFORM_RAR 1
3764 #define TRANSFORM_RAW 2
3765 #define TRANSFORM_RFW 3
3766 /* Offsets of store variants from TM_STORE. */
3767 #define TRANSFORM_WAR 1
3768 #define TRANSFORM_WAW 2
3770 /* Inform about a load/store optimization. */
3773 dump_tm_memopt_transform (gimple stmt
)
3777 fprintf (dump_file
, "TM memopt: transforming: ");
3778 print_gimple_stmt (dump_file
, stmt
, 0, 0);
3779 fprintf (dump_file
, "\n");
3783 /* Perform a read/write optimization. Replaces the TM builtin in STMT
3784 by a builtin that is OFFSET entries down in the builtins table in
3785 gtm-builtins.def. */
3788 tm_memopt_transform_stmt (unsigned int offset
,
3790 gimple_stmt_iterator
*gsi
)
3792 tree fn
= gimple_call_fn (stmt
);
3793 gcc_assert (TREE_CODE (fn
) == ADDR_EXPR
);
3794 TREE_OPERAND (fn
, 0)
3795 = builtin_decl_explicit ((enum built_in_function
)
3796 (DECL_FUNCTION_CODE (TREE_OPERAND (fn
, 0))
3798 gimple_call_set_fn (stmt
, fn
);
3799 gsi_replace (gsi
, stmt
, true);
3800 dump_tm_memopt_transform (stmt
);
3803 /* Perform the actual TM memory optimization transformations in the
3804 basic blocks in BLOCKS. */
3807 tm_memopt_transform_blocks (vec
<basic_block
> blocks
)
3811 gimple_stmt_iterator gsi
;
3813 for (i
= 0; blocks
.iterate (i
, &bb
); ++i
)
3815 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3817 gimple stmt
= gsi_stmt (gsi
);
3818 bitmap read_avail
= READ_AVAIL_IN (bb
);
3819 bitmap store_avail
= STORE_AVAIL_IN (bb
);
3820 bitmap store_antic
= STORE_ANTIC_OUT (bb
);
3823 if (is_tm_simple_load (stmt
))
3825 gcall
*call_stmt
= as_a
<gcall
*> (stmt
);
3826 loc
= tm_memopt_value_number (stmt
, NO_INSERT
);
3827 if (store_avail
&& bitmap_bit_p (store_avail
, loc
))
3828 tm_memopt_transform_stmt (TRANSFORM_RAW
, call_stmt
, &gsi
);
3829 else if (store_antic
&& bitmap_bit_p (store_antic
, loc
))
3831 tm_memopt_transform_stmt (TRANSFORM_RFW
, call_stmt
, &gsi
);
3832 bitmap_set_bit (store_avail
, loc
);
3834 else if (read_avail
&& bitmap_bit_p (read_avail
, loc
))
3835 tm_memopt_transform_stmt (TRANSFORM_RAR
, call_stmt
, &gsi
);
3837 bitmap_set_bit (read_avail
, loc
);
3839 else if (is_tm_simple_store (stmt
))
3841 gcall
*call_stmt
= as_a
<gcall
*> (stmt
);
3842 loc
= tm_memopt_value_number (stmt
, NO_INSERT
);
3843 if (store_avail
&& bitmap_bit_p (store_avail
, loc
))
3844 tm_memopt_transform_stmt (TRANSFORM_WAW
, call_stmt
, &gsi
);
3847 if (read_avail
&& bitmap_bit_p (read_avail
, loc
))
3848 tm_memopt_transform_stmt (TRANSFORM_WAR
, call_stmt
, &gsi
);
3849 bitmap_set_bit (store_avail
, loc
);
3856 /* Return a new set of bitmaps for a BB. */
3858 static struct tm_memopt_bitmaps
*
3859 tm_memopt_init_sets (void)
3861 struct tm_memopt_bitmaps
*b
3862 = XOBNEW (&tm_memopt_obstack
.obstack
, struct tm_memopt_bitmaps
);
3863 b
->store_avail_in
= BITMAP_ALLOC (&tm_memopt_obstack
);
3864 b
->store_avail_out
= BITMAP_ALLOC (&tm_memopt_obstack
);
3865 b
->store_antic_in
= BITMAP_ALLOC (&tm_memopt_obstack
);
3866 b
->store_antic_out
= BITMAP_ALLOC (&tm_memopt_obstack
);
3867 b
->store_avail_out
= BITMAP_ALLOC (&tm_memopt_obstack
);
3868 b
->read_avail_in
= BITMAP_ALLOC (&tm_memopt_obstack
);
3869 b
->read_avail_out
= BITMAP_ALLOC (&tm_memopt_obstack
);
3870 b
->read_local
= BITMAP_ALLOC (&tm_memopt_obstack
);
3871 b
->store_local
= BITMAP_ALLOC (&tm_memopt_obstack
);
3875 /* Free sets computed for each BB. */
3878 tm_memopt_free_sets (vec
<basic_block
> blocks
)
3883 for (i
= 0; blocks
.iterate (i
, &bb
); ++i
)
3887 /* Clear the visited bit for every basic block in BLOCKS. */
3890 tm_memopt_clear_visited (vec
<basic_block
> blocks
)
3895 for (i
= 0; blocks
.iterate (i
, &bb
); ++i
)
3896 BB_VISITED_P (bb
) = false;
3899 /* Replace TM load/stores with hints for the runtime. We handle
3900 things like read-after-write, write-after-read, read-after-read,
3901 read-for-write, etc. */
3904 execute_tm_memopt (void)
3906 struct tm_region
*region
;
3907 vec
<basic_block
> bbs
;
3909 tm_memopt_value_id
= 0;
3910 tm_memopt_value_numbers
= new hash_table
<tm_memop_hasher
> (10);
3912 for (region
= all_tm_regions
; region
; region
= region
->next
)
3914 /* All the TM stores/loads in the current region. */
3918 bitmap_obstack_initialize (&tm_memopt_obstack
);
3920 /* Save all BBs for the current region. */
3921 bbs
= get_tm_region_blocks (region
->entry_block
,
3922 region
->exit_blocks
,
3927 /* Collect all the memory operations. */
3928 for (i
= 0; bbs
.iterate (i
, &bb
); ++i
)
3930 bb
->aux
= tm_memopt_init_sets ();
3931 tm_memopt_accumulate_memops (bb
);
3934 /* Solve data flow equations and transform each block accordingly. */
3935 tm_memopt_clear_visited (bbs
);
3936 tm_memopt_compute_available (region
, bbs
);
3937 tm_memopt_clear_visited (bbs
);
3938 tm_memopt_compute_antic (region
, bbs
);
3939 tm_memopt_transform_blocks (bbs
);
3941 tm_memopt_free_sets (bbs
);
3943 bitmap_obstack_release (&tm_memopt_obstack
);
3944 tm_memopt_value_numbers
->empty ();
3947 delete tm_memopt_value_numbers
;
3948 tm_memopt_value_numbers
= NULL
;
3954 const pass_data pass_data_tm_memopt
=
3956 GIMPLE_PASS
, /* type */
3957 "tmmemopt", /* name */
3958 OPTGROUP_NONE
, /* optinfo_flags */
3959 TV_TRANS_MEM
, /* tv_id */
3960 ( PROP_ssa
| PROP_cfg
), /* properties_required */
3961 0, /* properties_provided */
3962 0, /* properties_destroyed */
3963 0, /* todo_flags_start */
3964 0, /* todo_flags_finish */
3967 class pass_tm_memopt
: public gimple_opt_pass
3970 pass_tm_memopt (gcc::context
*ctxt
)
3971 : gimple_opt_pass (pass_data_tm_memopt
, ctxt
)
3974 /* opt_pass methods: */
3975 virtual bool gate (function
*) { return flag_tm
&& optimize
> 0; }
3976 virtual unsigned int execute (function
*) { return execute_tm_memopt (); }
3978 }; // class pass_tm_memopt
3983 make_pass_tm_memopt (gcc::context
*ctxt
)
3985 return new pass_tm_memopt (ctxt
);
3989 /* Interprocedual analysis for the creation of transactional clones.
3990 The aim of this pass is to find which functions are referenced in
3991 a non-irrevocable transaction context, and for those over which
3992 we have control (or user directive), create a version of the
3993 function which uses only the transactional interface to reference
3994 protected memories. This analysis proceeds in several steps:
3996 (1) Collect the set of all possible transactional clones:
3998 (a) For all local public functions marked tm_callable, push
3999 it onto the tm_callee queue.
4001 (b) For all local functions, scan for calls in transaction blocks.
4002 Push the caller and callee onto the tm_caller and tm_callee
4003 queues. Count the number of callers for each callee.
4005 (c) For each local function on the callee list, assume we will
4006 create a transactional clone. Push *all* calls onto the
4007 callee queues; count the number of clone callers separately
4008 to the number of original callers.
4010 (2) Propagate irrevocable status up the dominator tree:
4012 (a) Any external function on the callee list that is not marked
4013 tm_callable is irrevocable. Push all callers of such onto
4016 (b) For each function on the worklist, mark each block that
4017 contains an irrevocable call. Use the AND operator to
4018 propagate that mark up the dominator tree.
4020 (c) If we reach the entry block for a possible transactional
4021 clone, then the transactional clone is irrevocable, and
4022 we should not create the clone after all. Push all
4023 callers onto the worklist.
4025 (d) Place tm_irrevocable calls at the beginning of the relevant
4026 blocks. Special case here is the entry block for the entire
4027 transaction region; there we mark it GTMA_DOES_GO_IRREVOCABLE for
4028 the library to begin the region in serial mode. Decrement
4029 the call count for all callees in the irrevocable region.
4031 (3) Create the transactional clones:
4033 Any tm_callee that still has a non-zero call count is cloned.
4036 /* This structure is stored in the AUX field of each cgraph_node. */
4037 struct tm_ipa_cg_data
4039 /* The clone of the function that got created. */
4040 struct cgraph_node
*clone
;
4042 /* The tm regions in the normal function. */
4043 struct tm_region
*all_tm_regions
;
4045 /* The blocks of the normal/clone functions that contain irrevocable
4046 calls, or blocks that are post-dominated by irrevocable calls. */
4047 bitmap irrevocable_blocks_normal
;
4048 bitmap irrevocable_blocks_clone
;
4050 /* The blocks of the normal function that are involved in transactions. */
4051 bitmap transaction_blocks_normal
;
4053 /* The number of callers to the transactional clone of this function
4054 from normal and transactional clones respectively. */
4055 unsigned tm_callers_normal
;
4056 unsigned tm_callers_clone
;
4058 /* True if all calls to this function's transactional clone
4059 are irrevocable. Also automatically true if the function
4060 has no transactional clone. */
4061 bool is_irrevocable
;
4063 /* Flags indicating the presence of this function in various queues. */
4064 bool in_callee_queue
;
4067 /* Flags indicating the kind of scan desired while in the worklist. */
4068 bool want_irr_scan_normal
;
4071 typedef vec
<cgraph_node
*> cgraph_node_queue
;
4073 /* Return the ipa data associated with NODE, allocating zeroed memory
4074 if necessary. TRAVERSE_ALIASES is true if we must traverse aliases
4075 and set *NODE accordingly. */
4077 static struct tm_ipa_cg_data
*
4078 get_cg_data (struct cgraph_node
**node
, bool traverse_aliases
)
4080 struct tm_ipa_cg_data
*d
;
4082 if (traverse_aliases
&& (*node
)->alias
)
4083 *node
= (*node
)->get_alias_target ();
4085 d
= (struct tm_ipa_cg_data
*) (*node
)->aux
;
4089 d
= (struct tm_ipa_cg_data
*)
4090 obstack_alloc (&tm_obstack
.obstack
, sizeof (*d
));
4091 (*node
)->aux
= (void *) d
;
4092 memset (d
, 0, sizeof (*d
));
4098 /* Add NODE to the end of QUEUE, unless IN_QUEUE_P indicates that
4099 it is already present. */
4102 maybe_push_queue (struct cgraph_node
*node
,
4103 cgraph_node_queue
*queue_p
, bool *in_queue_p
)
4108 queue_p
->safe_push (node
);
4112 /* Duplicate the basic blocks in QUEUE for use in the uninstrumented
4113 code path. QUEUE are the basic blocks inside the transaction
4114 represented in REGION.
4116 Later in split_code_paths() we will add the conditional to choose
4117 between the two alternatives. */
4120 ipa_uninstrument_transaction (struct tm_region
*region
,
4121 vec
<basic_block
> queue
)
4123 gimple transaction
= region
->transaction_stmt
;
4124 basic_block transaction_bb
= gimple_bb (transaction
);
4125 int n
= queue
.length ();
4126 basic_block
*new_bbs
= XNEWVEC (basic_block
, n
);
4128 copy_bbs (queue
.address (), n
, new_bbs
, NULL
, 0, NULL
, NULL
, transaction_bb
,
4130 edge e
= make_edge (transaction_bb
, new_bbs
[0], EDGE_TM_UNINSTRUMENTED
);
4131 add_phi_args_after_copy (new_bbs
, n
, e
);
4133 // Now we will have a GIMPLE_ATOMIC with 3 possible edges out of it.
4134 // a) EDGE_FALLTHRU into the transaction
4135 // b) EDGE_TM_ABORT out of the transaction
4136 // c) EDGE_TM_UNINSTRUMENTED into the uninstrumented blocks.
4141 /* A subroutine of ipa_tm_scan_calls_transaction and ipa_tm_scan_calls_clone.
4142 Queue all callees within block BB. */
4145 ipa_tm_scan_calls_block (cgraph_node_queue
*callees_p
,
4146 basic_block bb
, bool for_clone
)
4148 gimple_stmt_iterator gsi
;
4150 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
4152 gimple stmt
= gsi_stmt (gsi
);
4153 if (is_gimple_call (stmt
) && !is_tm_pure_call (stmt
))
4155 tree fndecl
= gimple_call_fndecl (stmt
);
4158 struct tm_ipa_cg_data
*d
;
4160 struct cgraph_node
*node
;
4162 if (is_tm_ending_fndecl (fndecl
))
4164 if (find_tm_replacement_function (fndecl
))
4167 node
= cgraph_node::get (fndecl
);
4168 gcc_assert (node
!= NULL
);
4169 d
= get_cg_data (&node
, true);
4171 pcallers
= (for_clone
? &d
->tm_callers_clone
4172 : &d
->tm_callers_normal
);
4175 maybe_push_queue (node
, callees_p
, &d
->in_callee_queue
);
4181 /* Scan all calls in NODE that are within a transaction region,
4182 and push the resulting nodes into the callee queue. */
4185 ipa_tm_scan_calls_transaction (struct tm_ipa_cg_data
*d
,
4186 cgraph_node_queue
*callees_p
)
4188 struct tm_region
*r
;
4190 d
->transaction_blocks_normal
= BITMAP_ALLOC (&tm_obstack
);
4191 d
->all_tm_regions
= all_tm_regions
;
4193 for (r
= all_tm_regions
; r
; r
= r
->next
)
4195 vec
<basic_block
> bbs
;
4199 bbs
= get_tm_region_blocks (r
->entry_block
, r
->exit_blocks
, NULL
,
4200 d
->transaction_blocks_normal
, false);
4202 // Generate the uninstrumented code path for this transaction.
4203 ipa_uninstrument_transaction (r
, bbs
);
4205 FOR_EACH_VEC_ELT (bbs
, i
, bb
)
4206 ipa_tm_scan_calls_block (callees_p
, bb
, false);
4211 // ??? copy_bbs should maintain cgraph edges for the blocks as it is
4212 // copying them, rather than forcing us to do this externally.
4213 cgraph_edge::rebuild_edges ();
4215 // ??? In ipa_uninstrument_transaction we don't try to update dominators
4216 // because copy_bbs doesn't return a VEC like iterate_fix_dominators expects.
4217 // Instead, just release dominators here so update_ssa recomputes them.
4218 free_dominance_info (CDI_DOMINATORS
);
4220 // When building the uninstrumented code path, copy_bbs will have invoked
4221 // create_new_def_for starting an "ssa update context". There is only one
4222 // instance of this context, so resolve ssa updates before moving on to
4223 // the next function.
4224 update_ssa (TODO_update_ssa
);
4227 /* Scan all calls in NODE as if this is the transactional clone,
4228 and push the destinations into the callee queue. */
4231 ipa_tm_scan_calls_clone (struct cgraph_node
*node
,
4232 cgraph_node_queue
*callees_p
)
4234 struct function
*fn
= DECL_STRUCT_FUNCTION (node
->decl
);
4237 FOR_EACH_BB_FN (bb
, fn
)
4238 ipa_tm_scan_calls_block (callees_p
, bb
, true);
4241 /* The function NODE has been detected to be irrevocable. Push all
4242 of its callers onto WORKLIST for the purpose of re-scanning them. */
4245 ipa_tm_note_irrevocable (struct cgraph_node
*node
,
4246 cgraph_node_queue
*worklist_p
)
4248 struct tm_ipa_cg_data
*d
= get_cg_data (&node
, true);
4249 struct cgraph_edge
*e
;
4251 d
->is_irrevocable
= true;
4253 for (e
= node
->callers
; e
; e
= e
->next_caller
)
4256 struct cgraph_node
*caller
;
4258 /* Don't examine recursive calls. */
4259 if (e
->caller
== node
)
4261 /* Even if we think we can go irrevocable, believe the user
4263 if (is_tm_safe_or_pure (e
->caller
->decl
))
4267 d
= get_cg_data (&caller
, true);
4269 /* Check if the callee is in a transactional region. If so,
4270 schedule the function for normal re-scan as well. */
4271 bb
= gimple_bb (e
->call_stmt
);
4272 gcc_assert (bb
!= NULL
);
4273 if (d
->transaction_blocks_normal
4274 && bitmap_bit_p (d
->transaction_blocks_normal
, bb
->index
))
4275 d
->want_irr_scan_normal
= true;
4277 maybe_push_queue (caller
, worklist_p
, &d
->in_worklist
);
4281 /* A subroutine of ipa_tm_scan_irr_blocks; return true iff any statement
4282 within the block is irrevocable. */
4285 ipa_tm_scan_irr_block (basic_block bb
)
4287 gimple_stmt_iterator gsi
;
4290 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
4292 gimple stmt
= gsi_stmt (gsi
);
4293 switch (gimple_code (stmt
))
4296 if (gimple_assign_single_p (stmt
))
4298 tree lhs
= gimple_assign_lhs (stmt
);
4299 tree rhs
= gimple_assign_rhs1 (stmt
);
4300 if (volatile_var_p (lhs
) || volatile_var_p (rhs
))
4307 tree lhs
= gimple_call_lhs (stmt
);
4308 if (lhs
&& volatile_var_p (lhs
))
4311 if (is_tm_pure_call (stmt
))
4314 fn
= gimple_call_fn (stmt
);
4316 /* Functions with the attribute are by definition irrevocable. */
4317 if (is_tm_irrevocable (fn
))
4320 /* For direct function calls, go ahead and check for replacement
4321 functions, or transitive irrevocable functions. For indirect
4322 functions, we'll ask the runtime. */
4323 if (TREE_CODE (fn
) == ADDR_EXPR
)
4325 struct tm_ipa_cg_data
*d
;
4326 struct cgraph_node
*node
;
4328 fn
= TREE_OPERAND (fn
, 0);
4329 if (is_tm_ending_fndecl (fn
))
4331 if (find_tm_replacement_function (fn
))
4334 node
= cgraph_node::get (fn
);
4335 d
= get_cg_data (&node
, true);
4337 /* Return true if irrevocable, but above all, believe
4339 if (d
->is_irrevocable
4340 && !is_tm_safe_or_pure (fn
))
4347 /* ??? The Approved Method of indicating that an inline
4348 assembly statement is not relevant to the transaction
4349 is to wrap it in a __tm_waiver block. This is not
4350 yet implemented, so we can't check for it. */
4351 if (is_tm_safe (current_function_decl
))
4353 tree t
= build1 (NOP_EXPR
, void_type_node
, size_zero_node
);
4354 SET_EXPR_LOCATION (t
, gimple_location (stmt
));
4355 error ("%Kasm not allowed in %<transaction_safe%> function", t
);
4367 /* For each of the blocks seeded witin PQUEUE, walk the CFG looking
4368 for new irrevocable blocks, marking them in NEW_IRR. Don't bother
4369 scanning past OLD_IRR or EXIT_BLOCKS. */
4372 ipa_tm_scan_irr_blocks (vec
<basic_block
> *pqueue
, bitmap new_irr
,
4373 bitmap old_irr
, bitmap exit_blocks
)
4375 bool any_new_irr
= false;
4378 bitmap visited_blocks
= BITMAP_ALLOC (NULL
);
4382 basic_block bb
= pqueue
->pop ();
4384 /* Don't re-scan blocks we know already are irrevocable. */
4385 if (old_irr
&& bitmap_bit_p (old_irr
, bb
->index
))
4388 if (ipa_tm_scan_irr_block (bb
))
4390 bitmap_set_bit (new_irr
, bb
->index
);
4393 else if (exit_blocks
== NULL
|| !bitmap_bit_p (exit_blocks
, bb
->index
))
4395 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
4396 if (!bitmap_bit_p (visited_blocks
, e
->dest
->index
))
4398 bitmap_set_bit (visited_blocks
, e
->dest
->index
);
4399 pqueue
->safe_push (e
->dest
);
4403 while (!pqueue
->is_empty ());
4405 BITMAP_FREE (visited_blocks
);
4410 /* Propagate the irrevocable property both up and down the dominator tree.
4411 BB is the current block being scanned; EXIT_BLOCKS are the edges of the
4412 TM regions; OLD_IRR are the results of a previous scan of the dominator
4413 tree which has been fully propagated; NEW_IRR is the set of new blocks
4414 which are gaining the irrevocable property during the current scan. */
4417 ipa_tm_propagate_irr (basic_block entry_block
, bitmap new_irr
,
4418 bitmap old_irr
, bitmap exit_blocks
)
4420 vec
<basic_block
> bbs
;
4421 bitmap all_region_blocks
;
4423 /* If this block is in the old set, no need to rescan. */
4424 if (old_irr
&& bitmap_bit_p (old_irr
, entry_block
->index
))
4427 all_region_blocks
= BITMAP_ALLOC (&tm_obstack
);
4428 bbs
= get_tm_region_blocks (entry_block
, exit_blocks
, NULL
,
4429 all_region_blocks
, false);
4432 basic_block bb
= bbs
.pop ();
4433 bool this_irr
= bitmap_bit_p (new_irr
, bb
->index
);
4434 bool all_son_irr
= false;
4438 /* Propagate up. If my children are, I am too, but we must have
4439 at least one child that is. */
4442 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
4444 if (!bitmap_bit_p (new_irr
, e
->dest
->index
))
4446 all_son_irr
= false;
4454 /* Add block to new_irr if it hasn't already been processed. */
4455 if (!old_irr
|| !bitmap_bit_p (old_irr
, bb
->index
))
4457 bitmap_set_bit (new_irr
, bb
->index
);
4463 /* Propagate down to everyone we immediately dominate. */
4467 for (son
= first_dom_son (CDI_DOMINATORS
, bb
);
4469 son
= next_dom_son (CDI_DOMINATORS
, son
))
4471 /* Make sure block is actually in a TM region, and it
4472 isn't already in old_irr. */
4473 if ((!old_irr
|| !bitmap_bit_p (old_irr
, son
->index
))
4474 && bitmap_bit_p (all_region_blocks
, son
->index
))
4475 bitmap_set_bit (new_irr
, son
->index
);
4479 while (!bbs
.is_empty ());
4481 BITMAP_FREE (all_region_blocks
);
4486 ipa_tm_decrement_clone_counts (basic_block bb
, bool for_clone
)
4488 gimple_stmt_iterator gsi
;
4490 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
4492 gimple stmt
= gsi_stmt (gsi
);
4493 if (is_gimple_call (stmt
) && !is_tm_pure_call (stmt
))
4495 tree fndecl
= gimple_call_fndecl (stmt
);
4498 struct tm_ipa_cg_data
*d
;
4500 struct cgraph_node
*tnode
;
4502 if (is_tm_ending_fndecl (fndecl
))
4504 if (find_tm_replacement_function (fndecl
))
4507 tnode
= cgraph_node::get (fndecl
);
4508 d
= get_cg_data (&tnode
, true);
4510 pcallers
= (for_clone
? &d
->tm_callers_clone
4511 : &d
->tm_callers_normal
);
4513 gcc_assert (*pcallers
> 0);
4520 /* (Re-)Scan the transaction blocks in NODE for calls to irrevocable functions,
4521 as well as other irrevocable actions such as inline assembly. Mark all
4522 such blocks as irrevocable and decrement the number of calls to
4523 transactional clones. Return true if, for the transactional clone, the
4524 entire function is irrevocable. */
4527 ipa_tm_scan_irr_function (struct cgraph_node
*node
, bool for_clone
)
4529 struct tm_ipa_cg_data
*d
;
4530 bitmap new_irr
, old_irr
;
4533 /* Builtin operators (operator new, and such). */
4534 if (DECL_STRUCT_FUNCTION (node
->decl
) == NULL
4535 || DECL_STRUCT_FUNCTION (node
->decl
)->cfg
== NULL
)
4538 push_cfun (DECL_STRUCT_FUNCTION (node
->decl
));
4539 calculate_dominance_info (CDI_DOMINATORS
);
4541 d
= get_cg_data (&node
, true);
4542 auto_vec
<basic_block
, 10> queue
;
4543 new_irr
= BITMAP_ALLOC (&tm_obstack
);
4545 /* Scan each tm region, propagating irrevocable status through the tree. */
4548 old_irr
= d
->irrevocable_blocks_clone
;
4549 queue
.quick_push (single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
)));
4550 if (ipa_tm_scan_irr_blocks (&queue
, new_irr
, old_irr
, NULL
))
4552 ipa_tm_propagate_irr (single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
)),
4555 ret
= bitmap_bit_p (new_irr
,
4556 single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
))->index
);
4561 struct tm_region
*region
;
4563 old_irr
= d
->irrevocable_blocks_normal
;
4564 for (region
= d
->all_tm_regions
; region
; region
= region
->next
)
4566 queue
.quick_push (region
->entry_block
);
4567 if (ipa_tm_scan_irr_blocks (&queue
, new_irr
, old_irr
,
4568 region
->exit_blocks
))
4569 ipa_tm_propagate_irr (region
->entry_block
, new_irr
, old_irr
,
4570 region
->exit_blocks
);
4574 /* If we found any new irrevocable blocks, reduce the call count for
4575 transactional clones within the irrevocable blocks. Save the new
4576 set of irrevocable blocks for next time. */
4577 if (!bitmap_empty_p (new_irr
))
4579 bitmap_iterator bmi
;
4582 EXECUTE_IF_SET_IN_BITMAP (new_irr
, 0, i
, bmi
)
4583 ipa_tm_decrement_clone_counts (BASIC_BLOCK_FOR_FN (cfun
, i
),
4588 bitmap_ior_into (old_irr
, new_irr
);
4589 BITMAP_FREE (new_irr
);
4592 d
->irrevocable_blocks_clone
= new_irr
;
4594 d
->irrevocable_blocks_normal
= new_irr
;
4596 if (dump_file
&& new_irr
)
4599 bitmap_iterator bmi
;
4602 dname
= lang_hooks
.decl_printable_name (current_function_decl
, 2);
4603 EXECUTE_IF_SET_IN_BITMAP (new_irr
, 0, i
, bmi
)
4604 fprintf (dump_file
, "%s: bb %d goes irrevocable\n", dname
, i
);
4608 BITMAP_FREE (new_irr
);
4615 /* Return true if, for the transactional clone of NODE, any call
4616 may enter irrevocable mode. */
4619 ipa_tm_mayenterirr_function (struct cgraph_node
*node
)
4621 struct tm_ipa_cg_data
*d
;
4625 d
= get_cg_data (&node
, true);
4627 flags
= flags_from_decl_or_type (decl
);
4629 /* Handle some TM builtins. Ordinarily these aren't actually generated
4630 at this point, but handling these functions when written in by the
4631 user makes it easier to build unit tests. */
4632 if (flags
& ECF_TM_BUILTIN
)
4635 /* Filter out all functions that are marked. */
4636 if (flags
& ECF_TM_PURE
)
4638 if (is_tm_safe (decl
))
4640 if (is_tm_irrevocable (decl
))
4642 if (is_tm_callable (decl
))
4644 if (find_tm_replacement_function (decl
))
4647 /* If we aren't seeing the final version of the function we don't
4648 know what it will contain at runtime. */
4649 if (node
->get_availability () < AVAIL_AVAILABLE
)
4652 /* If the function must go irrevocable, then of course true. */
4653 if (d
->is_irrevocable
)
4656 /* If there are any blocks marked irrevocable, then the function
4657 as a whole may enter irrevocable. */
4658 if (d
->irrevocable_blocks_clone
)
4661 /* We may have previously marked this function as tm_may_enter_irr;
4662 see pass_diagnose_tm_blocks. */
4663 if (node
->local
.tm_may_enter_irr
)
4666 /* Recurse on the main body for aliases. In general, this will
4667 result in one of the bits above being set so that we will not
4668 have to recurse next time. */
4670 return ipa_tm_mayenterirr_function (cgraph_node::get (node
->thunk
.alias
));
4672 /* What remains is unmarked local functions without items that force
4673 the function to go irrevocable. */
4677 /* Diagnose calls from transaction_safe functions to unmarked
4678 functions that are determined to not be safe. */
4681 ipa_tm_diagnose_tm_safe (struct cgraph_node
*node
)
4683 struct cgraph_edge
*e
;
4685 for (e
= node
->callees
; e
; e
= e
->next_callee
)
4686 if (!is_tm_callable (e
->callee
->decl
)
4687 && e
->callee
->local
.tm_may_enter_irr
)
4688 error_at (gimple_location (e
->call_stmt
),
4689 "unsafe function call %qD within "
4690 "%<transaction_safe%> function", e
->callee
->decl
);
4693 /* Diagnose call from atomic transactions to unmarked functions
4694 that are determined to not be safe. */
4697 ipa_tm_diagnose_transaction (struct cgraph_node
*node
,
4698 struct tm_region
*all_tm_regions
)
4700 struct tm_region
*r
;
4702 for (r
= all_tm_regions
; r
; r
= r
->next
)
4703 if (gimple_transaction_subcode (r
->get_transaction_stmt ())
4706 /* Atomic transactions can be nested inside relaxed. */
4708 ipa_tm_diagnose_transaction (node
, r
->inner
);
4712 vec
<basic_block
> bbs
;
4713 gimple_stmt_iterator gsi
;
4717 bbs
= get_tm_region_blocks (r
->entry_block
, r
->exit_blocks
,
4718 r
->irr_blocks
, NULL
, false);
4720 for (i
= 0; bbs
.iterate (i
, &bb
); ++i
)
4721 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
4723 gimple stmt
= gsi_stmt (gsi
);
4726 if (gimple_code (stmt
) == GIMPLE_ASM
)
4728 error_at (gimple_location (stmt
),
4729 "asm not allowed in atomic transaction");
4733 if (!is_gimple_call (stmt
))
4735 fndecl
= gimple_call_fndecl (stmt
);
4737 /* Indirect function calls have been diagnosed already. */
4741 /* Stop at the end of the transaction. */
4742 if (is_tm_ending_fndecl (fndecl
))
4744 if (bitmap_bit_p (r
->exit_blocks
, bb
->index
))
4749 /* Marked functions have been diagnosed already. */
4750 if (is_tm_pure_call (stmt
))
4752 if (is_tm_callable (fndecl
))
4755 if (cgraph_node::local_info (fndecl
)->tm_may_enter_irr
)
4756 error_at (gimple_location (stmt
),
4757 "unsafe function call %qD within "
4758 "atomic transaction", fndecl
);
4765 /* Return a transactional mangled name for the DECL_ASSEMBLER_NAME in
4766 OLD_DECL. The returned value is a freshly malloced pointer that
4767 should be freed by the caller. */
4770 tm_mangle (tree old_asm_id
)
4772 const char *old_asm_name
;
4775 struct demangle_component
*dc
;
4778 /* Determine if the symbol is already a valid C++ mangled name. Do this
4779 even for C, which might be interfacing with C++ code via appropriately
4780 ugly identifiers. */
4781 /* ??? We could probably do just as well checking for "_Z" and be done. */
4782 old_asm_name
= IDENTIFIER_POINTER (old_asm_id
);
4783 dc
= cplus_demangle_v3_components (old_asm_name
, DMGL_NO_OPTS
, &alloc
);
4790 sprintf (length
, "%u", IDENTIFIER_LENGTH (old_asm_id
));
4791 tm_name
= concat ("_ZGTt", length
, old_asm_name
, NULL
);
4795 old_asm_name
+= 2; /* Skip _Z */
4799 case DEMANGLE_COMPONENT_TRANSACTION_CLONE
:
4800 case DEMANGLE_COMPONENT_NONTRANSACTION_CLONE
:
4801 /* Don't play silly games, you! */
4804 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
4805 /* I'd really like to know if we can ever be passed one of
4806 these from the C++ front end. The Logical Thing would
4807 seem that hidden-alias should be outer-most, so that we
4808 get hidden-alias of a transaction-clone and not vice-versa. */
4816 tm_name
= concat ("_ZGTt", old_asm_name
, NULL
);
4820 new_asm_id
= get_identifier (tm_name
);
4827 ipa_tm_mark_force_output_node (struct cgraph_node
*node
)
4829 node
->mark_force_output ();
4830 node
->analyzed
= true;
4834 ipa_tm_mark_forced_by_abi_node (struct cgraph_node
*node
)
4836 node
->forced_by_abi
= true;
4837 node
->analyzed
= true;
4840 /* Callback data for ipa_tm_create_version_alias. */
4841 struct create_version_alias_info
4843 struct cgraph_node
*old_node
;
4847 /* A subroutine of ipa_tm_create_version, called via
4848 cgraph_for_node_and_aliases. Create new tm clones for each of
4849 the existing aliases. */
4851 ipa_tm_create_version_alias (struct cgraph_node
*node
, void *data
)
4853 struct create_version_alias_info
*info
4854 = (struct create_version_alias_info
*)data
;
4855 tree old_decl
, new_decl
, tm_name
;
4856 struct cgraph_node
*new_node
;
4858 if (!node
->cpp_implicit_alias
)
4861 old_decl
= node
->decl
;
4862 tm_name
= tm_mangle (DECL_ASSEMBLER_NAME (old_decl
));
4863 new_decl
= build_decl (DECL_SOURCE_LOCATION (old_decl
),
4864 TREE_CODE (old_decl
), tm_name
,
4865 TREE_TYPE (old_decl
));
4867 SET_DECL_ASSEMBLER_NAME (new_decl
, tm_name
);
4868 SET_DECL_RTL (new_decl
, NULL
);
4870 /* Based loosely on C++'s make_alias_for(). */
4871 TREE_PUBLIC (new_decl
) = TREE_PUBLIC (old_decl
);
4872 DECL_CONTEXT (new_decl
) = DECL_CONTEXT (old_decl
);
4873 DECL_LANG_SPECIFIC (new_decl
) = DECL_LANG_SPECIFIC (old_decl
);
4874 TREE_READONLY (new_decl
) = TREE_READONLY (old_decl
);
4875 DECL_EXTERNAL (new_decl
) = 0;
4876 DECL_ARTIFICIAL (new_decl
) = 1;
4877 TREE_ADDRESSABLE (new_decl
) = 1;
4878 TREE_USED (new_decl
) = 1;
4879 TREE_SYMBOL_REFERENCED (tm_name
) = 1;
4881 /* Perform the same remapping to the comdat group. */
4882 if (DECL_ONE_ONLY (new_decl
))
4883 varpool_node::get (new_decl
)->set_comdat_group
4884 (tm_mangle (decl_comdat_group_id (old_decl
)));
4886 new_node
= cgraph_node::create_same_body_alias (new_decl
, info
->new_decl
);
4887 new_node
->tm_clone
= true;
4888 new_node
->externally_visible
= info
->old_node
->externally_visible
;
4889 new_node
->no_reorder
= info
->old_node
->no_reorder
;
4890 /* ?? Do not traverse aliases here. */
4891 get_cg_data (&node
, false)->clone
= new_node
;
4893 record_tm_clone_pair (old_decl
, new_decl
);
4895 if (info
->old_node
->force_output
4896 || info
->old_node
->ref_list
.first_referring ())
4897 ipa_tm_mark_force_output_node (new_node
);
4898 if (info
->old_node
->forced_by_abi
)
4899 ipa_tm_mark_forced_by_abi_node (new_node
);
4903 /* Create a copy of the function (possibly declaration only) of OLD_NODE,
4904 appropriate for the transactional clone. */
4907 ipa_tm_create_version (struct cgraph_node
*old_node
)
4909 tree new_decl
, old_decl
, tm_name
;
4910 struct cgraph_node
*new_node
;
4912 old_decl
= old_node
->decl
;
4913 new_decl
= copy_node (old_decl
);
4915 /* DECL_ASSEMBLER_NAME needs to be set before we call
4916 cgraph_copy_node_for_versioning below, because cgraph_node will
4917 fill the assembler_name_hash. */
4918 tm_name
= tm_mangle (DECL_ASSEMBLER_NAME (old_decl
));
4919 SET_DECL_ASSEMBLER_NAME (new_decl
, tm_name
);
4920 SET_DECL_RTL (new_decl
, NULL
);
4921 TREE_SYMBOL_REFERENCED (tm_name
) = 1;
4923 /* Perform the same remapping to the comdat group. */
4924 if (DECL_ONE_ONLY (new_decl
))
4925 varpool_node::get (new_decl
)->set_comdat_group
4926 (tm_mangle (DECL_COMDAT_GROUP (old_decl
)));
4928 gcc_assert (!old_node
->ipa_transforms_to_apply
.exists ());
4929 new_node
= old_node
->create_version_clone (new_decl
, vNULL
, NULL
);
4930 new_node
->local
.local
= false;
4931 new_node
->externally_visible
= old_node
->externally_visible
;
4932 new_node
->lowered
= true;
4933 new_node
->tm_clone
= 1;
4934 if (!old_node
->implicit_section
)
4935 new_node
->set_section (old_node
->get_section ());
4936 get_cg_data (&old_node
, true)->clone
= new_node
;
4938 if (old_node
->get_availability () >= AVAIL_INTERPOSABLE
)
4940 /* Remap extern inline to static inline. */
4941 /* ??? Is it worth trying to use make_decl_one_only? */
4942 if (DECL_DECLARED_INLINE_P (new_decl
) && DECL_EXTERNAL (new_decl
))
4944 DECL_EXTERNAL (new_decl
) = 0;
4945 TREE_PUBLIC (new_decl
) = 0;
4946 DECL_WEAK (new_decl
) = 0;
4949 tree_function_versioning (old_decl
, new_decl
,
4954 record_tm_clone_pair (old_decl
, new_decl
);
4956 symtab
->call_cgraph_insertion_hooks (new_node
);
4957 if (old_node
->force_output
4958 || old_node
->ref_list
.first_referring ())
4959 ipa_tm_mark_force_output_node (new_node
);
4960 if (old_node
->forced_by_abi
)
4961 ipa_tm_mark_forced_by_abi_node (new_node
);
4963 /* Do the same thing, but for any aliases of the original node. */
4965 struct create_version_alias_info data
;
4966 data
.old_node
= old_node
;
4967 data
.new_decl
= new_decl
;
4968 old_node
->call_for_symbol_thunks_and_aliases (ipa_tm_create_version_alias
,
4973 /* Construct a call to TM_IRREVOCABLE and insert it at the beginning of BB. */
4976 ipa_tm_insert_irr_call (struct cgraph_node
*node
, struct tm_region
*region
,
4979 gimple_stmt_iterator gsi
;
4982 transaction_subcode_ior (region
, GTMA_MAY_ENTER_IRREVOCABLE
);
4984 g
= gimple_build_call (builtin_decl_explicit (BUILT_IN_TM_IRREVOCABLE
),
4985 1, build_int_cst (NULL_TREE
, MODE_SERIALIRREVOCABLE
));
4987 split_block_after_labels (bb
);
4988 gsi
= gsi_after_labels (bb
);
4989 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
4991 node
->create_edge (cgraph_node::get_create
4992 (builtin_decl_explicit (BUILT_IN_TM_IRREVOCABLE
)),
4994 compute_call_stmt_bb_frequency (node
->decl
,
4998 /* Construct a call to TM_GETTMCLONE and insert it before GSI. */
5001 ipa_tm_insert_gettmclone_call (struct cgraph_node
*node
,
5002 struct tm_region
*region
,
5003 gimple_stmt_iterator
*gsi
, gcall
*stmt
)
5005 tree gettm_fn
, ret
, old_fn
, callfn
;
5010 old_fn
= gimple_call_fn (stmt
);
5012 if (TREE_CODE (old_fn
) == ADDR_EXPR
)
5014 tree fndecl
= TREE_OPERAND (old_fn
, 0);
5015 tree clone
= get_tm_clone_pair (fndecl
);
5017 /* By transforming the call into a TM_GETTMCLONE, we are
5018 technically taking the address of the original function and
5019 its clone. Explain this so inlining will know this function
5021 cgraph_node::get (fndecl
)->mark_address_taken () ;
5023 cgraph_node::get (clone
)->mark_address_taken ();
5026 safe
= is_tm_safe (TREE_TYPE (old_fn
));
5027 gettm_fn
= builtin_decl_explicit (safe
? BUILT_IN_TM_GETTMCLONE_SAFE
5028 : BUILT_IN_TM_GETTMCLONE_IRR
);
5029 ret
= create_tmp_var (ptr_type_node
);
5032 transaction_subcode_ior (region
, GTMA_MAY_ENTER_IRREVOCABLE
);
5034 /* Discard OBJ_TYPE_REF, since we weren't able to fold it. */
5035 if (TREE_CODE (old_fn
) == OBJ_TYPE_REF
)
5036 old_fn
= OBJ_TYPE_REF_EXPR (old_fn
);
5038 g
= gimple_build_call (gettm_fn
, 1, old_fn
);
5039 ret
= make_ssa_name (ret
, g
);
5040 gimple_call_set_lhs (g
, ret
);
5042 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
5044 node
->create_edge (cgraph_node::get_create (gettm_fn
), g
, 0,
5045 compute_call_stmt_bb_frequency (node
->decl
,
5048 /* Cast return value from tm_gettmclone* into appropriate function
5050 callfn
= create_tmp_var (TREE_TYPE (old_fn
));
5051 g2
= gimple_build_assign (callfn
,
5052 fold_build1 (NOP_EXPR
, TREE_TYPE (callfn
), ret
));
5053 callfn
= make_ssa_name (callfn
, g2
);
5054 gimple_assign_set_lhs (g2
, callfn
);
5055 gsi_insert_before (gsi
, g2
, GSI_SAME_STMT
);
5057 /* ??? This is a hack to preserve the NOTHROW bit on the call,
5058 which we would have derived from the decl. Failure to save
5059 this bit means we might have to split the basic block. */
5060 if (gimple_call_nothrow_p (stmt
))
5061 gimple_call_set_nothrow (stmt
, true);
5063 gimple_call_set_fn (stmt
, callfn
);
5065 /* Discarding OBJ_TYPE_REF above may produce incompatible LHS and RHS
5066 for a call statement. Fix it. */
5068 tree lhs
= gimple_call_lhs (stmt
);
5069 tree rettype
= TREE_TYPE (gimple_call_fntype (stmt
));
5071 && !useless_type_conversion_p (TREE_TYPE (lhs
), rettype
))
5075 temp
= create_tmp_reg (rettype
);
5076 gimple_call_set_lhs (stmt
, temp
);
5078 g2
= gimple_build_assign (lhs
,
5079 fold_build1 (VIEW_CONVERT_EXPR
,
5080 TREE_TYPE (lhs
), temp
));
5081 gsi_insert_after (gsi
, g2
, GSI_SAME_STMT
);
5086 cgraph_edge
*e
= cgraph_node::get (current_function_decl
)->get_edge (stmt
);
5087 if (e
&& e
->indirect_info
)
5088 e
->indirect_info
->polymorphic
= false;
5093 /* Helper function for ipa_tm_transform_calls*. Given a call
5094 statement in GSI which resides inside transaction REGION, redirect
5095 the call to either its wrapper function, or its clone. */
5098 ipa_tm_transform_calls_redirect (struct cgraph_node
*node
,
5099 struct tm_region
*region
,
5100 gimple_stmt_iterator
*gsi
,
5101 bool *need_ssa_rename_p
)
5103 gcall
*stmt
= as_a
<gcall
*> (gsi_stmt (*gsi
));
5104 struct cgraph_node
*new_node
;
5105 struct cgraph_edge
*e
= node
->get_edge (stmt
);
5106 tree fndecl
= gimple_call_fndecl (stmt
);
5108 /* For indirect calls, pass the address through the runtime. */
5111 *need_ssa_rename_p
|=
5112 ipa_tm_insert_gettmclone_call (node
, region
, gsi
, stmt
);
5116 /* Handle some TM builtins. Ordinarily these aren't actually generated
5117 at this point, but handling these functions when written in by the
5118 user makes it easier to build unit tests. */
5119 if (flags_from_decl_or_type (fndecl
) & ECF_TM_BUILTIN
)
5122 /* Fixup recursive calls inside clones. */
5123 /* ??? Why did cgraph_copy_node_for_versioning update the call edges
5124 for recursion but not update the call statements themselves? */
5125 if (e
->caller
== e
->callee
&& decl_is_tm_clone (current_function_decl
))
5127 gimple_call_set_fndecl (stmt
, current_function_decl
);
5131 /* If there is a replacement, use it. */
5132 fndecl
= find_tm_replacement_function (fndecl
);
5135 new_node
= cgraph_node::get_create (fndecl
);
5137 /* ??? Mark all transaction_wrap functions tm_may_enter_irr.
5139 We can't do this earlier in record_tm_replacement because
5140 cgraph_remove_unreachable_nodes is called before we inject
5141 references to the node. Further, we can't do this in some
5142 nice central place in ipa_tm_execute because we don't have
5143 the exact list of wrapper functions that would be used.
5144 Marking more wrappers than necessary results in the creation
5145 of unnecessary cgraph_nodes, which can cause some of the
5146 other IPA passes to crash.
5148 We do need to mark these nodes so that we get the proper
5149 result in expand_call_tm. */
5150 /* ??? This seems broken. How is it that we're marking the
5151 CALLEE as may_enter_irr? Surely we should be marking the
5152 CALLER. Also note that find_tm_replacement_function also
5153 contains mappings into the TM runtime, e.g. memcpy. These
5154 we know won't go irrevocable. */
5155 new_node
->local
.tm_may_enter_irr
= 1;
5159 struct tm_ipa_cg_data
*d
;
5160 struct cgraph_node
*tnode
= e
->callee
;
5162 d
= get_cg_data (&tnode
, true);
5163 new_node
= d
->clone
;
5165 /* As we've already skipped pure calls and appropriate builtins,
5166 and we've already marked irrevocable blocks, if we can't come
5167 up with a static replacement, then ask the runtime. */
5168 if (new_node
== NULL
)
5170 *need_ssa_rename_p
|=
5171 ipa_tm_insert_gettmclone_call (node
, region
, gsi
, stmt
);
5175 fndecl
= new_node
->decl
;
5178 e
->redirect_callee (new_node
);
5179 gimple_call_set_fndecl (stmt
, fndecl
);
5182 /* Helper function for ipa_tm_transform_calls. For a given BB,
5183 install calls to tm_irrevocable when IRR_BLOCKS are reached,
5184 redirect other calls to the generated transactional clone. */
5187 ipa_tm_transform_calls_1 (struct cgraph_node
*node
, struct tm_region
*region
,
5188 basic_block bb
, bitmap irr_blocks
)
5190 gimple_stmt_iterator gsi
;
5191 bool need_ssa_rename
= false;
5193 if (irr_blocks
&& bitmap_bit_p (irr_blocks
, bb
->index
))
5195 ipa_tm_insert_irr_call (node
, region
, bb
);
5199 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
5201 gimple stmt
= gsi_stmt (gsi
);
5203 if (!is_gimple_call (stmt
))
5205 if (is_tm_pure_call (stmt
))
5208 /* Redirect edges to the appropriate replacement or clone. */
5209 ipa_tm_transform_calls_redirect (node
, region
, &gsi
, &need_ssa_rename
);
5212 return need_ssa_rename
;
5215 /* Walk the CFG for REGION, beginning at BB. Install calls to
5216 tm_irrevocable when IRR_BLOCKS are reached, redirect other calls to
5217 the generated transactional clone. */
5220 ipa_tm_transform_calls (struct cgraph_node
*node
, struct tm_region
*region
,
5221 basic_block bb
, bitmap irr_blocks
)
5223 bool need_ssa_rename
= false;
5226 auto_vec
<basic_block
> queue
;
5227 bitmap visited_blocks
= BITMAP_ALLOC (NULL
);
5229 queue
.safe_push (bb
);
5235 ipa_tm_transform_calls_1 (node
, region
, bb
, irr_blocks
);
5237 if (irr_blocks
&& bitmap_bit_p (irr_blocks
, bb
->index
))
5240 if (region
&& bitmap_bit_p (region
->exit_blocks
, bb
->index
))
5243 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
5244 if (!bitmap_bit_p (visited_blocks
, e
->dest
->index
))
5246 bitmap_set_bit (visited_blocks
, e
->dest
->index
);
5247 queue
.safe_push (e
->dest
);
5250 while (!queue
.is_empty ());
5252 BITMAP_FREE (visited_blocks
);
5254 return need_ssa_rename
;
5257 /* Transform the calls within the TM regions within NODE. */
5260 ipa_tm_transform_transaction (struct cgraph_node
*node
)
5262 struct tm_ipa_cg_data
*d
;
5263 struct tm_region
*region
;
5264 bool need_ssa_rename
= false;
5266 d
= get_cg_data (&node
, true);
5268 push_cfun (DECL_STRUCT_FUNCTION (node
->decl
));
5269 calculate_dominance_info (CDI_DOMINATORS
);
5271 for (region
= d
->all_tm_regions
; region
; region
= region
->next
)
5273 /* If we're sure to go irrevocable, don't transform anything. */
5274 if (d
->irrevocable_blocks_normal
5275 && bitmap_bit_p (d
->irrevocable_blocks_normal
,
5276 region
->entry_block
->index
))
5278 transaction_subcode_ior (region
, GTMA_DOES_GO_IRREVOCABLE
5279 | GTMA_MAY_ENTER_IRREVOCABLE
5280 | GTMA_HAS_NO_INSTRUMENTATION
);
5285 ipa_tm_transform_calls (node
, region
, region
->entry_block
,
5286 d
->irrevocable_blocks_normal
);
5289 if (need_ssa_rename
)
5290 update_ssa (TODO_update_ssa_only_virtuals
);
5295 /* Transform the calls within the transactional clone of NODE. */
5298 ipa_tm_transform_clone (struct cgraph_node
*node
)
5300 struct tm_ipa_cg_data
*d
;
5301 bool need_ssa_rename
;
5303 d
= get_cg_data (&node
, true);
5305 /* If this function makes no calls and has no irrevocable blocks,
5306 then there's nothing to do. */
5307 /* ??? Remove non-aborting top-level transactions. */
5308 if (!node
->callees
&& !node
->indirect_calls
&& !d
->irrevocable_blocks_clone
)
5311 push_cfun (DECL_STRUCT_FUNCTION (d
->clone
->decl
));
5312 calculate_dominance_info (CDI_DOMINATORS
);
5315 ipa_tm_transform_calls (d
->clone
, NULL
,
5316 single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
)),
5317 d
->irrevocable_blocks_clone
);
5319 if (need_ssa_rename
)
5320 update_ssa (TODO_update_ssa_only_virtuals
);
5325 /* Main entry point for the transactional memory IPA pass. */
5328 ipa_tm_execute (void)
5330 cgraph_node_queue tm_callees
= cgraph_node_queue ();
5331 /* List of functions that will go irrevocable. */
5332 cgraph_node_queue irr_worklist
= cgraph_node_queue ();
5334 struct cgraph_node
*node
;
5335 struct tm_ipa_cg_data
*d
;
5336 enum availability a
;
5339 #ifdef ENABLE_CHECKING
5340 cgraph_node::verify_cgraph_nodes ();
5343 bitmap_obstack_initialize (&tm_obstack
);
5344 initialize_original_copy_tables ();
5346 /* For all local functions marked tm_callable, queue them. */
5347 FOR_EACH_DEFINED_FUNCTION (node
)
5348 if (is_tm_callable (node
->decl
)
5349 && node
->get_availability () >= AVAIL_INTERPOSABLE
)
5351 d
= get_cg_data (&node
, true);
5352 maybe_push_queue (node
, &tm_callees
, &d
->in_callee_queue
);
5355 /* For all local reachable functions... */
5356 FOR_EACH_DEFINED_FUNCTION (node
)
5358 && node
->get_availability () >= AVAIL_INTERPOSABLE
)
5360 /* ... marked tm_pure, record that fact for the runtime by
5361 indicating that the pure function is its own tm_callable.
5362 No need to do this if the function's address can't be taken. */
5363 if (is_tm_pure (node
->decl
))
5365 if (!node
->local
.local
)
5366 record_tm_clone_pair (node
->decl
, node
->decl
);
5370 push_cfun (DECL_STRUCT_FUNCTION (node
->decl
));
5371 calculate_dominance_info (CDI_DOMINATORS
);
5373 tm_region_init (NULL
);
5376 d
= get_cg_data (&node
, true);
5378 /* Scan for calls that are in each transaction, and
5379 generate the uninstrumented code path. */
5380 ipa_tm_scan_calls_transaction (d
, &tm_callees
);
5382 /* Put it in the worklist so we can scan the function
5383 later (ipa_tm_scan_irr_function) and mark the
5384 irrevocable blocks. */
5385 maybe_push_queue (node
, &irr_worklist
, &d
->in_worklist
);
5386 d
->want_irr_scan_normal
= true;
5392 /* For every local function on the callee list, scan as if we will be
5393 creating a transactional clone, queueing all new functions we find
5395 for (i
= 0; i
< tm_callees
.length (); ++i
)
5397 node
= tm_callees
[i
];
5398 a
= node
->get_availability ();
5399 d
= get_cg_data (&node
, true);
5401 /* Put it in the worklist so we can scan the function later
5402 (ipa_tm_scan_irr_function) and mark the irrevocable
5404 maybe_push_queue (node
, &irr_worklist
, &d
->in_worklist
);
5406 /* Some callees cannot be arbitrarily cloned. These will always be
5407 irrevocable. Mark these now, so that we need not scan them. */
5408 if (is_tm_irrevocable (node
->decl
))
5409 ipa_tm_note_irrevocable (node
, &irr_worklist
);
5410 else if (a
<= AVAIL_NOT_AVAILABLE
5411 && !is_tm_safe_or_pure (node
->decl
))
5412 ipa_tm_note_irrevocable (node
, &irr_worklist
);
5413 else if (a
>= AVAIL_INTERPOSABLE
)
5415 if (!tree_versionable_function_p (node
->decl
))
5416 ipa_tm_note_irrevocable (node
, &irr_worklist
);
5417 else if (!d
->is_irrevocable
)
5419 /* If this is an alias, make sure its base is queued as well.
5420 we need not scan the callees now, as the base will do. */
5423 node
= cgraph_node::get (node
->thunk
.alias
);
5424 d
= get_cg_data (&node
, true);
5425 maybe_push_queue (node
, &tm_callees
, &d
->in_callee_queue
);
5429 /* Add all nodes called by this function into
5430 tm_callees as well. */
5431 ipa_tm_scan_calls_clone (node
, &tm_callees
);
5436 /* Iterate scans until no more work to be done. Prefer not to use
5437 vec::pop because the worklist tends to follow a breadth-first
5438 search of the callgraph, which should allow convergance with a
5439 minimum number of scans. But we also don't want the worklist
5440 array to grow without bound, so we shift the array up periodically. */
5441 for (i
= 0; i
< irr_worklist
.length (); ++i
)
5443 if (i
> 256 && i
== irr_worklist
.length () / 8)
5445 irr_worklist
.block_remove (0, i
);
5449 node
= irr_worklist
[i
];
5450 d
= get_cg_data (&node
, true);
5451 d
->in_worklist
= false;
5453 if (d
->want_irr_scan_normal
)
5455 d
->want_irr_scan_normal
= false;
5456 ipa_tm_scan_irr_function (node
, false);
5458 if (d
->in_callee_queue
&& ipa_tm_scan_irr_function (node
, true))
5459 ipa_tm_note_irrevocable (node
, &irr_worklist
);
5462 /* For every function on the callee list, collect the tm_may_enter_irr
5464 irr_worklist
.truncate (0);
5465 for (i
= 0; i
< tm_callees
.length (); ++i
)
5467 node
= tm_callees
[i
];
5468 if (ipa_tm_mayenterirr_function (node
))
5470 d
= get_cg_data (&node
, true);
5471 gcc_assert (d
->in_worklist
== false);
5472 maybe_push_queue (node
, &irr_worklist
, &d
->in_worklist
);
5476 /* Propagate the tm_may_enter_irr bit to callers until stable. */
5477 for (i
= 0; i
< irr_worklist
.length (); ++i
)
5479 struct cgraph_node
*caller
;
5480 struct cgraph_edge
*e
;
5481 struct ipa_ref
*ref
;
5483 if (i
> 256 && i
== irr_worklist
.length () / 8)
5485 irr_worklist
.block_remove (0, i
);
5489 node
= irr_worklist
[i
];
5490 d
= get_cg_data (&node
, true);
5491 d
->in_worklist
= false;
5492 node
->local
.tm_may_enter_irr
= true;
5494 /* Propagate back to normal callers. */
5495 for (e
= node
->callers
; e
; e
= e
->next_caller
)
5498 if (!is_tm_safe_or_pure (caller
->decl
)
5499 && !caller
->local
.tm_may_enter_irr
)
5501 d
= get_cg_data (&caller
, true);
5502 maybe_push_queue (caller
, &irr_worklist
, &d
->in_worklist
);
5506 /* Propagate back to referring aliases as well. */
5507 FOR_EACH_ALIAS (node
, ref
)
5509 caller
= dyn_cast
<cgraph_node
*> (ref
->referring
);
5510 if (!caller
->local
.tm_may_enter_irr
)
5512 /* ?? Do not traverse aliases here. */
5513 d
= get_cg_data (&caller
, false);
5514 maybe_push_queue (caller
, &irr_worklist
, &d
->in_worklist
);
5519 /* Now validate all tm_safe functions, and all atomic regions in
5521 FOR_EACH_DEFINED_FUNCTION (node
)
5523 && node
->get_availability () >= AVAIL_INTERPOSABLE
)
5525 d
= get_cg_data (&node
, true);
5526 if (is_tm_safe (node
->decl
))
5527 ipa_tm_diagnose_tm_safe (node
);
5528 else if (d
->all_tm_regions
)
5529 ipa_tm_diagnose_transaction (node
, d
->all_tm_regions
);
5532 /* Create clones. Do those that are not irrevocable and have a
5533 positive call count. Do those publicly visible functions that
5534 the user directed us to clone. */
5535 for (i
= 0; i
< tm_callees
.length (); ++i
)
5539 node
= tm_callees
[i
];
5540 if (node
->cpp_implicit_alias
)
5543 a
= node
->get_availability ();
5544 d
= get_cg_data (&node
, true);
5546 if (a
<= AVAIL_NOT_AVAILABLE
)
5547 doit
= is_tm_callable (node
->decl
);
5548 else if (a
<= AVAIL_AVAILABLE
&& is_tm_callable (node
->decl
))
5550 else if (!d
->is_irrevocable
5551 && d
->tm_callers_normal
+ d
->tm_callers_clone
> 0)
5555 ipa_tm_create_version (node
);
5558 /* Redirect calls to the new clones, and insert irrevocable marks. */
5559 for (i
= 0; i
< tm_callees
.length (); ++i
)
5561 node
= tm_callees
[i
];
5564 d
= get_cg_data (&node
, true);
5566 ipa_tm_transform_clone (node
);
5569 FOR_EACH_DEFINED_FUNCTION (node
)
5571 && node
->get_availability () >= AVAIL_INTERPOSABLE
)
5573 d
= get_cg_data (&node
, true);
5574 if (d
->all_tm_regions
)
5575 ipa_tm_transform_transaction (node
);
5578 /* Free and clear all data structures. */
5579 tm_callees
.release ();
5580 irr_worklist
.release ();
5581 bitmap_obstack_release (&tm_obstack
);
5582 free_original_copy_tables ();
5584 FOR_EACH_FUNCTION (node
)
5587 #ifdef ENABLE_CHECKING
5588 cgraph_node::verify_cgraph_nodes ();
5596 const pass_data pass_data_ipa_tm
=
5598 SIMPLE_IPA_PASS
, /* type */
5600 OPTGROUP_NONE
, /* optinfo_flags */
5601 TV_TRANS_MEM
, /* tv_id */
5602 ( PROP_ssa
| PROP_cfg
), /* properties_required */
5603 0, /* properties_provided */
5604 0, /* properties_destroyed */
5605 0, /* todo_flags_start */
5606 0, /* todo_flags_finish */
5609 class pass_ipa_tm
: public simple_ipa_opt_pass
5612 pass_ipa_tm (gcc::context
*ctxt
)
5613 : simple_ipa_opt_pass (pass_data_ipa_tm
, ctxt
)
5616 /* opt_pass methods: */
5617 virtual bool gate (function
*) { return flag_tm
; }
5618 virtual unsigned int execute (function
*) { return ipa_tm_execute (); }
5620 }; // class pass_ipa_tm
5624 simple_ipa_opt_pass
*
5625 make_pass_ipa_tm (gcc::context
*ctxt
)
5627 return new pass_ipa_tm (ctxt
);
5630 #include "gt-trans-mem.h"