hotspot/src/share/vm/gc_implementation/g1/g1CollectedHeap.hpp
changeset 26846 7d4376f8560e
parent 26842 5081db39f634
child 27009 e7e723732b6b
equal deleted inserted replaced
26845:ae163b62b9ac 26846:7d4376f8560e
  1510   // update logging post-barrier, we don't maintain remembered set
  1510   // update logging post-barrier, we don't maintain remembered set
  1511   // information for young gen objects.
  1511   // information for young gen objects.
  1512   virtual inline bool can_elide_initializing_store_barrier(oop new_obj);
  1512   virtual inline bool can_elide_initializing_store_barrier(oop new_obj);
  1513 
  1513 
  1514   // Returns "true" iff the given word_size is "very large".
  1514   // Returns "true" iff the given word_size is "very large".
  1515   static bool isHumongous(size_t word_size) {
  1515   static bool is_humongous(size_t word_size) {
  1516     // Note this has to be strictly greater-than as the TLABs
  1516     // Note this has to be strictly greater-than as the TLABs
  1517     // are capped at the humongous threshold and we want to
  1517     // are capped at the humongous threshold and we want to
  1518     // ensure that we don't try to allocate a TLAB as
  1518     // ensure that we don't try to allocate a TLAB as
  1519     // humongous and that we don't allocate a humongous
  1519     // humongous and that we don't allocate a humongous
  1520     // object in a TLAB.
  1520     // object in a TLAB.