# HG changeset patch # User Doug Simon # Date 1352906074 -3600 # Node ID 606964349cf4978bedec0a69d1ce7b53b926baa0 # Parent b03db3c97f748398ea3247fe6f7b28742b50ffae undid Graal specialization of SerializePageShiftCount as it is unecessary after the _graal_multinewarray_storage field was removed from the JavaThread class diff -r b03db3c97f74 -r 606964349cf4 src/share/vm/utilities/globalDefinitions.hpp --- 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