comparison src/share/vm/oops/klass.hpp @ 7084:9ba90252ce08

HotSpotResolvedJavaType is now the HotSpot implementation of ResolvedJavaType, Renamed old HotSpotResolvedJavaType to HotSpotResolvedObjectType Renamed HotSpotTypePrimitive to HotSpotResolvedPrimitiveType Renamed HotSpotTypeUnresolved to HotSpotUnresolvedJavaType
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 28 Nov 2012 14:07:25 +0100
parents 8c4b757c2eb9
children 1baf7f1e3f23
comparison
equal deleted inserted replaced
7083:fa3c8913d674 7084:9ba90252ce08
146 // Ordered list of all primary supertypes 146 // Ordered list of all primary supertypes
147 Klass* _primary_supers[_primary_super_limit]; 147 Klass* _primary_supers[_primary_super_limit];
148 // java/lang/Class instance mirroring this class 148 // java/lang/Class instance mirroring this class
149 oop _java_mirror; 149 oop _java_mirror;
150 #ifdef GRAAL 150 #ifdef GRAAL
151 // com/oracle/graal/hotspot/HotSpotResolvedJavaType mirroring this class 151 // com/oracle/graal/hotspot/HotSpotResolvedObjectType mirroring this class
152 oop _graal_mirror; 152 oop _graal_mirror;
153 #endif 153 #endif
154 // Superclass 154 // Superclass
155 Klass* _super; 155 Klass* _super;
156 // First subclass (NULL if none); _subklass->next_sibling() is next one 156 // First subclass (NULL if none); _subklass->next_sibling() is next one