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

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

mercurial