< prev index next >

src/share/vm/gc_implementation/shenandoah/shenandoahStringDedup.cpp

Print this page
rev 10690 : [backport] Cleanup header files and forward declarations
rev 10715 : [backport] Cleanup up superfluous newlines
rev 10724 : [backport] Add JFR parallel and concurrent events (infrastructure)
rev 10764 : [backport] Rename BrooksPointer to ShenandoahBrooksPointer
rev 10772 : [backport] Update copyrights

*** 1,7 **** /* ! * Copyright (c) 2017, 2018, Red Hat, Inc. and/or its affiliates. * * 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) 2017, 2018, Red Hat, Inc. All rights reserved. * * 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. *
*** 22,40 **** */ #include "precompiled.hpp" #include "classfile/altHashing.hpp" ! #include "gc_implementation/shenandoah/brooksPointer.hpp" #include "gc_implementation/shenandoah/shenandoahCollectionSet.hpp" #include "gc_implementation/shenandoah/shenandoahCollectionSet.inline.hpp" #include "gc_implementation/shenandoah/shenandoahHeap.inline.hpp" #include "gc_implementation/shenandoah/shenandoahMarkingContext.inline.hpp" #include "gc_implementation/shenandoah/shenandoahStrDedupQueue.inline.hpp" #include "gc_implementation/shenandoah/shenandoahStrDedupTable.hpp" #include "gc_implementation/shenandoah/shenandoahStrDedupThread.hpp" #include "gc_implementation/shenandoah/shenandoahStringDedup.hpp" #include "gc_implementation/shenandoah/shenandoahUtils.hpp" #include "runtime/os.hpp" #include "utilities/workgroup.hpp" ShenandoahStrDedupQueueSet* ShenandoahStringDedup::_queues = NULL; --- 22,42 ---- */ #include "precompiled.hpp" #include "classfile/altHashing.hpp" ! #include "gc_implementation/shenandoah/shenandoahBrooksPointer.hpp" #include "gc_implementation/shenandoah/shenandoahCollectionSet.hpp" #include "gc_implementation/shenandoah/shenandoahCollectionSet.inline.hpp" #include "gc_implementation/shenandoah/shenandoahHeap.inline.hpp" #include "gc_implementation/shenandoah/shenandoahMarkingContext.inline.hpp" #include "gc_implementation/shenandoah/shenandoahStrDedupQueue.inline.hpp" #include "gc_implementation/shenandoah/shenandoahStrDedupTable.hpp" #include "gc_implementation/shenandoah/shenandoahStrDedupThread.hpp" #include "gc_implementation/shenandoah/shenandoahStringDedup.hpp" + #include "gc_implementation/shenandoah/shenandoahTimingTracker.hpp" + #include "gc_implementation/shenandoah/shenandoahWorkGroup.hpp" #include "gc_implementation/shenandoah/shenandoahUtils.hpp" #include "runtime/os.hpp" #include "utilities/workgroup.hpp" ShenandoahStrDedupQueueSet* ShenandoahStringDedup::_queues = NULL;
*** 107,117 **** _queues->parallel_oops_do(cl); _table->parallel_oops_do(cl); _thread->parallel_oops_do(cl); } - void ShenandoahStringDedup::oops_do_slow(OopClosure* cl) { _queues->oops_do_slow(cl); _table->oops_do_slow(cl); _thread->oops_do_slow(cl); } --- 109,118 ----
< prev index next >