src/share/vm/gc_implementation/g1/g1BlockOffsetTable.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/gc_implementation/g1/g1BlockOffsetTable.cpp	Mon May 13 16:34:11 2013
--- new/src/share/vm/gc_implementation/g1/g1BlockOffsetTable.cpp	Mon May 13 16:34:10 2013

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 2001, 2013, 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.
*** 44,54 **** --- 44,55 ---- } if (!_vs.initialize(rs, 0)) { vm_exit_during_initialization("Could not reserve enough space for heap offset array"); } ! MemTracker::record_virtual_memory_type((address)rs.base(), mtGC); ! NMTTrackOp op(NMTTrackOp::TypeOp); + op.execute_op((address)rs.base(), 0, mtGC); _offset_array = (u_char*)_vs.low_boundary(); resize(init_word_size); if (TraceBlockOffsetTable) { gclog_or_tty->print_cr("G1BlockOffsetSharedArray::G1BlockOffsetSharedArray: ");

src/share/vm/gc_implementation/g1/g1BlockOffsetTable.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File