src/share/vm/interpreter/bytecodes.cpp

Print this page

        

*** 20,31 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #include "incls/_precompiled.incl" ! #include "incls/_bytecodes.cpp.incl" #if defined(WIN32) && (defined(_MSC_VER) && (_MSC_VER < 1600)) // Windows AMD64 Compiler Hangs compiling this file // unless optimization is off --- 20,42 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #include "precompiled.hpp" ! #include "interpreter/bytecodes.hpp" ! #include "memory/resourceArea.hpp" ! #include "oops/methodOop.hpp" ! #ifdef TARGET_ARCH_x86 ! # include "bytes_x86.hpp" ! #endif ! #ifdef TARGET_ARCH_sparc ! # include "bytes_sparc.hpp" ! #endif ! #ifdef TARGET_ARCH_zero ! # include "bytes_zero.hpp" ! #endif #if defined(WIN32) && (defined(_MSC_VER) && (_MSC_VER < 1600)) // Windows AMD64 Compiler Hangs compiling this file // unless optimization is off