diff graal/GraalCompiler/src/com/sun/c1x/ir/Throw.java @ 2662:440ceca8e3d7

Add exception handlers only to Invoke and Throw instructions. Deoptimize if there is an exception in a HotSpot runtime call.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 11 May 2011 18:16:01 +0200
parents 8e96b2b3a866
children 7ed72769d51a
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/Throw.java	Wed May 11 17:18:31 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Throw.java	Wed May 11 18:16:01 2011 +0200
@@ -82,15 +82,6 @@
         setException(exception);
     }
 
-    /**
-     * Checks whether this instruction can trap.
-     * @return {@code true} because this instruction definitely throws an exception!
-     */
-    @Override
-    public boolean canTrap() {
-        return true;
-    }
-
     @Override
     public void accept(ValueVisitor v) {
         v.visitThrow(this);