< prev index next >

src/hotspot/share/gc/g1/g1StringDedupTable.cpp

Print this page




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  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/altHashing.hpp"
  27 #include "classfile/javaClasses.inline.hpp"
  28 #include "gc/g1/g1BarrierSet.hpp"
  29 #include "gc/g1/g1CollectedHeap.inline.hpp"
  30 #include "gc/g1/g1StringDedup.hpp"
  31 #include "gc/g1/g1StringDedupTable.hpp"
  32 #include "gc/shared/gcLocker.hpp"
  33 #include "logging/log.hpp"
  34 #include "memory/padded.inline.hpp"
  35 #include "oops/arrayOop.inline.hpp"
  36 #include "oops/oop.inline.hpp"
  37 #include "oops/typeArrayOop.hpp"
  38 #include "runtime/mutexLocker.hpp"

  39 
  40 //
  41 // List of deduplication table entries. Links table
  42 // entries together using their _next fields.
  43 //
  44 class G1StringDedupEntryList : public CHeapObj<mtGC> {
  45 private:
  46   G1StringDedupEntry* _list;
  47   size_t              _length;
  48 
  49 public:
  50   G1StringDedupEntryList() :
  51     _list(NULL),
  52     _length(0) {
  53   }
  54 
  55   void add(G1StringDedupEntry* entry) {
  56     entry->set_next(_list);
  57     _list = entry;
  58     _length++;




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  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/altHashing.hpp"
  27 #include "classfile/javaClasses.inline.hpp"
  28 #include "gc/g1/g1BarrierSet.hpp"
  29 #include "gc/g1/g1CollectedHeap.inline.hpp"
  30 #include "gc/g1/g1StringDedup.hpp"
  31 #include "gc/g1/g1StringDedupTable.hpp"

  32 #include "logging/log.hpp"
  33 #include "memory/padded.inline.hpp"
  34 #include "oops/arrayOop.inline.hpp"
  35 #include "oops/oop.inline.hpp"
  36 #include "oops/typeArrayOop.hpp"
  37 #include "runtime/mutexLocker.hpp"
  38 #include "runtime/safepointVerifiers.hpp"
  39 
  40 //
  41 // List of deduplication table entries. Links table
  42 // entries together using their _next fields.
  43 //
  44 class G1StringDedupEntryList : public CHeapObj<mtGC> {
  45 private:
  46   G1StringDedupEntry* _list;
  47   size_t              _length;
  48 
  49 public:
  50   G1StringDedupEntryList() :
  51     _list(NULL),
  52     _length(0) {
  53   }
  54 
  55   void add(G1StringDedupEntry* entry) {
  56     entry->set_next(_list);
  57     _list = entry;
  58     _length++;


< prev index next >