comparison src/share/vm/trace/traceDataTypes.hpp @ 10405:f2110083203d

8005849: JEP 167: Event-Based JVM Tracing Reviewed-by: acorn, coleenp, sla Contributed-by: Karen Kinnear <karen.kinnear@oracle.com>, Bengt Rutisson <bengt.rutisson@oracle.com>, Calvin Cheung <calvin.cheung@oracle.com>, Erik Gahlin <erik.gahlin@oracle.com>, Erik Helin <erik.helin@oracle.com>, Jesper Wilhelmsson <jesper.wilhelmsson@oracle.com>, Keith McGuigan <keith.mcguigan@oracle.com>, Mattias Tobiasson <mattias.tobiasson@oracle.com>, Markus Gronlund <markus.gronlund@oracle.com>, Mikael Auno <mikael.auno@oracle.com>, Nils Eliasson <nils.eliasson@oracle.com>, Nils Loodin <nils.loodin@oracle.com>, Rickard Backman <rickard.backman@oracle.com>, Staffan Larsen <staffan.larsen@oracle.com>, Stefan Karlsson <stefan.karlsson@oracle.com>, Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
author sla
date Mon, 10 Jun 2013 11:30:51 +0200
parents
children 060ae9b7ffea
comparison
equal deleted inserted replaced
10404:d0add7016434 10405:f2110083203d
1 /*
2 * Copyright (c) 2012, 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 */
24
25 #ifndef SHARE_VM_TRACE_TRACEDATATYPES_HPP
26 #define SHARE_VM_TRACE_TRACEDATATYPES_HPP
27
28 #include <stddef.h>
29
30 #include "utilities/globalDefinitions.hpp"
31
32 enum {
33 CONTENT_TYPE_NONE = 0,
34 CONTENT_TYPE_BYTES = 1,
35 CONTENT_TYPE_EPOCHMILLIS = 2,
36 CONTENT_TYPE_MILLIS = 3,
37 CONTENT_TYPE_NANOS = 4,
38 CONTENT_TYPE_TICKS = 5,
39 CONTENT_TYPE_ADDRESS = 6,
40
41 CONTENT_TYPE_OSTHREAD,
42 CONTENT_TYPE_JAVALANGTHREAD,
43 CONTENT_TYPE_STACKTRACE,
44 CONTENT_TYPE_CLASS,
45 CONTENT_TYPE_PERCENTAGE,
46
47 JVM_CONTENT_TYPES_START = 30,
48 JVM_CONTENT_TYPES_END = 100
49 };
50
51 enum ReservedEvent {
52 EVENT_PRODUCERS,
53 EVENT_CHECKPOINT,
54 EVENT_BUFFERLOST,
55
56 NUM_RESERVED_EVENTS
57 };
58
59 typedef enum ReservedEvent ReservedEvent;
60
61 typedef u8 classid;
62 typedef u8 stacktraceid;
63 typedef u8 methodid;
64 typedef u8 fieldid;
65
66 #endif // SHARE_VM_TRACE_TRACEDATATYPES_HPP
67