src/hotspot/share/code/codeBlob.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 52781 436097b038a1
child 54807 33fe50b6d707
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52781
diff changeset
     2
 * Copyright (c) 1998, 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: 5050
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5050
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: 5050
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52781
diff changeset
    25
#ifndef SHARE_CODE_CODEBLOB_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52781
diff changeset
    26
#define SHARE_CODE_CODEBLOB_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    28
#include "asm/codeBuffer.hpp"
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 38133
diff changeset
    29
#include "compiler/compilerDefinitions.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    30
#include "compiler/oopMap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    31
#include "runtime/frame.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    32
#include "runtime/handles.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46620
diff changeset
    33
#include "utilities/align.hpp"
42064
a530dbabe64f 8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents: 42040
diff changeset
    34
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    35
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    36
// CodeBlob Types
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    37
// Used in the CodeCache to assign CodeBlobs to different CodeHeaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    38
struct CodeBlobType {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    39
  enum {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    40
    MethodNonProfiled   = 0,    // Execution level 1 and 4 (non-profiled) nmethods (including native nmethods)
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    41
    MethodProfiled      = 1,    // Execution level 2 and 3 (profiled) nmethods
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26796
diff changeset
    42
    NonNMethod          = 2,    // Non-nmethods like Buffers, Adapters and Runtime Stubs
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    43
    All                 = 3,    // All types (No code cache segmentation)
42664
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42650
diff changeset
    44
    AOT                 = 4,    // AOT methods
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42650
diff changeset
    45
    NumTypes            = 5     // Number of CodeBlobTypes
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    46
  };
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    47
};
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    48
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// CodeBlob - superclass for all entries in the CodeCache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
    51
// Subtypes are:
47768
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    52
//  CompiledMethod       : Compiled Java methods (include method that calls to native code)
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    53
//   nmethod             : JIT Compiled Java methods
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    54
//   AOTCompiledMethod   : AOT Compiled Java methods - Not in the CodeCache!
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    55
//                         AOTCompiledMethod objects are allocated in the C-Heap, the code they
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    56
//                         point to is allocated in the AOTCodeHeap which is in the C-Heap as
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    57
//                         well (i.e. it's the memory where the shared library was loaded to)
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    58
//  RuntimeBlob          : Non-compiled method code; generated glue code
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    59
//   BufferBlob          : Used for non-relocatable code such as interpreter, stubroutines, etc.
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    60
//    AdapterBlob        : Used to hold C2I/I2C adapters
49655
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
    61
//    VtableBlob         : Used for holding vtable chunks
47768
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    62
//    MethodHandlesAdapterBlob : Used to hold MethodHandles adapters
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    63
//   RuntimeStub         : Call to VM runtime methods
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    64
//   SingletonBlob       : Super-class for all blobs that exist in only one instance
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    65
//    DeoptimizationBlob : Used for deoptimization
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    66
//    ExceptionBlob      : Used for stack unrolling
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    67
//    SafepointBlob      : Used to handle illegal instruction exceptions
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    68
//    UncommonTrapBlob   : Used to handle uncommon traps
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
//
47768
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    71
// Layout (all except AOTCompiledMethod) : continuous in the CodeCache
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
//   - header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
//   - relocation
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
    74
//   - content space
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
    75
//     - instruction space
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
//   - data space
47768
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    77
//
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    78
// Layout (AOTCompiledMethod) : in the C-Heap
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    79
//   - header -\
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    80
//     ...     |
3d1d05c9b6cd 8187091: ReturnBlobToWrongHeapTest fails because of problems in CodeHeap::contains_blob()
simonis
parents: 47688
diff changeset
    81
//   - code  <-/
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
    82
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
    83
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
    84
class CodeBlobLayout;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
49373
47b5652f2928 8199283: Remove ValueObj class for allocation subclassing for compiler code
coleenp
parents: 47768
diff changeset
    86
class CodeBlob {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  friend class VMStructs;
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
    88
  friend class JVMCIVMStructs;
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
    89
  friend class CodeCacheDumper;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
    91
protected:
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 38133
diff changeset
    92
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 38133
diff changeset
    93
  const CompilerType _type;                      // CompilerType
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  int        _size;                              // total size of CodeBlob in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  int        _header_size;                       // size of header (depends on subclass)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  int        _frame_complete_offset;             // instruction offsets in [0.._frame_complete_offset) have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
                                                 // not finished setting up their frame. Beware of pc's in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                                                 // that range. There is a similar range(s) on returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                                                 // which we don't detect.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  int        _data_offset;                       // offset to where data region begins
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  int        _frame_size;                        // size of stack frame
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   102
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   103
  address    _code_begin;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   104
  address    _code_end;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   105
  address    _content_begin;                     // address to where content region begins (this includes consts, insts, stubs)
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   106
                                                 // address    _content_end - not required, for all CodeBlobs _code_end == _content_end for now
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   107
  address    _data_end;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   108
  address    _relocation_begin;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   109
  address    _relocation_end;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   110
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 27642
diff changeset
   111
  ImmutableOopMapSet* _oop_maps;                 // OopMap for this CodeBlob
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   112
  bool                _caller_must_gc_arguments;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   113
  CodeStrings         _strings;
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 38133
diff changeset
   114
  const char*         _name;
42064
a530dbabe64f 8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents: 42040
diff changeset
   115
  S390_ONLY(int       _ctable_offset;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 38133
diff changeset
   117
  CodeBlob(const char* name, CompilerType type, const CodeBlobLayout& layout, int frame_complete_offset, int frame_size, ImmutableOopMapSet* oop_maps, bool caller_must_gc_arguments);
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 38133
diff changeset
   118
  CodeBlob(const char* name, CompilerType type, const CodeBlobLayout& layout, CodeBuffer* cb, int frame_complete_offset, int frame_size, OopMapSet* oop_maps, bool caller_must_gc_arguments);
52781
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52488
diff changeset
   119
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   120
public:
52781
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52488
diff changeset
   121
  // Only used by unit test.
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52488
diff changeset
   122
  CodeBlob()
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52488
diff changeset
   123
    : _type(compiler_none) {}
436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod
eosterlund
parents: 52488
diff changeset
   124
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Returns the space needed for CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  static unsigned int allocation_size(CodeBuffer* cb, int header_size);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
   127
  static unsigned int align_code_offset(int offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // Deletion
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   130
  virtual void flush();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // Typing
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   133
  virtual bool is_buffer_blob() const                 { return false; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   134
  virtual bool is_nmethod() const                     { return false; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   135
  virtual bool is_runtime_stub() const                { return false; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   136
  virtual bool is_deoptimization_stub() const         { return false; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   137
  virtual bool is_uncommon_trap_stub() const          { return false; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   138
  virtual bool is_exception_stub() const              { return false; }
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   139
  virtual bool is_safepoint_stub() const              { return false; }
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   140
  virtual bool is_adapter_blob() const                { return false; }
49655
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   141
  virtual bool is_vtable_blob() const                 { return false; }
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   142
  virtual bool is_method_handles_adapter_blob() const { return false; }
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42581
diff changeset
   143
  virtual bool is_aot() const                         { return false; }
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   144
  virtual bool is_compiled() const                    { return false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 38133
diff changeset
   146
  inline bool is_compiled_by_c1() const    { return _type == compiler_c1; };
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 38133
diff changeset
   147
  inline bool is_compiled_by_c2() const    { return _type == compiler_c2; };
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 38133
diff changeset
   148
  inline bool is_compiled_by_jvmci() const { return _type == compiler_jvmci; };
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 38133
diff changeset
   149
  const char* compiler_name() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
4564
55dfb20908d0 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 3908
diff changeset
   151
  // Casting
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   152
  nmethod* as_nmethod_or_null()                { return is_nmethod() ? (nmethod*) this : NULL; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   153
  nmethod* as_nmethod()                        { assert(is_nmethod(), "must be nmethod"); return (nmethod*) this; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   154
  CompiledMethod* as_compiled_method_or_null() { return is_compiled() ? (CompiledMethod*) this : NULL; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   155
  CompiledMethod* as_compiled_method()         { assert(is_compiled(), "must be compiled"); return (CompiledMethod*) this; }
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42581
diff changeset
   156
  CodeBlob* as_codeblob_or_null() const        { return (CodeBlob*) this; }
4564
55dfb20908d0 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 3908
diff changeset
   157
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Boundaries
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   159
  address header_begin() const        { return (address) this; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   160
  relocInfo* relocation_begin() const { return (relocInfo*) _relocation_begin; };
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   161
  relocInfo* relocation_end() const   { return (relocInfo*) _relocation_end; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   162
  address content_begin() const       { return _content_begin; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   163
  address content_end() const         { return _code_end; } // _code_end == _content_end is true for all types of blobs for now, it is also checked in the constructor
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   164
  address code_begin() const          { return _code_begin;    }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   165
  address code_end() const            { return _code_end; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   166
  address data_end() const            { return _data_end;      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
42064
a530dbabe64f 8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents: 42040
diff changeset
   168
  // This field holds the beginning of the const section in the old code buffer.
a530dbabe64f 8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents: 42040
diff changeset
   169
  // It is needed to fix relocations of pc-relative loads when resizing the
a530dbabe64f 8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents: 42040
diff changeset
   170
  // the constant pool or moving it.
a530dbabe64f 8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents: 42040
diff changeset
   171
  S390_ONLY(address ctable_begin() const { return header_begin() + _ctable_offset; })
a530dbabe64f 8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents: 42040
diff changeset
   172
  void set_ctable_begin(address ctable) { S390_ONLY(_ctable_offset = ctable - header_begin();) }
a530dbabe64f 8167184: [s390] Extend relocations for pc-relative instructions.
goetz
parents: 42040
diff changeset
   173
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // Sizes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  int size() const                               { return _size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  int header_size() const                        { return _header_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  int relocation_size() const                    { return (address) relocation_end() - (address) relocation_begin(); }
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   178
  int content_size() const                       { return           content_end()    -           content_begin();    }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   179
  int code_size() const                          { return           code_end()       -           code_begin();       }
47688
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47687
diff changeset
   180
  // Only used from CodeCache::free_unused_tail() after the Interpreter blob was trimmed
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47687
diff changeset
   181
  void adjust_size(size_t used) {
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47687
diff changeset
   182
    _size = (int)used;
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47687
diff changeset
   183
    _data_offset = (int)used;
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47687
diff changeset
   184
    _code_end = (address)this + used;
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47687
diff changeset
   185
    _data_end = (address)this + used;
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47687
diff changeset
   186
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // Containment
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   189
  bool blob_contains(address addr) const         { return header_begin()       <= addr && addr < data_end();       }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   190
  bool code_contains(address addr) const         { return code_begin()         <= addr && addr < code_end();       }
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   191
  bool contains(address addr) const              { return content_begin()      <= addr && addr < content_end();    }
42581
2fdb039ea5b5 8169941: CodeBlob::is_frame_complete_at() does not honor CodeOffsets::frame_never_safe
thartmann
parents: 42064
diff changeset
   192
  bool is_frame_complete_at(address addr) const  { return _frame_complete_offset != CodeOffsets::frame_never_safe &&
2fdb039ea5b5 8169941: CodeBlob::is_frame_complete_at() does not honor CodeOffsets::frame_never_safe
thartmann
parents: 42064
diff changeset
   193
                                                          code_contains(addr) && addr >= code_begin() + _frame_complete_offset; }
52142
ca0c25e01c5b 8210498: nmethod entry barriers
eosterlund
parents: 52014
diff changeset
   194
  int frame_complete_offset() const              { return _frame_complete_offset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // CodeCache support: really only used by the nmethods, but in order to get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // asserts and certain bookkeeping to work in the CodeCache they are defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // virtual here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  virtual bool is_zombie() const                 { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  virtual bool is_locked_by_vm() const           { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  virtual bool is_unloaded() const               { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  virtual bool is_not_entrant() const            { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  virtual bool is_alive() const                  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // OopMap for frame
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 27642
diff changeset
   209
  ImmutableOopMapSet* oop_maps() const           { return _oop_maps; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  void set_oop_maps(OopMapSet* p);
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 27642
diff changeset
   211
  const ImmutableOopMap* oop_map_for_return_address(address return_address);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   212
  virtual void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // Frame support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  int  frame_size() const                        { return _frame_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  void set_frame_size(int size)                  { _frame_size = size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // Returns true, if the next frame is responsible for GC'ing oops passed as arguments
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   219
  bool caller_must_gc_arguments(JavaThread* thread) const { return _caller_must_gc_arguments; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // Naming
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  const char* name() const                       { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  void set_name(const char* name)                { _name = name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // Debugging
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   226
  virtual void verify() = 0;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   227
  virtual void print() const                     { print_on(tty); };
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   228
  virtual void print_on(outputStream* st) const;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   229
  virtual void print_value_on(outputStream* st) const;
52014
1aa9beac610e 8210754: print_location is not reliable enough (printing register info)
mdoerr
parents: 51333
diff changeset
   230
  void dump_for_addr(address addr, outputStream* st, bool verbose) const;
35542
9dccb7f9f656 8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents: 35123
diff changeset
   231
  void print_code();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // Print the comment associated with offset on stream, if there is one
13887
89b873bcc55b 7200163: add CodeComments functionality to assember stubs
kvn
parents: 13728
diff changeset
   234
  virtual void print_block_comment(outputStream* stream, address block_begin) const {
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   235
    intptr_t offset = (intptr_t)(block_begin - code_begin());
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 13887
diff changeset
   236
    _strings.print_block_comment(stream, offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // Transfer ownership of comments to this CodeBlob
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 13887
diff changeset
   240
  void set_strings(CodeStrings& strings) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42581
diff changeset
   241
    assert(!is_aot(), "invalid on aot");
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 13887
diff changeset
   242
    _strings.assign(strings);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  }
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   244
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   245
  static ByteSize name_field_offset() {
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   246
    return byte_offset_of(CodeBlob, _name);
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   247
  }
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   248
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   249
  static ByteSize oop_maps_field_offset() {
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   250
    return byte_offset_of(CodeBlob, _oop_maps);
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   251
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   254
class CodeBlobLayout : public StackObj {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   255
private:
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   256
  int _size;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   257
  int _header_size;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   258
  int _relocation_size;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   259
  int _content_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   260
  int _code_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   261
  int _data_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   262
  address _code_begin;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   263
  address _code_end;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   264
  address _content_begin;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   265
  address _content_end;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   266
  address _data_end;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   267
  address _relocation_begin;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   268
  address _relocation_end;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   269
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   270
public:
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   271
  CodeBlobLayout(address code_begin, address code_end, address content_begin, address content_end, address data_end, address relocation_begin, address relocation_end) :
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   272
    _size(0),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   273
    _header_size(0),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   274
    _relocation_size(0),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   275
    _content_offset(0),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   276
    _code_offset(0),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   277
    _data_offset(0),
51333
f6641fcf7b7e 8208670: Compiler changes to allow enabling -Wreorder
tschatzl
parents: 49655
diff changeset
   278
    _code_begin(code_begin),
f6641fcf7b7e 8208670: Compiler changes to allow enabling -Wreorder
tschatzl
parents: 49655
diff changeset
   279
    _code_end(code_end),
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   280
    _content_begin(content_begin),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   281
    _content_end(content_end),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   282
    _data_end(data_end),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   283
    _relocation_begin(relocation_begin),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   284
    _relocation_end(relocation_end)
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   285
  {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   286
  }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   287
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   288
  CodeBlobLayout(const address start, int size, int header_size, int relocation_size, int data_offset) :
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   289
    _size(size),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   290
    _header_size(header_size),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   291
    _relocation_size(relocation_size),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   292
    _content_offset(CodeBlob::align_code_offset(_header_size + _relocation_size)),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   293
    _code_offset(_content_offset),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   294
    _data_offset(data_offset)
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   295
  {
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 42664
diff changeset
   296
    assert(is_aligned(_relocation_size, oopSize), "unaligned size");
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   297
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   298
    _code_begin = (address) start + _code_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   299
    _code_end = (address) start + _data_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   300
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   301
    _content_begin = (address) start + _content_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   302
    _content_end = (address) start + _data_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   303
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   304
    _data_end = (address) start + _size;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   305
    _relocation_begin = (address) start + _header_size;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   306
    _relocation_end = _relocation_begin + _relocation_size;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   307
  }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   308
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   309
  CodeBlobLayout(const address start, int size, int header_size, const CodeBuffer* cb) :
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   310
    _size(size),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   311
    _header_size(header_size),
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 42664
diff changeset
   312
    _relocation_size(align_up(cb->total_relocation_size(), oopSize)),
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   313
    _content_offset(CodeBlob::align_code_offset(_header_size + _relocation_size)),
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   314
    _code_offset(_content_offset + cb->total_offset_of(cb->insts())),
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 42664
diff changeset
   315
    _data_offset(_content_offset + align_up(cb->total_content_size(), oopSize))
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   316
  {
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 42664
diff changeset
   317
    assert(is_aligned(_relocation_size, oopSize), "unaligned size");
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   318
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   319
    _code_begin = (address) start + _code_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   320
    _code_end = (address) start + _data_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   321
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   322
    _content_begin = (address) start + _content_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   323
    _content_end = (address) start + _data_offset;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   324
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   325
    _data_end = (address) start + _size;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   326
    _relocation_begin = (address) start + _header_size;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   327
    _relocation_end = _relocation_begin + _relocation_size;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   328
  }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   329
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   330
  int size() const { return _size; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   331
  int header_size() const { return _header_size; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   332
  int relocation_size() const { return _relocation_size; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   333
  int content_offset() const { return _content_offset; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   334
  int code_offset() const { return _code_offset; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   335
  int data_offset() const { return _data_offset; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   336
  address code_begin() const { return _code_begin; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   337
  address code_end() const { return _code_end; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   338
  address data_end() const { return _data_end; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   339
  address relocation_begin() const { return _relocation_begin; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   340
  address relocation_end() const { return _relocation_end; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   341
  address content_begin() const { return _content_begin; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   342
  address content_end() const { return _content_end; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   343
};
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   344
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   345
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   346
class RuntimeBlob : public CodeBlob {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   347
  friend class VMStructs;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   348
 public:
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   349
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   350
  // Creation
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   351
  // a) simple CodeBlob
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   352
  // frame_complete is the offset from the beginning of the instructions
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   353
  // to where the frame setup (from stackwalk viewpoint) is complete.
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   354
  RuntimeBlob(const char* name, int header_size, int size, int frame_complete, int locs_size);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   355
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   356
  // b) full CodeBlob
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   357
  RuntimeBlob(
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   358
    const char* name,
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   359
    CodeBuffer* cb,
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   360
    int         header_size,
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   361
    int         size,
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   362
    int         frame_complete,
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   363
    int         frame_size,
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   364
    OopMapSet*  oop_maps,
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   365
    bool        caller_must_gc_arguments = false
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   366
  );
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   367
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   368
  // GC support
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   369
  virtual bool is_alive() const                  = 0;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   370
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   371
  void verify();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   372
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   373
  // OopMap for frame
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   374
  virtual void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { ShouldNotReachHere(); }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   375
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   376
  // Debugging
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   377
  void print() const                             { print_on(tty); }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   378
  virtual void print_on(outputStream* st) const { CodeBlob::print_on(st); }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   379
  virtual void print_value_on(outputStream* st) const { CodeBlob::print_value_on(st); }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   380
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   381
  // Deal with Disassembler, VTune, Forte, JvmtiExport, MemoryService.
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   382
  static void trace_new_stub(RuntimeBlob* blob, const char* name1, const char* name2 = "");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   383
};
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   384
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
   385
class WhiteBox;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
// BufferBlob: used to hold non-relocatable machine code such as the interpreter, stubroutines, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   389
class BufferBlob: public RuntimeBlob {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  friend class VMStructs;
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   391
  friend class AdapterBlob;
49655
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   392
  friend class VtableBlob;
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   393
  friend class MethodHandlesAdapterBlob;
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
   394
  friend class WhiteBox;
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   395
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  BufferBlob(const char* name, int size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  BufferBlob(const char* name, int size, CodeBuffer* cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
52488
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   401
  // This ordinary operator delete is needed even though not used, so the
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   402
  // below two-argument operator delete will be treated as a placement
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   403
  // delete rather than an ordinary sized delete; see C++14 3.7.4.2/p2.
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   404
  void operator delete(void* p);
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26919
diff changeset
   405
  void* operator new(size_t s, unsigned size) throw();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  static BufferBlob* create(const char* name, int buffer_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  static BufferBlob* create(const char* name, CodeBuffer* cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  static void free(BufferBlob* buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  // Typing
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   415
  virtual bool is_buffer_blob() const            { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // GC/Verification support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  bool is_alive() const                          { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  void verify();
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   422
  void print_on(outputStream* st) const;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   423
  void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
//----------------------------------------------------------------------------------------------------
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   428
// AdapterBlob: used to hold C2I/I2C adapters
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   429
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   430
class AdapterBlob: public BufferBlob {
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   431
private:
6065
26016b8ed869 6970566: runThese fails with SIGSEGV
never
parents: 5702
diff changeset
   432
  AdapterBlob(int size, CodeBuffer* cb);
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   433
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   434
public:
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   435
  // Creation
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   436
  static AdapterBlob* create(CodeBuffer* cb);
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   437
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   438
  // Typing
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   439
  virtual bool is_adapter_blob() const { return true; }
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   440
};
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   441
49655
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   442
//---------------------------------------------------------------------------------------------------
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   443
class VtableBlob: public BufferBlob {
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   444
private:
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   445
  VtableBlob(const char*, int);
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   446
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   447
public:
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   448
  // Creation
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   449
  static VtableBlob* create(const char* name, int buffer_size);
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   450
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   451
  // Typing
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   452
  virtual bool is_vtable_blob() const { return true; }
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49373
diff changeset
   453
};
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   454
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   455
//----------------------------------------------------------------------------------------------------
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   456
// MethodHandlesAdapterBlob: used to hold MethodHandles adapters
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   457
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   458
class MethodHandlesAdapterBlob: public BufferBlob {
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   459
private:
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   460
  MethodHandlesAdapterBlob(int size)                 : BufferBlob("MethodHandles adapters", size) {}
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   461
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   462
public:
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   463
  // Creation
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   464
  static MethodHandlesAdapterBlob* create(int buffer_size);
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   465
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   466
  // Typing
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   467
  virtual bool is_method_handles_adapter_blob() const { return true; }
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   468
};
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   469
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   470
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   471
//----------------------------------------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
// RuntimeStub: describes stubs used by compiled code to call a (static) C++ runtime routine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   474
class RuntimeStub: public RuntimeBlob {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  RuntimeStub(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    int         frame_complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    bool        caller_must_gc_arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
52488
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   488
  // This ordinary operator delete is needed even though not used, so the
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   489
  // below two-argument operator delete will be treated as a placement
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   490
  // delete rather than an ordinary sized delete; see C++14 3.7.4.2/p2.
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   491
  void operator delete(void* p);
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 16368
diff changeset
   492
  void* operator new(size_t s, unsigned size) throw();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  static RuntimeStub* new_runtime_stub(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    const char* stub_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    int         frame_complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    bool        caller_must_gc_arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  bool is_runtime_stub() const                   { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   508
  address entry_point() const                    { return code_begin(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  // GC/Verification support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  bool is_alive() const                          { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  void verify();
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   515
  void print_on(outputStream* st) const;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   516
  void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
// Super-class for all blobs that exist in only one instance. Implements default behaviour.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   523
class SingletonBlob: public RuntimeBlob {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  friend class VMStructs;
9630
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   525
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   526
 protected:
52488
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   527
  // This ordinary operator delete is needed even though not used, so the
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   528
  // below two-argument operator delete will be treated as a placement
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   529
  // delete rather than an ordinary sized delete; see C++14 3.7.4.2/p2.
43081c586d77 8210803: Compilation failure in codeBlob.cpp for Windows 32-bit
rraghavan
parents: 52142
diff changeset
   530
  void operator delete(void* p);
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 16368
diff changeset
   531
  void* operator new(size_t s, unsigned size) throw();
9630
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   532
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   533
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
   SingletonBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
     const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
     CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
     int         header_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
     int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
     int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
     OopMapSet*  oop_maps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
   )
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   542
   : RuntimeBlob(name, cb, header_size, size, CodeOffsets::frame_never_safe, frame_size, oop_maps)
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   543
  {};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   545
  address entry_point()                          { return code_begin(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   547
  bool is_alive() const                          { return true; }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   548
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   549
  // GC/Verification support
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35542
diff changeset
   550
  void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f)  { /* nothing to do */ }
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   551
  void verify(); // does nothing
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   552
  void print_on(outputStream* st) const;
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   553
  void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
// DeoptimizationBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
class DeoptimizationBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  friend class VMStructs;
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   562
  friend class JVMCIVMStructs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  int _unpack_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  int _unpack_with_exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  int _unpack_with_reexecution;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  int _unpack_with_exception_in_tls;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   570
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   571
  // Offsets when JVMCI calls uncommon_trap.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   572
  int _uncommon_trap_offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   573
  int _implicit_exception_uncommon_trap_offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   574
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   575
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  DeoptimizationBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    int         unpack_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    int         unpack_with_exception_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    int         unpack_with_reexecution_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  static DeoptimizationBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    int         unpack_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    int         unpack_with_exception_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    int         unpack_with_reexecution_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  bool is_deoptimization_stub() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  bool exception_address_is_unpack_entry(address pc) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    address unpack_pc = unpack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    return (pc == unpack_pc || (pc + frame::pc_return_offset) == unpack_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* Nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  // Printing
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   609
  void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   611
  address unpack() const                         { return code_begin() + _unpack_offset;           }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   612
  address unpack_with_exception() const          { return code_begin() + _unpack_with_exception;   }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   613
  address unpack_with_reexecution() const        { return code_begin() + _unpack_with_reexecution; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  // Alternate entry point for C1 where the exception and issuing pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  // are in JavaThread::_exception_oop and JavaThread::_exception_pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  // instead of being in registers.  This is needed because C1 doesn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  // model exception paths in a way that keeps these registers free so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  // there may be live values in those registers during deopt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  void set_unpack_with_exception_in_tls_offset(int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    _unpack_with_exception_in_tls = offset;
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   622
    assert(code_contains(code_begin() + _unpack_with_exception_in_tls), "must be PC inside codeblob");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  }
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   624
  address unpack_with_exception_in_tls() const   { return code_begin() + _unpack_with_exception_in_tls; }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   625
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   626
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   627
  // Offsets when JVMCI calls uncommon_trap.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   628
  void set_uncommon_trap_offset(int offset) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   629
    _uncommon_trap_offset = offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   630
    assert(contains(code_begin() + _uncommon_trap_offset), "must be PC inside codeblob");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   631
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   632
  address uncommon_trap() const                  { return code_begin() + _uncommon_trap_offset; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   633
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   634
  void set_implicit_exception_uncommon_trap_offset(int offset) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   635
    _implicit_exception_uncommon_trap_offset = offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   636
    assert(contains(code_begin() + _implicit_exception_uncommon_trap_offset), "must be PC inside codeblob");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   637
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   638
  address implicit_exception_uncommon_trap() const { return code_begin() + _implicit_exception_uncommon_trap_offset; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   639
#endif // INCLUDE_JVMCI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
// UncommonTrapBlob (currently only used by Compiler 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
class UncommonTrapBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  UncommonTrapBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  static UncommonTrapBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  bool is_uncommon_trap_stub() const             { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
// ExceptionBlob: used for exception unwinding in compiled code (currently only used by Compiler 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
class ExceptionBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  ExceptionBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  static ExceptionBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  bool is_exception_stub() const                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
// SafepointBlob: handles illegal_instruction exceptions during a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
class SafepointBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  SafepointBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  static SafepointBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  bool is_safepoint_stub() const                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
   734
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52781
diff changeset
   735
#endif // SHARE_CODE_CODEBLOB_HPP