< prev index next >

src/hotspot/share/gc/shenandoah/shenandoahRuntime.cpp

Print this page
rev 56375 : 8231447: Shenandoah: Compilation-time regression after JDK-8231086


   6  * published by the Free Software Foundation.
   7  *
   8  * This code is distributed in the hope that it will be useful, but WITHOUT
   9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  11  * version 2 for more details (a copy is included in the LICENSE file that
  12  * accompanied this code).
  13  *
  14  * You should have received a copy of the GNU General Public License version
  15  * 2 along with this work; if not, write to the Free Software Foundation,
  16  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  17  *
  18  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  19  * or visit www.oracle.com if you need additional information or have any
  20  * questions.
  21  *
  22  */
  23 
  24 #include "precompiled.hpp"
  25 #include "gc/shenandoah/shenandoahBarrierSet.inline.hpp"

  26 #include "gc/shenandoah/shenandoahRuntime.hpp"
  27 #include "gc/shenandoah/shenandoahThreadLocalData.hpp"
  28 #include "runtime/interfaceSupport.inline.hpp"
  29 #include "oops/oop.inline.hpp"
  30 
  31 void ShenandoahRuntime::write_ref_array_pre_oop_entry(oop* src, oop* dst, size_t length) {
  32   ShenandoahBarrierSet *bs = ShenandoahBarrierSet::barrier_set();
  33   bs->arraycopy_pre(src, dst, length);
  34 }
  35 
  36 void ShenandoahRuntime::write_ref_array_pre_narrow_oop_entry(narrowOop* src, narrowOop* dst, size_t length) {
  37   ShenandoahBarrierSet *bs = ShenandoahBarrierSet::barrier_set();
  38   bs->arraycopy_pre(src, dst, length);
  39 }
  40 
  41 void ShenandoahRuntime::write_ref_array_pre_duinit_oop_entry(oop* src, oop* dst, size_t length) {
  42   ShenandoahBarrierSet *bs = ShenandoahBarrierSet::barrier_set();
  43   bs->arraycopy_update(src, length);
  44 }
  45 




   6  * published by the Free Software Foundation.
   7  *
   8  * This code is distributed in the hope that it will be useful, but WITHOUT
   9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  11  * version 2 for more details (a copy is included in the LICENSE file that
  12  * accompanied this code).
  13  *
  14  * You should have received a copy of the GNU General Public License version
  15  * 2 along with this work; if not, write to the Free Software Foundation,
  16  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  17  *
  18  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  19  * or visit www.oracle.com if you need additional information or have any
  20  * questions.
  21  *
  22  */
  23 
  24 #include "precompiled.hpp"
  25 #include "gc/shenandoah/shenandoahBarrierSet.inline.hpp"
  26 #include "gc/shenandoah/shenandoahBarrierSetClone.inline.hpp"
  27 #include "gc/shenandoah/shenandoahRuntime.hpp"
  28 #include "gc/shenandoah/shenandoahThreadLocalData.hpp"
  29 #include "runtime/interfaceSupport.inline.hpp"
  30 #include "oops/oop.inline.hpp"
  31 
  32 void ShenandoahRuntime::write_ref_array_pre_oop_entry(oop* src, oop* dst, size_t length) {
  33   ShenandoahBarrierSet *bs = ShenandoahBarrierSet::barrier_set();
  34   bs->arraycopy_pre(src, dst, length);
  35 }
  36 
  37 void ShenandoahRuntime::write_ref_array_pre_narrow_oop_entry(narrowOop* src, narrowOop* dst, size_t length) {
  38   ShenandoahBarrierSet *bs = ShenandoahBarrierSet::barrier_set();
  39   bs->arraycopy_pre(src, dst, length);
  40 }
  41 
  42 void ShenandoahRuntime::write_ref_array_pre_duinit_oop_entry(oop* src, oop* dst, size_t length) {
  43   ShenandoahBarrierSet *bs = ShenandoahBarrierSet::barrier_set();
  44   bs->arraycopy_update(src, length);
  45 }
  46 


< prev index next >