author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46375 | hotspot/src/share/vm/runtime/simpleThresholdPolicy.inline.hpp@1b360c12efc7 |
child 49340 | 4e82736053ae |
permissions | -rw-r--r-- |
6453 | 1 |
/* |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
2 |
* Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved. |
6453 | 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 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_SIMPLETHRESHOLDPOLICY_INLINE_HPP |
26 |
#define SHARE_VM_RUNTIME_SIMPLETHRESHOLDPOLICY_INLINE_HPP |
|
6453 | 27 |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
28 |
#include "compiler/compilerOracle.hpp" |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
29 |
|
42650 | 30 |
#ifdef TIERED |
31 |
||
6453 | 32 |
template<CompLevel level> |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
33 |
bool SimpleThresholdPolicy::call_predicate_helper(int i, int b, double scale, Method* method) { |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
34 |
double threshold_scaling; |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
35 |
if (CompilerOracle::has_option_value(method, "CompileThresholdScaling", threshold_scaling)) { |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
36 |
scale *= threshold_scaling; |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
37 |
} |
6453 | 38 |
switch(level) { |
42650 | 39 |
case CompLevel_aot: |
40 |
return (i >= Tier3AOTInvocationThreshold * scale) || |
|
41 |
(i >= Tier3AOTMinInvocationThreshold * scale && i + b >= Tier3AOTCompileThreshold * scale); |
|
6453 | 42 |
case CompLevel_none: |
43 |
case CompLevel_limited_profile: |
|
27148
a4b542d56e01
8059604: Add CompileThresholdScaling flag to control when methods are first compiled (with and withour TieredCompilation)
zmajo
parents:
13728
diff
changeset
|
44 |
return (i >= Tier3InvocationThreshold * scale) || |
a4b542d56e01
8059604: Add CompileThresholdScaling flag to control when methods are first compiled (with and withour TieredCompilation)
zmajo
parents:
13728
diff
changeset
|
45 |
(i >= Tier3MinInvocationThreshold * scale && i + b >= Tier3CompileThreshold * scale); |
6453 | 46 |
case CompLevel_full_profile: |
27148
a4b542d56e01
8059604: Add CompileThresholdScaling flag to control when methods are first compiled (with and withour TieredCompilation)
zmajo
parents:
13728
diff
changeset
|
47 |
return (i >= Tier4InvocationThreshold * scale) || |
a4b542d56e01
8059604: Add CompileThresholdScaling flag to control when methods are first compiled (with and withour TieredCompilation)
zmajo
parents:
13728
diff
changeset
|
48 |
(i >= Tier4MinInvocationThreshold * scale && i + b >= Tier4CompileThreshold * scale); |
6453 | 49 |
} |
50 |
return true; |
|
51 |
} |
|
52 |
||
53 |
template<CompLevel level> |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
54 |
bool SimpleThresholdPolicy::loop_predicate_helper(int i, int b, double scale, Method* method) { |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
55 |
double threshold_scaling; |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
56 |
if (CompilerOracle::has_option_value(method, "CompileThresholdScaling", threshold_scaling)) { |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
57 |
scale *= threshold_scaling; |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
27643
diff
changeset
|
58 |
} |
6453 | 59 |
switch(level) { |
42650 | 60 |
case CompLevel_aot: |
61 |
return b >= Tier3AOTBackEdgeThreshold * scale; |
|
6453 | 62 |
case CompLevel_none: |
63 |
case CompLevel_limited_profile: |
|
27148
a4b542d56e01
8059604: Add CompileThresholdScaling flag to control when methods are first compiled (with and withour TieredCompilation)
zmajo
parents:
13728
diff
changeset
|
64 |
return b >= Tier3BackEdgeThreshold * scale; |
6453 | 65 |
case CompLevel_full_profile: |
27148
a4b542d56e01
8059604: Add CompileThresholdScaling flag to control when methods are first compiled (with and withour TieredCompilation)
zmajo
parents:
13728
diff
changeset
|
66 |
return b >= Tier4BackEdgeThreshold * scale; |
6453 | 67 |
} |
68 |
return true; |
|
69 |
} |
|
70 |
||
71 |
// Simple methods are as good being compiled with C1 as C2. |
|
72 |
// Determine if a given method is such a case. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
73 |
bool SimpleThresholdPolicy::is_trivial(Method* method) { |
27643
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
74 |
if (method->is_accessor() || |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
75 |
method->is_constant_getter()) { |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
76 |
return true; |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
77 |
} |
33632 | 78 |
#if INCLUDE_JVMCI |
79 |
if (UseJVMCICompiler) { |
|
46375
1b360c12efc7
8171813: Reported null pointer dereference defect groups
rraghavan
parents:
42650
diff
changeset
|
80 |
AbstractCompiler* comp = CompileBroker::compiler(CompLevel_full_optimization); |
1b360c12efc7
8171813: Reported null pointer dereference defect groups
rraghavan
parents:
42650
diff
changeset
|
81 |
if (TieredCompilation && comp != NULL && comp->is_trivial(method)) { |
33632 | 82 |
return true; |
83 |
} |
|
84 |
} |
|
85 |
#endif |
|
27643
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
86 |
if (method->has_loops() || method->code_size() >= 15) { |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
87 |
return false; |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
88 |
} |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
89 |
MethodData* mdo = method->method_data(); |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
90 |
if (mdo != NULL && !mdo->would_profile() && |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
91 |
(method->code_size() < 5 || (mdo->num_blocks() < 4))) { |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
27148
diff
changeset
|
92 |
return true; |
6453 | 93 |
} |
94 |
return false; |
|
95 |
} |
|
7397 | 96 |
|
42650 | 97 |
#endif // TIERED |
98 |
||
7397 | 99 |
#endif // SHARE_VM_RUNTIME_SIMPLETHRESHOLDPOLICY_INLINE_HPP |