< prev index next >

src/share/vm/oops/oop.hpp

Print this page
rev 9846 : [mq]: par-scav-patch
rev 9847 : 8146987: Improve Parallel GC Full GC by caching results of live_words_in_range()
Summary: A large part of time in the parallel scavenge collector is spent finding out the amount of live words within memory ranges to find out where to move an object to. Try to incrementally calculate this value.
Reviewed-by: tschatzl, mgerdin
Contributed-by: ray alex <sky1young@gmail.com>

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -328,11 +328,11 @@
   // return the size of this oop.  This is used by the MarkSweep collector.
   int  ms_adjust_pointers();
 #if INCLUDE_ALL_GCS
   // Parallel Compact
   void pc_follow_contents(ParCompactionManager* pc);
-  void pc_update_contents();
+  void pc_update_contents(ParCompactionManager* pc);
   // Parallel Scavenge
   void ps_push_contents(PSPromotionManager* pm);
 #endif
 
 
< prev index next >