src/share/vm/compiler/disassembler.hpp

Fri, 28 Sep 2012 10:16:29 -0700

author
kvn
date
Fri, 28 Sep 2012 10:16:29 -0700
changeset 4117
f2e12eb74117
parent 4093
5a98bf7d847b
parent 4107
b31471cdc53e
child 4244
3d701c802d01
permissions
-rw-r--r--

Merge

jrose@535 1 /*
minqi@4093 2 * Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.
jrose@535 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jrose@535 4 *
jrose@535 5 * This code is free software; you can redistribute it and/or modify it
jrose@535 6 * under the terms of the GNU General Public License version 2 only, as
jrose@535 7 * published by the Free Software Foundation.
jrose@535 8 *
jrose@535 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jrose@535 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jrose@535 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jrose@535 12 * version 2 for more details (a copy is included in the LICENSE file that
jrose@535 13 * accompanied this code).
jrose@535 14 *
jrose@535 15 * You should have received a copy of the GNU General Public License version
jrose@535 16 * 2 along with this work; if not, write to the Free Software Foundation,
jrose@535 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jrose@535 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
jrose@535 22 *
jrose@535 23 */
jrose@535 24
stefank@2314 25 #ifndef SHARE_VM_COMPILER_DISASSEMBLER_HPP
stefank@2314 26 #define SHARE_VM_COMPILER_DISASSEMBLER_HPP
stefank@2314 27
kvn@4107 28 #include "asm/codeBuffer.hpp"
stefank@2314 29 #include "runtime/globals.hpp"
stefank@2314 30 #ifdef TARGET_OS_FAMILY_linux
stefank@2314 31 # include "os_linux.inline.hpp"
stefank@2314 32 #endif
stefank@2314 33 #ifdef TARGET_OS_FAMILY_solaris
stefank@2314 34 # include "os_solaris.inline.hpp"
stefank@2314 35 #endif
stefank@2314 36 #ifdef TARGET_OS_FAMILY_windows
stefank@2314 37 # include "os_windows.inline.hpp"
stefank@2314 38 #endif
never@3156 39 #ifdef TARGET_OS_FAMILY_bsd
never@3156 40 # include "os_bsd.inline.hpp"
never@3156 41 #endif
stefank@2314 42
jrose@535 43 class decode_env;
jrose@535 44
jrose@535 45 // The disassembler prints out assembly code annotated
jrose@535 46 // with Java specific information.
jrose@535 47
jrose@535 48 class Disassembler {
jrose@535 49 friend class decode_env;
jrose@535 50 private:
jrose@535 51 // this is the type of the dll entry point:
minqi@4093 52 typedef void* (*decode_func)(uintptr_t start_va, uintptr_t end_va,
minqi@4093 53 unsigned char* buffer, uintptr_t length,
jrose@535 54 void* (*event_callback)(void*, const char*, void*),
jrose@535 55 void* event_stream,
jrose@535 56 int (*printf_callback)(void*, const char*, ...),
jrose@535 57 void* printf_stream,
jrose@535 58 const char* options);
jrose@535 59 // points to the library.
jrose@535 60 static void* _library;
jrose@535 61 // bailout
jrose@535 62 static bool _tried_to_load_library;
jrose@535 63 // points to the decode function.
jrose@535 64 static decode_func _decode_instructions;
jrose@535 65 // tries to load library and return whether it succedded.
jrose@535 66 static bool load_library();
jrose@535 67
jrose@535 68 // Machine dependent stuff
stefank@2314 69 #ifdef TARGET_ARCH_x86
stefank@2314 70 # include "disassembler_x86.hpp"
stefank@2314 71 #endif
stefank@2314 72 #ifdef TARGET_ARCH_sparc
stefank@2314 73 # include "disassembler_sparc.hpp"
stefank@2314 74 #endif
stefank@2314 75 #ifdef TARGET_ARCH_zero
stefank@2314 76 # include "disassembler_zero.hpp"
stefank@2314 77 #endif
bobv@2508 78 #ifdef TARGET_ARCH_arm
bobv@2508 79 # include "disassembler_arm.hpp"
bobv@2508 80 #endif
bobv@2508 81 #ifdef TARGET_ARCH_ppc
bobv@2508 82 # include "disassembler_ppc.hpp"
bobv@2508 83 #endif
stefank@2314 84
jrose@535 85
jrose@535 86 public:
jrose@535 87 static bool can_decode() {
jrose@535 88 return (_decode_instructions != NULL) || load_library();
jrose@535 89 }
jrose@535 90 static void decode(CodeBlob *cb, outputStream* st = NULL);
jrose@535 91 static void decode(nmethod* nm, outputStream* st = NULL);
kvn@4107 92 static void decode(address begin, address end, outputStream* st = NULL, CodeComments c = CodeComments());
jrose@535 93 };
stefank@2314 94
stefank@2314 95 #endif // SHARE_VM_COMPILER_DISASSEMBLER_HPP

mercurial