src/share/vm/runtime/registerMap.hpp

Print this page
rev 7258 : 8064611: AARCH64: Changes to HotSpot shared code
Summary: Everything except cpu/ and os_cpu/.
Reviewed-by: kvn


 118 
 119   void print_on(outputStream* st) const;
 120   void print() const;
 121 
 122   // the following contains the definition of pd_xxx methods
 123 #ifdef TARGET_ARCH_x86
 124 # include "registerMap_x86.hpp"
 125 #endif
 126 #ifdef TARGET_ARCH_sparc
 127 # include "registerMap_sparc.hpp"
 128 #endif
 129 #ifdef TARGET_ARCH_zero
 130 # include "registerMap_zero.hpp"
 131 #endif
 132 #ifdef TARGET_ARCH_arm
 133 # include "registerMap_arm.hpp"
 134 #endif
 135 #ifdef TARGET_ARCH_ppc
 136 # include "registerMap_ppc.hpp"
 137 #endif



 138 
 139 };
 140 
 141 #endif // SHARE_VM_RUNTIME_REGISTERMAP_HPP


 118 
 119   void print_on(outputStream* st) const;
 120   void print() const;
 121 
 122   // the following contains the definition of pd_xxx methods
 123 #ifdef TARGET_ARCH_x86
 124 # include "registerMap_x86.hpp"
 125 #endif
 126 #ifdef TARGET_ARCH_sparc
 127 # include "registerMap_sparc.hpp"
 128 #endif
 129 #ifdef TARGET_ARCH_zero
 130 # include "registerMap_zero.hpp"
 131 #endif
 132 #ifdef TARGET_ARCH_arm
 133 # include "registerMap_arm.hpp"
 134 #endif
 135 #ifdef TARGET_ARCH_ppc
 136 # include "registerMap_ppc.hpp"
 137 #endif
 138 #ifdef TARGET_ARCH_aarch64
 139 # include "registerMap_aarch64.hpp"
 140 #endif
 141 
 142 };
 143 
 144 #endif // SHARE_VM_RUNTIME_REGISTERMAP_HPP