src/share/vm/gc/serial/defNewGeneration.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/gc/serial

src/share/vm/gc/serial/defNewGeneration.cpp

Print this page




  26 #include "gc/serial/defNewGeneration.inline.hpp"
  27 #include "gc/shared/ageTable.inline.hpp"
  28 #include "gc/shared/cardTableRS.hpp"
  29 #include "gc/shared/collectorCounters.hpp"
  30 #include "gc/shared/gcHeapSummary.hpp"
  31 #include "gc/shared/gcLocker.inline.hpp"
  32 #include "gc/shared/gcPolicyCounters.hpp"
  33 #include "gc/shared/gcTimer.hpp"
  34 #include "gc/shared/gcTrace.hpp"
  35 #include "gc/shared/gcTraceTime.inline.hpp"
  36 #include "gc/shared/genCollectedHeap.hpp"
  37 #include "gc/shared/genOopClosures.inline.hpp"
  38 #include "gc/shared/generationSpec.hpp"
  39 #include "gc/shared/preservedMarks.inline.hpp"
  40 #include "gc/shared/referencePolicy.hpp"
  41 #include "gc/shared/space.inline.hpp"
  42 #include "gc/shared/spaceDecorator.hpp"
  43 #include "gc/shared/strongRootsScope.hpp"
  44 #include "logging/log.hpp"
  45 #include "memory/iterator.hpp"

  46 #include "oops/instanceRefKlass.hpp"
  47 #include "oops/oop.inline.hpp"
  48 #include "runtime/atomic.inline.hpp"
  49 #include "runtime/java.hpp"
  50 #include "runtime/prefetch.inline.hpp"
  51 #include "runtime/thread.inline.hpp"
  52 #include "utilities/copy.hpp"
  53 #include "utilities/globalDefinitions.hpp"
  54 #include "utilities/stack.inline.hpp"
  55 #if INCLUDE_ALL_GCS
  56 #include "gc/cms/parOopClosures.hpp"
  57 #endif
  58 
  59 //
  60 // DefNewGeneration functions.
  61 
  62 // Methods of protected closure types.
  63 
  64 DefNewGeneration::IsAliveClosure::IsAliveClosure(Generation* young_gen) : _young_gen(young_gen) {
  65   assert(_young_gen->kind() == Generation::ParNew ||




  26 #include "gc/serial/defNewGeneration.inline.hpp"
  27 #include "gc/shared/ageTable.inline.hpp"
  28 #include "gc/shared/cardTableRS.hpp"
  29 #include "gc/shared/collectorCounters.hpp"
  30 #include "gc/shared/gcHeapSummary.hpp"
  31 #include "gc/shared/gcLocker.inline.hpp"
  32 #include "gc/shared/gcPolicyCounters.hpp"
  33 #include "gc/shared/gcTimer.hpp"
  34 #include "gc/shared/gcTrace.hpp"
  35 #include "gc/shared/gcTraceTime.inline.hpp"
  36 #include "gc/shared/genCollectedHeap.hpp"
  37 #include "gc/shared/genOopClosures.inline.hpp"
  38 #include "gc/shared/generationSpec.hpp"
  39 #include "gc/shared/preservedMarks.inline.hpp"
  40 #include "gc/shared/referencePolicy.hpp"
  41 #include "gc/shared/space.inline.hpp"
  42 #include "gc/shared/spaceDecorator.hpp"
  43 #include "gc/shared/strongRootsScope.hpp"
  44 #include "logging/log.hpp"
  45 #include "memory/iterator.hpp"
  46 #include "memory/resourceArea.hpp"
  47 #include "oops/instanceRefKlass.hpp"
  48 #include "oops/oop.inline.hpp"
  49 #include "runtime/atomic.inline.hpp"
  50 #include "runtime/java.hpp"
  51 #include "runtime/prefetch.inline.hpp"
  52 #include "runtime/thread.inline.hpp"
  53 #include "utilities/copy.hpp"
  54 #include "utilities/globalDefinitions.hpp"
  55 #include "utilities/stack.inline.hpp"
  56 #if INCLUDE_ALL_GCS
  57 #include "gc/cms/parOopClosures.hpp"
  58 #endif
  59 
  60 //
  61 // DefNewGeneration functions.
  62 
  63 // Methods of protected closure types.
  64 
  65 DefNewGeneration::IsAliveClosure::IsAliveClosure(Generation* young_gen) : _young_gen(young_gen) {
  66   assert(_young_gen->kind() == Generation::ParNew ||


src/share/vm/gc/serial/defNewGeneration.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File