hotspot/src/share/vm/memory/threadLocalAllocBuffer.inline.hpp
author trims
Thu, 27 May 2010 19:08:38 -0700
changeset 5547 f4b087cbb361
parent 4636 90e004691873
child 5702 201c5cde25bb
permissions -rw-r--r--
6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4636
diff changeset
     2
 * Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4636
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4636
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4636
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
inline HeapWord* ThreadLocalAllocBuffer::allocate(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
  invariants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
  HeapWord* obj = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  if (pointer_delta(end(), obj) >= size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
    // successful thread-local allocation
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 1
diff changeset
    30
#ifdef ASSERT
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 1
diff changeset
    31
    // Skip mangling the space corresponding to the object header to
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 1
diff changeset
    32
    // ensure that the returned space is not considered parsable by
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 1
diff changeset
    33
    // any concurrent GC thread.
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 1
diff changeset
    34
    size_t hdr_size = CollectedHeap::min_fill_size();
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 1
diff changeset
    35
    Copy::fill_to_words(obj + hdr_size, size - hdr_size, badHeapWordVal);
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 1
diff changeset
    36
#endif // ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    // This addition is safe because we know that top is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    // at least size below end, so the add can't wrap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    set_top(obj + size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    invariants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
inline size_t ThreadLocalAllocBuffer::compute_size(size_t obj_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  const size_t aligned_obj_size = align_object_size(obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Compute the size for the new TLAB.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // The "last" tlab may be smaller to reduce fragmentation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // unsafe_max_tlab_alloc is just a hint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  const size_t available_size = Universe::heap()->unsafe_max_tlab_alloc(myThread()) /
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                                                  HeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  size_t new_tlab_size = MIN2(available_size, desired_size() + aligned_obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // Make sure there's enough room for object and filler int[].
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  const size_t obj_plus_filler_size = aligned_obj_size + alignment_reserve();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (new_tlab_size < obj_plus_filler_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    // If there isn't enough room for the allocation, return failure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    if (PrintTLAB && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
      gclog_or_tty->print_cr("ThreadLocalAllocBuffer::compute_size(" SIZE_FORMAT ")"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
                    " returns failure",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
                    obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  if (PrintTLAB && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    gclog_or_tty->print_cr("ThreadLocalAllocBuffer::compute_size(" SIZE_FORMAT ")"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                  " returns " SIZE_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
                  obj_size, new_tlab_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  return new_tlab_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
void ThreadLocalAllocBuffer::record_slow_allocation(size_t obj_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Raise size required to bypass TLAB next time. Why? Else there's
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // a risk that a thread that repeatedly allocates objects of one
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // size will get stuck on this slow path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  set_refill_waste_limit(refill_waste_limit() + refill_waste_limit_increment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  _slow_allocations++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  if (PrintTLAB && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    Thread* thrd = myThread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    gclog_or_tty->print("TLAB: %s thread: "INTPTR_FORMAT" [id: %2d]"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                        " obj: "SIZE_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
                        " free: "SIZE_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                        " waste: "SIZE_FORMAT"\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                        "slow", thrd, thrd->osthread()->thread_id(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                        obj_size, free(), refill_waste_limit());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
}