Searched refs:card_size (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/test/compiler/8010927/
H A DTest8010927.java72 static final int card_size = 512; field in class:Test8010927
73 static final int one_card = (card_size - obj_header_size)/heap_oop_size;
78 static final Object[] cache = new Object[(surv_size / card_size)];
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DobjectStartArray.cpp36 assert((int)block_size == (int)CardTableModRefBS::card_size, "Sanity");
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.cpp75 assert((uintptr_t(low_bound) & (card_size - 1)) == 0, "heap must start at card boundary");
76 assert((uintptr_t(high_bound) & (card_size - 1)) == 0, "heap must end at card boundary");
78 assert(card_size <= 512, "card_size must be less than 512"); // why?
666 return card_size * os::vm_page_size();
698 (HeapWord*) (((size_t) addr_for(curr)) + card_size),
H A DcardTableModRefBS.hpp266 card_size = 1 << card_shift, enumerator in enum:CardTableModRefBS::SomePublicConstants
267 card_size_in_words = card_size / sizeof(HeapWord)
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.inline.hpp506 CardTableModRefBS::card_size /* bytes */));
515 CardTableModRefBS::card_size /* bytes */));
H A DconcurrentMarkSweepGeneration.cpp1116 CardTableModRefBS::card_size /* bytes */));
4019 CardTableModRefBS::card_size);
5357 const int alignment = CardTableModRefBS::card_size * BitsPerWord;
5703 CardTableModRefBS::card_size * BitsPerWord;
6492 CardTableModRefBS::card_size);
6493 assert(round_down((uintptr_t)addr, CardTableModRefBS::card_size) <
6494 round_down((uintptr_t)next_card, CardTableModRefBS::card_size),
7169 (intptr_t)_finger, CardTableModRefBS::card_size);
7197 (intptr_t)(addr+sz), CardTableModRefBS::card_size);
7292 (intptr_t)old_threshold, CardTableModRefBS::card_size),
[all...]
H A DcompactibleFreeListSpace.cpp3012 CardTableModRefBS::card_size);
3020 ((uintptr_t)span.start() % CardTableModRefBS::card_size == 0),
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1RemSet.cpp49 ct_freq_sz = heap_sz_bytes/CardTableModRefBS::card_size;
96 _n += (int) ((mr.byte_size() / CardTableModRefBS::card_size));
H A DheapRegionRemSet.cpp175 CardTableModRefBS::card_size);
460 CardTableModRefBS::card_size),
522 CardTableModRefBS::card_size),
1086 CardTableModRefBS::card_size);
H A DconcurrentMark.cpp424 _card_bm((rs.size() + CardTableModRefBS::card_size - 1) >>
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp2188 declare_constant(CardTableModRefBS::card_size) \

Completed in 91 milliseconds