annotate src/share/vm/opto/indexSet.cpp @ 196:d1605aabd0a1 jdk7-b30

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