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