src/hotspot/share/runtime/registerMap.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 47216 71c04702a3d5
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
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: 47216
diff changeset
     2
 * Copyright (c) 2002, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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: 47216
diff changeset
    25
#ifndef SHARE_RUNTIME_REGISTERMAP_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
    26
#define SHARE_RUNTIME_REGISTERMAP_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/vmreg.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "utilities/globalDefinitions.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 29180
diff changeset
    30
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class JavaThread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// RegisterMap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// A companion structure used for stack traversal. The RegisterMap contains
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// misc. information needed in order to do correct stack traversal of stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// frames.  Hence, it must always be passed in as an argument to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// frame::sender(RegisterMap*).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// In particular,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//   1) It provides access to the thread for which the stack belongs.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//      thread object is needed in order to get sender of a deoptimized frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//   2) It is used to pass information from a callee frame to its caller
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//      frame about how the frame should be traversed.  This is used to let
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//      the caller frame take care of calling oops-do of out-going
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//      arguments, when the callee frame is not instantiated yet.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//      happens, e.g., when a compiled frame calls into
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//      resolve_virtual_call.  (Hence, it is critical that the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
//      RegisterMap object is used for the entire stack walk.  Normally,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
//      this is hidden by using the StackFrameStream.)  This is used when
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//      doing follow_oops and oops_do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
//   3) The RegisterMap keeps track of the values of callee-saved registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//      from frame to frame (hence, the name).  For some stack traversal the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
//      values of the callee-saved registers does not matter, e.g., if you
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 8921
diff changeset
    59
//      only need the static properties such as frame type, pc, and such.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
//      Updating of the RegisterMap can be turned off by instantiating the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
//      register map as: RegisterMap map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
class RegisterMap : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    typedef julong LocationValidType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    reg_count = ConcreteRegisterImpl::number_of_registers,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    location_valid_type_size = sizeof(LocationValidType)*8,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    location_valid_size = (reg_count+location_valid_type_size-1)/location_valid_type_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  intptr_t*    _location[reg_count];    // Location of registers (intptr_t* looks better than address in the debugger)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  LocationValidType _location_valid[location_valid_size];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  bool        _include_argument_oops;   // Should include argument_oop marked locations for compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  JavaThread* _thread;                  // Reference to current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  bool        _update_map;              // Tells if the register map need to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                        // updated when traversing the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  void check_location_valid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  void check_location_valid() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  debug_only(intptr_t* _update_for_id;) // Assert that RegisterMap is not updated twice for same frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  RegisterMap(JavaThread *thread, bool update_map = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  RegisterMap(const RegisterMap* map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  address location(VMReg reg) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    int index = reg->value() / location_valid_type_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    assert(0 <= reg->value() && reg->value() < reg_count, "range check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    assert(0 <= index && index < location_valid_size, "range check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    if (_location_valid[index] & ((LocationValidType)1 << (reg->value() % location_valid_type_size))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      return (address) _location[reg->value()];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      return pd_location(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  void set_location(VMReg reg, address loc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    int index = reg->value() / location_valid_type_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    assert(0 <= reg->value() && reg->value() < reg_count, "range check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    assert(0 <= index && index < location_valid_size, "range check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    assert(_update_map, "updating map that does not need updating");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    _location[reg->value()] = (intptr_t*) loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    _location_valid[index] |= ((LocationValidType)1 << (reg->value() % location_valid_type_size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    check_location_valid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Called by an entry frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  void clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  bool include_argument_oops() const      { return _include_argument_oops; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  void set_include_argument_oops(bool f)  { _include_argument_oops = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  JavaThread *thread() const { return _thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  bool update_map()    const { return _update_map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  void print() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // the following contains the definition of pd_xxx methods
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 29180
diff changeset
   124
#include CPU_HEADER(registerMap)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   125
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   127
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
   128
#endif // SHARE_RUNTIME_REGISTERMAP_HPP