src/cpu/mips/vm/relocInfo_mips.cpp

Thu, 24 May 2018 19:49:50 +0800

author
aoqi
date
Thu, 24 May 2018 19:49:50 +0800
changeset 8865
ffcdff41a92f
parent 8862
fd13a567f179
child 9251
1ccc5a3b3671
permissions
-rw-r--r--

some C1 fix
Contributed-by: chenhaoxuan, zhaixiang, aoqi

aoqi@1 1 /*
aoqi@1 2 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@1 3 * Copyright (c) 2015, 2016, Loongson Technology. All rights reserved.
aoqi@1 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@1 5 *
aoqi@1 6 * This code is free software; you can redistribute it and/or modify it
aoqi@1 7 * under the terms of the GNU General Public License version 2 only, as
aoqi@1 8 * published by the Free Software Foundation.
aoqi@1 9 *
aoqi@1 10 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@1 11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@1 12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@1 13 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@1 14 * accompanied this code).
aoqi@1 15 *
aoqi@1 16 * You should have received a copy of the GNU General Public License version
aoqi@1 17 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@1 18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@1 19 *
aoqi@1 20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@1 21 * or visit www.oracle.com if you need additional information or have any
aoqi@1 22 * questions.
aoqi@1 23 *
aoqi@1 24 */
aoqi@1 25
aoqi@1 26 #include "precompiled.hpp"
aoqi@1 27 #include "asm/macroAssembler.hpp"
aoqi@1 28 #include "code/relocInfo.hpp"
aoqi@1 29 #include "nativeInst_mips.hpp"
aoqi@1 30 #include "oops/oop.inline.hpp"
aoqi@1 31 #include "runtime/safepoint.hpp"
aoqi@1 32
aoqi@1 33
aoqi@1 34 void Relocation::pd_set_data_value(address x, intptr_t o, bool verify_only) {
aoqi@1 35 #ifdef _LP64
aoqi@1 36 x += o;
aoqi@1 37 typedef Assembler::WhichOperand WhichOperand;
aoqi@1 38 WhichOperand which = (WhichOperand) format(); // that is, disp32 or imm, call32, narrow oop
aoqi@1 39 assert(which == Assembler::disp32_operand ||
aoqi@1 40 which == Assembler::narrow_oop_operand ||
aoqi@1 41 which == Assembler::imm_operand, "format unpacks ok");
aoqi@1 42 if (which == Assembler::imm_operand) {
aoqi@1 43 if (verify_only) {
aoqi@1 44 assert(nativeMovConstReg_at(addr())->data() == (long)x, "instructions must match");
aoqi@1 45 } else {
aoqi@1 46 nativeMovConstReg_at(addr())->set_data((intptr_t)(x));
aoqi@1 47 }
aoqi@1 48 } else if (which == Assembler::narrow_oop_operand) {
aoqi@1 49 // both compressed oops and compressed classes look the same
aoqi@1 50 if (Universe::heap()->is_in_reserved((oop)x)) {
aoqi@1 51 if (verify_only) {
aoqi@1 52 assert(nativeMovConstReg_at(addr())->data() == (long)oopDesc::encode_heap_oop((oop)x), "instructions must match");
aoqi@1 53 } else {
aoqi@1 54 nativeMovConstReg_at(addr())->set_data((intptr_t)(oopDesc::encode_heap_oop((oop)x)));
aoqi@1 55 }
aoqi@1 56 } else {
aoqi@1 57 if (verify_only) {
aoqi@1 58 assert(nativeMovConstReg_at(addr())->data() == (long)Klass::encode_klass((Klass*)x), "instructions must match");
aoqi@1 59 } else {
aoqi@1 60 nativeMovConstReg_at(addr())->set_data((intptr_t)(Klass::encode_klass((Klass*)x)));
aoqi@1 61 }
aoqi@1 62 }
aoqi@1 63 } else {
aoqi@1 64 // Note: Use runtime_call_type relocations for call32_operand.
aoqi@1 65 assert(0, "call32_operand not supported in MIPS64");
aoqi@1 66 }
aoqi@1 67 #else
aoqi@1 68 if (verify_only) {
aoqi@1 69 assert(*pd_address_in_code() == (x + o), "instructions must match");
aoqi@1 70 } else {
aoqi@1 71 *pd_address_in_code() = x + o;
aoqi@1 72 }
aoqi@1 73 #endif // AMD64
aoqi@1 74 }
aoqi@1 75
aoqi@1 76
aoqi@1 77 //NOTICE HERE, this relocate is not need for MIPS, since MIPS USE abosolutly target,
aoqi@1 78 //Maybe We should FORGET CALL RELOCATION
aoqi@1 79 address Relocation::pd_call_destination(address orig_addr) {
aoqi@1 80 intptr_t adj = 0;
aoqi@1 81 NativeInstruction* ni = nativeInstruction_at(addr());
aoqi@1 82 if (ni->is_call()) {
aoqi@1 83 return nativeCall_at(addr())->destination() + adj;
aoqi@1 84 } else if (ni->is_jump()) {
aoqi@6880 85 return nativeGeneralJump_at(addr())->jump_destination() + adj;
aoqi@1 86 } else if (ni->is_cond_jump()) {
aoqi@6880 87 return nativeCondJump_at(addr())->jump_destination() +adj;
aoqi@1 88 } else {
fujie@367 89 tty->print_cr("\nError!\ncall destination: 0x%lx", addr());
fujie@367 90 Disassembler::decode(addr() - 10 * 4, addr() + 10 * 4, tty);
aoqi@1 91 ShouldNotReachHere();
aoqi@1 92 return NULL;
aoqi@1 93 }
aoqi@1 94 }
aoqi@1 95
aoqi@1 96
aoqi@1 97 void Relocation::pd_set_call_destination(address x) {
aoqi@1 98 NativeInstruction* ni = nativeInstruction_at(addr());
aoqi@1 99 if (ni->is_call()) {
aoqi@1 100 nativeCall_at(addr())->set_destination(x);
aoqi@6880 101 } else if (ni->is_jump())
aoqi@1 102 nativeGeneralJump_at(addr())->set_jump_destination(x);
aoqi@6880 103 else if (ni->is_cond_jump())
aoqi@6880 104 nativeCondJump_at(addr())->set_jump_destination(x);
aoqi@1 105 else
aoqi@1 106 { ShouldNotReachHere(); }
aoqi@1 107
aoqi@1 108 // Unresolved jumps are recognized by a destination of -1
aoqi@1 109 // However 64bit can't actually produce such an address
aoqi@1 110 // and encodes a jump to self but jump_destination will
aoqi@1 111 // return a -1 as the signal. We must not relocate this
aoqi@1 112 // jmp or the ic code will not see it as unresolved.
aoqi@1 113 }
aoqi@1 114
aoqi@1 115
aoqi@1 116 address* Relocation::pd_address_in_code() {
aoqi@8865 117 // ShouldNotReachHere();
aoqi@6880 118 return (address*)addr();
aoqi@1 119 }
aoqi@1 120
aoqi@1 121
aoqi@1 122 address Relocation::pd_get_address_from_code() {
aoqi@6880 123 NativeMovConstReg* ni = nativeMovConstReg_at(addr());
aoqi@6880 124 return (address)ni->data();
aoqi@1 125 }
aoqi@1 126
aoqi@1 127
aoqi@1 128
aoqi@1 129 void poll_Relocation::fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dest) {
aoqi@8865 130 //Unimplemented();
aoqi@8865 131 //tty->print_cr("%s not finished yet!!!", __func__);
aoqi@1 132 }
aoqi@1 133
aoqi@1 134 void poll_return_Relocation::fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dest) {
aoqi@8865 135 //Unimplemented();
aoqi@8865 136 //tty->print_cr("%s not finished yet!!!", __func__);
aoqi@1 137 }
aoqi@1 138
aoqi@1 139 void internal_pc_Relocation::fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dest) {
aoqi@6880 140 address target =0;
aoqi@6880 141 NativeMovConstReg* ni = nativeMovConstReg_at(addr());
aoqi@6880 142 target = new_addr_for((address)ni->data(), src, dest);
aoqi@6880 143 ni->set_data((intptr_t)target);
aoqi@6880 144 }
aoqi@1 145
aoqi@1 146 void metadata_Relocation::pd_fix_value(address x) {
aoqi@1 147 }

mercurial