src/share/vm/code/codeBlob.hpp

Print this page

        

*** 20,29 **** --- 20,37 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_CODE_CODEBLOB_HPP + #define SHARE_VM_CODE_CODEBLOB_HPP + + #include "asm/codeBuffer.hpp" + #include "compiler/oopMap.hpp" + #include "runtime/frame.hpp" + #include "runtime/handles.hpp" + // CodeBlob - superclass for all entries in the CodeCache. // // Suptypes are: // nmethod : Compiled Java methods (include method that calls to native code) // RuntimeStub : Call to VM runtime methods
*** 497,501 **** --- 505,511 ---- void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) { /* nothing to do */ } // Typing bool is_safepoint_stub() const { return true; } }; + + #endif // SHARE_VM_CODE_CODEBLOB_HPP