< prev index next >

src/hotspot/share/runtime/stubRoutines.cpp

Print this page

        

@@ -167,10 +167,13 @@
 address StubRoutines::_safefetch32_continuation_pc       = NULL;
 address StubRoutines::_safefetchN_entry                  = NULL;
 address StubRoutines::_safefetchN_fault_pc               = NULL;
 address StubRoutines::_safefetchN_continuation_pc        = NULL;
 
+address StubRoutines::_load_value_type_fields_in_regs = NULL;
+address StubRoutines::_store_value_type_fields_to_buf = NULL;
+
 // Initialization
 //
 // Note: to break cycle with universe initialization, stubs are generated in two phases.
 // The first one generates stubs needed during universe init (e.g., _handle_must_compile_first_entry).
 // The second phase includes all other stubs (which may depend on universe being initialized.)

@@ -479,10 +482,11 @@
     if (!aligned) RETURN_STUB(jint_fill);
     RETURN_STUB(arrayof_jint_fill);
   case T_DOUBLE:
   case T_LONG:
   case T_ARRAY:
+  case T_VALUETYPE:
   case T_OBJECT:
   case T_NARROWOOP:
   case T_NARROWKLASS:
   case T_ADDRESS:
     // Currently unsupported
< prev index next >