src/hotspot/share/asm/codeBuffer.hpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 57834 e686b661fa05
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50528
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5334
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5334
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5334
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50528
diff changeset
    25
#ifndef SHARE_ASM_CODEBUFFER_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50528
diff changeset
    26
#define SHARE_ASM_CODEBUFFER_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    28
#include "code/oopRecorder.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    29
#include "code/relocInfo.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    30
#include "utilities/align.hpp"
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
    31
#include "utilities/debug.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 38133
diff changeset
    32
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    33
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
    34
class CodeStrings;
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14625
diff changeset
    35
class PhaseCFG;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14625
diff changeset
    36
class Compile;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14625
diff changeset
    37
class BufferBlob;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14625
diff changeset
    38
class CodeBuffer;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14625
diff changeset
    39
class Label;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class CodeOffsets: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  enum Entries { Entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
                 Verified_Entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
                 Frame_Complete, // Offset in the code where the frame setup is (for forte stackwalks) is complete
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
                 OSR_Entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
                 Exceptions,     // Offset where exception handler lives
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
                 Deopt,          // Offset where deopt handler lives
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    49
                 DeoptMH,        // Offset where MethodHandle deopt handler lives
5334
b2d040a8d375 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 4752
diff changeset
    50
                 UnwindHandler,  // Offset to default unwind handler
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
                 max_Entries };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // special value to note codeBlobs where profile (forte) stack walking is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // always dangerous and suspect.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  enum { frame_never_safe = -1 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  int _values[max_Entries];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  CodeOffsets() {
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    63
    _values[Entry         ] = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    _values[Verified_Entry] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    _values[Frame_Complete] = frame_never_safe;
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    66
    _values[OSR_Entry     ] = 0;
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    67
    _values[Exceptions    ] = -1;
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    68
    _values[Deopt         ] = -1;
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
    69
    _values[DeoptMH       ] = -1;
5334
b2d040a8d375 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 4752
diff changeset
    70
    _values[UnwindHandler ] = -1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  int value(Entries e) { return _values[e]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  void set_value(Entries e, int val) { _values[e] = val; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
// This class represents a stream of code and associated relocations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// There are a few in each CodeBuffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// They are filled concurrently, and concatenated at the end.
49373
47b5652f2928 8199283: Remove ValueObj class for allocation subclassing for compiler code
coleenp
parents: 49161
diff changeset
    80
class CodeSection {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  friend class CodeBuffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  typedef int csize_t;  // code size type; would be size_t except for history
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  address     _start;           // first byte of contents (instructions)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  address     _mark;            // user mark, usually an instruction beginning
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  address     _end;             // current end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  address     _limit;           // last possible (allocated) end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  relocInfo*  _locs_start;      // first byte of relocation information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  relocInfo*  _locs_end;        // first byte after relocation information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  relocInfo*  _locs_limit;      // first byte after relocation information buf
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  address     _locs_point;      // last relocated position (grows upward)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  bool        _locs_own;        // did I allocate the locs myself?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  bool        _frozen;          // no more expansion of this section
41685
7df85c88cdc0 8166562: C2: Suppress relocations in scratch emit.
goetz
parents: 40010
diff changeset
    96
  bool        _scratch_emit;    // Buffer is used for scratch emit, don't relocate.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  char        _index;           // my section number (SECT_INST, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  CodeBuffer* _outer;           // enclosing CodeBuffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // (Note:  _locs_point used to be called _last_reloc_offset.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  CodeSection() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    _start         = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    _mark          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    _end           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    _limit         = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    _locs_start    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    _locs_end      = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    _locs_limit    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    _locs_point    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    _locs_own      = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    _frozen        = false;
41685
7df85c88cdc0 8166562: C2: Suppress relocations in scratch emit.
goetz
parents: 40010
diff changeset
   113
    _scratch_emit  = false;
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
   114
    debug_only(_index = (char)-1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    debug_only(_outer = (CodeBuffer*)badAddress);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  void initialize_outer(CodeBuffer* outer, int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    _outer = outer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    _index = index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  void initialize(address start, csize_t size = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    assert(_start == NULL, "only one init step, please");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    _start         = start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    _mark          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    _end           = start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    _limit         = start + size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    _locs_point    = start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  void initialize_locs(int locs_capacity);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  void expand_locs(int new_capacity);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  void initialize_locs_from(const CodeSection* source_cs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // helper for CodeBuffer::expand()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  void take_over_code_from(CodeSection* cs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    _start      = cs->_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    _mark       = cs->_mark;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    _end        = cs->_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    _limit      = cs->_limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    _locs_point = cs->_locs_point;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  address     start() const         { return _start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  address     mark() const          { return _mark; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  address     end() const           { return _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  address     limit() const         { return _limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  csize_t     size() const          { return (csize_t)(_end - _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  csize_t     mark_off() const      { assert(_mark != NULL, "not an offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
                                      return (csize_t)(_mark - _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  csize_t     capacity() const      { return (csize_t)(_limit - _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  csize_t     remaining() const     { return (csize_t)(_limit - _end); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  relocInfo*  locs_start() const    { return _locs_start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  relocInfo*  locs_end() const      { return _locs_end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  int         locs_count() const    { return (int)(_locs_end - _locs_start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  relocInfo*  locs_limit() const    { return _locs_limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  address     locs_point() const    { return _locs_point; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  csize_t     locs_point_off() const{ return (csize_t)(_locs_point - _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  csize_t     locs_capacity() const { return (csize_t)(_locs_limit - _locs_start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  csize_t     locs_remaining()const { return (csize_t)(_locs_limit - _locs_end); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  int         index() const         { return _index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  bool        is_allocated() const  { return _start != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  bool        is_empty() const      { return _start == _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  bool        is_frozen() const     { return _frozen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  bool        has_locs() const      { return _locs_end != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
41685
7df85c88cdc0 8166562: C2: Suppress relocations in scratch emit.
goetz
parents: 40010
diff changeset
   172
  // Mark scratch buffer.
7df85c88cdc0 8166562: C2: Suppress relocations in scratch emit.
goetz
parents: 40010
diff changeset
   173
  void        set_scratch_emit()    { _scratch_emit = true; }
7df85c88cdc0 8166562: C2: Suppress relocations in scratch emit.
goetz
parents: 40010
diff changeset
   174
  bool        scratch_emit()        { return _scratch_emit; }
7df85c88cdc0 8166562: C2: Suppress relocations in scratch emit.
goetz
parents: 40010
diff changeset
   175
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  CodeBuffer* outer() const         { return _outer; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // is a given address in this section?  (2nd version is end-inclusive)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  bool contains(address pc) const   { return pc >= _start && pc <  _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  bool contains2(address pc) const  { return pc >= _start && pc <= _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  bool allocates(address pc) const  { return pc >= _start && pc <  _limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  bool allocates2(address pc) const { return pc >= _start && pc <= _limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
   184
  void    set_end(address pc)       { assert(allocates2(pc), "not in CodeBuffer memory: " INTPTR_FORMAT " <= " INTPTR_FORMAT " <= " INTPTR_FORMAT, p2i(_start), p2i(pc), p2i(_limit)); _end = pc; }
6772
2563324665d5 6829194: JSR 292 needs to support compressed oops
twisti
parents: 6432
diff changeset
   185
  void    set_mark(address pc)      { assert(contains2(pc), "not in codeBuffer");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
                                      _mark = pc; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  void    set_mark_off(int offset)  { assert(contains2(offset+_start),"not in codeBuffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
                                      _mark = offset + _start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void    set_mark()                { _mark = _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  void    clear_mark()              { _mark = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  void    set_locs_end(relocInfo* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    assert(p <= locs_limit(), "locs data fits in allocated buffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    _locs_end = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void    set_locs_point(address pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    assert(pc >= locs_point(), "relocation addr may not decrease");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    assert(allocates2(pc),     "relocation addr must be in this section");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    _locs_point = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   202
  // Code emission
14625
b02f361c324e 8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents: 13887
diff changeset
   203
  void emit_int8 ( int8_t  x)  { *((int8_t*)  end()) = x; set_end(end() + sizeof(int8_t)); }
b02f361c324e 8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents: 13887
diff changeset
   204
  void emit_int16( int16_t x)  { *((int16_t*) end()) = x; set_end(end() + sizeof(int16_t)); }
b02f361c324e 8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents: 13887
diff changeset
   205
  void emit_int32( int32_t x)  { *((int32_t*) end()) = x; set_end(end() + sizeof(int32_t)); }
b02f361c324e 8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents: 13887
diff changeset
   206
  void emit_int64( int64_t x)  { *((int64_t*) end()) = x; set_end(end() + sizeof(int64_t)); }
b02f361c324e 8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents: 13887
diff changeset
   207
b02f361c324e 8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents: 13887
diff changeset
   208
  void emit_float( jfloat  x)  { *((jfloat*)  end()) = x; set_end(end() + sizeof(jfloat)); }
b02f361c324e 8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents: 13887
diff changeset
   209
  void emit_double(jdouble x)  { *((jdouble*) end()) = x; set_end(end() + sizeof(jdouble)); }
b02f361c324e 8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents: 13887
diff changeset
   210
  void emit_address(address x) { *((address*) end()) = x; set_end(end() + sizeof(address)); }
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   211
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Share a scratch buffer for relocinfo.  (Hacky; saves a resource allocation.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  void initialize_shared_locs(relocInfo* buf, int length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // Manage labels and their addresses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  address target(Label& L, address branch_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // Emit a relocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  void relocate(address at, RelocationHolder const& rspec, int format = 0);
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33593
diff changeset
   220
  void relocate(address at,    relocInfo::relocType rtype, int format = 0, jint method_index = 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // alignment requirement for starting offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Requirements are that the instruction area and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // stubs area must start on CodeEntryAlignment, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // the ctable on sizeof(jdouble)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  int alignment() const             { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Slop between sections, used only when allocating temporary BufferBlob buffers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  static csize_t end_slop()         { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 41685
diff changeset
   231
  csize_t align_at_start(csize_t off) const { return (csize_t) align_up(off, alignment()); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // Mark a section frozen.  Assign its remaining space to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // the following section.  It will never expand after this point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  inline void freeze();         //  { _outer->freeze_section(this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // Ensure there's enough space left in the current section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  // Return true if there was an expansion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  bool maybe_expand_to_ensure_remaining(csize_t amount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void decode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void print(const char* name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
#endif //PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   247
class CodeString;
49373
47b5652f2928 8199283: Remove ValueObj class for allocation subclassing for compiler code
coleenp
parents: 49161
diff changeset
   248
class CodeStrings {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
#ifndef PRODUCT
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   251
  CodeString* _strings;
57834
e686b661fa05 8224624: Inefficiencies in CodeStrings::add_comment cause timeouts
thartmann
parents: 55329
diff changeset
   252
  CodeString* _strings_last;
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   253
#ifdef ASSERT
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   254
  // Becomes true after copy-out, forbids further use.
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   255
  bool _defunct; // Zero bit pattern is "valid", see memset call in decode_env::decode_env
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   256
#endif
31599
f1b42743d3ee 8081406: cleanup and minor extensions of the debugging facilities in CodeStrings
bdelsart
parents: 29193
diff changeset
   257
  static const char* _prefix; // defaults to " ;; "
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   260
  CodeString* find(intptr_t offset) const;
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   261
  CodeString* find_last(intptr_t offset) const;
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   262
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   263
  void set_null_and_invalidate() {
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   264
#ifndef PRODUCT
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   265
    _strings = NULL;
57834
e686b661fa05 8224624: Inefficiencies in CodeStrings::add_comment cause timeouts
thartmann
parents: 55329
diff changeset
   266
    _strings_last = NULL;
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   267
#ifdef ASSERT
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   268
    _defunct = true;
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   269
#endif
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   270
#endif
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   271
  }
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   272
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
public:
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   274
  CodeStrings() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
#ifndef PRODUCT
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   276
    _strings = NULL;
57834
e686b661fa05 8224624: Inefficiencies in CodeStrings::add_comment cause timeouts
thartmann
parents: 55329
diff changeset
   277
    _strings_last = NULL;
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   278
#ifdef ASSERT
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   279
    _defunct = false;
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   280
#endif
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   281
#endif
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   282
  }
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   283
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   284
  bool is_null() {
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   285
#ifdef ASSERT
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   286
    return _strings == NULL;
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   287
#else
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   288
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   292
  const char* add_string(const char * string) PRODUCT_RETURN_(return NULL;);
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   293
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  void add_comment(intptr_t offset, const char * comment) PRODUCT_RETURN;
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   295
  bool has_block_comment(intptr_t offset) const;
13887
89b873bcc55b 7200163: add CodeComments functionality to assember stubs
kvn
parents: 13728
diff changeset
   296
  void print_block_comment(outputStream* stream, intptr_t offset) const PRODUCT_RETURN;
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   297
  // MOVE strings from other to this; invalidate other.
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   298
  void assign(CodeStrings& other)  PRODUCT_RETURN;
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   299
  // COPY strings from other to this; leave other valid.
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   300
  void copy(CodeStrings& other)  PRODUCT_RETURN;
31599
f1b42743d3ee 8081406: cleanup and minor extensions of the debugging facilities in CodeStrings
bdelsart
parents: 29193
diff changeset
   301
  // FREE strings; invalidate this.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  void free() PRODUCT_RETURN;
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   303
31599
f1b42743d3ee 8081406: cleanup and minor extensions of the debugging facilities in CodeStrings
bdelsart
parents: 29193
diff changeset
   304
  // Guarantee that _strings are used at most once; assign and free invalidate a buffer.
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   305
  inline void check_valid() const {
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   306
#ifdef ASSERT
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   307
    assert(!_defunct, "Use of invalid CodeStrings");
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   308
#endif
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   309
  }
31599
f1b42743d3ee 8081406: cleanup and minor extensions of the debugging facilities in CodeStrings
bdelsart
parents: 29193
diff changeset
   310
f1b42743d3ee 8081406: cleanup and minor extensions of the debugging facilities in CodeStrings
bdelsart
parents: 29193
diff changeset
   311
  static void set_prefix(const char *prefix) {
f1b42743d3ee 8081406: cleanup and minor extensions of the debugging facilities in CodeStrings
bdelsart
parents: 29193
diff changeset
   312
#ifndef PRODUCT
f1b42743d3ee 8081406: cleanup and minor extensions of the debugging facilities in CodeStrings
bdelsart
parents: 29193
diff changeset
   313
    _prefix = prefix;
f1b42743d3ee 8081406: cleanup and minor extensions of the debugging facilities in CodeStrings
bdelsart
parents: 29193
diff changeset
   314
#endif
f1b42743d3ee 8081406: cleanup and minor extensions of the debugging facilities in CodeStrings
bdelsart
parents: 29193
diff changeset
   315
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
// A CodeBuffer describes a memory space into which assembly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
// code is generated.  This memory space usually occupies the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
// interior of a single BufferBlob, but in some cases it may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
// an arbitrary span of memory, even outside the code cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
// A code buffer comes in two variants:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
// (1) A CodeBuffer referring to an already allocated piece of memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
//     This is used to direct 'static' code generation (e.g. for interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
//     or stubroutine generation, etc.).  This code comes with NO relocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
//     information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// (2) A CodeBuffer referring to a piece of memory allocated when the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
//     CodeBuffer is allocated.  This is used for nmethod generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
// The memory can be divided up into several parts called sections.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
// Each section independently accumulates code (or data) an relocations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
// Sections can grow (at the expense of a reallocation of the BufferBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
// and recopying of all active sections).  When the buffered code is finally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
// written to an nmethod (or other CodeBlob), the contents (code, data,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
// and relocations) of the sections are padded to an alignment and concatenated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
// Instructions and data in one section can contain relocatable references to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
// addresses in a sibling section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
class CodeBuffer: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  friend class CodeSection;
50528
1fd4844371bb 8204680: Disassembly does not display code strings in stubs
aph
parents: 50104
diff changeset
   344
  friend class StubCodeGenerator;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  // CodeBuffers must be allocated on the stack except for a single
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  // special case during expansion which is handled internally.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // is done to guarantee proper cleanup of resources.
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 16368
diff changeset
   350
  void* operator new(size_t size) throw() { return ResourceObj::operator new(size); }
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 16368
diff changeset
   351
  void  operator delete(void* p)          { ShouldNotCallThis(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  typedef int csize_t;  // code size type; would be size_t except for history
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  enum {
6432
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   356
    // Here is the list of all possible sections.  The order reflects
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   357
    // the final layout.
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   358
    SECT_FIRST = 0,
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   359
    SECT_CONSTS = SECT_FIRST, // Non-instruction data:  Floats, jump tables, etc.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    SECT_INSTS,               // Executable instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    SECT_STUBS,               // Outbound trampolines for supporting call sites.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    SECT_LIMIT, SECT_NONE = -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    sect_bits = 2,      // assert (SECT_LIMIT <= (1<<sect_bits))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    sect_mask = (1<<sect_bits)-1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  const char*  _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
6432
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   373
  CodeSection  _consts;             // constants, jump tables
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  CodeSection  _insts;              // instructions (the main section)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  CodeSection  _stubs;              // stubs (call site support), deopt, exception handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  CodeBuffer*  _before_expand;  // dead buffer, from before the last expansion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  BufferBlob*  _blob;           // optional buffer in CodeCache for generated code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  address      _total_start;    // first address of combined memory buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  csize_t      _total_size;     // size in bytes of combined memory buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  OopRecorder* _oop_recorder;
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   384
  CodeStrings  _code_strings;
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   385
  bool         _collect_comments;      // Indicate if we need to collect block comments at all.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  OopRecorder  _default_oop_recorder;  // override with initialize_oop_recorder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  Arena*       _overflow_arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
49161
8f1bc5a0d16d 8196064: AArch64: Merging ld/st into ldp/stp in macro-assembler
zyao
parents: 47216
diff changeset
   389
  address      _last_insn;      // used to merge consecutive memory barriers, loads or stores.
33193
c7ffe5c06513 8139041: Redundant DMB instructions
aph
parents: 33160
diff changeset
   390
50104
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   391
#if INCLUDE_AOT
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   392
  bool         _immutable_PIC;
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   393
#endif
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   394
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  address      _decode_begin;   // start address for decode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  address      decode_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  void initialize_misc(const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    // all pointers other than code_start/end and those inside the sections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    assert(name != NULL, "must have a name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    _name            = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    _before_expand   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    _blob            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    _oop_recorder    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    _decode_begin    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    _overflow_arena  = NULL;
31599
f1b42743d3ee 8081406: cleanup and minor extensions of the debugging facilities in CodeStrings
bdelsart
parents: 29193
diff changeset
   407
    _code_strings    = CodeStrings();
49161
8f1bc5a0d16d 8196064: AArch64: Merging ld/st into ldp/stp in macro-assembler
zyao
parents: 47216
diff changeset
   408
    _last_insn       = NULL;
50104
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   409
#if INCLUDE_AOT
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   410
    _immutable_PIC   = false;
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   411
#endif
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   412
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   413
    // Collect block comments, but restrict collection to cases where a disassembly is output.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   414
    _collect_comments = ( PrintAssembly
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   415
                       || PrintStubCode
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   416
                       || PrintMethodHandleStubs
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   417
                       || PrintInterpreter
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   418
                       || PrintSignatureHandlers
55329
03af124751f5 8225429: Regression in disassembly quality
aph
parents: 54960
diff changeset
   419
                       || UnlockDiagnosticVMOptions
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   420
                        );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  void initialize(address code_start, csize_t code_size) {
6432
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   424
    _consts.initialize_outer(this,  SECT_CONSTS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    _insts.initialize_outer(this,   SECT_INSTS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    _stubs.initialize_outer(this,   SECT_STUBS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    _total_start = code_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    _total_size  = code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    // Initialize the main section:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    _insts.initialize(code_start, code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    assert(!_stubs.is_allocated(),  "no garbage here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    assert(!_consts.is_allocated(), "no garbage here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    _oop_recorder = &_default_oop_recorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  void initialize_section_size(CodeSection* cs, csize_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  void freeze_section(CodeSection* cs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // helper for CodeBuffer::expand()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  void take_over_code_from(CodeBuffer* cs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  // ensure sections are disjoint, ordered, and contained in the blob
10983
9ab65f4cec18 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 8921
diff changeset
   444
  void verify_section_allocation();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  // copies combined relocations to the blob, returns bytes copied
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // (if target is null, it is a dry run only, just for sizing)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  csize_t copy_relocations_to(CodeBlob* blob) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  // copies combined code to the blob (assumes relocs are already in there)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  void copy_code_to(CodeBlob* blob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  // moves code sections to new buffer (assumes relocs are already in there)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  void relocate_code_to(CodeBuffer* cb) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  // set up a model of the final layout of my contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  void compute_final_layout(CodeBuffer* dest) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // Expand the given section so at least 'amount' is remaining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  // Creates a new, larger BufferBlob, and rewrites the code & relocs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  void expand(CodeSection* which_cs, csize_t amount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  // Helper for expand.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  csize_t figure_expanded_capacities(CodeSection* which_cs, csize_t amount, csize_t* new_capacity);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  // (1) code buffer referring to pre-allocated instruction memory
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   468
  CodeBuffer(address code_start, csize_t code_size) {
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   469
    assert(code_start != NULL, "sanity");
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   470
    initialize_misc("static buffer");
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   471
    initialize(code_start, code_size);
10983
9ab65f4cec18 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 8921
diff changeset
   472
    verify_section_allocation();
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   473
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   475
  // (2) CodeBuffer referring to pre-allocated CodeBlob.
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   476
  CodeBuffer(CodeBlob* blob);
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   477
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   478
  // (3) code buffer allocating codeBlob memory for code & relocation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  // info but with lazy initialization.  The name must be something
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  // informative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  CodeBuffer(const char* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    initialize_misc(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   485
  // (4) code buffer allocating codeBlob memory for code & relocation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  // info.  The name must be something informative and code_size must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // include both code and stubs sizes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  CodeBuffer(const char* name, csize_t code_size, csize_t locs_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    initialize_misc(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    initialize(code_size, locs_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
  ~CodeBuffer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   495
  // Initialize a CodeBuffer constructed using constructor 3.  Using
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   496
  // constructor 4 is equivalent to calling constructor 3 and then
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // calling this method.  It's been factored out for convenience of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  // construction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  void initialize(csize_t code_size, csize_t locs_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35086
diff changeset
   501
  CodeSection* consts() { return &_consts; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35086
diff changeset
   502
  CodeSection* insts() { return &_insts; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35086
diff changeset
   503
  CodeSection* stubs() { return &_stubs; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35086
diff changeset
   504
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35086
diff changeset
   505
  const CodeSection* insts() const { return &_insts; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
6432
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   507
  // present sections in order; return NULL at end; consts is #0, etc.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  CodeSection* code_section(int n) {
6432
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   509
    // This makes the slightly questionable but portable assumption
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   510
    // that the various members (_consts, _insts, _stubs, etc.) are
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   511
    // adjacent in the layout of CodeBuffer.
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   512
    CodeSection* cs = &_consts + n;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    assert(cs->index() == n || !cs->is_allocated(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    return cs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  const CodeSection* code_section(int n) const {  // yucky const stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    return ((CodeBuffer*)this)->code_section(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  static const char* code_section_name(int n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  int section_index_of(address addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  bool contains(address addr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    // handy for debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    return section_index_of(addr) > SECT_NONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  // A stable mapping between 'locators' (small ints) and addresses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  static int locator_pos(int locator)   { return locator >> sect_bits; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  static int locator_sect(int locator)  { return locator &  sect_mask; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  static int locator(int pos, int sect) { return (pos << sect_bits) | sect; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  int        locator(address addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  address    locator_address(int locator) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14625
diff changeset
   533
  // Heuristic for pre-packing the taken/not-taken bit of a predicted branch.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14625
diff changeset
   534
  bool is_backward_branch(Label& L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14625
diff changeset
   535
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  // Properties
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  const char* name() const                  { return _name; }
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 31599
diff changeset
   538
  void set_name(const char* name)           { _name = name; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  CodeBuffer* before_expand() const         { return _before_expand; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  BufferBlob* blob() const                  { return _blob; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  void    set_blob(BufferBlob* blob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  void   free_blob();                       // Free the blob, if we own one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  // Properties relative to the insts section:
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   545
  address       insts_begin() const      { return _insts.start();      }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   546
  address       insts_end() const        { return _insts.end();        }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   547
  void      set_insts_end(address end)   {        _insts.set_end(end); }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   548
  address       insts_limit() const      { return _insts.limit();      }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   549
  address       insts_mark() const       { return _insts.mark();       }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   550
  void      set_insts_mark()             {        _insts.set_mark();   }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   551
  void    clear_insts_mark()             {        _insts.clear_mark(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  // is there anything in the buffer other than the current section?
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   554
  bool    is_pure() const                { return insts_size() == total_content_size(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  // size in bytes of output so far in the insts sections
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   557
  csize_t insts_size() const             { return _insts.size(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   559
  // same as insts_size(), except that it asserts there is no non-code here
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   560
  csize_t pure_insts_size() const        { assert(is_pure(), "no non-code");
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   561
                                           return insts_size(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  // capacity in bytes of the insts sections
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   563
  csize_t insts_capacity() const         { return _insts.capacity(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  // number of bytes remaining in the insts section
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   566
  csize_t insts_remaining() const        { return _insts.remaining(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  // is a given address in the insts section?  (2nd version is end-inclusive)
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   569
  bool insts_contains(address pc) const  { return _insts.contains(pc); }
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   570
  bool insts_contains2(address pc) const { return _insts.contains2(pc); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10983
diff changeset
   572
  // Record any extra oops required to keep embedded metadata alive
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33198
diff changeset
   573
  void finalize_oop_references(const methodHandle& method);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10983
diff changeset
   574
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   575
  // Allocated size in all sections, when aligned and concatenated
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   576
  // (this is the eventual state of the content in its final
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   577
  // CodeBlob).
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6184
diff changeset
   578
  csize_t total_content_size() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
6432
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   580
  // Combined offset (relative to start of first section) of given
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   581
  // section, as eventually found in the final CodeBlob.
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35086
diff changeset
   582
  csize_t total_offset_of(const CodeSection* cs) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // allocated size of all relocation data, including index, rounded up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  csize_t total_relocation_size() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   587
  csize_t copy_relocations_to(address buf, csize_t buf_limit, bool only_inst) const;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31620
diff changeset
   588
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  // allocated size of any and all recorded oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  csize_t total_oop_size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    OopRecorder* recorder = oop_recorder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    return (recorder == NULL)? 0: recorder->oop_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10983
diff changeset
   595
  // allocated size of any and all recorded metadata
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10983
diff changeset
   596
  csize_t total_metadata_size() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10983
diff changeset
   597
    OopRecorder* recorder = oop_recorder();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10983
diff changeset
   598
    return (recorder == NULL)? 0: recorder->metadata_size();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10983
diff changeset
   599
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10983
diff changeset
   600
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  // Configuration functions, called immediately after the CB is constructed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  // The section sizes are subtracted from the original insts section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  // Note:  Call them in reverse section order, because each steals from insts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  void initialize_consts_size(csize_t size)            { initialize_section_size(&_consts,  size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  void initialize_stubs_size(csize_t size)             { initialize_section_size(&_stubs,   size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  // Override default oop recorder.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  void initialize_oop_recorder(OopRecorder* r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  OopRecorder* oop_recorder() const   { return _oop_recorder; }
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   610
  CodeStrings& strings()              { return _code_strings; }
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   611
49161
8f1bc5a0d16d 8196064: AArch64: Merging ld/st into ldp/stp in macro-assembler
zyao
parents: 47216
diff changeset
   612
  address last_insn() const { return _last_insn; }
8f1bc5a0d16d 8196064: AArch64: Merging ld/st into ldp/stp in macro-assembler
zyao
parents: 47216
diff changeset
   613
  void set_last_insn(address a) { _last_insn = a; }
8f1bc5a0d16d 8196064: AArch64: Merging ld/st into ldp/stp in macro-assembler
zyao
parents: 47216
diff changeset
   614
  void clear_last_insn() { set_last_insn(NULL); }
33193
c7ffe5c06513 8139041: Redundant DMB instructions
aph
parents: 33160
diff changeset
   615
26432
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   616
  void free_strings() {
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   617
    if (!_code_strings.is_null()) {
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   618
      _code_strings.free(); // sets _strings Null as a side-effect.
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   619
    }
9b974e2eae27 8054292: code comments leak in fastdebug builds
drchase
parents: 24424
diff changeset
   620
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   622
  // Directly disassemble code buffer.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   623
  // Print the comment associated with offset on stream, if there is one.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   624
  virtual void print_block_comment(outputStream* stream, address block_begin) {
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   625
#ifndef PRODUCT
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   626
    intptr_t offset = (intptr_t)(block_begin - _total_start);  // I assume total_start is not correct for all code sections.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   627
    _code_strings.print_block_comment(stream, offset);
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   628
#endif
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   629
  }
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   630
  bool has_block_comment(address block_begin) {
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   631
#ifndef PRODUCT
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   632
    intptr_t offset = (intptr_t)(block_begin - _total_start);  // I assume total_start is not correct for all code sections.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   633
    return _code_strings.has_block_comment(offset);
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   634
#else
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   635
    return false;
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   636
#endif
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   637
  }
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   638
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  // Code generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  void relocate(address at, RelocationHolder const& rspec, int format = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    _insts.relocate(at, rspec, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  void relocate(address at,    relocInfo::relocType rtype, int format = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    _insts.relocate(at, rtype, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  // Management of overflow storage for binding of Labels.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  GrowableArray<int>* create_patch_overflow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  // NMethod generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  void copy_code_and_locs_to(CodeBlob* blob) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    assert(blob != NULL, "sane");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    copy_relocations_to(blob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    copy_code_to(blob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10983
diff changeset
   656
  void copy_values_to(nmethod* nm) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    if (!oop_recorder()->is_unused()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10983
diff changeset
   658
      oop_recorder()->copy_values_to(nm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  // Transform an address from the code in this code buffer to a specified code buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  address transform_address(const CodeBuffer &cb, address addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  void block_comment(intptr_t offset, const char * comment) PRODUCT_RETURN;
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 14626
diff changeset
   666
  const char* code_string(const char* str) PRODUCT_RETURN_(return NULL;);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
10983
9ab65f4cec18 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 8921
diff changeset
   668
  // Log a little info about section usage in the CodeBuffer
9ab65f4cec18 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 8921
diff changeset
   669
  void log_section_sizes(const char* name);
9ab65f4cec18 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 8921
diff changeset
   670
50104
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   671
#if INCLUDE_AOT
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   672
  // True if this is a code buffer used for immutable PIC, i.e. AOT
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   673
  // compilation.
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   674
  bool immutable_PIC() { return _immutable_PIC; }
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   675
  void set_immutable_PIC(bool pic) { _immutable_PIC = pic; }
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   676
#endif
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49373
diff changeset
   677
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  // Printing / Decoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  // decodes from decode_begin() to code_end() and sets decode_begin to end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  void    decode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  void    print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
#endif
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   685
  // Directly disassemble code buffer.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54010
diff changeset
   686
  void    decode(address start, address end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  // The following header contains architecture-specific implementations
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 38133
diff changeset
   689
#include CPU_HEADER(codeBuffer)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
   690
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
inline void CodeSection::freeze() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  _outer->freeze_section(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
inline bool CodeSection::maybe_expand_to_ensure_remaining(csize_t amount) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  if (remaining() < amount) { _outer->expand(this, amount); return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
   702
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50528
diff changeset
   703
#endif // SHARE_ASM_CODEBUFFER_HPP