hotspot/src/share/vm/opto/indexSet.cpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1998-2004 Sun Microsystems, Inc.  All Rights Reserved.
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
// This file defines the IndexSet class, a set of sparse integer indices.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// This data structure is used by the compiler in its liveness analysis and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// during register allocation.  It also defines an iterator for this class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#include "incls/_indexSet.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//-------------------------------- Initializations ------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
IndexSet::BitBlock  IndexSet::_empty_block     = IndexSet::BitBlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Initialize statistics counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
uint IndexSet::_alloc_new = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
uint IndexSet::_alloc_total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
long IndexSet::_total_bits = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
long IndexSet::_total_used_blocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
long IndexSet::_total_unused_blocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// Per set, or all sets operation tracing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
int IndexSet::_serial_count = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// What is the first set bit in a 5 bit integer?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
const byte IndexSetIterator::_first_bit[32] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  0, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  3, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  4, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  3, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  2, 0, 1, 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// What is the second set bit in a 5 bit integer?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
const byte IndexSetIterator::_second_bit[32] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  5, 5, 5, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  5, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  5, 3, 3, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  5, 4, 4, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  4, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  4, 3, 3, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  3, 2, 2, 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// I tried implementing the IndexSetIterator with a window_size of 8 and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// didn't seem to get a noticeable speedup.  I am leaving in the tables
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// in case we want to switch back.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
/*const byte IndexSetIterator::_first_bit[256] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  8, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  7, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
const byte IndexSetIterator::_second_bit[256] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  8, 8, 8, 1, 8, 2, 2, 1, 8, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  8, 4, 4, 1, 4, 2, 2, 1, 4, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  8, 5, 5, 1, 5, 2, 2, 1, 5, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  5, 4, 4, 1, 4, 2, 2, 1, 4, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  8, 6, 6, 1, 6, 2, 2, 1, 6, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  6, 4, 4, 1, 4, 2, 2, 1, 4, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  6, 5, 5, 1, 5, 2, 2, 1, 5, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  5, 4, 4, 1, 4, 2, 2, 1, 4, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  8, 7, 7, 1, 7, 2, 2, 1, 7, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  7, 4, 4, 1, 4, 2, 2, 1, 4, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  7, 5, 5, 1, 5, 2, 2, 1, 5, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  5, 4, 4, 1, 4, 2, 2, 1, 4, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  7, 6, 6, 1, 6, 2, 2, 1, 6, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  6, 4, 4, 1, 4, 2, 2, 1, 4, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  6, 5, 5, 1, 5, 2, 2, 1, 5, 3, 3, 1, 3, 2, 2, 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  5, 4, 4, 1, 4, 2, 2, 1, 4, 3, 3, 1, 3, 2, 2, 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
};*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
//---------------------------- IndexSet::populate_free_list() -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// Populate the free BitBlock list with a batch of BitBlocks.  The BitBlocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
// are 32 bit aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
void IndexSet::populate_free_list() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  Compile *compile = Compile::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  BitBlock *free = (BitBlock*)compile->indexSet_free_block_list();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  char *mem = (char*)arena()->Amalloc_4(sizeof(BitBlock) *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
                                        bitblock_alloc_chunk_size + 32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // Align the pointer to a 32 bit boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  BitBlock *new_blocks = (BitBlock*)(((uintptr_t)mem + 32) & ~0x001F);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // Add the new blocks to the free list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  for (int i = 0; i < bitblock_alloc_chunk_size; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    new_blocks->set_next(free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    free = new_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    new_blocks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  compile->set_indexSet_free_block_list(free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  if (CollectIndexSetStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    _alloc_new += bitblock_alloc_chunk_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
//---------------------------- IndexSet::alloc_block() ------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// Allocate a BitBlock from the free list.  If the free list is empty,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
// prime it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
IndexSet::BitBlock *IndexSet::alloc_block() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  if (CollectIndexSetStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    _alloc_total++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  Compile *compile = Compile::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  BitBlock* free_list = (BitBlock*)compile->indexSet_free_block_list();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  if (free_list == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    populate_free_list();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    free_list = (BitBlock*)compile->indexSet_free_block_list();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  BitBlock *block = free_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  compile->set_indexSet_free_block_list(block->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  block->clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  return block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
//---------------------------- IndexSet::alloc_block_containing() -------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
// Allocate a new BitBlock and put it into the position in the _blocks array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
// corresponding to element.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
IndexSet::BitBlock *IndexSet::alloc_block_containing(uint element) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  BitBlock *block = alloc_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  uint bi = get_block_index(element);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  _blocks[bi] = block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  return block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
//---------------------------- IndexSet::free_block() -------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
// Add a BitBlock to the free list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
void IndexSet::free_block(uint i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  debug_only(check_watch("free block", i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  assert(i < _max_blocks, "block index too large");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  BitBlock *block = _blocks[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  assert(block != &_empty_block, "cannot free the empty block");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  block->set_next((IndexSet::BitBlock*)Compile::current()->indexSet_free_block_list());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  Compile::current()->set_indexSet_free_block_list(block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  set_block(i,&_empty_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
//------------------------------lrg_union--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
// Compute the union of all elements of one and two which interfere with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// the RegMask mask.  If the degree of the union becomes exceeds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
// fail_degree, the union bails out.  The underlying set is cleared before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
// the union is performed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
uint IndexSet::lrg_union(uint lr1, uint lr2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
                         const uint fail_degree,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
                         const PhaseIFG *ifg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
                         const RegMask &mask ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  IndexSet *one = ifg->neighbors(lr1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  IndexSet *two = ifg->neighbors(lr2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  LRG &lrg1 = ifg->lrgs(lr1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  LRG &lrg2 = ifg->lrgs(lr2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  assert(_max_elements == one->_max_elements, "max element mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  check_watch("union destination");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  one->check_watch("union source");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  two->check_watch("union source");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // Compute the degree of the combined live-range.  The combined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // live-range has the union of the original live-ranges' neighbors set as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // well as the neighbors of all intermediate copies, minus those neighbors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // that can not use the intersected allowed-register-set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // Copy the larger set.  Insert the smaller set into the larger.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  if (two->count() > one->count()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    IndexSet *temp = one;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    one = two;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    two = temp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Used to compute degree of register-only interferences.  Infinite-stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // neighbors do not alter colorability, as they can always color to some
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // other color.  (A variant of the Briggs assertion)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  uint reg_degree = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  uint element;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Load up the combined interference set with the neighbors of one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  IndexSetIterator elements(one);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  while ((element = elements.next()) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    LRG &lrg = ifg->lrgs(element);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    if (mask.overlap(lrg.mask())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      insert(element);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
      if( !lrg.mask().is_AllStack() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
        reg_degree += lrg1.compute_degree(lrg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
        if( reg_degree >= fail_degree ) return reg_degree;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
        // !!!!! Danger!  No update to reg_degree despite having a neighbor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
        // A variant of the Briggs assertion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
        // Not needed if I simplify during coalesce, ala George/Appel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
        assert( lrg.lo_degree(), "" );
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
  // Add neighbors of two as well
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  IndexSetIterator elements2(two);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  while ((element = elements2.next()) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    LRG &lrg = ifg->lrgs(element);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    if (mask.overlap(lrg.mask())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      if (insert(element)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
        if( !lrg.mask().is_AllStack() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
          reg_degree += lrg2.compute_degree(lrg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
          if( reg_degree >= fail_degree ) return reg_degree;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
          // !!!!! Danger!  No update to reg_degree despite having a neighbor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
          // A variant of the Briggs assertion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
          // Not needed if I simplify during coalesce, ala George/Appel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
          assert( lrg.lo_degree(), "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  return reg_degree;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
//---------------------------- IndexSet() -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
// A deep copy constructor.  This is used when you need a scratch copy of this set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
IndexSet::IndexSet (IndexSet *set) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  _serial_number = _serial_count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  set->check_watch("copied", _serial_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  check_watch("initialized by copy", set->_serial_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  _max_elements = set->_max_elements;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  _count = set->_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  _max_blocks = set->_max_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  if (_max_blocks <= preallocated_block_list_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    _blocks = _preallocated_block_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    _blocks =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
      (IndexSet::BitBlock**) arena()->Amalloc_4(sizeof(IndexSet::BitBlock**) * _max_blocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  for (uint i = 0; i < _max_blocks; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    BitBlock *block = set->_blocks[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    if (block == &_empty_block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
      set_block(i, &_empty_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
      BitBlock *new_block = alloc_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
      memcpy(new_block->words(), block->words(), sizeof(uint32) * words_per_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
      set_block(i, new_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
//---------------------------- IndexSet::initialize() -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
// Prepare an IndexSet for use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
void IndexSet::initialize(uint max_elements) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  _serial_number = _serial_count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  check_watch("initialized", max_elements);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  _max_elements = max_elements;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  _count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  _max_blocks = (max_elements + bits_per_block - 1) / bits_per_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  if (_max_blocks <= preallocated_block_list_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    _blocks = _preallocated_block_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    _blocks = (IndexSet::BitBlock**) arena()->Amalloc_4(sizeof(IndexSet::BitBlock**) * _max_blocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  for (uint i = 0; i < _max_blocks; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    set_block(i, &_empty_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
//---------------------------- IndexSet::initialize()------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
// Prepare an IndexSet for use.  If it needs to allocate its _blocks array, it does
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
// so from the Arena passed as a parameter.  BitBlock allocation is still done from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
// the static Arena which was set with reset_memory().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
void IndexSet::initialize(uint max_elements, Arena *arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  _serial_number = _serial_count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  check_watch("initialized2", max_elements);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  _max_elements = max_elements;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  _count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  _max_blocks = (max_elements + bits_per_block - 1) / bits_per_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  if (_max_blocks <= preallocated_block_list_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    _blocks = _preallocated_block_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    _blocks = (IndexSet::BitBlock**) arena->Amalloc_4(sizeof(IndexSet::BitBlock**) * _max_blocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  for (uint i = 0; i < _max_blocks; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    set_block(i, &_empty_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
//---------------------------- IndexSet::swap() -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
// Exchange two IndexSets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
void IndexSet::swap(IndexSet *set) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  assert(_max_elements == set->_max_elements, "must have same universe size to swap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  check_watch("swap", set->_serial_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  set->check_watch("swap", _serial_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  for (uint i = 0; i < _max_blocks; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    BitBlock *temp = _blocks[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    set_block(i, set->_blocks[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    set->set_block(i, temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  uint temp = _count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  _count = set->_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  set->_count = temp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
//---------------------------- IndexSet::dump() -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
// Print this set.  Used for debugging.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
void IndexSet::dump() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  IndexSetIterator elements(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  tty->print("{");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  uint i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  while ((i = elements.next()) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    tty->print("L%d ", i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  tty->print_cr("}");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
//---------------------------- IndexSet::tally_iteration_statistics() -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
// Update block/bit counts to reflect that this set has been iterated over.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
void IndexSet::tally_iteration_statistics() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  _total_bits += count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  for (uint i = 0; i < _max_blocks; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    if (_blocks[i] != &_empty_block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
      _total_used_blocks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
      _total_unused_blocks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
//---------------------------- IndexSet::print_statistics() -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
// Print statistics about IndexSet usage.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
void IndexSet::print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  long total_blocks = _total_used_blocks + _total_unused_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  tty->print_cr ("Accumulated IndexSet usage statistics:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  tty->print_cr ("--------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  tty->print_cr ("  Iteration:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  tty->print_cr ("    blocks visited: %d", total_blocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  tty->print_cr ("    blocks empty: %4.2f%%", 100.0*_total_unused_blocks/total_blocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  tty->print_cr ("    bit density (bits/used blocks): %4.2f%%", (double)_total_bits/_total_used_blocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  tty->print_cr ("    bit density (bits/all blocks): %4.2f%%", (double)_total_bits/total_blocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  tty->print_cr ("  Allocation:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  tty->print_cr ("    blocks allocated: %d", _alloc_new);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  tty->print_cr ("    blocks used/reused: %d", _alloc_total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
//---------------------------- IndexSet::verify() -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
// Expensive test of IndexSet sanity.  Ensure that the count agrees with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
// number of bits in the blocks.  Make sure the iterator is seeing all elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
// of the set.  Meant for use during development.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
void IndexSet::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  assert(!member(0), "zero cannot be a member");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  uint count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  uint i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  for (i = 1; i < _max_elements; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    if (member(i)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
      count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
      assert(count <= _count, "_count is messed up");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  IndexSetIterator elements(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  while ((i = elements.next()) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    assert(member(i), "returned a non member");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    assert(count <= _count, "iterator returned wrong number of elements");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
//---------------------------- IndexSetIterator() -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
// Create an iterator for a set.  If empty blocks are detected when iterating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
// over the set, these blocks are replaced.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
IndexSetIterator::IndexSetIterator(IndexSet *set) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  if (CollectIndexSetStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    set->tally_iteration_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  set->check_watch("traversed", set->count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  if (set->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    _current = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    _next_word = IndexSet::words_per_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    _next_block = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    _max_blocks = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    // We don't need the following values when we iterate over an empty set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    // The commented out code is left here to document that the omission
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    // is intentional.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    //_value = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    //_words = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    //_blocks = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    //_set = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    _current = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    _value = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    _next_block = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    _next_word = IndexSet::words_per_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    _max_blocks = set->_max_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    _words = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    _blocks = set->_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    _set = set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
//---------------------------- IndexSetIterator(const) -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
// Iterate over a constant IndexSet.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
IndexSetIterator::IndexSetIterator(const IndexSet *set) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  if (CollectIndexSetStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    set->tally_iteration_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  // We don't call check_watch from here to avoid bad recursion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  //   set->check_watch("traversed const", set->count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  if (set->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    _current = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    _next_word = IndexSet::words_per_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    _next_block = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    _max_blocks = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    // We don't need the following values when we iterate over an empty set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    // The commented out code is left here to document that the omission
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    // is intentional.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
    //_value = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
    //_words = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
    //_blocks = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
    //_set = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    _current = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    _value = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    _next_block = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    _next_word = IndexSet::words_per_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    _max_blocks = set->_max_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    _words = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    _blocks = set->_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    _set = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
//---------------------------- List16Iterator::advance_and_next() -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
// Advance to the next non-empty word in the set being iterated over.  Return the next element
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
// if there is one.  If we are done, return 0.  This method is called from the next() method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
// when it gets done with a word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
uint IndexSetIterator::advance_and_next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  // See if there is another non-empty word in the current block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  for (uint wi = _next_word; wi < (unsigned)IndexSet::words_per_block; wi++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    if (_words[wi] != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
      // Found a non-empty word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
      _value = ((_next_block - 1) * IndexSet::bits_per_block) + (wi * IndexSet::bits_per_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
      _current = _words[wi];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
      _next_word = wi+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
      return next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  // We ran out of words in the current block.  Advance to next non-empty block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  for (uint bi = _next_block; bi < _max_blocks; bi++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    if (_blocks[bi] != &IndexSet::_empty_block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
      // Found a non-empty block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
      _words = _blocks[bi]->words();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
      for (uint wi = 0; wi < (unsigned)IndexSet::words_per_block; wi++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
        if (_words[wi] != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
          // Found a non-empty word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
          _value = (bi * IndexSet::bits_per_block) + (wi * IndexSet::bits_per_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
          _current = _words[wi];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
          _next_block = bi+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
          _next_word = wi+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
          return next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
      // All of the words in the block were empty.  Replace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
      // the block with the empty block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
      if (_set) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
        _set->free_block(bi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  // These assignments make redundant calls to next on a finished iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  // faster.  Probably not necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  _next_block = _max_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  _next_word = IndexSet::words_per_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  // No more words.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
}