@@ -258,7 +258,7 @@ static unsigned int used_topSizeBlocks = 0;
258
258
259
259
static struct SizeDistributionElement * SizeDistributionArray = NULL ;
260
260
261
- static unsigned int latest_compilation_id = 0 ;
261
+ static int latest_compilation_id = 0 ;
262
262
static volatile bool initialization_complete = false ;
263
263
264
264
const char * CodeHeapState::get_heapName (CodeHeap* heap) {
@@ -659,27 +659,27 @@ void CodeHeapState::aggregate(outputStream* out, CodeHeap* heap, size_t granular
659
659
prepare_SizeDistArray (out, nSizeDistElements, heapName);
660
660
661
661
latest_compilation_id = CompileBroker::get_compilation_id ();
662
- unsigned int highest_compilation_id = 0 ;
663
- size_t usedSpace = 0 ;
664
- size_t t1Space = 0 ;
665
- size_t t2Space = 0 ;
666
- size_t aliveSpace = 0 ;
667
- size_t disconnSpace = 0 ;
668
- size_t notentrSpace = 0 ;
669
- size_t stubSpace = 0 ;
670
- size_t freeSpace = 0 ;
671
- size_t maxFreeSize = 0 ;
672
- HeapBlock* maxFreeBlock = NULL ;
673
- bool insane = false ;
674
-
675
- unsigned int n_methods = 0 ;
662
+ int highest_compilation_id = 0 ;
663
+ size_t usedSpace = 0 ;
664
+ size_t t1Space = 0 ;
665
+ size_t t2Space = 0 ;
666
+ size_t aliveSpace = 0 ;
667
+ size_t disconnSpace = 0 ;
668
+ size_t notentrSpace = 0 ;
669
+ size_t stubSpace = 0 ;
670
+ size_t freeSpace = 0 ;
671
+ size_t maxFreeSize = 0 ;
672
+ HeapBlock* maxFreeBlock = NULL ;
673
+ bool insane = false ;
674
+
675
+ unsigned int n_methods = 0 ;
676
676
677
677
for (HeapBlock *h = heap->first_block (); h != NULL && !insane; h = heap->next_block (h)) {
678
678
unsigned int hb_len = (unsigned int )h->length (); // despite being size_t, length can never overflow an unsigned int.
679
679
size_t hb_bytelen = ((size_t )hb_len)<<log2_seg_size;
680
680
unsigned int ix_beg = (unsigned int )(((char *)h-low_bound)/granule_size);
681
681
unsigned int ix_end = (unsigned int )(((char *)h-low_bound+(hb_bytelen-1 ))/granule_size);
682
- unsigned int compile_id = 0 ;
682
+ int compile_id = 0 ;
683
683
CompLevel comp_lvl = CompLevel_none;
684
684
compType cType = noComp;
685
685
blobType cbType = noType;
@@ -1959,10 +1959,10 @@ void CodeHeapState::print_age(outputStream* out, CodeHeap* heap) {
1959
1959
granules_per_line = 128 ;
1960
1960
for (unsigned int ix = 0 ; ix < alloc_granules; ix++) {
1961
1961
print_line_delim (out, ast, low_bound, ix, granules_per_line);
1962
- unsigned int age1 = StatArray[ix].t1_age ;
1963
- unsigned int age2 = StatArray[ix].t2_age ;
1964
- unsigned int agex = StatArray[ix].tx_age ;
1965
- unsigned int age = age1 > age2 ? age1 : age2;
1962
+ int age1 = StatArray[ix].t1_age ;
1963
+ int age2 = StatArray[ix].t2_age ;
1964
+ int agex = StatArray[ix].tx_age ;
1965
+ int age = age1 > age2 ? age1 : age2;
1966
1966
age = age > agex ? age : agex;
1967
1967
print_age_single (ast, age);
1968
1968
}
@@ -2247,9 +2247,7 @@ void CodeHeapState::print_blobType_legend(outputStream* out) {
2247
2247
}
2248
2248
2249
2249
void CodeHeapState::print_space_legend (outputStream* out) {
2250
- unsigned int indicator = 0 ;
2251
- unsigned int age_range = 256 ;
2252
- unsigned int range_beg = latest_compilation_id;
2250
+ int range_beg = latest_compilation_id;
2253
2251
out->cr ();
2254
2252
printBox (out, ' -' , " Space ranges, based on granule occupancy" , NULL );
2255
2253
out->print_cr (" - 0%% == occupancy" );
@@ -2263,12 +2261,12 @@ void CodeHeapState::print_space_legend(outputStream* out) {
2263
2261
2264
2262
void CodeHeapState::print_age_legend (outputStream* out) {
2265
2263
unsigned int indicator = 0 ;
2266
- unsigned int age_range = 256 ;
2267
- unsigned int range_beg = latest_compilation_id;
2264
+ int age_range = 256 ;
2265
+ int range_beg = latest_compilation_id;
2268
2266
out->cr ();
2269
2267
printBox (out, ' -' , " Age ranges, based on compilation id" , NULL );
2270
2268
while (age_range > 0 ) {
2271
- out->print_cr (" %d - %6d to %6d" , indicator, range_beg, latest_compilation_id - latest_compilation_id/age_range);
2269
+ out->print_cr (" %u - %6d to %6d" , indicator, range_beg, latest_compilation_id - latest_compilation_id/age_range);
2272
2270
range_beg = latest_compilation_id - latest_compilation_id/age_range;
2273
2271
age_range /= 2 ;
2274
2272
indicator += 1 ;
@@ -2293,9 +2291,9 @@ void CodeHeapState::print_space_single(outputStream* out, unsigned short space)
2293
2291
out->print (" %c" , fraction);
2294
2292
}
2295
2293
2296
- void CodeHeapState::print_age_single (outputStream* out, unsigned int age) {
2294
+ void CodeHeapState::print_age_single (outputStream* out, int age) {
2297
2295
unsigned int indicator = 0 ;
2298
- unsigned int age_range = 256 ;
2296
+ int age_range = 256 ;
2299
2297
if (age > 0 ) {
2300
2298
while ((age_range > 0 ) && (latest_compilation_id-age > latest_compilation_id/age_range)) {
2301
2299
age_range /= 2 ;
0 commit comments