hotspot/src/share/vm/runtime/stackValue.hpp
author kvn
Tue, 09 Jun 2009 16:19:10 -0700
changeset 3171 aa289b22b577
parent 1 489c9b5090e2
child 3261 c7d5aae8d3f7
permissions -rw-r--r--
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14 Summary: Disable escape analysis when jvmti/debugger is used. Add support for EA ibto SA. Reviewed-by: never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2005 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class StackValue : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
  BasicType _type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  intptr_t  _i; // Blank java stack slot value
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  Handle    _o; // Java stack slot value interpreted as a Handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  StackValue(intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
    _type  = T_INT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    _i     = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    37
  StackValue(Handle value, intptr_t scalar_replaced = 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    _type    = T_OBJECT;
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    39
    _i       = scalar_replaced;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
    _o       = value;
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    41
    assert(_i == 0 || _o.is_null(), "not null object should not be marked as scalar replaced");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  StackValue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    _type   = T_CONFLICT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    _i      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // Only used during deopt- preserve object type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  StackValue(intptr_t o, BasicType t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    assert(t == T_OBJECT, "should not be used");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    _type   = t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    _i      = o;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  Handle get_obj() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    assert(type() == T_OBJECT, "type check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    return _o;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    61
  bool obj_is_scalar_replaced() const {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    62
    assert(type() == T_OBJECT, "type check");
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    63
    return _i != 0;
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    64
  }
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 1
diff changeset
    65
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  void set_obj(Handle value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    assert(type() == T_OBJECT, "type check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    _o = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  intptr_t get_int() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    assert(type() == T_INT, "type check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    return _i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // For special case in deopt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  intptr_t get_int(BasicType t) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    assert(t == T_OBJECT && type() == T_OBJECT, "type check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    return _i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  void set_int(intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    assert(type() == T_INT, "type check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    _i = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  BasicType type() const { return  _type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  bool equal(StackValue *value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    if (_type != value->_type) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    if (_type == T_OBJECT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
      return (_o == value->_o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      assert(_type == T_INT, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      // [phh] compare only low addressed portions of intptr_t slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      return (*(int *)&_i == *(int *)&value->_i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  static StackValue* create_stack_value(const frame* fr, const RegisterMap* reg_map, ScopeValue* sv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static BasicLock*  resolve_monitor_lock(const frame* fr, Location location);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
};