Searched refs:is_tlab (Results 1 - 15 of 15) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A Dgeneration.inline.hpp47 bool is_tlab) {
48 assert(!is_tlab, "OneContigSpaceCardGeneration does not support TLAB allocation");
53 bool is_tlab) {
54 assert(!is_tlab, "OneContigSpaceCardGeneration does not support TLAB allocation");
46 allocate(size_t word_size, bool is_tlab) argument
52 par_allocate(size_t word_size, bool is_tlab) argument
H A DtenuredGeneration.hpp89 bool is_tlab);
94 bool is_tlab);
H A Dgeneration.hpp255 virtual bool should_allocate(size_t word_size, bool is_tlab) { argument
258 if (!is_tlab || supports_tlab_allocation()) {
266 virtual HeapWord* allocate(size_t word_size, bool is_tlab) = 0;
269 virtual HeapWord* par_allocate(size_t word_size, bool is_tlab) = 0;
366 bool is_tlab) {
367 return (full || should_allocate(word_size, is_tlab));
387 bool is_tlab) = 0;
395 bool is_tlab,
722 virtual inline HeapWord* allocate(size_t word_size, bool is_tlab);
723 virtual inline HeapWord* par_allocate(size_t word_size, bool is_tlab);
364 should_collect(bool full, size_t word_size, bool is_tlab) argument
[all...]
H A DcollectorPolicy.cpp539 bool is_tlab,
562 if (gen0->should_allocate(size, is_tlab)) {
563 result = gen0->par_allocate(size, is_tlab);
580 result = gch->attempt_allocation(size, is_tlab, first_only);
587 if (is_tlab) {
592 result = expand_heap_and_allocate(size, is_tlab);
625 is_tlab,
661 " size=%d %s", try_count, size, is_tlab ? "(TLAB)" : "");
667 bool is_tlab) {
672 if (gen->should_allocate(size, is_tlab)) {
538 mem_allocate_work(size_t size, bool is_tlab, bool* gc_overhead_limit_was_exceeded) argument
666 expand_heap_and_allocate(size_t size, bool is_tlab) argument
680 satisfy_failed_allocation(size_t size, bool is_tlab) argument
[all...]
H A DdefNewGeneration.hpp261 virtual bool should_allocate(size_t word_size, bool is_tlab) { argument
262 assert(UseTLAB || !is_tlab, "Should not allocate tlab");
270 const bool size_ok = is_tlab || !check_too_big || not_too_big;
279 HeapWord* allocate(size_t word_size, bool is_tlab);
282 HeapWord* par_allocate(size_t word_size, bool is_tlab);
330 bool is_tlab);
332 bool is_tlab,
H A DcollectorPolicy.hpp178 bool is_tlab,
183 virtual HeapWord *satisfy_failed_allocation(size_t size, bool is_tlab) = 0;
237 virtual HeapWord* expand_heap_and_allocate(size_t size, bool is_tlab);
278 bool is_tlab,
281 HeapWord *satisfy_failed_allocation(size_t size, bool is_tlab);
H A DtenuredGeneration.cpp262 bool is_tlab) {
275 if (!result && should_allocate(size, is_tlab)) {
308 bool is_tlab) {
311 size, is_tlab);
260 should_collect(bool full, size_t size, bool is_tlab) argument
305 collect(bool full, bool clear_all_soft_refs, size_t size, bool is_tlab) argument
H A DgenCollectedHeap.hpp100 bool is_tlab,
108 bool is_tlab,
115 HeapWord* satisfy_failed_allocation(size_t size, bool is_tlab);
H A DgenCollectedHeap.cpp413 bool is_tlab,
417 if (_gens[i]->should_allocate(size, is_tlab)) {
418 res = _gens[i]->allocate(size, is_tlab);
430 false /* is_tlab */,
447 bool is_tlab,
504 if (_gens[i]->should_collect(full, size, is_tlab)) {
585 _gens[i]->collect(full, do_clear_all_soft_refs, size, is_tlab);
597 if (!is_tlab || _gens[i]->supports_tlab_allocation()) {
674 HeapWord* GenCollectedHeap::satisfy_failed_allocation(size_t size, bool is_tlab) { argument
675 return collector_policy()->satisfy_failed_allocation(size, is_tlab);
412 attempt_allocation(size_t size, bool is_tlab, bool first_only) argument
444 do_collection(bool full, bool clear_all_soft_refs, size_t size, bool is_tlab, int max_level) argument
[all...]
H A DdefNewGeneration.cpp526 bool is_tlab,
529 return allocate(size, is_tlab);
536 bool is_tlab) {
999 bool is_tlab) {
1042 bool is_tlab) {
525 expand_and_allocate(size_t size, bool is_tlab, bool parallel) argument
533 collect(bool full, bool clear_all_soft_refs, size_t size, bool is_tlab) argument
998 allocate(size_t word_size, bool is_tlab) argument
1041 par_allocate(size_t word_size, bool is_tlab) argument
H A Dgeneration.cpp469 bool is_tlab) {
495 bool is_tlab,
497 assert(!is_tlab, "OneContigSpaceCardGeneration does not support TLAB allocation");
466 collect(bool full, bool clear_all_soft_refs, size_t size, bool is_tlab) argument
494 expand_and_allocate(size_t word_size, bool is_tlab, bool parallel) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectorPolicy.hpp661 bool is_tlab,
667 bool is_tlab);
H A Dg1CollectorPolicy.cpp685 bool is_tlab,
694 bool is_tlab) {
684 mem_allocate_work(size_t size, bool is_tlab, bool* gc_overhead_limit_was_exceeded) argument
693 satisfy_failed_allocation(size_t size, bool is_tlab) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.hpp388 bool is_tlab);
H A DparNewGeneration.cpp921 bool is_tlab) {
918 collect(bool full, bool clear_all_soft_refs, size_t size, bool is_tlab) argument

Completed in 93 milliseconds