comparison src/share/vm/compiler/methodLiveness.hpp @ 342:37f87013dfd8

6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
author ysr
date Thu, 05 Jun 2008 15:57:56 -0700
parents a61af66fc99e
children c18cbe5936b8
comparison
equal deleted inserted replaced
189:0b27f3512f9e 342:37f87013dfd8
27 class MethodLivenessResult : public BitMap { 27 class MethodLivenessResult : public BitMap {
28 private: 28 private:
29 bool _is_valid; 29 bool _is_valid;
30 30
31 public: 31 public:
32 MethodLivenessResult(uintptr_t* map, idx_t size_in_bits) 32 MethodLivenessResult(BitMap::bm_word_t* map, idx_t size_in_bits)
33 : BitMap(map, size_in_bits) 33 : BitMap(map, size_in_bits)
34 , _is_valid(false) 34 , _is_valid(false)
35 {} 35 {}
36 36
37 MethodLivenessResult(idx_t size_in_bits) 37 MethodLivenessResult(idx_t size_in_bits)