< prev index next >

src/hotspot/cpu/zero/relocInfo_zero.cpp

Print this page
rev 47445 : 8171853: Remove Shark compiler


  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 metadata_Relocation::pd_fix_value(address x) {
  63   ShouldNotCallThis();
  64 }


  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   ShouldNotCallThis();
  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 metadata_Relocation::pd_fix_value(address x) {
  63   ShouldNotCallThis();
  64 }
< prev index next >