< prev index next >

src/hotspot/share/utilities/globalDefinitions.hpp

Print this page

        

@@ -592,12 +592,11 @@
   T_VOID        = 15,
   T_ADDRESS     = 16,
   T_NARROWOOP   = 17,
   T_METADATA    = 18,
   T_NARROWKLASS = 19,
-  T_VALUETYPEPTR= 20, // the compiler needs a way to identify buffered values
-  T_CONFLICT    = 21, // for stack value type with conflicting contents
+  T_CONFLICT    = 20, // for stack value type with conflicting contents
   T_ILLEGAL     = 99
 };
 
 inline bool is_java_primitive(BasicType t) {
   return T_BOOLEAN <= t && t <= T_LONG;

@@ -691,16 +690,11 @@
   T_ARRAY_aelem_bytes       = 4,
   T_VALUETYPE_aelem_bytes   = 4,
 #endif
   T_NARROWOOP_aelem_bytes   = 4,
   T_NARROWKLASS_aelem_bytes = 4,
-  T_VOID_aelem_bytes        = 0,
-#ifdef _LP64
-  T_VALUETYPEPTR_aelem_bytes= 8
-#else
-  T_VALUETYPEPTR_aelem_bytes= 4
-#endif
+  T_VOID_aelem_bytes        = 0
 };
 
 extern int _type2aelembytes[T_CONFLICT+1]; // maps a BasicType to nof bytes used by its array element
 #ifdef ASSERT
 extern int type2aelembytes(BasicType t, bool allow_address = false); // asserts
< prev index next >