src/hotspot/share/compiler/disassembler.hpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 54960 e46fe26d7f77
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51056
diff changeset
     2
 * Copyright (c) 2008, 2019, Oracle and/or its affiliates. All rights reserved.
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
     4
 *
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
     7
 * published by the Free Software Foundation.
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
     8
 *
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    13
 * accompanied this code).
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    14
 *
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 347
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 347
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: 347
diff changeset
    21
 * questions.
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    22
 *
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    23
 */
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51056
diff changeset
    25
#ifndef SHARE_COMPILER_DISASSEMBLER_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51056
diff changeset
    26
#define SHARE_COMPILER_DISASSEMBLER_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    28
#include "utilities/globalDefinitions.hpp"
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    29
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    30
#include "asm/assembler.hpp"
13887
89b873bcc55b 7200163: add CodeComments functionality to assember stubs
kvn
parents: 10565
diff changeset
    31
#include "asm/codeBuffer.hpp"
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    32
#include "compiler/abstractDisassembler.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/globals.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 35830
diff changeset
    34
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    36
class decode_env;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    37
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    38
// The disassembler prints out assembly code annotated
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    39
// with Java specific information.
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    40
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    41
// Disassembler inherits from AbstractDisassembler
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    42
class Disassembler : public AbstractDisassembler {
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    43
  friend class decode_env;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    44
 private:
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    45
  // this is the type of the dll entry point:
14384
801df8025142 8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents: 13897
diff changeset
    46
  typedef void* (*decode_func_virtual)(uintptr_t start_va, uintptr_t end_va,
13873
7b72e3873785 6879063: SA should use hsdis for disassembly
minqi
parents: 10565
diff changeset
    47
                               unsigned char* buffer, uintptr_t length,
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    48
                               void* (*event_callback)(void*, const char*, void*),
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    49
                               void* event_stream,
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    50
                               int (*printf_callback)(void*, const char*, ...),
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    51
                               void* printf_stream,
14384
801df8025142 8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents: 13897
diff changeset
    52
                               const char* options,
801df8025142 8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents: 13897
diff changeset
    53
                               int newline);
801df8025142 8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents: 13897
diff changeset
    54
  // this is the type of the dll entry point for old version:
801df8025142 8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents: 13897
diff changeset
    55
  typedef void* (*decode_func)(void* start_va, void* end_va,
801df8025142 8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents: 13897
diff changeset
    56
                               void* (*event_callback)(void*, const char*, void*),
801df8025142 8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents: 13897
diff changeset
    57
                               void* event_stream,
801df8025142 8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents: 13897
diff changeset
    58
                               int (*printf_callback)(void*, const char*, ...),
801df8025142 8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents: 13897
diff changeset
    59
                               void* printf_stream,
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    60
                               const char* options);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    61
  // points to the library.
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    62
  static void*    _library;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    63
  // bailout
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    64
  static bool     _tried_to_load_library;
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    65
  static bool     _library_usable;
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    66
  // points to the decode function.
14384
801df8025142 8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents: 13897
diff changeset
    67
  static decode_func_virtual _decode_instructions_virtual;
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    68
  static decode_func _decode_instructions;
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    69
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    70
  // tries to load library and return whether it succeeded.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    71
  // Allow (diagnostic) output redirection.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    72
  // No output at all if stream is NULL. Can be overridden
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    73
  // with -Verbose flag, in which case output goes to tty.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    74
  static bool load_library(outputStream* st = NULL);
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    75
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    76
  // Check if the two addresses are on the same page.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    77
  static bool is_same_page(address a1, address a2) {
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    78
    return (((uintptr_t)a1 ^ (uintptr_t)a2) & (~0x0fffUL)) == 0L;
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    79
  }
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    80
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    81
  // Machine dependent stuff
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 35830
diff changeset
    82
#include CPU_HEADER(disassembler)
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    83
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    84
 public:
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    85
  // We can always decode code blobs.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    86
  // Either we have a disassembler library available (successfully loaded)
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    87
  // or we will resort to the abstract disassembler. This method informs
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    88
  // about which decoding format is used.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    89
  // We can also enforce using the abstract disassembler.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    90
  static bool is_abstract() {
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    91
    if (!_tried_to_load_library /* && !UseAbstractDisassembler */) {
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    92
      load_library();
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    93
    }
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    94
    return ! _library_usable /* || UseAbstractDisassembler */;  // Not available until DecodeErrorFile is supported.
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
    95
  }
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    96
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    97
  // Check out if we are doing a live disassembly or a post-mortem
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    98
  // disassembly where the binary data was loaded from a hs_err file.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
    99
  static bool is_decode_error_file() {
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   100
// Activate once post-mortem disassembly (from hs-err file) is available.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   101
#if 0
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   102
    return DecodeErrorFile && (strlen(DecodeErrorFile) != 0);
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   103
#else
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   104
    return false;
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   105
#endif
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   106
  }
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   107
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   108
  // Directly disassemble code buffer.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   109
  static void decode(CodeBuffer* cb, address start, address end, outputStream* st = NULL);
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   110
  // Directly disassemble code blob.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   111
  static void decode(CodeBlob *cb,               outputStream* st = NULL, CodeStrings c = CodeStrings());
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   112
  // Directly disassemble nmethod.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   113
  static void decode(nmethod* nm,                outputStream* st = NULL, CodeStrings c = CodeStrings());
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   114
  // Disassemble an arbitrary memory range.
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   115
  static void decode(address start, address end, outputStream* st = NULL, CodeStrings c = CodeStrings() /* , ptrdiff_t offset */);
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 53244
diff changeset
   116
51056
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   117
  static void _hook(const char* file, int line, class MacroAssembler* masm);
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   118
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   119
  // This functions makes it easy to generate comments in the generated
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   120
  // interpreter code, by riding on the customary __ macro in the interpreter generator.
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   121
  // See templateTable_x86.cpp for an example.
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   122
  template<class T> inline static T* hook(const char* file, int line, T* masm) {
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   123
    if (PrintInterpreter) {
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   124
      _hook(file, line, masm);
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   125
    }
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   126
    return masm;
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50528
diff changeset
   127
  }
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff changeset
   128
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   129
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51056
diff changeset
   130
#endif // SHARE_COMPILER_DISASSEMBLER_HPP