hotspot/src/share/vm/asm/codeBuffer.hpp
author never
Thu, 15 Apr 2010 18:14:49 -0700
changeset 5334 b2d040a8d375
parent 4752 67a506670cd0
child 5686 5435e77aa3df
child 5547 f4b087cbb361
permissions -rw-r--r--
6939930: exception unwind changes in 6919934 hurts compilation speed Reviewed-by: twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
     2
 * Copyright 1997-2010 Sun Microsystems, Inc.  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
 *
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
class  CodeComments;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class  AbstractAssembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class  MacroAssembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class  PhaseCFG;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class  Compile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class  BufferBlob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class  CodeBuffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class CodeOffsets: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  enum Entries { Entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
                 Verified_Entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
                 Frame_Complete, // Offset in the code where the frame setup is (for forte stackwalks) is complete
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
                 OSR_Entry,
363
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 1
diff changeset
    39
                 Dtrace_trap = OSR_Entry,  // dtrace probes can never have an OSR entry so reuse it
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
                 Exceptions,     // Offset where exception handler lives
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
                 Deopt,          // Offset where deopt handler lives
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    42
                 DeoptMH,        // Offset where MethodHandle deopt handler lives
5334
b2d040a8d375 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 4752
diff changeset
    43
                 UnwindHandler,  // Offset to default unwind handler
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
                 max_Entries };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // special value to note codeBlobs where profile (forte) stack walking is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  // always dangerous and suspect.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  enum { frame_never_safe = -1 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  int _values[max_Entries];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  CodeOffsets() {
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    56
    _values[Entry         ] = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    _values[Verified_Entry] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    _values[Frame_Complete] = frame_never_safe;
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    59
    _values[OSR_Entry     ] = 0;
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    60
    _values[Exceptions    ] = -1;
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    61
    _values[Deopt         ] = -1;
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    62
    _values[DeoptMH       ] = -1;
5334
b2d040a8d375 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 4752
diff changeset
    63
    _values[UnwindHandler ] = -1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  int value(Entries e) { return _values[e]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  void set_value(Entries e, int val) { _values[e] = val; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// This class represents a stream of code and associated relocations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// There are a few in each CodeBuffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// They are filled concurrently, and concatenated at the end.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
class CodeSection VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  friend class CodeBuffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  typedef int csize_t;  // code size type; would be size_t except for history
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  address     _start;           // first byte of contents (instructions)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  address     _mark;            // user mark, usually an instruction beginning
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  address     _end;             // current end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  address     _limit;           // last possible (allocated) end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  relocInfo*  _locs_start;      // first byte of relocation information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  relocInfo*  _locs_end;        // first byte after relocation information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  relocInfo*  _locs_limit;      // first byte after relocation information buf
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  address     _locs_point;      // last relocated position (grows upward)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  bool        _locs_own;        // did I allocate the locs myself?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  bool        _frozen;          // no more expansion of this section
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  char        _index;           // my section number (SECT_INST, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  CodeBuffer* _outer;           // enclosing CodeBuffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // (Note:  _locs_point used to be called _last_reloc_offset.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  CodeSection() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    _start         = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    _mark          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    _end           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    _limit         = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    _locs_start    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    _locs_end      = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    _locs_limit    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    _locs_point    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    _locs_own      = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    _frozen        = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    debug_only(_index = -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    debug_only(_outer = (CodeBuffer*)badAddress);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void initialize_outer(CodeBuffer* outer, int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    _outer = outer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    _index = index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  void initialize(address start, csize_t size = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    assert(_start == NULL, "only one init step, please");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    _start         = start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    _mark          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    _end           = start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    _limit         = start + size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    _locs_point    = start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  void initialize_locs(int locs_capacity);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  void expand_locs(int new_capacity);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  void initialize_locs_from(const CodeSection* source_cs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // helper for CodeBuffer::expand()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  void take_over_code_from(CodeSection* cs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    _start      = cs->_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    _mark       = cs->_mark;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    _end        = cs->_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    _limit      = cs->_limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    _locs_point = cs->_locs_point;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  address     start() const         { return _start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  address     mark() const          { return _mark; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  address     end() const           { return _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  address     limit() const         { return _limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  csize_t     size() const          { return (csize_t)(_end - _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  csize_t     mark_off() const      { assert(_mark != NULL, "not an offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
                                      return (csize_t)(_mark - _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  csize_t     capacity() const      { return (csize_t)(_limit - _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  csize_t     remaining() const     { return (csize_t)(_limit - _end); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  relocInfo*  locs_start() const    { return _locs_start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  relocInfo*  locs_end() const      { return _locs_end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  int         locs_count() const    { return (int)(_locs_end - _locs_start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  relocInfo*  locs_limit() const    { return _locs_limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  address     locs_point() const    { return _locs_point; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  csize_t     locs_point_off() const{ return (csize_t)(_locs_point - _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  csize_t     locs_capacity() const { return (csize_t)(_locs_limit - _locs_start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  csize_t     locs_remaining()const { return (csize_t)(_locs_limit - _locs_end); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  int         index() const         { return _index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  bool        is_allocated() const  { return _start != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  bool        is_empty() const      { return _start == _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  bool        is_frozen() const     { return _frozen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  bool        has_locs() const      { return _locs_end != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  CodeBuffer* outer() const         { return _outer; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // is a given address in this section?  (2nd version is end-inclusive)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  bool contains(address pc) const   { return pc >= _start && pc <  _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  bool contains2(address pc) const  { return pc >= _start && pc <= _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  bool allocates(address pc) const  { return pc >= _start && pc <  _limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  bool allocates2(address pc) const { return pc >= _start && pc <= _limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  void    set_end(address pc)       { assert(allocates2(pc),""); _end = pc; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void    set_mark(address pc)      { assert(contains2(pc),"not in codeBuffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
                                      _mark = pc; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  void    set_mark_off(int offset)  { assert(contains2(offset+_start),"not in codeBuffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
                                      _mark = offset + _start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void    set_mark()                { _mark = _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  void    clear_mark()              { _mark = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  void    set_locs_end(relocInfo* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    assert(p <= locs_limit(), "locs data fits in allocated buffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    _locs_end = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  void    set_locs_point(address pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    assert(pc >= locs_point(), "relocation addr may not decrease");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    assert(allocates2(pc),     "relocation addr must be in this section");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    _locs_point = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // Share a scratch buffer for relocinfo.  (Hacky; saves a resource allocation.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  void initialize_shared_locs(relocInfo* buf, int length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Manage labels and their addresses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  address target(Label& L, address branch_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // Emit a relocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void relocate(address at, RelocationHolder const& rspec, int format = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  void relocate(address at,    relocInfo::relocType rtype, int format = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    if (rtype != relocInfo::none)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      relocate(at, Relocation::spec_simple(rtype), format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // alignment requirement for starting offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // Requirements are that the instruction area and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // stubs area must start on CodeEntryAlignment, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // the ctable on sizeof(jdouble)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  int alignment() const             { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // Slop between sections, used only when allocating temporary BufferBlob buffers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  static csize_t end_slop()         { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  csize_t align_at_start(csize_t off) const { return (csize_t) align_size_up(off, alignment()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // Mark a section frozen.  Assign its remaining space to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // the following section.  It will never expand after this point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  inline void freeze();         //  { _outer->freeze_section(this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // Ensure there's enough space left in the current section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // Return true if there was an expansion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  bool maybe_expand_to_ensure_remaining(csize_t amount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  void decode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  void dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  void print(const char* name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
#endif //PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
class CodeComment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
class CodeComments VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  CodeComment* _comments;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  CodeComments() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    _comments = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void add_comment(intptr_t offset, const char * comment) PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void print_block_comment(outputStream* stream, intptr_t offset)  PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  void assign(CodeComments& other)  PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void free() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
// A CodeBuffer describes a memory space into which assembly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
// code is generated.  This memory space usually occupies the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
// interior of a single BufferBlob, but in some cases it may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
// an arbitrary span of memory, even outside the code cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
// A code buffer comes in two variants:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
// (1) A CodeBuffer referring to an already allocated piece of memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
//     This is used to direct 'static' code generation (e.g. for interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
//     or stubroutine generation, etc.).  This code comes with NO relocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
//     information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
// (2) A CodeBuffer referring to a piece of memory allocated when the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
//     CodeBuffer is allocated.  This is used for nmethod generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
// The memory can be divided up into several parts called sections.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
// Each section independently accumulates code (or data) an relocations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
// Sections can grow (at the expense of a reallocation of the BufferBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
// and recopying of all active sections).  When the buffered code is finally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
// written to an nmethod (or other CodeBlob), the contents (code, data,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
// and relocations) of the sections are padded to an alignment and concatenated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// Instructions and data in one section can contain relocatable references to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// addresses in a sibling section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
class CodeBuffer: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  friend class CodeSection;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  // CodeBuffers must be allocated on the stack except for a single
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // special case during expansion which is handled internally.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // is done to guarantee proper cleanup of resources.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  void* operator new(size_t size) { return ResourceObj::operator new(size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  void  operator delete(void* p)  {        ResourceObj::operator delete(p); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  typedef int csize_t;  // code size type; would be size_t except for history
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    // Here is the list of all possible sections, in order of ascending address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    SECT_INSTS,               // Executable instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    SECT_STUBS,               // Outbound trampolines for supporting call sites.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    SECT_CONSTS,              // Non-instruction data:  Floats, jump tables, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    SECT_LIMIT, SECT_NONE = -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    sect_bits = 2,      // assert (SECT_LIMIT <= (1<<sect_bits))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    sect_mask = (1<<sect_bits)-1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  const char*  _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  CodeSection  _insts;              // instructions (the main section)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  CodeSection  _stubs;              // stubs (call site support), deopt, exception handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  CodeSection  _consts;             // constants, jump tables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  CodeBuffer*  _before_expand;  // dead buffer, from before the last expansion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  BufferBlob*  _blob;           // optional buffer in CodeCache for generated code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  address      _total_start;    // first address of combined memory buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  csize_t      _total_size;     // size in bytes of combined memory buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  OopRecorder* _oop_recorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  CodeComments _comments;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  OopRecorder  _default_oop_recorder;  // override with initialize_oop_recorder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  Arena*       _overflow_arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  address      _decode_begin;   // start address for decode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  address      decode_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  void initialize_misc(const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    // all pointers other than code_start/end and those inside the sections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    assert(name != NULL, "must have a name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    _name            = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    _before_expand   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    _blob            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    _oop_recorder    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    _decode_begin    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    _overflow_arena  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  void initialize(address code_start, csize_t code_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    _insts.initialize_outer(this,   SECT_INSTS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    _stubs.initialize_outer(this,   SECT_STUBS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    _consts.initialize_outer(this,  SECT_CONSTS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    _total_start = code_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    _total_size  = code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    // Initialize the main section:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    _insts.initialize(code_start, code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    assert(!_stubs.is_allocated(),  "no garbage here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    assert(!_consts.is_allocated(), "no garbage here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    _oop_recorder = &_default_oop_recorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  void initialize_section_size(CodeSection* cs, csize_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  void freeze_section(CodeSection* cs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  // helper for CodeBuffer::expand()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  void take_over_code_from(CodeBuffer* cs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  // ensure sections are disjoint, ordered, and contained in the blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  bool verify_section_allocation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // copies combined relocations to the blob, returns bytes copied
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // (if target is null, it is a dry run only, just for sizing)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  csize_t copy_relocations_to(CodeBlob* blob) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // copies combined code to the blob (assumes relocs are already in there)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  void copy_code_to(CodeBlob* blob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // moves code sections to new buffer (assumes relocs are already in there)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  void relocate_code_to(CodeBuffer* cb) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  // set up a model of the final layout of my contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  void compute_final_layout(CodeBuffer* dest) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // Expand the given section so at least 'amount' is remaining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // Creates a new, larger BufferBlob, and rewrites the code & relocs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  void expand(CodeSection* which_cs, csize_t amount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  // Helper for expand.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  csize_t figure_expanded_capacities(CodeSection* which_cs, csize_t amount, csize_t* new_capacity);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // (1) code buffer referring to pre-allocated instruction memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  CodeBuffer(address code_start, csize_t code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // (2) code buffer allocating codeBlob memory for code & relocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // info but with lazy initialization.  The name must be something
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // informative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  CodeBuffer(const char* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    initialize_misc(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // (3) code buffer allocating codeBlob memory for code & relocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // info.  The name must be something informative and code_size must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  // include both code and stubs sizes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  CodeBuffer(const char* name, csize_t code_size, csize_t locs_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    initialize_misc(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    initialize(code_size, locs_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  ~CodeBuffer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // Initialize a CodeBuffer constructed using constructor 2.  Using
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // constructor 3 is equivalent to calling constructor 2 and then
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // calling this method.  It's been factored out for convenience of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // construction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  void initialize(csize_t code_size, csize_t locs_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  CodeSection* insts()             { return &_insts; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  CodeSection* stubs()             { return &_stubs; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  CodeSection* consts()            { return &_consts; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // present sections in order; return NULL at end; insts is #0, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  CodeSection* code_section(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    // This makes the slightly questionable but portable assumption that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    // the various members (_insts, _stubs, etc.) are adjacent in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    // layout of CodeBuffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    CodeSection* cs = &_insts + n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    assert(cs->index() == n || !cs->is_allocated(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    return cs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  const CodeSection* code_section(int n) const {  // yucky const stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    return ((CodeBuffer*)this)->code_section(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  static const char* code_section_name(int n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  int section_index_of(address addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  bool contains(address addr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    // handy for debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    return section_index_of(addr) > SECT_NONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  // A stable mapping between 'locators' (small ints) and addresses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  static int locator_pos(int locator)   { return locator >> sect_bits; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  static int locator_sect(int locator)  { return locator &  sect_mask; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  static int locator(int pos, int sect) { return (pos << sect_bits) | sect; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  int        locator(address addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  address    locator_address(int locator) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  // Properties
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  const char* name() const                  { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  CodeBuffer* before_expand() const         { return _before_expand; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  BufferBlob* blob() const                  { return _blob; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  void    set_blob(BufferBlob* blob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  void   free_blob();                       // Free the blob, if we own one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // Properties relative to the insts section:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  address code_begin() const            { return _insts.start(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  address code_end() const              { return _insts.end();   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  void set_code_end(address end)        { _insts.set_end(end); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  address code_limit() const            { return _insts.limit(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  address inst_mark() const             { return _insts.mark(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  void set_inst_mark()                  { _insts.set_mark(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  void clear_inst_mark()                { _insts.clear_mark(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // is there anything in the buffer other than the current section?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  bool    is_pure() const               { return code_size() == total_code_size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  // size in bytes of output so far in the insts sections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  csize_t code_size() const             { return _insts.size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  // same as code_size(), except that it asserts there is no non-code here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  csize_t pure_code_size() const        { assert(is_pure(), "no non-code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
                                          return code_size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  // capacity in bytes of the insts sections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  csize_t code_capacity() const         { return _insts.capacity(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  // number of bytes remaining in the insts section
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  csize_t code_remaining() const        { return _insts.remaining(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  // is a given address in the insts section?  (2nd version is end-inclusive)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  bool code_contains(address pc) const  { return _insts.contains(pc); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  bool code_contains2(address pc) const { return _insts.contains2(pc); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  // allocated size of code in all sections, when aligned and concatenated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  // (this is the eventual state of the code in its final CodeBlob)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  csize_t total_code_size() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  // combined offset (relative to start of insts) of given address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  // as eventually found in the final CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  csize_t total_offset_of(address addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  // allocated size of all relocation data, including index, rounded up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  csize_t total_relocation_size() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  // allocated size of any and all recorded oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  csize_t total_oop_size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    OopRecorder* recorder = oop_recorder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    return (recorder == NULL)? 0: recorder->oop_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  // Configuration functions, called immediately after the CB is constructed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  // The section sizes are subtracted from the original insts section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // Note:  Call them in reverse section order, because each steals from insts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  void initialize_consts_size(csize_t size)            { initialize_section_size(&_consts,  size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  void initialize_stubs_size(csize_t size)             { initialize_section_size(&_stubs,   size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  // Override default oop recorder.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  void initialize_oop_recorder(OopRecorder* r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  OopRecorder* oop_recorder() const   { return _oop_recorder; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  CodeComments& comments()            { return _comments; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // Code generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  void relocate(address at, RelocationHolder const& rspec, int format = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    _insts.relocate(at, rspec, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  void relocate(address at,    relocInfo::relocType rtype, int format = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    _insts.relocate(at, rtype, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  // Management of overflow storage for binding of Labels.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  GrowableArray<int>* create_patch_overflow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  // NMethod generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  void copy_code_and_locs_to(CodeBlob* blob) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    assert(blob != NULL, "sane");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    copy_relocations_to(blob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    copy_code_to(blob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  void copy_oops_to(CodeBlob* blob) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    if (!oop_recorder()->is_unused()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      oop_recorder()->copy_to(blob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  // Transform an address from the code in this code buffer to a specified code buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  address transform_address(const CodeBuffer &cb, address addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  void block_comment(intptr_t offset, const char * comment) PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  // Printing / Decoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  // decodes from decode_begin() to code_end() and sets decode_begin to end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  void    decode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  void    decode_all();         // decodes all the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  void    skip_decode();        // sets decode_begin to code_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  void    print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  // The following header contains architecture-specific implementations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  #include "incls/_codeBuffer_pd.hpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
inline void CodeSection::freeze() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  _outer->freeze_section(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
inline bool CodeSection::maybe_expand_to_ensure_remaining(csize_t amount) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  if (remaining() < amount) { _outer->expand(this, amount); return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
}