hotspot/src/share/vm/code/codeBlob.hpp
author twisti
Mon, 14 Dec 2015 17:02:02 -1000
changeset 35123 b0b89d83bcf5
parent 33160 c59f1676d27e
child 35542 9dccb7f9f656
permissions -rw-r--r--
8134994: use separate VMStructs databases for SA and JVMCI Reviewed-by: kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
     2
 * Copyright (c) 1998, 2015, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    25
#ifndef SHARE_VM_CODE_CODEBLOB_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    26
#define SHARE_VM_CODE_CODEBLOB_HPP
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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    29
#include "compiler/oopMap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    30
#include "runtime/frame.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    31
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    32
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    33
// CodeBlob Types
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    34
// Used in the CodeCache to assign CodeBlobs to different CodeHeaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    35
struct CodeBlobType {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    36
  enum {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    37
    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
    38
    MethodProfiled      = 1,    // Execution level 2 and 3 (profiled) nmethods
26919
361b4b4c92c0 8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents: 26796
diff changeset
    39
    NonNMethod          = 2,    // Non-nmethods like Buffers, Adapters and Runtime Stubs
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    40
    All                 = 3,    // All types (No code cache segmentation)
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
    41
    Pregenerated        = 4,    // Special blobs, managed by CodeCacheExtensions
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
    42
    NumTypes            = 5     // Number of CodeBlobTypes
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    43
  };
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    44
};
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 20707
diff changeset
    45
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// CodeBlob - superclass for all entries in the CodeCache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// Suptypes are:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//   nmethod            : Compiled Java methods (include method that calls to native code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//   RuntimeStub        : Call to VM runtime methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//   DeoptimizationBlob : Used for deoptimizatation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
//   ExceptionBlob      : Used for stack unrolling
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
//   SafepointBlob      : Used to handle illegal instruction exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// Layout:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//   - header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
//   - relocation
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
    59
//   - content space
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
    60
//     - instruction space
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
//   - data space
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
class DeoptimizationBlob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
class CodeBlob VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  friend class VMStructs;
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
    67
  friend class JVMCIVMStructs;
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
    68
  friend class CodeCacheDumper;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  const char* _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  int        _size;                              // total size of CodeBlob in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  int        _header_size;                       // size of header (depends on subclass)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  int        _relocation_size;                   // size of relocation
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
    75
  int        _content_offset;                    // offset to where content region begins (this includes consts, insts, stubs)
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
    76
  int        _code_offset;                       // offset to where instructions region begins (this includes insts, stubs)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  int        _frame_complete_offset;             // instruction offsets in [0.._frame_complete_offset) have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                                                 // not finished setting up their frame. Beware of pc's in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                                                 // that range. There is a similar range(s) on returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                                                 // which we don't detect.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  int        _data_offset;                       // offset to where data region begins
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  int        _frame_size;                        // size of stack frame
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 27642
diff changeset
    83
  ImmutableOopMapSet* _oop_maps;                 // OopMap for this CodeBlob
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 13887
diff changeset
    84
  CodeStrings _strings;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // Returns the space needed for CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  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
    89
  static unsigned int align_code_offset(int offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // a) simple CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // frame_complete is the offset from the beginning of the instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // to where the frame setup (from stackwalk viewpoint) is complete.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  CodeBlob(const char* name, int header_size, int size, int frame_complete, int locs_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // b) full CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  CodeBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    int         header_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    int         frame_complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    OopMapSet*  oop_maps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Deletion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Typing
9630
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   112
  virtual bool is_buffer_blob() const            { return false; }
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   113
  virtual bool is_nmethod() const                { return false; }
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   114
  virtual bool is_runtime_stub() const           { return false; }
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   115
  virtual bool is_deoptimization_stub() const    { return false; }
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   116
  virtual bool is_uncommon_trap_stub() const     { return false; }
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   117
  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
   118
  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
   119
  virtual bool is_adapter_blob() const                { return false; }
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   120
  virtual bool is_method_handles_adapter_blob() const { return false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  virtual bool is_compiled_by_c2() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  virtual bool is_compiled_by_c1() const         { return false; }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   124
  virtual bool is_compiled_by_jvmci() const      { return false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
4564
55dfb20908d0 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 3908
diff changeset
   126
  // Casting
55dfb20908d0 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 3908
diff changeset
   127
  nmethod* as_nmethod_or_null()                  { return is_nmethod() ? (nmethod*) this : NULL; }
55dfb20908d0 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 3908
diff changeset
   128
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // Boundaries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  address    header_begin() const                { return (address)    this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  address    header_end() const                  { return ((address)   this) + _header_size; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  relocInfo* relocation_begin() const            { return (relocInfo*) header_end(); };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  relocInfo* relocation_end() const              { return (relocInfo*)(header_end()   + _relocation_size); }
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   134
  address    content_begin() const               { return (address)    header_begin() + _content_offset; }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   135
  address    content_end() const                 { return (address)    header_begin() + _data_offset; }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   136
  address    code_begin() const                  { return (address)    header_begin() + _code_offset; }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   137
  address    code_end() const                    { return (address)    header_begin() + _data_offset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  address    data_begin() const                  { return (address)    header_begin() + _data_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  address    data_end() const                    { return (address)    header_begin() + _size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Offsets
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  int relocation_offset() const                  { return _header_size; }
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   143
  int content_offset() const                     { return _content_offset; }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   144
  int code_offset() const                        { return _code_offset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  int data_offset() const                        { return _data_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Sizes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  int size() const                               { return _size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  int header_size() const                        { return _header_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  int relocation_size() const                    { return (address) relocation_end() - (address) relocation_begin(); }
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   151
  int content_size() const                       { return           content_end()    -           content_begin();    }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   152
  int code_size() const                          { return           code_end()       -           code_begin();       }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   153
  int data_size() const                          { return           data_end()       -           data_begin();       }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // Containment
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   156
  bool blob_contains(address addr) const         { return header_begin()       <= addr && addr < data_end();       }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  bool relocation_contains(relocInfo* addr) const{ return relocation_begin()   <= addr && addr < relocation_end(); }
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   158
  bool content_contains(address addr) const      { return content_begin()      <= addr && addr < content_end();    }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   159
  bool code_contains(address addr) const         { return code_begin()         <= addr && addr < code_end();       }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   160
  bool data_contains(address addr) const         { return data_begin()         <= addr && addr < data_end();       }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   161
  bool contains(address addr) const              { return content_contains(addr); }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   162
  bool is_frame_complete_at(address addr) const  { return code_contains(addr) &&
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   163
                                                          addr >= code_begin() + _frame_complete_offset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // CodeCache support: really only used by the nmethods, but in order to get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // asserts and certain bookkeeping to work in the CodeCache they are defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // virtual here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  virtual bool is_zombie() const                 { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  virtual bool is_locked_by_vm() const           { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  virtual bool is_unloaded() const               { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  virtual bool is_not_entrant() const            { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  virtual bool is_alive() const                  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // OopMap for frame
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 27642
diff changeset
   178
  ImmutableOopMapSet* oop_maps() const           { return _oop_maps; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  void set_oop_maps(OopMapSet* p);
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 27642
diff changeset
   180
  const ImmutableOopMap* oop_map_for_return_address(address return_address);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  virtual void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { ShouldNotReachHere(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // Frame support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  int  frame_size() const                        { return _frame_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void set_frame_size(int size)                  { _frame_size = size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // Returns true, if the next frame is responsible for GC'ing oops passed as arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  virtual bool caller_must_gc_arguments(JavaThread* thread) const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // Naming
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  const char* name() const                       { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  void set_name(const char* name)                { _name = name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  virtual void verify();
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   196
  void print() const                             { print_on(tty); }
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   197
  virtual void print_on(outputStream* st) const;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   198
  virtual void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
9630
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   200
  // Deal with Disassembler, VTune, Forte, JvmtiExport, MemoryService.
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   201
  static void trace_new_stub(CodeBlob* blob, const char* name1, const char* name2 = "");
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   202
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // 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
   204
  virtual void print_block_comment(outputStream* stream, address block_begin) const {
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   205
    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
   206
    _strings.print_block_comment(stream, offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // Transfer ownership of comments to this CodeBlob
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 13887
diff changeset
   210
  void set_strings(CodeStrings& strings) {
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 13887
diff changeset
   211
    _strings.assign(strings);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  }
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   213
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   214
  static ByteSize name_field_offset() {
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   215
    return byte_offset_of(CodeBlob, _name);
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   216
  }
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   217
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   218
  static ByteSize oop_maps_field_offset() {
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   219
    return byte_offset_of(CodeBlob, _oop_maps);
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30590
diff changeset
   220
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
   223
class WhiteBox;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
// BufferBlob: used to hold non-relocatable machine code such as the interpreter, stubroutines, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
class BufferBlob: public CodeBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  friend class VMStructs;
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   229
  friend class AdapterBlob;
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   230
  friend class MethodHandlesAdapterBlob;
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
   231
  friend class WhiteBox;
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   232
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  BufferBlob(const char* name, int size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  BufferBlob(const char* name, int size, CodeBuffer* cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26919
diff changeset
   238
  void* operator new(size_t s, unsigned size) throw();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  static BufferBlob* create(const char* name, int buffer_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  static BufferBlob* create(const char* name, CodeBuffer* cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  static void free(BufferBlob* buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // Typing
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   248
  virtual bool is_buffer_blob() const            { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  // GC/Verification support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  bool is_alive() const                          { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  void verify();
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   255
  void print_on(outputStream* st) const;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   256
  void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
//----------------------------------------------------------------------------------------------------
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   261
// 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
   262
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   263
class AdapterBlob: public BufferBlob {
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   264
private:
6065
26016b8ed869 6970566: runThese fails with SIGSEGV
never
parents: 5702
diff changeset
   265
  AdapterBlob(int size, CodeBuffer* cb);
5050
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   266
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   267
public:
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   268
  // Creation
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   269
  static AdapterBlob* create(CodeBuffer* cb);
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   270
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   271
  // Typing
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   272
  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
   273
};
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   274
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   275
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   276
//----------------------------------------------------------------------------------------------------
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   277
// MethodHandlesAdapterBlob: used to hold MethodHandles adapters
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   278
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   279
class MethodHandlesAdapterBlob: public BufferBlob {
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   280
private:
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   281
  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
   282
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   283
public:
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   284
  // Creation
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   285
  static MethodHandlesAdapterBlob* create(int buffer_size);
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   286
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   287
  // Typing
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   288
  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
   289
};
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   290
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   291
47ecd86932ce 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 4584
diff changeset
   292
//----------------------------------------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
// RuntimeStub: describes stubs used by compiled code to call a (static) C++ runtime routine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
class RuntimeStub: public CodeBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  bool        _caller_must_gc_arguments;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  RuntimeStub(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    int         frame_complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    bool        caller_must_gc_arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 16368
diff changeset
   311
  void* operator new(size_t s, unsigned size) throw();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  static RuntimeStub* new_runtime_stub(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    const char* stub_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    int         frame_complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    bool        caller_must_gc_arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  bool is_runtime_stub() const                   { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  bool caller_must_gc_arguments(JavaThread* thread) const { return _caller_must_gc_arguments; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   330
  address entry_point()                          { return code_begin(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  // GC/Verification support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  bool is_alive() const                          { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  void verify();
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   337
  void print_on(outputStream* st) const;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   338
  void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
// Super-class for all blobs that exist in only one instance. Implements default behaviour.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
class SingletonBlob: public CodeBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  friend class VMStructs;
9630
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   347
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   348
 protected:
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 16368
diff changeset
   349
  void* operator new(size_t s, unsigned size) throw();
9630
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   350
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 7397
diff changeset
   351
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
   SingletonBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
     const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
     CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
     int         header_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
     int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
     int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
     OopMapSet*  oop_maps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
   )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
   : CodeBlob(name, cb, header_size, size, CodeOffsets::frame_never_safe, frame_size, oop_maps)
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   361
  {};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   363
  address entry_point()                          { return code_begin(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   365
  bool is_alive() const                          { return true; }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   366
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   367
  void verify(); // does nothing
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   368
  void print_on(outputStream* st) const;
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   369
  void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
// DeoptimizationBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
class DeoptimizationBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  friend class VMStructs;
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   378
  friend class JVMCIVMStructs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  int _unpack_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  int _unpack_with_exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  int _unpack_with_reexecution;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  int _unpack_with_exception_in_tls;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   386
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   387
  // Offsets when JVMCI calls uncommon_trap.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   388
  int _uncommon_trap_offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   389
  int _implicit_exception_uncommon_trap_offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   390
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   391
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  DeoptimizationBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    int         unpack_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    int         unpack_with_exception_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    int         unpack_with_reexecution_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  static DeoptimizationBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    int         unpack_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    int         unpack_with_exception_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    int         unpack_with_reexecution_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  bool is_deoptimization_stub() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  bool exception_address_is_unpack_entry(address pc) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    address unpack_pc = unpack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    return (pc == unpack_pc || (pc + frame::pc_return_offset) == unpack_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* Nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  // Printing
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 6065
diff changeset
   425
  void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   427
  address unpack() const                         { return code_begin() + _unpack_offset;           }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   428
  address unpack_with_exception() const          { return code_begin() + _unpack_with_exception;   }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   429
  address unpack_with_reexecution() const        { return code_begin() + _unpack_with_reexecution; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  // Alternate entry point for C1 where the exception and issuing pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  // are in JavaThread::_exception_oop and JavaThread::_exception_pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  // instead of being in registers.  This is needed because C1 doesn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  // model exception paths in a way that keeps these registers free so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // there may be live values in those registers during deopt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  void set_unpack_with_exception_in_tls_offset(int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    _unpack_with_exception_in_tls = offset;
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   438
    assert(code_contains(code_begin() + _unpack_with_exception_in_tls), "must be PC inside codeblob");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  }
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   440
  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
   441
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   442
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   443
  // Offsets when JVMCI calls uncommon_trap.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   444
  void set_uncommon_trap_offset(int offset) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   445
    _uncommon_trap_offset = offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   446
    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
   447
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   448
  address uncommon_trap() const                  { return code_begin() + _uncommon_trap_offset; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   449
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   450
  void set_implicit_exception_uncommon_trap_offset(int offset) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   451
    _implicit_exception_uncommon_trap_offset = offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   452
    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
   453
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   454
  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
   455
#endif // INCLUDE_JVMCI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
// UncommonTrapBlob (currently only used by Compiler 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
class UncommonTrapBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  UncommonTrapBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  static UncommonTrapBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  bool is_uncommon_trap_stub() const             { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
// ExceptionBlob: used for exception unwinding in compiled code (currently only used by Compiler 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
class ExceptionBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  ExceptionBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  static ExceptionBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  bool is_exception_stub() const                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
// SafepointBlob: handles illegal_instruction exceptions during a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
class SafepointBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  SafepointBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  static SafepointBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  bool is_safepoint_stub() const                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
   550
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
   551
#endif // SHARE_VM_CODE_CODEBLOB_HPP