comparison src/share/vm/interpreter/interpreterRuntime.hpp @ 3911:2fecca53a2c6

7085012: ARM: com/sun/jdi/PopSynchronousTest.java still fails Summary: InterpreterRuntime::popframe_move_outgoing_args() is required for the ARM interpreter. Reviewed-by: kvn, twisti
author roland
date Wed, 07 Sep 2011 14:15:07 +0200
parents d83ac25d0304
children f08d439fab8c
comparison
equal deleted inserted replaced
3890:4668545121b8 3911:2fecca53a2c6
139 static void prepare_native_call(JavaThread* thread, methodOopDesc* method); 139 static void prepare_native_call(JavaThread* thread, methodOopDesc* method);
140 static address slow_signature_handler(JavaThread* thread, 140 static address slow_signature_handler(JavaThread* thread,
141 methodOopDesc* method, 141 methodOopDesc* method,
142 intptr_t* from, intptr_t* to); 142 intptr_t* from, intptr_t* to);
143 143
144 #if defined(IA32) || defined(AMD64) 144 #if defined(IA32) || defined(AMD64) || defined(ARM)
145 // Popframe support (only needed on x86 and AMD64) 145 // Popframe support (only needed on x86, AMD64 and ARM)
146 static void popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address); 146 static void popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address);
147 #endif 147 #endif
148 148
149 // Platform dependent stuff 149 // Platform dependent stuff
150 #ifdef TARGET_ARCH_x86 150 #ifdef TARGET_ARCH_x86