8254940: AArch64: Cleanup non-product thread members

Reviewed-by: aph
This commit is contained in:
Anton Kozlov 2020-10-19 11:43:02 +00:00 committed by Vladimir Kempik
parent cd66e0f25f
commit 4ffed326fa
2 changed files with 0 additions and 19 deletions

View File

@ -27,15 +27,6 @@
#define OS_CPU_LINUX_AARCH64_THREAD_LINUX_AARCH64_HPP
private:
#ifdef ASSERT
// spill stack holds N callee-save registers at each Java call and
// grows downwards towards limit
// we need limit to check we have space for a spill and base so we
// can identify all live spill frames at GC (eventually)
address _spill_stack;
address _spill_stack_base;
address _spill_stack_limit;
#endif // ASSERT
void pd_initialize() {
_anchor.clear();

View File

@ -27,16 +27,6 @@
private:
#ifdef ASSERT
// spill stack holds N callee-save registers at each Java call and
// grows downwards towards limit
// we need limit to check we have space for a spill and base so we
// can identify all live spill frames at GC (eventually)
address _spill_stack;
address _spill_stack_base;
address _spill_stack_limit;
#endif // ASSERT
void pd_initialize() {
_anchor.clear();
}