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

src/share/vm/logging/logTag.hpp

Print this page




  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) /* Trace all classes loaded */ \
  43   LOG_TAG(classloaderdata) /* class loader loader_data lifetime */ \
  44   LOG_TAG(classunload) /* Trace unloading of classes */ \

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




  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) /* Trace all classes loaded */ \
  43   LOG_TAG(classloaderdata) /* class loader loader_data lifetime */ \
  44   LOG_TAG(classunload) /* Trace unloading of classes */ \
  45   LOG_TAG(classpath) \
  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) \
  65   LOG_TAG(os) \


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