hotspot/src/share/vm/prims/jvmtiTrace.hpp
author ksrini
Wed, 08 Oct 2008 08:10:51 -0700
changeset 1420 d116726a4ca4
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6755845: JVM_FindClassFromBoot triggers assertions Summary: Fixes assertions caused by one jvm_entry calling another, solved by refactoring code and modified gamma test. Reviewed-by: dholmes, xlu
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1999-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
///////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// class JvmtiTrace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Support for JVMTI tracing code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// Support tracing except in product build on the client compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
#define JVMTI_TRACE 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#define JVMTI_TRACE 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
#ifdef JVMTI_TRACE
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class JvmtiTrace : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  static bool        _initialized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static bool        _on;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static bool        _trace_event_controller;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  static jbyte       _trace_flags[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  static jbyte       _event_trace_flags[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  static const char* _event_names[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  static jint        _max_function_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static jint        _max_event_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  static short       _exclude_functions[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  static const char* _function_names[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    SHOW_IN =              01,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    SHOW_OUT =             02,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    SHOW_ERROR =           04,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    SHOW_IN_DETAIL =      010,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    SHOW_OUT_DETAIL =     020,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    SHOW_EVENT_TRIGGER =  040,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    SHOW_EVENT_SENT =    0100
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static bool tracing()                     { return _on; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  static bool trace_event_controller()      { return _trace_event_controller; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static jbyte trace_flags(int num)         { return _trace_flags[num]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  static jbyte event_trace_flags(int num)   { return _event_trace_flags[num]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  static const char* function_name(int num) { return _function_names[num]; } // To Do: add range checking
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  static const char* event_name(int num) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    static char* ext_event_name = (char*)"(extension event)";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    if (num >= JVMTI_MIN_EVENT_TYPE_VAL && num <= JVMTI_MAX_EVENT_TYPE_VAL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
      return _event_names[num];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      return ext_event_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static const char* enum_name(const char** names, const jint* values, jint value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static void shutdown();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // return a valid string no matter what state the thread is in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  static const char *safe_get_thread_name(Thread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // return the name of the current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static const char *safe_get_current_thread_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // return a valid string no matter what the state of k_mirror
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static const char *get_class_name(oop k_mirror);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
#endif /*JVMTI_TRACE */