hotspot/src/share/vm/runtime/simpleThresholdPolicy.inline.hpp
author zmajo
Wed, 21 Jan 2015 10:51:35 +0100
changeset 28650 772aaab2582f
parent 27643 fe8f95a2d9bc
child 33632 038347770a9e
permissions -rw-r--r--
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds) Summary: Changed interpreter and compilation policies to allow using CompileThresholdScaling on a per-method level Reviewed-by: jrose, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
     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
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
     4
 *
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
     8
 *
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    13
 * accompanied this code).
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    14
 *
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    18
 *
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    21
 * questions.
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    22
 *
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    23
 */
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_SIMPLETHRESHOLDPOLICY_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    26
#define SHARE_VM_RUNTIME_SIMPLETHRESHOLDPOLICY_INLINE_HPP
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    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
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    30
template<CompLevel level>
28650
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27643
diff changeset
    31
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
    32
  double threshold_scaling;
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27643
diff changeset
    33
  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
    34
    scale *= threshold_scaling;
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27643
diff changeset
    35
  }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    36
  switch(level) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    37
  case CompLevel_none:
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    38
  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
    39
    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
    40
           (i >= Tier3MinInvocationThreshold * scale && i + b >= Tier3CompileThreshold * scale);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    41
  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
    42
   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
    43
          (i >= Tier4MinInvocationThreshold * scale && i + b >= Tier4CompileThreshold * scale);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    44
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    45
  return true;
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    46
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    47
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    48
template<CompLevel level>
28650
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27643
diff changeset
    49
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
    50
  double threshold_scaling;
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27643
diff changeset
    51
  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
    52
    scale *= threshold_scaling;
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27643
diff changeset
    53
  }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    54
  switch(level) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    55
  case CompLevel_none:
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    56
  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
    57
    return b >= Tier3BackEdgeThreshold * scale;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    58
  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
    59
    return b >= Tier4BackEdgeThreshold * scale;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    60
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    61
  return true;
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    62
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    63
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    64
// Simple methods are as good being compiled with C1 as C2.
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    65
// 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
    66
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
    67
  if (method->is_accessor() ||
fe8f95a2d9bc 8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents: 27148
diff changeset
    68
      method->is_constant_getter()) {
fe8f95a2d9bc 8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents: 27148
diff changeset
    69
    return true;
fe8f95a2d9bc 8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents: 27148
diff changeset
    70
  }
fe8f95a2d9bc 8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents: 27148
diff changeset
    71
  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
    72
    return false;
fe8f95a2d9bc 8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents: 27148
diff changeset
    73
  }
fe8f95a2d9bc 8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents: 27148
diff changeset
    74
  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
    75
  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
    76
      (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
    77
    return true;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    78
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    79
  return false;
970dc585ab63 6953144: Tiered compilation
iveresov
parents:
diff changeset
    80
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    81
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    82
#endif // SHARE_VM_RUNTIME_SIMPLETHRESHOLDPOLICY_INLINE_HPP