mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
7085012: ARM: com/sun/jdi/PopSynchronousTest.java still fails
InterpreterRuntime::popframe_move_outgoing_args() is required for the ARM interpreter. Reviewed-by: kvn, twisti
This commit is contained in:
parent
4a09997f51
commit
90844ca5dc
2 changed files with 3 additions and 3 deletions
|
@ -1244,7 +1244,7 @@ IRT_ENTRY(void, InterpreterRuntime::prepare_native_call(JavaThread* thread, meth
|
||||||
// preparing the same method will be sure to see non-null entry & mirror.
|
// preparing the same method will be sure to see non-null entry & mirror.
|
||||||
IRT_END
|
IRT_END
|
||||||
|
|
||||||
#if defined(IA32) || defined(AMD64)
|
#if defined(IA32) || defined(AMD64) || defined(ARM)
|
||||||
IRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address))
|
IRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address))
|
||||||
if (src_address == dest_address) {
|
if (src_address == dest_address) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -141,8 +141,8 @@ class InterpreterRuntime: AllStatic {
|
||||||
methodOopDesc* method,
|
methodOopDesc* method,
|
||||||
intptr_t* from, intptr_t* to);
|
intptr_t* from, intptr_t* to);
|
||||||
|
|
||||||
#if defined(IA32) || defined(AMD64)
|
#if defined(IA32) || defined(AMD64) || defined(ARM)
|
||||||
// Popframe support (only needed on x86 and AMD64)
|
// Popframe support (only needed on x86, AMD64 and ARM)
|
||||||
static void popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address);
|
static void popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue