< prev index next >

src/hotspot/cpu/zero/cppInterpreterGenerator_zero.cpp

Print this page
rev 49911 : imported patch removeAllGCs

*** 63,73 **** return generate_entry((address) CppInterpreter::accessor_entry); } address CppInterpreterGenerator::generate_Reference_get_entry(void) { ! #if INCLUDE_ALL_GCS if (UseG1GC) { // We need to generate have a routine that generates code to: // * load the value in the referent field // * passes that value to the pre-barrier. // --- 63,73 ---- return generate_entry((address) CppInterpreter::accessor_entry); } address CppInterpreterGenerator::generate_Reference_get_entry(void) { ! #if INCLUDE_G1GC if (UseG1GC) { // We need to generate have a routine that generates code to: // * load the value in the referent field // * passes that value to the pre-barrier. //
*** 75,85 **** // referent in an SATB buffer if marking is active. // This will cause concurrent marking to mark the referent // field as live. Unimplemented(); } ! #endif // INCLUDE_ALL_GCS // If G1 is not enabled then attempt to go through the normal entry point // Reference.get could be instrumented by jvmti return NULL; } --- 75,85 ---- // referent in an SATB buffer if marking is active. // This will cause concurrent marking to mark the referent // field as live. Unimplemented(); } ! #endif // INCLUDE_G1GC // If G1 is not enabled then attempt to go through the normal entry point // Reference.get could be instrumented by jvmti return NULL; }
< prev index next >