hotspot/src/share/vm/opto/locknode.hpp
author trims
Tue, 05 Apr 2011 14:12:31 -0700
changeset 8921 14bfe81f2a9d
parent 8107 78e5bd944384
child 11445 3c768dca60f5
permissions -rw-r--r--
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass Summary: Update the copyright to be 2010 on all changed files in OpenJDK Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
8921
14bfe81f2a9d 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 8107
diff changeset
     2
 * Copyright (c) 1999, 2011, 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: 1613
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1613
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: 1613
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_OPTO_LOCKNODE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_OPTO_LOCKNODE_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 "opto/node.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "opto/opcodes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "opto/subnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#ifdef TARGET_ARCH_MODEL_x86_32
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
# include "adfiles/ad_x86_32.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#ifdef TARGET_ARCH_MODEL_x86_64
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
# include "adfiles/ad_x86_64.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#ifdef TARGET_ARCH_MODEL_sparc
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
# include "adfiles/ad_sparc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#ifdef TARGET_ARCH_MODEL_zero
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
# include "adfiles/ad_zero.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#endif
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    43
#ifdef TARGET_ARCH_MODEL_arm
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    44
# include "adfiles/ad_arm.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    45
#endif
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    46
#ifdef TARGET_ARCH_MODEL_ppc
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    47
# include "adfiles/ad_ppc.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    48
#endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    49
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//------------------------------BoxLockNode------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
class BoxLockNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  const int _slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  RegMask   _inmask;
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 1
diff changeset
    55
  bool _is_eliminated;    // indicates this lock was safely eliminated
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  BoxLockNode( int lock );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  virtual uint size(PhaseRegAlloc *ra_) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  virtual const RegMask &in_RegMask(uint) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  virtual const RegMask &out_RegMask() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  virtual uint size_of() const;
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 670
diff changeset
    64
  virtual uint hash() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  virtual const class Type *bottom_type() const { return TypeRawPtr::BOTTOM; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  virtual uint ideal_reg() const { return Op_RegP; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  static OptoReg::Name stack_slot(Node* box_node);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 1
diff changeset
    71
  bool is_eliminated()  { return _is_eliminated; }
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 1
diff changeset
    72
  // mark lock as eliminated.
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 1
diff changeset
    73
  void set_eliminated() { _is_eliminated = true; }
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 1
diff changeset
    74
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  virtual void format( PhaseRegAlloc *, outputStream *st ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  virtual void dump_spec(outputStream *st) const { st->print("  Lock %d",_slot); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
//------------------------------FastLockNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
class FastLockNode: public CmpNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  BiasedLockingCounters* _counters;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  FastLockNode(Node *ctrl, Node *oop, Node *box) : CmpNode(oop,box) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    init_req(0,ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    init_class_id(Class_FastLock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    _counters = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  Node* obj_node() const { return in(1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  Node* box_node() const { return in(2); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // FastLock and FastUnlockNode do not hash, we need one for each correspoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // LockNode/UnLockNode to avoid creating Phi's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  virtual uint hash() const ;                  // { return NO_HASH; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  virtual uint cmp( const Node &n ) const ;    // Always fail, except on self
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  virtual const Type *Value( PhaseTransform *phase ) const { return TypeInt::CC; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  const Type *sub(const Type *t1, const Type *t2) const { return TypeInt::CC;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  void create_lock_counter(JVMState* s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  BiasedLockingCounters* counters() const { return _counters; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
//------------------------------FastUnlockNode---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
class FastUnlockNode: public CmpNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  FastUnlockNode(Node *ctrl, Node *oop, Node *box) : CmpNode(oop,box) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    init_req(0,ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    init_class_id(Class_FastUnlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  Node* obj_node() const { return in(1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  Node* box_node() const { return in(2); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // FastLock and FastUnlockNode do not hash, we need one for each correspoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // LockNode/UnLockNode to avoid creating Phi's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  virtual uint hash() const ;                  // { return NO_HASH; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  virtual uint cmp( const Node &n ) const ;    // Always fail, except on self
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  virtual const Type *Value( PhaseTransform *phase ) const { return TypeInt::CC; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  const Type *sub(const Type *t1, const Type *t2) const { return TypeInt::CC;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   128
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   129
#endif // SHARE_VM_OPTO_LOCKNODE_HPP