Move the three read-only InstanceKlass flags that don't require access through generated or compiler generated code.
JVM_ACC_HAS_MIRANDA_METHODS = 0x10000000, // True if this class has miranda methods in it's vtable
JVM_ACC_HAS_VANILLA_CONSTRUCTOR = 0x20000000, // True if klass has a vanilla default constructor
JVM_ACC_HAS_FINAL_METHOD = 0x01000000, // True if klass has final method
These are set during class file parsing.
JVM_ACC_HAS_MIRANDA_METHODS = 0x10000000, // True if this class has miranda methods in it's vtable
JVM_ACC_HAS_VANILLA_CONSTRUCTOR = 0x20000000, // True if klass has a vanilla default constructor
JVM_ACC_HAS_FINAL_METHOD = 0x01000000, // True if klass has final method
These are set during class file parsing.