hotspot/src/share/vm/runtime/stubRoutines.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File jdk9-opensource-openjdk Cdiff hotspot/src/share/vm/runtime/stubRoutines.cpp

hotspot/src/share/vm/runtime/stubRoutines.cpp

Print this page

        

*** 22,32 **** * */ #include "precompiled.hpp" #include "asm/codeBuffer.hpp" - #include "code/codeCacheExtensions.hpp" #include "memory/resourceArea.hpp" #include "oops/oop.inline.hpp" #include "runtime/interfaceSupport.hpp" #include "runtime/timerTrace.hpp" #include "runtime/sharedRuntime.hpp" --- 22,31 ----
*** 202,217 **** #ifdef ASSERT typedef void (*arraycopy_fn)(address src, address dst, int count); // simple tests of generated arraycopy functions static void test_arraycopy_func(address func, int alignment) { - if (CodeCacheExtensions::use_pregenerated_interpreter() || !CodeCacheExtensions::is_executable(func)) { - // Exit safely if stubs were generated but cannot be used. - // Also excluding pregenerated interpreter since the code may depend on - // some registers being properly initialized (for instance Rthread) - return; - } int v = 0xcc; int v2 = 0x11; jlong lbuffer[8]; jlong lbuffer2[8]; address fbuffer = (address) lbuffer; --- 201,210 ----
hotspot/src/share/vm/runtime/stubRoutines.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File