src/share/vm/gc_interface/gcCause.hpp

Mon, 06 Oct 2014 10:11:13 +0200

author
sjohanss
date
Mon, 06 Oct 2014 10:11:13 +0200
changeset 7236
d3fd73295885
parent 7176
dce3f772de9f
child 7535
7ae4e26cb1e0
child 8194
047a642c9729
permissions
-rw-r--r--

8059466: Force young GC to initiate marking cycle when stat update is requested
Summary: Enable yc to be forced for stat update.
Reviewed-by: mgerdin, jcoomes

     1 /*
     2  * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #ifndef SHARE_VM_GC_INTERFACE_GCCAUSE_HPP
    26 #define SHARE_VM_GC_INTERFACE_GCCAUSE_HPP
    28 #include "memory/allocation.hpp"
    30 //
    31 // This class exposes implementation details of the various
    32 // collector(s), and we need to be very careful with it. If
    33 // use of this class grows, we should split it into public
    34 // and implemenation-private "causes".
    35 //
    37 class GCCause : public AllStatic {
    38  public:
    39   enum Cause {
    40     /* public */
    41     _java_lang_system_gc,
    42     _full_gc_alot,
    43     _scavenge_alot,
    44     _allocation_profiler,
    45     _jvmti_force_gc,
    46     _gc_locker,
    47     _heap_inspection,
    48     _heap_dump,
    49     _wb_young_gc,
    50     _update_allocation_context_stats_inc,
    51     _update_allocation_context_stats_full,
    53     /* implementation independent, but reserved for GC use */
    54     _no_gc,
    55     _no_cause_specified,
    56     _allocation_failure,
    58     /* implementation specific */
    60     _tenured_generation_full,
    61     _metadata_GC_threshold,
    63     _cms_generation_full,
    64     _cms_initial_mark,
    65     _cms_final_remark,
    66     _cms_concurrent_mark,
    68     _old_generation_expanded_on_last_scavenge,
    69     _old_generation_too_full_to_scavenge,
    70     _adaptive_size_policy,
    72     _g1_inc_collection_pause,
    73     _g1_humongous_allocation,
    75     _last_ditch_collection,
    76     _last_gc_cause
    77   };
    79   inline static bool is_user_requested_gc(GCCause::Cause cause) {
    80     return (cause == GCCause::_java_lang_system_gc ||
    81             cause == GCCause::_jvmti_force_gc);
    82   }
    84   inline static bool is_serviceability_requested_gc(GCCause::Cause
    85                                                              cause) {
    86     return (cause == GCCause::_jvmti_force_gc ||
    87             cause == GCCause::_heap_inspection ||
    88             cause == GCCause::_heap_dump);
    89   }
    91   // Return a string describing the GCCause.
    92   static const char* to_string(GCCause::Cause cause);
    93 };
    95 // Helper class for doing logging that includes the GC Cause
    96 // as a string.
    97 class GCCauseString : StackObj {
    98  private:
    99    static const int _length = 128;
   100    char _buffer[_length];
   101    int _position;
   103  public:
   104    GCCauseString(const char* prefix, GCCause::Cause cause) {
   105      if (PrintGCCause) {
   106       _position = jio_snprintf(_buffer, _length, "%s (%s) ", prefix, GCCause::to_string(cause));
   107      } else {
   108       _position = jio_snprintf(_buffer, _length, "%s ", prefix);
   109      }
   110      assert(_position >= 0 && _position <= _length,
   111        err_msg("Need to increase the buffer size in GCCauseString? %d", _position));
   112    }
   114    GCCauseString& append(const char* str) {
   115      int res = jio_snprintf(_buffer + _position, _length - _position, "%s", str);
   116      _position += res;
   117      assert(res >= 0 && _position <= _length,
   118        err_msg("Need to increase the buffer size in GCCauseString? %d", res));
   119      return *this;
   120    }
   122    operator const char*() {
   123      return _buffer;
   124    }
   125 };
   127 #endif // SHARE_VM_GC_INTERFACE_GCCAUSE_HPP

mercurial