src/share/vm/runtime/javaCalls.hpp

changeset 4037
da91efe96a93
parent 3156
f08d439fab8c
child 4299
f34d701e952e
     1.1 --- a/src/share/vm/runtime/javaCalls.hpp	Fri Aug 31 16:39:35 2012 -0700
     1.2 +++ b/src/share/vm/runtime/javaCalls.hpp	Sat Sep 01 13:25:18 2012 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -26,7 +26,7 @@
    1.11  #define SHARE_VM_RUNTIME_JAVACALLS_HPP
    1.12  
    1.13  #include "memory/allocation.hpp"
    1.14 -#include "oops/methodOop.hpp"
    1.15 +#include "oops/method.hpp"
    1.16  #include "runtime/handles.hpp"
    1.17  #include "runtime/javaFrameAnchor.hpp"
    1.18  #include "runtime/vmThread.hpp"
    1.19 @@ -67,7 +67,7 @@
    1.20   private:
    1.21    JavaThread*      _thread;                 // the thread to which this call belongs
    1.22    JNIHandleBlock*  _handles;                // the saved handle block
    1.23 -  methodOop        _callee_method;          // to be able to collect arguments if entry frame is top frame
    1.24 +  Method*          _callee_method;          // to be able to collect arguments if entry frame is top frame
    1.25    oop              _receiver;               // the receiver of the call (if a non-static call)
    1.26  
    1.27    JavaFrameAnchor  _anchor;                 // last thread anchor state that we must restore
    1.28 @@ -87,7 +87,7 @@
    1.29  
    1.30    JavaValue*       result() const           { return _result; }
    1.31    // GC support
    1.32 -  methodOop        callee_method()          { return _callee_method; }
    1.33 +  Method*          callee_method()          { return _callee_method; }
    1.34    oop              receiver()               { return _receiver; }
    1.35    void             oops_do(OopClosure* f);
    1.36  

mercurial