hotspot/src/share/vm/code/oopRecorder.cpp
author twisti
Thu, 20 May 2010 06:34:23 -0700
changeset 5686 5435e77aa3df
parent 1 489c9b5090e2
child 5702 201c5cde25bb
permissions -rw-r--r--
6951083: oops and relocations should part of nmethod not CodeBlob Summary: This moves the oops from Codeblob to nmethod. Reviewed-by: kvn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
     2
 * Copyright 1998-2010 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_oopRecorder.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
int OopRecorder::_find_index_calls = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
int OopRecorder::_hit_indexes      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
int OopRecorder::_missed_indexes   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
OopRecorder::OopRecorder(Arena* arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  _handles  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  _indexes  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  _arena    = arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  _complete = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
OopRecorder::IndexCache::IndexCache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  assert(first_index > 0, "initial zero state of cache must be invalid index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  Copy::zero_to_bytes(&_cache[0], sizeof(_cache));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
int OopRecorder::oop_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  _complete = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  if (_handles == NULL)  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  return _handles->length() * sizeof(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
    53
void OopRecorder::copy_to(nmethod* nm) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  assert(_complete, "must be frozen");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  maybe_initialize();  // get non-null handles, even if we have no oops
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
    56
  nm->copy_oops(_handles);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
void OopRecorder::maybe_initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  if (_handles == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    if (_arena != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
      _handles  = new(_arena) GrowableArray<jobject>(_arena, 10, 0, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      _no_finds = new(_arena) GrowableArray<int>(    _arena, 10, 0, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      _handles  = new GrowableArray<jobject>(10, 0, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
      _no_finds = new GrowableArray<int>(    10, 0, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
jobject OopRecorder::handle_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // there is always a NULL virtually present as first object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  if (index == null_index)  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  return _handles->at(index - first_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// Local definition.  Used only in this module.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
inline bool OopRecorder::is_real_jobject(jobject h) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  return h != NULL && h != (jobject)Universe::non_oop_word();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
int OopRecorder::add_handle(jobject h, bool make_findable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  assert(!_complete, "cannot allocate more elements after size query");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  maybe_initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // indexing uses 1 as an origin--0 means null
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  int index = _handles->length() + first_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  _handles->append(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Support correct operation of find_index().
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  assert(!(make_findable && !is_real_jobject(h)), "nulls are not findable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (make_findable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    // This index may be returned from find_index().
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    if (_indexes != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      int* cloc = _indexes->cache_location(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      _indexes->set_cache_location_index(cloc, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    } else if (index == index_cache_threshold && _arena != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      _indexes = new(_arena) IndexCache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
      for (int i = 0; i < _handles->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
        // Load the cache with pre-existing elements.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
        int index0 = i + first_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
        if (_no_finds->contains(index0))  continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
        int* cloc = _indexes->cache_location(_handles->at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
        _indexes->set_cache_location_index(cloc, index0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  } else if (is_real_jobject(h)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    // Remember that this index is not to be returned from find_index().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    // This case is rare, because most or all uses of allocate_index pass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    // a jobject argument of NULL or Universe::non_oop_word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    // Thus, the expected length of _no_finds is zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    _no_finds->append(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  return index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
int OopRecorder::maybe_find_index(jobject h) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  debug_only(_find_index_calls++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  assert(!_complete, "cannot allocate more elements after size query");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  maybe_initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  if (h == NULL)  return null_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  assert(is_real_jobject(h), "must be valid jobject");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  int* cloc = (_indexes == NULL)? NULL: _indexes->cache_location(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  if (cloc != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    int cindex = _indexes->cache_location_index(cloc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    if (cindex == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      return -1;   // We know this handle is completely new.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    if (cindex >= first_index && _handles->at(cindex - first_index) == h) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
      debug_only(_hit_indexes++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      return cindex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    if (!_indexes->cache_location_collision(cloc)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
      return -1;   // We know the current cache occupant is unique to that cloc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // Not found in cache, due to a cache collision.  (Or, no cache at all.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Do a linear search, most recent to oldest.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  for (int i = _handles->length() - 1; i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    if (_handles->at(i) == h) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
      int findex = i + first_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
      if (_no_finds->contains(findex))  continue;  // oops; skip this one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
      if (cloc != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
        _indexes->set_cache_location_index(cloc, findex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      debug_only(_missed_indexes++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
      return findex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
}