author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46727 | hotspot/src/share/vm/runtime/advancedThresholdPolicy.cpp@6e4a84748e2c |
child 49480 | d7df2dd501ce |
permissions | -rw-r--r-- |
8667 | 1 |
/* |
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
42650
diff
changeset
|
2 |
* Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved. |
9625 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
8667 | 24 |
|
25 |
#include "precompiled.hpp" |
|
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
24443
diff
changeset
|
26 |
#include "code/codeCache.hpp" |
8667 | 27 |
#include "runtime/advancedThresholdPolicy.hpp" |
28 |
#include "runtime/simpleThresholdPolicy.inline.hpp" |
|
38666
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
29 |
#if INCLUDE_JVMCI |
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
30 |
#include "jvmci/jvmciRuntime.hpp" |
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
31 |
#endif |
8667 | 32 |
|
33 |
#ifdef TIERED |
|
34 |
// Print an event. |
|
46727
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
46630
diff
changeset
|
35 |
void AdvancedThresholdPolicy::print_specific(EventType type, const methodHandle& mh, const methodHandle& imh, |
8667 | 36 |
int bci, CompLevel level) { |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
37 |
tty->print(" rate="); |
8667 | 38 |
if (mh->prev_time() == 0) tty->print("n/a"); |
39 |
else tty->print("%f", mh->rate()); |
|
40 |
||
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
41 |
tty->print(" k=%.2lf,%.2lf", threshold_scale(CompLevel_full_profile, Tier3LoadFeedback), |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
42 |
threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback)); |
8667 | 43 |
|
44 |
} |
|
45 |
||
46 |
void AdvancedThresholdPolicy::initialize() { |
|
36556
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
47 |
int count = CICompilerCount; |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
48 |
#ifdef _LP64 |
8667 | 49 |
// Turn on ergonomic compiler count selection |
50 |
if (FLAG_IS_DEFAULT(CICompilerCountPerCPU) && FLAG_IS_DEFAULT(CICompilerCount)) { |
|
51 |
FLAG_SET_DEFAULT(CICompilerCountPerCPU, true); |
|
52 |
} |
|
53 |
if (CICompilerCountPerCPU) { |
|
54 |
// Simple log n seems to grow too slowly for tiered, try something faster: log n * log log n |
|
55 |
int log_cpu = log2_intptr(os::active_processor_count()); |
|
56 |
int loglog_cpu = log2_intptr(MAX2(log_cpu, 1)); |
|
40364
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
57 |
count = MAX2(log_cpu * loglog_cpu * 3 / 2, 2); |
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
58 |
FLAG_SET_ERGO(intx, CICompilerCount, count); |
8667 | 59 |
} |
36556
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
60 |
#else |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
61 |
// On 32-bit systems, the number of compiler threads is limited to 3. |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
62 |
// On these systems, the virtual address space available to the JVM |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
63 |
// is usually limited to 2-4 GB (the exact value depends on the platform). |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
64 |
// As the compilers (especially C2) can consume a large amount of |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
65 |
// memory, scaling the number of compiler threads with the number of |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
66 |
// available cores can result in the exhaustion of the address space |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
67 |
/// available to the VM and thus cause the VM to crash. |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
68 |
if (FLAG_IS_DEFAULT(CICompilerCount)) { |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
69 |
count = 3; |
40364
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
70 |
FLAG_SET_ERGO(intx, CICompilerCount, count); |
36556
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
71 |
} |
7f092a7ce938
8150839: Adjust the number of compiler threads for 32-bit platforms
zmajo
parents:
35547
diff
changeset
|
72 |
#endif |
8667 | 73 |
|
40364
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
74 |
if (TieredStopAtLevel < CompLevel_full_optimization) { |
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
75 |
// No C2 compiler thread required |
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
76 |
set_c1_count(count); |
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
77 |
} else { |
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
78 |
set_c1_count(MAX2(count / 3, 1)); |
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
79 |
set_c2_count(MAX2(count - c1_count(), 1)); |
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
80 |
} |
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
38666
diff
changeset
|
81 |
assert(count == c1_count() + c2_count(), "inconsistent compiler thread count"); |
8667 | 82 |
|
83 |
// Some inlining tuning |
|
84 |
#ifdef X86 |
|
85 |
if (FLAG_IS_DEFAULT(InlineSmallCode)) { |
|
86 |
FLAG_SET_DEFAULT(InlineSmallCode, 2000); |
|
87 |
} |
|
88 |
#endif |
|
89 |
||
31053
91b652361bce
8085805: aarch64: AdvancedThresholdPolicy lacks tuning of InlineSmallCode size
enevill
parents:
29335
diff
changeset
|
90 |
#if defined SPARC || defined AARCH64 |
8667 | 91 |
if (FLAG_IS_DEFAULT(InlineSmallCode)) { |
92 |
FLAG_SET_DEFAULT(InlineSmallCode, 2500); |
|
93 |
} |
|
94 |
#endif |
|
95 |
||
17617
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
96 |
set_increase_threshold_at_ratio(); |
8667 | 97 |
set_start_time(os::javaTimeMillis()); |
98 |
} |
|
99 |
||
100 |
// update_rate() is called from select_task() while holding a compile queue lock. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
101 |
void AdvancedThresholdPolicy::update_rate(jlong t, Method* m) { |
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
102 |
// Skip update if counters are absent. |
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
103 |
// Can't allocate them since we are holding compile queue lock. |
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
104 |
if (m->method_counters() == NULL) return; |
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
105 |
|
8667 | 106 |
if (is_old(m)) { |
107 |
// We don't remove old methods from the queue, |
|
108 |
// so we can just zero the rate. |
|
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
109 |
m->set_rate(0); |
8667 | 110 |
return; |
111 |
} |
|
112 |
||
113 |
// We don't update the rate if we've just came out of a safepoint. |
|
114 |
// delta_s is the time since last safepoint in milliseconds. |
|
115 |
jlong delta_s = t - SafepointSynchronize::end_of_last_safepoint(); |
|
116 |
jlong delta_t = t - (m->prev_time() != 0 ? m->prev_time() : start_time()); // milliseconds since the last measurement |
|
117 |
// How many events were there since the last time? |
|
118 |
int event_count = m->invocation_count() + m->backedge_count(); |
|
119 |
int delta_e = event_count - m->prev_event_count(); |
|
120 |
||
121 |
// We should be running for at least 1ms. |
|
122 |
if (delta_s >= TieredRateUpdateMinTime) { |
|
123 |
// And we must've taken the previous point at least 1ms before. |
|
124 |
if (delta_t >= TieredRateUpdateMinTime && delta_e > 0) { |
|
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
125 |
m->set_prev_time(t); |
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
126 |
m->set_prev_event_count(event_count); |
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
127 |
m->set_rate((float)delta_e / (float)delta_t); // Rate is events per millisecond |
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
128 |
} else { |
8667 | 129 |
if (delta_t > TieredRateUpdateMaxTime && delta_e == 0) { |
130 |
// If nothing happened for 25ms, zero the rate. Don't modify prev values. |
|
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
131 |
m->set_rate(0); |
8667 | 132 |
} |
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
133 |
} |
8667 | 134 |
} |
135 |
} |
|
136 |
||
137 |
// Check if this method has been stale from a given number of milliseconds. |
|
138 |
// See select_task(). |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
139 |
bool AdvancedThresholdPolicy::is_stale(jlong t, jlong timeout, Method* m) { |
8667 | 140 |
jlong delta_s = t - SafepointSynchronize::end_of_last_safepoint(); |
141 |
jlong delta_t = t - m->prev_time(); |
|
142 |
if (delta_t > timeout && delta_s > timeout) { |
|
143 |
int event_count = m->invocation_count() + m->backedge_count(); |
|
144 |
int delta_e = event_count - m->prev_event_count(); |
|
145 |
// Return true if there were no events. |
|
146 |
return delta_e == 0; |
|
147 |
} |
|
148 |
return false; |
|
149 |
} |
|
150 |
||
151 |
// We don't remove old methods from the compile queue even if they have |
|
152 |
// very low activity. See select_task(). |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
153 |
bool AdvancedThresholdPolicy::is_old(Method* method) { |
8667 | 154 |
return method->invocation_count() > 50000 || method->backedge_count() > 500000; |
155 |
} |
|
156 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
157 |
double AdvancedThresholdPolicy::weight(Method* method) { |
35155 | 158 |
return (double)(method->rate() + 1) * |
159 |
(method->invocation_count() + 1) * (method->backedge_count() + 1); |
|
8667 | 160 |
} |
161 |
||
162 |
// Apply heuristics and return true if x should be compiled before y |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
163 |
bool AdvancedThresholdPolicy::compare_methods(Method* x, Method* y) { |
8667 | 164 |
if (x->highest_comp_level() > y->highest_comp_level()) { |
165 |
// recompilation after deopt |
|
166 |
return true; |
|
167 |
} else |
|
168 |
if (x->highest_comp_level() == y->highest_comp_level()) { |
|
169 |
if (weight(x) > weight(y)) { |
|
170 |
return true; |
|
171 |
} |
|
172 |
} |
|
173 |
return false; |
|
174 |
} |
|
175 |
||
176 |
// Is method profiled enough? |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
177 |
bool AdvancedThresholdPolicy::is_method_profiled(Method* method) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
178 |
MethodData* mdo = method->method_data(); |
8667 | 179 |
if (mdo != NULL) { |
180 |
int i = mdo->invocation_count_delta(); |
|
181 |
int b = mdo->backedge_count_delta(); |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
182 |
return call_predicate_helper<CompLevel_full_profile>(i, b, 1, method); |
8667 | 183 |
} |
184 |
return false; |
|
185 |
} |
|
186 |
||
187 |
// Called with the queue locked and with at least one element |
|
188 |
CompileTask* AdvancedThresholdPolicy::select_task(CompileQueue* compile_queue) { |
|
35547
0ee84aa8e705
8146705: Improve JVMCI support for blocking compilation
dnsimon
parents:
35155
diff
changeset
|
189 |
CompileTask *max_blocking_task = NULL; |
8667 | 190 |
CompileTask *max_task = NULL; |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13891
diff
changeset
|
191 |
Method* max_method = NULL; |
8667 | 192 |
jlong t = os::javaTimeMillis(); |
193 |
// Iterate through the queue and find a method with a maximum rate. |
|
194 |
for (CompileTask* task = compile_queue->first(); task != NULL;) { |
|
195 |
CompileTask* next_task = task->next(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
196 |
Method* method = task->method(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
197 |
update_rate(t, method); |
8667 | 198 |
if (max_task == NULL) { |
199 |
max_task = task; |
|
200 |
max_method = method; |
|
201 |
} else { |
|
202 |
// If a method has been stale for some time, remove it from the queue. |
|
38218 | 203 |
// Blocking tasks and tasks submitted from whitebox API don't become stale |
204 |
if (task->can_become_stale() && is_stale(t, TieredCompileTaskTimeout, method) && !is_old(method)) { |
|
8667 | 205 |
if (PrintTieredEvents) { |
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
206 |
print_event(REMOVE_FROM_QUEUE, method, method, task->osr_bci(), (CompLevel)task->comp_level()); |
8667 | 207 |
} |
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
208 |
compile_queue->remove_and_mark_stale(task); |
8667 | 209 |
method->clear_queued_for_compilation(); |
210 |
task = next_task; |
|
211 |
continue; |
|
212 |
} |
|
213 |
||
214 |
// Select a method with a higher rate |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
215 |
if (compare_methods(method, max_method)) { |
8667 | 216 |
max_task = task; |
217 |
max_method = method; |
|
218 |
} |
|
219 |
} |
|
36597
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
220 |
|
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
221 |
if (task->is_blocking()) { |
35547
0ee84aa8e705
8146705: Improve JVMCI support for blocking compilation
dnsimon
parents:
35155
diff
changeset
|
222 |
if (max_blocking_task == NULL || compare_methods(method, max_blocking_task->method())) { |
0ee84aa8e705
8146705: Improve JVMCI support for blocking compilation
dnsimon
parents:
35155
diff
changeset
|
223 |
max_blocking_task = task; |
0ee84aa8e705
8146705: Improve JVMCI support for blocking compilation
dnsimon
parents:
35155
diff
changeset
|
224 |
} |
0ee84aa8e705
8146705: Improve JVMCI support for blocking compilation
dnsimon
parents:
35155
diff
changeset
|
225 |
} |
36597
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
226 |
|
8667 | 227 |
task = next_task; |
228 |
} |
|
229 |
||
36597
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
230 |
if (max_blocking_task != NULL) { |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
231 |
// In blocking compilation mode, the CompileBroker will make |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
232 |
// compilations submitted by a JVMCI compiler thread non-blocking. These |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
233 |
// compilations should be scheduled after all blocking compilations |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
234 |
// to service non-compiler related compilations sooner and reduce the |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
235 |
// chance of such compilations timing out. |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
236 |
max_task = max_blocking_task; |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
36556
diff
changeset
|
237 |
max_method = max_task->method(); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31053
diff
changeset
|
238 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31053
diff
changeset
|
239 |
|
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
240 |
if (max_task->comp_level() == CompLevel_full_profile && TieredStopAtLevel > CompLevel_full_profile |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
241 |
&& is_method_profiled(max_method)) { |
8667 | 242 |
max_task->set_comp_level(CompLevel_limited_profile); |
243 |
if (PrintTieredEvents) { |
|
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
244 |
print_event(UPDATE_IN_QUEUE, max_method, max_method, max_task->osr_bci(), (CompLevel)max_task->comp_level()); |
8667 | 245 |
} |
246 |
} |
|
247 |
||
248 |
return max_task; |
|
249 |
} |
|
250 |
||
251 |
double AdvancedThresholdPolicy::threshold_scale(CompLevel level, int feedback_k) { |
|
252 |
double queue_size = CompileBroker::queue_size(level); |
|
253 |
int comp_count = compiler_count(level); |
|
254 |
double k = queue_size / (feedback_k * comp_count) + 1; |
|
17617
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
255 |
|
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
256 |
// Increase C1 compile threshold when the code cache is filled more |
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
257 |
// than specified by IncreaseFirstTierCompileThresholdAt percentage. |
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
258 |
// The main intention is to keep enough free space for C2 compiled code |
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
259 |
// to achieve peak performance if the code cache is under stress. |
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
260 |
if ((TieredStopAtLevel == CompLevel_full_optimization) && (level != CompLevel_full_optimization)) { |
26796 | 261 |
double current_reverse_free_ratio = CodeCache::reverse_free_ratio(CodeCache::get_code_blob_type(level)); |
17617
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
262 |
if (current_reverse_free_ratio > _increase_threshold_at_ratio) { |
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
263 |
k *= exp(current_reverse_free_ratio - _increase_threshold_at_ratio); |
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
264 |
} |
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17000
diff
changeset
|
265 |
} |
8667 | 266 |
return k; |
267 |
} |
|
268 |
||
269 |
// Call and loop predicates determine whether a transition to a higher |
|
270 |
// compilation level should be performed (pointers to predicate functions |
|
271 |
// are passed to common()). |
|
272 |
// Tier?LoadFeedback is basically a coefficient that determines of |
|
273 |
// how many methods per compiler thread can be in the queue before |
|
274 |
// the threshold values double. |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
275 |
bool AdvancedThresholdPolicy::loop_predicate(int i, int b, CompLevel cur_level, Method* method) { |
8667 | 276 |
switch(cur_level) { |
42650 | 277 |
case CompLevel_aot: { |
278 |
double k = threshold_scale(CompLevel_full_profile, Tier3LoadFeedback); |
|
279 |
return loop_predicate_helper<CompLevel_aot>(i, b, k, method); |
|
280 |
} |
|
8667 | 281 |
case CompLevel_none: |
282 |
case CompLevel_limited_profile: { |
|
283 |
double k = threshold_scale(CompLevel_full_profile, Tier3LoadFeedback); |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
284 |
return loop_predicate_helper<CompLevel_none>(i, b, k, method); |
8667 | 285 |
} |
286 |
case CompLevel_full_profile: { |
|
287 |
double k = threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback); |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
288 |
return loop_predicate_helper<CompLevel_full_profile>(i, b, k, method); |
8667 | 289 |
} |
290 |
default: |
|
291 |
return true; |
|
292 |
} |
|
293 |
} |
|
294 |
||
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
295 |
bool AdvancedThresholdPolicy::call_predicate(int i, int b, CompLevel cur_level, Method* method) { |
8667 | 296 |
switch(cur_level) { |
42650 | 297 |
case CompLevel_aot: { |
298 |
double k = threshold_scale(CompLevel_full_profile, Tier3LoadFeedback); |
|
299 |
return call_predicate_helper<CompLevel_aot>(i, b, k, method); |
|
300 |
} |
|
8667 | 301 |
case CompLevel_none: |
302 |
case CompLevel_limited_profile: { |
|
303 |
double k = threshold_scale(CompLevel_full_profile, Tier3LoadFeedback); |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
304 |
return call_predicate_helper<CompLevel_none>(i, b, k, method); |
8667 | 305 |
} |
306 |
case CompLevel_full_profile: { |
|
307 |
double k = threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback); |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
308 |
return call_predicate_helper<CompLevel_full_profile>(i, b, k, method); |
8667 | 309 |
} |
310 |
default: |
|
311 |
return true; |
|
312 |
} |
|
313 |
} |
|
314 |
||
315 |
// If a method is old enough and is still in the interpreter we would want to |
|
316 |
// start profiling without waiting for the compiled method to arrive. |
|
317 |
// We also take the load on compilers into the account. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
318 |
bool AdvancedThresholdPolicy::should_create_mdo(Method* method, CompLevel cur_level) { |
8667 | 319 |
if (cur_level == CompLevel_none && |
320 |
CompileBroker::queue_size(CompLevel_full_optimization) <= |
|
321 |
Tier3DelayOn * compiler_count(CompLevel_full_optimization)) { |
|
322 |
int i = method->invocation_count(); |
|
323 |
int b = method->backedge_count(); |
|
324 |
double k = Tier0ProfilingStartPercentage / 100.0; |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
325 |
return call_predicate_helper<CompLevel_none>(i, b, k, method) || loop_predicate_helper<CompLevel_none>(i, b, k, method); |
8667 | 326 |
} |
327 |
return false; |
|
328 |
} |
|
329 |
||
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
330 |
// Inlining control: if we're compiling a profiled method with C1 and the callee |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
331 |
// is known to have OSRed in a C2 version, don't inline it. |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
332 |
bool AdvancedThresholdPolicy::should_not_inline(ciEnv* env, ciMethod* callee) { |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
333 |
CompLevel comp_level = (CompLevel)env->comp_level(); |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
334 |
if (comp_level == CompLevel_full_profile || |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
335 |
comp_level == CompLevel_limited_profile) { |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
336 |
return callee->highest_osr_comp_level() == CompLevel_full_optimization; |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
337 |
} |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
338 |
return false; |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
339 |
} |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
340 |
|
8667 | 341 |
// Create MDO if necessary. |
46727
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
46630
diff
changeset
|
342 |
void AdvancedThresholdPolicy::create_mdo(const methodHandle& mh, JavaThread* THREAD) { |
29335 | 343 |
if (mh->is_native() || |
344 |
mh->is_abstract() || |
|
345 |
mh->is_accessor() || |
|
346 |
mh->is_constant_getter()) { |
|
347 |
return; |
|
348 |
} |
|
8667 | 349 |
if (mh->method_data() == NULL) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
350 |
Method::build_interpreter_method_data(mh, CHECK_AND_CLEAR); |
8667 | 351 |
} |
352 |
} |
|
353 |
||
354 |
||
355 |
/* |
|
356 |
* Method states: |
|
357 |
* 0 - interpreter (CompLevel_none) |
|
358 |
* 1 - pure C1 (CompLevel_simple) |
|
359 |
* 2 - C1 with invocation and backedge counting (CompLevel_limited_profile) |
|
360 |
* 3 - C1 with full profiling (CompLevel_full_profile) |
|
361 |
* 4 - C2 (CompLevel_full_optimization) |
|
362 |
* |
|
363 |
* Common state transition patterns: |
|
364 |
* a. 0 -> 3 -> 4. |
|
365 |
* The most common path. But note that even in this straightforward case |
|
366 |
* profiling can start at level 0 and finish at level 3. |
|
367 |
* |
|
368 |
* b. 0 -> 2 -> 3 -> 4. |
|
22551 | 369 |
* This case occurs when the load on C2 is deemed too high. So, instead of transitioning |
8667 | 370 |
* into state 3 directly and over-profiling while a method is in the C2 queue we transition to |
371 |
* level 2 and wait until the load on C2 decreases. This path is disabled for OSRs. |
|
372 |
* |
|
373 |
* c. 0 -> (3->2) -> 4. |
|
374 |
* In this case we enqueue a method for compilation at level 3, but the C1 queue is long enough |
|
375 |
* to enable the profiling to fully occur at level 0. In this case we change the compilation level |
|
27643
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
26796
diff
changeset
|
376 |
* of the method to 2 while the request is still in-queue, because it'll allow it to run much faster |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
26796
diff
changeset
|
377 |
* without full profiling while c2 is compiling. |
8667 | 378 |
* |
379 |
* d. 0 -> 3 -> 1 or 0 -> 2 -> 1. |
|
380 |
* After a method was once compiled with C1 it can be identified as trivial and be compiled to |
|
381 |
* level 1. These transition can also occur if a method can't be compiled with C2 but can with C1. |
|
382 |
* |
|
383 |
* e. 0 -> 4. |
|
384 |
* This can happen if a method fails C1 compilation (it will still be profiled in the interpreter) |
|
385 |
* or because of a deopt that didn't require reprofiling (compilation won't happen in this case because |
|
386 |
* the compiled version already exists). |
|
387 |
* |
|
388 |
* Note that since state 0 can be reached from any other state via deoptimization different loops |
|
389 |
* are possible. |
|
390 |
* |
|
391 |
*/ |
|
392 |
||
393 |
// Common transition function. Given a predicate determines if a method should transition to another level. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
394 |
CompLevel AdvancedThresholdPolicy::common(Predicate p, Method* method, CompLevel cur_level, bool disable_feedback) { |
8667 | 395 |
CompLevel next_level = cur_level; |
396 |
int i = method->invocation_count(); |
|
397 |
int b = method->backedge_count(); |
|
398 |
||
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
399 |
if (is_trivial(method)) { |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
400 |
next_level = CompLevel_simple; |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
401 |
} else { |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
402 |
switch(cur_level) { |
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
42650
diff
changeset
|
403 |
default: break; |
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
42650
diff
changeset
|
404 |
case CompLevel_aot: { |
42650 | 405 |
// If we were at full profile level, would we switch to full opt? |
406 |
if (common(p, method, CompLevel_full_profile, disable_feedback) == CompLevel_full_optimization) { |
|
407 |
next_level = CompLevel_full_optimization; |
|
408 |
} else if (disable_feedback || (CompileBroker::queue_size(CompLevel_full_optimization) <= |
|
409 |
Tier3DelayOff * compiler_count(CompLevel_full_optimization) && |
|
410 |
(this->*p)(i, b, cur_level, method))) { |
|
411 |
next_level = CompLevel_full_profile; |
|
412 |
} |
|
413 |
} |
|
414 |
break; |
|
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
415 |
case CompLevel_none: |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
416 |
// If we were at full profile level, would we switch to full opt? |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
417 |
if (common(p, method, CompLevel_full_profile, disable_feedback) == CompLevel_full_optimization) { |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
418 |
next_level = CompLevel_full_optimization; |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
419 |
} else if ((this->*p)(i, b, cur_level, method)) { |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31053
diff
changeset
|
420 |
#if INCLUDE_JVMCI |
42650 | 421 |
if (EnableJVMCI && UseJVMCICompiler) { |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31053
diff
changeset
|
422 |
// Since JVMCI takes a while to warm up, its queue inevitably backs up during |
42650 | 423 |
// early VM execution. As of 2014-06-13, JVMCI's inliner assumes that the root |
424 |
// compilation method and all potential inlinees have mature profiles (which |
|
425 |
// includes type profiling). If it sees immature profiles, JVMCI's inliner |
|
426 |
// can perform pathologically bad (e.g., causing OutOfMemoryErrors due to |
|
427 |
// exploring/inlining too many graphs). Since a rewrite of the inliner is |
|
428 |
// in progress, we simply disable the dialing back heuristic for now and will |
|
429 |
// revisit this decision once the new inliner is completed. |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31053
diff
changeset
|
430 |
next_level = CompLevel_full_profile; |
42650 | 431 |
} else |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31053
diff
changeset
|
432 |
#endif |
42650 | 433 |
{ |
434 |
// C1-generated fully profiled code is about 30% slower than the limited profile |
|
435 |
// code that has only invocation and backedge counters. The observation is that |
|
436 |
// if C2 queue is large enough we can spend too much time in the fully profiled code |
|
437 |
// while waiting for C2 to pick the method from the queue. To alleviate this problem |
|
438 |
// we introduce a feedback on the C2 queue size. If the C2 queue is sufficiently long |
|
439 |
// we choose to compile a limited profiled version and then recompile with full profiling |
|
440 |
// when the load on C2 goes down. |
|
441 |
if (!disable_feedback && CompileBroker::queue_size(CompLevel_full_optimization) > |
|
442 |
Tier3DelayOn * compiler_count(CompLevel_full_optimization)) { |
|
443 |
next_level = CompLevel_limited_profile; |
|
444 |
} else { |
|
445 |
next_level = CompLevel_full_profile; |
|
446 |
} |
|
8667 | 447 |
} |
448 |
} |
|
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
449 |
break; |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
450 |
case CompLevel_limited_profile: |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
451 |
if (is_method_profiled(method)) { |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
452 |
// Special case: we got here because this method was fully profiled in the interpreter. |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
453 |
next_level = CompLevel_full_optimization; |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
454 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
455 |
MethodData* mdo = method->method_data(); |
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
456 |
if (mdo != NULL) { |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
457 |
if (mdo->would_profile()) { |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
458 |
if (disable_feedback || (CompileBroker::queue_size(CompLevel_full_optimization) <= |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
459 |
Tier3DelayOff * compiler_count(CompLevel_full_optimization) && |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
460 |
(this->*p)(i, b, cur_level, method))) { |
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
461 |
next_level = CompLevel_full_profile; |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
462 |
} |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
463 |
} else { |
8667 | 464 |
next_level = CompLevel_full_optimization; |
465 |
} |
|
42650 | 466 |
} else { |
467 |
// If there is no MDO we need to profile |
|
468 |
if (disable_feedback || (CompileBroker::queue_size(CompLevel_full_optimization) <= |
|
469 |
Tier3DelayOff * compiler_count(CompLevel_full_optimization) && |
|
470 |
(this->*p)(i, b, cur_level, method))) { |
|
471 |
next_level = CompLevel_full_profile; |
|
472 |
} |
|
8667 | 473 |
} |
474 |
} |
|
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
475 |
break; |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
476 |
case CompLevel_full_profile: |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
477 |
{ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
478 |
MethodData* mdo = method->method_data(); |
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
479 |
if (mdo != NULL) { |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
480 |
if (mdo->would_profile()) { |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
481 |
int mdo_i = mdo->invocation_count_delta(); |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
482 |
int mdo_b = mdo->backedge_count_delta(); |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
483 |
if ((this->*p)(mdo_i, mdo_b, cur_level, method)) { |
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
484 |
next_level = CompLevel_full_optimization; |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
485 |
} |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
486 |
} else { |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
487 |
next_level = CompLevel_full_optimization; |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
488 |
} |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
489 |
} |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
490 |
} |
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
491 |
break; |
8667 | 492 |
} |
493 |
} |
|
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
494 |
return MIN2(next_level, (CompLevel)TieredStopAtLevel); |
8667 | 495 |
} |
496 |
||
497 |
// Determine if a method should be compiled with a normal entry point at a different level. |
|
38666
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
498 |
CompLevel AdvancedThresholdPolicy::call_event(Method* method, CompLevel cur_level, JavaThread * thread) { |
10013
714ad59b56cb
7058689: Tiered: Reprofiling doesn't happen in presence of level 4 OSR methods
iveresov
parents:
9625
diff
changeset
|
499 |
CompLevel osr_level = MIN2((CompLevel) method->highest_osr_comp_level(), |
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
500 |
common(&AdvancedThresholdPolicy::loop_predicate, method, cur_level, true)); |
8667 | 501 |
CompLevel next_level = common(&AdvancedThresholdPolicy::call_predicate, method, cur_level); |
502 |
||
503 |
// If OSR method level is greater than the regular method level, the levels should be |
|
504 |
// equalized by raising the regular method level in order to avoid OSRs during each |
|
505 |
// invocation of the method. |
|
506 |
if (osr_level == CompLevel_full_optimization && cur_level == CompLevel_full_profile) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11572
diff
changeset
|
507 |
MethodData* mdo = method->method_data(); |
8667 | 508 |
guarantee(mdo != NULL, "MDO should not be NULL"); |
509 |
if (mdo->invocation_count() >= 1) { |
|
510 |
next_level = CompLevel_full_optimization; |
|
511 |
} |
|
512 |
} else { |
|
513 |
next_level = MAX2(osr_level, next_level); |
|
514 |
} |
|
38666
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
515 |
#if INCLUDE_JVMCI |
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
516 |
if (UseJVMCICompiler) { |
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
517 |
next_level = JVMCIRuntime::adjust_comp_level(method, false, next_level, thread); |
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
518 |
} |
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
519 |
#endif |
8667 | 520 |
return next_level; |
521 |
} |
|
522 |
||
523 |
// Determine if we should do an OSR compilation of a given method. |
|
38666
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
524 |
CompLevel AdvancedThresholdPolicy::loop_event(Method* method, CompLevel cur_level, JavaThread * thread) { |
10250
0794cd144834
7066339: Tiered: policy should make consistent decisions about osr levels
iveresov
parents:
10014
diff
changeset
|
525 |
CompLevel next_level = common(&AdvancedThresholdPolicy::loop_predicate, method, cur_level, true); |
8667 | 526 |
if (cur_level == CompLevel_none) { |
527 |
// If there is a live OSR method that means that we deopted to the interpreter |
|
528 |
// for the transition. |
|
10013
714ad59b56cb
7058689: Tiered: Reprofiling doesn't happen in presence of level 4 OSR methods
iveresov
parents:
9625
diff
changeset
|
529 |
CompLevel osr_level = MIN2((CompLevel)method->highest_osr_comp_level(), next_level); |
8667 | 530 |
if (osr_level > CompLevel_none) { |
531 |
return osr_level; |
|
532 |
} |
|
533 |
} |
|
38666
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
534 |
#if INCLUDE_JVMCI |
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
535 |
if (UseJVMCICompiler) { |
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
536 |
next_level = JVMCIRuntime::adjust_comp_level(method, true, next_level, thread); |
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
537 |
} |
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
538 |
#endif |
10013
714ad59b56cb
7058689: Tiered: Reprofiling doesn't happen in presence of level 4 OSR methods
iveresov
parents:
9625
diff
changeset
|
539 |
return next_level; |
8667 | 540 |
} |
541 |
||
542 |
// Update the rate and submit compile |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
543 |
void AdvancedThresholdPolicy::submit_compile(const methodHandle& mh, int bci, CompLevel level, JavaThread* thread) { |
8667 | 544 |
int hot_count = (bci == InvocationEntryBci) ? mh->invocation_count() : mh->backedge_count(); |
545 |
update_rate(os::javaTimeMillis(), mh()); |
|
38218 | 546 |
CompileBroker::compile_method(mh, bci, level, mh, hot_count, CompileTask::Reason_Tiered, thread); |
8667 | 547 |
} |
548 |
||
46727
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
46630
diff
changeset
|
549 |
bool AdvancedThresholdPolicy::maybe_switch_to_aot(const methodHandle& mh, CompLevel cur_level, CompLevel next_level, JavaThread* thread) { |
42650 | 550 |
if (UseAOT && !delay_compilation_during_startup()) { |
551 |
if (cur_level == CompLevel_full_profile || cur_level == CompLevel_none) { |
|
552 |
// If the current level is full profile or interpreter and we're switching to any other level, |
|
553 |
// activate the AOT code back first so that we won't waste time overprofiling. |
|
554 |
compile(mh, InvocationEntryBci, CompLevel_aot, thread); |
|
555 |
// Fall through for JIT compilation. |
|
556 |
} |
|
557 |
if (next_level == CompLevel_limited_profile && cur_level != CompLevel_aot && mh->has_aot_code()) { |
|
558 |
// If the next level is limited profile, use the aot code (if there is any), |
|
559 |
// since it's essentially the same thing. |
|
560 |
compile(mh, InvocationEntryBci, CompLevel_aot, thread); |
|
561 |
// Not need to JIT, we're done. |
|
562 |
return true; |
|
563 |
} |
|
564 |
} |
|
565 |
return false; |
|
566 |
} |
|
567 |
||
568 |
||
8667 | 569 |
// Handle the invocation event. |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
570 |
void AdvancedThresholdPolicy::method_invocation_event(const methodHandle& mh, const methodHandle& imh, |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36597
diff
changeset
|
571 |
CompLevel level, CompiledMethod* nm, JavaThread* thread) { |
8667 | 572 |
if (should_create_mdo(mh(), level)) { |
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
11424
diff
changeset
|
573 |
create_mdo(mh, thread); |
8667 | 574 |
} |
42650 | 575 |
CompLevel next_level = call_event(mh(), level, thread); |
576 |
if (next_level != level) { |
|
577 |
if (maybe_switch_to_aot(mh, level, next_level, thread)) { |
|
578 |
// No JITting necessary |
|
579 |
return; |
|
580 |
} |
|
581 |
if (is_compilation_enabled() && !CompileBroker::compilation_is_in_queue(mh)) { |
|
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
11424
diff
changeset
|
582 |
compile(mh, InvocationEntryBci, next_level, thread); |
8667 | 583 |
} |
584 |
} |
|
585 |
} |
|
586 |
||
587 |
// Handle the back branch event. Notice that we can compile the method |
|
588 |
// with a regular entry from here. |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
589 |
void AdvancedThresholdPolicy::method_back_branch_event(const methodHandle& mh, const methodHandle& imh, |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36597
diff
changeset
|
590 |
int bci, CompLevel level, CompiledMethod* nm, JavaThread* thread) { |
8667 | 591 |
if (should_create_mdo(mh(), level)) { |
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
11424
diff
changeset
|
592 |
create_mdo(mh, thread); |
8667 | 593 |
} |
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
594 |
// Check if MDO should be created for the inlined method |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
595 |
if (should_create_mdo(imh(), level)) { |
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
11424
diff
changeset
|
596 |
create_mdo(imh, thread); |
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
597 |
} |
8667 | 598 |
|
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
599 |
if (is_compilation_enabled()) { |
38666
5ff19807abd5
8152311: [JVMCI] allow JVMCI compiler to change the compilation policy for a method
dnsimon
parents:
38218
diff
changeset
|
600 |
CompLevel next_osr_level = loop_event(imh(), level, thread); |
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
601 |
CompLevel max_osr_level = (CompLevel)imh->highest_osr_comp_level(); |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
602 |
// At the very least compile the OSR version |
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
24013
diff
changeset
|
603 |
if (!CompileBroker::compilation_is_in_queue(imh) && (next_osr_level != level)) { |
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
11424
diff
changeset
|
604 |
compile(imh, bci, next_osr_level, thread); |
8667 | 605 |
} |
606 |
||
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
607 |
// Use loop event as an opportunity to also check if there's been |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
608 |
// enough calls. |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
609 |
CompLevel cur_level, next_level; |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
610 |
if (mh() != imh()) { // If there is an enclosing method |
42650 | 611 |
if (level == CompLevel_aot) { |
612 |
// Recompile the enclosing method to prevent infinite OSRs. Stay at AOT level while it's compiling. |
|
613 |
if (max_osr_level != CompLevel_none && !CompileBroker::compilation_is_in_queue(mh)) { |
|
614 |
compile(mh, InvocationEntryBci, MIN2((CompLevel)TieredStopAtLevel, CompLevel_full_profile), thread); |
|
615 |
} |
|
616 |
} else { |
|
617 |
// Current loop event level is not AOT |
|
618 |
guarantee(nm != NULL, "Should have nmethod here"); |
|
619 |
cur_level = comp_level(mh()); |
|
620 |
next_level = call_event(mh(), cur_level, thread); |
|
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
621 |
|
42650 | 622 |
if (max_osr_level == CompLevel_full_optimization) { |
623 |
// The inlinee OSRed to full opt, we need to modify the enclosing method to avoid deopts |
|
624 |
bool make_not_entrant = false; |
|
625 |
if (nm->is_osr_method()) { |
|
626 |
// This is an osr method, just make it not entrant and recompile later if needed |
|
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
627 |
make_not_entrant = true; |
42650 | 628 |
} else { |
629 |
if (next_level != CompLevel_full_optimization) { |
|
630 |
// next_level is not full opt, so we need to recompile the |
|
631 |
// enclosing method without the inlinee |
|
632 |
cur_level = CompLevel_none; |
|
633 |
make_not_entrant = true; |
|
634 |
} |
|
635 |
} |
|
636 |
if (make_not_entrant) { |
|
637 |
if (PrintTieredEvents) { |
|
638 |
int osr_bci = nm->is_osr_method() ? nm->osr_entry_bci() : InvocationEntryBci; |
|
639 |
print_event(MAKE_NOT_ENTRANT, mh(), mh(), osr_bci, level); |
|
640 |
} |
|
641 |
nm->make_not_entrant(); |
|
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
642 |
} |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
643 |
} |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
644 |
// Fix up next_level if necessary to avoid deopts |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
645 |
if (next_level == CompLevel_limited_profile && max_osr_level == CompLevel_full_profile) { |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
646 |
next_level = CompLevel_full_profile; |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
647 |
} |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
648 |
if (cur_level != next_level) { |
42650 | 649 |
if (!maybe_switch_to_aot(mh, cur_level, next_level, thread) && !CompileBroker::compilation_is_in_queue(mh)) { |
650 |
compile(mh, InvocationEntryBci, next_level, thread); |
|
651 |
} |
|
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
652 |
} |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
653 |
} |
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
654 |
} else { |
42650 | 655 |
cur_level = comp_level(mh()); |
656 |
next_level = call_event(mh(), cur_level, thread); |
|
657 |
if (next_level != cur_level) { |
|
658 |
if (!maybe_switch_to_aot(mh, cur_level, next_level, thread) && !CompileBroker::compilation_is_in_queue(mh)) { |
|
659 |
compile(mh, InvocationEntryBci, next_level, thread); |
|
660 |
} |
|
10014
a5c2141ee857
7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents:
10013
diff
changeset
|
661 |
} |
8667 | 662 |
} |
663 |
} |
|
664 |
} |
|
665 |
||
666 |
#endif // TIERED |