comparison src/cpu/sparc/vm/templateInterpreter_sparc.cpp @ 14957:4062efea018b

Remove compiled method call intrinsic.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 03 Apr 2014 17:47:29 +0200
parents 4ca6dc0799b6
children 4e3b63e7a9f6
comparison
equal deleted inserted replaced
14953:5a87cbdd8a09 14957:4062efea018b
802 // If G1 is not enabled then attempt to go through the accessor entry point 802 // If G1 is not enabled then attempt to go through the accessor entry point
803 // Reference.get is an accessor 803 // Reference.get is an accessor
804 return generate_accessor_entry(); 804 return generate_accessor_entry();
805 } 805 }
806 806
807 #ifdef GRAAL
808
809 // Interpreter stub for calling a compiled method with 3 object arguments
810 address InterpreterGenerator::generate_execute_compiled_method_entry() {
811 address entry_point = __ pc();
812
813 __ stop("graal-sparc unimp");
814
815 return entry_point;
816 }
817
818 #endif
819 807
820 // 808 //
821 // Interpreter stub for calling a native method. (asm interpreter) 809 // Interpreter stub for calling a native method. (asm interpreter)
822 // This sets up a somewhat different looking stack for calling the native method 810 // This sets up a somewhat different looking stack for calling the native method
823 // than the typical interpreter frame setup. 811 // than the typical interpreter frame setup.