annotate src/share/vm/prims/jvmtiTrace.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children 47bc9800972c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_PRIMS_JVMTITRACE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_PRIMS_JVMTITRACE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "jvmtifiles/jvmti.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "oops/objArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "prims/jvmtiEnvThreadState.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "prims/jvmtiEventController.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "prims/jvmtiUtil.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "runtime/stackValueCollection.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "runtime/vm_operations.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36
0
a61af66fc99e Initial load
duke
parents:
diff changeset
37 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
38 //
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // class JvmtiTrace
a61af66fc99e Initial load
duke
parents:
diff changeset
40 //
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Support for JVMTI tracing code
a61af66fc99e Initial load
duke
parents:
diff changeset
42 //
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // Support tracing except in product build on the client compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
45 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
46 #define JVMTI_TRACE 1
a61af66fc99e Initial load
duke
parents:
diff changeset
47 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
48 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
49 #define JVMTI_TRACE 1
a61af66fc99e Initial load
duke
parents:
diff changeset
50 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
51 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 #ifdef JVMTI_TRACE
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 class JvmtiTrace : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 static bool _initialized;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 static bool _on;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 static bool _trace_event_controller;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 static jbyte _trace_flags[];
a61af66fc99e Initial load
duke
parents:
diff changeset
61 static jbyte _event_trace_flags[];
a61af66fc99e Initial load
duke
parents:
diff changeset
62 static const char* _event_names[];
a61af66fc99e Initial load
duke
parents:
diff changeset
63 static jint _max_function_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 static jint _max_event_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 static short _exclude_functions[];
a61af66fc99e Initial load
duke
parents:
diff changeset
66 static const char* _function_names[];
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 SHOW_IN = 01,
a61af66fc99e Initial load
duke
parents:
diff changeset
72 SHOW_OUT = 02,
a61af66fc99e Initial load
duke
parents:
diff changeset
73 SHOW_ERROR = 04,
a61af66fc99e Initial load
duke
parents:
diff changeset
74 SHOW_IN_DETAIL = 010,
a61af66fc99e Initial load
duke
parents:
diff changeset
75 SHOW_OUT_DETAIL = 020,
a61af66fc99e Initial load
duke
parents:
diff changeset
76 SHOW_EVENT_TRIGGER = 040,
a61af66fc99e Initial load
duke
parents:
diff changeset
77 SHOW_EVENT_SENT = 0100
a61af66fc99e Initial load
duke
parents:
diff changeset
78 };
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 static bool tracing() { return _on; }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 static bool trace_event_controller() { return _trace_event_controller; }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 static jbyte trace_flags(int num) { return _trace_flags[num]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static jbyte event_trace_flags(int num) { return _event_trace_flags[num]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
84 static const char* function_name(int num) { return _function_names[num]; } // To Do: add range checking
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 static const char* event_name(int num) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 static char* ext_event_name = (char*)"(extension event)";
a61af66fc99e Initial load
duke
parents:
diff changeset
88 if (num >= JVMTI_MIN_EVENT_TYPE_VAL && num <= JVMTI_MAX_EVENT_TYPE_VAL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 return _event_names[num];
a61af66fc99e Initial load
duke
parents:
diff changeset
90 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 return ext_event_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 static const char* enum_name(const char** names, const jint* values, jint value);
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 static void shutdown();
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // return a valid string no matter what state the thread is in
a61af66fc99e Initial load
duke
parents:
diff changeset
101 static const char *safe_get_thread_name(Thread *thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // return the name of the current thread
a61af66fc99e Initial load
duke
parents:
diff changeset
104 static const char *safe_get_current_thread_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // return a valid string no matter what the state of k_mirror
a61af66fc99e Initial load
duke
parents:
diff changeset
107 static const char *get_class_name(oop k_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 };
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 #endif /*JVMTI_TRACE */
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
111
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
112 #endif // SHARE_VM_PRIMS_JVMTITRACE_HPP