< prev index next >

src/share/vm/utilities/bitMap.hpp

Print this page
rev 10380 : 8151439: Inline the BitMap constructor

*** 114,124 **** // Constructs a bitmap with no map, and size 0. BitMap() : _map(NULL), _size(0) {} // Constructs a bitmap with the given map and size. ! BitMap(bm_word_t* map, idx_t size_in_bits); // Constructs an empty bitmap of the given size (that is, this clears the // new bitmap). Allocates the map array in resource area if // "in_resource_area" is true, else in the C heap. BitMap(idx_t size_in_bits, bool in_resource_area = true); --- 114,124 ---- // Constructs a bitmap with no map, and size 0. BitMap() : _map(NULL), _size(0) {} // Constructs a bitmap with the given map and size. ! BitMap(bm_word_t* map, idx_t size_in_bits) :_map(map), _size(size_in_bits) {} // Constructs an empty bitmap of the given size (that is, this clears the // new bitmap). Allocates the map array in resource area if // "in_resource_area" is true, else in the C heap. BitMap(idx_t size_in_bits, bool in_resource_area = true);
< prev index next >