src/share/vm/interpreter/bytecodeInterpreter.hpp

changeset 4237
a3e2f723f2a5
parent 4037
da91efe96a93
child 6450
bfd9d884693d
     1.1 --- a/src/share/vm/interpreter/bytecodeInterpreter.hpp	Fri Oct 26 14:18:57 2012 -0700
     1.2 +++ b/src/share/vm/interpreter/bytecodeInterpreter.hpp	Mon Oct 29 11:08:48 2012 -0700
     1.3 @@ -50,6 +50,10 @@
     1.4  
     1.5  #ifdef CC_INTERP
     1.6  
     1.7 +// JavaStack Implementation
     1.8 +#define MORE_STACK(count)  \
     1.9 +    (topOfStack -= ((count) * Interpreter::stackElementWords))
    1.10 +
    1.11  // CVM definitions find hotspot equivalents...
    1.12  
    1.13  union VMJavaVal64 {
    1.14 @@ -107,7 +111,6 @@
    1.15           rethrow_exception,         // unwinding and throwing exception
    1.16           // requests to frame manager from C++ interpreter
    1.17           call_method,               // request for new frame from interpreter, manager responds with method_entry
    1.18 -         call_method_handle,        // like the above, except the callee is a method handle
    1.19           return_from_method,        // request from interpreter to unwind, manager responds with method_continue
    1.20           more_monitors,             // need a new monitor
    1.21           throwing_exception,        // unwind stack and rethrow

mercurial