hotspot/src/share/vm/runtime/relocator.cpp
author kamg
Thu, 21 Oct 2010 10:10:23 -0400
changeset 6974 a013f1c533a5
parent 5547 f4b087cbb361
child 7397 5b173b4ca846
permissions -rw-r--r--
6991315: RedefineClasses fails with java.lang.VerifyError Summary: Repair stackmap table attribute when relocating bytecode Reviewed-by: acorn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
     2
 * Copyright (c) 1997, 2005, 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/_relocator.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#define MAX_METHOD_LENGTH  65535
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#define MAX_SHORT ((1 << 15) - 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#define MIN_SHORT (- (1 << 15))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Encapsulates a code change request. There are 3 types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// General instruction, jump instruction, and table/lookup switches
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class ChangeItem : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  int _bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
   ChangeItem(int bci) { _bci = bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
   virtual bool handle_code_change(Relocator *r) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
   // type info
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
   virtual bool is_widen()      { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
   virtual bool is_jump_widen() { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
   virtual bool is_switch_pad() { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
   // accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
   int bci()    { return _bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
   void relocate(int break_bci, int delta) { if (_bci > break_bci) { _bci += delta; } }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
   virtual bool adjust(int bci, int delta) { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
   // debug
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
   virtual void print() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
class ChangeWiden : public ChangeItem {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  int              _new_ilen;    // New length of instruction at bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  u_char*          _inst_buffer; // New bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  ChangeWiden(int bci, int new_ilen, u_char* inst_buffer) : ChangeItem(bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    _new_ilen = new_ilen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    _inst_buffer = inst_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Callback to do instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  bool handle_code_change(Relocator *r) { return r->handle_widen(bci(), _new_ilen, _inst_buffer); };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  bool is_widen()              { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  void print()                 { tty->print_cr("ChangeWiden. bci: %d   New_ilen: %d", bci(), _new_ilen); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
class ChangeJumpWiden : public ChangeItem {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  int _delta;  // New length of instruction at bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  ChangeJumpWiden(int bci, int delta) : ChangeItem(bci) { _delta = delta; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // Callback to do instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  bool handle_code_change(Relocator *r) { return r->handle_jump_widen(bci(), _delta); };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  bool is_jump_widen()         { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // If the bci matches, adjust the delta in the change jump request.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  bool adjust(int jump_bci, int delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    if (bci() == jump_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      if (_delta > 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
        _delta += delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
        _delta -= delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  void print()                 { tty->print_cr("ChangeJumpWiden. bci: %d   Delta: %d", bci(), _delta); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
class ChangeSwitchPad : public ChangeItem {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  int  _padding;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  bool _is_lookup_switch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
   ChangeSwitchPad(int bci, int padding, bool is_lookup_switch) : ChangeItem(bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
     _padding = padding;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
     _is_lookup_switch = is_lookup_switch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
   // Callback to do instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
   bool handle_code_change(Relocator *r) { return r->handle_switch_pad(bci(), _padding, _is_lookup_switch); };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
   bool is_switch_pad()        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
   int  padding()              { return _padding;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
   bool is_lookup_switch()     { return _is_lookup_switch; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
   void print()                { tty->print_cr("ChangeSwitchPad. bci: %d   Padding: %d  IsLookupSwitch: %d", bci(), _padding, _is_lookup_switch); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
//-----------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// Relocator code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
Relocator::Relocator(methodHandle m, RelocatorListener* listener) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  set_method(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  set_code_length(method()->code_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  set_code_array(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Allocate code array and copy bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  if (!expand_code_array(0)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    // Should have at least MAX_METHOD_LENGTH available or the verifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    // would have failed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  set_compressed_line_number_table(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  set_compressed_line_number_table_size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  _listener = listener;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
// size is the new size of the instruction at bci. Hence, if size is less than the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
// instruction sice, we will shrink the code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
methodHandle Relocator::insert_space_at(int bci, int size, u_char inst_buffer[], TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  _changes = new GrowableArray<ChangeItem*> (10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  _changes->push(new ChangeWiden(bci, size, inst_buffer));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  if (TraceRelocator) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    tty->print_cr("Space at: %d Size: %d", bci, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    _method->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    _method->print_codes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  if (!handle_code_changes()) return methodHandle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    // Construct the new method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  methodHandle new_method = methodOopDesc::clone_with_new_data(method(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
                              code_array(), code_length(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
                              compressed_line_number_table(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                              compressed_line_number_table_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                              CHECK_(methodHandle()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    set_method(new_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  if (TraceRelocator) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    tty->print_cr("-------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    tty->print_cr("new method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    _method->print_codes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  return new_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
bool Relocator::handle_code_changes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  assert(_changes != NULL, "changes vector must be initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  while (!_changes->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    // Inv: everything is aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    ChangeItem* ci = _changes->first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    if (TraceRelocator) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
      ci->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    // Execute operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    if (!ci->handle_code_change(this)) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    // Shuffel items up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    for (int index = 1; index < _changes->length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      _changes->at_put(index-1, _changes->at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    _changes->pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
bool Relocator::is_opcode_lookupswitch(Bytecodes::Code bc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  switch (bc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    case Bytecodes::_tableswitch:       return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    case Bytecodes::_lookupswitch:                   // not rewritten on ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    case Bytecodes::_fast_linearswitch:              // rewritten _lookupswitch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    case Bytecodes::_fast_binaryswitch: return true; // rewritten _lookupswitch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  return true; // dummy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
// We need a special instruction size method, since lookupswitches and tableswitches might not be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
// properly alligned during relocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
int Relocator::rc_instr_len(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  Bytecodes::Code bc= code_at(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  switch (bc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    // In the case of switch instructions, see if we have the original
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    // padding recorded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    case Bytecodes::_fast_linearswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    case Bytecodes::_fast_binaryswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
      int pad = get_orig_switch_pad(bci, is_opcode_lookupswitch(bc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
      if (pad == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
        return instruction_length_at(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      // Otherwise, depends on the switch type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
      switch (bc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
        case Bytecodes::_tableswitch: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
          int lo = int_at(bci + 1 + pad + 4 * 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
          int hi = int_at(bci + 1 + pad + 4 * 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
          int n = hi - lo + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
          return 1 + pad + 4*(3 + n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
        case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
        case Bytecodes::_fast_linearswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
        case Bytecodes::_fast_binaryswitch: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
          int npairs = int_at(bci + 1 + pad + 4 * 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
          return 1 + pad + 4*(2 + 2*npairs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
        default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
          ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  return instruction_length_at(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
// If a change item is recorded for "pc", with type "ct", returns the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// associated padding, else -1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
int Relocator::get_orig_switch_pad(int bci, bool is_lookup_switch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  for (int k = 0; k < _changes->length(); k++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    ChangeItem* ci = _changes->at(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    if (ci->is_switch_pad()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      ChangeSwitchPad* csp = (ChangeSwitchPad*)ci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      if (csp->is_lookup_switch() == is_lookup_switch && csp->bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
        return csp->padding();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
// Push a ChangeJumpWiden if it doesn't already exist on the work queue,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
// otherwise adjust the item already there by delta.  The calculation for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
// new_delta is wrong for this because it uses the offset stored in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
// code stream itself which wasn't fixed when item was pushed on the work queue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
void Relocator::push_jump_widen(int bci, int delta, int new_delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  for (int j = 0; j < _changes->length(); j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    ChangeItem* ci = _changes->at(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    if (ci->adjust(bci, delta)) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  _changes->push(new ChangeJumpWiden(bci, new_delta));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// The current instruction of "c" is a jump; one of its offset starts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
// at "offset" and is a short if "isShort" is "TRUE",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
// and an integer otherwise.  If the jump crosses "breakPC", change
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
// the span of the jump by "delta".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
void Relocator::change_jump(int bci, int offset, bool is_short, int break_bci, int delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  int bci_delta = (is_short) ? short_at(offset) : int_at(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  int targ = bci + bci_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  if ((bci <= break_bci && targ >  break_bci) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
      (bci >  break_bci && targ <= break_bci)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    int new_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    if (bci_delta > 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      new_delta = bci_delta + delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      new_delta = bci_delta - delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    if (is_short && ((new_delta > MAX_SHORT) || new_delta < MIN_SHORT)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      push_jump_widen(bci, delta, new_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    } else if (is_short) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      short_at_put(offset, new_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
      int_at_put(offset, new_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
// Changes all jumps crossing "break_bci" by "delta".  May enqueue things
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// on "rc->changes"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
void Relocator::change_jumps(int break_bci, int delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  int bci = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  Bytecodes::Code bc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // Now, adjust any affected instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  while (bci < code_length()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    switch (bc= code_at(bci)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
      case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
      case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
      case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
      case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
      case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
      case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
      case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
      case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
      case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
      case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
      case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
      case Bytecodes::_ifnonnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
      case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
        change_jump(bci, bci+1, true, break_bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
      case Bytecodes::_goto_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
      case Bytecodes::_jsr_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
        change_jump(bci, bci+1, false, break_bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
      case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      case Bytecodes::_fast_linearswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
      case Bytecodes::_fast_binaryswitch: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
        int recPad = get_orig_switch_pad(bci, (bc != Bytecodes::_tableswitch));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
        int oldPad = (recPad != -1) ? recPad : align(bci+1) - (bci+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
        if (bci > break_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
          int new_bci = bci + delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
          int newPad = align(new_bci+1) - (new_bci+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
          // Do we need to check the padding?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
          if (newPad != oldPad) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
            if (recPad == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
              _changes->push(new ChangeSwitchPad(bci, oldPad, (bc != Bytecodes::_tableswitch)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
        // Then the rest, which depend on the kind of switch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
        switch (bc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
          case Bytecodes::_tableswitch: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
            change_jump(bci, bci +1 + oldPad, false, break_bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
            // We cannot use the Bytecode_tableswitch abstraction, since the padding might not be correct.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
            int lo = int_at(bci + 1 + oldPad + 4 * 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
            int hi = int_at(bci + 1 + oldPad + 4 * 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
            int n = hi - lo + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
            for (int k = 0; k < n; k++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
              change_jump(bci, bci +1 + oldPad + 4*(k+3), false, break_bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
            // Special next-bci calculation here...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
            bci += 1 + oldPad + (n+3)*4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
            continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
          case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
          case Bytecodes::_fast_linearswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
          case Bytecodes::_fast_binaryswitch: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
            change_jump(bci, bci +1 + oldPad, false, break_bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
            // We cannot use the Bytecode_lookupswitch abstraction, since the padding might not be correct.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
            int npairs = int_at(bci + 1 + oldPad + 4 * 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
            for (int k = 0; k < npairs; k++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
              change_jump(bci, bci + 1 + oldPad + 4*(2 + 2*k + 1), false, break_bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
            /* Special next-bci calculation here... */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
            bci += 1 + oldPad + (2 + (npairs*2))*4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
            continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
          default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
            ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
      default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    bci += rc_instr_len(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
// The width of instruction at "pc" is changing by "delta".  Adjust the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
// exception table, if any, of "rc->mb".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
void Relocator::adjust_exception_table(int bci, int delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  typeArrayOop table = method()->exception_table();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  for (int index = 0; index < table->length(); index +=4) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    if (table->int_at(index) > bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
      table->int_at_put(index+0, table->int_at(index+0) + delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
      table->int_at_put(index+1, table->int_at(index+1) + delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    } else if (bci < table->int_at(index+1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
      table->int_at_put(index+1, table->int_at(index+1) + delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    if (table->int_at(index+2) > bci)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
      table->int_at_put(index+2, table->int_at(index+2) + delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
// The width of instruction at "bci" is changing by "delta".  Adjust the line number table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
void Relocator::adjust_line_no_table(int bci, int delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  if (method()->has_linenumber_table()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    CompressedLineNumberReadStream  reader(method()->compressed_linenumber_table());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    CompressedLineNumberWriteStream writer(64);  // plenty big for most line number tables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    while (reader.read_pair()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
      int adjustment = (reader.bci() > bci) ? delta : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
      writer.write_pair(reader.bci() + adjustment, reader.line());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    writer.write_terminator();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    set_compressed_line_number_table(writer.buffer());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    set_compressed_line_number_table_size(writer.position());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
// The width of instruction at "bci" is changing by "delta".  Adjust the local variable table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
void Relocator::adjust_local_var_table(int bci, int delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  int localvariable_table_length = method()->localvariable_table_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  if (localvariable_table_length > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    LocalVariableTableElement* table = method()->localvariable_table_start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    for (int i = 0; i < localvariable_table_length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
      u2 current_bci = table[i].start_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      if (current_bci > bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
        table[i].start_bci = current_bci + delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
        u2 current_length = table[i].length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
        if (current_bci + current_length > bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
          table[i].length = current_length + delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
        }
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
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
6974
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   438
// Create a new array, copying the src array but adding a hole at
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   439
// the specified location
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   440
static typeArrayOop insert_hole_at(
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   441
    size_t where, int hole_sz, typeArrayOop src) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   442
  Thread* THREAD = Thread::current();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   443
  Handle src_hnd(THREAD, src);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   444
  typeArrayOop dst =
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   445
      oopFactory::new_permanent_byteArray(src->length() + hole_sz, CHECK_NULL);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   446
  src = (typeArrayOop)src_hnd();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   447
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   448
  address src_addr = (address)src->byte_at_addr(0);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   449
  address dst_addr = (address)dst->byte_at_addr(0);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   450
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   451
  memcpy(dst_addr, src_addr, where);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   452
  memcpy(dst_addr + where + hole_sz,
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   453
         src_addr + where, src->length() - where);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   454
  return dst;
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   455
}
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   456
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   457
// The width of instruction at "bci" is changing by "delta".  Adjust the stack
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   458
// map frames.
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   459
void Relocator::adjust_stack_map_table(int bci, int delta) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   460
  if (method()->has_stackmap_table()) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   461
    typeArrayOop data = method()->stackmap_data();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   462
    // The data in the array is a classfile representation of the stackmap
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   463
    // table attribute, less the initial u2 tag and u4 attribute_length fields.
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   464
    stack_map_table_attribute* attr = stack_map_table_attribute::at(
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   465
        (address)data->byte_at_addr(0) - (sizeof(u2) + sizeof(u4)));
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   466
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   467
    int count = attr->number_of_entries();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   468
    stack_map_frame* frame = attr->entries();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   469
    int bci_iter = -1;
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   470
    bool offset_adjusted = false; // only need to adjust one offset
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   471
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   472
    for (int i = 0; i < count; ++i) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   473
      int offset_delta = frame->offset_delta();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   474
      bci_iter += offset_delta;
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   475
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   476
      if (!offset_adjusted && bci_iter > bci) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   477
        int new_offset_delta = offset_delta + delta;
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   478
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   479
        if (frame->is_valid_offset(new_offset_delta)) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   480
          frame->set_offset_delta(new_offset_delta);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   481
        } else {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   482
          assert(frame->is_same_frame() ||
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   483
                 frame->is_same_frame_1_stack_item_frame(),
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   484
                 "Frame must be one of the compressed forms");
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   485
          // The new delta exceeds the capacity of the 'same_frame' or
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   486
          // 'same_frame_1_stack_item_frame' frame types.  We need to
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   487
          // convert these frames to the extended versions, but the extended
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   488
          // version is bigger and requires more room.  So we allocate a
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   489
          // new array and copy the data, being sure to leave u2-sized hole
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   490
          // right after the 'frame_type' for the new offset field.
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   491
          //
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   492
          // We can safely ignore the reverse situation as a small delta
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   493
          // can still be used in an extended version of the frame.
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   494
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   495
          size_t frame_offset = (address)frame - (address)data->byte_at_addr(0);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   496
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   497
          data = insert_hole_at(frame_offset + 1, 2, data);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   498
          if (data == NULL) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   499
            return; // out-of-memory?
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   500
          }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   501
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   502
          address frame_addr = (address)(data->byte_at_addr(0) + frame_offset);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   503
          frame = stack_map_frame::at(frame_addr);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   504
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   505
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   506
          // Now convert the frames in place
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   507
          if (frame->is_same_frame()) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   508
            same_frame_extended::create_at(frame_addr, new_offset_delta);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   509
          } else {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   510
            same_frame_1_stack_item_extended::create_at(
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   511
              frame_addr, new_offset_delta, NULL);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   512
            // the verification_info_type should already be at the right spot
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   513
          }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   514
        }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   515
        offset_adjusted = true; // needs to be done only once, since subsequent
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   516
                                // values are offsets from the current
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   517
      }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   518
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   519
      // The stack map frame may contain verification types, if so we need to
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   520
      // check and update any Uninitialized type's bci (no matter where it is).
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   521
      int number_of_types = frame->number_of_types();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   522
      verification_type_info* types = frame->types();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   523
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   524
      for (int i = 0; i < number_of_types; ++i) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   525
        if (types->is_uninitialized() && types->bci() > bci) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   526
          types->set_bci(types->bci() + delta);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   527
        }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   528
        types = types->next();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   529
      }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   530
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   531
      // Full frame has stack values too
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   532
      full_frame* ff = frame->as_full_frame();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   533
      if (ff != NULL) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   534
        address eol = (address)types;
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   535
        number_of_types = ff->stack_slots(eol);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   536
        types = ff->stack(eol);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   537
        for (int i = 0; i < number_of_types; ++i) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   538
          if (types->is_uninitialized() && types->bci() > bci) {
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   539
            types->set_bci(types->bci() + delta);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   540
          }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   541
          types = types->next();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   542
        }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   543
      }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   544
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   545
      frame = frame->next();
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   546
    }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   547
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   548
    method()->set_stackmap_data(data); // in case it has changed
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   549
  }
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   550
}
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   551
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
bool Relocator::expand_code_array(int delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  int length = MAX2(code_length() + delta, code_length() * (100+code_slop_pct()) / 100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  if (length > MAX_METHOD_LENGTH) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    if (delta == 0 && code_length() <= MAX_METHOD_LENGTH) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
      length = MAX_METHOD_LENGTH;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  unsigned char* new_code_array = NEW_RESOURCE_ARRAY(unsigned char, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  if (!new_code_array) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  // Expanding current array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  if (code_array() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    memcpy(new_code_array, code_array(), code_length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    // Initial copy. Copy directly from methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    memcpy(new_code_array, method()->code_base(), code_length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  set_code_array(new_code_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  set_code_array_length(length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
// The instruction at "bci", whose size is "ilen", is changing size by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
// "delta".  Reallocate, move code, recalculate jumps, and enqueue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
// change items as necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
bool Relocator::relocate_code(int bci, int ilen, int delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  int next_bci = bci + ilen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  if (delta > 0 && code_length() + delta > code_array_length())  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    // Expand allocated code space, if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    if (!expand_code_array(delta)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
          return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  // We require 4-byte alignment of code arrays.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  assert(((intptr_t)code_array() & 3) == 0, "check code alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  // Change jumps before doing the copying; this routine requires aligned switches.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  change_jumps(bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  // In case we have shrunken a tableswitch/lookupswitch statement, we store the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  // bytes that get overwritten. We have to copy the bytes after the change_jumps method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  // has been called, since it is likly to update last offset in a tableswitch/lookupswitch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  if (delta < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    assert(delta>=-3, "we cannot overwrite more than 3 bytes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    memcpy(_overwrite, addr_at(bci + ilen + delta), -delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  memmove(addr_at(next_bci + delta), addr_at(next_bci), code_length() - next_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  set_code_length(code_length() + delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  // Also adjust exception tables...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  adjust_exception_table(bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  // Line number tables...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  adjust_line_no_table(bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  // And local variable table...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  adjust_local_var_table(bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
6974
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   616
  // Adjust stack maps
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   617
  adjust_stack_map_table(bci, delta);
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   618
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  // Relocate the pending change stack...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  for (int j = 0; j < _changes->length(); j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    ChangeItem* ci = _changes->at(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    ci->relocate(bci, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  // Notify any listeners about code relocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  notify(bci, delta, code_length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
// relocate a general instruction. Called by ChangeWiden class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
bool Relocator::handle_widen(int bci, int new_ilen, u_char inst_buffer[]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  int ilen = rc_instr_len(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  if (!relocate_code(bci, ilen, new_ilen - ilen))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  // Insert new bytecode(s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  for(int k = 0; k < new_ilen; k++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    code_at_put(bci + k, (Bytecodes::Code)inst_buffer[k]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
// handle jump_widen instruction. Called be ChangeJumpWiden class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
bool Relocator::handle_jump_widen(int bci, int delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  int ilen = rc_instr_len(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  Bytecodes::Code bc = code_at(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  switch (bc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    case Bytecodes::_ifnonnull: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
      const int goto_length   = Bytecodes::length_for(Bytecodes::_goto);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
      // If 'if' points to the next bytecode after goto, it's already handled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
      // it shouldn't be.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
      assert (short_at(bci+1) != ilen+goto_length, "if relocation already handled");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
      assert(ilen == 3, "check length");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
      // Convert to 0 if <cond> goto 6
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
      //            3 _goto 11
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
      //            6 _goto_w <wide delta offset>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
      //            11 <else code>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
      const int goto_w_length = Bytecodes::length_for(Bytecodes::_goto_w);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
      const int add_bci = goto_length + goto_w_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
      if (!relocate_code(bci, 3, /*delta*/add_bci)) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
      // if bytecode points to goto_w instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
      short_at_put(bci + 1, ilen + goto_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
      int cbci = bci + ilen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
      // goto around
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
      code_at_put(cbci, Bytecodes::_goto);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
      short_at_put(cbci + 1, add_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
      // goto_w <wide delta>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
      cbci = cbci + goto_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
      code_at_put(cbci, Bytecodes::_goto_w);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
      if (delta > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
        delta += 2;                 // goto_w is 2 bytes more than "if" code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
        delta -= ilen+goto_length;  // branch starts at goto_w offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
      int_at_put(cbci + 1, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
    case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
      assert(ilen == 3, "check length");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      if (!relocate_code(bci, 3, 2)) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
      if (bc == Bytecodes::_goto)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
        code_at_put(bci, Bytecodes::_goto_w);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
        code_at_put(bci, Bytecodes::_jsr_w);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
      // If it's a forward jump, add 2 for the widening.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
      if (delta > 0) delta += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
      int_at_put(bci + 1, delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
    default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
// handle lookup/table switch instructions.  Called be ChangeSwitchPad class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
bool Relocator::handle_switch_pad(int bci, int old_pad, bool is_lookup_switch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  int ilen = rc_instr_len(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  int new_pad = align(bci+1) - (bci+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  int pad_delta = new_pad - old_pad;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  if (pad_delta != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    int len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
    if (!is_lookup_switch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
      int low  = int_at(bci+1+old_pad+4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
      int high = int_at(bci+1+old_pad+8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
      len = high-low+1 + 3; // 3 for default, hi, lo.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
      int npairs = int_at(bci+1+old_pad+4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
      len = npairs*2 + 2; // 2 for default, npairs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    // Because "relocateCode" does a "changeJumps" loop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    // which parses instructions to determine their length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    // we need to call that before messing with the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
    // instruction.  Since it may also overwrite the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    // instruction when moving down, remember the possibly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
    // overwritten part.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    // Move the code following the instruction...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    if (!relocate_code(bci, ilen, pad_delta)) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
    if (pad_delta < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
      // Move the shrunken instruction down.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
      memmove(addr_at(bci + 1 + new_pad),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
              addr_at(bci + 1 + old_pad),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
              len * 4 + pad_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
      memmove(addr_at(bci + 1 + new_pad + len*4 + pad_delta),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
              _overwrite, -pad_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
      assert(pad_delta > 0, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
      // Move the expanded instruction up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
      memmove(addr_at(bci +1 + new_pad),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
              addr_at(bci +1 + old_pad),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
              len * 4);
6974
a013f1c533a5 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 5547
diff changeset
   761
      memset(addr_at(bci + 1), 0, new_pad); // pad must be 0
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
}