src/share/vm/prims/methodHandles.cpp

Print this page

        

*** 20,36 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ /* * JSR 292 reference implementation: method handles */ - #include "incls/_precompiled.incl" - #include "incls/_methodHandles.cpp.incl" - bool MethodHandles::_enabled = false; // set true after successful native linkage MethodHandleEntry* MethodHandles::_entries[MethodHandles::_EK_LIMIT] = {NULL}; const char* MethodHandles::_entry_names[_EK_LIMIT+1] = { "raise_exception", --- 20,44 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #include "precompiled.hpp" + #include "classfile/symbolTable.hpp" + #include "interpreter/interpreter.hpp" + #include "memory/allocation.inline.hpp" + #include "memory/oopFactory.hpp" + #include "prims/methodHandles.hpp" + #include "runtime/javaCalls.hpp" + #include "runtime/reflection.hpp" + #include "runtime/signature.hpp" + #include "runtime/stubRoutines.hpp" + /* * JSR 292 reference implementation: method handles */ bool MethodHandles::_enabled = false; // set true after successful native linkage MethodHandleEntry* MethodHandles::_entries[MethodHandles::_EK_LIMIT] = {NULL}; const char* MethodHandles::_entry_names[_EK_LIMIT+1] = { "raise_exception",