< prev index next >

src/share/vm/gc/g1/g1CardCounts.hpp

Print this page
rev 12906 : [mq]: gc_interface

*** 23,32 **** --- 23,33 ---- */ #ifndef SHARE_VM_GC_G1_G1CARDCOUNTS_HPP #define SHARE_VM_GC_G1_G1CARDCOUNTS_HPP + #include "gc/g1/g1CardTable.hpp" #include "gc/g1/g1RegionToSpaceMapper.hpp" #include "memory/allocation.hpp" #include "memory/virtualspace.hpp" #include "utilities/globalDefinitions.hpp"
*** 65,75 **** // CardTable bottom. const jbyte* _ct_bot; // Barrier set ! CardTableModRefBS* _ct_bs; // Returns true if the card counts table has been reserved. bool has_reserved_count_table() { return _card_counts != NULL; } // Returns true if the card counts table has been reserved and committed. --- 66,76 ---- // CardTable bottom. const jbyte* _ct_bot; // Barrier set ! G1CardTable* _ct; // Returns true if the card counts table has been reserved. bool has_reserved_count_table() { return _card_counts != NULL; } // Returns true if the card counts table has been reserved and committed.
< prev index next >