diff src/share/vm/interpreter/abstractInterpreter.hpp @ 9025:ff5a32117e02

Implement fast invocation of installed code (direct tail call to the target machine code address).
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 12 Apr 2013 01:53:52 +0200
parents 0094485b46c7
children c6a1ffc707ff
line wrap: on
line diff
--- a/src/share/vm/interpreter/abstractInterpreter.hpp	Thu Apr 11 17:48:30 2013 +0200
+++ b/src/share/vm/interpreter/abstractInterpreter.hpp	Fri Apr 12 01:53:52 2013 +0200
@@ -85,6 +85,7 @@
     zerolocals_synchronized,                                    // method needs locals initialization & is synchronized
     native,                                                     // native method
     native_synchronized,                                        // native method & is synchronized
+    execute_compiled_method,                                    // direct call to compiled method address
     empty,                                                      // empty method (code: _return)
     accessor,                                                   // accessor method (code: _aload_0, _getfield, _(a|i)return)
     abstract,                                                   // abstract method (throws an AbstractMethodException)