decoder.hpp 4.6 KB
Newer Older
1
/*
Z
zgu 已提交
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
 * 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.
 *
 */


Z
zgu 已提交
26 27
#ifndef SHARE_VM_UTILITIES_DECODER_HPP
#define SHARE_VM_UTILITIES_DECODER_HPP
28 29

#include "memory/allocation.hpp"
Z
zgu 已提交
30
#include "runtime/mutex.hpp"
31
#include "runtime/mutexLocker.hpp"
32

Z
zgu 已提交
33
class AbstractDecoder : public CHeapObj<mtInternal> {
Z
zgu 已提交
34
public:
35 36
  // status code for decoding native C frame
  enum decoder_status {
Z
zgu 已提交
37 38
         not_available = -10,  // real decoder is not available
         no_error = 0,         // successfully decoded frames
39 40 41 42 43
         out_of_memory,        // out of memory
         file_invalid,         // invalid elf file
         file_not_found,       // could not found symbol file (on windows), such as jvm.pdb or jvm.map
         helper_not_found,     // could not load dbghelp.dll (Windows only)
         helper_func_error,    // decoding functions not found (Windows only)
Z
zgu 已提交
44
         helper_init_error     // SymInitialize failed (Windows only)
45 46
  };

Z
zgu 已提交
47 48 49 50
  // decode an pc address to corresponding function name and an offset from the beginning of
  // the function
  virtual bool decode(address pc, char* buf, int buflen, int* offset,
    const char* modulepath = NULL) = 0;
51 52
  virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) = 0;

Z
zgu 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
  // demangle a C++ symbol
  virtual bool demangle(const char* symbol, char* buf, int buflen) = 0;
  // if the decoder can decode symbols in vm
  virtual bool can_decode_C_frame_in_vm() const = 0;

  virtual decoder_status status() const {
    return _decoder_status;
  }

  virtual bool has_error() const {
    return is_error(_decoder_status);
  }

  static bool is_error(decoder_status status) {
    return (status > 0);
  }

protected:
  decoder_status  _decoder_status;
};

// Do nothing decoder
class NullDecoder : public AbstractDecoder {
public:
Z
zgu 已提交
77 78 79
  NullDecoder() {
    _decoder_status = not_available;
  }
80

Z
zgu 已提交
81 82 83 84 85 86
  ~NullDecoder() {};

  virtual bool decode(address pc, char* buf, int buflen, int* offset,
    const char* modulepath = NULL) {
    return false;
  }
87

88 89 90 91
  virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) {
    return false;
  }

Z
zgu 已提交
92 93 94
  virtual bool demangle(const char* symbol, char* buf, int buflen) {
    return false;
  }
95

Z
zgu 已提交
96 97 98 99 100 101
  virtual bool can_decode_C_frame_in_vm() const {
    return false;
  }
};


Z
zgu 已提交
102
class Decoder : AllStatic {
Z
zgu 已提交
103 104
public:
  static bool decode(address pc, char* buf, int buflen, int* offset, const char* modulepath = NULL);
105
  static bool decode(address pc, char* buf, int buflen, int* offset, const void* base);
Z
zgu 已提交
106 107
  static bool demangle(const char* symbol, char* buf, int buflen);
  static bool can_decode_C_frame_in_vm();
108

Z
zgu 已提交
109
  // shutdown shared instance
Z
zgu 已提交
110 111
  static void shutdown();
protected:
Z
zgu 已提交
112 113 114 115 116 117 118 119 120
  // shared decoder instance, _shared_instance_lock is needed
  static AbstractDecoder* get_shared_instance();
  // a private instance for error handler. Error handler can be
  // triggered almost everywhere, including signal handler, where
  // no lock can be taken. So the shared decoder can not be used
  // in this scenario.
  static AbstractDecoder* get_error_handler_instance();

  static AbstractDecoder* create_decoder();
Z
zgu 已提交
121
private:
Z
zgu 已提交
122 123 124
  static AbstractDecoder*     _shared_decoder;
  static AbstractDecoder*     _error_handler_decoder;
  static NullDecoder          _do_nothing_decoder;
125

Z
zgu 已提交
126
protected:
Z
zgu 已提交
127
  static Mutex*               _shared_decoder_lock;
128 129 130 131 132 133 134 135 136 137 138 139 140
  static Mutex* shared_decoder_lock();

  friend class DecoderLocker;
};

class DecoderLocker : public MutexLockerEx {
  AbstractDecoder* _decoder;
  inline bool is_first_error_thread();
public:
  DecoderLocker();
  AbstractDecoder* decoder() {
    return _decoder;
  }
141 142
};

Z
zgu 已提交
143
#endif // SHARE_VM_UTILITIES_DECODER_HPP