src/share/vm/prims/jvmtiRedefineClassesTrace.hpp

Mon, 02 Mar 2009 14:03:03 -0700

author
dcubed
date
Mon, 02 Mar 2009 14:03:03 -0700
changeset 1045
70998f2e05ef
parent 631
d1605aabd0a1
child 1907
c18cbe5936b8
permissions
-rw-r--r--

6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
Summary: Remove incorrect optimization in klassItable::adjust_method_entries(). Add RedefineClasses() tracing support for obsolete method entry.
Reviewed-by: acorn, swamyv

duke@435 1 /*
xdono@631 2 * Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 // RedefineClasses tracing support via the TraceRedefineClasses
duke@435 26 // option. A bit is assigned to each group of trace messages.
duke@435 27 // Groups of messages are individually selectable. We have to use
duke@435 28 // decimal values on the command line since the command option
duke@435 29 // parsing logic doesn't like non-decimal numerics. The HEX values
duke@435 30 // are used in the actual RC_TRACE() calls for sanity. To achieve
duke@435 31 // the old cumulative behavior, pick the level after the one in
duke@435 32 // which you are interested and subtract one, e.g., 33554431 will
duke@435 33 // print every tracing message.
duke@435 34 //
duke@435 35 // 0x00000000 | 0 - default; no tracing messages
duke@435 36 // 0x00000001 | 1 - name each target class before loading, after
duke@435 37 // loading and after redefinition is completed
duke@435 38 // 0x00000002 | 2 - print info if parsing, linking or
duke@435 39 // verification throws an exception
duke@435 40 // 0x00000004 | 4 - print timer info for the VM operation
duke@435 41 // 0x00000008 | 8 - print subclass counter updates
duke@435 42 // 0x00000010 | 16 - unused
duke@435 43 // 0x00000020 | 32 - unused
duke@435 44 // 0x00000040 | 64 - unused
duke@435 45 // 0x00000080 | 128 - unused
duke@435 46 // 0x00000100 | 256 - previous class weak reference addition
duke@435 47 // 0x00000200 | 512 - previous class weak reference mgmt during
duke@435 48 // class unloading checks (GC)
duke@435 49 // 0x00000400 | 1024 - previous class weak reference mgmt during
duke@435 50 // add previous ops (GC)
duke@435 51 // 0x00000800 | 2048 - previous class breakpoint mgmt
dcubed@1045 52 // 0x00001000 | 4096 - detect calls to obsolete methods
dcubed@1045 53 // 0x00002000 | 8192 - fail a guarantee() in addition to detection
duke@435 54 // 0x00004000 | 16384 - unused
duke@435 55 // 0x00008000 | 32768 - old/new method matching/add/delete
duke@435 56 // 0x00010000 | 65536 - impl details: CP size info
duke@435 57 // 0x00020000 | 131072 - impl details: CP merge pass info
duke@435 58 // 0x00040000 | 262144 - impl details: CP index maps
duke@435 59 // 0x00080000 | 524288 - impl details: modified CP index values
duke@435 60 // 0x00100000 | 1048576 - impl details: vtable updates
duke@435 61 // 0x00200000 | 2097152 - impl details: itable updates
duke@435 62 // 0x00400000 | 4194304 - impl details: constant pool cache updates
duke@435 63 // 0x00800000 | 8388608 - impl details: methodComparator info
duke@435 64 // 0x01000000 | 16777216 - impl details: nmethod evolution info
duke@435 65 // 0x02000000 | 33554432 - impl details: annotation updates
duke@435 66 // 0x04000000 | 67108864 - impl details: StackMapTable updates
dcubed@483 67 // 0x08000000 | 134217728 - impl details: OopMapCache updates
duke@435 68 // 0x10000000 | 268435456 - unused
duke@435 69 // 0x20000000 | 536870912 - unused
duke@435 70 // 0x40000000 | 1073741824 - unused
duke@435 71 // 0x80000000 | 2147483648 - unused
duke@435 72 //
duke@435 73 // Note: The ResourceMark is to cleanup resource allocated args.
duke@435 74 // The "while (0)" is so we can use semi-colon at end of RC_TRACE().
duke@435 75 #define RC_TRACE(level, args) \
duke@435 76 if ((TraceRedefineClasses & level) != 0) { \
duke@435 77 ResourceMark rm; \
duke@435 78 tty->print("RedefineClasses-0x%x: ", level); \
duke@435 79 tty->print_cr args; \
duke@435 80 } while (0)
duke@435 81
duke@435 82 #define RC_TRACE_WITH_THREAD(level, thread, args) \
duke@435 83 if ((TraceRedefineClasses & level) != 0) { \
duke@435 84 ResourceMark rm(thread); \
duke@435 85 tty->print("RedefineClasses-0x%x: ", level); \
duke@435 86 tty->print_cr args; \
duke@435 87 } while (0)
duke@435 88
duke@435 89 #define RC_TRACE_MESG(args) \
duke@435 90 { \
duke@435 91 ResourceMark rm; \
duke@435 92 tty->print("RedefineClasses: "); \
duke@435 93 tty->print_cr args; \
duke@435 94 } while (0)
duke@435 95
duke@435 96 // Macro for checking if TraceRedefineClasses has a specific bit
duke@435 97 // enabled. Returns true if the bit specified by level is set.
duke@435 98 #define RC_TRACE_ENABLED(level) ((TraceRedefineClasses & level) != 0)
duke@435 99
duke@435 100 // Macro for checking if TraceRedefineClasses has one or more bits
duke@435 101 // set in a range of bit values. Returns true if one or more bits
duke@435 102 // is set in the range from low..high inclusive. Assumes that low
duke@435 103 // and high are single bit values.
duke@435 104 //
duke@435 105 // ((high << 1) - 1)
duke@435 106 // Yields a mask that removes bits greater than the high bit value.
duke@435 107 // This algorithm doesn't work with highest bit.
duke@435 108 // ~(low - 1)
duke@435 109 // Yields a mask that removes bits lower than the low bit value.
duke@435 110 #define RC_TRACE_IN_RANGE(low, high) \
duke@435 111 (((TraceRedefineClasses & ((high << 1) - 1)) & ~(low - 1)) != 0)
duke@435 112
duke@435 113 // Timer support macros. Only do timer operations if timer tracing
duke@435 114 // is enabled. The "while (0)" is so we can use semi-colon at end of
duke@435 115 // the macro.
duke@435 116 #define RC_TIMER_START(t) \
duke@435 117 if (RC_TRACE_ENABLED(0x00000004)) { \
duke@435 118 t.start(); \
duke@435 119 } while (0)
duke@435 120 #define RC_TIMER_STOP(t) \
duke@435 121 if (RC_TRACE_ENABLED(0x00000004)) { \
duke@435 122 t.stop(); \
duke@435 123 } while (0)

mercurial