/hg/icedtea6: Fix accessors to return 0, #deoptimized_frames.

aph at icedtea.classpath.org aph at icedtea.classpath.org
Mon Oct 31 09:01:09 PDT 2011


changeset 0d4f47d2edbf in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=0d4f47d2edbf
author: aph
date: Mon Oct 31 11:57:33 2011 -0400

	Fix accessors to return 0, #deoptimized_frames. 2011-10-31 Andrew
	Haley <aph at redhat.com>

	 * arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S
	(accessor_sh): Return 0, #deoptimized_frames.
	(accessor{_h,_sb,_dw}): Likewise.


diffstat:

 ChangeLog                                             |  6 ++++++
 arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S |  4 ++++
 2 files changed, 10 insertions(+), 0 deletions(-)

diffs (42 lines):

diff -r 26bdb437215d -r 0d4f47d2edbf ChangeLog
--- a/ChangeLog	Fri Oct 28 11:46:11 2011 -0400
+++ b/ChangeLog	Mon Oct 31 11:57:33 2011 -0400
@@ -1,3 +1,9 @@
+2011-10-31  Andrew Haley  <aph at redhat.com>
+
+	* arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S (accessor_sh):
+	Return 0, #deoptimized_frames.
+	(accessor{_h,_sb,_dw}): Likewise.
+
 2011-10-28  Andrew Haley  <aph at redhat.com>
 
 	* arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S (PUSHD0)
diff -r 26bdb437215d -r 0d4f47d2edbf arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S
--- a/arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S	Fri Oct 28 11:46:11 2011 -0400
+++ b/arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S	Mon Oct 31 11:57:33 2011 -0400
@@ -1777,14 +1777,17 @@
 accessor_sh:
 	ldrsh	r0, [r3, r1]
 	str	r0, [ip, #0]
+	mov	r0, #0	@ deoptimized_frames = 0
 	bx	lr
 accessor_h:
 	ldrh	r0, [r3, r1]
 	str	r0, [ip, #0]
+	mov	r0, #0	@ deoptimized_frames = 0
 	bx	lr
 accessor_sb:
 	ldrsb	r0, [r3, r1]
 	str	r0, [ip, #0]
+	mov	r0, #0	@ deoptimized_frames = 0
 	bx	lr
 accessor_dw:
 	add	r0, r3, r1
@@ -1792,6 +1795,7 @@
 	sub	ip, ip, #4
 	str	ip, [r2, #THREAD_JAVA_SP]
 	stmia	ip, {r0, r1}
+	mov	r0, #0	@ deoptimized_frames = 0
 	bx	lr
 
 	Opcode	getfield



More information about the distro-pkg-dev mailing list