Skip to content

Commit 1ce2e94

Browse files
committedDec 18, 2020
8256843: [PPC64] runtime/logging/RedefineClasses.java fails with assert: registers not saved on stack
Reviewed-by: mdoerr, lucy
1 parent 45a150b commit 1ce2e94

File tree

3 files changed

+9
-31
lines changed

3 files changed

+9
-31
lines changed
 

‎src/hotspot/os_cpu/aix_ppc/os_aix_ppc.cpp

+4-17
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,7 @@
6565
# include <ucontext.h>
6666

6767
address os::current_stack_pointer() {
68-
address csp;
69-
70-
#if !defined(USE_XLC_BUILTINS)
71-
// inline assembly for `mr regno(csp), R1_SP':
72-
__asm__ __volatile__ ("mr %0, 1":"=r"(csp):);
73-
#else
74-
csp = (address) __builtin_frame_address(0);
75-
#endif
76-
77-
return csp;
68+
return (address)__builtin_frame_address(0);
7869
}
7970

8071
char* os::non_memory_address_word() {
@@ -159,13 +150,9 @@ frame os::get_sender_for_C_frame(frame* fr) {
159150

160151

161152
frame os::current_frame() {
162-
intptr_t* csp = (intptr_t*) *((intptr_t*) os::current_stack_pointer());
163-
// hack.
164-
frame topframe(csp, (address)0x8);
165-
// Return sender of sender of current topframe which hopefully
166-
// both have pc != NULL.
167-
frame tmp = os::get_sender_for_C_frame(&topframe);
168-
return os::get_sender_for_C_frame(&tmp);
153+
intptr_t* csp = *(intptr_t**) __builtin_frame_address(0);
154+
frame topframe(csp, CAST_FROM_FN_PTR(address, os::current_frame));
155+
return os::get_sender_for_C_frame(&topframe);
169156
}
170157

171158
bool PosixSignals::pd_hotspot_signal_handler(int sig, siginfo_t* info,

‎src/hotspot/os_cpu/linux_ppc/os_linux_ppc.cpp

+4-13
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,7 @@
7878

7979

8080
address os::current_stack_pointer() {
81-
intptr_t* csp;
82-
83-
// inline assembly `mr regno(csp), R1_SP':
84-
__asm__ __volatile__ ("mr %0, 1":"=r"(csp):);
85-
86-
return (address) csp;
81+
return (address)__builtin_frame_address(0);
8782
}
8883

8984
char* os::non_memory_address_word() {
@@ -179,13 +174,9 @@ frame os::get_sender_for_C_frame(frame* fr) {
179174

180175

181176
frame os::current_frame() {
182-
intptr_t* csp = (intptr_t*) *((intptr_t*) os::current_stack_pointer());
183-
// hack.
184-
frame topframe(csp, (address)0x8);
185-
// Return sender of sender of current topframe which hopefully
186-
// both have pc != NULL.
187-
frame tmp = os::get_sender_for_C_frame(&topframe);
188-
return os::get_sender_for_C_frame(&tmp);
177+
intptr_t* csp = *(intptr_t**) __builtin_frame_address(0);
178+
frame topframe(csp, CAST_FROM_FN_PTR(address, os::current_frame));
179+
return os::get_sender_for_C_frame(&topframe);
189180
}
190181

191182
bool PosixSignals::pd_hotspot_signal_handler(int sig, siginfo_t* info,

‎src/hotspot/share/utilities/nativeCallStack.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ NativeCallStack::NativeCallStack(int toSkip, bool fillStack) :
3636
// to call os::get_native_stack. A tail call is used if _NMT_NOINLINE_ is not defined
3737
// (which means this is not a slowdebug build), and we are on 64-bit (except Windows).
3838
// This is not necessarily a rule, but what has been obvserved to date.
39-
#if (defined(_NMT_NOINLINE_) || defined(_WINDOWS) || !defined(_LP64))
39+
#if (defined(_NMT_NOINLINE_) || defined(_WINDOWS) || !defined(_LP64) || defined(PPC64))
4040
// Not a tail call.
4141
toSkip++;
4242
#if (defined(_NMT_NOINLINE_) && defined(BSD) && defined(_LP64))

0 commit comments

Comments
 (0)
Please sign in to comment.