Skip to content

Commit 8e49fcd

Browse files
dafedafeTobiHartmann
authored andcommittedDec 19, 2022
8295661: CompileTask::compile_id() should be passed as int
Reviewed-by: thartmann, dnsimon, never
1 parent 86d588b commit 8e49fcd

File tree

9 files changed

+45
-47
lines changed

9 files changed

+45
-47
lines changed
 

‎src/hotspot/share/ci/ciEnv.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ int ciEnv::comp_level() {
12261226

12271227
// ------------------------------------------------------------------
12281228
// ciEnv::compile_id
1229-
uint ciEnv::compile_id() {
1229+
int ciEnv::compile_id() {
12301230
if (task() == NULL) return 0;
12311231
return task()->compile_id();
12321232
}

‎src/hotspot/share/ci/ciEnv.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ class ciEnv : StackObj {
366366

367367
// Handy forwards to the task:
368368
int comp_level(); // task()->comp_level()
369-
uint compile_id(); // task()->compile_id()
369+
int compile_id(); // task()->compile_id()
370370

371371
// Register the result of a compilation.
372372
void register_method(ciMethod* target,

‎src/hotspot/share/code/codeHeapState.cpp

+26-28
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ static unsigned int used_topSizeBlocks = 0;
258258

259259
static struct SizeDistributionElement* SizeDistributionArray = NULL;
260260

261-
static unsigned int latest_compilation_id = 0;
261+
static int latest_compilation_id = 0;
262262
static volatile bool initialization_complete = false;
263263

264264
const char* CodeHeapState::get_heapName(CodeHeap* heap) {
@@ -659,27 +659,27 @@ void CodeHeapState::aggregate(outputStream* out, CodeHeap* heap, size_t granular
659659
prepare_SizeDistArray(out, nSizeDistElements, heapName);
660660

661661
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;
676676

677677
for (HeapBlock *h = heap->first_block(); h != NULL && !insane; h = heap->next_block(h)) {
678678
unsigned int hb_len = (unsigned int)h->length(); // despite being size_t, length can never overflow an unsigned int.
679679
size_t hb_bytelen = ((size_t)hb_len)<<log2_seg_size;
680680
unsigned int ix_beg = (unsigned int)(((char*)h-low_bound)/granule_size);
681681
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;
683683
CompLevel comp_lvl = CompLevel_none;
684684
compType cType = noComp;
685685
blobType cbType = noType;
@@ -1959,10 +1959,10 @@ void CodeHeapState::print_age(outputStream* out, CodeHeap* heap) {
19591959
granules_per_line = 128;
19601960
for (unsigned int ix = 0; ix < alloc_granules; ix++) {
19611961
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;
19661966
age = age > agex ? age : agex;
19671967
print_age_single(ast, age);
19681968
}
@@ -2247,9 +2247,7 @@ void CodeHeapState::print_blobType_legend(outputStream* out) {
22472247
}
22482248

22492249
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;
22532251
out->cr();
22542252
printBox(out, '-', "Space ranges, based on granule occupancy", NULL);
22552253
out->print_cr(" - 0%% == occupancy");
@@ -2263,12 +2261,12 @@ void CodeHeapState::print_space_legend(outputStream* out) {
22632261

22642262
void CodeHeapState::print_age_legend(outputStream* out) {
22652263
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;
22682266
out->cr();
22692267
printBox(out, '-', "Age ranges, based on compilation id", NULL);
22702268
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);
22722270
range_beg = latest_compilation_id - latest_compilation_id/age_range;
22732271
age_range /= 2;
22742272
indicator += 1;
@@ -2293,9 +2291,9 @@ void CodeHeapState::print_space_single(outputStream* out, unsigned short space)
22932291
out->print("%c", fraction);
22942292
}
22952293

2296-
void CodeHeapState::print_age_single(outputStream* out, unsigned int age) {
2294+
void CodeHeapState::print_age_single(outputStream* out, int age) {
22972295
unsigned int indicator = 0;
2298-
unsigned int age_range = 256;
2296+
int age_range = 256;
22992297
if (age > 0) {
23002298
while ((age_range > 0) && (latest_compilation_id-age > latest_compilation_id/age_range)) {
23012299
age_range /= 2;

‎src/hotspot/share/code/codeHeapState.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class CodeHeapState : public CHeapObj<mtCode> {
8888
static void print_blobType_single(outputStream *ast, u2 /* blobType */ type);
8989
static void print_count_single(outputStream *ast, unsigned short count);
9090
static void print_space_single(outputStream *ast, unsigned short space);
91-
static void print_age_single(outputStream *ast, unsigned int age);
91+
static void print_age_single(outputStream *ast, int age);
9292
static void print_line_delim(outputStream* out, bufferedStream *sst, char* low_bound, unsigned int ix, unsigned int gpl);
9393
static void print_line_delim(outputStream* out, outputStream *sst, char* low_bound, unsigned int ix, unsigned int gpl);
9494
static blobType get_cbType(CodeBlob* cb);
@@ -119,9 +119,9 @@ class CodeHeapState : public CHeapObj<mtCode> {
119119
class StatElement : public CHeapObj<mtCode> {
120120
public:
121121
// A note on ages: The compilation_id easily overflows unsigned short in large systems
122-
unsigned int t1_age; // oldest compilation_id of tier1 nMethods.
123-
unsigned int t2_age; // oldest compilation_id of tier2 nMethods.
124-
unsigned int tx_age; // oldest compilation_id of inactive/not entrant nMethods.
122+
int t1_age; // oldest compilation_id of tier1 nMethods.
123+
int t2_age; // oldest compilation_id of tier2 nMethods.
124+
int tx_age; // oldest compilation_id of inactive/not entrant nMethods.
125125
unsigned short t1_space; // in units of _segment_size to "prevent" overflow
126126
unsigned short t2_space; // in units of _segment_size to "prevent" overflow
127127
unsigned short tx_space; // in units of _segment_size to "prevent" overflow

‎src/hotspot/share/compiler/compileBroker.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1566,7 +1566,7 @@ int CompileBroker::assign_compile_id(const methodHandle& method, int osr_bci) {
15661566
// CompileBroker::assign_compile_id_unlocked
15671567
//
15681568
// Public wrapper for assign_compile_id that acquires the needed locks
1569-
uint CompileBroker::assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci) {
1569+
int CompileBroker::assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci) {
15701570
MutexLocker locker(thread, MethodCompileQueue_lock);
15711571
return assign_compile_id(method, osr_bci);
15721572
}
@@ -2109,7 +2109,7 @@ void CompileBroker::invoke_compiler_on_method(CompileTask* task) {
21092109
}
21102110

21112111
// Common flags.
2112-
uint compile_id = task->compile_id();
2112+
int compile_id = task->compile_id();
21132113
int osr_bci = task->osr_bci();
21142114
bool is_osr = (osr_bci != standard_entry_bci);
21152115
bool should_log = (thread->log() != NULL);
@@ -2432,7 +2432,7 @@ void CompileBroker::update_compile_perf_data(CompilerThread* thread, const metho
24322432
void CompileBroker::collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task) {
24332433
bool success = task->is_success();
24342434
methodHandle method (thread, task->method());
2435-
uint compile_id = task->compile_id();
2435+
int compile_id = task->compile_id();
24362436
bool is_osr = (task->osr_bci() != standard_entry_bci);
24372437
const int comp_level = task->comp_level();
24382438
CompilerCounters* counters = thread->counters();

‎src/hotspot/share/compiler/compileBroker.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,10 @@ class CompileBroker: AllStatic {
312312
TRAPS);
313313

314314
// Acquire any needed locks and assign a compile id
315-
static uint assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci);
315+
static int assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci);
316316

317317
static void compiler_thread_loop();
318-
static uint get_compilation_id() { return _compilation_id; }
318+
static int get_compilation_id() { return _compilation_id; }
319319

320320
// Set _should_block.
321321
// Call this from the VM, with Threads_lock held and a safepoint requested.

‎src/hotspot/share/compiler/compileTask.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -76,7 +76,7 @@ class CompileTask : public CHeapObj<mtCompiler> {
7676
private:
7777
static CompileTask* _task_free_list;
7878
Monitor* _lock;
79-
uint _compile_id;
79+
int _compile_id;
8080
Method* _method;
8181
jobject _method_holder;
8282
int _osr_bci;

‎src/hotspot/share/jfr/metadata/metadata.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@
577577
<Event name="Compilation" category="Java Virtual Machine, Compiler" label="Compilation"
578578
description="Results of method compilation attempts"
579579
thread="true">
580-
<Field type="uint" name="compileId" label="Compilation Identifier" relation="CompileId" />
580+
<Field type="int" name="compileId" label="Compilation Identifier" relation="CompileId" />
581581
<Field type="CompilerType" name="compiler" label="Compiler" />
582582
<Field type="Method" name="method" label="Method" />
583583
<Field type="ushort" name="compileLevel" label="Compilation Level" />
@@ -591,15 +591,15 @@
591591
description="Describes various phases of the compilation process like inlining or string optimization related phases"
592592
thread="true">
593593
<Field type="CompilerPhaseType" name="phase" label="Compile Phase" />
594-
<Field type="uint" name="compileId" label="Compilation Identifier" relation="CompileId" />
594+
<Field type="int" name="compileId" label="Compilation Identifier" relation="CompileId" />
595595
<Field type="ushort" name="phaseLevel" label="Phase Level" />
596596
</Event>
597597

598598
<Event name="CompilationFailure" category="Java Virtual Machine, Compiler" label="Compilation Failure"
599599
description="In case a JIT compilation failed, a compilation failure is triggered, reporting the reason"
600600
thread="true" startTime="false">
601601
<Field type="string" name="failureMessage" label="Failure Message" />
602-
<Field type="uint" name="compileId" label="Compilation Identifier" relation="CompileId" />
602+
<Field type="int" name="compileId" label="Compilation Identifier" relation="CompileId" />
603603
</Event>
604604

605605
<Type name="CalleeMethod">
@@ -611,7 +611,7 @@
611611
<Event name="CompilerInlining" category="Java Virtual Machine, Compiler, Optimization" label="Method Inlining"
612612
description="Describes the result of a method inlining attempt"
613613
thread="true" startTime="false">
614-
<Field type="uint" name="compileId" label="Compilation Identifier" relation="CompileId" />
614+
<Field type="int" name="compileId" label="Compilation Identifier" relation="CompileId" />
615615
<Field type="Method" name="caller" label="Caller Method" />
616616
<Field type="CalleeMethod" name="callee" struct="true" label="Callee Method" />
617617
<Field type="boolean" name="succeeded" label="Succeeded" />
@@ -637,7 +637,7 @@
637637
<Event name="Deoptimization" category="Java Virtual Machine, Compiler" label="Deoptimization"
638638
description="Describes the detection of an uncommon situation in a compiled method which may lead to deoptimization of the method"
639639
thread="true" stackTrace="true" startTime="false">
640-
<Field type="uint" name="compileId" label="Compilation Identifier" relation="CompileId" />
640+
<Field type="int" name="compileId" label="Compilation Identifier" relation="CompileId" />
641641
<Field type="CompilerType" name="compiler" label="Compiler" />
642642
<Field type="Method" name="method" label="Method" />
643643
<Field type="int" name="lineNumber" label="Line Number" />

‎src/hotspot/share/runtime/vmStructs.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@
10661066
nonstatic_field(CompileTask, _method, Method*) \
10671067
nonstatic_field(CompileTask, _osr_bci, int) \
10681068
nonstatic_field(CompileTask, _comp_level, int) \
1069-
nonstatic_field(CompileTask, _compile_id, uint) \
1069+
nonstatic_field(CompileTask, _compile_id, int) \
10701070
nonstatic_field(CompileTask, _num_inlined_bytecodes, int) \
10711071
nonstatic_field(CompileTask, _next, CompileTask*) \
10721072
nonstatic_field(CompileTask, _prev, CompileTask*) \

0 commit comments

Comments
 (0)
Please sign in to comment.