src/hotspot/share/code/codeCache.cpp
author stefank
Tue, 26 Nov 2019 10:47:46 +0100
changeset 59290 97d13893ec3c
parent 59252 623722a6aeb9
permissions -rw-r--r--
8234748: Clean up atomic and orderAccess includes Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53641
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
     2
 * Copyright (c) 1997, 2019, 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"
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
    26
#include "aot/aotLoader.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    27
#include "code/codeBlob.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    28
#include "code/codeCache.hpp"
49611
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
    29
#include "code/codeHeapState.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    30
#include "code/compiledIC.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    31
#include "code/dependencies.hpp"
52781
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
    32
#include "code/dependencyContext.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    33
#include "code/icBuffer.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    34
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    35
#include "code/pcDesc.hpp"
58545
725244418646 8165056: move JIT Compiler related files from runtime/ to compiler/ directory
xliu
parents: 58226
diff changeset
    36
#include "compiler/compilationPolicy.hpp"
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
    37
#include "compiler/compileBroker.hpp"
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49746
diff changeset
    38
#include "jfr/jfrEvents.hpp"
49611
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
    39
#include "logging/log.hpp"
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
    40
#include "logging/logStream.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    41
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    42
#include "memory/iterator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    43
#include "memory/resourceArea.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 54623
diff changeset
    44
#include "memory/universe.hpp"
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 48119
diff changeset
    45
#include "oops/method.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    46
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    47
#include "oops/oop.inline.hpp"
29084
1b732f2836ce 8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents: 28730
diff changeset
    48
#include "oops/verifyOopClosure.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30607
diff changeset
    49
#include "runtime/arguments.hpp"
59290
97d13893ec3c 8234748: Clean up atomic and orderAccess includes
stefank
parents: 59252
diff changeset
    50
#include "runtime/atomic.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30607
diff changeset
    51
#include "runtime/deoptimization.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    52
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    53
#include "runtime/icache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    54
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    55
#include "runtime/mutexLocker.hpp"
49594
898ef81cbc0e 8200106: Move NoSafepointVerifier out from gcLocker.hpp
stefank
parents: 49340
diff changeset
    56
#include "runtime/safepointVerifiers.hpp"
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
    57
#include "runtime/sweeper.hpp"
49746
b17256b5c047 8201427: Fix Minimal VM builds on Linux x64
stefank
parents: 49611
diff changeset
    58
#include "runtime/vmThread.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    59
#include "services/memoryService.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46620
diff changeset
    60
#include "utilities/align.hpp"
46589
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46527
diff changeset
    61
#include "utilities/vmError.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    62
#include "utilities/xmlstream.hpp"
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    63
#ifdef COMPILER1
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    64
#include "c1/c1_Compilation.hpp"
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    65
#include "c1/c1_Compiler.hpp"
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    66
#endif
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    67
#ifdef COMPILER2
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    68
#include "opto/c2compiler.hpp"
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    69
#include "opto/compile.hpp"
26805
73f3e9ac86f5 8058716: Add include missing in 8015774
goetz
parents: 26796
diff changeset
    70
#include "opto/node.hpp"
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
    71
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// Helper class for printing in CodeCache
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
class CodeBlob_sizes {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  int count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  int total_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  int header_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  int code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int stub_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  int relocation_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  int scopes_oop_size;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    83
  int scopes_metadata_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  int scopes_data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  int scopes_pcs_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  CodeBlob_sizes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    count            = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    total_size       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    header_size      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    code_size        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    stub_size        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    relocation_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    scopes_oop_size  = 0;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    96
    scopes_metadata_size  = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    scopes_data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    scopes_pcs_size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  int total()                                    { return total_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  bool is_empty()                                { return count == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  void print(const char* title) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   105
    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
   106
                  count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                  title,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
   108
                  (int)(total() / K),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                  header_size             * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                  relocation_size         * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                  code_size               * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
                  stub_size               * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
                  scopes_oop_size         * 100 / total_size,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   114
                  scopes_metadata_size    * 100 / total_size,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                  scopes_data_size        * 100 / total_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
                  scopes_pcs_size         * 100 / total_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  void add(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    total_size       += cb->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    header_size      += cb->header_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    relocation_size  += cb->relocation_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    if (cb->is_nmethod()) {
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   125
      nmethod* nm = cb->as_nmethod_or_null();
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   126
      code_size        += nm->insts_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      stub_size        += nm->stub_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 5533
diff changeset
   129
      scopes_oop_size  += nm->oops_size();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   130
      scopes_metadata_size  += nm->metadata_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      scopes_data_size += nm->scopes_data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      scopes_pcs_size  += nm->scopes_pcs_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    } else {
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   134
      code_size        += cb->code_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   139
// Iterate over all CodeHeaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   140
#define FOR_ALL_HEAPS(heap) for (GrowableArrayIterator<CodeHeap*> heap = _heaps->begin(); heap != _heaps->end(); ++heap)
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   141
#define FOR_ALL_NMETHOD_HEAPS(heap) for (GrowableArrayIterator<CodeHeap*> heap = _nmethod_heaps->begin(); heap != _nmethod_heaps->end(); ++heap)
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   142
#define FOR_ALL_ALLOCABLE_HEAPS(heap) for (GrowableArrayIterator<CodeHeap*> heap = _allocable_heaps->begin(); heap != _allocable_heaps->end(); ++heap)
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   143
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   144
// Iterate over all CodeBlobs (cb) on the given CodeHeap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   145
#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
   146
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   147
address CodeCache::_low_bound = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   148
address CodeCache::_high_bound = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
int CodeCache::_number_of_nmethods_with_dependencies = 0;
52405
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   150
ExceptionCache* volatile CodeCache::_exception_cache_purge_list = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   152
// Initialize arrays of CodeHeap subsets
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   153
GrowableArray<CodeHeap*>* CodeCache::_heaps = new(ResourceObj::C_HEAP, mtCode) GrowableArray<CodeHeap*> (CodeBlobType::All, true);
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   154
GrowableArray<CodeHeap*>* CodeCache::_compiled_heaps = new(ResourceObj::C_HEAP, mtCode) GrowableArray<CodeHeap*> (CodeBlobType::All, true);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   155
GrowableArray<CodeHeap*>* CodeCache::_nmethod_heaps = new(ResourceObj::C_HEAP, mtCode) GrowableArray<CodeHeap*> (CodeBlobType::All, true);
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   156
GrowableArray<CodeHeap*>* CodeCache::_allocable_heaps = new(ResourceObj::C_HEAP, mtCode) GrowableArray<CodeHeap*> (CodeBlobType::All, true);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   157
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   158
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
   159
  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
   160
  // Prepare error message
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   161
  const char* error = "Invalid code heap sizes";
43407
f6dc40ed6ce9 8171924: Use SIZE_FORMAT to print size_t values.
goetz
parents: 42650
diff changeset
   162
  err_msg message("NonNMethodCodeHeapSize (" SIZE_FORMAT "K) + ProfiledCodeHeapSize (" SIZE_FORMAT "K)"
f6dc40ed6ce9 8171924: Use SIZE_FORMAT to print size_t values.
goetz
parents: 42650
diff changeset
   163
                  " + NonProfiledCodeHeapSize (" SIZE_FORMAT "K) = " SIZE_FORMAT "K",
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   164
          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
   165
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   166
  if (total_size > cache_size) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   167
    // Some code heap sizes were explicitly set: total_size must be <= cache_size
43407
f6dc40ed6ce9 8171924: Use SIZE_FORMAT to print size_t values.
goetz
parents: 42650
diff changeset
   168
    message.append(" is greater than ReservedCodeCacheSize (" SIZE_FORMAT "K).", cache_size/K);
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   169
    vm_exit_during_initialization(error, message);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   170
  } 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
   171
    // All code heap sizes were explicitly set: total_size must equal cache_size
43407
f6dc40ed6ce9 8171924: Use SIZE_FORMAT to print size_t values.
goetz
parents: 42650
diff changeset
   172
    message.append(" is not equal to ReservedCodeCacheSize (" SIZE_FORMAT "K).", cache_size/K);
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   173
    vm_exit_during_initialization(error, message);
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   174
  }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   175
}
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
void CodeCache::initialize_heaps() {
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   178
  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
   179
  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
   180
  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
   181
  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
   182
  size_t cache_size         = ReservedCodeCacheSize;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   183
  size_t non_nmethod_size   = NonNMethodCodeHeapSize;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   184
  size_t profiled_size      = ProfiledCodeHeapSize;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   185
  size_t non_profiled_size  = NonProfiledCodeHeapSize;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   186
  // 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
   187
  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
   188
                   (profiled_set     ? profiled_size     : min_size),
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   189
                   (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
   190
                   cache_size,
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   191
                   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
   192
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   193
  // Determine size of compiler buffers
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   194
  size_t code_buffers_size = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   195
#ifdef COMPILER1
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   196
  // C1 temporary code buffers (see Compiler::init_buffer_blob())
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   197
  const int c1_count = CompilationPolicy::policy()->compiler_count(CompLevel_simple);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   198
  code_buffers_size += c1_count * Compiler::code_buffer_size();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   199
#endif
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   200
#ifdef COMPILER2
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   201
  // C2 scratch buffers (see Compile::init_scratch_buffer_blob())
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   202
  const int c2_count = CompilationPolicy::policy()->compiler_count(CompLevel_full_optimization);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   203
  // 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
   204
  code_buffers_size += c2_count * C2Compiler::initial_code_buffer_size();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   205
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   207
  // 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
   208
  if (!non_nmethod_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   209
    non_nmethod_size += code_buffers_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   210
  }
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   211
  // 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
   212
  if (!non_nmethod_set && !profiled_set && !non_profiled_set) {
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   213
    // 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
   214
    if (cache_size > non_nmethod_size) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   215
      // 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
   216
      // 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
   217
      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
   218
      profiled_size = remaining_size / 2;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   219
      non_profiled_size = remaining_size - profiled_size;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   220
    } else {
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   221
      // 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
   222
      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
   223
      profiled_size = min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   224
      non_profiled_size = min_size;
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
  } 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
   227
    // 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
   228
    // 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
   229
    // 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
   230
    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
   231
    if (non_profiled_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   232
      if (!profiled_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   233
        // Adapt size of profiled code heap
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   234
        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
   235
          // 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
   236
          diff_size += profiled_size - min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   237
          profiled_size = min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   238
        } else {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   239
          profiled_size += diff_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   240
          diff_size = 0;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   241
        }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   242
      }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   243
    } else if (profiled_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   244
      // 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
   245
      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
   246
        // 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
   247
        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
   248
        non_profiled_size = min_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   249
      } else {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   250
        non_profiled_size += diff_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   251
        diff_size = 0;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   252
      }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   253
    } else if (non_nmethod_set) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   254
      // 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
   255
      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
   256
      profiled_size = diff_size / 2;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   257
      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
   258
      diff_size = 0;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   259
    }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   260
    if (diff_size != 0) {
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   261
      // 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
   262
      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
   263
      non_nmethod_size += diff_size;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   264
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   265
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   267
  // We do not need the profiled CodeHeap, use all space for the non-profiled CodeHeap
48118
7f40c1cdde28 8179026: Remove explicit code cache options processing
thartmann
parents: 47688
diff changeset
   268
  if (!heap_available(CodeBlobType::MethodProfiled)) {
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   269
    non_profiled_size += profiled_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   270
    profiled_size = 0;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   271
  }
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   272
  // We do not need the non-profiled CodeHeap, use all space for the non-nmethod CodeHeap
48118
7f40c1cdde28 8179026: Remove explicit code cache options processing
thartmann
parents: 47688
diff changeset
   273
  if (!heap_available(CodeBlobType::MethodNonProfiled)) {
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   274
    non_nmethod_size += non_profiled_size;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   275
    non_profiled_size = 0;
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   276
  }
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   277
  // 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
   278
  uint min_code_cache_size = CodeCacheMinimumUseSpace DEBUG_ONLY(* 3);
52325
0451e0a2f1f5 8177899: Tests fail due to code cache exhaustion on machines with many cores
thartmann
parents: 51078
diff changeset
   279
  if (non_nmethod_size < min_code_cache_size) {
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   280
    vm_exit_during_initialization(err_msg(
43407
f6dc40ed6ce9 8171924: Use SIZE_FORMAT to print size_t values.
goetz
parents: 42650
diff changeset
   281
        "Not enough space in non-nmethod code heap to run VM: " SIZE_FORMAT "K < " SIZE_FORMAT "K",
52325
0451e0a2f1f5 8177899: Tests fail due to code cache exhaustion on machines with many cores
thartmann
parents: 51078
diff changeset
   282
        non_nmethod_size/K, min_code_cache_size/K));
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   283
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   284
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   285
  // Verify sizes and update flag values
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   286
  assert(non_profiled_size + profiled_size + non_nmethod_size == cache_size, "Invalid code heap sizes");
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54901
diff changeset
   287
  FLAG_SET_ERGO(NonNMethodCodeHeapSize, non_nmethod_size);
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54901
diff changeset
   288
  FLAG_SET_ERGO(ProfiledCodeHeapSize, profiled_size);
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54901
diff changeset
   289
  FLAG_SET_ERGO(NonProfiledCodeHeapSize, non_profiled_size);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   290
48119
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   291
  // If large page support is enabled, align code heaps according to large
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   292
  // page size to make sure that code cache is covered by large pages.
52870
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 52815
diff changeset
   293
  const size_t alignment = MAX2(page_size(false, 8), (size_t) os::vm_allocation_granularity());
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46589
diff changeset
   294
  non_nmethod_size = align_up(non_nmethod_size, alignment);
48119
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   295
  profiled_size    = align_down(profiled_size, alignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   297
  // 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
   298
  // parts for the individual heaps. The memory layout looks like this:
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   299
  // ---------- high -----------
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   300
  //    Non-profiled nmethods
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   301
  //      Profiled nmethods
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   302
  //         Non-nmethods
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   303
  // ---------- low ------------
34182
82d1b1696016 8061436: Processing of options related to segmented code cache should be enhanced
thartmann
parents: 34174
diff changeset
   304
  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
   305
  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
   306
  ReservedSpace rest                = rs.last_part(non_nmethod_size);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   307
  ReservedSpace profiled_space      = rest.first_part(profiled_size);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   308
  ReservedSpace non_profiled_space  = rest.last_part(profiled_size);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   309
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   310
  // Non-nmethods (stubs, adapters, ...)
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   311
  add_heap(non_method_space, "CodeHeap 'non-nmethods'", CodeBlobType::NonNMethod);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   312
  // 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
   313
  add_heap(profiled_space, "CodeHeap 'profiled nmethods'", CodeBlobType::MethodProfiled);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   314
  // 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
   315
  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
   316
}
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   317
52870
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 52815
diff changeset
   318
size_t CodeCache::page_size(bool aligned, size_t min_pages) {
48119
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   319
  if (os::can_execute_large_page_memory()) {
52870
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 52815
diff changeset
   320
    if (InitialCodeCacheSize < ReservedCodeCacheSize) {
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 52815
diff changeset
   321
      // Make sure that the page size allows for an incremental commit of the reserved space
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 52815
diff changeset
   322
      min_pages = MAX2(min_pages, (size_t)8);
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 52815
diff changeset
   323
    }
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 52815
diff changeset
   324
    return aligned ? os::page_size_for_region_aligned(ReservedCodeCacheSize, min_pages) :
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 52815
diff changeset
   325
                     os::page_size_for_region_unaligned(ReservedCodeCacheSize, min_pages);
48119
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   326
  } else {
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   327
    return os::vm_page_size();
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   328
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   331
ReservedCodeSpace CodeCache::reserve_heap_memory(size_t size) {
48119
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   332
  // Align and reserve space for code cache
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   333
  const size_t rs_ps = page_size();
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   334
  const size_t rs_align = MAX2(rs_ps, (size_t) os::vm_allocation_granularity());
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   335
  const size_t rs_size = align_up(size, rs_align);
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   336
  ReservedCodeSpace rs(rs_size, rs_align, rs_ps > (size_t) os::vm_page_size());
35203
3e70c7dc0772 8144949: TestOptionsWithRanges -XX:NUMAInterleaveGranularity=2147483648 crashes VM
sangheki
parents: 34182
diff changeset
   337
  if (!rs.is_reserved()) {
48118
7f40c1cdde28 8179026: Remove explicit code cache options processing
thartmann
parents: 47688
diff changeset
   338
    vm_exit_during_initialization(err_msg("Could not reserve enough space for code cache (" SIZE_FORMAT "K)",
48119
c1b46afab3ba 8087339: The code heap might use different alignment for committed size and reserved size
thartmann
parents: 48118
diff changeset
   339
                                          rs_size/K));
35203
3e70c7dc0772 8144949: TestOptionsWithRanges -XX:NUMAInterleaveGranularity=2147483648 crashes VM
sangheki
parents: 34182
diff changeset
   340
  }
3e70c7dc0772 8144949: TestOptionsWithRanges -XX:NUMAInterleaveGranularity=2147483648 crashes VM
sangheki
parents: 34182
diff changeset
   341
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   342
  // Initialize bounds
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   343
  _low_bound = (address)rs.base();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   344
  _high_bound = _low_bound + rs.size();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   345
  return rs;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   346
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   347
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   348
// Heaps available for allocation
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   349
bool CodeCache::heap_available(int code_blob_type) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   350
  if (!SegmentedCodeCache) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   351
    // No segmentation: use a single code heap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   352
    return (code_blob_type == CodeBlobType::All);
38055
9dddf9056918 8086068: VM crashes with "-Xint -XX:+UseCompiler" options
thartmann
parents: 37289
diff changeset
   353
  } else if (Arguments::is_interpreter_only()) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   354
    // 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
   355
    return (code_blob_type == CodeBlobType::NonNMethod);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   356
  } else if (TieredCompilation && (TieredStopAtLevel > CompLevel_simple)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   357
    // Tiered compilation: use all code heaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   358
    return (code_blob_type < CodeBlobType::All);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   359
  } else {
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   360
    // 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
   361
    return (code_blob_type == CodeBlobType::NonNMethod) ||
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   362
           (code_blob_type == CodeBlobType::MethodNonProfiled);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   363
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
27410
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   366
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
   367
  switch(code_blob_type) {
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   368
  case CodeBlobType::NonNMethod:
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   369
    return "NonNMethodCodeHeapSize";
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   370
    break;
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   371
  case CodeBlobType::MethodNonProfiled:
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   372
    return "NonProfiledCodeHeapSize";
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   373
    break;
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   374
  case CodeBlobType::MethodProfiled:
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   375
    return "ProfiledCodeHeapSize";
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   376
    break;
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   377
  }
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   378
  ShouldNotReachHere();
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   379
  return NULL;
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   380
}
dd80df7cfa2b 8060196: 'CodeHeap is full' warning suggests to increase wrong code heap size
thartmann
parents: 27015
diff changeset
   381
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   382
int CodeCache::code_heap_compare(CodeHeap* const &lhs, CodeHeap* const &rhs) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   383
  if (lhs->code_blob_type() == rhs->code_blob_type()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   384
    return (lhs > rhs) ? 1 : ((lhs < rhs) ? -1 : 0);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   385
  } else {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   386
    return lhs->code_blob_type() - rhs->code_blob_type();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   387
  }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   388
}
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   389
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   390
void CodeCache::add_heap(CodeHeap* heap) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   391
  assert(!Universe::is_fully_initialized(), "late heap addition?");
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   392
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   393
  _heaps->insert_sorted<code_heap_compare>(heap);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   394
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   395
  int type = heap->code_blob_type();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   396
  if (code_blob_type_accepts_compiled(type)) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   397
    _compiled_heaps->insert_sorted<code_heap_compare>(heap);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   398
  }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   399
  if (code_blob_type_accepts_nmethod(type)) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   400
    _nmethod_heaps->insert_sorted<code_heap_compare>(heap);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   401
  }
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   402
  if (code_blob_type_accepts_allocable(type)) {
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   403
    _allocable_heaps->insert_sorted<code_heap_compare>(heap);
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   404
  }
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   405
}
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   406
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   407
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
   408
  // Check if heap is needed
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   409
  if (!heap_available(code_blob_type)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   410
    return;
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   411
  }
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   412
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   413
  // Create CodeHeap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   414
  CodeHeap* heap = new CodeHeap(name, code_blob_type);
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   415
  add_heap(heap);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   416
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   417
  // Reserve Space
50676
8c0a5b51559b 8203030: Zero s390 31 bit size_t type conflicts in shared code
chrisphi
parents: 50515
diff changeset
   418
  size_t size_initial = MIN2((size_t)InitialCodeCacheSize, rs.size());
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 46619
diff changeset
   419
  size_initial = align_up(size_initial, os::vm_page_size());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   420
  if (!heap->reserve(rs, size_initial, CodeCacheSegmentSize)) {
48118
7f40c1cdde28 8179026: Remove explicit code cache options processing
thartmann
parents: 47688
diff changeset
   421
    vm_exit_during_initialization(err_msg("Could not reserve enough space in %s (" SIZE_FORMAT "K)",
7f40c1cdde28 8179026: Remove explicit code cache options processing
thartmann
parents: 47688
diff changeset
   422
                                          heap->name(), size_initial/K));
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   423
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   424
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   425
  // Register the CodeHeap
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   426
  MemoryService::add_code_heap_memory_pool(heap, name);
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
46647
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   429
CodeHeap* CodeCache::get_code_heap_containing(void* start) {
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   430
  FOR_ALL_HEAPS(heap) {
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   431
    if ((*heap)->contains(start)) {
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   432
      return *heap;
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   433
    }
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   434
  }
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   435
  return NULL;
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   436
}
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   437
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
   438
CodeHeap* CodeCache::get_code_heap(const CodeBlob* cb) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   439
  assert(cb != NULL, "CodeBlob is null");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   440
  FOR_ALL_HEAPS(heap) {
43945
e7f2e49d2274 8173151: Code heap corruption due to incorrect inclusion test
zmajo
parents: 43675
diff changeset
   441
    if ((*heap)->contains_blob(cb)) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   442
      return *heap;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   443
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   444
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   445
  ShouldNotReachHere();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   446
  return NULL;
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   447
}
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   448
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   449
CodeHeap* CodeCache::get_code_heap(int code_blob_type) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   450
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   451
    if ((*heap)->accepts(code_blob_type)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   452
      return *heap;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   453
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   454
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   455
  return NULL;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   456
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   457
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   458
CodeBlob* CodeCache::first_blob(CodeHeap* heap) {
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   459
  assert_locked_or_safepoint(CodeCache_lock);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   460
  assert(heap != NULL, "heap is null");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   461
  return (CodeBlob*)heap->first();
5533
e8d9ff82ec62 6950075: nmethod sweeper should operate concurrently
never
parents: 5247
diff changeset
   462
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   464
CodeBlob* CodeCache::first_blob(int code_blob_type) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   465
  if (heap_available(code_blob_type)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   466
    return first_blob(get_code_heap(code_blob_type));
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   467
  } else {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   468
    return NULL;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   469
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   470
}
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
   471
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   472
CodeBlob* CodeCache::next_blob(CodeHeap* heap, CodeBlob* cb) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   473
  assert_locked_or_safepoint(CodeCache_lock);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   474
  assert(heap != NULL, "heap is null");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   475
  return (CodeBlob*)heap->next(cb);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   476
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   477
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   478
/**
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   479
 * 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
   480
 * 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
   481
 * 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
   482
 * 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
   483
 * instantiating.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   484
 */
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   485
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
   486
  // Possibly wakes up the sweeper thread.
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   487
  NMethodSweeper::notify(code_blob_type);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  assert_locked_or_safepoint(CodeCache_lock);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32466
diff changeset
   489
  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
   490
  if (size <= 0) {
252c634b2e1c 8029343: CodeCache::allocate increments '_number_of_blobs' even if allocation fails.
anoll
parents: 23214
diff changeset
   491
    return NULL;
252c634b2e1c 8029343: CodeCache::allocate increments '_number_of_blobs' even if allocation fails.
anoll
parents: 23214
diff changeset
   492
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  CodeBlob* cb = NULL;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   494
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   495
  // Get CodeHeap for the given CodeBlobType
26942
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   496
  CodeHeap* heap = get_code_heap(code_blob_type);
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   497
  assert(heap != NULL, "heap is null");
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   498
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  while (true) {
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   500
    cb = (CodeBlob*)heap->allocate(size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    if (cb != NULL) break;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   502
    if (!heap->expand_by(CodeCacheExpansionSize)) {
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   503
      // Save original type for error reporting
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   504
      if (orig_code_blob_type == CodeBlobType::All) {
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   505
        orig_code_blob_type = code_blob_type;
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   506
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
      // Expansion failed
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   508
      if (SegmentedCodeCache) {
29338
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   509
        // 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
   510
        // NonNMethod -> MethodNonProfiled -> MethodProfiled (-> MethodNonProfiled)
29338
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   511
        // 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
   512
        // 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
   513
        int type = code_blob_type;
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   514
        switch (type) {
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   515
        case CodeBlobType::NonNMethod:
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   516
          type = CodeBlobType::MethodNonProfiled;
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   517
          break;
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   518
        case CodeBlobType::MethodNonProfiled:
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   519
          type = CodeBlobType::MethodProfiled;
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   520
          break;
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   521
        case CodeBlobType::MethodProfiled:
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   522
          // 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
   523
          if (type == orig_code_blob_type) {
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   524
            type = CodeBlobType::MethodNonProfiled;
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   525
          }
29338
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   526
          break;
92297a8bd48e 8072774: bigapps/Weblogic+medrec/nowarnings fails due to CodeHeap 'profiled nmethods' exhaustion
thartmann
parents: 28730
diff changeset
   527
        }
40863
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   528
        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
   529
          if (PrintCodeCacheExtension) {
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   530
            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
   531
                          heap->name(), get_code_heap(type)->name());
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   532
          }
f5fec6a2dc9e 8064892: Non-methods code cache overflow is not handled correctly
thartmann
parents: 38133
diff changeset
   533
          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
   534
        }
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   535
      }
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54461
diff changeset
   536
      MutexUnlocker 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
   537
      CompileBroker::handle_full_code_cache(orig_code_blob_type);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    if (PrintCodeCacheExtension) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
      ResourceMark rm;
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   542
      if (_nmethod_heaps->length() >= 1) {
26918
4e1761669426 8059137: MemoryPoolMXBeans for different code heaps should contain 'Code heap' in their names
thartmann
parents: 26809
diff changeset
   543
        tty->print("%s", heap->name());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   544
      } else {
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
   545
        tty->print("CodeCache");
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   546
      }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   547
      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
   548
                    (intptr_t)heap->low_boundary(), (intptr_t)heap->high(),
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   549
                    (address)heap->high() - (address)heap->low_boundary());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  }
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   552
  print_trace("allocation", cb, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
void CodeCache::free(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  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
   558
  CodeHeap* heap = get_code_heap(cb);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   559
  print_trace("free", cb);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   560
  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
   561
    heap->set_nmethod_count(heap->nmethod_count() - 1);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   562
    if (((nmethod *)cb)->has_dependencies()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   563
      _number_of_nmethods_with_dependencies--;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   564
    }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   565
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   566
  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
   567
    heap->set_adapter_count(heap->adapter_count() - 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   570
  // Get heap for given CodeBlob and deallocate
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   571
  get_code_heap(cb)->deallocate(cb);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
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
   573
  assert(heap->blob_count() >= 0, "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
47688
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   576
void CodeCache::free_unused_tail(CodeBlob* cb, size_t used) {
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   577
  assert_locked_or_safepoint(CodeCache_lock);
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   578
  guarantee(cb->is_buffer_blob() && strncmp("Interpreter", cb->name(), 11) == 0, "Only possible for interpreter!");
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   579
  print_trace("free_unused_tail", cb);
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   580
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   581
  // We also have to account for the extra space (i.e. header) used by the CodeBlob
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   582
  // which provides the memory (see BufferBlob::create() in codeBlob.cpp).
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   583
  used += CodeBlob::align_code_offset(cb->header_size());
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   584
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   585
  // Get heap for given CodeBlob and deallocate its unused tail
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   586
  get_code_heap(cb)->deallocate_tail(cb, used);
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   587
  // Adjust the sizes of the CodeBlob
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   588
  cb->adjust_size(used);
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   589
}
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47624
diff changeset
   590
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
void CodeCache::commit(CodeBlob* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  // this is called by nmethod::nmethod, which must already own CodeCache_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  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
   594
  CodeHeap* heap = get_code_heap(cb);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   595
  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
   596
    heap->set_nmethod_count(heap->nmethod_count() + 1);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   597
    if (((nmethod *)cb)->has_dependencies()) {
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   598
      _number_of_nmethods_with_dependencies++;
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   599
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  }
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   601
  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
   602
    heap->set_adapter_count(heap->adapter_count() + 1);
5924
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   603
  }
dc9d04930c82 6965184: possible races in make_not_entrant_or_zombie
never
parents: 5702
diff changeset
   604
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  // flush the hardware I-cache
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5924
diff changeset
   606
  ICache::invalidate_range(cb->content_begin(), cb->content_size());
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
bool CodeCache::contains(void *p) {
42062
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 41056
diff changeset
   610
  // S390 uses contains() in current_frame(), which is used before
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 41056
diff changeset
   611
  // code cache initialization if NativeMemoryTracking=detail is set.
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 41056
diff changeset
   612
  S390_ONLY(if (_heaps == NULL) return false;)
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 41056
diff changeset
   613
  // 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
   614
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   615
    if ((*heap)->contains(p)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   616
      return true;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   617
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   618
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   619
  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   622
bool CodeCache::contains(nmethod *nm) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   623
  return contains((void *)nm);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   624
}
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   625
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   626
// 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
   627
// 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
   628
// 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
   629
CodeBlob* CodeCache::find_blob(void* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  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
   631
  // We could potentially look up non_entrant methods
46589
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46527
diff changeset
   632
  guarantee(result == NULL || !result->is_zombie() || result->is_locked_by_vm() || VMError::is_error_reported(), "unsafe access to zombie method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   636
// 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
   637
// what you are doing)
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   638
CodeBlob* CodeCache::find_blob_unsafe(void* start) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   639
  // NMT can walk the stack before code cache is created
46647
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   640
  if (_heaps != NULL) {
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   641
    CodeHeap* heap = get_code_heap_containing(start);
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   642
    if (heap != NULL) {
634dc786bf96 8183573: Refactor CodeHeap and AOTCodeHeap to devirtualize hot methods
redestad
parents: 46637
diff changeset
   643
      return heap->find_blob_unsafe(start);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   644
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   645
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   646
  return NULL;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   647
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   648
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
nmethod* CodeCache::find_nmethod(void* start) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   650
  CodeBlob* cb = find_blob(start);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   651
  assert(cb->is_nmethod(), "did not find an nmethod");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  return (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
void CodeCache::blobs_do(void f(CodeBlob* nm)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  assert_locked_or_safepoint(CodeCache_lock);
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   657
  FOR_ALL_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   658
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   659
      f(cb);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   660
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
void CodeCache::nmethods_do(void f(nmethod* nm)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  assert_locked_or_safepoint(CodeCache_lock);
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   666
  NMethodIterator iter(NMethodIterator::all_blobs);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   667
  while(iter.next()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   668
    f(iter.method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
54150
5529640c5f67 8220512: Deoptimize redefinition functions that have dirty ICs
coleenp
parents: 54122
diff changeset
   672
void CodeCache::metadata_do(MetadataClosure* f) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   673
  assert_locked_or_safepoint(CodeCache_lock);
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   674
  NMethodIterator iter(NMethodIterator::only_alive_and_not_unloading);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   675
  while(iter.next()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
   676
    iter.method()->metadata_do(f);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   677
  }
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   678
  AOTLoader::metadata_do(f);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   679
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
int CodeCache::alignment_unit() {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   682
  return (int)_heaps->first()->alignment_unit();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
int CodeCache::alignment_offset() {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   686
  return (int)_heaps->first()->alignment_offset();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   689
// 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
   690
void CodeCache::do_unloading(BoolObjectClosure* is_alive, bool unloading_occurred) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  assert_locked_or_safepoint(CodeCache_lock);
52385
5c679ec60888 8209189: Make CompiledMethod::do_unloading more concurrent
eosterlund
parents: 52325
diff changeset
   692
  UnloadingScope scope(is_alive);
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   693
  CompiledMethodIterator iter(CompiledMethodIterator::only_alive);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   694
  while(iter.next()) {
52385
5c679ec60888 8209189: Make CompiledMethod::do_unloading more concurrent
eosterlund
parents: 52325
diff changeset
   695
    iter.method()->do_unloading(unloading_occurred);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   699
void CodeCache::blobs_do(CodeBlobClosure* f) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  assert_locked_or_safepoint(CodeCache_lock);
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   701
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   702
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   703
      if (cb->is_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   704
        f->do_code_blob(cb);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   705
#ifdef ASSERT
47624
b055cb5170f5 8185141: Generalize scavengeable nmethod root handling
eosterlund
parents: 47216
diff changeset
   706
        if (cb->is_nmethod()) {
b055cb5170f5 8185141: Generalize scavengeable nmethod root handling
eosterlund
parents: 47216
diff changeset
   707
          Universe::heap()->verify_nmethod((nmethod*)cb);
b055cb5170f5 8185141: Generalize scavengeable nmethod root handling
eosterlund
parents: 47216
diff changeset
   708
        }
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   709
#endif //ASSERT
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   710
      }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   711
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   715
void CodeCache::verify_clean_inline_caches() {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   716
#ifdef ASSERT
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   717
  NMethodIterator iter(NMethodIterator::only_alive_and_not_unloading);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   718
  while(iter.next()) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   719
    nmethod* nm = iter.method();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   720
    assert(!nm->is_unloaded(), "Tautology");
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   721
    nm->verify_clean_inline_caches();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   722
    nm->verify();
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   723
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   724
#endif
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   725
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   726
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   727
void CodeCache::verify_icholder_relocations() {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   728
#ifdef ASSERT
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   729
  // make sure that we aren't leaking icholders
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   730
  int count = 0;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   731
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   732
    FOR_ALL_BLOBS(cb, *heap) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   733
      CompiledMethod *nm = cb->as_compiled_method_or_null();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   734
      if (nm != NULL) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   735
        count += nm->verify_icholder_relocations();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   736
      }
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   737
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   738
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   739
  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
   740
         CompiledICHolder::live_count(), "must agree");
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   741
#endif
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   742
}
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3908
diff changeset
   743
52405
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   744
// Defer freeing of concurrently cleaned ExceptionCache entries until
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   745
// after a global handshake operation.
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   746
void CodeCache::release_exception_cache(ExceptionCache* entry) {
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   747
  if (SafepointSynchronize::is_at_safepoint()) {
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   748
    delete entry;
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   749
  } else {
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   750
    for (;;) {
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   751
      ExceptionCache* purge_list_head = Atomic::load(&_exception_cache_purge_list);
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   752
      entry->set_purge_list_next(purge_list_head);
59252
623722a6aeb9 8234740: Harmonize parameter order in Atomic - cmpxchg
stefank
parents: 58545
diff changeset
   753
      if (Atomic::cmpxchg(&_exception_cache_purge_list, purge_list_head, entry) == purge_list_head) {
52405
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   754
        break;
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   755
      }
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   756
    }
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   757
  }
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   758
}
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   759
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   760
// Delete exception caches that have been concurrently unlinked,
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   761
// followed by a global handshake operation.
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   762
void CodeCache::purge_exception_caches() {
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   763
  ExceptionCache* curr = _exception_cache_purge_list;
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   764
  while (curr != NULL) {
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   765
    ExceptionCache* next = curr->purge_list_next();
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   766
    delete curr;
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   767
    curr = next;
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   768
  }
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   769
  _exception_cache_purge_list = NULL;
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   770
}
c0c6cdea32f1 8212989: Allow CompiledMethod ExceptionCache have unloaded klasses
eosterlund
parents: 52385
diff changeset
   771
52385
5c679ec60888 8209189: Make CompiledMethod::do_unloading more concurrent
eosterlund
parents: 52325
diff changeset
   772
uint8_t CodeCache::_unloading_cycle = 1;
50416
ef980b9ac191 8203837: Split nmethod unloading from inline cache cleaning
coleenp
parents: 50113
diff changeset
   773
52385
5c679ec60888 8209189: Make CompiledMethod::do_unloading more concurrent
eosterlund
parents: 52325
diff changeset
   774
void CodeCache::increment_unloading_cycle() {
55739
ba2bd51ce67e 8227755: Need more than 2 distinct CodeCache unloading cycles
zgu
parents: 55479
diff changeset
   775
  // 2-bit value (see IsUnloadingState in nmethod.cpp for details)
ba2bd51ce67e 8227755: Need more than 2 distinct CodeCache unloading cycles
zgu
parents: 55479
diff changeset
   776
  // 0 is reserved for new methods.
ba2bd51ce67e 8227755: Need more than 2 distinct CodeCache unloading cycles
zgu
parents: 55479
diff changeset
   777
  _unloading_cycle = (_unloading_cycle + 1) % 4;
ba2bd51ce67e 8227755: Need more than 2 distinct CodeCache unloading cycles
zgu
parents: 55479
diff changeset
   778
  if (_unloading_cycle == 0) {
52385
5c679ec60888 8209189: Make CompiledMethod::do_unloading more concurrent
eosterlund
parents: 52325
diff changeset
   779
    _unloading_cycle = 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
52781
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   783
CodeCache::UnloadingScope::UnloadingScope(BoolObjectClosure* is_alive)
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   784
  : _is_unloading_behaviour(is_alive)
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   785
{
54461
ba0d64652b86 8222086: CodeCache::UnloadingScope needs to preserve and restore previous IsUnloadingBehavior
zgu
parents: 54355
diff changeset
   786
  _saved_behaviour = IsUnloadingBehaviour::current();
52781
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   787
  IsUnloadingBehaviour::set_current(&_is_unloading_behaviour);
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   788
  increment_unloading_cycle();
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   789
  DependencyContext::cleaning_start();
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   790
}
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   791
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   792
CodeCache::UnloadingScope::~UnloadingScope() {
54461
ba0d64652b86 8222086: CodeCache::UnloadingScope needs to preserve and restore previous IsUnloadingBehavior
zgu
parents: 54355
diff changeset
   793
  IsUnloadingBehaviour::set_current(_saved_behaviour);
52781
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   794
  DependencyContext::cleaning_end();
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   795
}
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52661
diff changeset
   796
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   797
void CodeCache::verify_oops() {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54461
diff changeset
   798
  MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   799
  VerifyOopClosure voc;
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   800
  NMethodIterator iter(NMethodIterator::only_alive_and_not_unloading);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   801
  while(iter.next()) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   802
    nmethod* nm = iter.method();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   803
    nm->oops_do(&voc);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   804
    nm->verify_oop_relocations();
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   805
  }
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   806
}
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 8672
diff changeset
   807
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
   808
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
   809
  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
   810
  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
   811
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   812
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   813
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
   814
  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
   815
  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
   816
    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
   817
  }
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   818
  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
   819
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   820
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   821
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
   822
  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
   823
  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
   824
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   825
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   826
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
   827
  int count = 0;
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   828
  FOR_ALL_NMETHOD_HEAPS(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
   829
    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
   830
  }
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   831
  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
   832
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   833
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   834
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
   835
  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
   836
  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
   837
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   838
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   839
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
   840
  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
   841
  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
   842
    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
   843
  }
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   844
  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
   845
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   846
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   847
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
   848
  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
   849
  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
   850
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   851
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   852
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
   853
  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
   854
  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
   855
}
1f8d643b02d5 8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents: 33105
diff changeset
   856
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   857
size_t CodeCache::capacity() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   858
  size_t cap = 0;
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   859
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   860
    cap += (*heap)->capacity();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   861
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   862
  return cap;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
26942
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   865
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
   866
  CodeHeap* heap = get_code_heap(code_blob_type);
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   867
  return (heap != NULL) ? heap->unallocated_capacity() : 0;
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   868
}
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
   869
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   870
size_t CodeCache::unallocated_capacity() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   871
  size_t unallocated_cap = 0;
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   872
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   873
    unallocated_cap += (*heap)->unallocated_capacity();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   874
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   875
  return unallocated_cap;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   876
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   878
size_t CodeCache::max_capacity() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   879
  size_t max_cap = 0;
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   880
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   881
    max_cap += (*heap)->max_capacity();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   882
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   883
  return max_cap;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
17617
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   886
/**
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   887
 * 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
   888
 * 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
   889
 */
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   890
double CodeCache::reverse_free_ratio(int code_blob_type) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   891
  CodeHeap* heap = get_code_heap(code_blob_type);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   892
  if (heap == NULL) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   893
    return 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   894
  }
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   895
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   896
  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
   897
  double max_capacity = (double)heap->max_capacity();
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   898
  double result = max_capacity / unallocated_capacity;
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 27410
diff changeset
   899
  assert (max_capacity >= unallocated_capacity, "Must be");
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32466
diff changeset
   900
  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
   901
  return result;
17617
4e330bce1812 8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents: 17132
diff changeset
   902
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   904
size_t CodeCache::bytes_allocated_in_freelists() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   905
  size_t allocated_bytes = 0;
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   906
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   907
    allocated_bytes += (*heap)->allocated_in_freelist();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   908
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   909
  return allocated_bytes;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   910
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   911
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   912
int CodeCache::allocated_segments() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   913
  int number_of_segments = 0;
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   914
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   915
    number_of_segments += (*heap)->allocated_segments();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   916
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   917
  return number_of_segments;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   918
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   919
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   920
size_t CodeCache::freelists_length() {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   921
  size_t length = 0;
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
   922
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   923
    length += (*heap)->freelist_length();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   924
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   925
  return length;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   926
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   927
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
void icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
void CodeCache::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  assert(CodeCacheSegmentSize >= (uintx)CodeEntryAlignment, "CodeCacheSegmentSize must be large enough to align entry points");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  assert(CodeCacheSegmentSize >= (uintx)OptoLoopAlignment,  "CodeCacheSegmentSize must be large enough to align inner loops");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  assert(CodeCacheSegmentSize >= sizeof(jdouble),    "CodeCacheSegmentSize must be large enough to align constants");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  // This was originally just a check of the alignment, causing failure, instead, round
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  // the code cache to the page size.  In particular, Solaris is moving to a larger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  // default page size.
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 46619
diff changeset
   939
  CodeCacheExpansionSize = align_up(CodeCacheExpansionSize, os::vm_page_size());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   940
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   941
  if (SegmentedCodeCache) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   942
    // Use multiple code heaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   943
    initialize_heaps();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   944
  } else {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   945
    // Use a single code heap
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54901
diff changeset
   946
    FLAG_SET_ERGO(NonNMethodCodeHeapSize, 0);
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54901
diff changeset
   947
    FLAG_SET_ERGO(ProfiledCodeHeapSize, 0);
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54901
diff changeset
   948
    FLAG_SET_ERGO(NonProfiledCodeHeapSize, 0);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   949
    ReservedCodeSpace rs = reserve_heap_memory(ReservedCodeCacheSize);
28730
106944a21769 8064940: JMH javac performance regressions on solaris-sparcv9 in 9-b34
thartmann
parents: 28631
diff changeset
   950
    add_heap(rs, "CodeCache", CodeBlobType::All);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  // Initialize ICache flush mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  // This service is needed for os::register_code_area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  icache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  // Give OS a chance to register generated code area.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  // This is used on Windows 64 bit platforms to register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  // Structured Exception Handlers for our generated code.
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   960
  os::register_code_area((char*)low_bound(), (char*)high_bound());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
void codeCache_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  CodeCache::initialize();
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   965
  // Load AOT libraries and add AOT code heaps.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
   966
  AOTLoader::initialize();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
int CodeCache::number_of_nmethods_with_dependencies() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  return _number_of_nmethods_with_dependencies;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
void CodeCache::clear_inline_caches() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  assert_locked_or_safepoint(CodeCache_lock);
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   977
  CompiledMethodIterator iter(CompiledMethodIterator::only_alive_and_not_unloading);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   978
  while(iter.next()) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   979
    iter.method()->clear_inline_caches();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
37289
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
   983
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
   984
  assert_locked_or_safepoint(CodeCache_lock);
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   985
  NMethodIterator iter(NMethodIterator::only_alive_and_not_unloading);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
   986
  while(iter.next()) {
37289
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
   987
    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
   988
  }
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
   989
}
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36593
diff changeset
   990
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
   991
// Keeps track of time spent for checking dependencies
22921
ee35d5c0b1dc 8034839: jvm hangs with gc/gctests/LoadUnloadGC test
anoll
parents: 22506
diff changeset
   992
NOT_PRODUCT(static elapsedTimer dependentCheckTime;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
36300
5b47f168b948 7177745: JSR292: Many Callsite relinkages cause target method to always run in interpreter mode
vlivanov
parents: 35825
diff changeset
   994
int CodeCache::mark_for_deoptimization(KlassDepChange& changes) {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54461
diff changeset
   995
  MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  // search the hierarchy looking for nmethods which are affected by the loading of this class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
  // then search the interfaces this class implements looking for nmethods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  // which might be dependent of the fact that an interface only had one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
  // implementor.
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1003
  // 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
  1004
  // can happen
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35203
diff changeset
  1005
  NoSafepointVerifier nsv;
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1006
  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
  1007
    Klass* d = str.klass();
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1008
    number_of_marked_CodeBlobs += InstanceKlass::cast(d)->mark_dependent_nmethods(changes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
#ifndef PRODUCT
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1012
  if (VerifyDependencies) {
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1013
    // 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
  1014
    // 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
  1015
    dependentCheckTime.start();
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1016
    nmethod::check_all_dependencies(changes);
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1017
    dependentCheckTime.stop();
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1018
  }
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1019
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1024
CompiledMethod* CodeCache::find_compiled(void* start) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1025
  CodeBlob *cb = find_blob(start);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1026
  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
  1027
  return (CompiledMethod*)cb;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1028
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
  1030
bool CodeCache::is_far_target(address target) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
  1031
#if INCLUDE_AOT
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
  1032
  return NativeCall::is_far_call(_low_bound,  target) ||
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
  1033
         NativeCall::is_far_call(_high_bound, target);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
  1034
#else
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
  1035
  return false;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
  1036
#endif
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
  1037
}
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
  1038
54355
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1039
#ifdef INCLUDE_JVMTI
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1040
// RedefineClasses support for unloading nmethods that are dependent on "old" methods.
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1041
// We don't really expect this table to grow very large.  If it does, it can become a hashtable.
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1042
static GrowableArray<CompiledMethod*>* old_compiled_method_table = NULL;
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1043
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1044
static void add_to_old_table(CompiledMethod* c) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1045
  if (old_compiled_method_table == NULL) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1046
    old_compiled_method_table = new (ResourceObj::C_HEAP, mtCode) GrowableArray<CompiledMethod*>(100, true);
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1047
  }
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1048
  old_compiled_method_table->push(c);
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1049
}
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1050
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1051
static void reset_old_method_table() {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1052
  if (old_compiled_method_table != NULL) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1053
    delete old_compiled_method_table;
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1054
    old_compiled_method_table = NULL;
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1055
  }
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1056
}
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1057
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1058
// Remove this method when zombied or unloaded.
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1059
void CodeCache::unregister_old_nmethod(CompiledMethod* c) {
54901
631d51796dbf 8223585: vmTestbase/runtime/pcl/* get SEGV in MetadataOnStackClosure::do_metadata(Metadata*)+0x0
coleenp
parents: 54786
diff changeset
  1060
  assert_lock_strong(CodeCache_lock);
54355
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1061
  if (old_compiled_method_table != NULL) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1062
    int index = old_compiled_method_table->find(c);
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1063
    if (index != -1) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1064
      old_compiled_method_table->delete_at(index);
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1065
    }
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1066
  }
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1067
}
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1068
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1069
void CodeCache::old_nmethods_do(MetadataClosure* f) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1070
  // Walk old method table and mark those on stack.
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1071
  int length = 0;
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1072
  if (old_compiled_method_table != NULL) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1073
    length = old_compiled_method_table->length();
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1074
    for (int i = 0; i < length; i++) {
54901
631d51796dbf 8223585: vmTestbase/runtime/pcl/* get SEGV in MetadataOnStackClosure::do_metadata(Metadata*)+0x0
coleenp
parents: 54786
diff changeset
  1075
      CompiledMethod* cm = old_compiled_method_table->at(i);
631d51796dbf 8223585: vmTestbase/runtime/pcl/* get SEGV in MetadataOnStackClosure::do_metadata(Metadata*)+0x0
coleenp
parents: 54786
diff changeset
  1076
      // Only walk alive nmethods, the dead ones will get removed by the sweeper.
631d51796dbf 8223585: vmTestbase/runtime/pcl/* get SEGV in MetadataOnStackClosure::do_metadata(Metadata*)+0x0
coleenp
parents: 54786
diff changeset
  1077
      if (cm->is_alive()) {
631d51796dbf 8223585: vmTestbase/runtime/pcl/* get SEGV in MetadataOnStackClosure::do_metadata(Metadata*)+0x0
coleenp
parents: 54786
diff changeset
  1078
        old_compiled_method_table->at(i)->metadata_do(f);
631d51796dbf 8223585: vmTestbase/runtime/pcl/* get SEGV in MetadataOnStackClosure::do_metadata(Metadata*)+0x0
coleenp
parents: 54786
diff changeset
  1079
      }
54355
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1080
    }
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1081
  }
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1082
  log_debug(redefine, class, nmethod)("Walked %d nmethods for mark_on_stack", length);
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1083
}
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1084
53641
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1085
// Just marks the methods in this class as needing deoptimization
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1086
void CodeCache::mark_for_evol_deoptimization(InstanceKlass* dependee) {
54355
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1087
  assert(SafepointSynchronize::is_at_safepoint(), "Can only do this at a safepoint!");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
53641
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1089
  // Mark dependent AOT nmethods, which are only found via the class redefined.
54355
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1090
  // TODO: add dependencies to aotCompiledMethod's metadata section so this isn't
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1091
  // needed.
53641
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1092
  AOTLoader::mark_evol_dependent_methods(dependee);
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1093
}
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1094
54355
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1095
53641
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1096
// Walk compiled methods and mark dependent methods for deoptimization.
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1097
int CodeCache::mark_dependents_for_evol_deoptimization() {
54355
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1098
  assert(SafepointSynchronize::is_at_safepoint(), "Can only do this at a safepoint!");
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1099
  // Each redefinition creates a new set of nmethods that have references to "old" Methods
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1100
  // So delete old method table and create a new one.
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1101
  reset_old_method_table();
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1102
53641
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1103
  int number_of_marked_CodeBlobs = 0;
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1104
  CompiledMethodIterator iter(CompiledMethodIterator::only_alive_and_not_unloading);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1105
  while(iter.next()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1106
    CompiledMethod* nm = iter.method();
54355
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1107
    // Walk all alive nmethods to check for old Methods.
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1108
    // This includes methods whose inline caches point to old methods, so
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1109
    // inline cache clearing is unnecessary.
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1110
    if (nm->has_evol_metadata()) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1111
      nm->mark_for_deoptimization();
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1112
      add_to_old_table(nm);
53641
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1113
      number_of_marked_CodeBlobs++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
53641
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1117
  // return total count of nmethods marked for deoptimization, if zero the caller
c572eb605087 8139551: Scalability problem with redefinition - multiple code cache walks
coleenp
parents: 52908
diff changeset
  1118
  // can skip deoptimization
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
54355
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1122
void CodeCache::mark_all_nmethods_for_evol_deoptimization() {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1123
  assert(SafepointSynchronize::is_at_safepoint(), "Can only do this at a safepoint!");
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1124
  CompiledMethodIterator iter(CompiledMethodIterator::only_alive_and_not_unloading);
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1125
  while(iter.next()) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1126
    CompiledMethod* nm = iter.method();
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1127
    if (!nm->method()->is_method_handle_intrinsic()) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1128
      nm->mark_for_deoptimization();
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1129
      if (nm->has_evol_metadata()) {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1130
        add_to_old_table(nm);
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1131
      }
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1132
    }
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1133
  }
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1134
}
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1135
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1136
// Flushes compiled methods dependent on redefined classes, that have already been
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1137
// marked for deoptimization.
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1138
void CodeCache::flush_evol_dependents() {
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1139
  assert(SafepointSynchronize::is_at_safepoint(), "Can only do this at a safepoint!");
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1140
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1141
  // CodeCache can only be updated by a thread_in_VM and they will all be
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1142
  // stopped during the safepoint so CodeCache will be safe to update without
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1143
  // holding the CodeCache_lock.
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1144
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1145
  // At least one nmethod has been marked for deoptimization
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1146
58226
408c445d04e8 8226705: [REDO] Deoptimize with handshakes
rehn
parents: 55739
diff changeset
  1147
  Deoptimization::deoptimize_all_marked();
54355
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1148
}
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1149
#endif // INCLUDE_JVMTI
f226ab0b7f21 8221183: Avoid code cache walk in MetadataOnStackMark
coleenp
parents: 54150
diff changeset
  1150
58226
408c445d04e8 8226705: [REDO] Deoptimize with handshakes
rehn
parents: 55739
diff changeset
  1151
// Mark methods for deopt (if safe or possible).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
void CodeCache::mark_all_nmethods_for_deoptimization() {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54461
diff changeset
  1153
  MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1154
  CompiledMethodIterator iter(CompiledMethodIterator::only_alive_and_not_unloading);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1155
  while(iter.next()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1156
    CompiledMethod* nm = iter.method();
58226
408c445d04e8 8226705: [REDO] Deoptimize with handshakes
rehn
parents: 55739
diff changeset
  1157
    if (!nm->is_native_method()) {
26580
8cca7fbe77b8 8056154: JVM crash with EXCEPTION_ACCESS_VIOLATION when there are many threads running
iveresov
parents: 25492
diff changeset
  1158
      nm->mark_for_deoptimization();
8cca7fbe77b8 8056154: JVM crash with EXCEPTION_ACCESS_VIOLATION when there are many threads running
iveresov
parents: 25492
diff changeset
  1159
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1163
int CodeCache::mark_for_deoptimization(Method* dependee) {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54461
diff changeset
  1164
  MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
  int number_of_marked_CodeBlobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1167
  CompiledMethodIterator iter(CompiledMethodIterator::only_alive_and_not_unloading);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1168
  while(iter.next()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1169
    CompiledMethod* nm = iter.method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
    if (nm->is_dependent_on_method(dependee)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
      nm->mark_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
      number_of_marked_CodeBlobs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
  return number_of_marked_CodeBlobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
void CodeCache::make_marked_nmethods_not_entrant() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
  assert_locked_or_safepoint(CodeCache_lock);
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1182
  CompiledMethodIterator iter(CompiledMethodIterator::only_alive_and_not_unloading);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1183
  while(iter.next()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38055
diff changeset
  1184
    CompiledMethod* nm = iter.method();
58226
408c445d04e8 8226705: [REDO] Deoptimize with handshakes
rehn
parents: 55739
diff changeset
  1185
    if (nm->is_marked_for_deoptimization()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
      nm->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1191
// Flushes compiled methods dependent on dependee.
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
  1192
void CodeCache::flush_dependents_on(InstanceKlass* dependee) {
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1193
  assert_lock_strong(Compile_lock);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1194
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1195
  if (number_of_nmethods_with_dependencies() == 0) return;
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1196
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1197
  KlassDepChange changes(dependee);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1198
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1199
  // Compute the dependent nmethods
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1200
  if (mark_for_deoptimization(changes) > 0) {
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1201
    // At least one nmethod has been marked for deoptimization
58226
408c445d04e8 8226705: [REDO] Deoptimize with handshakes
rehn
parents: 55739
diff changeset
  1202
    Deoptimization::deoptimize_all_marked();
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1203
  }
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1204
}
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1205
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1206
// Flushes compiled methods dependent on dependee
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46661
diff changeset
  1207
void CodeCache::flush_dependents_on_method(const methodHandle& m_h) {
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1208
  // --- 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
  1209
  assert_locked_or_safepoint(Compile_lock);
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1210
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1211
  // Compute the dependent nmethods
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1212
  if (mark_for_deoptimization(m_h()) > 0) {
58226
408c445d04e8 8226705: [REDO] Deoptimize with handshakes
rehn
parents: 55739
diff changeset
  1213
    Deoptimization::deoptimize_all_marked();
28374
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1214
  }
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1215
}
0558e321c027 8067836: The Universe::flush_foo methods belong in CodeCache.
coleenp
parents: 27880
diff changeset
  1216
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
void CodeCache::verify() {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1218
  assert_locked_or_safepoint(CodeCache_lock);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1219
  FOR_ALL_HEAPS(heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1220
    (*heap)->verify();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1221
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1222
      if (cb->is_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1223
        cb->verify();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1224
      }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1225
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1229
// A CodeHeap is full. Print out warning and report event.
46269
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1230
PRAGMA_DIAG_PUSH
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1231
PRAGMA_FORMAT_NONLITERAL_IGNORED
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1232
void CodeCache::report_codemem_full(int code_blob_type, bool print) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1233
  // 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
  1234
  CodeHeap* heap = get_code_heap(code_blob_type);
fa5ea7ff078d 8059390: code cache fills up for bigapps/Weblogic+medrec/nowarnings
zmajo
parents: 26919
diff changeset
  1235
  assert(heap != NULL, "heap is null");
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1236
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
  1237
  if ((heap->full_count() == 0) || print) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1238
    // Not yet reported for this heap, report
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1239
    if (SegmentedCodeCache) {
46269
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1240
      ResourceMark rm;
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1241
      stringStream msg1_stream, msg2_stream;
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1242
      msg1_stream.print("%s is full. Compiler has been disabled.",
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1243
                        get_code_heap_name(code_blob_type));
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1244
      msg2_stream.print("Try increasing the code heap size using -XX:%s=",
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1245
                 get_code_heap_flag_name(code_blob_type));
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1246
      const char *msg1 = msg1_stream.as_string();
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1247
      const char *msg2 = msg2_stream.as_string();
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1248
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50676
diff changeset
  1249
      log_warning(codecache)("%s", msg1);
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50676
diff changeset
  1250
      log_warning(codecache)("%s", msg2);
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50676
diff changeset
  1251
      warning("%s", msg1);
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50676
diff changeset
  1252
      warning("%s", msg2);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1253
    } else {
46269
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1254
      const char *msg1 = "CodeCache is full. Compiler has been disabled.";
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1255
      const char *msg2 = "Try increasing the code cache size using -XX:ReservedCodeCacheSize=";
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1256
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50676
diff changeset
  1257
      log_warning(codecache)("%s", msg1);
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50676
diff changeset
  1258
      log_warning(codecache)("%s", msg2);
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50676
diff changeset
  1259
      warning("%s", msg1);
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50676
diff changeset
  1260
      warning("%s", msg2);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1261
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1262
    ResourceMark rm;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1263
    stringStream s;
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50676
diff changeset
  1264
    // Dump code cache into a buffer before locking the tty.
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1265
    {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54461
diff changeset
  1266
      MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1267
      print_summary(&s);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1268
    }
49611
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1269
    {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1270
      ttyLocker ttyl;
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1271
      tty->print("%s", s.as_string());
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1272
    }
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1273
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1274
    if (heap->full_count() == 0) {
52815
10bb941d7fd4 8214526: Change CodeHeap State Analytics control from UL to Print*
lucy
parents: 52781
diff changeset
  1275
      if (PrintCodeHeapAnalytics) {
55294
3493c1bc59fd 8225388: Running jcmd Compiler.CodeHeap_Analytics all 0 cause crash.
lmesnik
parents: 55005
diff changeset
  1276
        CompileBroker::print_heapinfo(tty, "all", 4096); // details, may be a lot!
49611
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1277
      }
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1278
    }
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1279
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1280
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
  1281
  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
  1282
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1283
  EventCodeCacheFull event;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1284
  if (event.should_commit()) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1285
    event.set_codeBlobType((u1)code_blob_type);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1286
    event.set_startAddress((u8)heap->low_boundary());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1287
    event.set_commitedTopAddress((u8)heap->high());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1288
    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
  1289
    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
  1290
    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
  1291
    event.set_adaptorCount(heap->adapter_count());
41056
8b4c1a429e5d 8157024: CodeCache JFR events reporting wrong data
neliasso
parents: 40863
diff changeset
  1292
    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
  1293
    event.set_fullCount(heap->full_count());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1294
    event.commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1295
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1296
}
46269
7e725659ea12 8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents: 42650
diff changeset
  1297
PRAGMA_DIAG_POP
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17617
diff changeset
  1298
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1299
void CodeCache::print_memory_overhead() {
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1300
  size_t wasted_bytes = 0;
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
  1301
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1302
      CodeHeap* curr_heap = *heap;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1303
      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
  1304
        HeapBlock* heap_block = ((HeapBlock*)cb) - 1;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1305
        wasted_bytes += heap_block->length() * CodeCacheSegmentSize - cb->size();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1306
      }
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1307
  }
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1308
  // 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
  1309
  ttyLocker ttl;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1310
  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
  1311
  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
  1312
  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
  1313
  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
  1314
}
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1315
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
//------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
// Non-product version
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1321
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
  1322
  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
  1323
    ResourceMark rm;
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1324
    if (size == 0)  size = cb->size();
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23214
diff changeset
  1325
    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
  1326
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1327
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
  1328
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
void CodeCache::print_internals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
  int nmethodCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
  int runtimeStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  int adapterCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
  int deoptimizationStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
  int uncommonTrapStubCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
  int bufferBlobCount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  int total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
  int nmethodAlive = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
  int nmethodNotEntrant = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
  int nmethodZombie = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  int nmethodUnloaded = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  int nmethodJava = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
  int nmethodNative = 0;
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1343
  int max_nm_size = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1346
  int i = 0;
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
  1347
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42062
diff changeset
  1348
    if ((_nmethod_heaps->length() >= 1) && Verbose) {
26918
4e1761669426 8059137: MemoryPoolMXBeans for different code heaps should contain 'Code heap' in their names
thartmann
parents: 26809
diff changeset
  1349
      tty->print_cr("-- %s --", (*heap)->name());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1350
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1351
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1352
      total++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1353
      if (cb->is_nmethod()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1354
        nmethod* nm = (nmethod*)cb;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1356
        if (Verbose && nm->method() != NULL) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1357
          ResourceMark rm;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1358
          char *method_name = nm->method()->name_and_sig_as_C_string();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1359
          tty->print("%s", method_name);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1360
          if(nm->is_alive()) { tty->print_cr(" alive"); }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1361
          if(nm->is_not_entrant()) { tty->print_cr(" not-entrant"); }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1362
          if(nm->is_zombie()) { tty->print_cr(" zombie"); }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1363
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1365
        nmethodCount++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1367
        if(nm->is_alive()) { nmethodAlive++; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1368
        if(nm->is_not_entrant()) { nmethodNotEntrant++; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1369
        if(nm->is_zombie()) { nmethodZombie++; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1370
        if(nm->is_unloaded()) { nmethodUnloaded++; }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1371
        if(nm->method() != NULL && nm->is_native_method()) { nmethodNative++; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1373
        if(nm->method() != NULL && nm->is_java_method()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1374
          nmethodJava++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1375
          max_nm_size = MAX2(max_nm_size, nm->size());
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1376
        }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1377
      } else if (cb->is_runtime_stub()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1378
        runtimeStubCount++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1379
      } else if (cb->is_deoptimization_stub()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1380
        deoptimizationStubCount++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1381
      } else if (cb->is_uncommon_trap_stub()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1382
        uncommonTrapStubCount++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1383
      } else if (cb->is_adapter_blob()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1384
        adapterCount++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1385
      } else if (cb->is_buffer_blob()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1386
        bufferBlobCount++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
  int bucketSize = 512;
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1392
  int bucketLimit = max_nm_size / bucketSize + 1;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 9630
diff changeset
  1393
  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
  1394
  memset(buckets, 0, sizeof(int) * bucketLimit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1396
  NMethodIterator iter(NMethodIterator::all_blobs);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1397
  while(iter.next()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1398
    nmethod* nm = iter.method();
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1399
    if(nm->method() != NULL && nm->is_java_method()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1400
      buckets[nm->size() / bucketSize]++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
  }
23214
b6426873cb37 8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents: 22921
diff changeset
  1403
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
  tty->print_cr("Code Cache Entries (total of %d)",total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  tty->print_cr("nmethods: %d",nmethodCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  tty->print_cr("\talive: %d",nmethodAlive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
  tty->print_cr("\tnot_entrant: %d",nmethodNotEntrant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
  tty->print_cr("\tzombie: %d",nmethodZombie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
  tty->print_cr("\tunloaded: %d",nmethodUnloaded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
  tty->print_cr("\tjava: %d",nmethodJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
  tty->print_cr("\tnative: %d",nmethodNative);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
  tty->print_cr("runtime_stubs: %d",runtimeStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
  tty->print_cr("adapters: %d",adapterCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
  tty->print_cr("buffer blobs: %d",bufferBlobCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
  tty->print_cr("deoptimization_stubs: %d",deoptimizationStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
  tty->print_cr("uncommon_traps: %d",uncommonTrapStubCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
  tty->print_cr("\nnmethod size distribution (non-zombie java)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
  tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  for(int i=0; i<bucketLimit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
    if(buckets[i] != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
      tty->print("%d - %d bytes",i*bucketSize,(i+1)*bucketSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
      tty->fill_to(40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
      tty->print_cr("%d",buckets[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27642
diff changeset
  1429
  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
  1430
  print_memory_overhead();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1433
#endif // !PRODUCT
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1434
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
void CodeCache::print() {
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1436
  print_summary(tty);
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1437
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1438
#ifndef PRODUCT
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1439
  if (!Verbose) return;
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1440
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
  CodeBlob_sizes live;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
  CodeBlob_sizes dead;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
  1444
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1445
    FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1446
      if (!cb->is_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1447
        dead.add(cb);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1448
      } else {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1449
        live.add(cb);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1450
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  tty->print_cr("CodeCache:");
22506
0759c126204d 7194669: CodeCache::mark_for_deoptimization should avoid verifying dependencies multiple times
anoll
parents: 20290
diff changeset
  1455
  tty->print_cr("nmethod dependency checking time %fs", dependentCheckTime.seconds());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  if (!live.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
    live.print("live");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
  if (!dead.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
    dead.print("dead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1464
  if (WizardMode) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
     // print the oop_map usage
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
    int code_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
    int number_of_blobs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
    int number_of_oop_maps = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
    int map_size = 0;
45622
3e4f81c922de 8181757: NonNMethod heap in segmented CodeCache is not scanned in some cases
dlong
parents: 43945
diff changeset
  1470
    FOR_ALL_ALLOCABLE_HEAPS(heap) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1471
      FOR_ALL_BLOBS(cb, *heap) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1472
        if (cb->is_alive()) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1473
          number_of_blobs++;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1474
          code_size += cb->code_size();
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 30296
diff changeset
  1475
          ImmutableOopMapSet* set = cb->oop_maps();
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1476
          if (set != NULL) {
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 30296
diff changeset
  1477
            number_of_oop_maps += set->count();
30628
3c15b4a3bf4d 8079797: assert(index >= 0 && index < _count) failed: check
rbackman
parents: 30590
diff changeset
  1478
            map_size           += set->nr_of_bytes();
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1479
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
    tty->print_cr("OopMaps");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
    tty->print_cr("  #blobs    = %d", number_of_blobs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
    tty->print_cr("  code size = %d", code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
    tty->print_cr("  #oop_maps = %d", number_of_oop_maps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
    tty->print_cr("  map size  = %d", map_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1490
#endif // !PRODUCT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1493
void CodeCache::print_summary(outputStream* st, bool detailed) {
50515
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50416
diff changeset
  1494
  int full_count = 0;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1495
  FOR_ALL_HEAPS(heap_iterator) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1496
    CodeHeap* heap = (*heap_iterator);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1497
    size_t total = (heap->high_boundary() - heap->low_boundary());
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 31592
diff changeset
  1498
    if (_heaps->length() >= 1) {
26918
4e1761669426 8059137: MemoryPoolMXBeans for different code heaps should contain 'Code heap' in their names
thartmann
parents: 26809
diff changeset
  1499
      st->print("%s:", heap->name());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1500
    } else {
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26918
diff changeset
  1501
      st->print("CodeCache:");
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1502
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1503
    st->print_cr(" size=" SIZE_FORMAT "Kb used=" SIZE_FORMAT
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1504
                 "Kb max_used=" SIZE_FORMAT "Kb free=" SIZE_FORMAT "Kb",
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1505
                 total/K, (total - heap->unallocated_capacity())/K,
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1506
                 heap->max_allocated_capacity()/K, heap->unallocated_capacity()/K);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1507
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1508
    if (detailed) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1509
      st->print_cr(" bounds [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT "]",
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1510
                   p2i(heap->low_boundary()),
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1511
                   p2i(heap->high()),
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1512
                   p2i(heap->high_boundary()));
50515
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50416
diff changeset
  1513
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50416
diff changeset
  1514
      full_count += get_codemem_full_count(heap->code_blob_type());
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1515
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1516
  }
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
  1517
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1518
  if (detailed) {
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1519
    st->print_cr(" total_blobs=" UINT32_FORMAT " nmethods=" UINT32_FORMAT
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
  1520
                       " 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
  1521
                       blob_count(), nmethod_count(), adapter_count());
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1522
    st->print_cr(" compilation: %s", CompileBroker::should_compile_new_jobs() ?
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1523
                 "enabled" : Arguments::mode() == Arguments::_int ?
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1524
                 "disabled (interpreter mode)" :
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1525
                 "disabled (not enough contiguous free space left)");
50515
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50416
diff changeset
  1526
    st->print_cr("              stopped_count=%d, restarted_count=%d",
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50416
diff changeset
  1527
                 CompileBroker::get_total_compiler_stopped_count(),
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50416
diff changeset
  1528
                 CompileBroker::get_total_compiler_restarted_count());
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50416
diff changeset
  1529
    st->print_cr(" full_count=%d", full_count);
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 13878
diff changeset
  1530
  }
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
  1531
}
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1532
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1533
void CodeCache::print_codelist(outputStream* st) {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54461
diff changeset
  1534
  MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1535
52661
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1536
  CompiledMethodIterator iter(CompiledMethodIterator::only_alive_and_not_unloading);
4f45c682eab0 8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents: 52405
diff changeset
  1537
  while (iter.next()) {
46637
ad6940426976 8183151: DCmd Compiler.codelist should print all compiled methods
neliasso
parents: 46632
diff changeset
  1538
    CompiledMethod* cm = iter.method();
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1539
    ResourceMark rm;
46637
ad6940426976 8183151: DCmd Compiler.codelist should print all compiled methods
neliasso
parents: 46632
diff changeset
  1540
    char* method_name = cm->method()->name_and_sig_as_C_string();
ad6940426976 8183151: DCmd Compiler.codelist should print all compiled methods
neliasso
parents: 46632
diff changeset
  1541
    st->print_cr("%d %d %d %s [" INTPTR_FORMAT ", " INTPTR_FORMAT " - " INTPTR_FORMAT "]",
ad6940426976 8183151: DCmd Compiler.codelist should print all compiled methods
neliasso
parents: 46632
diff changeset
  1542
                 cm->compile_id(), cm->comp_level(), cm->get_state(),
ad6940426976 8183151: DCmd Compiler.codelist should print all compiled methods
neliasso
parents: 46632
diff changeset
  1543
                 method_name,
ad6940426976 8183151: DCmd Compiler.codelist should print all compiled methods
neliasso
parents: 46632
diff changeset
  1544
                 (intptr_t)cm->header_begin(), (intptr_t)cm->code_begin(), (intptr_t)cm->code_end());
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1545
  }
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1546
}
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1547
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1548
void CodeCache::print_layout(outputStream* st) {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54461
diff changeset
  1549
  MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1550
  ResourceMark rm;
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1551
  print_summary(st, true);
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1552
}
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 26580
diff changeset
  1553
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1554
void CodeCache::log_state(outputStream* st) {
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1555
  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
  1556
            " 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
  1557
            blob_count(), nmethod_count(), adapter_count(),
17016
78b1c3670525 8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents: 15201
diff changeset
  1558
            unallocated_capacity());
8672
26a427ab6f32 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 7715
diff changeset
  1559
}
49611
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1560
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1561
//---<  BEGIN  >--- CodeHeap State Analytics.
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1562
55294
3493c1bc59fd 8225388: Running jcmd Compiler.CodeHeap_Analytics all 0 cause crash.
lmesnik
parents: 55005
diff changeset
  1563
void CodeCache::aggregate(outputStream *out, size_t granularity) {
49611
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1564
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1565
    CodeHeapState::aggregate(out, (*heap), granularity);
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1566
  }
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1567
}
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1568
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1569
void CodeCache::discard(outputStream *out) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1570
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1571
    CodeHeapState::discard(out, (*heap));
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1572
  }
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1573
}
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1574
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1575
void CodeCache::print_usedSpace(outputStream *out) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1576
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1577
    CodeHeapState::print_usedSpace(out, (*heap));
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1578
  }
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1579
}
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1580
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1581
void CodeCache::print_freeSpace(outputStream *out) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1582
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1583
    CodeHeapState::print_freeSpace(out, (*heap));
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1584
  }
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1585
}
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1586
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1587
void CodeCache::print_count(outputStream *out) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1588
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1589
    CodeHeapState::print_count(out, (*heap));
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1590
  }
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1591
}
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1592
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1593
void CodeCache::print_space(outputStream *out) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1594
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1595
    CodeHeapState::print_space(out, (*heap));
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1596
  }
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1597
}
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1598
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1599
void CodeCache::print_age(outputStream *out) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1600
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1601
    CodeHeapState::print_age(out, (*heap));
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1602
  }
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1603
}
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1604
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1605
void CodeCache::print_names(outputStream *out) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1606
  FOR_ALL_ALLOCABLE_HEAPS(heap) {
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1607
    CodeHeapState::print_names(out, (*heap));
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1608
  }
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1609
}
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49594
diff changeset
  1610
//---<  END  >--- CodeHeap State Analytics.