changeset in /hg/icedtea6: 2008-11-03 Gary Benson <gbenson at red...

Gary Benson gbenson at redhat.com
Mon Nov 3 05:56:40 PST 2008


changeset f58ec27b8941 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=f58ec27b8941
description:
	2008-11-03  Gary Benson  <gbenson at redhat.com>

		* ports/hotspot/src/share/vm/shark/sharkBlock.cpp
		(SharkBlock::parse): Fix shift instructions to use only the
		lower order bits of the second argument.

diffstat:

2 files changed, 27 insertions(+), 6 deletions(-)
ChangeLog                                       |    6 +++++
ports/hotspot/src/share/vm/shark/sharkBlock.cpp |   27 +++++++++++++++++------

diffs (81 lines):

diff -r 002c8f181f67 -r f58ec27b8941 ChangeLog
--- a/ChangeLog	Mon Nov 03 08:30:13 2008 -0500
+++ b/ChangeLog	Mon Nov 03 08:56:35 2008 -0500
@@ -1,3 +1,9 @@ 2008-11-03  Gary Benson  <gbenson at redhat
+2008-11-03  Gary Benson  <gbenson at redhat.com>
+
+	* ports/hotspot/src/share/vm/shark/sharkBlock.cpp
+	(SharkBlock::parse): Fix shift instructions to use only the
+	lower order bits of the second argument.
+
 2008-11-03  Gary Benson  <gbenson at redhat.com>
 
 	* ports/hotspot/src/cpu/zero/vm/bytecodeInterpreter_zero.inline.hpp
diff -r 002c8f181f67 -r f58ec27b8941 ports/hotspot/src/share/vm/shark/sharkBlock.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkBlock.cpp	Mon Nov 03 08:30:13 2008 -0500
+++ b/ports/hotspot/src/share/vm/shark/sharkBlock.cpp	Mon Nov 03 08:56:35 2008 -0500
@@ -486,19 +486,28 @@ void SharkBlock::parse()
       b = pop();
       a = pop();
       push(SharkValue::create_jint(
-        builder()->CreateShl(a->jint_value(), b->jint_value())));
+        builder()->CreateShl(
+          a->jint_value(),
+          builder()->CreateAnd(
+            b->jint_value(), LLVMValue::jint_constant(0x1f))));
       break;
     case Bytecodes::_ishr:
       b = pop();
       a = pop();
       push(SharkValue::create_jint(
-        builder()->CreateAShr(a->jint_value(), b->jint_value())));
+        builder()->CreateAShr(
+          a->jint_value(),
+          builder()->CreateAnd(
+            b->jint_value(), LLVMValue::jint_constant(0x1f))));
       break;
     case Bytecodes::_iushr:
       b = pop();
       a = pop();
       push(SharkValue::create_jint(
-        builder()->CreateLShr(a->jint_value(), b->jint_value())));
+        builder()->CreateLShr(
+          a->jint_value(),
+          builder()->CreateAnd(
+            b->jint_value(), LLVMValue::jint_constant(0x1f))));
       break;
     case Bytecodes::_iand:
       b = pop();
@@ -555,7 +564,9 @@ void SharkBlock::parse()
         builder()->CreateShl(
           a->jlong_value(),
           builder()->CreateIntCast(
-            b->jint_value(), SharkType::jlong_type(), true))));
+            builder()->CreateAnd(
+              b->jint_value(), LLVMValue::jint_constant(0x3f)),
+            SharkType::jlong_type(), true))));
       break;
     case Bytecodes::_lshr:
       b = pop();
@@ -564,7 +575,9 @@ void SharkBlock::parse()
         builder()->CreateAShr(
           a->jlong_value(),
           builder()->CreateIntCast(
-            b->jint_value(), SharkType::jlong_type(), true))));
+            builder()->CreateAnd(
+              b->jint_value(), LLVMValue::jint_constant(0x3f)),
+            SharkType::jlong_type(), true))));
       break;
     case Bytecodes::_lushr:
       b = pop();
@@ -573,7 +586,9 @@ void SharkBlock::parse()
         builder()->CreateLShr(
           a->jlong_value(),
           builder()->CreateIntCast(
-            b->jint_value(), SharkType::jlong_type(), true))));
+            builder()->CreateAnd(
+              b->jint_value(), LLVMValue::jint_constant(0x3f)),
+            SharkType::jlong_type(), true))));
       break;
     case Bytecodes::_land:
       b = pop();



More information about the distro-pkg-dev mailing list