annotate src/share/vm/prims/jvmtiTrace.hpp @ 973:ad6585fd4087

6830542: Performance: JVM_DefineClass already verified. Reviewed-by: kamg, phh
author acorn
date Fri, 04 Sep 2009 12:53:02 -0400
parents a61af66fc99e
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
26 //
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // class JvmtiTrace
a61af66fc99e Initial load
duke
parents:
diff changeset
28 //
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Support for JVMTI tracing code
a61af66fc99e Initial load
duke
parents:
diff changeset
30 //
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Support tracing except in product build on the client compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
33 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
34 #define JVMTI_TRACE 1
a61af66fc99e Initial load
duke
parents:
diff changeset
35 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
36 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
37 #define JVMTI_TRACE 1
a61af66fc99e Initial load
duke
parents:
diff changeset
38 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
39 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 #ifdef JVMTI_TRACE
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class JvmtiTrace : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 static bool _initialized;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 static bool _on;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 static bool _trace_event_controller;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static jbyte _trace_flags[];
a61af66fc99e Initial load
duke
parents:
diff changeset
49 static jbyte _event_trace_flags[];
a61af66fc99e Initial load
duke
parents:
diff changeset
50 static const char* _event_names[];
a61af66fc99e Initial load
duke
parents:
diff changeset
51 static jint _max_function_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 static jint _max_event_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 static short _exclude_functions[];
a61af66fc99e Initial load
duke
parents:
diff changeset
54 static const char* _function_names[];
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 SHOW_IN = 01,
a61af66fc99e Initial load
duke
parents:
diff changeset
60 SHOW_OUT = 02,
a61af66fc99e Initial load
duke
parents:
diff changeset
61 SHOW_ERROR = 04,
a61af66fc99e Initial load
duke
parents:
diff changeset
62 SHOW_IN_DETAIL = 010,
a61af66fc99e Initial load
duke
parents:
diff changeset
63 SHOW_OUT_DETAIL = 020,
a61af66fc99e Initial load
duke
parents:
diff changeset
64 SHOW_EVENT_TRIGGER = 040,
a61af66fc99e Initial load
duke
parents:
diff changeset
65 SHOW_EVENT_SENT = 0100
a61af66fc99e Initial load
duke
parents:
diff changeset
66 };
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 static bool tracing() { return _on; }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 static bool trace_event_controller() { return _trace_event_controller; }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static jbyte trace_flags(int num) { return _trace_flags[num]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
71 static jbyte event_trace_flags(int num) { return _event_trace_flags[num]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 static const char* function_name(int num) { return _function_names[num]; } // To Do: add range checking
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 static const char* event_name(int num) {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 static char* ext_event_name = (char*)"(extension event)";
a61af66fc99e Initial load
duke
parents:
diff changeset
76 if (num >= JVMTI_MIN_EVENT_TYPE_VAL && num <= JVMTI_MAX_EVENT_TYPE_VAL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return _event_names[num];
a61af66fc99e Initial load
duke
parents:
diff changeset
78 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 return ext_event_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static const char* enum_name(const char** names, const jint* values, jint value);
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
86 static void shutdown();
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // return a valid string no matter what state the thread is in
a61af66fc99e Initial load
duke
parents:
diff changeset
89 static const char *safe_get_thread_name(Thread *thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // return the name of the current thread
a61af66fc99e Initial load
duke
parents:
diff changeset
92 static const char *safe_get_current_thread_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // return a valid string no matter what the state of k_mirror
a61af66fc99e Initial load
duke
parents:
diff changeset
95 static const char *get_class_name(oop k_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 };
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 #endif /*JVMTI_TRACE */