src/share/vm/prims/methodHandles.hpp

changeset 1861
2338d41fbd81
parent 1858
c640000b7cc1
child 1862
cd5dbf694d45
     1.1 --- a/src/share/vm/prims/methodHandles.hpp	Fri Apr 30 04:27:25 2010 -0700
     1.2 +++ b/src/share/vm/prims/methodHandles.hpp	Fri Apr 30 08:37:24 2010 -0700
     1.3 @@ -163,7 +163,7 @@
     1.4      default: ShouldNotReachHere();
     1.5      }
     1.6      // Return the size of the stack slots to move in bytes.
     1.7 -    swap_bytes = swap_slots * Interpreter::stackElementSize();
     1.8 +    swap_bytes = swap_slots * Interpreter::stackElementSize;
     1.9    }
    1.10  
    1.11    static int get_ek_adapter_opt_spread_info(EntryKind ek) {
    1.12 @@ -219,7 +219,7 @@
    1.13    // Offset in words that the interpreter stack pointer moves when an argument is pushed.
    1.14    // The stack_move value must always be a multiple of this.
    1.15    static int stack_move_unit() {
    1.16 -    return frame::interpreter_frame_expression_stack_direction() * Interpreter::stackElementWords();
    1.17 +    return frame::interpreter_frame_expression_stack_direction() * Interpreter::stackElementWords;
    1.18    }
    1.19  
    1.20    enum { CONV_VMINFO_SIGN_FLAG = 0x80 };

mercurial