Skip to content

Commit 49aef5c

Browse files
committed
cleanup for 8253457: Remove unimplemented register stack functions
1 parent 930cee3 commit 49aef5c

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/hotspot/os_cpu/windows_aarch64/thread_windows_aarch64.hpp

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,10 @@
4848
intptr_t* last_Java_fp() { return _anchor.last_Java_fp(); }
4949
void set_last_Java_fp(intptr_t* fp) { _anchor.set_last_Java_fp(fp); }
5050

51-
void set_base_of_stack_pointer(intptr_t* base_sp) {
52-
}
53-
5451
static ByteSize last_Java_fp_offset() {
5552
return byte_offset_of(JavaThread, _anchor) + JavaFrameAnchor::last_Java_fp_offset();
5653
}
5754

58-
intptr_t* base_of_stack_pointer() {
59-
return NULL;
60-
}
61-
void record_base_of_stack_pointer() {
62-
}
63-
6455
bool pd_get_top_frame_for_signal_handler(frame* fr_addr, void* ucontext,
6556
bool isInJava);
6657

@@ -73,10 +64,4 @@
7364
return Thread::current();
7465
}
7566

76-
// These routines are only used on cpu architectures that
77-
// have separate register stacks (Itanium).
78-
static bool register_stack_overflow() { return false; }
79-
static void enable_register_stack_guard() {}
80-
static void disable_register_stack_guard() {}
81-
8267
#endif // OS_CPU_WINDOWS_AARCH64_THREAD_WINDOWS_AARCH64_HPP

0 commit comments

Comments
 (0)