src/share/vm/ci/ciMethod.hpp

Print this page

        

*** 20,29 **** --- 20,40 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_CI_CIMETHOD_HPP + #define SHARE_VM_CI_CIMETHOD_HPP + + #include "ci/ciFlags.hpp" + #include "ci/ciInstanceKlass.hpp" + #include "ci/ciObject.hpp" + #include "ci/ciSignature.hpp" + #include "compiler/methodLiveness.hpp" + #include "prims/methodHandles.hpp" + #include "utilities/bitMap.hpp" + class ciMethodBlocks; class MethodLiveness; class BitMap; class Arena; class BCEscapeAnalyzer;
*** 267,271 **** --- 278,284 ---- klassOop receiver_limit_oop = NULL; int flags = 0; return MethodHandles::decode_method(get_oop(), receiver_limit_oop, flags); } }; + + #endif // SHARE_VM_CI_CIMETHOD_HPP