src/hotspot/share/runtime/stackValue.hpp
author iklam
Fri, 29 Nov 2019 14:11:50 -0800
changeset 59328 f280911d3427
parent 53244 9807daeb47c4
permissions -rw-r--r--
8230385: [cds] No message is logged when shared image cannot be used due to mismatched configuration Reviewed-by: stuefe, dholmes, ccheung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53149
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 47816
diff changeset
     2
 * Copyright (c) 1997, 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: 3261
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
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: 3261
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: 53149
diff changeset
    25
#ifndef SHARE_RUNTIME_STACKVALUE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
    26
#define SHARE_RUNTIME_STACKVALUE_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/location.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
53149
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 47816
diff changeset
    31
class BasicLock;
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 47816
diff changeset
    32
class RegisterMap;
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 47816
diff changeset
    33
class ScopeValue;
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 47816
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class StackValue : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  BasicType _type;
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    38
  intptr_t  _integer_value; // Blank java stack slot value
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    39
  Handle    _handle_value;  // Java stack slot value interpreted as a Handle
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  StackValue(intptr_t value) {
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    43
    _type              = T_INT;
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    44
    _integer_value     = value;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    47
  StackValue(Handle value, intptr_t scalar_replaced = 0) {
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    48
    _type                = T_OBJECT;
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    49
    _integer_value       = scalar_replaced;
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    50
    _handle_value        = value;
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    51
    assert(_integer_value == 0 ||  _handle_value.is_null(), "not null object should not be marked as scalar replaced");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  StackValue() {
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    55
    _type           = T_CONFLICT;
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    56
    _integer_value  = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Only used during deopt- preserve object type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  StackValue(intptr_t o, BasicType t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    assert(t == T_OBJECT, "should not be used");
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    62
    _type          = t;
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    63
    _integer_value = o;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  Handle get_obj() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    assert(type() == T_OBJECT, "type check");
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    68
    return _handle_value;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    71
  bool obj_is_scalar_replaced() const {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    72
    assert(type() == T_OBJECT, "type check");
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    73
    return _integer_value != 0;
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    74
  }
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    75
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  void set_obj(Handle value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    assert(type() == T_OBJECT, "type check");
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    78
    _handle_value = value;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  intptr_t get_int() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    assert(type() == T_INT, "type check");
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    83
    return _integer_value;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // For special case in deopt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  intptr_t get_int(BasicType t) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    assert(t == T_OBJECT && type() == T_OBJECT, "type check");
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    89
    return _integer_value;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  void set_int(intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    assert(type() == T_INT, "type check");
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
    94
    _integer_value = value;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  BasicType type() const { return  _type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  bool equal(StackValue *value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    if (_type != value->_type) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    if (_type == T_OBJECT)
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
   102
      return (_handle_value == value->_handle_value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
      assert(_type == T_INT, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
      // [phh] compare only low addressed portions of intptr_t slots
47816
ac0af7750da9 8189798: SA cleanup - part 1
jgeorge
parents: 47216
diff changeset
   106
      return (*(int *)&_integer_value == *(int *)&value->_integer_value);
1
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
  static StackValue* create_stack_value(const frame* fr, const RegisterMap* reg_map, ScopeValue* sv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static BasicLock*  resolve_monitor_lock(const frame* fr, Location location);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   119
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
   120
#endif // SHARE_RUNTIME_STACKVALUE_HPP