src/share/vm/logging/logTag.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File classload.08 Sdiff src/share/vm/logging

src/share/vm/logging/logTag.hpp

Print this page


   1 /*
   2  * Copyright (c) 2015, 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  */
  24 #ifndef SHARE_VM_LOGGING_LOGTAG_HPP
  25 #define SHARE_VM_LOGGING_LOGTAG_HPP
  26 
  27 #include "memory/allocation.hpp"
  28 #include "utilities/globalDefinitions.hpp"
  29 
  30 // List of available logging tags. New tags should be added here.
  31 // (The tags 'all', 'disable' and 'help' are special tags that can
  32 // not be used in log calls, and should not be listed below.)
  33 #define LOG_TAG_LIST \
  34   LOG_TAG(alloc) \
  35   LOG_TAG(age) \
  36   LOG_TAG(barrier) \
  37   LOG_TAG(bot) \
  38   LOG_TAG(census) \
  39   LOG_TAG(classhisto) \
  40   LOG_TAG(classresolve) \
  41   LOG_TAG(classinit) \



  42   LOG_TAG(comp) \
  43   LOG_TAG(compaction) \
  44   LOG_TAG(cpu) \
  45   LOG_TAG(cset) \
  46   LOG_TAG(defaultmethods) \
  47   LOG_TAG(ergo) \
  48   LOG_TAG(exceptions) \
  49   LOG_TAG(exit) \
  50   LOG_TAG(freelist) \
  51   LOG_TAG(gc) \
  52   LOG_TAG(heap) \
  53   LOG_TAG(humongous) \
  54   LOG_TAG(ihop) \
  55   LOG_TAG(itables) \
  56   LOG_TAG(jni) \
  57   LOG_TAG(liveness) \
  58   LOG_TAG(logging) \
  59   LOG_TAG(marking) \
  60   LOG_TAG(metaspace) \
  61   LOG_TAG(monitorinflation) \


   1 /*
   2  * Copyright (c) 2015, 2016, 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  */
  24 #ifndef SHARE_VM_LOGGING_LOGTAG_HPP
  25 #define SHARE_VM_LOGGING_LOGTAG_HPP
  26 
  27 #include "memory/allocation.hpp"
  28 #include "utilities/globalDefinitions.hpp"
  29 
  30 // List of available logging tags. New tags should be added here.
  31 // (The tags 'all', 'disable' and 'help' are special tags that can
  32 // not be used in log calls, and should not be listed below.)
  33 #define LOG_TAG_LIST \
  34   LOG_TAG(alloc) \
  35   LOG_TAG(age) \
  36   LOG_TAG(barrier) \
  37   LOG_TAG(bot) \
  38   LOG_TAG(census) \
  39   LOG_TAG(classhisto) \
  40   LOG_TAG(classresolve) \
  41   LOG_TAG(classinit) \
  42   LOG_TAG(classload) \
  43   LOG_TAG(classloaderdata) \
  44   LOG_TAG(classunload) \
  45   LOG_TAG(comp) \
  46   LOG_TAG(compaction) \
  47   LOG_TAG(cpu) \
  48   LOG_TAG(cset) \
  49   LOG_TAG(defaultmethods) \
  50   LOG_TAG(ergo) \
  51   LOG_TAG(exceptions) \
  52   LOG_TAG(exit) \
  53   LOG_TAG(freelist) \
  54   LOG_TAG(gc) \
  55   LOG_TAG(heap) \
  56   LOG_TAG(humongous) \
  57   LOG_TAG(ihop) \
  58   LOG_TAG(itables) \
  59   LOG_TAG(jni) \
  60   LOG_TAG(liveness) \
  61   LOG_TAG(logging) \
  62   LOG_TAG(marking) \
  63   LOG_TAG(metaspace) \
  64   LOG_TAG(monitorinflation) \


src/share/vm/logging/logTag.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File