public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "daveboutcher at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libitm/53008] abort in _ITM_getTMCloneSafe
Date: Tue, 08 May 2012 23:24:00 -0000	[thread overview]
Message-ID: <bug-53008-4-lAADAHs3uh@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-53008-4@http.gcc.gnu.org/bugzilla/>

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53008

--- Comment #3 from Dave Boutcher <daveboutcher at gmail dot com> 2012-05-08 22:56:23 UTC ---
I just submitted a patch for this one (Issue 6201064)
(http://codereview.appspot.com/6201064/)

Patch included here just for fun:

Index: gcc/trans-mem.c
diff --git a/gcc/trans-mem.c b/gcc/trans-mem.c
index 24073fa..20ed5a0 100644
--- a/gcc/trans-mem.c
+++ b/gcc/trans-mem.c
@@ -4319,6 +4319,9 @@ ipa_tm_create_version_alias (struct cgraph_node *node,
void *data)

   record_tm_clone_pair (old_decl, new_decl);

+  /* If someone refers to this function indirectly, mark it needed */
+  if (ipa_ref_list_first_refering (&info->old_node->ref_list)) 
+      ipa_tm_mark_needed_node (info->old_node);
   if (info->old_node->needed)
     ipa_tm_mark_needed_node (new_node);
   return false;
@@ -4372,6 +4375,10 @@ ipa_tm_create_version (struct cgraph_node *old_node)
   record_tm_clone_pair (old_decl, new_decl);

   cgraph_call_function_insertion_hooks (new_node);
+  /* If someone refers to this function indirectly, mark it needed */
+  if (ipa_ref_list_first_refering (&old_node->ref_list)) 
+      ipa_tm_mark_needed_node (old_node);
+
   if (old_node->needed)
     ipa_tm_mark_needed_node (new_node);

@@ -4778,8 +4785,13 @@ ipa_tm_execute (void)
        No need to do this if the function's address can't be taken.  */
     if (is_tm_pure (node->decl))
       {
-        if (!node->local.local)
+        if (!node->local.local) {
           record_tm_clone_pair (node->decl, node->decl);
+          /* if someone refers to this function other than as a call,
+         mark it needed */
+          if (ipa_ref_list_first_refering (&node->ref_list)) 
+          ipa_tm_mark_needed_node (node);
+        }
         continue;
       }


  parent reply	other threads:[~2012-05-08 22:56 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-16 15:08 [Bug libitm/53008] New: " daveboutcher at gmail dot com
2012-04-18 17:47 ` [Bug libitm/53008] " daveboutcher at gmail dot com
2012-04-27 15:00 ` patrick.marlier at gmail dot com
2012-05-08 23:24 ` daveboutcher at gmail dot com [this message]
2012-05-15 16:50 ` torvald at gcc dot gnu.org
2012-05-15 22:32 ` patrick.marlier at gmail dot com
2012-05-16  2:12 ` daveboutcher at gmail dot com
2012-05-22 15:59 ` [Bug ada/53008] " aldyh at gcc dot gnu.org
2012-05-22 16:11 ` patrick.marlier at gmail dot com
2012-05-22 17:38 ` [Bug middle-end/53008] " aldyh at gcc dot gnu.org
2012-05-25 17:29 ` aldyh at gcc dot gnu.org
2012-05-30 22:15 ` aldyh at gcc dot gnu.org
2012-05-30 22:25 ` aldyh at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-53008-4-lAADAHs3uh@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).