hotspot/src/share/vm/code/codeCache.cpp
author goetz
Thu, 22 Sep 2016 18:23:15 +0200
changeset 42062 473286891dd8
parent 41056 8b4c1a429e5d
child 42650 1f304d0c888b
permissions -rw-r--r--
8166560: [s390] Basic enablement of s390 port. Summary: Also fix problem with ARM Elf configuration. Reviewed-by: dholmes, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
     2
 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5533
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5533
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5533
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    26
#include "code/codeBlob.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    27
#include "code/codeCache.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    28
#include "code/compiledIC.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    29
#include "code/dependencies.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    30
#include "code/icBuffer.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    31
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    32
#include "code/pcDesc.hpp"
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
    33
#include "compiler/compileBroker.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30607
diff changeset
    34
#include "gc/shared/gcLocker.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    35
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    36
#include "memory/iterator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    37
#include "memory/resourceArea.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    38
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    39
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    40
#include "oops/oop.inline.hpp"
29084
1b732f2836ce 8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents: 28730
diff changeset
    41
#include "oops/verifyOopClosure.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30607
diff changeset
    42
#include "runtime/arguments.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30607
diff changeset
    43
#include "runtime/compilationPolicy.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30607
diff changeset
    44
#include "runtime/deoptimization.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    45
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    46
#include "runtime/icache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    47
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    48
#include "runtime/mutexLocker.hpp"
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
    49
#include "runtime/sweeper.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    50
#include "services/memoryService.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
    51
#include "trace/tracing.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    52
#include "utilities/xmlstream.hpp"
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    53
#ifdef COMPILER1
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    54
#include "c1/c1_Compilation.hpp"
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    55
#include "c1/c1_Compiler.hpp"
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    56
#endif
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    57
#ifdef COMPILER2
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    58
#include "opto/c2compiler.hpp"
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    59
#include "opto/compile.hpp"
26805
73f3e9ac86f5 8058716: Add include missing in 8015774
goetz
parents: 26796
diff changeset
    60
#include "opto/node.hpp"
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    61
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// Helper class for printing in CodeCache
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
class CodeBlob_sizes {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  int count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  int total_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  int header_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  int code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  int stub_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  int relocation_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  int scopes_oop_size;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    73
  int scopes_metadata_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  int scopes_data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  int scopes_pcs_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  CodeBlob_sizes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    count            = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    total_size       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    header_size      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    code_size        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    stub_size        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    relocation_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    scopes_oop_size  = 0;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    86
    scopes_metadata_size  = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    scopes_data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    scopes_pcs_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  int total()                                    { return total_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  bool is_empty()                                { return count == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  void print(const char* title) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
    95
    tty->print_cr(" #%d %s = %dK (hdr %d%%,  loc %d%%, code %d%%, stub %d%%, [oops %d%%, metadata %d%%, data %d%%, pcs %d%%])",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
                  count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
                  title,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
    98
                  (int)(total() / K),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                  header_size             * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                  relocation_size         * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                  code_size               * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
                  stub_size               * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                  scopes_oop_size         * 100 / total_size,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   104
                  scopes_metadata_size    * 100 / total_size,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                  scopes_data_size        * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                  scopes_pcs_size         * 100 / total_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void add(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    total_size       += cb->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    header_size      += cb->header_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    relocation_size  += cb->relocation_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    if (cb->is_nmethod()) {
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   115
      nmethod* nm = cb->as_nmethod_or_null();
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   116
      code_size        += nm->insts_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      stub_size        += nm->stub_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   119
      scopes_oop_size  += nm->oops_size();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   120
      scopes_metadata_size  += nm->metadata_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      scopes_data_size += nm->scopes_data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      scopes_pcs_size  += nm->scopes_pcs_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    } else {
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   124
      code_size        += cb->code_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   129
// Iterate over all CodeHeaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   130
#define FOR_ALL_HEAPS(heap) for (GrowableArrayIterator<CodeHeap*> heap = _heaps->begin(); heap != _heaps->end(); ++heap)
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   131
// Iterate over all CodeBlobs (cb) on the given CodeHeap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   132
#define FOR_ALL_BLOBS(cb, heap) for (CodeBlob* cb = first_blob(heap); cb != NULL; cb = next_blob(heap, cb))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   134
address CodeCache::_low_bound = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   135
address CodeCache::_high_bound = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
int CodeCache::_number_of_nmethods_with_dependencies = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
bool CodeCache::_needs_cache_clean = false;
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   138
nmethod* CodeCache::_scavenge_root_nmethods = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   140
// Initialize array of CodeHeaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   141
GrowableArray<CodeHeap*>* CodeCache::_heaps = new(ResourceObj::C_HEAP, mtCode) GrowableArray<CodeHeap*> (CodeBlobType::All, true);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   142
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   143
void CodeCache::check_heap_sizes(size_t non_nmethod_size, size_t profiled_size, size_t non_profiled_size, size_t cache_size, bool all_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   144
  size_t total_size = non_nmethod_size + profiled_size + non_profiled_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   145
  // Prepare error message
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   146
  const char* error = "Invalid code heap sizes";
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   147
  err_msg message("NonNMethodCodeHeapSize (%zuK) + ProfiledCodeHeapSize (%zuK) + NonProfiledCodeHeapSize (%zuK) = %zuK",
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   148
          non_nmethod_size/K, profiled_size/K, non_profiled_size/K, total_size/K);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   149
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   150
  if (total_size > cache_size) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   151
    // Some code heap sizes were explicitly set: total_size must be <= cache_size
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   152
    message.append(" is greater than ReservedCodeCacheSize (%zuK).", cache_size/K);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   153
    vm_exit_during_initialization(error, message);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   154
  } else if (all_set && total_size != cache_size) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   155
    // All code heap sizes were explicitly set: total_size must equal cache_size
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   156
    message.append(" is not equal to ReservedCodeCacheSize (%zuK).", cache_size/K);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   157
    vm_exit_during_initialization(error, message);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   158
  }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   159
}
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   160
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   161
void CodeCache::initialize_heaps() {
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   162
  bool non_nmethod_set      = FLAG_IS_CMDLINE(NonNMethodCodeHeapSize);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   163
  bool profiled_set         = FLAG_IS_CMDLINE(ProfiledCodeHeapSize);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   164
  bool non_profiled_set     = FLAG_IS_CMDLINE(NonProfiledCodeHeapSize);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   165
  size_t min_size           = os::vm_page_size();
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   166
  size_t cache_size         = ReservedCodeCacheSize;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   167
  size_t non_nmethod_size   = NonNMethodCodeHeapSize;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   168
  size_t profiled_size      = ProfiledCodeHeapSize;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   169
  size_t non_profiled_size  = NonProfiledCodeHeapSize;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   170
  // Check if total size set via command line flags exceeds the reserved size
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   171
  check_heap_sizes((non_nmethod_set  ? non_nmethod_size  : min_size),
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   172
                   (profiled_set     ? profiled_size     : min_size),
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   173
                   (non_profiled_set ? non_profiled_size : min_size),
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   174
                   cache_size,
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   175
                   non_nmethod_set && profiled_set && non_profiled_set);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   176
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   177
  // Determine size of compiler buffers
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   178
  size_t code_buffers_size = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   179
#ifdef COMPILER1
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   180
  // C1 temporary code buffers (see Compiler::init_buffer_blob())
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   181
  const int c1_count = CompilationPolicy::policy()->compiler_count(CompLevel_simple);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   182
  code_buffers_size += c1_count * Compiler::code_buffer_size();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   183
#endif
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   184
#ifdef COMPILER2
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   185
  // C2 scratch buffers (see Compile::init_scratch_buffer_blob())
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   186
  const int c2_count = CompilationPolicy::policy()->compiler_count(CompLevel_full_optimization);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   187
  // Initial size of constant table (this may be increased if a compiled method needs more space)
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   188
  code_buffers_size += c2_count * C2Compiler::initial_code_buffer_size();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   189
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   191
  // Increase default non_nmethod_size to account for compiler buffers
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   192
  if (!non_nmethod_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   193
    non_nmethod_size += code_buffers_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   194
  }
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   195
  // Calculate default CodeHeap sizes if not set by user
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   196
  if (!non_nmethod_set && !profiled_set && !non_profiled_set) {
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   197
    // Check if we have enough space for the non-nmethod code heap
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   198
    if (cache_size > non_nmethod_size) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   199
      // Use the default value for non_nmethod_size and one half of the
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   200
      // remaining size for non-profiled and one half for profiled methods
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   201
      size_t remaining_size = cache_size - non_nmethod_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   202
      profiled_size = remaining_size / 2;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   203
      non_profiled_size = remaining_size - profiled_size;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   204
    } else {
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   205
      // Use all space for the non-nmethod heap and set other heaps to minimal size
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   206
      non_nmethod_size = cache_size - 2 * min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   207
      profiled_size = min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   208
      non_profiled_size = min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   209
    }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   210
  } else if (!non_nmethod_set || !profiled_set || !non_profiled_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   211
    // The user explicitly set some code heap sizes. Increase or decrease the (default)
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   212
    // sizes of the other code heaps accordingly. First adapt non-profiled and profiled
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   213
    // code heap sizes and then only change non-nmethod code heap size if still necessary.
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   214
    intx diff_size = cache_size - (non_nmethod_size + profiled_size + non_profiled_size);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   215
    if (non_profiled_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   216
      if (!profiled_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   217
        // Adapt size of profiled code heap
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   218
        if (diff_size < 0 && ((intx)profiled_size + diff_size) <= 0) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   219
          // Not enough space available, set to minimum size
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   220
          diff_size += profiled_size - min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   221
          profiled_size = min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   222
        } else {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   223
          profiled_size += diff_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   224
          diff_size = 0;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   225
        }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   226
      }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   227
    } else if (profiled_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   228
      // Adapt size of non-profiled code heap
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   229
      if (diff_size < 0 && ((intx)non_profiled_size + diff_size) <= 0) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   230
        // Not enough space available, set to minimum size
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   231
        diff_size += non_profiled_size - min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   232
        non_profiled_size = min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   233
      } else {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   234
        non_profiled_size += diff_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   235
        diff_size = 0;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   236
      }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   237
    } else if (non_nmethod_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   238
      // Distribute remaining size between profiled and non-profiled code heaps
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   239
      diff_size = cache_size - non_nmethod_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   240
      profiled_size = diff_size / 2;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   241
      non_profiled_size = diff_size - profiled_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   242
      diff_size = 0;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   243
    }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   244
    if (diff_size != 0) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   245
      // Use non-nmethod code heap for remaining space requirements
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   246
      assert(!non_nmethod_set && ((intx)non_nmethod_size + diff_size) > 0, "sanity");
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   247
      non_nmethod_size += diff_size;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   248
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   249
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   251
  // We do not need the profiled CodeHeap, use all space for the non-profiled CodeHeap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   252
  if(!heap_available(CodeBlobType::MethodProfiled)) {
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   253
    non_profiled_size += profiled_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   254
    profiled_size = 0;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   255
  }
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   256
  // We do not need the non-profiled CodeHeap, use all space for the non-nmethod CodeHeap
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   257
  if(!heap_available(CodeBlobType::MethodNonProfiled)) {
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   258
    non_nmethod_size += non_profiled_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   259
    non_profiled_size = 0;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   260
  }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   261
  // Make sure we have enough space for VM internal code
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   262
  uint min_code_cache_size = CodeCacheMinimumUseSpace DEBUG_ONLY(* 3);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   263
  if (non_nmethod_size < (min_code_cache_size + code_buffers_size)) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   264
    vm_exit_during_initialization(err_msg(
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   265
        "Not enough space in non-nmethod code heap to run VM: %zuK < %zuK",
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   266
        non_nmethod_size/K, (min_code_cache_size + code_buffers_size)/K));
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   267
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   268
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   269
  // Verify sizes and update flag values
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   270
  assert(non_profiled_size + profiled_size + non_nmethod_size == cache_size, "Invalid code heap sizes");
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   271
  FLAG_SET_ERGO(uintx, NonNMethodCodeHeapSize, non_nmethod_size);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   272
  FLAG_SET_ERGO(uintx, ProfiledCodeHeapSize, profiled_size);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   273
  FLAG_SET_ERGO(uintx, NonProfiledCodeHeapSize, non_profiled_size);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   274
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   275
  // Align CodeHeaps
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   276
  size_t alignment = heap_alignment();
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   277
  non_nmethod_size = align_size_up(non_nmethod_size, alignment);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   278
  profiled_size   = align_size_down(profiled_size, alignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   280
  // Reserve one continuous chunk of memory for CodeHeaps and split it into
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   281
  // parts for the individual heaps. The memory layout looks like this:
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   282
  // ---------- high -----------
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   283
  //    Non-profiled nmethods
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   284
  //      Profiled nmethods
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   285
  //         Non-nmethods
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   286
  // ---------- low ------------
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   287
  ReservedCodeSpace rs = reserve_heap_memory(cache_size);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   288
  ReservedSpace non_method_space    = rs.first_part(non_nmethod_size);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   289
  ReservedSpace rest                = rs.last_part(non_nmethod_size);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   290
  ReservedSpace profiled_space      = rest.first_part(profiled_size);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   291
  ReservedSpace non_profiled_space  = rest.last_part(profiled_size);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   292
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   293
  // Non-nmethods (stubs, adapters, ...)
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   294
  add_heap(non_method_space, "CodeHeap 'non-nmethods'", CodeBlobType::NonNMethod);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   295
  // Tier 2 and tier 3 (profiled) methods
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   296
  add_heap(profiled_space, "CodeHeap 'profiled nmethods'", CodeBlobType::MethodProfiled);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   297
  // Tier 1 and tier 4 (non-profiled) methods and native methods
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   298
  add_heap(non_profiled_space, "CodeHeap 'non-profiled nmethods'", CodeBlobType::MethodNonProfiled);
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   299
}
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   300
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   301
size_t CodeCache::heap_alignment() {
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   302
  // If large page support is enabled, align code heaps according to large
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   303
  // page size to make sure that code cache is covered by large pages.
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   304
  const size_t page_size = os::can_execute_large_page_memory() ?
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   305
             os::page_size_for_region_unaligned(ReservedCodeCacheSize, 8) :
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   306
             os::vm_page_size();
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   307
  return MAX2(page_size, (size_t) os::vm_allocation_granularity());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   310
ReservedCodeSpace CodeCache::reserve_heap_memory(size_t size) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   311
  // Determine alignment
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   312
  const size_t page_size = os::can_execute_large_page_memory() ?
28631
a56cae1b428d 8066875: VirtualSpace does not use large pages
ehelin
parents: 28374
diff changeset
   313
          MIN2(os::page_size_for_region_aligned(InitialCodeCacheSize, 8),
a56cae1b428d 8066875: VirtualSpace does not use large pages
ehelin
parents: 28374
diff changeset
   314
               os::page_size_for_region_aligned(size, 8)) :
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   315
          os::vm_page_size();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   316
  const size_t granularity = os::vm_allocation_granularity();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   317
  const size_t r_align = MAX2(page_size, granularity);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   318
  const size_t r_size = align_size_up(size, r_align);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   319
  const size_t rs_align = page_size == (size_t) os::vm_page_size() ? 0 :
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   320
    MAX2(page_size, granularity);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   322
  ReservedCodeSpace rs(r_size, rs_align, rs_align > 0);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   323
35203
3e70c7dc0772 8144949: TestOptionsWithRanges -XX:NUMAInterleaveGranularity=2147483648 crashes VM
sangheki
parents: 34182
diff changeset
   324
  if (!rs.is_reserved()) {
3e70c7dc0772 8144949: TestOptionsWithRanges -XX:NUMAInterleaveGranularity=2147483648 crashes VM
sangheki
parents: 34182
diff changeset
   325
    vm_exit_during_initialization("Could not reserve enough space for code cache");
3e70c7dc0772 8144949: TestOptionsWithRanges -XX:NUMAInterleaveGranularity=2147483648 crashes VM
sangheki
parents: 34182
diff changeset
   326
  }
3e70c7dc0772 8144949: TestOptionsWithRanges -XX:NUMAInterleaveGranularity=2147483648 crashes VM
sangheki
parents: 34182
diff changeset
   327
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   328
  // Initialize bounds
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   329
  _low_bound = (address)rs.base();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   330
  _high_bound = _low_bound + rs.size();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   331
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   332
  return rs;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   333
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   334
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   335
bool CodeCache::heap_available(int code_blob_type) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   336
  if (!SegmentedCodeCache) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   337
    // No segmentation: use a single code heap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   338
    return (code_blob_type == CodeBlobType::All);
38055
9dddf9056918 8086068: VM crashes with "-Xint -XX:+UseCompiler" options
thartmann
parents: 37289
diff changeset
   339
  } else if (Arguments::is_interpreter_only()) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   340
    // Interpreter only: we don't need any method code heaps
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   341
    return (code_blob_type == CodeBlobType::NonNMethod);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   342
  } else if (TieredCompilation && (TieredStopAtLevel > CompLevel_simple)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   343
    // Tiered compilation: use all code heaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   344
    return (code_blob_type < CodeBlobType::All);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   345
  } else {
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   346
    // No TieredCompilation: we only need the non-nmethod and non-profiled code heap
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   347
    return (code_blob_type == CodeBlobType::NonNMethod) ||
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   348
           (code_blob_type == CodeBlobType::MethodNonProfiled);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   349
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
27410
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   352
const char* CodeCache::get_code_heap_flag_name(int code_blob_type) {
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   353
  switch(code_blob_type) {
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   354
  case CodeBlobType::NonNMethod:
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   355
    return "NonNMethodCodeHeapSize";
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   356
    break;
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   357
  case CodeBlobType::MethodNonProfiled:
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   358
    return "NonProfiledCodeHeapSize";
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   359
    break;
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   360
  case CodeBlobType::MethodProfiled:
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   361
    return "ProfiledCodeHeapSize";
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   362
    break;
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   363
  }
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   364
  ShouldNotReachHere();
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   365
  return NULL;
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   366
}
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   367
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   368
void CodeCache::add_heap(ReservedSpace rs, const char* name, int code_blob_type) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   369
  // Check if heap is needed
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   370
  if (!heap_available(code_blob_type)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   371
    return;
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   372
  }
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   373
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   374
  // Create CodeHeap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   375
  CodeHeap* heap = new CodeHeap(name, code_blob_type);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   376
  _heaps->append(heap);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   377
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   378
  // Reserve Space
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   379
  size_t size_initial = MIN2(InitialCodeCacheSize, rs.size());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   380
  size_initial = round_to(size_initial, os::vm_page_size());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   381
  if (!heap->reserve(rs, size_initial, CodeCacheSegmentSize)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   382
    vm_exit_during_initialization("Could not reserve enough space for code cache");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   383
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   384
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   385
  // Register the CodeHeap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   386
  MemoryService::add_code_heap_memory_pool(heap, name);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   387
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   388
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
   389
CodeHeap* CodeCache::get_code_heap(const CodeBlob* cb) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   390
  assert(cb != NULL, "CodeBlob is null");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   391
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   392
    if ((*heap)->contains(cb)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   393
      return *heap;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   394
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   395
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   396
  ShouldNotReachHere();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   397
  return NULL;
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   398
}
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   399
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   400
CodeHeap* CodeCache::get_code_heap(int code_blob_type) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   401
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   402
    if ((*heap)->accepts(code_blob_type)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   403
      return *heap;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   404
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   405
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   406
  return NULL;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   407
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   408
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   409
CodeBlob* CodeCache::first_blob(CodeHeap* heap) {
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   410
  assert_locked_or_safepoint(CodeCache_lock);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   411
  assert(heap != NULL, "heap is null");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   412
  return (CodeBlob*)heap->first();
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   413
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   415
CodeBlob* CodeCache::first_blob(int code_blob_type) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   416
  if (heap_available(code_blob_type)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   417
    return first_blob(get_code_heap(code_blob_type));
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   418
  } else {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   419
    return NULL;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   420
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   421
}
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   422
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   423
CodeBlob* CodeCache::next_blob(CodeHeap* heap, CodeBlob* cb) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   424
  assert_locked_or_safepoint(CodeCache_lock);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   425
  assert(heap != NULL, "heap is null");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   426
  return (CodeBlob*)heap->next(cb);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   427
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   428
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   429
CodeBlob* CodeCache::next_blob(CodeBlob* cb) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   430
  return next_blob(get_code_heap(cb), cb);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   431
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   432
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   433
/**
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   434
 * Do not seize the CodeCache lock here--if the caller has not
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   435
 * already done so, we are going to lose bigtime, since the code
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   436
 * cache will contain a garbage CodeBlob until the caller can
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   437
 * run the constructor for the CodeBlob subclass he is busy
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   438
 * instantiating.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   439
 */
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   440
CodeBlob* CodeCache::allocate(int size, int code_blob_type, int orig_code_blob_type) {
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   441
  // Possibly wakes up the sweeper thread.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   442
  NMethodSweeper::notify(code_blob_type);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  assert_locked_or_safepoint(CodeCache_lock);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32466
diff changeset
   444
  assert(size > 0, "Code cache allocation request must be > 0 but is %d", size);
24439
252c634b2e1c 8029343: CodeCache::allocate increments '_number_of_blobs' even if allocation fails.
anoll
parents: 23214
diff changeset
   445
  if (size <= 0) {
252c634b2e1c 8029343: CodeCache::allocate increments '_number_of_blobs' even if allocation fails.
anoll
parents: 23214
diff changeset
   446
    return NULL;
252c634b2e1c 8029343: CodeCache::allocate increments '_number_of_blobs' even if allocation fails.
anoll
parents: 23214
diff changeset
   447
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  CodeBlob* cb = NULL;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   449
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   450
  // Get CodeHeap for the given CodeBlobType
26942
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   451
  CodeHeap* heap = get_code_heap(code_blob_type);
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   452
  assert(heap != NULL, "heap is null");
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   453
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  while (true) {
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   455
    cb = (CodeBlob*)heap->allocate(size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    if (cb != NULL) break;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   457
    if (!heap->expand_by(CodeCacheExpansionSize)) {
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   458
      // Save original type for error reporting
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   459
      if (orig_code_blob_type == CodeBlobType::All) {
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   460
        orig_code_blob_type = code_blob_type;
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   461
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      // Expansion failed
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   463
      if (SegmentedCodeCache) {
29338
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   464
        // Fallback solution: Try to store code in another code heap.
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   465
        // NonNMethod -> MethodNonProfiled -> MethodProfiled (-> MethodNonProfiled)
29338
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   466
        // Note that in the sweeper, we check the reverse_free_ratio of the code heap
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   467
        // and force stack scanning if less than 10% of the code heap are free.
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   468
        int type = code_blob_type;
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   469
        switch (type) {
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   470
        case CodeBlobType::NonNMethod:
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   471
          type = CodeBlobType::MethodNonProfiled;
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   472
          break;
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   473
        case CodeBlobType::MethodNonProfiled:
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   474
          type = CodeBlobType::MethodProfiled;
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   475
          break;
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   476
        case CodeBlobType::MethodProfiled:
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   477
          // Avoid loop if we already tried that code heap
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   478
          if (type == orig_code_blob_type) {
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   479
            type = CodeBlobType::MethodNonProfiled;
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   480
          }
29338
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   481
          break;
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   482
        }
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   483
        if (type != code_blob_type && type != orig_code_blob_type && heap_available(type)) {
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   484
          if (PrintCodeCacheExtension) {
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   485
            tty->print_cr("Extension of %s failed. Trying to allocate in %s.",
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   486
                          heap->name(), get_code_heap(type)->name());
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   487
          }
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   488
          return allocate(size, type, orig_code_blob_type);
29338
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   489
        }
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   490
      }
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   491
      MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   492
      CompileBroker::handle_full_code_cache(orig_code_blob_type);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    if (PrintCodeCacheExtension) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
      ResourceMark rm;
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 31592
diff changeset
   497
      if (_heaps->length() >= 1) {
26918
4e1761669426 8059137: MemoryPoolMXBeans for different code heaps should contain 'Code heap' in their names
thartmann
parents: 26809
diff changeset
   498
        tty->print("%s", heap->name());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   499
      } else {
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   500
        tty->print("CodeCache");
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   501
      }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   502
      tty->print_cr(" extended to [" INTPTR_FORMAT ", " INTPTR_FORMAT "] (" SSIZE_FORMAT " bytes)",
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   503
                    (intptr_t)heap->low_boundary(), (intptr_t)heap->high(),
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   504
                    (address)heap->high() - (address)heap->low_boundary());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  }
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   507
  print_trace("allocation", cb, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
void CodeCache::free(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  assert_locked_or_safepoint(CodeCache_lock);
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   513
  CodeHeap* heap = get_code_heap(cb);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   514
  print_trace("free", cb);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   515
  if (cb->is_nmethod()) {
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   516
    heap->set_nmethod_count(heap->nmethod_count() - 1);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   517
    if (((nmethod *)cb)->has_dependencies()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   518
      _number_of_nmethods_with_dependencies--;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   519
    }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   520
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   521
  if (cb->is_adapter_blob()) {
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   522
    heap->set_adapter_count(heap->adapter_count() - 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   525
  // Get heap for given CodeBlob and deallocate
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   526
  get_code_heap(cb)->deallocate(cb);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   528
  assert(heap->blob_count() >= 0, "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
void CodeCache::commit(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // this is called by nmethod::nmethod, which must already own CodeCache_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  assert_locked_or_safepoint(CodeCache_lock);
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   534
  CodeHeap* heap = get_code_heap(cb);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   535
  if (cb->is_nmethod()) {
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   536
    heap->set_nmethod_count(heap->nmethod_count() + 1);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   537
    if (((nmethod *)cb)->has_dependencies()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   538
      _number_of_nmethods_with_dependencies++;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   539
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  }
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   541
  if (cb->is_adapter_blob()) {
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   542
    heap->set_adapter_count(heap->adapter_count() + 1);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   543
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   544
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  // flush the hardware I-cache
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   546
  ICache::invalidate_range(cb->content_begin(), cb->content_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
bool CodeCache::contains(void *p) {
42062
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 41056
diff changeset
   550
  // S390 uses contains() in current_frame(), which is used before
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 41056
diff changeset
   551
  // code cache initialization if NativeMemoryTracking=detail is set.
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 41056
diff changeset
   552
  S390_ONLY(if (_heaps == NULL) return false;)
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 41056
diff changeset
   553
  // It should be ok to call contains without holding a lock.
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   554
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   555
    if ((*heap)->contains(p)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   556
      return true;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   557
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   558
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   559
  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   562
// This method is safe to call without holding the CodeCache_lock, as long as a dead CodeBlob is not
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   563
// looked up (i.e., one that has been marked for deletion). It only depends on the _segmap to contain
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
// valid indices, which it will always do, as long as the CodeBlob is not in the process of being recycled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
CodeBlob* CodeCache::find_blob(void* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  CodeBlob* result = find_blob_unsafe(start);
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
   567
  // We could potentially look up non_entrant methods
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   568
  guarantee(result == NULL || !result->is_zombie() || result->is_locked_by_vm() || is_error_reported(), "unsafe access to zombie method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   572
// Lookup that does not fail if you lookup a zombie method (if you call this, be sure to know
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   573
// what you are doing)
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   574
CodeBlob* CodeCache::find_blob_unsafe(void* start) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   575
  // NMT can walk the stack before code cache is created
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   576
  if (_heaps != NULL && !_heaps->is_empty()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   577
    FOR_ALL_HEAPS(heap) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   578
      CodeBlob* result = (CodeBlob*) (*heap)->find_start(start);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   579
      if (result != NULL && result->blob_contains((address)start)) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   580
        return result;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   581
      }
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   582
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   583
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   584
  return NULL;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   585
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   586
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
nmethod* CodeCache::find_nmethod(void* start) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   588
  CodeBlob* cb = find_blob(start);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   589
  assert(cb->is_nmethod(), "did not find an nmethod");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  return (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
void CodeCache::blobs_do(void f(CodeBlob* nm)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  assert_locked_or_safepoint(CodeCache_lock);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   595
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   596
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   597
      f(cb);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   598
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
void CodeCache::nmethods_do(void f(nmethod* nm)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  assert_locked_or_safepoint(CodeCache_lock);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   604
  NMethodIterator iter;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   605
  while(iter.next()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   606
    f(iter.method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   610
void CodeCache::metadata_do(void f(Metadata* m)) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   611
  assert_locked_or_safepoint(CodeCache_lock);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   612
  NMethodIterator iter;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   613
  while(iter.next_alive()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   614
    iter.method()->metadata_do(f);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   615
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   616
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
int CodeCache::alignment_unit() {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   619
  return (int)_heaps->first()->alignment_unit();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
int CodeCache::alignment_offset() {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   623
  return (int)_heaps->first()->alignment_offset();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   626
// Mark nmethods for unloading if they contain otherwise unreachable oops.
13878
6e6a462a6cff 7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents: 13728
diff changeset
   627
void CodeCache::do_unloading(BoolObjectClosure* is_alive, bool unloading_occurred) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  assert_locked_or_safepoint(CodeCache_lock);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   629
  CompiledMethodIterator iter;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   630
  while(iter.next_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   631
    iter.method()->do_unloading(is_alive, unloading_occurred);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   635
void CodeCache::blobs_do(CodeBlobClosure* f) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  assert_locked_or_safepoint(CodeCache_lock);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   637
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   638
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   639
      if (cb->is_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   640
        f->do_code_blob(cb);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   641
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   642
#ifdef ASSERT
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   643
        if (cb->is_nmethod())
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   644
        ((nmethod*)cb)->verify_scavenge_root_oops();
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   645
#endif //ASSERT
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   646
      }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   647
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   651
// Walk the list of methods which might contain non-perm oops.
36591
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   652
void CodeCache::scavenge_root_nmethods_do(CodeBlobToOopClosure* f) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   653
  assert_locked_or_safepoint(CodeCache_lock);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   654
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   655
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   656
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   657
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   658
36591
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   659
  const bool fix_relocations = f->fix_relocations();
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   660
  debug_only(mark_scavenge_root_nmethods());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   661
36591
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   662
  nmethod* prev = NULL;
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   663
  nmethod* cur = scavenge_root_nmethods();
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   664
  while (cur != NULL) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   665
    debug_only(cur->clear_scavenge_root_marked());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   666
    assert(cur->scavenge_root_not_marked(), "");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   667
    assert(cur->on_scavenge_root_list(), "else shouldn't be on this list");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   668
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   669
    bool is_live = (!cur->is_zombie() && !cur->is_unloaded());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   670
    if (TraceScavenge) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   671
      cur->print_on(tty, is_live ? "scavenge root" : "dead scavenge root"); tty->cr();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   672
    }
5247
c2b4e525b3e5 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 4750
diff changeset
   673
    if (is_live) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   674
      // Perform cur->oops_do(f), maybe just once per nmethod.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   675
      f->do_code_blob(cur);
5247
c2b4e525b3e5 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 4750
diff changeset
   676
    }
36591
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   677
    nmethod* const next = cur->scavenge_root_link();
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   678
    // The scavengable nmethod list must contain all methods with scavengable
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   679
    // oops. It is safe to include more nmethod on the list, but we do not
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   680
    // expect any live non-scavengable nmethods on the list.
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   681
    if (fix_relocations) {
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   682
      if (!is_live || !cur->detect_scavenge_root_oops()) {
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   683
        unlink_scavenge_root_nmethod(cur, prev);
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   684
      } else {
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   685
        prev = cur;
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   686
      }
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   687
    }
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   688
    cur = next;
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   689
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   690
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   691
  // Check for stray marks.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   692
  debug_only(verify_perm_nmethods(NULL));
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   693
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   694
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   695
void CodeCache::add_scavenge_root_nmethod(nmethod* nm) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   696
  assert_locked_or_safepoint(CodeCache_lock);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   697
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   698
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   699
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   700
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   701
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   702
  nm->set_on_scavenge_root_list();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   703
  nm->set_scavenge_root_link(_scavenge_root_nmethods);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   704
  set_scavenge_root_nmethods(nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   705
  print_trace("add_scavenge_root", nm);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   706
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   707
36591
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   708
void CodeCache::unlink_scavenge_root_nmethod(nmethod* nm, nmethod* prev) {
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   709
  assert_locked_or_safepoint(CodeCache_lock);
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   710
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   711
  assert((prev == NULL && scavenge_root_nmethods() == nm) ||
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   712
         (prev != NULL && prev->scavenge_root_link() == nm), "precondition");
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   713
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   714
  assert(!UseG1GC, "G1 does not use the scavenge_root_nmethods list");
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   715
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   716
  print_trace("unlink_scavenge_root", nm);
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   717
  if (prev == NULL) {
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   718
    set_scavenge_root_nmethods(nm->scavenge_root_link());
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   719
  } else {
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   720
    prev->set_scavenge_root_link(nm->scavenge_root_link());
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   721
  }
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   722
  nm->set_scavenge_root_link(NULL);
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   723
  nm->clear_on_scavenge_root_list();
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   724
}
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   725
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   726
void CodeCache::drop_scavenge_root_nmethod(nmethod* nm) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   727
  assert_locked_or_safepoint(CodeCache_lock);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   728
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   729
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   730
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   731
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   732
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   733
  print_trace("drop_scavenge_root", nm);
36591
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   734
  nmethod* prev = NULL;
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   735
  for (nmethod* cur = scavenge_root_nmethods(); cur != NULL; cur = cur->scavenge_root_link()) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   736
    if (cur == nm) {
36591
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   737
      unlink_scavenge_root_nmethod(cur, prev);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   738
      return;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   739
    }
36591
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   740
    prev = cur;
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   741
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   742
  assert(false, "should have been on list");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   743
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   744
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   745
void CodeCache::prune_scavenge_root_nmethods() {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   746
  assert_locked_or_safepoint(CodeCache_lock);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   747
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   748
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   749
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   750
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   751
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   752
  debug_only(mark_scavenge_root_nmethods());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   753
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   754
  nmethod* last = NULL;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   755
  nmethod* cur = scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   756
  while (cur != NULL) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   757
    nmethod* next = cur->scavenge_root_link();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   758
    debug_only(cur->clear_scavenge_root_marked());
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   759
    assert(cur->scavenge_root_not_marked(), "");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   760
    assert(cur->on_scavenge_root_list(), "else shouldn't be on this list");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   761
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   762
    if (!cur->is_zombie() && !cur->is_unloaded()
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   763
        && cur->detect_scavenge_root_oops()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   764
      // Keep it.  Advance 'last' to prevent deletion.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   765
      last = cur;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   766
    } else {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   767
      // Prune it from the list, so we don't have to look at it any more.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   768
      print_trace("prune_scavenge_root", cur);
36591
d0622cab5983 8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents: 35825
diff changeset
   769
      unlink_scavenge_root_nmethod(cur, last);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   770
    }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   771
    cur = next;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   772
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   773
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   774
  // Check for stray marks.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   775
  debug_only(verify_perm_nmethods(NULL));
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   776
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   777
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   778
#ifndef PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   779
void CodeCache::asserted_non_scavengable_nmethods_do(CodeBlobClosure* f) {
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   780
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   781
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   782
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   783
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   784
  // While we are here, verify the integrity of the list.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   785
  mark_scavenge_root_nmethods();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   786
  for (nmethod* cur = scavenge_root_nmethods(); cur != NULL; cur = cur->scavenge_root_link()) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   787
    assert(cur->on_scavenge_root_list(), "else shouldn't be on this list");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   788
    cur->clear_scavenge_root_marked();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   789
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   790
  verify_perm_nmethods(f);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   791
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   792
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   793
// Temporarily mark nmethods that are claimed to be on the non-perm list.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   794
void CodeCache::mark_scavenge_root_nmethods() {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   795
  NMethodIterator iter;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   796
  while(iter.next_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   797
    nmethod* nm = iter.method();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   798
    assert(nm->scavenge_root_not_marked(), "clean state");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   799
    if (nm->on_scavenge_root_list())
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   800
      nm->set_scavenge_root_marked();
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   801
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   802
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   803
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   804
// If the closure is given, run it on the unlisted nmethods.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   805
// Also make sure that the effects of mark_scavenge_root_nmethods is gone.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   806
void CodeCache::verify_perm_nmethods(CodeBlobClosure* f_or_null) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   807
  NMethodIterator iter;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   808
  while(iter.next_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   809
    nmethod* nm = iter.method();
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   810
    bool call_f = (f_or_null != NULL);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   811
    assert(nm->scavenge_root_not_marked(), "must be already processed");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   812
    if (nm->on_scavenge_root_list())
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   813
      call_f = false;  // don't show this one to the client
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   814
    nm->verify_scavenge_root_oops();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   815
    if (call_f)  f_or_null->do_code_blob(nm);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   816
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   817
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   818
#endif //PRODUCT
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   819
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   820
void CodeCache::verify_clean_inline_caches() {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   821
#ifdef ASSERT
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   822
  NMethodIterator iter;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   823
  while(iter.next_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   824
    nmethod* nm = iter.method();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   825
    assert(!nm->is_unloaded(), "Tautology");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   826
    nm->verify_clean_inline_caches();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   827
    nm->verify();
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   828
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   829
#endif
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   830
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   831
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   832
void CodeCache::verify_icholder_relocations() {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   833
#ifdef ASSERT
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   834
  // make sure that we aren't leaking icholders
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   835
  int count = 0;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   836
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   837
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   838
      if (cb->is_nmethod()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   839
        nmethod* nm = (nmethod*)cb;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   840
        count += nm->verify_icholder_relocations();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   841
      }
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   842
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   843
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   844
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   845
  assert(count + InlineCacheBuffer::pending_icholder_count() + CompiledICHolder::live_not_claimed_count() ==
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   846
         CompiledICHolder::live_count(), "must agree");
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   847
#endif
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   848
}
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   849
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
void CodeCache::gc_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
void CodeCache::gc_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  assert_locked_or_safepoint(CodeCache_lock);
32466
915d0c3d25aa 8134493: Cleaning inline caches of unloaded nmethods should be done in sweeper
thartmann
parents: 32401
diff changeset
   855
  NOT_DEBUG(if (needs_cache_clean())) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   856
    CompiledMethodIterator iter;
32466
915d0c3d25aa 8134493: Cleaning inline caches of unloaded nmethods should be done in sweeper
thartmann
parents: 32401
diff changeset
   857
    while(iter.next_alive()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   858
      CompiledMethod* cm = iter.method();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   859
      assert(!cm->is_unloaded(), "Tautology");
32466
915d0c3d25aa 8134493: Cleaning inline caches of unloaded nmethods should be done in sweeper
thartmann
parents: 32401
diff changeset
   860
      DEBUG_ONLY(if (needs_cache_clean())) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   861
        cm->cleanup_inline_caches();
32401
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 31620
diff changeset
   862
      }
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   863
      DEBUG_ONLY(cm->verify());
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   864
      DEBUG_ONLY(cm->verify_oop_relocations());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  }
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   867
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  set_needs_cache_clean(false);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   869
  prune_scavenge_root_nmethods();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   870
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   871
  verify_icholder_relocations();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   874
void CodeCache::verify_oops() {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   875
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   876
  VerifyOopClosure voc;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   877
  NMethodIterator iter;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   878
  while(iter.next_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   879
    nmethod* nm = iter.method();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   880
    nm->oops_do(&voc);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   881
    nm->verify_oop_relocations();
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   882
  }
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   883
}
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   884
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   885
int CodeCache::blob_count(int code_blob_type) {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   886
  CodeHeap* heap = get_code_heap(code_blob_type);
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   887
  return (heap != NULL) ? heap->blob_count() : 0;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   888
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   889
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   890
int CodeCache::blob_count() {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   891
  int count = 0;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   892
  FOR_ALL_HEAPS(heap) {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   893
    count += (*heap)->blob_count();
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   894
  }
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   895
  return count;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   896
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   897
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   898
int CodeCache::nmethod_count(int code_blob_type) {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   899
  CodeHeap* heap = get_code_heap(code_blob_type);
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   900
  return (heap != NULL) ? heap->nmethod_count() : 0;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   901
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   902
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   903
int CodeCache::nmethod_count() {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   904
  int count = 0;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   905
  FOR_ALL_HEAPS(heap) {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   906
    count += (*heap)->nmethod_count();
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   907
  }
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   908
  return count;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   909
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   910
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   911
int CodeCache::adapter_count(int code_blob_type) {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   912
  CodeHeap* heap = get_code_heap(code_blob_type);
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   913
  return (heap != NULL) ? heap->adapter_count() : 0;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   914
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   915
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   916
int CodeCache::adapter_count() {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   917
  int count = 0;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   918
  FOR_ALL_HEAPS(heap) {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   919
    count += (*heap)->adapter_count();
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   920
  }
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   921
  return count;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   922
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   923
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   924
address CodeCache::low_bound(int code_blob_type) {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   925
  CodeHeap* heap = get_code_heap(code_blob_type);
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   926
  return (heap != NULL) ? (address)heap->low_boundary() : NULL;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   927
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   928
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   929
address CodeCache::high_bound(int code_blob_type) {
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   930
  CodeHeap* heap = get_code_heap(code_blob_type);
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   931
  return (heap != NULL) ? (address)heap->high_boundary() : NULL;
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   932
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   933
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   934
size_t CodeCache::capacity() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   935
  size_t cap = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   936
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   937
    cap += (*heap)->capacity();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   938
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   939
  return cap;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
26942
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   942
size_t CodeCache::unallocated_capacity(int code_blob_type) {
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   943
  CodeHeap* heap = get_code_heap(code_blob_type);
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   944
  return (heap != NULL) ? heap->unallocated_capacity() : 0;
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   945
}
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   946
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   947
size_t CodeCache::unallocated_capacity() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   948
  size_t unallocated_cap = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   949
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   950
    unallocated_cap += (*heap)->unallocated_capacity();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   951
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   952
  return unallocated_cap;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   953
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   955
size_t CodeCache::max_capacity() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   956
  size_t max_cap = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   957
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   958
    max_cap += (*heap)->max_capacity();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   959
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   960
  return max_cap;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
17617
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   963
/**
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   964
 * Returns the reverse free ratio. E.g., if 25% (1/4) of the code heap
17617
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   965
 * is free, reverse_free_ratio() returns 4.
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   966
 */
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   967
double CodeCache::reverse_free_ratio(int code_blob_type) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   968
  CodeHeap* heap = get_code_heap(code_blob_type);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   969
  if (heap == NULL) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   970
    return 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   971
  }
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   972
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   973
  double unallocated_capacity = MAX2((double)heap->unallocated_capacity(), 1.0); // Avoid division by 0;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   974
  double max_capacity = (double)heap->max_capacity();
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   975
  double result = max_capacity / unallocated_capacity;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   976
  assert (max_capacity >= unallocated_capacity, "Must be");
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32466
diff changeset
   977
  assert (result >= 1.0, "reverse_free_ratio must be at least 1. It is %f", result);
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   978
  return result;
17617
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   979
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   981
size_t CodeCache::bytes_allocated_in_freelists() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   982
  size_t allocated_bytes = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   983
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   984
    allocated_bytes += (*heap)->allocated_in_freelist();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   985
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   986
  return allocated_bytes;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   987
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   988
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   989
int CodeCache::allocated_segments() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   990
  int number_of_segments = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   991
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   992
    number_of_segments += (*heap)->allocated_segments();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   993
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   994
  return number_of_segments;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   995
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   996
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   997
size_t CodeCache::freelists_length() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   998
  size_t length = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   999
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1000
    length += (*heap)->freelist_length();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1001
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1002
  return length;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1003
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1004
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
void icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
void CodeCache::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
  assert(CodeCacheSegmentSize >= (uintx)CodeEntryAlignment, "CodeCacheSegmentSize must be large enough to align entry points");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  assert(CodeCacheSegmentSize >= (uintx)OptoLoopAlignment,  "CodeCacheSegmentSize must be large enough to align inner loops");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  assert(CodeCacheSegmentSize >= sizeof(jdouble),    "CodeCacheSegmentSize must be large enough to align constants");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  // This was originally just a check of the alignment, causing failure, instead, round
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  // the code cache to the page size.  In particular, Solaris is moving to a larger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  // default page size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  CodeCacheExpansionSize = round_to(CodeCacheExpansionSize, os::vm_page_size());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1017
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1018
  if (SegmentedCodeCache) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1019
    // Use multiple code heaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1020
    initialize_heaps();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1021
  } else {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1022
    // Use a single code heap
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1023
    FLAG_SET_ERGO(uintx, NonNMethodCodeHeapSize, 0);
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1024
    FLAG_SET_ERGO(uintx, ProfiledCodeHeapSize, 0);
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1025
    FLAG_SET_ERGO(uintx, NonProfiledCodeHeapSize, 0);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1026
    ReservedCodeSpace rs = reserve_heap_memory(ReservedCodeCacheSize);
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
  1027
    add_heap(rs, "CodeCache", CodeBlobType::All);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  // Initialize ICache flush mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  // This service is needed for os::register_code_area
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  // Give OS a chance to register generated code area.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  // This is used on Windows 64 bit platforms to register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  // Structured Exception Handlers for our generated code.
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1037
  os::register_code_area((char*)low_bound(), (char*)high_bound());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
void codeCache_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  CodeCache::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
int CodeCache::number_of_nmethods_with_dependencies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  return _number_of_nmethods_with_dependencies;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
void CodeCache::clear_inline_caches() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  assert_locked_or_safepoint(CodeCache_lock);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1052
  CompiledMethodIterator iter;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1053
  while(iter.next_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1054
    iter.method()->clear_inline_caches();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
37289
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
  1058
void CodeCache::cleanup_inline_caches() {
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
  1059
  assert_locked_or_safepoint(CodeCache_lock);
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
  1060
  NMethodIterator iter;
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
  1061
  while(iter.next_alive()) {
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
  1062
    iter.method()->cleanup_inline_caches(/*clean_all=*/true);
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
  1063
  }
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
  1064
}
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
  1065
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1066
// Keeps track of time spent for checking dependencies
22921
ee35d5c0b1dc 8034839: jvm hangs with gc/gctests/LoadUnloadGC test
anoll
parents: 22506
diff changeset
  1067
NOT_PRODUCT(static elapsedTimer dependentCheckTime;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
36300
5b47f168b948 7177745: JSR292: Many Callsite relinkages cause target method to always run in interpreter mode
vlivanov
parents: 35825
diff changeset
  1069
int CodeCache::mark_for_deoptimization(KlassDepChange& changes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  // search the hierarchy looking for nmethods which are affected by the loading of this class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  // then search the interfaces this class implements looking for nmethods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  // which might be dependent of the fact that an interface only had one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  // implementor.
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1078
  // nmethod::check_all_dependencies works only correctly, if no safepoint
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1079
  // can happen
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35203
diff changeset
  1080
  NoSafepointVerifier nsv;
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1081
  for (DepChange::ContextStream str(changes, nsv); str.next(); ) {
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1082
    Klass* d = str.klass();
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1083
    number_of_marked_CodeBlobs += InstanceKlass::cast(d)->mark_dependent_nmethods(changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
#ifndef PRODUCT
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1087
  if (VerifyDependencies) {
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1088
    // Object pointers are used as unique identifiers for dependency arguments. This
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1089
    // is only possible if no safepoint, i.e., GC occurs during the verification code.
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1090
    dependentCheckTime.start();
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1091
    nmethod::check_all_dependencies(changes);
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1092
    dependentCheckTime.stop();
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1093
  }
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1094
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1099
CompiledMethod* CodeCache::find_compiled(void* start) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1100
  CodeBlob *cb = find_blob(start);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1101
  assert(cb == NULL || cb->is_compiled(), "did not find an compiled_method");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1102
  return (CompiledMethod*)cb;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1103
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
#ifdef HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
int CodeCache::mark_for_evol_deoptimization(instanceKlassHandle dependee) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  // Deoptimize all methods of the evolving class itself
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1111
  Array<Method*>* old_methods = dependee->methods();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  for (int i = 0; i < old_methods->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
    ResourceMark rm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1114
    Method* old_method = old_methods->at(i);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1115
    CompiledMethod* nm = old_method->code();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
    if (nm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1122
  CompiledMethodIterator iter;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1123
  while(iter.next_alive()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1124
    CompiledMethod* nm = iter.method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
      // ...Already marked in the previous pass; don't count it again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
    } else if (nm->is_evol_dependent_on(dependee())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
    } else  {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1132
      // flush caches in case they refer to a redefined Method*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
      nm->clear_inline_caches();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
#endif // HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
// Deoptimize all methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
void CodeCache::mark_all_nmethods_for_deoptimization() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1145
  CompiledMethodIterator iter;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1146
  while(iter.next_alive()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1147
    CompiledMethod* nm = iter.method();
26580
8cca7fbe77b8 8056154: JVM crash with EXCEPTION_ACCESS_VIOLATION when there are many threads running
iveresov
parents: 25492
diff changeset
  1148
    if (!nm->method()->is_method_handle_intrinsic()) {
8cca7fbe77b8 8056154: JVM crash with EXCEPTION_ACCESS_VIOLATION when there are many threads running
iveresov
parents: 25492
diff changeset
  1149
      nm->mark_for_deoptimization();
8cca7fbe77b8 8056154: JVM crash with EXCEPTION_ACCESS_VIOLATION when there are many threads running
iveresov
parents: 25492
diff changeset
  1150
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1154
int CodeCache::mark_for_deoptimization(Method* dependee) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1158
  CompiledMethodIterator iter;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1159
  while(iter.next_alive()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1160
    CompiledMethod* nm = iter.method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
    if (nm->is_dependent_on_method(dependee)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
void CodeCache::make_marked_nmethods_not_entrant() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  assert_locked_or_safepoint(CodeCache_lock);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1173
  CompiledMethodIterator iter;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1174
  while(iter.next_alive()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1175
    CompiledMethod* nm = iter.method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
    if (nm->is_marked_for_deoptimization()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
      nm->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1182
// Flushes compiled methods dependent on dependee.
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1183
void CodeCache::flush_dependents_on(instanceKlassHandle dependee) {
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1184
  assert_lock_strong(Compile_lock);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1185
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1186
  if (number_of_nmethods_with_dependencies() == 0) return;
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1187
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1188
  // CodeCache can only be updated by a thread_in_VM and they will all be
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1189
  // stopped during the safepoint so CodeCache will be safe to update without
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1190
  // holding the CodeCache_lock.
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1191
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1192
  KlassDepChange changes(dependee);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1193
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1194
  // Compute the dependent nmethods
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1195
  if (mark_for_deoptimization(changes) > 0) {
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1196
    // At least one nmethod has been marked for deoptimization
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1197
    VM_Deoptimize op;
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1198
    VMThread::execute(&op);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1199
  }
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1200
}
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1201
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1202
#ifdef HOTSWAP
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1203
// Flushes compiled methods dependent on dependee in the evolutionary sense
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1204
void CodeCache::flush_evol_dependents_on(instanceKlassHandle ev_k_h) {
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1205
  // --- Compile_lock is not held. However we are at a safepoint.
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1206
  assert_locked_or_safepoint(Compile_lock);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1207
  if (number_of_nmethods_with_dependencies() == 0) return;
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1208
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1209
  // CodeCache can only be updated by a thread_in_VM and they will all be
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1210
  // stopped during the safepoint so CodeCache will be safe to update without
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1211
  // holding the CodeCache_lock.
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1212
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1213
  // Compute the dependent nmethods
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1214
  if (mark_for_evol_deoptimization(ev_k_h) > 0) {
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1215
    // At least one nmethod has been marked for deoptimization
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1216
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1217
    // All this already happens inside a VM_Operation, so we'll do all the work here.
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1218
    // Stuff copied from VM_Deoptimize and modified slightly.
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1219
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1220
    // We do not want any GCs to happen while we are in the middle of this VM operation
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1221
    ResourceMark rm;
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1222
    DeoptimizationMarker dm;
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1223
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1224
    // Deoptimize all activations depending on marked nmethods
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1225
    Deoptimization::deoptimize_dependents();
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1226
32401
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 31620
diff changeset
  1227
    // Make the dependent methods not entrant
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1228
    make_marked_nmethods_not_entrant();
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1229
  }
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1230
}
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1231
#endif // HOTSWAP
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1232
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1233
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1234
// Flushes compiled methods dependent on dependee
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1235
void CodeCache::flush_dependents_on_method(methodHandle m_h) {
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1236
  // --- Compile_lock is not held. However we are at a safepoint.
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1237
  assert_locked_or_safepoint(Compile_lock);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1238
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1239
  // CodeCache can only be updated by a thread_in_VM and they will all be
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1240
  // stopped dring the safepoint so CodeCache will be safe to update without
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1241
  // holding the CodeCache_lock.
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1242
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1243
  // Compute the dependent nmethods
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1244
  if (mark_for_deoptimization(m_h()) > 0) {
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1245
    // At least one nmethod has been marked for deoptimization
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1246
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1247
    // All this already happens inside a VM_Operation, so we'll do all the work here.
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1248
    // Stuff copied from VM_Deoptimize and modified slightly.
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1249
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1250
    // We do not want any GCs to happen while we are in the middle of this VM operation
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1251
    ResourceMark rm;
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1252
    DeoptimizationMarker dm;
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1253
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1254
    // Deoptimize all activations depending on marked nmethods
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1255
    Deoptimization::deoptimize_dependents();
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1256
32401
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 31620
diff changeset
  1257
    // Make the dependent methods not entrant
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1258
    make_marked_nmethods_not_entrant();
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1259
  }
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1260
}
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1261
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
void CodeCache::verify() {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1263
  assert_locked_or_safepoint(CodeCache_lock);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1264
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1265
    (*heap)->verify();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1266
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1267
      if (cb->is_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1268
        cb->verify();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1269
      }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1270
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1274
// A CodeHeap is full. Print out warning and report event.
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1275
void CodeCache::report_codemem_full(int code_blob_type, bool print) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1276
  // Get nmethod heap for the given CodeBlobType and build CodeCacheFull event
26942
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
  1277
  CodeHeap* heap = get_code_heap(code_blob_type);
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
  1278
  assert(heap != NULL, "heap is null");
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1279
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1280
  if ((heap->full_count() == 0) || print) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1281
    // Not yet reported for this heap, report
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1282
    if (SegmentedCodeCache) {
27410
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
  1283
      warning("%s is full. Compiler has been disabled.", get_code_heap_name(code_blob_type));
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
  1284
      warning("Try increasing the code heap size using -XX:%s=", get_code_heap_flag_name(code_blob_type));
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1285
    } else {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1286
      warning("CodeCache is full. Compiler has been disabled.");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1287
      warning("Try increasing the code cache size using -XX:ReservedCodeCacheSize=");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1288
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1289
    ResourceMark rm;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1290
    stringStream s;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1291
    // Dump code cache  into a buffer before locking the tty,
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1292
    {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1293
      MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1294
      print_summary(&s);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1295
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1296
    ttyLocker ttyl;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1297
    tty->print("%s", s.as_string());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1298
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1299
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1300
  heap->report_full();
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1301
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1302
  EventCodeCacheFull event;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1303
  if (event.should_commit()) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1304
    event.set_codeBlobType((u1)code_blob_type);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1305
    event.set_startAddress((u8)heap->low_boundary());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1306
    event.set_commitedTopAddress((u8)heap->high());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1307
    event.set_reservedTopAddress((u8)heap->high_boundary());
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1308
    event.set_entryCount(heap->blob_count());
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1309
    event.set_methodCount(heap->nmethod_count());
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1310
    event.set_adaptorCount(heap->adapter_count());
41056
8b4c1a429e5d 8157024: CodeCache JFR events reporting wrong data
neliasso
parents: 40863
diff changeset
  1311
    event.set_unallocatedCapacity(heap->unallocated_capacity());
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1312
    event.set_fullCount(heap->full_count());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1313
    event.commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1314
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1315
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1316
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1317
void CodeCache::print_memory_overhead() {
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1318
  size_t wasted_bytes = 0;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1319
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1320
      CodeHeap* curr_heap = *heap;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1321
      for (CodeBlob* cb = (CodeBlob*)curr_heap->first(); cb != NULL; cb = (CodeBlob*)curr_heap->next(cb)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1322
        HeapBlock* heap_block = ((HeapBlock*)cb) - 1;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1323
        wasted_bytes += heap_block->length() * CodeCacheSegmentSize - cb->size();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1324
      }
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1325
  }
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1326
  // Print bytes that are allocated in the freelist
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1327
  ttyLocker ttl;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1328
  tty->print_cr("Number of elements in freelist: " SSIZE_FORMAT,       freelists_length());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1329
  tty->print_cr("Allocated in freelist:          " SSIZE_FORMAT "kB",  bytes_allocated_in_freelists()/K);
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
  1330
  tty->print_cr("Unused bytes in CodeBlobs:      " SSIZE_FORMAT "kB",  (wasted_bytes/K));
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
  1331
  tty->print_cr("Segment map size:               " SSIZE_FORMAT "kB",  allocated_segments()/K); // 1 byte per segment
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1332
}
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1333
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
// Non-product version
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1339
void CodeCache::print_trace(const char* event, CodeBlob* cb, int size) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1340
  if (PrintCodeCache2) {  // Need to add a new flag
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1341
    ResourceMark rm;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1342
    if (size == 0)  size = cb->size();
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
  1343
    tty->print_cr("CodeCache %s:  addr: " INTPTR_FORMAT ", size: 0x%x", event, p2i(cb), size);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1344
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1345
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1346
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
void CodeCache::print_internals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  int nmethodCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  int runtimeStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
  int adapterCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  int deoptimizationStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
  int uncommonTrapStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
  int bufferBlobCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  int total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  int nmethodAlive = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  int nmethodNotEntrant = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  int nmethodZombie = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  int nmethodUnloaded = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
  int nmethodJava = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
  int nmethodNative = 0;
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1361
  int max_nm_size = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1364
  int i = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1365
  FOR_ALL_HEAPS(heap) {
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 31592
diff changeset
  1366
    if ((_heaps->length() >= 1) && Verbose) {
26918
4e1761669426 8059137: MemoryPoolMXBeans for different code heaps should contain 'Code heap' in their names
thartmann
parents: 26809
diff changeset
  1367
      tty->print_cr("-- %s --", (*heap)->name());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1368
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1369
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1370
      total++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1371
      if (cb->is_nmethod()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1372
        nmethod* nm = (nmethod*)cb;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1374
        if (Verbose && nm->method() != NULL) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1375
          ResourceMark rm;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1376
          char *method_name = nm->method()->name_and_sig_as_C_string();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1377
          tty->print("%s", method_name);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1378
          if(nm->is_alive()) { tty->print_cr(" alive"); }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1379
          if(nm->is_not_entrant()) { tty->print_cr(" not-entrant"); }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1380
          if(nm->is_zombie()) { tty->print_cr(" zombie"); }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1381
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1383
        nmethodCount++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1385
        if(nm->is_alive()) { nmethodAlive++; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1386
        if(nm->is_not_entrant()) { nmethodNotEntrant++; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1387
        if(nm->is_zombie()) { nmethodZombie++; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1388
        if(nm->is_unloaded()) { nmethodUnloaded++; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1389
        if(nm->method() != NULL && nm->is_native_method()) { nmethodNative++; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1391
        if(nm->method() != NULL && nm->is_java_method()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1392
          nmethodJava++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1393
          max_nm_size = MAX2(max_nm_size, nm->size());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1394
        }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1395
      } else if (cb->is_runtime_stub()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1396
        runtimeStubCount++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1397
      } else if (cb->is_deoptimization_stub()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1398
        deoptimizationStubCount++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1399
      } else if (cb->is_uncommon_trap_stub()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1400
        uncommonTrapStubCount++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1401
      } else if (cb->is_adapter_blob()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1402
        adapterCount++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1403
      } else if (cb->is_buffer_blob()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1404
        bufferBlobCount++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
  int bucketSize = 512;
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1410
  int bucketLimit = max_nm_size / bucketSize + 1;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 9630
diff changeset
  1411
  int *buckets = NEW_C_HEAP_ARRAY(int, bucketLimit, mtCode);
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1412
  memset(buckets, 0, sizeof(int) * bucketLimit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1414
  NMethodIterator iter;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1415
  while(iter.next()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1416
    nmethod* nm = iter.method();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1417
    if(nm->method() != NULL && nm->is_java_method()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1418
      buckets[nm->size() / bucketSize]++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  }
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1421
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
  tty->print_cr("Code Cache Entries (total of %d)",total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
  tty->print_cr("nmethods: %d",nmethodCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
  tty->print_cr("\talive: %d",nmethodAlive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
  tty->print_cr("\tnot_entrant: %d",nmethodNotEntrant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  tty->print_cr("\tzombie: %d",nmethodZombie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
  tty->print_cr("\tunloaded: %d",nmethodUnloaded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
  tty->print_cr("\tjava: %d",nmethodJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
  tty->print_cr("\tnative: %d",nmethodNative);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
  tty->print_cr("runtime_stubs: %d",runtimeStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
  tty->print_cr("adapters: %d",adapterCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
  tty->print_cr("buffer blobs: %d",bufferBlobCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  tty->print_cr("deoptimization_stubs: %d",deoptimizationStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
  tty->print_cr("uncommon_traps: %d",uncommonTrapStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
  tty->print_cr("\nnmethod size distribution (non-zombie java)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
  for(int i=0; i<bucketLimit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
    if(buckets[i] != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
      tty->print("%d - %d bytes",i*bucketSize,(i+1)*bucketSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
      tty->fill_to(40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
      tty->print_cr("%d",buckets[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27642
diff changeset
  1447
  FREE_C_HEAP_ARRAY(int, buckets);
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1448
  print_memory_overhead();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1451
#endif // !PRODUCT
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1452
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
void CodeCache::print() {
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1454
  print_summary(tty);
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1455
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1456
#ifndef PRODUCT
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1457
  if (!Verbose) return;
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1458
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
  CodeBlob_sizes live;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
  CodeBlob_sizes dead;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1462
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1463
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1464
      if (!cb->is_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1465
        dead.add(cb);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1466
      } else {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1467
        live.add(cb);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1468
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  tty->print_cr("CodeCache:");
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1473
  tty->print_cr("nmethod dependency checking time %fs", dependentCheckTime.seconds());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  if (!live.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
    live.print("live");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
  if (!dead.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
    dead.print("dead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1482
  if (WizardMode) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
     // print the oop_map usage
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
    int code_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
    int number_of_blobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
    int number_of_oop_maps = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
    int map_size = 0;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1488
    FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1489
      FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1490
        if (cb->is_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1491
          number_of_blobs++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1492
          code_size += cb->code_size();
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 30296
diff changeset
  1493
          ImmutableOopMapSet* set = cb->oop_maps();
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1494
          if (set != NULL) {
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 30296
diff changeset
  1495
            number_of_oop_maps += set->count();
30628
3c15b4a3bf4d 8079797: assert(index >= 0 && index < _count) failed: check
rbackman
parents: 30590
diff changeset
  1496
            map_size           += set->nr_of_bytes();
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1497
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
    tty->print_cr("OopMaps");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
    tty->print_cr("  #blobs    = %d", number_of_blobs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
    tty->print_cr("  code size = %d", code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
    tty->print_cr("  #oop_maps = %d", number_of_oop_maps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
    tty->print_cr("  map size  = %d", map_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1508
#endif // !PRODUCT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1511
void CodeCache::print_summary(outputStream* st, bool detailed) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1512
  FOR_ALL_HEAPS(heap_iterator) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1513
    CodeHeap* heap = (*heap_iterator);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1514
    size_t total = (heap->high_boundary() - heap->low_boundary());
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 31592
diff changeset
  1515
    if (_heaps->length() >= 1) {
26918
4e1761669426 8059137: MemoryPoolMXBeans for different code heaps should contain 'Code heap' in their names
thartmann
parents: 26809
diff changeset
  1516
      st->print("%s:", heap->name());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1517
    } else {
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
  1518
      st->print("CodeCache:");
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1519
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1520
    st->print_cr(" size=" SIZE_FORMAT "Kb used=" SIZE_FORMAT
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1521
                 "Kb max_used=" SIZE_FORMAT "Kb free=" SIZE_FORMAT "Kb",
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1522
                 total/K, (total - heap->unallocated_capacity())/K,
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1523
                 heap->max_allocated_capacity()/K, heap->unallocated_capacity()/K);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1524
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1525
    if (detailed) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1526
      st->print_cr(" bounds [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT "]",
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1527
                   p2i(heap->low_boundary()),
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1528
                   p2i(heap->high()),
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1529
                   p2i(heap->high_boundary()));
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1530
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1531
  }
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
  1532
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1533
  if (detailed) {
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1534
    st->print_cr(" total_blobs=" UINT32_FORMAT " nmethods=" UINT32_FORMAT
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1535
                       " adapters=" UINT32_FORMAT,
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1536
                       blob_count(), nmethod_count(), adapter_count());
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1537
    st->print_cr(" compilation: %s", CompileBroker::should_compile_new_jobs() ?
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1538
                 "enabled" : Arguments::mode() == Arguments::_int ?
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1539
                 "disabled (interpreter mode)" :
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1540
                 "disabled (not enough contiguous free space left)");
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1541
  }
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
  1542
}
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1543
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1544
void CodeCache::print_codelist(outputStream* st) {
35825
7c7652ee137b 8063112: Compiler diagnostic commands should have locking instead of safepoint
neliasso
parents: 35492
diff changeset
  1545
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1546
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1547
  NMethodIterator iter;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1548
  while(iter.next_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1549
    nmethod* nm = iter.method();
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1550
    ResourceMark rm;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1551
    char *method_name = nm->method()->name_and_sig_as_C_string();
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31041
diff changeset
  1552
    st->print_cr("%d %d %s [" INTPTR_FORMAT ", " INTPTR_FORMAT " - " INTPTR_FORMAT "]",
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1553
                 nm->compile_id(), nm->comp_level(), method_name, (intptr_t)nm->header_begin(),
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1554
                 (intptr_t)nm->code_begin(), (intptr_t)nm->code_end());
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1555
  }
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1556
}
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1557
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1558
void CodeCache::print_layout(outputStream* st) {
35825
7c7652ee137b 8063112: Compiler diagnostic commands should have locking instead of safepoint
neliasso
parents: 35492
diff changeset
  1559
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1560
  ResourceMark rm;
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1561
  print_summary(st, true);
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1562
}
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1563
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1564
void CodeCache::log_state(outputStream* st) {
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1565
  st->print(" total_blobs='" UINT32_FORMAT "' nmethods='" UINT32_FORMAT "'"
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
  1566
            " adapters='" UINT32_FORMAT "' free_code_cache='" SIZE_FORMAT "'",
34158
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
  1567
            blob_count(), nmethod_count(), adapter_count(),
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
  1568
            unallocated_capacity());
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1569
}
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1570
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1571
// Initialize iterator to given compiled method
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1572
void CompiledMethodIterator::initialize(CompiledMethod* cm) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1573
  _code_blob = (CodeBlob*)cm;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1574
  if (!SegmentedCodeCache) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1575
    // Iterate over all CodeBlobs
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1576
    _code_blob_type = CodeBlobType::All;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1577
  } else if (cm != NULL) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1578
    _code_blob_type = CodeCache::get_code_blob_type(cm);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1579
  } else {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1580
    // Only iterate over method code heaps, starting with non-profiled
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1581
    _code_blob_type = CodeBlobType::MethodNonProfiled;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1582
  }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1583
}
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1584
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1585
// Advance iterator to the next compiled method in the current code heap
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1586
bool CompiledMethodIterator::next_compiled_method() {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1587
  // Get first method CodeBlob
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1588
  if (_code_blob == NULL) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1589
    _code_blob = CodeCache::first_blob(_code_blob_type);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1590
    if (_code_blob == NULL) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1591
      return false;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1592
    } else if (_code_blob->is_nmethod()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1593
      return true;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1594
    }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1595
  }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1596
  // Search for next method CodeBlob
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1597
  _code_blob = CodeCache::next_blob(_code_blob);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1598
  while (_code_blob != NULL && !_code_blob->is_compiled()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1599
    _code_blob = CodeCache::next_blob(_code_blob);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1600
  }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1601
  return _code_blob != NULL;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1602
}