< prev index next >

src/cpu/zero/vm/relocInfo_zero.cpp

Print this page
@    rev 9248 : 8141138: Zero fails to build
|\   Summary: Adjust to recent JDK-9 changes.
| \
| |\
| | \
| | |\
| | | \
| | | |\
| | | | \
| | | | |\
| | | | | \
| | | | | |\
| | | | | | \
| | | | | | |\
+-+-+-+-+-+---o  rev 5753 : 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
| | | | | | |/   Summary: Copyright year updated for files modified during 2013
| | | | | | |    Reviewed-by: twisti, iveresov
+-+-+-+-+---o  rev 5110 : 8022956: Clang: enable return type warnings on BSD
| | | | | |/   Reviewed-by: coleenp, sla
+-+-+-+---o  rev 4879 : 8017308: Remove unused breakpoint relocation type
| | | | |/   Summary: remove unused breakpoint relocation type
| | | | |    Reviewed-by: kvn
+-+-+---o  rev 3802 : 8000780: make Zero build and run with JDK8
| | | |/   Reviewed-by: coleenp, dholmes, twisti
| | | |    Contributed-by: Roman Kennke <rkennke@redhat.com>
+-+---o  rev 2294 : 7032458: Zero and Shark fixes
| | |/   Reviewed-by: twisti
| | |    Contributed-by: Gary Benson <gbenson@redhat.com>
+---o  rev 1879 : 6989984: Use standard include model for Hospot
| |/   Summary: Replaced MakeDeps and the includeDB files with more standardized solutions.
| |    Reviewed-by: coleenp, kvn, kamg
| o  rev 1472 : 6941466: Oracle rebranding changes for Hotspot repositories
|/   Summary: Change all the Sun copyrights to Oracle copyright
|    Reviewed-by: ohair
o  rev 1010 : 6890308: integrate zero assembler hotspot changes
|  Reviewed-by: never
|  Contributed-by: gbenson@redhat.com


  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 }


  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 }
< prev index next >