hotspot/src/share/vm/runtime/advancedThresholdPolicy.cpp
author coleenp
Thu, 27 Jul 2017 18:06:41 -0400
changeset 46727 6e4a84748e2c
parent 46630 75aa3e39d02c
permissions -rw-r--r--
8183039: Re-examine methodHandle methods uninlined by 8144256 Summary: Add more const references so out-of-line methodHandle destructor and copy ctor called infrequently Reviewed-by: hseigel, redestad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
     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
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
     4
 *
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
     7
 * published by the Free Software Foundation.
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
     8
 *
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    13
 * accompanied this code).
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    14
 *
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    18
 *
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    21
 * questions.
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    22
 *
822a93889b58 7043564: compile warning and copyright fixes
iveresov
parents: 8667
diff changeset
    23
 */
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    24
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    27
#include "runtime/advancedThresholdPolicy.hpp"
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    32
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    33
#ifdef TIERED
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    38
  if (mh->prev_time() == 0) tty->print("n/a");
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    39
  else tty->print("%f", mh->rate());
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    43
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    44
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    45
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    49
  // Turn on ergonomic compiler count selection
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    50
  if (FLAG_IS_DEFAULT(CICompilerCountPerCPU) && FLAG_IS_DEFAULT(CICompilerCount)) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    51
    FLAG_SET_DEFAULT(CICompilerCountPerCPU, true);
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    52
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    53
  if (CICompilerCountPerCPU) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    54
    // Simple log n seems to grow too slowly for tiered, try something faster: log n * log log n
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    55
    int log_cpu = log2_intptr(os::active_processor_count());
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    82
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    83
  // Some inlining tuning
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    84
#ifdef X86
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    85
  if (FLAG_IS_DEFAULT(InlineSmallCode)) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    86
    FLAG_SET_DEFAULT(InlineSmallCode, 2000);
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    87
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    88
#endif
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    89
31053
91b652361bce 8085805: aarch64: AdvancedThresholdPolicy lacks tuning of InlineSmallCode size
enevill
parents: 29335
diff changeset
    90
#if defined SPARC || defined AARCH64
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    91
  if (FLAG_IS_DEFAULT(InlineSmallCode)) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    92
    FLAG_SET_DEFAULT(InlineSmallCode, 2500);
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    93
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    94
#endif
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    97
  set_start_time(os::javaTimeMillis());
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    98
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
    99
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   106
  if (is_old(m)) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   107
    // We don't remove old methods from the queue,
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   110
    return;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   111
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   112
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   113
  // We don't update the rate if we've just came out of a safepoint.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   114
  // delta_s is the time since last safepoint in milliseconds.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   115
  jlong delta_s = t - SafepointSynchronize::end_of_last_safepoint();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   116
  jlong delta_t = t - (m->prev_time() != 0 ? m->prev_time() : start_time()); // milliseconds since the last measurement
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   117
  // How many events were there since the last time?
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   118
  int event_count = m->invocation_count() + m->backedge_count();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   119
  int delta_e = event_count - m->prev_event_count();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   120
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   121
  // We should be running for at least 1ms.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   122
  if (delta_s >= TieredRateUpdateMinTime) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   123
    // And we must've taken the previous point at least 1ms before.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   129
      if (delta_t > TieredRateUpdateMaxTime && delta_e == 0) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   132
      }
24443
7aaf1b306b55 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 24321
diff changeset
   133
    }
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   134
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   135
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   136
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   137
// Check if this method has been stale from a given number of milliseconds.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   140
  jlong delta_s = t - SafepointSynchronize::end_of_last_safepoint();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   141
  jlong delta_t = t - m->prev_time();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   142
  if (delta_t > timeout && delta_s > timeout) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   143
    int event_count = m->invocation_count() + m->backedge_count();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   144
    int delta_e = event_count - m->prev_event_count();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   145
    // Return true if there were no events.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   146
    return delta_e == 0;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   147
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   148
  return false;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   149
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   150
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   151
// We don't remove old methods from the compile queue even if they have
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   154
  return method->invocation_count() > 50000 || method->backedge_count() > 500000;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   155
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
db692d3ebbcc 8145096: Undefined behaviour in HotSpot
aph
parents: 33593
diff changeset
   158
  return (double)(method->rate() + 1) *
db692d3ebbcc 8145096: Undefined behaviour in HotSpot
aph
parents: 33593
diff changeset
   159
    (method->invocation_count() + 1) * (method->backedge_count() + 1);
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   160
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   161
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   164
  if (x->highest_comp_level() > y->highest_comp_level()) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   165
    // recompilation after deopt
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   166
    return true;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   167
  } else
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   168
    if (x->highest_comp_level() == y->highest_comp_level()) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   169
      if (weight(x) > weight(y)) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   170
        return true;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   171
      }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   172
    }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   173
  return false;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   174
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   175
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   179
  if (mdo != NULL) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   180
    int i = mdo->invocation_count_delta();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   183
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   184
  return false;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   185
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   186
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   187
// Called with the queue locked and with at least one element
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   192
  jlong t = os::javaTimeMillis();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   193
  // Iterate through the queue and find a method with a maximum rate.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   194
  for (CompileTask* task = compile_queue->first(); task != NULL;) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   198
    if (max_task == NULL) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   199
      max_task = task;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   200
      max_method = method;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   201
    } else {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   202
      // If a method has been stale for some time, remove it from the queue.
38218
f5ba1dea04eb 8153013: BlockingCompilation test times out
neliasso
parents: 38133
diff changeset
   203
      // Blocking tasks and tasks submitted from whitebox API don't become stale
f5ba1dea04eb 8153013: BlockingCompilation test times out
neliasso
parents: 38133
diff changeset
   204
      if (task->can_become_stale() && is_stale(t, TieredCompileTaskTimeout, method) && !is_old(method)) {
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   209
        method->clear_queued_for_compilation();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   210
        task = next_task;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   211
        continue;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   212
      }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   213
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   216
        max_task = task;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   217
        max_method = method;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   218
      }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   227
    task = next_task;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   228
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   242
    max_task->set_comp_level(CompLevel_limited_profile);
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   245
    }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   246
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   247
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   248
  return max_task;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   249
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   250
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   251
double AdvancedThresholdPolicy::threshold_scale(CompLevel level, int feedback_k) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   252
  double queue_size = CompileBroker::queue_size(level);
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   253
  int comp_count = compiler_count(level);
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25715
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   266
  return k;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   267
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   268
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   269
// Call and loop predicates determine whether a transition to a higher
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   270
// compilation level should be performed (pointers to predicate functions
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   271
// are passed to common()).
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   272
// Tier?LoadFeedback is basically a coefficient that determines of
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   273
// how many methods per compiler thread can be in the queue before
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   276
  switch(cur_level) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   277
  case CompLevel_aot: {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   278
    double k = threshold_scale(CompLevel_full_profile, Tier3LoadFeedback);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   279
    return loop_predicate_helper<CompLevel_aot>(i, b, k, method);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   280
  }
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   281
  case CompLevel_none:
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   282
  case CompLevel_limited_profile: {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   285
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   286
  case CompLevel_full_profile: {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   289
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   290
  default:
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   291
    return true;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   292
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   293
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   296
  switch(cur_level) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   297
  case CompLevel_aot: {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   298
    double k = threshold_scale(CompLevel_full_profile, Tier3LoadFeedback);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   299
    return call_predicate_helper<CompLevel_aot>(i, b, k, method);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   300
  }
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   301
  case CompLevel_none:
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   302
  case CompLevel_limited_profile: {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   305
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   306
  case CompLevel_full_profile: {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   309
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   310
  default:
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   311
    return true;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   312
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   313
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   314
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   315
// If a method is old enough and is still in the interpreter we would want to
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   316
// start profiling without waiting for the compiled method to arrive.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   319
  if (cur_level == CompLevel_none &&
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   320
      CompileBroker::queue_size(CompLevel_full_optimization) <=
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   321
      Tier3DelayOn * compiler_count(CompLevel_full_optimization)) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   322
    int i = method->invocation_count();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   323
    int b = method->backedge_count();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   326
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   327
  return false;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   328
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
6af23ac5a762 8067012: Don't create MDO for constant getters
ppunegov
parents: 28650
diff changeset
   343
  if (mh->is_native() ||
6af23ac5a762 8067012: Don't create MDO for constant getters
ppunegov
parents: 28650
diff changeset
   344
      mh->is_abstract() ||
6af23ac5a762 8067012: Don't create MDO for constant getters
ppunegov
parents: 28650
diff changeset
   345
      mh->is_accessor() ||
6af23ac5a762 8067012: Don't create MDO for constant getters
ppunegov
parents: 28650
diff changeset
   346
      mh->is_constant_getter()) {
6af23ac5a762 8067012: Don't create MDO for constant getters
ppunegov
parents: 28650
diff changeset
   347
    return;
6af23ac5a762 8067012: Don't create MDO for constant getters
ppunegov
parents: 28650
diff changeset
   348
  }
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   351
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   352
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   353
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   354
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   355
/*
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   356
 * Method states:
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   357
 *   0 - interpreter (CompLevel_none)
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   358
 *   1 - pure C1 (CompLevel_simple)
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   359
 *   2 - C1 with invocation and backedge counting (CompLevel_limited_profile)
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   360
 *   3 - C1 with full profiling (CompLevel_full_profile)
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   361
 *   4 - C2 (CompLevel_full_optimization)
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   362
 *
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   363
 * Common state transition patterns:
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   364
 * a. 0 -> 3 -> 4.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   365
 *    The most common path. But note that even in this straightforward case
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   366
 *    profiling can start at level 0 and finish at level 3.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   367
 *
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   368
 * b. 0 -> 2 -> 3 -> 4.
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 17617
diff changeset
   369
 *    This case occurs when the load on C2 is deemed too high. So, instead of transitioning
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   370
 *    into state 3 directly and over-profiling while a method is in the C2 queue we transition to
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   371
 *    level 2 and wait until the load on C2 decreases. This path is disabled for OSRs.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   372
 *
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   373
 * c. 0 -> (3->2) -> 4.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   374
 *    In this case we enqueue a method for compilation at level 3, but the C1 queue is long enough
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   378
 *
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   379
 * d. 0 -> 3 -> 1 or 0 -> 2 -> 1.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   380
 *    After a method was once compiled with C1 it can be identified as trivial and be compiled to
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   381
 *    level 1. These transition can also occur if a method can't be compiled with C2 but can with C1.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   382
 *
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   383
 * e. 0 -> 4.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   384
 *    This can happen if a method fails C1 compilation (it will still be profiled in the interpreter)
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   385
 *    or because of a deopt that didn't require reprofiling (compilation won't happen in this case because
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   386
 *    the compiled version already exists).
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   387
 *
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   388
 * Note that since state 0 can be reached from any other state via deoptimization different loops
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   389
 * are possible.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   390
 *
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   391
 */
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   392
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   395
  CompLevel next_level = cur_level;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   396
  int i = method->invocation_count();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   397
  int b = method->backedge_count();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   405
      // If we were at full profile level, would we switch to full opt?
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   406
      if (common(p, method, CompLevel_full_profile, disable_feedback) == CompLevel_full_optimization) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   407
        next_level = CompLevel_full_optimization;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   408
      } else if (disable_feedback || (CompileBroker::queue_size(CompLevel_full_optimization) <=
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   409
                               Tier3DelayOff * compiler_count(CompLevel_full_optimization) &&
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   410
                               (this->*p)(i, b, cur_level, method))) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   411
        next_level = CompLevel_full_profile;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   412
      }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   413
    }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   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
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   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
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   423
          // early VM execution. As of 2014-06-13, JVMCI's inliner assumes that the root
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   424
          // compilation method and all potential inlinees have mature profiles (which
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   425
          // includes type profiling). If it sees immature profiles, JVMCI's inliner
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   426
          // can perform pathologically bad (e.g., causing OutOfMemoryErrors due to
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   427
          // exploring/inlining too many graphs). Since a rewrite of the inliner is
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   428
          // in progress, we simply disable the dialing back heuristic for now and will
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   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
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   431
        } else
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31053
diff changeset
   432
#endif
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   433
        {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   434
          // C1-generated fully profiled code is about 30% slower than the limited profile
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   435
          // code that has only invocation and backedge counters. The observation is that
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   436
          // if C2 queue is large enough we can spend too much time in the fully profiled code
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   437
          // while waiting for C2 to pick the method from the queue. To alleviate this problem
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   438
          // we introduce a feedback on the C2 queue size. If the C2 queue is sufficiently long
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   439
          // we choose to compile a limited profiled version and then recompile with full profiling
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   440
          // when the load on C2 goes down.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   441
          if (!disable_feedback && CompileBroker::queue_size(CompLevel_full_optimization) >
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   442
              Tier3DelayOn * compiler_count(CompLevel_full_optimization)) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   443
            next_level = CompLevel_limited_profile;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   444
          } else {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   445
            next_level = CompLevel_full_profile;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   446
          }
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   447
        }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   464
            next_level = CompLevel_full_optimization;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   465
          }
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   466
        } else {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   467
          // If there is no MDO we need to profile
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   468
          if (disable_feedback || (CompileBroker::queue_size(CompLevel_full_optimization) <=
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   469
                                   Tier3DelayOff * compiler_count(CompLevel_full_optimization) &&
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   470
                                   (this->*p)(i, b, cur_level, method))) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   471
            next_level = CompLevel_full_profile;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   472
          }
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   473
        }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   492
    }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   495
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   496
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   501
  CompLevel next_level = common(&AdvancedThresholdPolicy::call_predicate, method, cur_level);
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   502
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   503
  // If OSR method level is greater than the regular method level, the levels should be
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   504
  // equalized by raising the regular method level in order to avoid OSRs during each
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   505
  // invocation of the method.
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   508
    guarantee(mdo != NULL, "MDO should not be NULL");
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   509
    if (mdo->invocation_count() >= 1) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   510
      next_level = CompLevel_full_optimization;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   511
    }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   512
  } else {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   513
    next_level = MAX2(osr_level, next_level);
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   520
  return next_level;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   521
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   522
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   526
  if (cur_level == CompLevel_none) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   527
    // If there is a live OSR method that means that we deopted to the interpreter
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   530
    if (osr_level > CompLevel_none) {
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   531
      return osr_level;
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   532
    }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   540
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   541
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   544
  int hot_count = (bci == InvocationEntryBci) ? mh->invocation_count() : mh->backedge_count();
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   545
  update_rate(os::javaTimeMillis(), mh());
38218
f5ba1dea04eb 8153013: BlockingCompilation test times out
neliasso
parents: 38133
diff changeset
   546
  CompileBroker::compile_method(mh, bci, level, mh, hot_count, CompileTask::Reason_Tiered, thread);
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   547
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   550
  if (UseAOT && !delay_compilation_during_startup()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   551
    if (cur_level == CompLevel_full_profile || cur_level == CompLevel_none) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   552
      // If the current level is full profile or interpreter and we're switching to any other level,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   553
      // activate the AOT code back first so that we won't waste time overprofiling.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   554
      compile(mh, InvocationEntryBci, CompLevel_aot, thread);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   555
      // Fall through for JIT compilation.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   556
    }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   557
    if (next_level == CompLevel_limited_profile && cur_level != CompLevel_aot && mh->has_aot_code()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   558
      // If the next level is limited profile, use the aot code (if there is any),
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   559
      // since it's essentially the same thing.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   560
      compile(mh, InvocationEntryBci, CompLevel_aot, thread);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   561
      // Not need to JIT, we're done.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   562
      return true;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   563
    }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   564
  }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   565
  return false;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   566
}
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   567
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   568
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   574
  }
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   575
  CompLevel next_level = call_event(mh(), level, thread);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   576
  if (next_level != level) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   577
    if (maybe_switch_to_aot(mh, level, next_level, thread)) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   578
      // No JITting necessary
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   579
      return;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   580
    }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   583
    }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   584
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   585
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   586
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   587
// Handle the back branch event. Notice that we can compile the method
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   605
    }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   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
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   611
      if (level == CompLevel_aot) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   612
        // Recompile the enclosing method to prevent infinite OSRs. Stay at AOT level while it's compiling.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   613
        if (max_osr_level != CompLevel_none && !CompileBroker::compilation_is_in_queue(mh)) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   614
          compile(mh, InvocationEntryBci, MIN2((CompLevel)TieredStopAtLevel, CompLevel_full_profile), thread);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   615
        }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   616
      } else {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   617
        // Current loop event level is not AOT
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   618
        guarantee(nm != NULL, "Should have nmethod here");
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   619
        cur_level = comp_level(mh());
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   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
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   622
        if (max_osr_level == CompLevel_full_optimization) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   623
          // The inlinee OSRed to full opt, we need to modify the enclosing method to avoid deopts
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   624
          bool make_not_entrant = false;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   625
          if (nm->is_osr_method()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   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
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   628
          } else {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   629
            if (next_level != CompLevel_full_optimization) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   630
              // next_level is not full opt, so we need to recompile the
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   631
              // enclosing method without the inlinee
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   632
              cur_level = CompLevel_none;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   633
              make_not_entrant = true;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   634
            }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   635
          }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   636
          if (make_not_entrant) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   637
            if (PrintTieredEvents) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   638
              int osr_bci = nm->is_osr_method() ? nm->osr_entry_bci() : InvocationEntryBci;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   639
              print_event(MAKE_NOT_ENTRANT, mh(), mh(), osr_bci, level);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   640
            }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   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
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   649
          if (!maybe_switch_to_aot(mh, cur_level, next_level, thread) && !CompileBroker::compilation_is_in_queue(mh)) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   650
            compile(mh, InvocationEntryBci, next_level, thread);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   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
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   655
      cur_level = comp_level(mh());
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   656
      next_level = call_event(mh(), cur_level, thread);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   657
      if (next_level != cur_level) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   658
        if (!maybe_switch_to_aot(mh, cur_level, next_level, thread) && !CompileBroker::compilation_is_in_queue(mh)) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   659
          compile(mh, InvocationEntryBci, next_level, thread);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 40364
diff changeset
   660
        }
10014
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 10013
diff changeset
   661
      }
8667
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   662
    }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   663
  }
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   664
}
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   665
b32929355d27 7020403: Add AdvancedCompilationPolicy for tiered
iveresov
parents:
diff changeset
   666
#endif // TIERED