hotspot/src/share/vm/prims/jvmtiTrace.hpp
author tschatzl
Wed, 11 Sep 2013 16:25:02 +0200
changeset 19986 33d188c66ed9
parent 15937 fd3d2d0175f9
child 22234 da823d78ad65
permissions -rw-r--r--
8010722: assert: failed: heap size is too big for compressed oops Summary: Use conservative assumptions of required alignment for the various garbage collector components into account when determining the maximum heap size that supports compressed oops. Using this conservative value avoids several circular dependencies in the calculation. Reviewed-by: stefank, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
1
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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_PRIMS_JVMTITRACE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_PRIMS_JVMTITRACE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "jvmtifiles/jvmti.h"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "prims/jvmtiEnvThreadState.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "prims/jvmtiEventController.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "prims/jvmtiUtil.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/stackValueCollection.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "runtime/vm_operations.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
///////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// class JvmtiTrace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// Support for JVMTI tracing code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Support tracing except in product build on the client compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
#ifndef PRODUCT
15937
fd3d2d0175f9 8006498: #if <symbol> is wrong in the code.
jprovino
parents: 7397
diff changeset
    46
#define JVMTI_TRACE
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
#ifdef COMPILER2
15937
fd3d2d0175f9 8006498: #if <symbol> is wrong in the code.
jprovino
parents: 7397
diff changeset
    49
#define JVMTI_TRACE
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
#ifdef JVMTI_TRACE
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
class JvmtiTrace : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static bool        _initialized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  static bool        _on;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static bool        _trace_event_controller;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  static jbyte       _trace_flags[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  static jbyte       _event_trace_flags[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  static const char* _event_names[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  static jint        _max_function_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  static jint        _max_event_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static short       _exclude_functions[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static const char* _function_names[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    SHOW_IN =              01,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    SHOW_OUT =             02,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    SHOW_ERROR =           04,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    SHOW_IN_DETAIL =      010,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    SHOW_OUT_DETAIL =     020,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    SHOW_EVENT_TRIGGER =  040,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    SHOW_EVENT_SENT =    0100
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  static bool tracing()                     { return _on; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  static bool trace_event_controller()      { return _trace_event_controller; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  static jbyte trace_flags(int num)         { return _trace_flags[num]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static jbyte event_trace_flags(int num)   { return _event_trace_flags[num]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static const char* function_name(int num) { return _function_names[num]; } // To Do: add range checking
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static const char* event_name(int num) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    static char* ext_event_name = (char*)"(extension event)";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    if (num >= JVMTI_MIN_EVENT_TYPE_VAL && num <= JVMTI_MAX_EVENT_TYPE_VAL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      return _event_names[num];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
      return ext_event_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static const char* enum_name(const char** names, const jint* values, jint value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static void shutdown();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // return a valid string no matter what state the thread is in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static const char *safe_get_thread_name(Thread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // return the name of the current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  static const char *safe_get_current_thread_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // return a valid string no matter what the state of k_mirror
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  static const char *get_class_name(oop k_mirror);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
#endif /*JVMTI_TRACE */
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   111
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   112
#endif // SHARE_VM_PRIMS_JVMTITRACE_HPP