comparison src/share/vm/classfile/classFileParser.cpp @ 6735:aed758eda82a

7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass Summary: Simple renaming to be consistent with instanceKlass->InstanceKlass renaming Reviewed-by: stefank, jmasa
author coleenp
date Fri, 07 Sep 2012 12:04:16 -0400
parents da91efe96a93
children d8ce2825b193 8e47bac5643a
comparison
equal deleted inserted replaced
6734:942bb29b20b0 6735:aed758eda82a
3269 int first_nonstatic_oop_offset; 3269 int first_nonstatic_oop_offset;
3270 int first_nonstatic_field_offset; 3270 int first_nonstatic_field_offset;
3271 int next_nonstatic_field_offset; 3271 int next_nonstatic_field_offset;
3272 3272
3273 // Calculate the starting byte offsets 3273 // Calculate the starting byte offsets
3274 next_static_oop_offset = instanceMirrorKlass::offset_of_static_fields(); 3274 next_static_oop_offset = InstanceMirrorKlass::offset_of_static_fields();
3275 next_static_double_offset = next_static_oop_offset + 3275 next_static_double_offset = next_static_oop_offset +
3276 (fac.count[STATIC_OOP] * heapOopSize); 3276 (fac.count[STATIC_OOP] * heapOopSize);
3277 if ( fac.count[STATIC_DOUBLE] && 3277 if ( fac.count[STATIC_DOUBLE] &&
3278 (Universe::field_type_should_be_aligned(T_DOUBLE) || 3278 (Universe::field_type_should_be_aligned(T_DOUBLE) ||
3279 Universe::field_type_should_be_aligned(T_LONG)) ) { 3279 Universe::field_type_should_be_aligned(T_LONG)) ) {