< prev index next >

src/share/vm/runtime/relocator.hpp

Print this page




  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_RELOCATOR_HPP
  26 #define SHARE_VM_RUNTIME_RELOCATOR_HPP
  27 
  28 #include "interpreter/bytecodes.hpp"
  29 #include "oops/method.hpp"
  30 #ifdef TARGET_ARCH_x86
  31 # include "bytes_x86.hpp"
  32 #endif



  33 #ifdef TARGET_ARCH_sparc
  34 # include "bytes_sparc.hpp"
  35 #endif
  36 #ifdef TARGET_ARCH_zero
  37 # include "bytes_zero.hpp"
  38 #endif
  39 #ifdef TARGET_ARCH_arm
  40 # include "bytes_arm.hpp"
  41 #endif
  42 #ifdef TARGET_ARCH_ppc
  43 # include "bytes_ppc.hpp"
  44 #endif
  45 
  46 // This code has been converted from the 1.1E java virtual machine
  47 // Thanks to the JavaTopics group for using the code
  48 
  49 class ChangeItem;
  50 
  51 // Callback object for code relocations
  52 class RelocatorListener : public StackObj {




  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_RELOCATOR_HPP
  26 #define SHARE_VM_RUNTIME_RELOCATOR_HPP
  27 
  28 #include "interpreter/bytecodes.hpp"
  29 #include "oops/method.hpp"
  30 #ifdef TARGET_ARCH_x86
  31 # include "bytes_x86.hpp"
  32 #endif
  33 #ifdef TARGET_ARCH_aarch64
  34 # include "bytes_aarch64.hpp"
  35 #endif
  36 #ifdef TARGET_ARCH_sparc
  37 # include "bytes_sparc.hpp"
  38 #endif
  39 #ifdef TARGET_ARCH_zero
  40 # include "bytes_zero.hpp"
  41 #endif
  42 #ifdef TARGET_ARCH_arm
  43 # include "bytes_arm.hpp"
  44 #endif
  45 #ifdef TARGET_ARCH_ppc
  46 # include "bytes_ppc.hpp"
  47 #endif
  48 
  49 // This code has been converted from the 1.1E java virtual machine
  50 // Thanks to the JavaTopics group for using the code
  51 
  52 class ChangeItem;
  53 
  54 // Callback object for code relocations
  55 class RelocatorListener : public StackObj {


< prev index next >