src/hotspot/cpu/x86/relocInfo_x86.cpp
author rehn
Thu, 31 Aug 2017 10:00:28 +0200
changeset 47881 0ce0ac68ace7
parent 47216 71c04702a3d5
child 49592 77fb0be7d19f
permissions -rw-r--r--
8189941: Implementation JEP 312: Thread-local handshake Summary: Introduce a way to execute a callback on threads without performing a global VM safepoint. Make it both possible and cheap to stop individual threads and not just all threads or none. Reviewed-by: mdoerr, neliasso, acorn, aph, coleenp, dholmes Contributed-by: mikael.gerdin@oracle.com, erik.osterlund@oracle.com, robbin.ehn@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47216
diff changeset
     2
 * Copyright (c) 1998, 2017, 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: 1066
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1066
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: 1066
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"
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
    26
#include "asm/macroAssembler.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_x86.hpp"
31849
92ca49fa9fa7 8131344: Missing klass.inline.hpp include in compiler files
tschatzl
parents: 19319
diff changeset
    29
#include "oops/klass.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "runtime/safepoint.hpp"
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47216
diff changeset
    32
#include "runtime/safepointMechanism.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    35
void Relocation::pd_set_data_value(address x, intptr_t o, bool verify_only) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  x += o;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  typedef Assembler::WhichOperand WhichOperand;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    39
  WhichOperand which = (WhichOperand) format(); // that is, disp32 or imm, call32, narrow oop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  assert(which == Assembler::disp32_operand ||
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 1
diff changeset
    41
         which == Assembler::narrow_oop_operand ||
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    42
         which == Assembler::imm_operand, "format unpacks ok");
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    43
  if (which == Assembler::imm_operand) {
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    44
    if (verify_only) {
33807
9f8b0f8a3f29 8140584: nmethod::oops_do_marking_epilogue always runs verification code
stefank
parents: 33160
diff changeset
    45
      guarantee(*pd_address_in_code() == x, "instructions must match");
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    46
    } else {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    47
      *pd_address_in_code() = x;
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    48
    }
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 1
diff changeset
    49
  } else if (which == Assembler::narrow_oop_operand) {
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 1
diff changeset
    50
    address disp = Assembler::locate_operand(addr(), which);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8871
diff changeset
    51
    // both compressed oops and compressed classes look the same
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8871
diff changeset
    52
    if (Universe::heap()->is_in_reserved((oop)x)) {
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    53
    if (verify_only) {
33807
9f8b0f8a3f29 8140584: nmethod::oops_do_marking_epilogue always runs verification code
stefank
parents: 33160
diff changeset
    54
      guarantee(*(uint32_t*) disp == oopDesc::encode_heap_oop((oop)x), "instructions must match");
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    55
    } else {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    56
      *(int32_t*) disp = oopDesc::encode_heap_oop((oop)x);
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    57
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8871
diff changeset
    59
      if (verify_only) {
33807
9f8b0f8a3f29 8140584: nmethod::oops_do_marking_epilogue always runs verification code
stefank
parents: 33160
diff changeset
    60
        guarantee(*(uint32_t*) disp == Klass::encode_klass((Klass*)x), "instructions must match");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8871
diff changeset
    61
      } else {
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18446
diff changeset
    62
        *(int32_t*) disp = Klass::encode_klass((Klass*)x);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8871
diff changeset
    63
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8871
diff changeset
    64
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8871
diff changeset
    65
  } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    // Note:  Use runtime_call_type relocations for call32_operand.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    address ip = addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    address disp = Assembler::locate_operand(ip, which);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    address next_ip = Assembler::locate_next_instruction(ip);
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    70
    if (verify_only) {
33807
9f8b0f8a3f29 8140584: nmethod::oops_do_marking_epilogue always runs verification code
stefank
parents: 33160
diff changeset
    71
      guarantee(*(int32_t*) disp == (x - next_ip), "instructions must match");
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    72
    } else {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    73
      *(int32_t*) disp = x - next_ip;
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    74
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
#else
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    77
  if (verify_only) {
33807
9f8b0f8a3f29 8140584: nmethod::oops_do_marking_epilogue always runs verification code
stefank
parents: 33160
diff changeset
    78
    guarantee(*pd_address_in_code() == (x + o), "instructions must match");
8724
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    79
  } else {
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    80
    *pd_address_in_code() = x + o;
693c6b883b54 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 7397
diff changeset
    81
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
address Relocation::pd_call_destination(address orig_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  intptr_t adj = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  if (orig_addr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    // We just moved this call instruction from orig_addr to addr().
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    // This means its target will appear to have grown by addr() - orig_addr.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    adj = -( addr() - orig_addr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  NativeInstruction* ni = nativeInstruction_at(addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (ni->is_call()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    return nativeCall_at(addr())->destination() + adj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  } else if (ni->is_jump()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    return nativeJump_at(addr())->jump_destination() + adj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  } else if (ni->is_cond_jump()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    return nativeGeneralJump_at(addr())->jump_destination() + adj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  } else if (ni->is_mov_literal64()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    return (address) ((NativeMovConstReg*)ni)->data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
void Relocation::pd_set_call_destination(address x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  NativeInstruction* ni = nativeInstruction_at(addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  if (ni->is_call()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    nativeCall_at(addr())->set_destination(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  } else if (ni->is_jump()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    NativeJump* nj = nativeJump_at(addr());
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   115
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   116
    // Unresolved jumps are recognized by a destination of -1
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   117
    // However 64bit can't actually produce such an address
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   118
    // and encodes a jump to self but jump_destination will
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   119
    // return a -1 as the signal. We must not relocate this
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   120
    // jmp or the ic code will not see it as unresolved.
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   121
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    if (nj->jump_destination() == (address) -1) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   123
      x = addr(); // jump to self
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    nj->set_jump_destination(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  } else if (ni->is_cond_jump()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    // %%%% kludge this, for now, until we get a jump_destination method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    address old_dest = nativeGeneralJump_at(addr())->jump_destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    address disp = Assembler::locate_operand(addr(), Assembler::call32_operand);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    *(jint*)disp += (x - old_dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  } else if (ni->is_mov_literal64()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    ((NativeMovConstReg*)ni)->set_data((intptr_t)x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
address* Relocation::pd_address_in_code() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // All embedded Intel addresses are stored in 32-bit words.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Since the addr points at the start of the instruction,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // we must parse the instruction a bit to find the embedded word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  assert(is_data(), "must be a DataRelocation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  typedef Assembler::WhichOperand WhichOperand;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   145
  WhichOperand which = (WhichOperand) format(); // that is, disp32 or imm/imm32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  assert(which == Assembler::disp32_operand ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
         which == Assembler::call32_operand ||
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   149
         which == Assembler::imm_operand, "format unpacks ok");
16382
6d063103018a 8009584: [parfait] Null pointer deference in hotspot/src/cpu/x86/vm/relocInfo_x86.cpp
morris
parents: 14626
diff changeset
   150
  // The "address" in the code is a displacement can't return it as
6d063103018a 8009584: [parfait] Null pointer deference in hotspot/src/cpu/x86/vm/relocInfo_x86.cpp
morris
parents: 14626
diff changeset
   151
  // and address* since it is really a jint*
6d063103018a 8009584: [parfait] Null pointer deference in hotspot/src/cpu/x86/vm/relocInfo_x86.cpp
morris
parents: 14626
diff changeset
   152
  guarantee(which == Assembler::imm_operand, "must be immediate operand");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
#else
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   154
  assert(which == Assembler::disp32_operand || which == Assembler::imm_operand, "format unpacks ok");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  return (address*) Assembler::locate_operand(addr(), which);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
address Relocation::pd_get_address_from_code() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // All embedded Intel addresses are stored in 32-bit words.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Since the addr points at the start of the instruction,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // we must parse the instruction a bit to find the embedded word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  assert(is_data(), "must be a DataRelocation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  typedef Assembler::WhichOperand WhichOperand;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   167
  WhichOperand which = (WhichOperand) format(); // that is, disp32 or imm/imm32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  assert(which == Assembler::disp32_operand ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
         which == Assembler::call32_operand ||
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   170
         which == Assembler::imm_operand, "format unpacks ok");
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   171
  if (which != Assembler::imm_operand) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    address ip = addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    address disp = Assembler::locate_operand(ip, which);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    address next_ip = Assembler::locate_next_instruction(ip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    address a = next_ip + *(int32_t*) disp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    return a;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  return *pd_address_in_code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   182
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
   183
#ifdef _LP64
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31849
diff changeset
   184
  typedef Assembler::WhichOperand WhichOperand;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31849
diff changeset
   185
  WhichOperand which = (WhichOperand) format();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31849
diff changeset
   186
#if !INCLUDE_JVMCI
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47216
diff changeset
   187
  if (SafepointMechanism::uses_global_page_poll()) {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47216
diff changeset
   188
    assert((which == Assembler::disp32_operand) == !Assembler::is_polling_page_far(), "format not set correctly");
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47216
diff changeset
   189
  }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31849
diff changeset
   190
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31849
diff changeset
   191
  if (which == Assembler::disp32_operand) {
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47216
diff changeset
   192
    assert(SafepointMechanism::uses_global_page_poll(), "should only have generated such a poll if global polling enabled");
8871
5c3b26c4119e 6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents: 8724
diff changeset
   193
    address orig_addr = old_addr_for(addr(), src, dest);
5c3b26c4119e 6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents: 8724
diff changeset
   194
    NativeInstruction* oni = nativeInstruction_at(orig_addr);
5c3b26c4119e 6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents: 8724
diff changeset
   195
    int32_t* orig_disp = (int32_t*) Assembler::locate_operand(orig_addr, which);
5c3b26c4119e 6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents: 8724
diff changeset
   196
    // This poll_addr is incorrect by the size of the instruction it is irrelevant
5c3b26c4119e 6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents: 8724
diff changeset
   197
    intptr_t poll_addr = (intptr_t)oni + *orig_disp;
5c3b26c4119e 6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents: 8724
diff changeset
   198
    NativeInstruction* ni = nativeInstruction_at(addr());
5c3b26c4119e 6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents: 8724
diff changeset
   199
    intptr_t new_disp = poll_addr - (intptr_t) ni;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   200
8871
5c3b26c4119e 6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents: 8724
diff changeset
   201
    int32_t* disp = (int32_t*) Assembler::locate_operand(addr(), which);
5c3b26c4119e 6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents: 8724
diff changeset
   202
    * disp = (int32_t)new_disp;
5c3b26c4119e 6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents: 8724
diff changeset
   203
  }
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   204
#endif // _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   205
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8871
diff changeset
   206
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8871
diff changeset
   207
void metadata_Relocation::pd_fix_value(address x) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8871
diff changeset
   208
}