src/share/vm/classfile/javaClasses.hpp

changeset 4453
ed6154d7d259
parent 4398
ade95d680b42
child 4469
c73c3f2c5b3b
     1.1 --- a/src/share/vm/classfile/javaClasses.hpp	Mon Jan 14 21:30:45 2013 +0100
     1.2 +++ b/src/share/vm/classfile/javaClasses.hpp	Tue Jan 15 13:32:13 2013 +0100
     1.3 @@ -206,7 +206,6 @@
     1.4  
     1.5  #define CLASS_INJECTED_FIELDS(macro)                                       \
     1.6    macro(java_lang_Class, klass,                  intptr_signature,  false) \
     1.7 -  macro(java_lang_Class, resolved_constructor,   intptr_signature,  false) \
     1.8    macro(java_lang_Class, array_klass,            intptr_signature,  false) \
     1.9    macro(java_lang_Class, oop_size,               int_signature,     false) \
    1.10    macro(java_lang_Class, static_oop_field_count, int_signature,     false)
    1.11 @@ -218,7 +217,6 @@
    1.12    // The fake offsets are added by the class loader when java.lang.Class is loaded
    1.13  
    1.14    static int _klass_offset;
    1.15 -  static int _resolved_constructor_offset;
    1.16    static int _array_klass_offset;
    1.17  
    1.18    static int _oop_size_offset;
    1.19 @@ -254,15 +252,11 @@
    1.20    static bool is_primitive(oop java_class);
    1.21    static BasicType primitive_type(oop java_class);
    1.22    static oop primitive_mirror(BasicType t);
    1.23 -  // JVM_NewInstance support
    1.24 -  static Method* resolved_constructor(oop java_class);
    1.25 -  static void set_resolved_constructor(oop java_class, Method* constructor);
    1.26    // JVM_NewArray support
    1.27    static Klass* array_klass(oop java_class);
    1.28    static void set_array_klass(oop java_class, Klass* klass);
    1.29    // compiler support for class operations
    1.30    static int klass_offset_in_bytes()                { return _klass_offset; }
    1.31 -  static int resolved_constructor_offset_in_bytes() { return _resolved_constructor_offset; }
    1.32    static int array_klass_offset_in_bytes()          { return _array_klass_offset; }
    1.33    // Support for classRedefinedCount field
    1.34    static int classRedefinedCount(oop the_class_mirror);

mercurial