public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: jflavio@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: Merge branch 'master' of ssh://sources.redhat.com/git/frysk
Date: Fri, 09 Nov 2007 14:59:00 -0000	[thread overview]
Message-ID: <20071109145952.3936.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  6c44fcf8aa2f01b9cc33e1a44994baac43d02a4a (commit)
       via  e9ed145fa778d99060a834f06d4221438309f7f6 (commit)
       via  cb713025e2c07f132a37d73d1dbea95dd1c5b4a8 (commit)
      from  b6cf2c808620d180fdcf03ff2e4dc0451768fef4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit 6c44fcf8aa2f01b9cc33e1a44994baac43d02a4a
Merge: e9ed145fa778d99060a834f06d4221438309f7f6 b6cf2c808620d180fdcf03ff2e4dc0451768fef4
Author: Jose Flavio Aguilar Paulino <jflavio@br.ibm.com>
Date:   Fri Nov 9 12:58:34 2007 -0200

    Merge branch 'master' of ssh://sources.redhat.com/git/frysk

commit e9ed145fa778d99060a834f06d4221438309f7f6
Author: Jose Flavio Aguilar Paulino <jflavio@br.ibm.com>
Date:   Fri Nov 9 12:14:56 2007 -0200

    Fixing a minor PPC32 script issue.

commit cb713025e2c07f132a37d73d1dbea95dd1c5b4a8
Author: Jose Flavio Aguilar Paulino <jflavio@br.ibm.com>
Date:   Fri Nov 9 11:37:22 2007 -0200

    Adding scripts to generate unwind classes for Power32/64

-----------------------------------------------------------------------

Summary of changes:
 frysk-imports/libunwind/include/libunwind-ppc32.h  |    2 +-
 frysk-imports/libunwind/include/libunwind-ppc64.h  |    2 +-
 frysk-sys/lib/unwind/ChangeLog                     |    5 +++++
 .../{UnwindPPC64.java-sh => UnwindPPC32.java-sh}   |    5 ++++-
 ...stersX86.shenum => UnwindRegistersPPC32.shenum} |   13 ++++++++-----
 ...stersX86.shenum => UnwindRegistersPPC64.shenum} |   13 ++++++++-----
 6 files changed, 27 insertions(+), 13 deletions(-)
 copy frysk-sys/lib/unwind/{UnwindPPC64.java-sh => UnwindPPC32.java-sh} (95%)
 copy frysk-sys/lib/unwind/{UnwindRegistersX86.shenum => UnwindRegistersPPC32.shenum} (89%)
 copy frysk-sys/lib/unwind/{UnwindRegistersX86.shenum => UnwindRegistersPPC64.shenum} (89%)

First 500 lines of diff:
diff --git a/frysk-imports/libunwind/include/libunwind-ppc32.h b/frysk-imports/libunwind/include/libunwind-ppc32.h
index b40a84e..c45a43a 100644
--- a/frysk-imports/libunwind/include/libunwind-ppc32.h
+++ b/frysk-imports/libunwind/include/libunwind-ppc32.h
@@ -52,7 +52,7 @@ extern "C" {
  * to err on making it rather too big than too small.
  *
  * To simplify this whole process, we are at least initially taking the
- * tack that UNW_PPC32_* map straight across to the .eh_frame column register
+ * tack that ppc32 regs map straight across to the .eh_frame column register
  * numbers.  These register numbers come from gcc's source in
  * gcc/config/rs6000/rs6000.h
  *
diff --git a/frysk-imports/libunwind/include/libunwind-ppc64.h b/frysk-imports/libunwind/include/libunwind-ppc64.h
index 66420b3..1a5e626 100644
--- a/frysk-imports/libunwind/include/libunwind-ppc64.h
+++ b/frysk-imports/libunwind/include/libunwind-ppc64.h
@@ -52,7 +52,7 @@ extern "C" {
  * to err on making it rather too big than too small.
  *
  * To simplify this whole process, we are at least initially taking the
- * tack that UNW_PPC64_* map straight across to the .eh_frame column register
+ * tack that ppc64 regs map straight across to the .eh_frame column register
  * numbers.  These register numbers come from gcc's source in
  * gcc/config/rs6000/rs6000.h
  *
diff --git a/frysk-sys/lib/unwind/ChangeLog b/frysk-sys/lib/unwind/ChangeLog
index a64a04e..ca06169 100644
--- a/frysk-sys/lib/unwind/ChangeLog
+++ b/frysk-sys/lib/unwind/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-09  Jose Flavio Aguilar Paulino <jflavio@br.ibm.com>
+        * UnwindPPC32.java-sh: New
+        * UnwindRegistersPPC32.shenum: New
+	* UnwindRegistersPPC64.shenum: New	
+
 2007-10-30  Andrew Cagney  <cagney@redhat.com>
 
 	* UnwindPPC64.java-sh: Rename UnwindPPC64.shjava.
diff --git a/frysk-sys/lib/unwind/UnwindPPC64.java-sh b/frysk-sys/lib/unwind/UnwindPPC32.java-sh
similarity index 95%
copy from frysk-sys/lib/unwind/UnwindPPC64.java-sh
copy to frysk-sys/lib/unwind/UnwindPPC32.java-sh
index ec3e721..3d3050e 100644
--- a/frysk-sys/lib/unwind/UnwindPPC64.java-sh
+++ b/frysk-sys/lib/unwind/UnwindPPC32.java-sh
@@ -1,7 +1,10 @@
 #!/bin/sh -e
 # This file is part of the program FRYSK.
 #
-# Copyright 2007, Red Hat Inc.
+# Copyright (C) 2006-2007 IBM
+#
+# Contributed by
+# Jose Flavio Aguilar Paulino <jflavio@br.ibm.com> <joseflavio@gmail.com>
 #
 # FRYSK is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
diff --git a/frysk-sys/lib/unwind/UnwindRegistersX86.shenum b/frysk-sys/lib/unwind/UnwindRegistersPPC32.shenum
similarity index 89%
copy from frysk-sys/lib/unwind/UnwindRegistersX86.shenum
copy to frysk-sys/lib/unwind/UnwindRegistersPPC32.shenum
index 3e097b1..2f9997b 100644
--- a/frysk-sys/lib/unwind/UnwindRegistersX86.shenum
+++ b/frysk-sys/lib/unwind/UnwindRegistersPPC32.shenum
@@ -1,7 +1,10 @@
 #!/bin/sh -e
 # This file is part of the program FRYSK.
 #
-# Copyright 2007, Red Hat Inc.
+# Copyright (C) 2006-2007 IBM
+#
+# Contributed by
+# Jose Flavio Aguilar Paulino <jflavio@br.ibm.com> <joseflavio@gmail.com>
 #
 # FRYSK is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -38,11 +41,11 @@
 # version and license this file solely under the GPL without
 # exception.
 
-# Generate a mkenum.sh table for the UNW_X86 encodings we are interested in.
-cat $(dirname $0)/../../../frysk-imports/libunwind/include/libunwind-x86.h | awk ' 
-    /UNW_X86/ {
+# Generate a mkenum.sh table for the UNW_PPC32 encodings we are interested in.
+cat $(dirname $0)/../../../frysk-imports/libunwind/include/libunwind-ppc32.h | awk ' 
+    /UNW_PPC32/ {
    	gsub(",","",$1) 
-   	gsub("UNW_X86_", "", $1)
+   	gsub("UNW_PPC32_", "", $1)
 	printf "%s\n", $1
     }' | awk '{printf "%s %s\n", $1, NR -1 }
 ' 2>&1
diff --git a/frysk-sys/lib/unwind/UnwindRegistersX86.shenum b/frysk-sys/lib/unwind/UnwindRegistersPPC64.shenum
similarity index 89%
copy from frysk-sys/lib/unwind/UnwindRegistersX86.shenum
copy to frysk-sys/lib/unwind/UnwindRegistersPPC64.shenum
index 3e097b1..51c515f 100644
--- a/frysk-sys/lib/unwind/UnwindRegistersX86.shenum
+++ b/frysk-sys/lib/unwind/UnwindRegistersPPC64.shenum
@@ -1,7 +1,10 @@
 #!/bin/sh -e
 # This file is part of the program FRYSK.
 #
-# Copyright 2007, Red Hat Inc.
+# Copyright (C) 2006-2007 IBM
+#
+# Contributed by
+# Jose Flavio Aguilar Paulino <jflavio@br.ibm.com> <joseflavio@gmail.com>
 #
 # FRYSK is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -38,11 +41,11 @@
 # version and license this file solely under the GPL without
 # exception.
 
-# Generate a mkenum.sh table for the UNW_X86 encodings we are interested in.
-cat $(dirname $0)/../../../frysk-imports/libunwind/include/libunwind-x86.h | awk ' 
-    /UNW_X86/ {
+# Generate a mkenum.sh table for the UNW_PPC64 encodings we are interested in.
+cat $(dirname $0)/../../../frysk-imports/libunwind/include/libunwind-ppc64.h | awk ' 
+    /UNW_PPC64/ {
    	gsub(",","",$1) 
-   	gsub("UNW_X86_", "", $1)
+   	gsub("UNW_PPC64_", "", $1)
 	printf "%s\n", $1
     }' | awk '{printf "%s %s\n", $1, NR -1 }
 ' 2>&1


hooks/post-receive
--
frysk system monitor/debugger


             reply	other threads:[~2007-11-09 14:59 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-09 14:59 jflavio [this message]
2007-11-10  0:34 scox
2007-11-10 14:47 jflavio
2007-11-13  0:41 scox
2007-11-14  2:09 jflavio
2007-11-14  2:38 scox
2007-11-16 14:59 pmuldoon
2007-11-16 15:59 scox
2007-11-17  8:35 rmoseley
2007-11-19 17:58 scox
2007-11-20 22:47 scox
2007-11-28 12:04 mark
2007-11-28 13:08 pmuldoon
2007-11-28 16:20 jflavio
2007-11-28 21:40 jflavio
2007-11-30  4:24 jflavio
2007-12-04 17:45 jflavio
2007-12-13 20:18 rmoseley
2008-01-03 16:55 pmuldoon
2008-01-23 21:10 rmoseley
2008-01-24 19:23 rmoseley
2008-02-26 15:32 pmuldoon
2008-03-18 16:22 pmuldoon
2008-03-20 20:20 rmoseley
2008-04-01 12:28 pmuldoon
2008-04-02 22:41 pmuldoon
2008-05-09 17:29 rmoseley
2008-05-12 16:07 pmuldoon
2008-05-12 16:30 rmoseley
2008-06-05 15:33 rmoseley

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=20071109145952.3936.qmail@sourceware.org \
    --to=jflavio@sourceware.org \
    --cc=frysk-cvs@sourceware.org \
    --cc=frysk@sourceware.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).