hotspot/src/share/vm/code/stubs.cpp
author trims
Thu, 27 May 2010 19:08:38 -0700
changeset 5547 f4b087cbb361
parent 5403 6b0dd9c75dde
child 6418 6671edbd230e
permissions -rw-r--r--
6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
diff changeset
     2
 * Copyright (c) 1997, 2005, Oracle and/or its affiliates. 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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
diff changeset
    21
 * questions.
1
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/_stubs.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Implementation of StubQueue
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Standard wrap-around queue implementation; the queue dimensions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// are specified by the _queue_begin & _queue_end indices. The queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// can be in two states (transparent to the outside):
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// a) contiguous state: all queue entries in one block (or empty)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Queue: |...|XXXXXXX|...............|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//        ^0  ^begin  ^end            ^size = limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//            |_______|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//            one block
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// b) non-contiguous state: queue entries in two blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Queue: |XXX|.......|XXXXXXX|.......|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//        ^0  ^end    ^begin  ^limit  ^size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//        |___|       |_______|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//         1st block  2nd block
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// In the non-contiguous state, the wrap-around point is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// indicated via the _buffer_limit index since the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// queue entry may not fill up the queue completely in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// which case we need to know where the 2nd block's end
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// is to do the proper wrap-around. When removing the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// last entry of the 2nd block, _buffer_limit is reset
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// to _buffer_size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// CAUTION: DO NOT MESS WITH THIS CODE IF YOU CANNOT PROVE
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// ITS CORRECTNESS! THIS CODE IS MORE SUBTLE THAN IT LOOKS!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
StubQueue::StubQueue(StubInterface* stub_interface, int buffer_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                     Mutex* lock, const char* name) : _mutex(lock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  intptr_t size = round_to(buffer_size, 2*BytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  BufferBlob* blob = BufferBlob::create(name, size);
5403
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 1
diff changeset
    65
  if( blob == NULL) {
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 1
diff changeset
    66
    vm_exit_out_of_memory(size, err_msg("CodeCache: no room for %s", name));
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 1
diff changeset
    67
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  _stub_interface  = stub_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  _buffer_size     = blob->instructions_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  _buffer_limit    = blob->instructions_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  _stub_buffer     = blob->instructions_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  _queue_begin     = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  _queue_end       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  _number_of_stubs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  register_queue(this);
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
StubQueue::~StubQueue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Note: Currently StubQueues are never destroyed so nothing needs to be done here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  //       If we want to implement the destructor, we need to release the BufferBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  //       allocated in the constructor (i.e., we need to keep it around or look it
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  //       up via CodeCache::find_blob(...).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
Stub* StubQueue::stub_containing(address pc) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  if (contains(pc)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    for (Stub* s = first(); s != NULL; s = next(s)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
      if (stub_contains(s, pc)) return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
Stub* StubQueue::request_committed(int code_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  Stub* s = request(code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  if (s != NULL) commit(code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
Stub* StubQueue::request(int requested_code_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  assert(requested_code_size > 0, "requested_code_size must be > 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  if (_mutex != NULL) _mutex->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  Stub* s = current_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  int requested_size = round_to(stub_code_size_to_size(requested_code_size), CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  if (requested_size <= available_space()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    if (is_contiguous()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
      // Queue: |...|XXXXXXX|.............|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      //        ^0  ^begin  ^end          ^size = limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      assert(_buffer_limit == _buffer_size, "buffer must be fully usable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      if (_queue_end + requested_size <= _buffer_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
        // code fits in at the end => nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
        stub_initialize(s, requested_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
        return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
        // stub doesn't fit in at the queue end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
        // => reduce buffer limit & wrap around
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
        assert(!is_empty(), "just checkin'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
        _buffer_limit = _queue_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
        _queue_end = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  if (requested_size <= available_space()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    assert(!is_contiguous(), "just checkin'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    assert(_buffer_limit <= _buffer_size, "queue invariant broken");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    // Queue: |XXX|.......|XXXXXXX|.......|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    //        ^0  ^end    ^begin  ^limit  ^size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    s = current_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    stub_initialize(s, requested_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // Not enough space left
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  if (_mutex != NULL) _mutex->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
void StubQueue::commit(int committed_code_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  assert(committed_code_size > 0, "committed_code_size must be > 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  int committed_size = round_to(stub_code_size_to_size(committed_code_size), CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  Stub* s = current_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  assert(committed_size <= stub_size(s), "committed size must not exceed requested size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  stub_initialize(s, committed_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  _queue_end += committed_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  _number_of_stubs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  if (_mutex != NULL) _mutex->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  debug_only(stub_verify(s);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
void StubQueue::remove_first() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  if (number_of_stubs() == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  Stub* s = first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  debug_only(stub_verify(s);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  stub_finalize(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  _queue_begin += stub_size(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  assert(_queue_begin <= _buffer_limit, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  if (_queue_begin == _queue_end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    // buffer empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    // => reset queue indices
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    _queue_begin  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    _queue_end    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    _buffer_limit = _buffer_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  } else if (_queue_begin == _buffer_limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    // buffer limit reached
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // => reset buffer limit & wrap around
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    _buffer_limit = _buffer_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    _queue_begin = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  _number_of_stubs--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
void StubQueue::remove_first(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  int i = MIN2(n, number_of_stubs());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  while (i-- > 0) remove_first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
void StubQueue::remove_all(){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  debug_only(verify();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  remove_first(number_of_stubs());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  assert(number_of_stubs() == 0, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
enum { StubQueueLimit = 10 };  // there are only a few in the world
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
static StubQueue* registered_stub_queues[StubQueueLimit];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
void StubQueue::register_queue(StubQueue* sq) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  for (int i = 0; i < StubQueueLimit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    if (registered_stub_queues[i] == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      registered_stub_queues[i] = sq;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
void StubQueue::queues_do(void f(StubQueue* sq)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  for (int i = 0; i < StubQueueLimit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    if (registered_stub_queues[i] != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      f(registered_stub_queues[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
void StubQueue::stubs_do(void f(Stub* s)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  debug_only(verify();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  MutexLockerEx lock(_mutex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  for (Stub* s = first(); s != NULL; s = next(s)) f(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
void StubQueue::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // verify only if initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if (_stub_buffer == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  MutexLockerEx lock(_mutex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // verify index boundaries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  guarantee(0 <= _buffer_size, "buffer size must be positive");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  guarantee(0 <= _buffer_limit && _buffer_limit <= _buffer_size , "_buffer_limit out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  guarantee(0 <= _queue_begin  && _queue_begin  <  _buffer_limit, "_queue_begin out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  guarantee(0 <= _queue_end    && _queue_end    <= _buffer_limit, "_queue_end   out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // verify alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  guarantee(_buffer_size  % CodeEntryAlignment == 0, "_buffer_size  not aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  guarantee(_buffer_limit % CodeEntryAlignment == 0, "_buffer_limit not aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  guarantee(_queue_begin  % CodeEntryAlignment == 0, "_queue_begin  not aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  guarantee(_queue_end    % CodeEntryAlignment == 0, "_queue_end    not aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // verify buffer limit/size relationship
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  if (is_contiguous()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    guarantee(_buffer_limit == _buffer_size, "_buffer_limit must equal _buffer_size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // verify contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  int n = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  for (Stub* s = first(); s != NULL; s = next(s)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    stub_verify(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    n++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  guarantee(n == number_of_stubs(), "number of stubs inconsistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  guarantee(_queue_begin != _queue_end || n == 0, "buffer indices must be the same");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
void StubQueue::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  MutexLockerEx lock(_mutex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  for (Stub* s = first(); s != NULL; s = next(s)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    stub_print(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
}