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