hotspot/src/share/vm/code/relocInfo.cpp
author twisti
Fri, 27 Aug 2010 01:51:27 -0700
changeset 6432 d36e09b60939
parent 6418 6671edbd230e
child 7397 5b173b4ca846
permissions -rw-r--r--
6961697: move nmethod constants section before instruction section Summary: This is a preparation for 6961690. Reviewed-by: kvn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5702
jrose
parents: 5547 5686
diff changeset
     2
 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_relocInfo.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
const RelocationHolder RelocationHolder::none; // its type is relocInfo::none
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// Implementation of relocInfo
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
relocInfo::relocInfo(relocType t, int off, int f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  assert(t != data_prefix_tag, "cannot build a prefix this way");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  assert((t & type_mask) == t, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  assert((f & format_mask) == f, "wrong format");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  assert(off >= 0 && off < offset_limit(), "offset out off bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  assert((off & (offset_unit-1)) == 0, "misaligned offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  (*this) = relocInfo(t, RAW_BITS, off, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
void relocInfo::initialize(CodeSection* dest, Relocation* reloc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  relocInfo* data = this+1;  // here's where the data might go
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  dest->set_locs_end(data);  // sync end: the next call may read dest.locs_end
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  reloc->pack_data_to(dest); // maybe write data into locs, advancing locs_end
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  relocInfo* data_limit = dest->locs_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  if (data_limit > data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    relocInfo suffix = (*this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    data_limit = this->finish_prefix((short*) data_limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    // Finish up with the suffix.  (Hack note: pack_data_to might edit this.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    *data_limit = suffix;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    dest->set_locs_end(data_limit+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
relocInfo* relocInfo::finish_prefix(short* prefix_limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  assert(sizeof(relocInfo) == sizeof(short), "change this code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  short* p = (short*)(this+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  assert(prefix_limit >= p, "must be a valid span of data");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  int plen = prefix_limit - p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  if (plen == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    debug_only(_value = 0xFFFF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    return this;                         // no data: remove self completely
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  if (plen == 1 && fits_into_immediate(p[0])) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    (*this) = immediate_relocInfo(p[0]); // move data inside self
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    return this+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // cannot compact, so just update the count and return the limit pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  (*this) = prefix_relocInfo(plen);   // write new datalen
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  assert(data() + datalen() == prefix_limit, "pointers must line up");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  return (relocInfo*)prefix_limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void relocInfo::set_type(relocType t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int old_offset = addr_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  int old_format = format();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  (*this) = relocInfo(t, old_offset, old_format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  assert(type()==(int)t, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  assert(addr_offset()==old_offset, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  assert(format()==old_format, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
void relocInfo::set_format(int f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  int old_offset = addr_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  assert((f & format_mask) == f, "wrong format");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  _value = (_value & ~(format_mask << offset_width)) | (f << offset_width);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  assert(addr_offset()==old_offset, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
void relocInfo::change_reloc_info_for_address(RelocIterator *itr, address pc, relocType old_type, relocType new_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  bool found = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  while (itr->next() && !found) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    if (itr->addr() == pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
      assert(itr->type()==old_type, "wrong relocInfo type found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
      itr->current()->set_type(new_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
      found=true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  assert(found, "no relocInfo found for pc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
void relocInfo::remove_reloc_info_for_address(RelocIterator *itr, address pc, relocType old_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  change_reloc_info_for_address(itr, pc, old_type, none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
// ----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// Implementation of RelocIterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   118
void RelocIterator::initialize(nmethod* nm, address begin, address limit) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  initialize_misc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   121
  if (nm == NULL && begin != NULL) {
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   122
    // allow nmethod to be deduced from beginning address
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   123
    CodeBlob* cb = CodeCache::find_blob(begin);
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   124
    nm = cb->as_nmethod_or_null();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   126
  assert(nm != NULL, "must be able to deduce nmethod from other arguments");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   128
  _code    = nm;
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   129
  _current = nm->relocation_begin() - 1;
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   130
  _end     = nm->relocation_end();
6432
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   131
  _addr    = nm->content_begin();
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   132
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   133
  // Initialize code sections.
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   134
  _section_start[CodeBuffer::SECT_CONSTS] = nm->consts_begin();
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   135
  _section_start[CodeBuffer::SECT_INSTS ] = nm->insts_begin() ;
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   136
  _section_start[CodeBuffer::SECT_STUBS ] = nm->stub_begin()  ;
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   137
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   138
  _section_end  [CodeBuffer::SECT_CONSTS] = nm->consts_end()  ;
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   139
  _section_end  [CodeBuffer::SECT_INSTS ] = nm->insts_end()   ;
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   140
  _section_end  [CodeBuffer::SECT_STUBS ] = nm->stub_end()    ;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  assert(!has_current(), "just checking");
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   143
  assert(begin == NULL || begin >= nm->code_begin(), "in bounds");
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   144
  assert(limit == NULL || limit <= nm->code_end(),   "in bounds");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  set_limits(begin, limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
RelocIterator::RelocIterator(CodeSection* cs, address begin, address limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  initialize_misc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  _current = cs->locs_start()-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  _end     = cs->locs_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  _addr    = cs->start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  _code    = NULL; // Not cb->blob();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  CodeBuffer* cb = cs->outer();
6432
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   158
  assert((int) SECT_LIMIT == CodeBuffer::SECT_LIMIT, "my copy must be equal");
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   159
  for (int n = (int) CodeBuffer::SECT_FIRST; n < (int) CodeBuffer::SECT_LIMIT; n++) {
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   160
    CodeSection* cs = cb->code_section(n);
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   161
    _section_start[n] = cs->start();
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   162
    _section_end  [n] = cs->end();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  assert(!has_current(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  assert(begin == NULL || begin >= cs->start(), "in bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  assert(limit == NULL || limit <= cs->end(),   "in bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  set_limits(begin, limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
enum { indexCardSize = 128 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
struct RelocIndexEntry {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  jint addr_offset;          // offset from header_end of an addr()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  jint reloc_offset;         // offset from header_end of a relocInfo (prefix)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
6432
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   180
bool RelocIterator::addr_in_const() const {
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   181
  const int n = CodeBuffer::SECT_CONSTS;
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   182
  return section_start(n) <= addr() && addr() < section_end(n);
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   183
}
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   184
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   185
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
static inline int num_cards(int code_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  return (code_size-1) / indexCardSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
int RelocIterator::locs_and_index_size(int code_size, int locs_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  if (!UseRelocIndex)  return locs_size;   // no index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  code_size = round_to(code_size, oopSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  locs_size = round_to(locs_size, oopSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  int index_size = num_cards(code_size) * sizeof(RelocIndexEntry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // format of indexed relocs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  //   relocation_begin:   relocInfo ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  //   index:              (addr,reloc#) ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  //                       indexSize           :relocation_end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  return locs_size + index_size + BytesPerInt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
void RelocIterator::create_index(relocInfo* dest_begin, int dest_count, relocInfo* dest_end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  address relocation_begin = (address)dest_begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  address relocation_end   = (address)dest_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  int     total_size       = relocation_end - relocation_begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  int     locs_size        = dest_count * sizeof(relocInfo);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  if (!UseRelocIndex) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    Copy::fill_to_bytes(relocation_begin + locs_size, total_size-locs_size, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  int     index_size       = total_size - locs_size - BytesPerInt;      // find out how much space is left
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  int     ncards           = index_size / sizeof(RelocIndexEntry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  assert(total_size == locs_size + index_size + BytesPerInt, "checkin'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  assert(index_size >= 0 && index_size % sizeof(RelocIndexEntry) == 0, "checkin'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  jint*   index_size_addr  = (jint*)relocation_end - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  assert(sizeof(jint) == BytesPerInt, "change this code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  *index_size_addr = index_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  if (index_size != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    assert(index_size > 0, "checkin'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    RelocIndexEntry* index = (RelocIndexEntry *)(relocation_begin + locs_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    assert(index == (RelocIndexEntry*)index_size_addr - ncards, "checkin'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // walk over the relocations, and fill in index entries as we go
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    RelocIterator iter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    const address    initial_addr    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    relocInfo* const initial_current = dest_begin - 1;  // biased by -1 like elsewhere
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    iter._code    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    iter._addr    = initial_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    iter._limit   = (address)(intptr_t)(ncards * indexCardSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    iter._current = initial_current;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    iter._end     = dest_begin + dest_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    int i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    address next_card_addr = (address)indexCardSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    int addr_offset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    int reloc_offset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      // Checkpoint the iterator before advancing it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      addr_offset  = iter._addr    - initial_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      reloc_offset = iter._current - initial_current;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      if (!iter.next())  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      while (iter.addr() >= next_card_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
        index[i].addr_offset  = addr_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
        index[i].reloc_offset = reloc_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
        i++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        next_card_addr += indexCardSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    while (i < ncards) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      index[i].addr_offset  = addr_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      index[i].reloc_offset = reloc_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      i++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
void RelocIterator::set_limits(address begin, address limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  int index_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  if (UseRelocIndex && _code != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    index_size = ((jint*)_end)[-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    _end = (relocInfo*)( (address)_end - index_size - BytesPerInt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  _limit = limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // the limit affects this next stuff:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  if (begin != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    // In ASSERT mode we do not actually use the index, but simply
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    // check that its contents would have led us to the right answer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    address addrCheck = _addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    relocInfo* infoCheck = _current;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    if (index_size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      // skip ahead
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      RelocIndexEntry* index       = (RelocIndexEntry*)_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
      RelocIndexEntry* index_limit = (RelocIndexEntry*)((address)index + index_size);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   285
      assert(_addr == _code->code_begin(), "_addr must be unadjusted");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      int card = (begin - _addr) / indexCardSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
      if (card > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
        if (index+card-1 < index_limit)  index += card-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
        else                             index = index_limit - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
        addrCheck = _addr    + index->addr_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
        infoCheck = _current + index->reloc_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
        // Advance the iterator immediately to the last valid state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
        // for the previous card.  Calling "next" will then advance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
        // it to the first item on the required card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
        _addr    += index->addr_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
        _current += index->reloc_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    relocInfo* backup;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    address    backup_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
      backup      = _current;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
      backup_addr = _addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
      if (backup == infoCheck) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
        assert(backup_addr == addrCheck, "must match"); addrCheck = NULL; infoCheck = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
        assert(addrCheck == NULL || backup_addr <= addrCheck, "must not pass addrCheck");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      if (!next() || addr() >= begin) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    assert(addrCheck == NULL || addrCheck == backup_addr, "must have matched addrCheck");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    assert(infoCheck == NULL || infoCheck == backup,      "must have matched infoCheck");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    // At this point, either we are at the first matching record,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    // or else there is no such record, and !has_current().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    // In either case, revert to the immediatly preceding state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    _current = backup;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    _addr    = backup_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    set_has_current(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
void RelocIterator::set_limit(address limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  address code_end = (address)code() + code()->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  assert(limit == NULL || limit <= code_end, "in bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  _limit = limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
void PatchingRelocIterator:: prepass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  // turn breakpoints off during patching
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  _init_state = (*this);        // save cursor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  while (next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    if (type() == relocInfo::breakpoint_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
      breakpoint_reloc()->set_active(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  (RelocIterator&)(*this) = _init_state;        // reset cursor for client
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
void PatchingRelocIterator:: postpass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // turn breakpoints back on after patching
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  (RelocIterator&)(*this) = _init_state;        // reset cursor again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  while (next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    if (type() == relocInfo::breakpoint_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
      breakpoint_Relocation* bpt = breakpoint_reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
      bpt->set_active(bpt->enabled());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
// All the strange bit-encodings are in here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
// The idea is to encode relocation data which are small integers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
// very efficiently (a single extra halfword).  Larger chunks of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
// relocation data need a halfword header to hold their size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
void RelocIterator::advance_over_prefix() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  if (_current->is_datalen()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    _data    = (short*) _current->data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    _datalen =          _current->datalen();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    _current += _datalen + 1;   // skip the embedded data & header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    _databuf = _current->immediate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    _data = &_databuf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    _datalen = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    _current++;                 // skip the header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // The client will see the following relocInfo, whatever that is.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // It is the reloc to which the preceding data applies.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
6432
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   380
void RelocIterator::initialize_misc() {
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   381
  set_has_current(false);
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   382
  for (int i = (int) CodeBuffer::SECT_FIRST; i < (int) CodeBuffer::SECT_LIMIT; i++) {
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   383
    _section_start[i] = NULL;  // these will be lazily computed, if needed
d36e09b60939 6961697: move nmethod constants section before instruction section
twisti
parents: 6418
diff changeset
   384
    _section_end  [i] = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
Relocation* RelocIterator::reloc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // (take the "switch" out-of-line)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  relocInfo::relocType t = type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  if (false) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  #define EACH_TYPE(name)                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  else if (t == relocInfo::name##_type) {             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    return name##_reloc();                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  APPLY_TO_RELOCATIONS(EACH_TYPE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  #undef EACH_TYPE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  assert(t == relocInfo::none, "must be padding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  return new(_rh) Relocation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
//////// Methods for flyweight Relocation types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
RelocationHolder RelocationHolder::plus(int offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  if (offset != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    switch (type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    case relocInfo::none:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    case relocInfo::oop_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
        oop_Relocation* r = (oop_Relocation*)reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
        return oop_Relocation::spec(r->oop_index(), r->offset() + offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  return (*this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
void Relocation::guarantee_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  guarantee(false, "Make _relocbuf bigger!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    // some relocations can compute their own values
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
address Relocation::value() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
}
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 Relocation::set_value(address x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
RelocationHolder Relocation::spec_simple(relocInfo::relocType rtype) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  if (rtype == relocInfo::none)  return RelocationHolder::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  relocInfo ri = relocInfo(rtype, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  RelocIterator itr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  itr.set_current(ri);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  itr.reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  return itr._rh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
static inline bool is_index(intptr_t index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  return 0 < index && index < os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
int32_t Relocation::runtime_address_to_index(address runtime_address) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  assert(!is_index((intptr_t)runtime_address), "must not look like an index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  if (runtime_address == NULL)  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  StubCodeDesc* p = StubCodeDesc::desc_for(runtime_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  if (p != NULL && p->begin() == runtime_address) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    assert(is_index(p->index()), "there must not be too many stubs");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    return (int32_t)p->index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    // Known "miscellaneous" non-stub pointers:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    // os::get_polling_page(), SafepointSynchronize::address_of_state()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    if (PrintRelocations) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
      tty->print_cr("random unregistered address in relocInfo: " INTPTR_FORMAT, runtime_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    return (int32_t) (intptr_t)runtime_address;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    // didn't fit return non-index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
#endif /* _LP64 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
address Relocation::index_to_runtime_address(int32_t index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  if (index == 0)  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  if (is_index(index)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    StubCodeDesc* p = StubCodeDesc::desc_for_index(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    assert(p != NULL, "there must be a stub for this index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    return p->begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    // this only works on 32bit machines
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    return (address) ((intptr_t) index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
    fatal("Relocation::index_to_runtime_address, int32_t not pointer sized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
#endif /* _LP64 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
address Relocation::old_addr_for(address newa,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
                                 const CodeBuffer* src, CodeBuffer* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  int sect = dest->section_index_of(newa);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  guarantee(sect != CodeBuffer::SECT_NONE, "lost track of this address");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  address ostart = src->code_section(sect)->start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  address nstart = dest->code_section(sect)->start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  return ostart + (newa - nstart);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
address Relocation::new_addr_for(address olda,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
                                 const CodeBuffer* src, CodeBuffer* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  debug_only(const CodeBuffer* src0 = src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  int sect = CodeBuffer::SECT_NONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  // Look for olda in the source buffer, and all previous incarnations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  // if the source buffer has been expanded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  for (; src != NULL; src = src->before_expand()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    sect = src->section_index_of(olda);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    if (sect != CodeBuffer::SECT_NONE)  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  guarantee(sect != CodeBuffer::SECT_NONE, "lost track of this address");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  address ostart = src->code_section(sect)->start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  address nstart = dest->code_section(sect)->start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  return nstart + (olda - ostart);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
void Relocation::normalize_address(address& addr, const CodeSection* dest, bool allow_other_sections) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  address addr0 = addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  if (addr0 == NULL || dest->allocates2(addr0))  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  CodeBuffer* cb = dest->outer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  addr = new_addr_for(addr0, cb, cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  assert(allow_other_sections || dest->contains2(addr),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
         "addr must be in required section");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
void CallRelocation::set_destination(address x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  pd_set_call_destination(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
void CallRelocation::fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  // Usually a self-relative reference to an external routine.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  // On some platforms, the reference is absolute (not self-relative).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  // The enhanced use of pd_call_destination sorts this all out.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  address orig_addr = old_addr_for(addr(), src, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  address callee    = pd_call_destination(orig_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  // Reassert the callee address, this time in the new copy of the code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  pd_set_call_destination(callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
//// pack/unpack methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
void oop_Relocation::pack_data_to(CodeSection* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  short* p = (short*) dest->locs_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  p = pack_2_ints_to(p, _oop_index, _offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  dest->set_locs_end((relocInfo*) p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
void oop_Relocation::unpack_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  unpack_2_ints(_oop_index, _offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
void virtual_call_Relocation::pack_data_to(CodeSection* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  short*  p     = (short*) dest->locs_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  address point =          dest->locs_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  // Try to make a pointer NULL first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  if (_oop_limit >= point &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
      _oop_limit <= point + NativeCall::instruction_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    _oop_limit = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  // If the _oop_limit is NULL, it "defaults" to the end of the call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  // See ic_call_Relocation::oop_limit() below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  normalize_address(_first_oop, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  normalize_address(_oop_limit, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  jint x0 = scaled_offset_null_special(_first_oop, point);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  jint x1 = scaled_offset_null_special(_oop_limit, point);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  p = pack_2_ints_to(p, x0, x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  dest->set_locs_end((relocInfo*) p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
void virtual_call_Relocation::unpack_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  jint x0, x1; unpack_2_ints(x0, x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  address point = addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  _first_oop = x0==0? NULL: address_from_scaled_offset(x0, point);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  _oop_limit = x1==0? NULL: address_from_scaled_offset(x1, point);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
void static_stub_Relocation::pack_data_to(CodeSection* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  short* p = (short*) dest->locs_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  CodeSection* insts = dest->outer()->insts();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  normalize_address(_static_call, insts);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  p = pack_1_int_to(p, scaled_offset(_static_call, insts->start()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  dest->set_locs_end((relocInfo*) p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
void static_stub_Relocation::unpack_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  address base = binding()->section_start(CodeBuffer::SECT_INSTS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  _static_call = address_from_scaled_offset(unpack_1_int(), base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
void external_word_Relocation::pack_data_to(CodeSection* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  short* p = (short*) dest->locs_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  int32_t index = runtime_address_to_index(_target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  p = pack_1_int_to(p, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  if (is_index(index)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    p = pack_2_ints_to(p, index, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
    jlong t = (jlong) _target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    int32_t lo = low(t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    int32_t hi = high(t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    p = pack_2_ints_to(p, lo, hi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    DEBUG_ONLY(jlong t1 = jlong_from(hi, lo));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    assert(!is_index(t1) && (address) t1 == _target, "not symmetric");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
#endif /* _LP64 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  dest->set_locs_end((relocInfo*) p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
void external_word_Relocation::unpack_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  _target = index_to_runtime_address(unpack_1_int());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  int32_t lo, hi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  unpack_2_ints(lo, hi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  jlong t = jlong_from(hi, lo);;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  if (is_index(t)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    _target = index_to_runtime_address(t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    _target = (address) t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
#endif /* _LP64 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
void internal_word_Relocation::pack_data_to(CodeSection* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  short* p = (short*) dest->locs_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  normalize_address(_target, dest, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  // Check whether my target address is valid within this section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  // If not, strengthen the relocation type to point to another section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  int sindex = _section;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  if (sindex == CodeBuffer::SECT_NONE && _target != NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
      && (!dest->allocates(_target) || _target == dest->locs_point())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    sindex = dest->outer()->section_index_of(_target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    guarantee(sindex != CodeBuffer::SECT_NONE, "must belong somewhere");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    relocInfo* base = dest->locs_end() - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    assert(base->type() == this->type(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    // Change the written type, to be section_word_type instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    base->set_type(relocInfo::section_word_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  // Note: An internal_word relocation cannot refer to its own instruction,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  // because we reserve "0" to mean that the pointer itself is embedded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  // in the code stream.  We use a section_word relocation for such cases.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  if (sindex == CodeBuffer::SECT_NONE) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    assert(type() == relocInfo::internal_word_type, "must be base class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    guarantee(_target == NULL || dest->allocates2(_target), "must be within the given code section");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    jint x0 = scaled_offset_null_special(_target, dest->locs_point());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
    assert(!(x0 == 0 && _target != NULL), "correct encoding of null target");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    p = pack_1_int_to(p, x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    assert(_target != NULL, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    CodeSection* sect = dest->outer()->code_section(sindex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    guarantee(sect->allocates2(_target), "must be in correct section");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
    address base = sect->start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    jint offset = scaled_offset(_target, base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
    assert((uint)sindex < (uint)CodeBuffer::SECT_LIMIT, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    assert(CodeBuffer::SECT_LIMIT <= (1 << section_width), "section_width++");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
    p = pack_1_int_to(p, (offset << section_width) | sindex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  dest->set_locs_end((relocInfo*) p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
void internal_word_Relocation::unpack_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  jint x0 = unpack_1_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  _target = x0==0? NULL: address_from_scaled_offset(x0, addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  _section = CodeBuffer::SECT_NONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
void section_word_Relocation::unpack_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  jint    x      = unpack_1_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  jint    offset = (x >> section_width);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  int     sindex = (x & ((1<<section_width)-1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  address base   = binding()->section_start(sindex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  _section = sindex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  _target  = address_from_scaled_offset(offset, base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
void breakpoint_Relocation::pack_data_to(CodeSection* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  short* p = (short*) dest->locs_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  address point = dest->locs_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  *p++ = _bits;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  assert(_target != NULL, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  if (internal())  normalize_address(_target, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  jint target_bits =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    (jint)( internal() ? scaled_offset           (_target, point)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
                       : runtime_address_to_index(_target) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  if (settable()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
    // save space for set_target later
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    p = add_jint(p, target_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
    p = add_var_int(p, target_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  for (int i = 0; i < instrlen(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    // put placeholder words until bytes can be saved
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    p = add_short(p, (short)0x7777);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  dest->set_locs_end((relocInfo*) p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
void breakpoint_Relocation::unpack_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  _bits = live_bits();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  int targetlen = datalen() - 1 - instrlen();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  jint target_bits = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  if (targetlen == 0)       target_bits = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  else if (targetlen == 1)  target_bits = *(data()+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  else if (targetlen == 2)  target_bits = relocInfo::jint_from_data(data()+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  else                      { ShouldNotReachHere(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  _target = internal() ? address_from_scaled_offset(target_bits, addr())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
                       : index_to_runtime_address  (target_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
//// miscellaneous methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
oop* oop_Relocation::oop_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  int n = _oop_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  if (n == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
    // oop is stored in the code stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
    return (oop*) pd_address_in_code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  } else {
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   754
    // oop is stored in table at nmethod::oops_begin
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
    return code()->oop_addr_at(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
oop oop_Relocation::oop_value() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  oop v = *oop_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  // clean inline caches store a special pseudo-null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  if (v == (oop)Universe::non_oop_word())  v = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  return v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
void oop_Relocation::fix_oop_relocation() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  if (!oop_is_immediate()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
    // get the oop from the pool, and re-insert it into the instruction:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    set_value(value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   776
RelocIterator virtual_call_Relocation::parse_ic(nmethod* &nm, address &ic_call, address &first_oop,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
                                                oop* &oop_addr, bool *is_optimized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  assert(ic_call != NULL, "ic_call address must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  assert(ic_call != NULL || first_oop != NULL, "must supply a non-null input");
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   780
  if (nm == NULL) {
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   781
    CodeBlob* code;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    if (ic_call != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
      code = CodeCache::find_blob(ic_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    } else if (first_oop != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
      code = CodeCache::find_blob(first_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
    }
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   787
    nm = code->as_nmethod_or_null();
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   788
    assert(nm != NULL, "address to parse must be in nmethod");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  }
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   790
  assert(ic_call   == NULL || nm->contains(ic_call),   "must be in nmethod");
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   791
  assert(first_oop == NULL || nm->contains(first_oop), "must be in nmethod");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  address oop_limit = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  if (ic_call != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
    // search for the ic_call at the given address
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   797
    RelocIterator iter(nm, ic_call, ic_call+1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
    bool ret = iter.next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    assert(ret == true, "relocInfo must exist at this address");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    assert(iter.addr() == ic_call, "must find ic_call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    if (iter.type() == relocInfo::virtual_call_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      virtual_call_Relocation* r = iter.virtual_call_reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
      first_oop = r->first_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
      oop_limit = r->oop_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
      *is_optimized = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
      assert(iter.type() == relocInfo::opt_virtual_call_type, "must be a virtual call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
      *is_optimized = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
      oop_addr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
      first_oop = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
      return iter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  // search for the first_oop, to get its oop_addr
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   816
  RelocIterator all_oops(nm, first_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  RelocIterator iter = all_oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  iter.set_limit(first_oop+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  bool found_oop = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  while (iter.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
    if (iter.type() == relocInfo::oop_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
      assert(iter.addr() == first_oop, "must find first_oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
      oop_addr = iter.oop_reloc()->oop_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
      found_oop = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  assert(found_oop, "must find first_oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  bool did_reset = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  while (ic_call == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
    // search forward for the ic_call matching the given first_oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    while (iter.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
      if (iter.type() == relocInfo::virtual_call_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
        virtual_call_Relocation* r = iter.virtual_call_reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
        if (r->first_oop() == first_oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
          ic_call   = r->addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
          oop_limit = r->oop_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
    guarantee(!did_reset, "cannot find ic_call");
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
   844
    iter = RelocIterator(nm); // search the whole nmethod
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    did_reset = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  assert(oop_limit != NULL && first_oop != NULL && ic_call != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  all_oops.set_limit(oop_limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  return all_oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
address virtual_call_Relocation::first_oop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  assert(_first_oop != NULL && _first_oop < addr(), "must precede ic_call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  return _first_oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
address virtual_call_Relocation::oop_limit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  if (_oop_limit == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    return addr() + NativeCall::instruction_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    return _oop_limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
void virtual_call_Relocation::clear_inline_cache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  // No stubs for ICs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  // Clean IC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  CompiledIC* icache = CompiledIC_at(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  icache->set_to_clean();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
void opt_virtual_call_Relocation::clear_inline_cache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  // No stubs for ICs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  // Clean IC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  CompiledIC* icache = CompiledIC_at(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  icache->set_to_clean();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
address opt_virtual_call_Relocation::static_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  // search for the static stub who points back to this static call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  address static_call_addr = addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  RelocIterator iter(code());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  while (iter.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    if (iter.type() == relocInfo::static_stub_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
      if (iter.static_stub_reloc()->static_call() == static_call_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
        return iter.addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
void static_call_Relocation::clear_inline_cache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  // Safe call site info
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  CompiledStaticCall* handler = compiledStaticCall_at(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  handler->set_to_clean();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
address static_call_Relocation::static_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  // search for the static stub who points back to this static call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  address static_call_addr = addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  RelocIterator iter(code());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  while (iter.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
    if (iter.type() == relocInfo::static_stub_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
      if (iter.static_stub_reloc()->static_call() == static_call_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
        return iter.addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
void static_stub_Relocation::clear_inline_cache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  // Call stub is only used when calling the interpreted code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  // It does not really need to be cleared, except that we want to clean out the methodoop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  CompiledStaticCall::set_stub_to_clean(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
void external_word_Relocation::fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  address target = _target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  if (target == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    // An absolute embedded reference to an external location,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
    // which means there is nothing to fix here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  // Probably this reference is absolute, not relative, so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  // following is probably a no-op.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
  assert(src->section_index_of(target) == CodeBuffer::SECT_NONE, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  set_value(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
address external_word_Relocation::target() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
  address target = _target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  if (target == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    target = pd_get_address_from_code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  return target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
void internal_word_Relocation::fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  address target = _target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  if (target == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
    if (addr_in_const()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
      target = new_addr_for(*(address*)addr(), src, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
      target = new_addr_for(pd_get_address_from_code(), src, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  set_value(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
address internal_word_Relocation::target() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  address target = _target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  if (target == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
    target = pd_get_address_from_code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  return target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
breakpoint_Relocation::breakpoint_Relocation(int kind, address target, bool internal) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  bool active    = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  bool enabled   = (kind == initialization);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  bool removable = (kind != safepoint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  bool settable  = (target == NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  int bits = kind;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
  if (enabled)    bits |= enabled_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  if (internal)   bits |= internal_attr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  if (removable)  bits |= removable_attr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  if (settable)   bits |= settable_attr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  _bits = bits | high_bit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  _target = target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  assert(this->kind()      == kind,      "kind encoded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  assert(this->enabled()   == enabled,   "enabled encoded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  assert(this->active()    == active,    "active encoded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
  assert(this->internal()  == internal,  "internal encoded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  assert(this->removable() == removable, "removable encoded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  assert(this->settable()  == settable,  "settable encoded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
address breakpoint_Relocation::target() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  return _target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
void breakpoint_Relocation::set_target(address x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
  assert(settable(), "must be settable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
  jint target_bits =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
    (jint)(internal() ? scaled_offset           (x, addr())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
                      : runtime_address_to_index(x));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  short* p = &live_bits() + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  p = add_jint(p, target_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  assert(p == instrs(), "new target must fit");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  _target = x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
void breakpoint_Relocation::set_enabled(bool b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  if (enabled() == b) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  if (b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
    set_bits(bits() | enabled_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
    set_active(false);          // remove the actual breakpoint insn, if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
    set_bits(bits() & ~enabled_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
void breakpoint_Relocation::set_active(bool b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  assert(!b || enabled(), "cannot activate a disabled breakpoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  if (active() == b) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  // %%% should probably seize a lock here (might not be the right lock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  //MutexLockerEx ml_patch(Patching_lock, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  //if (active() == b)  return;         // recheck state after locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  if (b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
    set_bits(bits() | active_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
    if (instrlen() == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
      fatal("breakpoints in original code must be undoable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
    pd_swap_in_breakpoint (addr(), instrs(), instrlen());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
    set_bits(bits() & ~active_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
    pd_swap_out_breakpoint(addr(), instrs(), instrlen());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
//---------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
// Non-product code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
static const char* reloc_type_string(relocInfo::relocType t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  switch (t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  #define EACH_CASE(name) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  case relocInfo::name##_type: \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
    return #name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  APPLY_TO_RELOCATIONS(EACH_CASE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  #undef EACH_CASE
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  case relocInfo::none:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    return "none";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  case relocInfo::data_prefix_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
    return "prefix";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
    return "UNKNOWN RELOC TYPE";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
void RelocIterator::print_current() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  if (!has_current()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
    tty->print_cr("(no relocs)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  tty->print("relocInfo@" INTPTR_FORMAT " [type=%d(%s) addr=" INTPTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
             _current, type(), reloc_type_string((relocInfo::relocType) type()), _addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  if (current()->format() != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
    tty->print(" format=%d", current()->format());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
  if (datalen() == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
    tty->print(" data=%d", data()[0]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  } else if (datalen() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
    tty->print(" data={");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
    for (int i = 0; i < datalen(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
      tty->print("%04x", data()[i] & 0xFFFF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
    tty->print("}");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  tty->print("]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  switch (type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  case relocInfo::oop_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
      oop_Relocation* r = oop_reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
      oop* oop_addr  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
      oop  raw_oop   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
      oop  oop_value = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
      if (code() != NULL || r->oop_is_immediate()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
        oop_addr  = r->oop_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
        raw_oop   = *oop_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
        oop_value = r->oop_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
      tty->print(" | [oop_addr=" INTPTR_FORMAT " *=" INTPTR_FORMAT " offset=%d]",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
                 oop_addr, (address)raw_oop, r->offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
      // Do not print the oop by default--we want this routine to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
      // work even during GC or other inconvenient times.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
      if (WizardMode && oop_value != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
        tty->print("oop_value=" INTPTR_FORMAT ": ", (address)oop_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
        oop_value->print_value_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  case relocInfo::external_word_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  case relocInfo::internal_word_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  case relocInfo::section_word_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
      DataRelocation* r = (DataRelocation*) reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
      tty->print(" | [target=" INTPTR_FORMAT "]", r->value()); //value==target
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  case relocInfo::static_call_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  case relocInfo::runtime_call_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
      CallRelocation* r = (CallRelocation*) reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
      tty->print(" | [destination=" INTPTR_FORMAT "]", r->destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
  case relocInfo::virtual_call_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
      virtual_call_Relocation* r = (virtual_call_Relocation*) reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
      tty->print(" | [destination=" INTPTR_FORMAT " first_oop=" INTPTR_FORMAT " oop_limit=" INTPTR_FORMAT "]",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
                 r->destination(), r->first_oop(), r->oop_limit());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  case relocInfo::static_stub_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
      static_stub_Relocation* r = (static_stub_Relocation*) reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
      tty->print(" | [static_call=" INTPTR_FORMAT "]", r->static_call());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
void RelocIterator::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  RelocIterator save_this = (*this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  relocInfo* scan = _current;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  if (!has_current())  scan += 1;  // nothing to scan here!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  bool skip_next = has_current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
  bool got_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
    got_next = (skip_next || next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
    skip_next = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
    tty->print("         @" INTPTR_FORMAT ": ", scan);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
    relocInfo* newscan = _current+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
    if (!has_current())  newscan -= 1;  // nothing to scan here!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
    while (scan < newscan) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
      tty->print("%04x", *(short*)scan & 0xFFFF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
      scan++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
    if (!got_next)  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
    print_current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  (*this) = save_this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
// For the debugger:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
extern "C"
5686
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
  1177
void print_blob_locs(nmethod* nm) {
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
  1178
  nm->print();
5435e77aa3df 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1
diff changeset
  1179
  RelocIterator iter(nm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  iter.print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
extern "C"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
void print_buf_locs(CodeBuffer* cb) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  FlagSetting fs(PrintRelocations, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  cb->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
#endif // !PRODUCT