diff src/os/solaris/vm/os_solaris.cpp @ 5903:da4be62fb889

7147740: add assertions to check stack alignment on VM entry from generated code (x64) Summary: check stack alignment on VM entry on x64. Reviewed-by: kvn, never
author roland
date Mon, 27 Feb 2012 09:17:44 +0100
parents 869be5c8882e
children 7432b9db36ff
line wrap: on
line diff
--- a/src/os/solaris/vm/os_solaris.cpp	Fri Feb 24 12:33:31 2012 -0800
+++ b/src/os/solaris/vm/os_solaris.cpp	Mon Feb 27 09:17:44 2012 +0100
@@ -1013,15 +1013,6 @@
   // use debugger to set breakpoint here
 }
 
-// Returns an estimate of the current stack pointer. Result must be guaranteed to
-// point into the calling threads stack, and be no lower than the current stack
-// pointer.
-address os::current_stack_pointer() {
-  volatile int dummy;
-  address sp = (address)&dummy + 8;     // %%%% need to confirm if this is right
-  return sp;
-}
-
 static thread_t main_thread;
 
 // Thread start routine for all new Java threads