mirror of
https://github.com/openjdk/jdk.git
synced 2026-07-25 18:33:08 +00:00
122 lines
4.6 KiB
C++
122 lines
4.6 KiB
C++
/*
|
|
* Copyright (c) 1998, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
* Copyright (c) 2014, Red Hat Inc. All rights reserved.
|
|
* Copyright (c) 2020, 2022, Huawei Technologies Co., Ltd. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*
|
|
*/
|
|
|
|
#include "asm/macroAssembler.hpp"
|
|
#include "code/relocInfo.hpp"
|
|
#include "nativeInst_riscv.hpp"
|
|
#include "oops/oop.inline.hpp"
|
|
#include "runtime/safepoint.hpp"
|
|
|
|
void Relocation::pd_set_data_value(address x, bool verify_only) {
|
|
if (verify_only) {
|
|
return;
|
|
}
|
|
|
|
int bytes;
|
|
|
|
switch (type()) {
|
|
case relocInfo::oop_type: {
|
|
oop_Relocation *reloc = (oop_Relocation *)this;
|
|
// in movoop when BarrierSet::barrier_set()->barrier_set_nmethod() isn't null
|
|
if (MacroAssembler::is_load_pc_relative_at(addr())) {
|
|
address constptr = (address)code()->oop_addr_at(reloc->oop_index());
|
|
bytes = MacroAssembler::pd_patch_instruction_size(addr(), constptr);
|
|
assert((address)Bytes::get_native_u8(constptr) == x, "error in oop relocation");
|
|
} else {
|
|
bytes = MacroAssembler::patch_oop(addr(), x);
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
bytes = MacroAssembler::pd_patch_instruction_size(addr(), x);
|
|
break;
|
|
}
|
|
|
|
// If we are using UseCtxFencei no ICache invalidation is needed here.
|
|
// Instead every hart will preform an fence.i either by a Java thread
|
|
// (due to patching epoch will take it to slow path),
|
|
// or by the kernel when a Java thread is moved to a hart.
|
|
// The instruction streams changes must only happen before the disarm of
|
|
// the nmethod barrier. Where the disarm have a leading full two way fence.
|
|
// If this is performed during a safepoint, all Java threads will emit a fence.i
|
|
// before transitioning to 'Java', e.g. leaving native or the safepoint wait barrier.
|
|
if (!UseCtxFencei) {
|
|
// ICache invalidation is a serialization point.
|
|
// The above patching of instructions happens before the invalidation.
|
|
// Hence it have a leading full two way fence (wr, wr).
|
|
ICache::invalidate_range(addr(), bytes);
|
|
}
|
|
}
|
|
|
|
address Relocation::pd_call_destination(address orig_addr) {
|
|
assert(is_call(), "should be a call here");
|
|
if (NativeCall::is_at(addr())) {
|
|
return nativeCall_at(addr())->reloc_destination();
|
|
}
|
|
|
|
if (orig_addr != nullptr) {
|
|
address new_addr = MacroAssembler::pd_call_destination(orig_addr);
|
|
// If call is branch to self, don't try to relocate it, just leave it
|
|
// as branch to self. This happens during code generation if the code
|
|
// buffer expands. It will be relocated to the trampoline above once
|
|
// code generation is complete.
|
|
new_addr = (new_addr == orig_addr) ? addr() : new_addr;
|
|
return new_addr;
|
|
}
|
|
|
|
return MacroAssembler::pd_call_destination(addr());
|
|
}
|
|
|
|
void Relocation::pd_set_call_destination(address x) {
|
|
assert(is_call(), "should be a call here");
|
|
if (NativeCall::is_at(addr())) {
|
|
NativeCall* call = nativeCall_at(addr());
|
|
call->reloc_set_destination(x);
|
|
} else {
|
|
MacroAssembler::pd_patch_instruction_size(addr(), x);
|
|
assert(pd_call_destination(addr()) == x, "fail in reloc");
|
|
}
|
|
}
|
|
|
|
address* Relocation::pd_address_in_code() {
|
|
assert(MacroAssembler::is_load_pc_relative_at(addr()), "Not the expected instruction sequence!");
|
|
return (address*)(MacroAssembler::target_addr_for_insn(addr()));
|
|
}
|
|
|
|
address Relocation::pd_get_address_from_code() {
|
|
return MacroAssembler::pd_call_destination(addr());
|
|
}
|
|
|
|
void poll_Relocation::fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dest) {
|
|
if (NativeInstruction::maybe_cpool_ref(addr())) {
|
|
address old_addr = old_addr_for(addr(), src, dest);
|
|
MacroAssembler::pd_patch_instruction_size(addr(), MacroAssembler::target_addr_for_insn(old_addr));
|
|
}
|
|
}
|
|
|
|
void metadata_Relocation::pd_fix_value(address x) {
|
|
}
|