hotspot/src/share/vm/compiler/oopMap.hpp
author rbackman
Thu, 21 May 2015 18:10:18 +0200
changeset 30774 6745424a720f
parent 30628 3c15b4a3bf4d
child 33063 9e222337a81e
permissions -rw-r--r--
8080692: lots of jstack tests failing in pit Reviewed-by: kvn, vlivanov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 1998, 2010, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_COMPILER_OOPMAP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_COMPILER_OOPMAP_HPP
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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "utilities/growableArray.hpp"
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
//   Value       - Live non-oop, non-float value: int, either half of double
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//   Dead        - Dead; can be Zapped for debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//   CalleeXX    - Callee saved; also describes which caller register is saved
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//   DerivedXX   - A derived oop; original oop is described.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// OopMapValue describes a single OopMap entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class RegisterMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class DerivedPointerEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class OopMapValue: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  short _value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  int value() const                                 { return _value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  void set_value(int value)                         { _value = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  short _content_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // Constants
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 360
diff changeset
    57
  enum { type_bits                = 5,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
         register_bits            = BitsPerShort - type_bits };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  enum { type_shift               = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
         register_shift           = type_bits };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  enum { type_mask                = right_n_bits(type_bits),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
         type_mask_in_place       = type_mask << type_shift,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
         register_mask            = right_n_bits(register_bits),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
         register_mask_in_place   = register_mask << register_shift };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  enum oop_types {              // must fit in type_bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
         unused_value =0,       // powers of 2, for masking OopMapStream
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
         oop_value = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
         value_value = 2,
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
    72
         narrowoop_value = 4,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
         callee_saved_value = 8,
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 360
diff changeset
    74
         derived_oop_value= 16 };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  OopMapValue () { set_value(0); set_content_reg(VMRegImpl::Bad()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  OopMapValue (VMReg reg, oop_types t) { set_reg_type(reg,t); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  OopMapValue (VMReg reg, oop_types t, VMReg reg2) { set_reg_type(reg,t); set_content_reg(reg2); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  OopMapValue (CompressedReadStream* stream) { read_from(stream); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Archiving
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  void write_on(CompressedWriteStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    stream->write_int(value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    if(is_callee_saved() || is_derived_oop()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      stream->write_int(content_reg()->value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  void read_from(CompressedReadStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    set_value(stream->read_int());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    if(is_callee_saved() || is_derived_oop()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
      set_content_reg(VMRegImpl::as_VMReg(stream->read_int(), true));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // Querying
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  bool is_oop()               { return mask_bits(value(), type_mask_in_place) == oop_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  bool is_value()             { return mask_bits(value(), type_mask_in_place) == value_value; }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
   100
  bool is_narrowoop()           { return mask_bits(value(), type_mask_in_place) == narrowoop_value; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  bool is_callee_saved()      { return mask_bits(value(), type_mask_in_place) == callee_saved_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  bool is_derived_oop()       { return mask_bits(value(), type_mask_in_place) == derived_oop_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  void set_oop()              { set_value((value() & register_mask_in_place) | oop_value); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  void set_value()            { set_value((value() & register_mask_in_place) | value_value); }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
   106
  void set_narrowoop()          { set_value((value() & register_mask_in_place) | narrowoop_value); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  void set_callee_saved()     { set_value((value() & register_mask_in_place) | callee_saved_value); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  void set_derived_oop()      { set_value((value() & register_mask_in_place) | derived_oop_value); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  VMReg reg() const { return VMRegImpl::as_VMReg(mask_bits(value(), register_mask_in_place) >> register_shift); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  oop_types type() const      { return (oop_types)mask_bits(value(), type_mask_in_place); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static bool legal_vm_reg_name(VMReg p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    return (p->value()  == (p->value() & register_mask));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  void set_reg_type(VMReg p, oop_types t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    set_value((p->value() << register_shift) | t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    assert(reg() == p, "sanity check" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    assert(type() == t, "sanity check" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  VMReg content_reg() const       { return VMRegImpl::as_VMReg(_content_reg, true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  void set_content_reg(VMReg r)   { _content_reg = r->value(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Physical location queries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  bool is_register_loc()      { return reg()->is_reg(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  bool is_stack_loc()         { return reg()->is_stack(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // Returns offset from sp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  int stack_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    assert(is_stack_loc(), "must be stack location");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    return reg()->reg2stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 198
diff changeset
   137
  void print_on(outputStream* st) const;
198
8601165a33c3 6621094: PrintOptoAssembly is broken for oops information in DebugInfo
kvn
parents: 1
diff changeset
   138
  void print() const { print_on(tty); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
class OopMap: public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  friend class OopMapStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
 private:
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   146
  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
   147
  int  _omv_count; // number of OopMapValues in the stream
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  CompressedWriteStream* _write_stream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  debug_only( OopMapValue::oop_types* _locs_used; int _locs_length;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  int omv_count() const                       { return _omv_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  void set_omv_count(int value)               { _omv_count = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  void increment_count()                      { _omv_count++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  CompressedWriteStream* write_stream() const { return _write_stream; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  void set_write_stream(CompressedWriteStream* value) { _write_stream = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  enum DeepCopyToken { _deep_copy_token };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  OopMap(DeepCopyToken, OopMap* source);  // used only by deep_copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  OopMap(int frame_size, int arg_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // pc-offset handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  int offset() const     { return _pc_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  void set_offset(int o) { _pc_offset = o; }
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   169
  int count() const { return _omv_count; }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   170
  int data_size() const  { return write_stream()->position(); }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   171
  address data() const { return write_stream()->buffer(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // Check to avoid double insertion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  debug_only(OopMapValue::oop_types locs_used( int indx ) { return _locs_used[indx]; })
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Construction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // frame_size units are stack-slots (4 bytes) NOT intptr_t; we can name odd
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // slots to hold 4-byte values like ints and floats in the LP64 build.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  void set_oop  ( VMReg local);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  void set_value( VMReg local);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
   181
  void set_narrowoop(VMReg local);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  void set_dead ( VMReg local);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  void set_callee_saved( VMReg local, VMReg caller_machine_register );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  void set_derived_oop ( VMReg local, VMReg derived_from_local_register );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void set_xxx(VMReg reg, OopMapValue::oop_types x, VMReg optional);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  int heap_size() const;
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   188
  void copy_data_to(address addr) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  OopMap* deep_copy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  bool legal_vm_reg_name(VMReg local) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
     return OopMapValue::legal_vm_reg_name(local);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // Printing
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 198
diff changeset
   196
  void print_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  void print() const { print_on(tty); }
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   198
  bool equals(const OopMap* other) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
class OopMapSet : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  int _om_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  int _om_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  OopMap** _om_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  int om_count() const              { return _om_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  void set_om_count(int value)      { _om_count = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  void increment_count()            { _om_count++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  int om_size() const               { return _om_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  void set_om_size(int value)       { _om_size = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  OopMap** om_data() const          { return _om_data; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  void set_om_data(OopMap** value)  { _om_data = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  void grow_om_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  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
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // returns the number of OopMaps in this OopMapSet
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  int size() const            { return _om_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // returns the OopMap at a given index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  OopMap* at(int index) const { assert((index >= 0) && (index <= om_count()),"bad index"); return _om_data[index]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Collect OopMaps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  void add_gc_map(int pc, OopMap* map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // Returns the only oop map. Used for reconstructing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // Adapter frames during deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  OopMap* singular_oop_map();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // returns OopMap in that is anchored to the pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  OopMap* find_map_at_offset(int pc_offset) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  int heap_size() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
3275
bd2023eeea0a 6826736: CMS: core dump with -XX:+UseCompressedOops
kvn
parents: 953
diff changeset
   239
  // Methods oops_do() and all_do() filter out NULL oops and
bd2023eeea0a 6826736: CMS: core dump with -XX:+UseCompressedOops
kvn
parents: 953
diff changeset
   240
  // oop == Universe::narrow_oop_base() before passing oops
bd2023eeea0a 6826736: CMS: core dump with -XX:+UseCompressedOops
kvn
parents: 953
diff changeset
   241
  // to closures.
bd2023eeea0a 6826736: CMS: core dump with -XX:+UseCompressedOops
kvn
parents: 953
diff changeset
   242
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // Iterates through frame for a compiled method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  static void oops_do            (const frame* fr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
                                  const RegisterMap* reg_map, OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  static void update_register_map(const frame* fr, RegisterMap *reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // Iterates through frame for a compiled method for dead ones and values, too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  static void all_do(const frame* fr, const RegisterMap* reg_map,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
                     OopClosure* oop_fn,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
                     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
   252
                     OopClosure* value_fn);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // Printing
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 198
diff changeset
   255
  void print_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  void print() const { print_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   259
class ImmutableOopMapBuilder;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   260
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   261
class ImmutableOopMap {
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   262
  friend class OopMapStream;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   263
  friend class VMStructs;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   264
#ifdef ASSERT
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   265
  friend class ImmutableOopMapBuilder;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   266
#endif
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   267
private:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   268
  int _count; // contains the number of entries in this OopMap
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   269
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   270
  address data_addr() const { return (address) this + sizeof(ImmutableOopMap); }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   271
public:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   272
  ImmutableOopMap(const OopMap* 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
  bool has_derived_pointer() const PRODUCT_RETURN0;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   275
  int count() const { return _count; }
30774
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   276
#ifdef ASSERT
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   277
  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
   278
#endif
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   279
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   280
  // Printing
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   281
  void print_on(outputStream* st) const;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   282
  void print() const { print_on(tty); }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   283
};
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   284
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   285
class ImmutableOopMapSet;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   286
class ImmutableOopMap;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   287
class OopMapSet;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   288
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   289
class ImmutableOopMapPair {
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   290
  friend class VMStructs;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   291
private:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   292
  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
   293
  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
   294
public:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   295
  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
   296
    assert(pc_offset >= 0 && oopmap_offset >= 0, "check");
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   297
  }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   298
  const ImmutableOopMap* get_from(const ImmutableOopMapSet* set) const;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   299
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   300
  int pc_offset() const { return _pc_offset; }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   301
  int oopmap_offset() const { return _oopmap_offset; }
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
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   304
class ImmutableOopMapSet {
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   305
  friend class VMStructs;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   306
private:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   307
  int _count; // nr of ImmutableOopMapPairs in the Set
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   308
  int _size; // nr of bytes including ImmutableOopMapSet itself
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   309
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   310
  address data() const { return (address) this + sizeof(*this) + sizeof(ImmutableOopMapPair) * _count; }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   311
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   312
public:
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   313
  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
   314
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   315
  ImmutableOopMap* oopmap_at_offset(int offset) const {
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   316
    assert(offset >= 0 && offset < _size, "must be within boundaries");
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   317
    address addr = data() + offset;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   318
    return (ImmutableOopMap*) addr;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   319
  }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   320
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   321
  ImmutableOopMapPair* get_pairs() const { return (ImmutableOopMapPair*) ((address) this + sizeof(*this)); }
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
  static ImmutableOopMapSet* build_from(const OopMapSet* oopmap_set);
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   324
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   325
  const ImmutableOopMap* find_map_at_offset(int pc_offset) const;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   326
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   327
  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
   328
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   329
  int count() const { return _count; }
30628
3c15b4a3bf4d 8079797: assert(index >= 0 && index < _count) failed: check
rbackman
parents: 30590
diff changeset
   330
  int nr_of_bytes() const { return _size; }
30590
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
  void print_on(outputStream* st) const;
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   333
  void print() const { print_on(tty); }
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   334
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
class OopMapStream : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  CompressedReadStream* _stream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  int _mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  int _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  int _position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  bool _valid_omv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  OopMapValue _omv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  void find_next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
 public:
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   347
  OopMapStream(OopMap* oop_map, int oop_types_mask = OopMapValue::type_mask_in_place);
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 7397
diff changeset
   348
  OopMapStream(const ImmutableOopMap* oop_map, int oop_types_mask = OopMapValue::type_mask_in_place);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  bool is_done()                        { if(!_valid_omv) { find_next(); } return !_valid_omv; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  void next()                           { find_next(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  OopMapValue current()                 { return _omv; }
30774
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   352
#ifdef ASSERT
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   353
  int stream_position() const           { return _stream->position(); }
6745424a720f 8080692: lots of jstack tests failing in pit
rbackman
parents: 30628
diff changeset
   354
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
// Derived pointer support. This table keeps track of all derived points on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
// stack.  It is cleared before each scavenge/GC.  During the traversal of all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
// oops, it is filled in with references to all locations that contains a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
// derived oop (assumed to be very few).  When the GC is complete, the derived
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
// pointers are updated based on their base pointers new value and an offset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
class DerivedPointerTable : public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
   static GrowableArray<DerivedPointerEntry*>* _list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
   static bool _active;                      // do not record pointers for verify pass etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  static void clear();                       // Called before scavenge/GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  static void add(oop *derived, oop *base);  // Called during scavenge/GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  static void update_pointers();             // Called after  scavenge/GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  static bool is_empty()                     { return _list == NULL || _list->is_empty(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  static bool is_active()                    { return _active; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  static void set_active(bool value)         { _active = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
// A utility class to temporarily "deactivate" the DerivedPointerTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
// (Note: clients are responsible for any MT-safety issues)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
class DerivedPointerTableDeactivate: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  bool _active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  DerivedPointerTableDeactivate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    _active = DerivedPointerTable::is_active();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
      DerivedPointerTable::set_active(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  ~DerivedPointerTableDeactivate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    assert(!DerivedPointerTable::is_active(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
           "Inconsistency: not MT-safe");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
      DerivedPointerTable::set_active(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
#endif // COMPILER2
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   400
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   401
#endif // SHARE_VM_COMPILER_OOPMAP_HPP