diff src/share/vm/classfile/javaClasses.hpp @ 13479:606959535fd4

remove Graal mirror from Class
author twisti
date Wed, 25 Dec 2013 20:27:59 -0800
parents 359f7e70ae7f
children d8041d695d19
line wrap: on
line diff
--- a/src/share/vm/classfile/javaClasses.hpp	Wed Dec 25 12:14:29 2013 -0800
+++ b/src/share/vm/classfile/javaClasses.hpp	Wed Dec 25 20:27:59 2013 -0800
@@ -207,7 +207,6 @@
 
 #define CLASS_INJECTED_FIELDS(macro)                                       \
   macro(java_lang_Class, klass,                  intptr_signature,  false) \
-  GRAAL_ONLY(macro(java_lang_Class, graal_mirror, object_signature, false))\
   macro(java_lang_Class, array_klass,            intptr_signature,  false) \
   macro(java_lang_Class, oop_size,               int_signature,     false) \
   macro(java_lang_Class, static_oop_field_count, int_signature,     false) \
@@ -226,9 +225,6 @@
 
   static int _oop_size_offset;
   static int _static_oop_field_count_offset;
-#ifdef GRAAL
-  static int _graal_mirror_offset;
-#endif
 
   static int _protection_domain_offset;
   static int _init_lock_offset;
@@ -287,11 +283,6 @@
   static int static_oop_field_count(oop java_class);
   static void set_static_oop_field_count(oop java_class, int size);
 
-#ifdef GRAAL
-  static oop graal_mirror(oop java_class);
-  static int graal_mirror_offset_in_bytes()         { return _graal_mirror_offset; }
-#endif
-
   static GrowableArray<Klass*>* fixup_mirror_list() {
     return _fixup_mirror_list;
   }