comparison src/share/vm/memory/generation.hpp @ 14310:1e1c8d358b52

8030177: G1: Enable TLAB resizing Reviewed-by: tschatzl, stefank, jmasa
author brutisso
date Mon, 27 Jan 2014 13:14:53 +0100
parents 63a4eb8bcd23
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14309:63a4eb8bcd23 14310:1e1c8d358b52
297 virtual bool supports_tlab_allocation() const { return false; } 297 virtual bool supports_tlab_allocation() const { return false; }
298 virtual size_t tlab_capacity() const { 298 virtual size_t tlab_capacity() const {
299 guarantee(false, "Generation doesn't support thread local allocation buffers"); 299 guarantee(false, "Generation doesn't support thread local allocation buffers");
300 return 0; 300 return 0;
301 } 301 }
302 virtual size_t tlab_used() const {
303 guarantee(false, "Generation doesn't support thread local allocation buffers");
304 return 0;
305 }
302 virtual size_t unsafe_max_tlab_alloc() const { 306 virtual size_t unsafe_max_tlab_alloc() const {
303 guarantee(false, "Generation doesn't support thread local allocation buffers"); 307 guarantee(false, "Generation doesn't support thread local allocation buffers");
304 return 0; 308 return 0;
305 } 309 }
306 310