decoder.cpp 5.5 KB
Newer Older
1
/*
2
 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 *
 */

#include "precompiled.hpp"
#include "prims/jvm.h"
Z
zgu 已提交
27
#include "runtime/os.hpp"
28
#include "utilities/decoder.hpp"
Z
zgu 已提交
29
#include "utilities/vmError.hpp"
30

Z
zgu 已提交
31 32 33 34 35 36 37
#if defined(_WINDOWS)
  #include "decoder_windows.hpp"
#elif defined(__APPLE__)
  #include "decoder_machO.hpp"
#else
  #include "decoder_elf.hpp"
#endif
38

Z
zgu 已提交
39 40 41 42 43
AbstractDecoder*  Decoder::_shared_decoder = NULL;
AbstractDecoder*  Decoder::_error_handler_decoder = NULL;
NullDecoder       Decoder::_do_nothing_decoder;
Mutex*            Decoder::_shared_decoder_lock = new Mutex(Mutex::native,
                                "SharedDecoderLock");
44

Z
zgu 已提交
45 46
AbstractDecoder* Decoder::get_shared_instance() {
  assert(_shared_decoder_lock != NULL && _shared_decoder_lock->owned_by_self(),
Z
zgu 已提交
47
    "Require DecoderLock to enter");
48

Z
zgu 已提交
49 50
  if (_shared_decoder == NULL) {
    _shared_decoder = create_decoder();
Z
zgu 已提交
51
  }
Z
zgu 已提交
52 53 54 55 56 57 58 59 60
  return _shared_decoder;
}

AbstractDecoder* Decoder::get_error_handler_instance() {
  if (_error_handler_decoder == NULL) {
    _error_handler_decoder = create_decoder();
  }
  return _error_handler_decoder;
}
61

Z
zgu 已提交
62 63 64

AbstractDecoder* Decoder::create_decoder() {
  AbstractDecoder* decoder;
Z
zgu 已提交
65
#if defined(_WINDOWS)
Z
zgu 已提交
66
  decoder = new (std::nothrow) WindowsDecoder();
Z
zgu 已提交
67
#elif defined (__APPLE__)
Z
zgu 已提交
68
  decoder = new (std::nothrow)MachODecoder();
Z
zgu 已提交
69
#else
Z
zgu 已提交
70
  decoder = new (std::nothrow)ElfDecoder();
Z
zgu 已提交
71
#endif
72

Z
zgu 已提交
73 74 75
  if (decoder == NULL || decoder->has_error()) {
    if (decoder != NULL) {
      delete decoder;
Z
zgu 已提交
76
    }
Z
zgu 已提交
77
    decoder = &_do_nothing_decoder;
78
  }
Z
zgu 已提交
79
  return decoder;
80 81
}

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
inline bool DecoderLocker::is_first_error_thread() {
  return (os::current_thread_id() == VMError::get_first_error_tid());
}

DecoderLocker::DecoderLocker() :
  MutexLockerEx(DecoderLocker::is_first_error_thread() ?
                NULL : Decoder::shared_decoder_lock(), true) {
  _decoder = is_first_error_thread() ?
    Decoder::get_error_handler_instance() : Decoder::get_shared_instance();
  assert(_decoder != NULL, "null decoder");
}

Mutex* Decoder::shared_decoder_lock() {
  assert(_shared_decoder_lock != NULL, "Just check");
  return _shared_decoder_lock;
}

Z
zgu 已提交
99
bool Decoder::decode(address addr, char* buf, int buflen, int* offset, const char* modulepath) {
Z
zgu 已提交
100 101 102 103 104
  assert(_shared_decoder_lock != NULL, "Just check");
  bool error_handling_thread = os::current_thread_id() == VMError::first_error_tid;
  MutexLockerEx locker(error_handling_thread ? NULL : _shared_decoder_lock, true);
  AbstractDecoder* decoder = error_handling_thread ?
    get_error_handler_instance(): get_shared_instance();
Z
zgu 已提交
105
  assert(decoder != NULL, "null decoder");
106

Z
zgu 已提交
107 108
  return decoder->decode(addr, buf, buflen, offset, modulepath);
}
109

110 111 112 113 114 115 116 117 118 119 120 121
bool Decoder::decode(address addr, char* buf, int buflen, int* offset, const void* base) {
  assert(_shared_decoder_lock != NULL, "Just check");
  bool error_handling_thread = os::current_thread_id() == VMError::first_error_tid;
  MutexLockerEx locker(error_handling_thread ? NULL : _shared_decoder_lock, true);
  AbstractDecoder* decoder = error_handling_thread ?
    get_error_handler_instance(): get_shared_instance();
  assert(decoder != NULL, "null decoder");

  return decoder->decode(addr, buf, buflen, offset, base);
}


Z
zgu 已提交
122
bool Decoder::demangle(const char* symbol, char* buf, int buflen) {
Z
zgu 已提交
123 124 125 126 127
  assert(_shared_decoder_lock != NULL, "Just check");
  bool error_handling_thread = os::current_thread_id() == VMError::first_error_tid;
  MutexLockerEx locker(error_handling_thread ? NULL : _shared_decoder_lock, true);
  AbstractDecoder* decoder = error_handling_thread ?
    get_error_handler_instance(): get_shared_instance();
Z
zgu 已提交
128 129
  assert(decoder != NULL, "null decoder");
  return decoder->demangle(symbol, buf, buflen);
130 131
}

Z
zgu 已提交
132
bool Decoder::can_decode_C_frame_in_vm() {
Z
zgu 已提交
133 134 135 136 137
  assert(_shared_decoder_lock != NULL, "Just check");
  bool error_handling_thread = os::current_thread_id() == VMError::first_error_tid;
  MutexLockerEx locker(error_handling_thread ? NULL : _shared_decoder_lock, true);
  AbstractDecoder* decoder = error_handling_thread ?
    get_error_handler_instance(): get_shared_instance();
Z
zgu 已提交
138 139 140
  assert(decoder != NULL, "null decoder");
  return decoder->can_decode_C_frame_in_vm();
}
141

Z
zgu 已提交
142 143 144 145 146
/*
 * Shutdown shared decoder and replace it with
 * _do_nothing_decoder. Do nothing with error handler
 * instance, since the JVM is going down.
 */
Z
zgu 已提交
147
void Decoder::shutdown() {
Z
zgu 已提交
148 149
  assert(_shared_decoder_lock != NULL, "Just check");
  MutexLockerEx locker(_shared_decoder_lock, true);
Z
zgu 已提交
150

Z
zgu 已提交
151 152 153
  if (_shared_decoder != NULL &&
    _shared_decoder != &_do_nothing_decoder) {
    delete _shared_decoder;
154 155
  }

Z
zgu 已提交
156
  _shared_decoder = &_do_nothing_decoder;
157 158
}