< prev index next >

src/hotspot/share/gc/g1/g1BarrierSet.cpp

Print this page
rev 53140 : [mq]: new_allocator

*** 1,7 **** /* ! * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 53,64 **** CardTableBarrierSet(make_barrier_set_assembler<G1BarrierSetAssembler>(), make_barrier_set_c1<G1BarrierSetC1>(), make_barrier_set_c2<G1BarrierSetC2>(), card_table, BarrierSet::FakeRtti(BarrierSet::G1BarrierSet)), ! _satb_mark_queue_buffer_allocator(G1SATBBufferSize, SATB_Q_FL_lock), ! _dirty_card_queue_buffer_allocator(G1UpdateBufferSize, DirtyCardQ_FL_lock), _satb_mark_queue_set(), _dirty_card_queue_set() {} void G1BarrierSet::enqueue(oop pre_val) { --- 53,64 ---- CardTableBarrierSet(make_barrier_set_assembler<G1BarrierSetAssembler>(), make_barrier_set_c1<G1BarrierSetC1>(), make_barrier_set_c2<G1BarrierSetC2>(), card_table, BarrierSet::FakeRtti(BarrierSet::G1BarrierSet)), ! _satb_mark_queue_buffer_allocator("SATB Buffer Allocator", G1SATBBufferSize), ! _dirty_card_queue_buffer_allocator("DC Buffer Allocator", G1UpdateBufferSize), _satb_mark_queue_set(), _dirty_card_queue_set() {} void G1BarrierSet::enqueue(oop pre_val) {
< prev index next >