hotspot/src/share/vm/jvmci/jvmciCodeInstaller.hpp
author coleenp
Wed, 15 Feb 2017 22:59:57 -0500
changeset 46271 979ebd346ecf
parent 42861 1d4dfdf4390b
child 46289 1904e7ec236e
permissions -rw-r--r--
8169881: Remove implicit Handle conversions oop->Handle Summary: Pass THREAD to Handle as argument instead of implicit Thread::current() call. Reviewed-by: dholmes, sspitsyn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     1
/*
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42861
diff changeset
     2
 * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     4
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     8
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    13
 * accompanied this code).
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    14
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    18
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    21
 * questions.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    22
 */
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    23
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    24
#ifndef SHARE_VM_JVMCI_JVMCI_CODE_INSTALLER_HPP
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    25
#define SHARE_VM_JVMCI_JVMCI_CODE_INSTALLER_HPP
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    26
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    27
#include "jvmci/jvmciCompiler.hpp"
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    28
#include "jvmci/jvmciEnv.hpp"
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    29
#include "code/nativeInst.hpp"
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    30
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    31
class RelocBuffer : public StackObj {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    32
  enum { stack_size = 1024 };
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    33
public:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    34
  RelocBuffer() : _size(0), _buffer(0) {}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    35
  ~RelocBuffer();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    36
  void ensure_size(size_t bytes);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    37
  void set_size(size_t bytes);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    38
  address begin() const;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    39
  size_t size() const { return _size; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    40
private:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    41
  size_t _size;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    42
  char _static_buffer[stack_size];
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    43
  char *_buffer;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    44
};
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    45
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    46
class AOTOopRecorder : public OopRecorder {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    47
public:
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    48
  AOTOopRecorder(Arena* arena = NULL, bool deduplicate = false);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    49
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    50
  virtual int find_index(Metadata* h);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    51
  virtual int find_index(jobject h);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    52
  int nr_meta_strings() const;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    53
  const char* meta_element(int pos) const;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    54
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    55
private:
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    56
  void record_meta_string(const char* name, int index);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    57
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    58
  GrowableArray<const char*>* _meta_strings;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    59
};
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    60
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    61
class CodeMetadata {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    62
public:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    63
  CodeMetadata() {}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    64
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    65
  CodeBlob* get_code_blob() const { return _cb; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    66
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    67
  PcDesc* get_pc_desc() const { return _pc_desc; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    68
  int get_nr_pc_desc() const { return _nr_pc_desc; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    69
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    70
  u_char* get_scopes_desc() const { return _scopes_desc; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    71
  int get_scopes_size() const { return _nr_scopes_desc; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    72
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    73
  RelocBuffer* get_reloc_buffer() { return &_reloc_buffer; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    74
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    75
  AOTOopRecorder* get_oop_recorder() { return _oop_recorder; }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    76
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    77
  ExceptionHandlerTable* get_exception_table() { return _exception_table; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    78
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    79
  void set_pc_desc(PcDesc* desc, int count) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    80
    _pc_desc = desc;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    81
    _nr_pc_desc = count;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    82
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    83
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    84
  void set_scopes(u_char* scopes, int size) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    85
    _scopes_desc = scopes;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    86
    _nr_scopes_desc = size;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    87
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    88
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    89
  void set_oop_recorder(AOTOopRecorder* recorder) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    90
    _oop_recorder = recorder;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    91
  }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
    92
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    93
  void set_exception_table(ExceptionHandlerTable* table) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    94
    _exception_table = table;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    95
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    96
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    97
private:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    98
  CodeBlob* _cb;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    99
  PcDesc* _pc_desc;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   100
  int _nr_pc_desc;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   101
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   102
  u_char* _scopes_desc;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   103
  int _nr_scopes_desc;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   104
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   105
  RelocBuffer _reloc_buffer;
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   106
  AOTOopRecorder* _oop_recorder;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   107
  ExceptionHandlerTable* _exception_table;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   108
};
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   109
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   110
/*
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   111
 * This class handles the conversion from a InstalledCode to a CodeBlob or an nmethod.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   112
 */
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   113
class CodeInstaller : public StackObj {
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 34502
diff changeset
   114
  friend class JVMCIVMStructs;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   115
private:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   116
  enum MarkId {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   117
    VERIFIED_ENTRY                         = 1,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   118
    UNVERIFIED_ENTRY                       = 2,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   119
    OSR_ENTRY                              = 3,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   120
    EXCEPTION_HANDLER_ENTRY                = 4,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   121
    DEOPT_HANDLER_ENTRY                    = 5,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   122
    INVOKEINTERFACE                        = 6,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   123
    INVOKEVIRTUAL                          = 7,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   124
    INVOKESTATIC                           = 8,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   125
    INVOKESPECIAL                          = 9,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   126
    INLINE_INVOKE                          = 10,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   127
    POLL_NEAR                              = 11,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   128
    POLL_RETURN_NEAR                       = 12,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   129
    POLL_FAR                               = 13,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   130
    POLL_RETURN_FAR                        = 14,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   131
    CARD_TABLE_ADDRESS                     = 15,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   132
    CARD_TABLE_SHIFT                       = 16,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   133
    HEAP_TOP_ADDRESS                       = 17,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   134
    HEAP_END_ADDRESS                       = 18,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   135
    NARROW_KLASS_BASE_ADDRESS              = 19,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   136
    CRC_TABLE_ADDRESS                      = 20,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   137
    LOG_OF_HEAP_REGION_GRAIN_BYTES         = 21,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   138
    INLINE_CONTIGUOUS_ALLOCATION_SUPPORTED = 22,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   139
    INVOKE_INVALID                         = -1
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   140
  };
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   141
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   142
  Arena         _arena;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   143
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   144
  jobject       _data_section_handle;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   145
  jobject       _data_section_patches_handle;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   146
  jobject       _sites_handle;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   147
  CodeOffsets   _offsets;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   148
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   149
  jobject       _code_handle;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   150
  jint          _code_size;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   151
  jint          _total_frame_size;
35823
59a847ec6ee3 8146608: [JVMCI] DebugInfo Tests on DeoptimizeALot runs fails in assert(_pc == *pc_addr || pc == *pc_addr) frame::patch_pc() /frame_x86.cpp:285
rschatz
parents: 35582
diff changeset
   152
  jint          _orig_pc_offset;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   153
  jint          _parameter_count;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   154
  jint          _constants_size;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   155
#ifndef PRODUCT
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   156
  jobject       _comments_handle;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   157
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   158
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   159
  bool          _has_wide_vector;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   160
  jobject       _word_kind_handle;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   161
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   162
  MarkId        _next_call_type;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   163
  address       _invoke_mark_pc;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   164
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   165
  CodeSection*  _instructions;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   166
  CodeSection*  _constants;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   167
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   168
  OopRecorder*              _oop_recorder;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   169
  DebugInformationRecorder* _debug_recorder;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   170
  Dependencies*             _dependencies;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   171
  ExceptionHandlerTable     _exception_handler_table;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   172
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   173
  bool _immutable_pic_compilation;  // Installer is called for Immutable PIC compilation.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   174
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   175
  static ConstantOopWriteValue* _oop_null_scope_value;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   176
  static ConstantIntValue*    _int_m1_scope_value;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   177
  static ConstantIntValue*    _int_0_scope_value;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   178
  static ConstantIntValue*    _int_1_scope_value;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   179
  static ConstantIntValue*    _int_2_scope_value;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   180
  static LocationValue*       _illegal_value;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   181
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   182
  jint pd_next_offset(NativeInstruction* inst, jint pc_offset, Handle method, TRAPS);
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   183
  void pd_patch_OopConstant(int pc_offset, Handle constant, TRAPS);
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   184
  void pd_patch_MetaspaceConstant(int pc_offset, Handle constant, TRAPS);
36063
96e86c7f8fec 8149689: [JVMCI] CodeInstaller::pd_patch_DataSectionReference should be able to throw exceptions
twisti
parents: 35823
diff changeset
   185
  void pd_patch_DataSectionReference(int pc_offset, int data_offset, TRAPS);
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   186
  void pd_relocate_ForeignCall(NativeInstruction* inst, jlong foreign_call_destination, TRAPS);
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   187
  void pd_relocate_JavaMethod(Handle method, jint pc_offset, TRAPS);
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   188
  void pd_relocate_poll(address pc, jint mark, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   189
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   190
  objArrayOop sites() { return (objArrayOop) JNIHandles::resolve(_sites_handle); }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   191
  arrayOop code() { return (arrayOop) JNIHandles::resolve(_code_handle); }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   192
  arrayOop data_section() { return (arrayOop) JNIHandles::resolve(_data_section_handle); }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   193
  objArrayOop data_section_patches() { return (objArrayOop) JNIHandles::resolve(_data_section_patches_handle); }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   194
#ifndef PRODUCT
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   195
  objArrayOop comments() { return (objArrayOop) JNIHandles::resolve(_comments_handle); }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   196
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   197
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   198
  oop word_kind() { return (oop) JNIHandles::resolve(_word_kind_handle); }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   199
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   200
public:
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   201
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41697
diff changeset
   202
  CodeInstaller(bool immutable_pic_compilation) : _arena(mtCompiler), _immutable_pic_compilation(immutable_pic_compilation) {}
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   203
34165
66826441022f 8142329: [JVMCI] pass Handle by value
twisti
parents: 34153
diff changeset
   204
  JVMCIEnv::CodeInstallResult gather_metadata(Handle target, Handle compiled_code, CodeMetadata& metadata, TRAPS);
66826441022f 8142329: [JVMCI] pass Handle by value
twisti
parents: 34153
diff changeset
   205
  JVMCIEnv::CodeInstallResult install(JVMCICompiler* compiler, Handle target, Handle compiled_code, CodeBlob*& cb, Handle installed_code, Handle speculation_log, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   206
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   207
  static address runtime_call_target_address(oop runtime_call);
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   208
  static VMReg get_hotspot_reg(jint jvmciRegisterNumber, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   209
  static bool is_general_purpose_reg(VMReg hotspotRegister);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   210
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   211
  const OopMapSet* oopMapSet() const { return _debug_recorder->_oopmaps; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   212
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   213
protected:
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42861
diff changeset
   214
  Location::Type get_oop_type(Thread* thread, Handle value);
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   215
  ScopeValue* get_scope_value(Handle value, BasicType type, GrowableArray<ScopeValue*>* objects, ScopeValue* &second, TRAPS);
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   216
  MonitorValue* get_monitor_value(Handle value, GrowableArray<ScopeValue*>* objects, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   217
41697
94ef14db8a20 8166869: [JVMCI] record metadata relocations for metadata references
never
parents: 36842
diff changeset
   218
  void* record_metadata_reference(CodeSection* section, address dest, Handle constant, TRAPS);
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   219
#ifdef _LP64
41697
94ef14db8a20 8166869: [JVMCI] record metadata relocations for metadata references
never
parents: 36842
diff changeset
   220
  narrowKlass record_narrow_metadata_reference(CodeSection* section, address dest, Handle constant, TRAPS);
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   221
#endif
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   222
35582
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents: 35123
diff changeset
   223
  // extract the fields of the HotSpotCompiledCode
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   224
  void initialize_fields(oop target, oop target_method, TRAPS);
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   225
  void initialize_dependencies(oop target_method, OopRecorder* oop_recorder, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   226
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   227
  int estimate_stubs_size(TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   228
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   229
  // perform data and call relocation on the CodeBuffer
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   230
  JVMCIEnv::CodeInstallResult initialize_buffer(CodeBuffer& buffer, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   231
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42861
diff changeset
   232
  void assumption_NoFinalizableSubclass(Thread* thread, Handle assumption);
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42861
diff changeset
   233
  void assumption_ConcreteSubtype(Thread* thread, Handle assumption);
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42861
diff changeset
   234
  void assumption_LeafType(Thread* thread, Handle assumption);
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42861
diff changeset
   235
  void assumption_ConcreteMethod(Thread* thread, Handle assumption);
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42861
diff changeset
   236
  void assumption_CallSiteTargetValue(Thread* thread, Handle assumption);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   237
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   238
  void site_Safepoint(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS);
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   239
  void site_Infopoint(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS);
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   240
  void site_Call(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS);
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   241
  void site_DataPatch(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS);
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   242
  void site_Mark(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS);
35582
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents: 35123
diff changeset
   243
  void site_ExceptionHandler(jint pc_offset, Handle site);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   244
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   245
  OopMap* create_oop_map(Handle debug_info, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   246
34502
1cfcb971cb17 8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents: 34165
diff changeset
   247
  /**
1cfcb971cb17 8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents: 34165
diff changeset
   248
   * Specifies the level of detail to record for a scope.
1cfcb971cb17 8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents: 34165
diff changeset
   249
   */
1cfcb971cb17 8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents: 34165
diff changeset
   250
  enum ScopeMode {
1cfcb971cb17 8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents: 34165
diff changeset
   251
    // Only record a method and BCI
1cfcb971cb17 8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents: 34165
diff changeset
   252
    BytecodePosition,
1cfcb971cb17 8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents: 34165
diff changeset
   253
    // Record a method, bci and JVM frame state
1cfcb971cb17 8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents: 34165
diff changeset
   254
    FullFrame
1cfcb971cb17 8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents: 34165
diff changeset
   255
  };
1cfcb971cb17 8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents: 34165
diff changeset
   256
42861
1d4dfdf4390b 8169938: [AOT] SIGSEGV at ~BufferBlob::vtable chunks
dlong
parents: 42650
diff changeset
   257
  void record_scope(jint pc_offset, Handle debug_info, ScopeMode scope_mode, bool return_oop, TRAPS);
1d4dfdf4390b 8169938: [AOT] SIGSEGV at ~BufferBlob::vtable chunks
dlong
parents: 42650
diff changeset
   258
  void record_scope(jint pc_offset, Handle debug_info, ScopeMode scope_mode, TRAPS) {
1d4dfdf4390b 8169938: [AOT] SIGSEGV at ~BufferBlob::vtable chunks
dlong
parents: 42650
diff changeset
   259
    record_scope(pc_offset, debug_info, scope_mode, false /* return_oop */, THREAD);
1d4dfdf4390b 8169938: [AOT] SIGSEGV at ~BufferBlob::vtable chunks
dlong
parents: 42650
diff changeset
   260
  }
1d4dfdf4390b 8169938: [AOT] SIGSEGV at ~BufferBlob::vtable chunks
dlong
parents: 42650
diff changeset
   261
  void record_scope(jint pc_offset, Handle position, ScopeMode scope_mode, GrowableArray<ScopeValue*>* objects, bool return_oop, TRAPS);
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   262
  void record_object_value(ObjectValue* sv, Handle value, GrowableArray<ScopeValue*>* objects, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   263
34153
cbcfa2a6fe0b 8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents: 33632
diff changeset
   264
  GrowableArray<ScopeValue*>* record_virtual_objects(Handle debug_info, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   265
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   266
  int estimateStubSpace(int static_call_stubs);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   267
};
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   268
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   269
/**
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   270
 * Gets the Method metaspace object from a HotSpotResolvedJavaMethodImpl Java object.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   271
 */
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   272
Method* getMethodFromHotSpotMethod(oop hotspot_method);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   273
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   274
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   275
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   276
#endif // SHARE_VM_JVMCI_JVMCI_CODE_INSTALLER_HPP