src/hotspot/cpu/zero/cppInterpreter_zero.cpp
changeset 54523 5df03f58d25b
parent 54498 4eefc9f3313c
child 57777 90ead0febf56
equal deleted inserted replaced
54522:60bc754b9744 54523:5df03f58d25b
   697   int argument_slots = java_lang_invoke_MethodType::ptype_slot_count(method_type);
   697   int argument_slots = java_lang_invoke_MethodType::ptype_slot_count(method_type);
   698 
   698 
   699   return stack->sp() + argument_slots;
   699   return stack->sp() + argument_slots;
   700 }
   700 }
   701 
   701 
   702 IRT_ENTRY(void, CppInterpreter::throw_exception(JavaThread* thread,
   702 JRT_ENTRY(void, CppInterpreter::throw_exception(JavaThread* thread,
   703                                                 Symbol*     name,
   703                                                 Symbol*     name,
   704                                                 char*       message))
   704                                                 char*       message))
   705   THROW_MSG(name, message);
   705   THROW_MSG(name, message);
   706 IRT_END
   706 JRT_END
   707 
   707 
   708 InterpreterFrame *InterpreterFrame::build(Method* const method, TRAPS) {
   708 InterpreterFrame *InterpreterFrame::build(Method* const method, TRAPS) {
   709   JavaThread *thread = (JavaThread *) THREAD;
   709   JavaThread *thread = (JavaThread *) THREAD;
   710   ZeroStack *stack = thread->zero_stack();
   710   ZeroStack *stack = thread->zero_stack();
   711 
   711