src/share/vm/gc_implementation/g1/g1StringDedup.cpp

Print this page
rev 6521 : 8044775: Improve usage of umbrella header atomic.inline.hpp.


  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/javaClasses.hpp"
  27 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
  28 #include "gc_implementation/g1/g1GCPhaseTimes.hpp"
  29 #include "gc_implementation/g1/g1StringDedup.hpp"
  30 #include "gc_implementation/g1/g1StringDedupQueue.hpp"
  31 #include "gc_implementation/g1/g1StringDedupStat.hpp"
  32 #include "gc_implementation/g1/g1StringDedupTable.hpp"
  33 #include "gc_implementation/g1/g1StringDedupThread.hpp"

  34 
  35 bool G1StringDedup::_enabled = false;
  36 
  37 void G1StringDedup::initialize() {
  38   assert(UseG1GC, "String deduplication only available with G1");
  39   if (UseStringDeduplication) {
  40     _enabled = true;
  41     G1StringDedupQueue::create();
  42     G1StringDedupTable::create();
  43     G1StringDedupThread::create();
  44   }
  45 }
  46 
  47 void G1StringDedup::stop() {
  48   assert(is_enabled(), "String deduplication not enabled");
  49   G1StringDedupThread::stop();
  50 }
  51 
  52 bool G1StringDedup::is_candidate_from_mark(oop obj) {
  53   if (java_lang_String::is_instance(obj)) {




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/javaClasses.hpp"
  27 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
  28 #include "gc_implementation/g1/g1GCPhaseTimes.hpp"
  29 #include "gc_implementation/g1/g1StringDedup.hpp"
  30 #include "gc_implementation/g1/g1StringDedupQueue.hpp"
  31 #include "gc_implementation/g1/g1StringDedupStat.hpp"
  32 #include "gc_implementation/g1/g1StringDedupTable.hpp"
  33 #include "gc_implementation/g1/g1StringDedupThread.hpp"
  34 #include "runtime/atomic.inline.hpp"
  35 
  36 bool G1StringDedup::_enabled = false;
  37 
  38 void G1StringDedup::initialize() {
  39   assert(UseG1GC, "String deduplication only available with G1");
  40   if (UseStringDeduplication) {
  41     _enabled = true;
  42     G1StringDedupQueue::create();
  43     G1StringDedupTable::create();
  44     G1StringDedupThread::create();
  45   }
  46 }
  47 
  48 void G1StringDedup::stop() {
  49   assert(is_enabled(), "String deduplication not enabled");
  50   G1StringDedupThread::stop();
  51 }
  52 
  53 bool G1StringDedup::is_candidate_from_mark(oop obj) {
  54   if (java_lang_String::is_instance(obj)) {