8182696: Remove gcTrace.hpp include from referenceProcessor.hpp

Reviewed-by: tschatzl, kbarrett
This commit is contained in:
Stefan Karlsson 2017-06-22 09:07:47 +02:00
parent 12970ac663
commit ed94ecff28
7 changed files with 14 additions and 2 deletions

View File

@ -89,6 +89,8 @@ class G1Allocator;
class G1ArchiveAllocator;
class G1HeapVerifier;
class G1HeapSizingPolicy;
class G1HeapSummary;
class G1EvacSummary;
typedef OverflowTaskQueue<StarTask, mtGC> RefToScanQueue;
typedef GenericTaskQueueSet<RefToScanQueue, mtGC> RefToScanQueueSet;

View File

@ -30,6 +30,7 @@
#include "gc/g1/g1ParScanThreadState.inline.hpp"
#include "gc/g1/g1RootClosures.hpp"
#include "gc/g1/g1StringDedup.hpp"
#include "gc/shared/gcTrace.hpp"
#include "gc/shared/taskqueue.inline.hpp"
#include "oops/oop.inline.hpp"
#include "runtime/prefetch.inline.hpp"

View File

@ -25,6 +25,8 @@
#include "precompiled.hpp"
#include "gc/parallel/generationSizer.hpp"
#include "gc/shared/collectorPolicy.hpp"
#include "runtime/globals_extension.hpp"
#include "utilities/globalDefinitions.hpp"
void GenerationSizer::initialize_alignments() {
_space_alignment = _gen_alignment = default_gen_alignment();

View File

@ -29,6 +29,7 @@
#include "gc/shared/cardGeneration.inline.hpp"
#include "gc/shared/collectorCounters.hpp"
#include "gc/shared/gcTimer.hpp"
#include "gc/shared/gcTrace.hpp"
#include "gc/shared/genOopClosures.inline.hpp"
#include "gc/shared/generationSpec.hpp"
#include "gc/shared/space.hpp"

View File

@ -25,7 +25,6 @@
#ifndef SHARE_VM_GC_SHARED_REFERENCEPROCESSOR_HPP
#define SHARE_VM_GC_SHARED_REFERENCEPROCESSOR_HPP
#include "gc/shared/gcTrace.hpp"
#include "gc/shared/referencePolicy.hpp"
#include "gc/shared/referenceProcessorStats.hpp"
#include "memory/referenceType.hpp"

View File

@ -33,6 +33,10 @@
#include "runtime/commandLineFlagConstraintsRuntime.hpp"
#include "runtime/os.hpp"
#include "utilities/macros.hpp"
#if INCLUDE_ALL_GCS
#include "gc/g1/g1_globals.hpp"
#endif
class CommandLineFlagConstraint_bool : public CommandLineFlagConstraint {
CommandLineFlagConstraintFunc_bool _constraint;
const bool* _ptr;

View File

@ -23,8 +23,11 @@
#include "precompiled.hpp"
#include "gc/shared/collectorPolicy.hpp"
#include "unittest.hpp"
#include "runtime/arguments.hpp"
#include "runtime/globals_extension.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/macros.hpp"
#include "unittest.hpp"
class TestGenCollectorPolicy {
public: