comparison agent/src/share/classes/sun/jvm/hotspot/gc_implementation/g1/HeapRegionSetBase.java @ 6010:720b6a76dd9d

7157073: G1: type change size_t -> uint for region counts / indexes Summary: Change the type of fields / variables / etc. that represent region counts and indeces from size_t to uint. Reviewed-by: iveresov, brutisso, jmasa, jwilhelm
author tonyp
date Wed, 18 Apr 2012 07:21:15 -0400
parents 0b3d1ec6eaee
children 58fc1b1523dc
comparison
equal deleted inserted replaced
6009:dde53abda3d6 6010:720b6a76dd9d
38 import sun.jvm.hotspot.types.TypeDataBase; 38 import sun.jvm.hotspot.types.TypeDataBase;
39 39
40 // Mirror class for HeapRegionSetBase. Represents a group of regions. 40 // Mirror class for HeapRegionSetBase. Represents a group of regions.
41 41
42 public class HeapRegionSetBase extends VMObject { 42 public class HeapRegionSetBase extends VMObject {
43 // size_t _length; 43 // uint _length;
44 static private CIntegerField lengthField; 44 static private CIntegerField lengthField;
45 // size_t _region_num; 45 // uint _region_num;
46 static private CIntegerField regionNumField; 46 static private CIntegerField regionNumField;
47 // size_t _total_used_bytes; 47 // size_t _total_used_bytes;
48 static private CIntegerField totalUsedBytesField; 48 static private CIntegerField totalUsedBytesField;
49 49
50 static { 50 static {