author | mockner |
Wed, 03 Feb 2016 11:40:30 -0500 | |
changeset 35917 | 463d67f86eaa |
parent 35061 | be6025ebffea |
child 35939 | 05df7e64ecfc |
permissions | -rw-r--r-- |
33097 | 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_LOGPREFIX_HPP |
|
25 |
#define SHARE_VM_LOGGING_LOGPREFIX_HPP |
|
26 |
||
27 |
#include "gc/shared/gcId.hpp" |
|
28 |
#include "logging/logTag.hpp" |
|
29 |
||
34138
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
30 |
// Prefixes prepend each log message for a specified tagset with a given prefix. |
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
31 |
// These prefixes are written before the log message but after the log decorations. |
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
32 |
// |
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
33 |
// A prefix is defined as a function that takes a buffer (with some size) as argument. |
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
34 |
// This function will be called for each log message, and should write the prefix |
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
35 |
// to the given buffer. The function should return how many characters it wrote, |
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
36 |
// which should never exceed the given size. |
33097 | 37 |
// |
38 |
// List of prefixes for specific tags and/or tagsets. |
|
34138
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
39 |
// Syntax: LOG_PREFIX(<name of prefixer function>, LOG_TAGS(<chosen log tags>)) |
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
40 |
// Where the prefixer function matches the following signature: size_t (*)(char*, size_t) |
35061 | 41 |
#define LOG_PREFIX_LIST \ |
42 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc)) \ |
|
43 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, age)) \ |
|
44 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, alloc)) \ |
|
45 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, barrier)) \ |
|
46 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, compaction)) \ |
|
47 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, compaction, phases)) \ |
|
48 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, cpu)) \ |
|
49 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, ergo)) \ |
|
50 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, ergo, cset)) \ |
|
51 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, ergo, heap)) \ |
|
52 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, ergo, ihop)) \ |
|
53 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, heap)) \ |
|
54 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, freelist)) \ |
|
55 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, ihop)) \ |
|
56 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, liveness)) \ |
|
57 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, metaspace)) \ |
|
58 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, phases)) \ |
|
59 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, phases, start)) \ |
|
60 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, plab)) \ |
|
61 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, region)) \ |
|
62 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, remset)) \ |
|
63 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, ref)) \ |
|
64 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, ref, start)) \ |
|
65 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, start)) \ |
|
66 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, sweep)) \ |
|
67 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, task)) \ |
|
68 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, task, start)) \ |
|
69 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, task, stats)) \ |
|
70 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, task, time)) \ |
|
71 |
LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, tlab)) |
|
72 |
||
33097 | 73 |
|
74 |
// The empty prefix, used when there's no prefix defined. |
|
75 |
template <LogTagType T0, LogTagType T1, LogTagType T2, LogTagType T3, LogTagType T4, LogTagType GuardTag = LogTag::__NO_TAG> |
|
76 |
struct LogPrefix : public AllStatic { |
|
77 |
STATIC_ASSERT(GuardTag == LogTag::__NO_TAG); |
|
78 |
static size_t prefix(char* buf, size_t len) { |
|
79 |
return 0; |
|
80 |
} |
|
81 |
}; |
|
82 |
||
34138
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
83 |
#define LOG_PREFIX(fn, ...) \ |
33097 | 84 |
template <> struct LogPrefix<__VA_ARGS__> { \ |
85 |
static size_t prefix(char* buf, size_t len) { \ |
|
34138
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
86 |
DEBUG_ONLY(buf[0] = '\0';) \ |
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
87 |
size_t ret = fn(buf, len); \ |
c5c8a684fd85
8142482: Improve the support for prefix functions in unified logging
mlarsson
parents:
33111
diff
changeset
|
88 |
assert(ret == strlen(buf), "Length mismatch ret (" SIZE_FORMAT ") != buf length (" SIZE_FORMAT ")", ret, strlen(buf)); \ |
33097 | 89 |
return ret; \ |
90 |
} \ |
|
91 |
}; |
|
92 |
LOG_PREFIX_LIST |
|
93 |
#undef LOG_PREFIX |
|
94 |
||
95 |
#endif // SHARE_VM_LOGGING_LOGPREFIX_HPP |