mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-16 17:14:41 +02:00
8254598: StringDedupTable should use OopStorage
Co-authored-by: Kim Barrett <kbarrett@openjdk.org> Co-authored-by: Zhengyu Gu <zgu@openjdk.org> Reviewed-by: coleenp, iklam, tschatzl, ayang
This commit is contained in:
parent
360928d16d
commit
be0a655208
97 changed files with 2399 additions and 3234 deletions
|
@ -34,6 +34,7 @@
|
|||
#include "compiler/compileBroker.hpp"
|
||||
#include "compiler/compilerOracle.hpp"
|
||||
#include "gc/shared/collectedHeap.hpp"
|
||||
#include "gc/shared/stringdedup/stringDedup.hpp"
|
||||
#include "interpreter/bytecodeHistogram.hpp"
|
||||
#include "jfr/jfrEvents.hpp"
|
||||
#include "jfr/support/jfrThreadId.hpp"
|
||||
|
@ -462,6 +463,11 @@ void before_exit(JavaThread* thread) {
|
|||
StatSampler::disengage();
|
||||
StatSampler::destroy();
|
||||
|
||||
// Shut down string deduplication if running.
|
||||
if (StringDedup::is_enabled()) {
|
||||
StringDedup::stop();
|
||||
}
|
||||
|
||||
// Stop concurrent GC threads
|
||||
Universe::heap()->stop();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue