/hg/release/icedtea7-forest-2.1/hotspot: 2 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Fri Aug 31 13:59:24 PDT 2012


changeset fbe959dad801 in /hg/release/icedtea7-forest-2.1/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.1/hotspot?cmd=changeset;node=fbe959dad801
author: andrew
date: Wed Aug 29 17:23:23 2012 +0100

	PR1101: Undefined symbols on GNU/Linux SPARC


changeset c159737dd826 in /hg/release/icedtea7-forest-2.1/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.1/hotspot?cmd=changeset;node=c159737dd826
author: andrew
date: Fri Aug 31 21:58:49 2012 +0100

	Added tag icedtea-2.1.2 for changeset fbe959dad801


diffstat:

 .hgtags                                      |   1 +
 src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp |  31 ++++++++++++++-------------
 2 files changed, 17 insertions(+), 15 deletions(-)

diffs (57 lines):

diff -r 47a867dd3005 -r c159737dd826 .hgtags
--- a/.hgtags	Thu Aug 30 11:53:27 2012 -0400
+++ b/.hgtags	Fri Aug 31 21:58:49 2012 +0100
@@ -219,3 +219,4 @@
 0000000000000000000000000000000000000000 icedtea-2.1.1
 0000000000000000000000000000000000000000 icedtea-2.1.1
 8b7c4c5f6ba9a0a7e8114d886a574d99827934a1 icedtea-2.1.1
+fbe959dad801cae4c21edcd4afdc0e030f1d07b4 icedtea-2.1.2
diff -r 47a867dd3005 -r c159737dd826 src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp
--- a/src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp	Thu Aug 30 11:53:27 2012 -0400
+++ b/src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp	Fri Aug 31 21:58:49 2012 +0100
@@ -309,29 +309,30 @@
   if (context == NULL) return;
 
   ucontext_t *uc = (ucontext_t*)context;
+  sigcontext* sc = (sigcontext*)context;
   intptr_t *sp = (intptr_t *)os::Linux::ucontext_get_sp(uc);
 
   st->print_cr("Register to memory mapping:");
   st->cr();
 
   // this is only for the "general purpose" registers
-  st->print("G1="); print_location(st, SIG_REGS(sc).u_regs[CON__G1]);
-  st->print("G2="); print_location(st, SIG_REGS(sc).u_regs[CON__G2]);
-  st->print("G3="); print_location(st, SIG_REGS(sc).u_regs[CON__G3]);
-  st->print("G4="); print_location(st, SIG_REGS(sc).u_regs[CON__G4]);
-  st->print("G5="); print_location(st, SIG_REGS(sc).u_regs[CON__G5]);
-  st->print("G6="); print_location(st, SIG_REGS(sc).u_regs[CON__G6]);
-  st->print("G7="); print_location(st, SIG_REGS(sc).u_regs[CON__G7]);
+  st->print("G1="); print_location(st, SIG_REGS(sc).u_regs[CON_G1]);
+  st->print("G2="); print_location(st, SIG_REGS(sc).u_regs[CON_G2]);
+  st->print("G3="); print_location(st, SIG_REGS(sc).u_regs[CON_G3]);
+  st->print("G4="); print_location(st, SIG_REGS(sc).u_regs[CON_G4]);
+  st->print("G5="); print_location(st, SIG_REGS(sc).u_regs[CON_G5]);
+  st->print("G6="); print_location(st, SIG_REGS(sc).u_regs[CON_G6]);
+  st->print("G7="); print_location(st, SIG_REGS(sc).u_regs[CON_G7]);
   st->cr();
 
-  st->print("O0="); print_location(st, SIG_REGS(sc).u_regs[CON__O0]);
-  st->print("O1="); print_location(st, SIG_REGS(sc).u_regs[CON__O1]);
-  st->print("O2="); print_location(st, SIG_REGS(sc).u_regs[CON__O2]);
-  st->print("O3="); print_location(st, SIG_REGS(sc).u_regs[CON__O3]);
-  st->print("O4="); print_location(st, SIG_REGS(sc).u_regs[CON__O4]);
-  st->print("O5="); print_location(st, SIG_REGS(sc).u_regs[CON__O5]);
-  st->print("O6="); print_location(st, SIG_REGS(sc).u_regs[CON__O6]);
-  st->print("O7="); print_location(st, SIG_REGS(sc).u_regs[CON__O7]);
+  st->print("O0="); print_location(st, SIG_REGS(sc).u_regs[CON_O0]);
+  st->print("O1="); print_location(st, SIG_REGS(sc).u_regs[CON_O1]);
+  st->print("O2="); print_location(st, SIG_REGS(sc).u_regs[CON_O2]);
+  st->print("O3="); print_location(st, SIG_REGS(sc).u_regs[CON_O3]);
+  st->print("O4="); print_location(st, SIG_REGS(sc).u_regs[CON_O4]);
+  st->print("O5="); print_location(st, SIG_REGS(sc).u_regs[CON_O5]);
+  st->print("O6="); print_location(st, SIG_REGS(sc).u_regs[CON_O6]);
+  st->print("O7="); print_location(st, SIG_REGS(sc).u_regs[CON_O7]);
   st->cr();
 
   st->print("L0="); print_location(st, sp[L0->sp_offset_in_saved_window()]);



More information about the distro-pkg-dev mailing list