mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-10 21:50:07 +00:00
8344265: RISC-V: Remove unused function get_previous_sp_entry
Reviewed-by: fyang, mli
This commit is contained in:
parent
e1c4b4977e
commit
80e37a96bb
@ -34,16 +34,6 @@
|
||||
// Implementation of the platform-specific part of StubRoutines - for
|
||||
// a description of how to extend it, see the stubRoutines.hpp file.
|
||||
|
||||
address StubRoutines::riscv::_get_previous_sp_entry = nullptr;
|
||||
|
||||
address StubRoutines::riscv::_f2i_fixup = nullptr;
|
||||
address StubRoutines::riscv::_f2l_fixup = nullptr;
|
||||
address StubRoutines::riscv::_d2i_fixup = nullptr;
|
||||
address StubRoutines::riscv::_d2l_fixup = nullptr;
|
||||
address StubRoutines::riscv::_float_sign_mask = nullptr;
|
||||
address StubRoutines::riscv::_float_sign_flip = nullptr;
|
||||
address StubRoutines::riscv::_double_sign_mask = nullptr;
|
||||
address StubRoutines::riscv::_double_sign_flip = nullptr;
|
||||
address StubRoutines::riscv::_zero_blocks = nullptr;
|
||||
address StubRoutines::riscv::_compare_long_string_LL = nullptr;
|
||||
address StubRoutines::riscv::_compare_long_string_UU = nullptr;
|
||||
@ -52,7 +42,6 @@ address StubRoutines::riscv::_compare_long_string_UL = nullptr;
|
||||
address StubRoutines::riscv::_string_indexof_linear_ll = nullptr;
|
||||
address StubRoutines::riscv::_string_indexof_linear_uu = nullptr;
|
||||
address StubRoutines::riscv::_string_indexof_linear_ul = nullptr;
|
||||
address StubRoutines::riscv::_large_byte_array_inflate = nullptr;
|
||||
|
||||
bool StubRoutines::riscv::_completed = false;
|
||||
|
||||
|
||||
@ -47,18 +47,6 @@ class riscv {
|
||||
friend class StubGenerator;
|
||||
|
||||
private:
|
||||
static address _get_previous_sp_entry;
|
||||
|
||||
static address _f2i_fixup;
|
||||
static address _f2l_fixup;
|
||||
static address _d2i_fixup;
|
||||
static address _d2l_fixup;
|
||||
|
||||
static address _float_sign_mask;
|
||||
static address _float_sign_flip;
|
||||
static address _double_sign_mask;
|
||||
static address _double_sign_flip;
|
||||
|
||||
static address _zero_blocks;
|
||||
|
||||
static address _compare_long_string_LL;
|
||||
@ -68,48 +56,11 @@ class riscv {
|
||||
static address _string_indexof_linear_ll;
|
||||
static address _string_indexof_linear_uu;
|
||||
static address _string_indexof_linear_ul;
|
||||
static address _large_byte_array_inflate;
|
||||
|
||||
static bool _completed;
|
||||
|
||||
public:
|
||||
|
||||
static address get_previous_sp_entry() {
|
||||
return _get_previous_sp_entry;
|
||||
}
|
||||
|
||||
static address f2i_fixup() {
|
||||
return _f2i_fixup;
|
||||
}
|
||||
|
||||
static address f2l_fixup() {
|
||||
return _f2l_fixup;
|
||||
}
|
||||
|
||||
static address d2i_fixup() {
|
||||
return _d2i_fixup;
|
||||
}
|
||||
|
||||
static address d2l_fixup() {
|
||||
return _d2l_fixup;
|
||||
}
|
||||
|
||||
static address float_sign_mask() {
|
||||
return _float_sign_mask;
|
||||
}
|
||||
|
||||
static address float_sign_flip() {
|
||||
return _float_sign_flip;
|
||||
}
|
||||
|
||||
static address double_sign_mask() {
|
||||
return _double_sign_mask;
|
||||
}
|
||||
|
||||
static address double_sign_flip() {
|
||||
return _double_sign_flip;
|
||||
}
|
||||
|
||||
static address zero_blocks() {
|
||||
return _zero_blocks;
|
||||
}
|
||||
@ -142,10 +93,6 @@ class riscv {
|
||||
return _string_indexof_linear_uu;
|
||||
}
|
||||
|
||||
static address large_byte_array_inflate() {
|
||||
return _large_byte_array_inflate;
|
||||
}
|
||||
|
||||
static bool complete() {
|
||||
return _completed;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user