src/hotspot/share/compiler/oopMap.hpp
author never
Wed, 09 Oct 2019 16:35:44 -0700
changeset 58527 f9cc0141574c
parent 54916 7136c9ac56a7
permissions -rw-r--r--
8231586: enlarge encoding space for OopMapValue offsets Reviewed-by: dlong
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48157
diff changeset
     2
 * Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3795
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3795
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: 3795
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48157
diff changeset
    25
#ifndef SHARE_COMPILER_OOPMAP_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48157
diff changeset
    26
#define SHARE_COMPILER_OOPMAP_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "code/compressedStream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "code/vmreg.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/allocation.hpp"
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47799
diff changeset
    31
#include "oops/oopsHierarchy.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Interface for generating the frame map for compiled code.  A frame map
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// describes for a specific pc whether each register and frame stack slot is:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//   Oop         - A GC root for current frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//   Dead        - Dead; can be Zapped for debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//   CalleeXX    - Callee saved; also describes which caller register is saved
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//   DerivedXX   - A derived oop; original oop is described.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// OopMapValue describes a single OopMap entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class RegisterMap;
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47799
diff changeset
    44
class OopClosure;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class OopMapValue: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  short _value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  int value() const                                 { return _value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  void set_value(int value)                         { _value = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  short _content_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Constants
58527
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    56
  enum { type_bits                = 2,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
         register_bits            = BitsPerShort - type_bits };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  enum { type_shift               = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
         register_shift           = type_bits };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  enum { type_mask                = right_n_bits(type_bits),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
         type_mask_in_place       = type_mask << type_shift,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
         register_mask            = right_n_bits(register_bits),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
         register_mask_in_place   = register_mask << register_shift };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
58527
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    67
  enum oop_types {
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    68
         oop_value,
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    69
         narrowoop_value,
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    70
         callee_saved_value,
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    71
         derived_oop_value,
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    72
         unused_value = -1          // Only used as a sentinel value
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    73
  };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // Constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  OopMapValue () { set_value(0); set_content_reg(VMRegImpl::Bad()); }
58527
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    77
  OopMapValue (VMReg reg, oop_types t, VMReg reg2) {
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    78
    set_reg_type(reg, t);
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    79
    set_content_reg(reg2);
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    80
  }
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    81
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    82
 private:
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    83
    void set_reg_type(VMReg p, oop_types t) {
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    84
    set_value((p->value() << register_shift) | t);
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    85
    assert(reg() == p, "sanity check" );
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    86
    assert(type() == t, "sanity check" );
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    87
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
58527
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    89
  void set_content_reg(VMReg r) {
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    90
    if (is_callee_saved()) {
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    91
      // This can never be a stack location, so we don't need to transform it.
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    92
      assert(r->is_reg(), "Trying to callee save a stack location");
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    93
    } else if (is_derived_oop()) {
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    94
      assert (r->is_valid(), "must have a valid VMReg");
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    95
    } else {
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    96
      assert (!r->is_valid(), "valid VMReg not allowed");
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    97
    }
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    98
    _content_reg = r->value();
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
    99
  }
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
   100
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
   101
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // Archiving
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  void write_on(CompressedWriteStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    stream->write_int(value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    if(is_callee_saved() || is_derived_oop()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      stream->write_int(content_reg()->value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  void read_from(CompressedReadStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    set_value(stream->read_int());
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33160
diff changeset
   112
    if (is_callee_saved() || is_derived_oop()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      set_content_reg(VMRegImpl::as_VMReg(stream->read_int(), true));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // Querying
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  bool is_oop()               { return mask_bits(value(), type_mask_in_place) == oop_value; }
58527
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
   119
  bool is_narrowoop()         { return mask_bits(value(), type_mask_in_place) == narrowoop_value; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  bool is_callee_saved()      { return mask_bits(value(), type_mask_in_place) == callee_saved_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  bool is_derived_oop()       { return mask_bits(value(), type_mask_in_place) == derived_oop_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  VMReg reg() const { return VMRegImpl::as_VMReg(mask_bits(value(), register_mask_in_place) >> register_shift); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  oop_types type() const      { return (oop_types)mask_bits(value(), type_mask_in_place); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  static bool legal_vm_reg_name(VMReg p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    return (p->value()  == (p->value() & register_mask));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  VMReg content_reg() const       { return VMRegImpl::as_VMReg(_content_reg, true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // Physical location queries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  bool is_register_loc()      { return reg()->is_reg(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  bool is_stack_loc()         { return reg()->is_stack(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Returns offset from sp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  int stack_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    assert(is_stack_loc(), "must be stack location");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    return reg()->reg2stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 198
diff changeset
   142
  void print_on(outputStream* st) const;
54807
33fe50b6d707 8223626: move print() functions to cpp files
coleenp
parents: 54780
diff changeset
   143
  void print() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
class OopMap: public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  friend class OopMapStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
 private:
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   151
  int  _pc_offset; // offset in the code that this OopMap corresponds to
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   152
  int  _omv_count; // number of OopMapValues in the stream
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  CompressedWriteStream* _write_stream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  debug_only( OopMapValue::oop_types* _locs_used; int _locs_length;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  int omv_count() const                       { return _omv_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  void set_omv_count(int value)               { _omv_count = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  void increment_count()                      { _omv_count++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  CompressedWriteStream* write_stream() const { return _write_stream; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  void set_write_stream(CompressedWriteStream* value) { _write_stream = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  enum DeepCopyToken { _deep_copy_token };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  OopMap(DeepCopyToken, OopMap* source);  // used only by deep_copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
58527
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
   168
  void set_xxx(VMReg reg, OopMapValue::oop_types x, VMReg optional);
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
   169
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  OopMap(int frame_size, int arg_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // pc-offset handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  int offset() const     { return _pc_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  void set_offset(int o) { _pc_offset = o; }
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   176
  int count() const { return _omv_count; }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   177
  int data_size() const  { return write_stream()->position(); }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   178
  address data() const { return write_stream()->buffer(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // Check to avoid double insertion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  debug_only(OopMapValue::oop_types locs_used( int indx ) { return _locs_used[indx]; })
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // Construction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // frame_size units are stack-slots (4 bytes) NOT intptr_t; we can name odd
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // slots to hold 4-byte values like ints and floats in the LP64 build.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  void set_oop  ( VMReg local);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
   187
  void set_narrowoop(VMReg local);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  void set_callee_saved( VMReg local, VMReg caller_machine_register );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void set_derived_oop ( VMReg local, VMReg derived_from_local_register );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  int heap_size() const;
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   192
  void copy_data_to(address addr) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  OopMap* deep_copy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  bool legal_vm_reg_name(VMReg local) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
     return OopMapValue::legal_vm_reg_name(local);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // Printing
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 198
diff changeset
   200
  void print_on(outputStream* st) const;
54807
33fe50b6d707 8223626: move print() functions to cpp files
coleenp
parents: 54780
diff changeset
   201
  void print() const;
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   202
  bool equals(const OopMap* other) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
class OopMapSet : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  int _om_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  int _om_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  OopMap** _om_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  int om_count() const              { return _om_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  void set_om_count(int value)      { _om_count = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  void increment_count()            { _om_count++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  int om_size() const               { return _om_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  void set_om_size(int value)       { _om_size = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  OopMap** om_data() const          { return _om_data; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  void set_om_data(OopMap** value)  { _om_data = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  void grow_om_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  void set(int index,OopMap* value) { assert((index == 0) || ((index > 0) && (index < om_size())),"bad index"); _om_data[index] = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // returns the number of OopMaps in this OopMapSet
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  int size() const            { return _om_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // returns the OopMap at a given index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  OopMap* at(int index) const { assert((index >= 0) && (index <= om_count()),"bad index"); return _om_data[index]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // Collect OopMaps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  void add_gc_map(int pc, OopMap* map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Returns the only oop map. Used for reconstructing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // Adapter frames during deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  OopMap* singular_oop_map();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  // returns OopMap in that is anchored to the pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  OopMap* find_map_at_offset(int pc_offset) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  int heap_size() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
3275
bd2023eeea0a 6826736: CMS: core dump with -XX:+UseCompressedOops
kvn
parents: 953
diff changeset
   243
  // Methods oops_do() and all_do() filter out NULL oops and
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 53244
diff changeset
   244
  // oop == CompressedOops::base() before passing oops
3275
bd2023eeea0a 6826736: CMS: core dump with -XX:+UseCompressedOops
kvn
parents: 953
diff changeset
   245
  // to closures.
bd2023eeea0a 6826736: CMS: core dump with -XX:+UseCompressedOops
kvn
parents: 953
diff changeset
   246
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // Iterates through frame for a compiled method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  static void oops_do            (const frame* fr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
                                  const RegisterMap* reg_map, OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  static void update_register_map(const frame* fr, RegisterMap *reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  // Iterates through frame for a compiled method for dead ones and values, too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  static void all_do(const frame* fr, const RegisterMap* reg_map,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
                     OopClosure* oop_fn,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                     void derived_oop_fn(oop* base, oop* derived),
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
   256
                     OopClosure* value_fn);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // Printing
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 198
diff changeset
   259
  void print_on(outputStream* st) const;
54807
33fe50b6d707 8223626: move print() functions to cpp files
coleenp
parents: 54780
diff changeset
   260
  void print() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   263
class ImmutableOopMapBuilder;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   264
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   265
class ImmutableOopMap {
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   266
  friend class OopMapStream;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   267
  friend class VMStructs;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   268
#ifdef ASSERT
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   269
  friend class ImmutableOopMapBuilder;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   270
#endif
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   271
private:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   272
  int _count; // contains the number of entries in this OopMap
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   273
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   274
  address data_addr() const { return (address) this + sizeof(ImmutableOopMap); }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   275
public:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   276
  ImmutableOopMap(const OopMap* oopmap);
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   277
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   278
  int count() const { return _count; }
30774
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   279
#ifdef ASSERT
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   280
  int nr_of_bytes() const; // this is an expensive operation, only used in debug builds
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   281
#endif
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   282
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   283
  // Printing
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   284
  void print_on(outputStream* st) const;
54807
33fe50b6d707 8223626: move print() functions to cpp files
coleenp
parents: 54780
diff changeset
   285
  void print() const;
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   286
};
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   287
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   288
class ImmutableOopMapSet;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   289
class ImmutableOopMap;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   290
class OopMapSet;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   291
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   292
class ImmutableOopMapPair {
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   293
  friend class VMStructs;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   294
private:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   295
  int _pc_offset; // program counter offset from the beginning of the method
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   296
  int _oopmap_offset; // offset in the data in the ImmutableOopMapSet where the ImmutableOopMap is located
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   297
public:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   298
  ImmutableOopMapPair(int pc_offset, int oopmap_offset) : _pc_offset(pc_offset), _oopmap_offset(oopmap_offset) {
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   299
    assert(pc_offset >= 0 && oopmap_offset >= 0, "check");
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   300
  }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   301
  const ImmutableOopMap* get_from(const ImmutableOopMapSet* set) const;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   302
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   303
  int pc_offset() const { return _pc_offset; }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   304
  int oopmap_offset() const { return _oopmap_offset; }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   305
};
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   306
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   307
class ImmutableOopMapSet {
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   308
  friend class VMStructs;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   309
private:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   310
  int _count; // nr of ImmutableOopMapPairs in the Set
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   311
  int _size; // nr of bytes including ImmutableOopMapSet itself
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   312
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   313
  address data() const { return (address) this + sizeof(*this) + sizeof(ImmutableOopMapPair) * _count; }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   314
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   315
public:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   316
  ImmutableOopMapSet(const OopMapSet* oopmap_set, int size) : _count(oopmap_set->size()), _size(size) {}
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   317
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   318
  ImmutableOopMap* oopmap_at_offset(int offset) const {
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   319
    assert(offset >= 0 && offset < _size, "must be within boundaries");
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   320
    address addr = data() + offset;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   321
    return (ImmutableOopMap*) addr;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   322
  }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   323
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   324
  ImmutableOopMapPair* get_pairs() const { return (ImmutableOopMapPair*) ((address) this + sizeof(*this)); }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   325
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   326
  static ImmutableOopMapSet* build_from(const OopMapSet* oopmap_set);
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   327
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   328
  const ImmutableOopMap* find_map_at_offset(int pc_offset) const;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   329
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   330
  const ImmutableOopMapPair* pair_at(int index) const { assert(index >= 0 && index < _count, "check"); return &get_pairs()[index]; }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   331
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   332
  int count() const { return _count; }
30628
3c15b4a3bf4d 8079797: assert(index >= 0 && index < _count) failed: check
rbackman
parents: 30590
diff changeset
   333
  int nr_of_bytes() const { return _size; }
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   334
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   335
  void print_on(outputStream* st) const;
54807
33fe50b6d707 8223626: move print() functions to cpp files
coleenp
parents: 54780
diff changeset
   336
  void print() const;
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   337
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
class OopMapStream : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  CompressedReadStream* _stream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  int _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  int _position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  bool _valid_omv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  OopMapValue _omv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  void find_next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
 public:
58527
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
   349
  OopMapStream(OopMap* oop_map);
f9cc0141574c 8231586: enlarge encoding space for OopMapValue offsets
never
parents: 54916
diff changeset
   350
  OopMapStream(const ImmutableOopMap* oop_map);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  bool is_done()                        { if(!_valid_omv) { find_next(); } return !_valid_omv; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  void next()                           { find_next(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  OopMapValue current()                 { return _omv; }
30774
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   354
#ifdef ASSERT
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   355
  int stream_position() const           { return _stream->position(); }
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   356
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   359
class ImmutableOopMapBuilder {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   360
private:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   361
  class Mapping;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   362
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   363
private:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   364
  const OopMapSet* _set;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   365
  const OopMap* _empty;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   366
  const OopMap* _last;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   367
  int _empty_offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   368
  int _last_offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   369
  int _offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   370
  int _required;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   371
  Mapping* _mapping;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   372
  ImmutableOopMapSet* _new_set;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   373
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   374
  /* Used for bookkeeping when building ImmutableOopMaps */
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   375
  class Mapping : public ResourceObj {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   376
  public:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   377
    enum kind_t { OOPMAP_UNKNOWN = 0, OOPMAP_NEW = 1, OOPMAP_EMPTY = 2, OOPMAP_DUPLICATE = 3 };
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   378
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   379
    kind_t _kind;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   380
    int _offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   381
    int _size;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   382
    const OopMap* _map;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   383
    const OopMap* _other;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   384
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   385
    Mapping() : _kind(OOPMAP_UNKNOWN), _offset(-1), _size(-1), _map(NULL) {}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   386
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   387
    void set(kind_t kind, int offset, int size, const OopMap* map = 0, const OopMap* other = 0) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   388
      _kind = kind;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   389
      _offset = offset;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   390
      _size = size;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   391
      _map = map;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   392
      _other = other;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   393
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   394
  };
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   395
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   396
public:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   397
  ImmutableOopMapBuilder(const OopMapSet* set);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   398
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   399
  int heap_size();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   400
  ImmutableOopMapSet* build();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   401
  ImmutableOopMapSet* generate_into(address buffer);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   402
private:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   403
  bool is_empty(const OopMap* map) const {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   404
    return map->count() == 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   405
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   406
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   407
  bool is_last_duplicate(const OopMap* map) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   408
    if (_last != NULL && _last->count() > 0 && _last->equals(map)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   409
      return true;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   410
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   411
    return false;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   412
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   413
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   414
#ifdef ASSERT
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   415
  void verify(address buffer, int size, const ImmutableOopMapSet* set);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   416
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   417
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   418
  bool has_empty() const {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   419
    return _empty_offset != -1;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   420
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   421
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   422
  int size_for(const OopMap* map) const;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   423
  void fill_pair(ImmutableOopMapPair* pair, const OopMap* map, int offset, const ImmutableOopMapSet* set);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   424
  int fill_map(ImmutableOopMapPair* pair, const OopMap* map, int offset, const ImmutableOopMapSet* set);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   425
  void fill(ImmutableOopMapSet* set, int size);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   426
};
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   427
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
// Derived pointer support. This table keeps track of all derived points on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
// stack.  It is cleared before each scavenge/GC.  During the traversal of all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
// oops, it is filled in with references to all locations that contains a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
// derived oop (assumed to be very few).  When the GC is complete, the derived
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
// pointers are updated based on their base pointers new value and an offset.
47799
1772ebf07d1f 8152470: Add COMPILER2_OR_JVMCI definition
jcm
parents: 47216
diff changeset
   434
#if COMPILER2_OR_JVMCI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
class DerivedPointerTable : public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
 private:
54916
7136c9ac56a7 8160539: Stack frame scanning acquires DerivedPointerTableGC_lock mutex
kbarrett
parents: 54807
diff changeset
   438
  class Entry;
7136c9ac56a7 8160539: Stack frame scanning acquires DerivedPointerTableGC_lock mutex
kbarrett
parents: 54807
diff changeset
   439
  static bool _active;                      // do not record pointers for verify pass etc.
7136c9ac56a7 8160539: Stack frame scanning acquires DerivedPointerTableGC_lock mutex
kbarrett
parents: 54807
diff changeset
   440
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  static void clear();                       // Called before scavenge/GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  static void add(oop *derived, oop *base);  // Called during scavenge/GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  static void update_pointers();             // Called after  scavenge/GC
54916
7136c9ac56a7 8160539: Stack frame scanning acquires DerivedPointerTableGC_lock mutex
kbarrett
parents: 54807
diff changeset
   445
  static bool is_empty();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  static bool is_active()                    { return _active; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  static void set_active(bool value)         { _active = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
// A utility class to temporarily "deactivate" the DerivedPointerTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
// (Note: clients are responsible for any MT-safety issues)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
class DerivedPointerTableDeactivate: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  bool _active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  DerivedPointerTableDeactivate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    _active = DerivedPointerTable::is_active();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      DerivedPointerTable::set_active(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  ~DerivedPointerTableDeactivate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    assert(!DerivedPointerTable::is_active(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
           "Inconsistency: not MT-safe");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
      DerivedPointerTable::set_active(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
};
47799
1772ebf07d1f 8152470: Add COMPILER2_OR_JVMCI definition
jcm
parents: 47216
diff changeset
   471
#endif // COMPILER2_OR_JVMCI
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   472
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48157
diff changeset
   473
#endif // SHARE_COMPILER_OOPMAP_HPP