8222297: IRT_ENTRY/IRT_LEAF etc are the same as JRT

Replace IRT entry points with JRT.

Reviewed-by: lfoltan, dcubed
This commit is contained in:
Coleen Phillimore 2019-04-12 09:30:17 -04:00
parent 96545959e8
commit cebdd53c0f
12 changed files with 126 additions and 150 deletions

View file

@ -699,11 +699,11 @@ intptr_t* CppInterpreter::calculate_unwind_sp(ZeroStack* stack,
return stack->sp() + argument_slots;
}
IRT_ENTRY(void, CppInterpreter::throw_exception(JavaThread* thread,
JRT_ENTRY(void, CppInterpreter::throw_exception(JavaThread* thread,
Symbol* name,
char* message))
THROW_MSG(name, message);
IRT_END
JRT_END
InterpreterFrame *InterpreterFrame::build(Method* const method, TRAPS) {
JavaThread *thread = (JavaThread *) THREAD;