hotspot/src/cpu/sparc/vm/relocInfo_sparc.cpp
author hseigel
Thu, 15 Aug 2013 20:04:10 -0400
changeset 19319 0ad35be0733a
parent 18446 635eae7b22fc
child 31849 92ca49fa9fa7
permissions -rw-r--r--
8003424: Enable Class Data Sharing for CompressedOops 8016729: ObjectAlignmentInBytes=16 now forces the use of heap based compressed oops 8005933: The -Xshare:auto option is ignored for -server Summary: Move klass metaspace above the heap and support CDS with compressed klass ptrs. Reviewed-by: coleenp, kvn, mgerdin, tschatzl, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18446
diff changeset
     2
 * Copyright (c) 1998, 2013, 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: 2571
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2571
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: 2571
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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
14631
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13969
diff changeset
    26
#include "asm/assembler.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "code/relocInfo.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "nativeInst_sparc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/safepoint.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    32
void Relocation::pd_set_data_value(address x, intptr_t o, bool verify_only) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  NativeInstruction* ip = nativeInstruction_at(addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  jint inst = ip->long_at(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  assert(inst != NativeInstruction::illegal_instruction(), "no breakpoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  switch (Assembler::inv_op(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  case Assembler::ldst_op:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
      switch (Assembler::inv_op3(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
        case Assembler::lduw_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
        case Assembler::ldub_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
        case Assembler::lduh_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
        case Assembler::ldd_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
        case Assembler::ldsw_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
        case Assembler::ldsb_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
        case Assembler::ldsh_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
        case Assembler::ldx_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
        case Assembler::ldf_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
        case Assembler::lddf_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
        case Assembler::stw_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
        case Assembler::stb_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
        case Assembler::sth_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
        case Assembler::std_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
        case Assembler::stx_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
        case Assembler::stf_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
        case Assembler::stdf_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
        case Assembler::casa_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
        case Assembler::casxa_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
        default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
          ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
      goto do_non_sethi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  case Assembler::arith_op:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
      switch (Assembler::inv_op3(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
        case Assembler::or_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
        case Assembler::add_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
        case Assembler::jmpl_op3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
        default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
          ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    do_non_sethi:;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    guarantee(Assembler::inv_immed(inst), "must have a simm13 field");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    int simm13 = Assembler::low10((intptr_t)x) + o;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    guarantee(Assembler::is_simm13(simm13), "offset can't overflow simm13");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    inst &= ~Assembler::simm(    -1, 13);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    inst |=  Assembler::simm(simm13, 13);
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    85
    if (verify_only) {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    86
      assert(ip->long_at(0) == inst, "instructions must match");
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    87
    } else {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    88
      ip->set_long_at(0, inst);
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    89
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  case Assembler::branch_op:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    jint inst2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    guarantee(Assembler::inv_op2(inst)==Assembler::sethi_op2, "must be sethi");
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 1
diff changeset
    98
    if (format() != 0) {
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13728
diff changeset
    99
      assert(type() == relocInfo::oop_type || type() == relocInfo::metadata_type, "only narrow oops or klasses case");
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18446
diff changeset
   100
      jint np = type() == relocInfo::oop_type ? oopDesc::encode_heap_oop((oop)x) : Klass::encode_klass((Klass*)x);
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 1
diff changeset
   101
      inst &= ~Assembler::hi22(-1);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 1
diff changeset
   102
      inst |=  Assembler::hi22((intptr_t)np);
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   103
      if (verify_only) {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   104
        assert(ip->long_at(0) == inst, "instructions must match");
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   105
      } else {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   106
        ip->set_long_at(0, inst);
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   107
      }
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 1
diff changeset
   108
      inst2 = ip->long_at( NativeInstruction::nop_instruction_size );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 1
diff changeset
   109
      guarantee(Assembler::inv_op(inst2)==Assembler::arith_op, "arith op");
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   110
      if (verify_only) {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   111
        assert(ip->long_at(NativeInstruction::nop_instruction_size) == NativeInstruction::set_data32_simm13( inst2, (intptr_t)np),
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   112
               "instructions must match");
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   113
      } else {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   114
        ip->set_long_at(NativeInstruction::nop_instruction_size, NativeInstruction::set_data32_simm13( inst2, (intptr_t)np));
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   115
      }
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 1
diff changeset
   116
      break;
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 1
diff changeset
   117
    }
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   118
    if (verify_only) {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   119
      ip->verify_data64_sethi( ip->addr_at(0), (intptr_t)x );
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   120
    } else {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   121
      ip->set_data64_sethi( ip->addr_at(0), (intptr_t)x );
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   122
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    guarantee(Assembler::inv_op2(inst)==Assembler::sethi_op2, "must be sethi");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    inst &= ~Assembler::hi22(     -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    inst |=  Assembler::hi22((intptr_t)x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    // (ignore offset; it doesn't play into the sethi)
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   128
    if (verify_only) {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   129
      assert(ip->long_at(0) == inst, "instructions must match");
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   130
    } else {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   131
      ip->set_long_at(0, inst);
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
   132
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    guarantee(false, "instruction must perform arithmetic or memory access");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
address Relocation::pd_call_destination(address orig_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  intptr_t adj = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  if (orig_addr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    // We just moved this call instruction from orig_addr to addr().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    // This means its target will appear to have grown by addr() - orig_addr.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    adj = -( addr() - orig_addr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  if (NativeCall::is_call_at(addr())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    NativeCall* call = nativeCall_at(addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    return call->destination() + adj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  if (NativeFarCall::is_call_at(addr())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    NativeFarCall* call = nativeFarCall_at(addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    return call->destination() + adj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Special case:  Patchable branch local to the code cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // This will break badly if the code cache grows larger than a few Mb.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  NativeGeneralJump* br = nativeGeneralJump_at(addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  return br->jump_destination() + adj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
void Relocation::pd_set_call_destination(address x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  if (NativeCall::is_call_at(addr())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    NativeCall* call = nativeCall_at(addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    call->set_destination(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  if (NativeFarCall::is_call_at(addr())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    NativeFarCall* call = nativeFarCall_at(addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    call->set_destination(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Special case:  Patchable branch local to the code cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // This will break badly if the code cache grows larger than a few Mb.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  NativeGeneralJump* br = nativeGeneralJump_at(addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  br->set_jump_destination(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
address* Relocation::pd_address_in_code() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // SPARC never embeds addresses in code, at present.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  //assert(type() == relocInfo::oop_type, "only oops are inlined at present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  return (address*)addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
address Relocation::pd_get_address_from_code() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // SPARC never embeds addresses in code, at present.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  //assert(type() == relocInfo::oop_type, "only oops are inlined at present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  return *(address*)addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   196
void poll_Relocation::fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dest) {
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   197
}
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   198
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   199
void poll_return_Relocation::fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dest) {
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   200
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
   201
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
   202
void metadata_Relocation::pd_fix_value(address x) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
   203
}