changeset 6953:606964349cf4

undid Graal specialization of SerializePageShiftCount as it is unecessary after the _graal_multinewarray_storage field was removed from the JavaThread class
author Doug Simon <doug.simon@oracle.com>
date Wed, 14 Nov 2012 16:14:34 +0100
parents b03db3c97f74
children 0e20ad1ea98b
files src/share/vm/utilities/globalDefinitions.hpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/utilities/globalDefinitions.hpp	Wed Nov 14 11:44:17 2012 +0100
+++ b/src/share/vm/utilities/globalDefinitions.hpp	Wed Nov 14 16:14:34 2012 +0100
@@ -106,9 +106,9 @@
 // log2_intptr(sizeof(class JavaThread)) - log2_intptr(64);
 // see os::set_memory_serialize_page()
 #ifdef _LP64
-const int SerializePageShiftCount = GRAAL_ONLY(5) NOT_GRAAL(4);
+const int SerializePageShiftCount = 4;
 #else
-const int SerializePageShiftCount = GRAAL_ONLY(4) NOT_GRAAL(3);
+const int SerializePageShiftCount = 3;
 #endif
 
 // An opaque struct of heap-word width, so that HeapWord* can be a generic