Lines Matching refs:allocate

239       vm_exit_during_initialization("Could not allocate par gc structs");
244 vm_exit_during_initialization("Could not allocate par gc structs");
315 vm_exit_during_initialization("Could not allocate ReferenceProcessor object");
613 // Now expand the span and allocate the collection support structures
633 if (!_markBitMap.allocate(_span)) {
634 warning("Failed to allocate CMS Bit Map");
640 _modUnionTable.allocate(_span);
644 if (!_markStack.allocate(MarkStackSize)) {
645 warning("Failed to allocate CMS Marking Stack");
648 if (!_revisitStack.allocate(CMSRevisitStackSize)) {
649 warning("Failed to allocate CMS Revisit Stack");
766 warning("Failed to allocate survivor plab/chunk array");
784 warning("Failed to allocate survivor plab array");
1003 HeapWord* ConcurrentMarkSweepGeneration::allocate(size_t size,
1015 HeapWord* res = cmsSpace()->allocate(adjustedSize);
1266 // allocate, copy and if necessary update promoinfo --
1290 // See comment in allocate() about when objects should
1371 // then allocate and copy, then track promoted info if needed.
2911 if (!verification_mark_bm()->allocate(_span)) {
3271 if (!perm_gen_verify_bit_map()->allocate(_permGen->reserved())) {
3272 warning("Failed to allocate permanent generation verification CMS Bit Map;\n"
3725 // marking the bit map. [the so-called allocate live policy.]
6170 // Mutators allocate-live and/or mark the mod-union table dirty
6181 // allocate-live and whether to dirty the mod-union table).
6503 // bit vector itself. That is done by a separate call CMSBitMap::allocate()
6514 bool CMSBitMap::allocate(MemRegion mr) {
6603 bool CMSMarkStack::allocate(size_t size) {
6604 // allocate a stack of the requisite depth