Skip to content

Commit 6ee76b6

Browse files
committed
8249760: Unnecessary #include oopStorageSet
Reviewed-by: hseigel
1 parent 3e0dc68 commit 6ee76b6

14 files changed

Lines changed: 8 additions & 20 deletions

src/hotspot/share/classfile/classLoaderData.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@
5555
#include "classfile/packageEntry.hpp"
5656
#include "classfile/symbolTable.hpp"
5757
#include "classfile/systemDictionary.hpp"
58-
#include "gc/shared/oopStorageSet.hpp"
5958
#include "logging/log.hpp"
6059
#include "logging/logStream.hpp"
6160
#include "memory/allocation.inline.hpp"
6261
#include "memory/metadataFactory.hpp"
6362
#include "memory/resourceArea.hpp"
63+
#include "memory/universe.hpp"
6464
#include "oops/access.inline.hpp"
6565
#include "oops/oop.inline.hpp"
6666
#include "oops/oopHandle.inline.hpp"

src/hotspot/share/classfile/dictionary.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
#include "classfile/dictionary.hpp"
2828
#include "classfile/protectionDomainCache.hpp"
2929
#include "classfile/systemDictionary.hpp"
30-
#include "gc/shared/oopStorageSet.hpp"
3130
#include "logging/log.hpp"
3231
#include "logging/logStream.hpp"
3332
#include "memory/iterator.hpp"
3433
#include "memory/metaspaceClosure.hpp"
3534
#include "memory/resourceArea.hpp"
35+
#include "memory/universe.hpp"
3636
#include "oops/oop.inline.hpp"
3737
#include "oops/oopHandle.inline.hpp"
3838
#include "runtime/mutexLocker.hpp"

src/hotspot/share/classfile/protectionDomainCache.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -27,11 +27,11 @@
2727
#include "classfile/dictionary.hpp"
2828
#include "classfile/protectionDomainCache.hpp"
2929
#include "classfile/systemDictionary.hpp"
30-
#include "gc/shared/oopStorageSet.hpp"
3130
#include "logging/log.hpp"
3231
#include "logging/logStream.hpp"
3332
#include "memory/iterator.hpp"
3433
#include "memory/resourceArea.hpp"
34+
#include "memory/universe.hpp"
3535
#include "oops/oop.inline.hpp"
3636
#include "oops/weakHandle.inline.hpp"
3737
#include "utilities/hashtable.inline.hpp"

src/hotspot/share/classfile/systemDictionary.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
#include "code/codeCache.hpp"
4747
#include "compiler/compileBroker.hpp"
4848
#include "gc/shared/gcTraceTime.inline.hpp"
49-
#include "gc/shared/oopStorageSet.hpp"
5049
#include "interpreter/bytecodeStream.hpp"
5150
#include "interpreter/interpreter.hpp"
5251
#include "jfr/jfrEvents.hpp"

src/hotspot/share/classfile/systemDictionaryShared.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
#include "classfile/systemDictionaryShared.hpp"
3737
#include "classfile/verificationType.hpp"
3838
#include "classfile/vmSymbols.hpp"
39-
#include "gc/shared/oopStorageSet.hpp"
4039
#include "jfr/jfrEvents.hpp"
4140
#include "logging/log.hpp"
4241
#include "memory/allocation.hpp"

src/hotspot/share/gc/shared/weakProcessor.inline.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,7 +28,6 @@
2828
#include "classfile/stringTable.hpp"
2929
#include "gc/shared/oopStorage.inline.hpp"
3030
#include "gc/shared/oopStorageParState.inline.hpp"
31-
#include "gc/shared/oopStorageSet.hpp"
3231
#include "gc/shared/weakProcessor.hpp"
3332
#include "gc/shared/weakProcessorPhases.hpp"
3433
#include "gc/shared/weakProcessorPhaseTimes.hpp"

src/hotspot/share/gc/shared/weakProcessorPhaseTimes.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,7 +25,6 @@
2525
#ifndef SHARE_GC_SHARED_WEAKPROCESSORPHASETIMES_HPP
2626
#define SHARE_GC_SHARED_WEAKPROCESSORPHASETIMES_HPP
2727

28-
#include "gc/shared/oopStorageSet.hpp"
2928
#include "gc/shared/weakProcessorPhases.hpp"
3029
#include "memory/allocation.hpp"
3130
#include "utilities/globalDefinitions.hpp"

src/hotspot/share/gc/shared/weakProcessorPhases.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,6 @@
2323
*/
2424

2525
#include "precompiled.hpp"
26-
#include "gc/shared/oopStorageSet.hpp"
2726
#include "gc/shared/weakProcessorPhases.hpp"
2827
#include "utilities/debug.hpp"
2928
#include "utilities/macros.hpp"

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
#include "gc/shared/gcTraceTime.inline.hpp"
3232
#include "gc/shared/locationPrinter.inline.hpp"
3333
#include "gc/shared/memAllocator.hpp"
34-
#include "gc/shared/oopStorageSet.hpp"
3534
#include "gc/shared/plab.hpp"
3635

3736
#include "gc/shenandoah/shenandoahBarrierSet.hpp"

src/hotspot/share/gc/shenandoah/shenandoahRootProcessor.inline.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
#include "classfile/stringTable.hpp"
3030
#include "classfile/systemDictionary.hpp"
3131
#include "gc/shared/oopStorageSetParState.inline.hpp"
32-
#include "gc/shared/oopStorageSet.hpp"
3332
#include "gc/shenandoah/shenandoahClosures.inline.hpp"
3433
#include "gc/shenandoah/shenandoahConcurrentRoots.hpp"
3534
#include "gc/shenandoah/shenandoahHeap.inline.hpp"

0 commit comments

Comments
 (0)