hotspot/src/cpu/x86/vm/interp_masm_x86.cpp
changeset 33070 54f3f085b165
parent 32391 01e2f5e916c7
child 33083 ffe98d5b5621
--- a/hotspot/src/cpu/x86/vm/interp_masm_x86.cpp	Thu Sep 17 13:42:50 2015 -0700
+++ b/hotspot/src/cpu/x86/vm/interp_masm_x86.cpp	Thu Sep 17 09:03:57 2015 +0200
@@ -40,6 +40,11 @@
 
 // Implementation of InterpreterMacroAssembler
 
+void InterpreterMacroAssembler::jump_to_entry(address entry) {
+  assert(entry, "Entry must have been generated by now");
+  jump(RuntimeAddress(entry));
+}
+
 #ifndef CC_INTERP
 void InterpreterMacroAssembler::profile_obj_type(Register obj, const Address& mdo_addr) {
   Label update, next, none;