src/hotspot/share/gc/g1/g1AllocRegion.hpp
changeset 59061 df6f2350edfa
parent 59060 fce1fa1bdc91
equal deleted inserted replaced
59060:fce1fa1bdc91 59061:df6f2350edfa
   268   }
   268   }
   269 };
   269 };
   270 
   270 
   271 class SurvivorGCAllocRegion : public G1GCAllocRegion {
   271 class SurvivorGCAllocRegion : public G1GCAllocRegion {
   272 public:
   272 public:
   273   SurvivorGCAllocRegion(G1EvacStats* stats)
   273   SurvivorGCAllocRegion(G1EvacStats* stats, uint node_index)
   274   : G1GCAllocRegion("Survivor GC Alloc Region", false /* bot_updates */, stats, G1HeapRegionAttr::Young) { }
   274   : G1GCAllocRegion("Survivor GC Alloc Region", false /* bot_updates */, stats, G1HeapRegionAttr::Young, node_index) { }
   275 };
   275 };
   276 
   276 
   277 class OldGCAllocRegion : public G1GCAllocRegion {
   277 class OldGCAllocRegion : public G1GCAllocRegion {
   278 public:
   278 public:
   279   OldGCAllocRegion(G1EvacStats* stats)
   279   OldGCAllocRegion(G1EvacStats* stats)