comparison src/share/vm/interpreter/cppInterpreter.cpp @ 3249:e1162778c1c8

7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error Summary: A referent object that is only weakly reachable at the start of concurrent marking but is re-attached to the strongly reachable object graph during marking may not be marked as live. This can cause the reference object to be processed prematurely and leave dangling pointers to the referent object. Implement a read barrier for the java.lang.ref.Reference::referent field by intrinsifying the Reference.get() method, and intercepting accesses though JNI, reflection, and Unsafe, so that when a non-null referent object is read it is also logged in an SATB buffer. Reviewed-by: kvn, iveresov, never, tonyp, dholmes
author johnc
date Thu, 07 Apr 2011 09:53:20 -0700
parents f95d63e2154a
children a3e2f723f2a5
comparison
equal deleted inserted replaced
3248:e6beb62de02d 3249:e1162778c1c8
1 /* 1 /*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
123 method_entry(java_lang_math_tan ); 123 method_entry(java_lang_math_tan );
124 method_entry(java_lang_math_abs ); 124 method_entry(java_lang_math_abs );
125 method_entry(java_lang_math_sqrt ); 125 method_entry(java_lang_math_sqrt );
126 method_entry(java_lang_math_log ); 126 method_entry(java_lang_math_log );
127 method_entry(java_lang_math_log10 ); 127 method_entry(java_lang_math_log10 );
128 method_entry(java_lang_ref_reference_get);
128 Interpreter::_native_entry_begin = Interpreter::code()->code_end(); 129 Interpreter::_native_entry_begin = Interpreter::code()->code_end();
129 method_entry(native); 130 method_entry(native);
130 method_entry(native_synchronized); 131 method_entry(native_synchronized);
131 Interpreter::_native_entry_end = Interpreter::code()->code_end(); 132 Interpreter::_native_entry_end = Interpreter::code()->code_end();
132 } 133 }