hotspot/src/share/vm/code/codeBlob.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 3908 24b55ad4c228
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1998-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// CodeBlob - superclass for all entries in the CodeCache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// Suptypes are:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
//   nmethod            : Compiled Java methods (include method that calls to native code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
//   RuntimeStub        : Call to VM runtime methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//   DeoptimizationBlob : Used for deoptimizatation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//   ExceptionBlob      : Used for stack unrolling
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//   SafepointBlob      : Used to handle illegal instruction exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Layout:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//   - header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//   - relocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//   - instruction space
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//   - data space
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class DeoptimizationBlob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class CodeBlob VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  const char* _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  int        _size;                              // total size of CodeBlob in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  int        _header_size;                       // size of header (depends on subclass)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  int        _relocation_size;                   // size of relocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  int        _instructions_offset;               // offset to where instructions region begins
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  int        _frame_complete_offset;             // instruction offsets in [0.._frame_complete_offset) have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
                                                 // not finished setting up their frame. Beware of pc's in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                                                 // that range. There is a similar range(s) on returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
                                                 // which we don't detect.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  int        _data_offset;                       // offset to where data region begins
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  int        _oops_offset;                       // offset to where embedded oop table begins (inside data)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  int        _oops_length;                       // number of embedded oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  int        _frame_size;                        // size of stack frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  OopMapSet* _oop_maps;                          // OopMap for this CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  CodeComments _comments;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  friend class OopRecorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  void fix_oop_relocations(address begin, address end, bool initialize_immediates);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  inline void initialize_immediate_oop(oop* dest, jobject handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Returns the space needed for CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static unsigned int allocation_size(CodeBuffer* cb, int header_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // a) simple CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // frame_complete is the offset from the beginning of the instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // to where the frame setup (from stackwalk viewpoint) is complete.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  CodeBlob(const char* name, int header_size, int size, int frame_complete, int locs_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // b) full CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  CodeBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    int         header_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    int         frame_complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    OopMapSet*  oop_maps
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Deletion
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  void flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  virtual bool is_buffer_blob() const            { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  virtual bool is_nmethod() const                { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  virtual bool is_runtime_stub() const           { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  virtual bool is_deoptimization_stub() const    { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  virtual bool is_uncommon_trap_stub() const     { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  virtual bool is_exception_stub() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  virtual bool is_safepoint_stub() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  virtual bool is_adapter_blob() const           { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  virtual bool is_compiled_by_c2() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  virtual bool is_compiled_by_c1() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Boundaries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  address    header_begin() const                { return (address)    this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  address    header_end() const                  { return ((address)   this) + _header_size; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  relocInfo* relocation_begin() const            { return (relocInfo*) header_end(); };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  relocInfo* relocation_end() const              { return (relocInfo*)(header_end()   + _relocation_size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  address    instructions_begin() const          { return (address)    header_begin() + _instructions_offset;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  address    instructions_end() const            { return (address)    header_begin() + _data_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  address    data_begin() const                  { return (address)    header_begin() + _data_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  address    data_end() const                    { return (address)    header_begin() + _size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  oop*       oops_begin() const                  { return (oop*)      (header_begin() + _oops_offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  oop*       oops_end() const                    { return                oops_begin() + _oops_length; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // Offsets
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  int relocation_offset() const                  { return _header_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  int instructions_offset() const                { return _instructions_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  int data_offset() const                        { return _data_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  int oops_offset() const                        { return _oops_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Sizes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  int size() const                               { return _size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  int header_size() const                        { return _header_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  int relocation_size() const                    { return (address) relocation_end() - (address) relocation_begin(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  int instructions_size() const                  { return instructions_end() - instructions_begin();  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  int data_size() const                          { return data_end() - data_begin(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  int oops_size() const                          { return (address) oops_end() - (address) oops_begin(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // Containment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  bool blob_contains(address addr) const         { return header_begin()       <= addr && addr < data_end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  bool relocation_contains(relocInfo* addr) const{ return relocation_begin()   <= addr && addr < relocation_end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  bool instructions_contains(address addr) const { return instructions_begin() <= addr && addr < instructions_end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  bool data_contains(address addr) const         { return data_begin()         <= addr && addr < data_end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  bool oops_contains(oop* addr) const            { return oops_begin()         <= addr && addr < oops_end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  bool contains(address addr) const              { return instructions_contains(addr); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  bool is_frame_complete_at(address addr) const  { return instructions_contains(addr) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
                                                          addr >= instructions_begin() + _frame_complete_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Relocation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  void fix_oop_relocations(address begin, address end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    fix_oop_relocations(begin, end, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  void fix_oop_relocations() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    fix_oop_relocations(NULL, NULL, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  relocInfo::relocType reloc_type_for_address(address pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  bool is_at_poll_return(address pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  bool is_at_poll_or_poll_return(address pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // Support for oops in scopes and relocs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Note: index 0 is reserved for null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  oop  oop_at(int index) const                   { return index == 0? (oop)NULL: *oop_addr_at(index); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  oop* oop_addr_at(int index) const{             // for GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    // relocation indexes are biased by 1 (because 0 is reserved)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    assert(index > 0 && index <= _oops_length, "must be a valid non-zero index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    return &oops_begin()[index-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  void copy_oops(GrowableArray<jobject>* oops);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // CodeCache support: really only used by the nmethods, but in order to get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // asserts and certain bookkeeping to work in the CodeCache they are defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // virtual here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  virtual bool is_zombie() const                 { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  virtual bool is_locked_by_vm() const           { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  virtual bool is_unloaded() const               { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  virtual bool is_not_entrant() const            { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  virtual bool is_alive() const                  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  virtual void do_unloading(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
                            OopClosure* keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
                            bool unloading_occurred);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  virtual void oops_do(OopClosure* f) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // OopMap for frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  OopMapSet* oop_maps() const                    { return _oop_maps; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  void set_oop_maps(OopMapSet* p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  OopMap* oop_map_for_return_address(address return_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  virtual void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { ShouldNotReachHere(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // Frame support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  int  frame_size() const                        { return _frame_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  void set_frame_size(int size)                  { _frame_size = size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // Returns true, if the next frame is responsible for GC'ing oops passed as arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  virtual bool caller_must_gc_arguments(JavaThread* thread) const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Naming
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  const char* name() const                       { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  void set_name(const char* name)                { _name = name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  virtual void verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  virtual void print() const                     PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  virtual void print_value_on(outputStream* st) const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Print the comment associated with offset on stream, if there is one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  void print_block_comment(outputStream* stream, intptr_t offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    _comments.print_block_comment(stream, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // Transfer ownership of comments to this CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  void set_comments(CodeComments& comments) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    _comments.assign(comments);
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
// BufferBlob: used to hold non-relocatable machine code such as the interpreter, stubroutines, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
class BufferBlob: public CodeBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  BufferBlob(const char* name, int size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  BufferBlob(const char* name, int size, CodeBuffer* cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  void* operator new(size_t s, unsigned size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  static BufferBlob* create(const char* name, int buffer_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  static BufferBlob* create(const char* name, CodeBuffer* cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  static void free(BufferBlob* buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  bool is_buffer_blob() const                    { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  bool is_adapter_blob() const;
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
  void do_unloading(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
                    OopClosure* keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
                    bool unloading_occurred)     { /* do nothing */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void oops_do(OopClosure* f)                    { /* do nothing*/ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  void print() const                             PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  void print_value_on(outputStream* st) const    PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
// RuntimeStub: describes stubs used by compiled code to call a (static) C++ runtime routine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
class RuntimeStub: public CodeBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  bool        _caller_must_gc_arguments;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  RuntimeStub(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    int         frame_complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    bool        caller_must_gc_arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  void* operator new(size_t s, unsigned size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  static RuntimeStub* new_runtime_stub(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    const char* stub_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    int         frame_complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    bool        caller_must_gc_arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  bool is_runtime_stub() const                   { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  bool caller_must_gc_arguments(JavaThread* thread) const { return _caller_must_gc_arguments; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  address entry_point()                          { return instructions_begin(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // GC/Verification support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  bool is_alive() const                          { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  void do_unloading(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
                    OopClosure* keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
                    bool unloading_occurred)     { /* do nothing */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  void oops_do(OopClosure* f) { /* do-nothing*/ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  void verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  void print() const                             PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  void print_value_on(outputStream* st) const    PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
// Super-class for all blobs that exist in only one instance. Implements default behaviour.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
class SingletonBlob: public CodeBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
   SingletonBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
     const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
     CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
     int         header_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
     int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
     int         frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
     OopMapSet*  oop_maps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
   )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
   : CodeBlob(name, cb, header_size, size, CodeOffsets::frame_never_safe, frame_size, oop_maps)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
   {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
   bool is_alive() const                         { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
   void do_unloading(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
                     OopClosure* keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
                     bool unloading_occurred)    { /* do-nothing*/ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
   void verify(); // does nothing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
   void print() const                            PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
   void print_value_on(outputStream* st) const   PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
// DeoptimizationBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
class DeoptimizationBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  int _unpack_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  int _unpack_with_exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  int _unpack_with_reexecution;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  int _unpack_with_exception_in_tls;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  DeoptimizationBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    int         unpack_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    int         unpack_with_exception_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    int         unpack_with_reexecution_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  void* operator new(size_t s, unsigned size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  static DeoptimizationBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    int         unpack_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    int         unpack_with_exception_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    int         unpack_with_reexecution_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  bool is_deoptimization_stub() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  const DeoptimizationBlob *as_deoptimization_stub() const { return this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  bool exception_address_is_unpack_entry(address pc) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    address unpack_pc = unpack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    return (pc == unpack_pc || (pc + frame::pc_return_offset) == unpack_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f) { /* Nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // Iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  void oops_do(OopClosure* f) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  void print_value_on(outputStream* st) const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  address unpack() const                         { return instructions_begin() + _unpack_offset;           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  address unpack_with_exception() const          { return instructions_begin() + _unpack_with_exception;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  address unpack_with_reexecution() const        { return instructions_begin() + _unpack_with_reexecution; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // Alternate entry point for C1 where the exception and issuing pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // are in JavaThread::_exception_oop and JavaThread::_exception_pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // instead of being in registers.  This is needed because C1 doesn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // model exception paths in a way that keeps these registers free so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // there may be live values in those registers during deopt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  void set_unpack_with_exception_in_tls_offset(int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    _unpack_with_exception_in_tls = offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    assert(contains(instructions_begin() + _unpack_with_exception_in_tls), "must be PC inside codeblob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  address unpack_with_exception_in_tls() const   { return instructions_begin() + _unpack_with_exception_in_tls;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
// UncommonTrapBlob (currently only used by Compiler 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
class UncommonTrapBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  UncommonTrapBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  void* operator new(size_t s, unsigned size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  static UncommonTrapBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  bool is_uncommon_trap_stub() const             { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // Iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  void oops_do(OopClosure* f) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
// ExceptionBlob: used for exception unwinding in compiled code (currently only used by Compiler 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
class ExceptionBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  ExceptionBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  void* operator new(size_t s, unsigned size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  static ExceptionBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  bool is_exception_stub() const                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  // Iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  void oops_do(OopClosure* f) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
// SafepointBlob: handles illegal_instruction exceptions during a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
class SafepointBlob: public SingletonBlob {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  // Creation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  SafepointBlob(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    int         size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  void* operator new(size_t s, unsigned size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  static SafepointBlob* create(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    CodeBuffer* cb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    OopMapSet*  oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    int         frame_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  // GC for args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  void preserve_callee_argument_oops(frame fr, const RegisterMap* reg_map, OopClosure* f)  { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  // Typing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  bool is_safepoint_stub() const                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  // Iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  void oops_do(OopClosure* f) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
};