changeset 15703:bd9be86ce634

do not reprofile upon exceptions thrown in NewArrayStub or NewInstanceStub
author Lukas Stadler <lukas.stadler@oracle.com>
date Fri, 16 May 2014 14:01:20 +0200
parents c66c28e1f866
children c5ff0e1e53cf
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/StubUtil.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/StubUtil.java	Fri May 16 12:23:09 2014 +0200
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/StubUtil.java	Fri May 16 14:01:20 2014 +0200
@@ -78,7 +78,7 @@
             if (isObjectResult) {
                 getAndClearObjectResult(thread);
             }
-            DeoptimizeCallerNode.deopt(InvalidateReprofile, RuntimeConstraint);
+            DeoptimizeCallerNode.deopt(DeoptimizationAction.None, RuntimeConstraint);
         }
     }