src/cpu/zero/vm/relocInfo_zero.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8022956 Sdiff src/cpu/zero/vm

src/cpu/zero/vm/relocInfo_zero.cpp

Print this page




  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "asm/assembler.inline.hpp"
  28 #include "assembler_zero.inline.hpp"
  29 #include "code/relocInfo.hpp"
  30 #include "nativeInst_zero.hpp"
  31 #include "oops/oop.inline.hpp"
  32 #include "runtime/safepoint.hpp"
  33 
  34 void Relocation::pd_set_data_value(address x, intptr_t o, bool verify_only) {
  35   ShouldNotCallThis();
  36 }
  37 
  38 address Relocation::pd_call_destination(address orig_addr) {
  39   ShouldNotCallThis();

  40 }
  41 
  42 void Relocation::pd_set_call_destination(address x) {
  43   ShouldNotCallThis();
  44 }
  45 
  46 address Relocation::pd_get_address_from_code() {
  47   ShouldNotCallThis();

  48 }
  49 
  50 address* Relocation::pd_address_in_code() {
  51   // Relocations in Shark are just stored directly
  52   return (address *) addr();
  53 }
  54 
  55 void poll_Relocation::fix_relocation_after_move(const CodeBuffer* src,
  56                                                 CodeBuffer*       dst) {
  57   ShouldNotCallThis();
  58 }
  59 
  60 void poll_return_Relocation::fix_relocation_after_move(const CodeBuffer* src,
  61                                                        CodeBuffer*       dst) {
  62   ShouldNotCallThis();
  63 }
  64 
  65 void metadata_Relocation::pd_fix_value(address x) {
  66   ShouldNotCallThis();
  67 }


  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "asm/assembler.inline.hpp"
  28 #include "assembler_zero.inline.hpp"
  29 #include "code/relocInfo.hpp"
  30 #include "nativeInst_zero.hpp"
  31 #include "oops/oop.inline.hpp"
  32 #include "runtime/safepoint.hpp"
  33 
  34 void Relocation::pd_set_data_value(address x, intptr_t o, bool verify_only) {
  35   ShouldNotCallThis();
  36 }
  37 
  38 address Relocation::pd_call_destination(address orig_addr) {
  39   ShouldNotCallThis();
  40   return NULL;
  41 }
  42 
  43 void Relocation::pd_set_call_destination(address x) {
  44   ShouldNotCallThis();
  45 }
  46 
  47 address Relocation::pd_get_address_from_code() {
  48   ShouldNotCallThis();
  49   return NULL;
  50 }
  51 
  52 address* Relocation::pd_address_in_code() {
  53   // Relocations in Shark are just stored directly
  54   return (address *) addr();
  55 }
  56 
  57 void poll_Relocation::fix_relocation_after_move(const CodeBuffer* src,
  58                                                 CodeBuffer*       dst) {
  59   ShouldNotCallThis();
  60 }
  61 
  62 void poll_return_Relocation::fix_relocation_after_move(const CodeBuffer* src,
  63                                                        CodeBuffer*       dst) {
  64   ShouldNotCallThis();
  65 }
  66 
  67 void metadata_Relocation::pd_fix_value(address x) {
  68   ShouldNotCallThis();
  69 }
src/cpu/zero/vm/relocInfo_zero.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File