hotspot/src/share/vm/opto/locknode.hpp
author goetz
Fri, 04 Jul 2014 11:46:01 +0200
changeset 25715 d5a8dbdc5150
parent 23491 f690330b10b9
child 35551 36ef3841fb34
permissions -rw-r--r--
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories. Summary: Introduce and clean up umbrella headers for the files in the cpu subdirectories. Reviewed-by: lfoltan, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 23491
diff changeset
     2
 * Copyright (c) 1999, 2014, 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"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 23491
diff changeset
    31
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 23491
diff changeset
    32
class BiasedLockingCounters;
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 23491
diff changeset
    33
class RTMLockingCounters;
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//------------------------------BoxLockNode------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class BoxLockNode : public Node {
11458
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11445
diff changeset
    37
  const int     _slot; // stack slot
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11445
diff changeset
    38
  RegMask     _inmask; // OptoReg corresponding to stack slot
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11445
diff changeset
    39
  bool _is_eliminated; // Associated locks were safely eliminated
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 8921
diff changeset
    41
public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  BoxLockNode( int lock );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  virtual uint size(PhaseRegAlloc *ra_) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  virtual const RegMask &in_RegMask(uint) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  virtual const RegMask &out_RegMask() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  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
    49
  virtual uint hash() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  virtual const class Type *bottom_type() const { return TypeRawPtr::BOTTOM; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  virtual uint ideal_reg() const { return Op_RegP; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 8921
diff changeset
    54
  static OptoReg::Name reg(Node* box_node);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 8921
diff changeset
    55
  static BoxLockNode* box_node(Node* box_node);
11458
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11445
diff changeset
    56
  static bool same_slot(Node* box1, Node* box2) {
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11445
diff changeset
    57
    return box1->as_BoxLock()->_slot == box2->as_BoxLock()->_slot;
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11445
diff changeset
    58
  }
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 8921
diff changeset
    59
  int stack_slot() const { return _slot; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 8921
diff changeset
    61
  bool is_eliminated() const { return _is_eliminated; }
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 1
diff changeset
    62
  // mark lock as eliminated.
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 8921
diff changeset
    63
  void set_eliminated()      { _is_eliminated = true; }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 8921
diff changeset
    64
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 8921
diff changeset
    65
  // Is BoxLock node used for one simple lock region?
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 8921
diff changeset
    66
  bool is_simple_lock_region(LockNode** unique_lock, Node* obj);
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 1
diff changeset
    67
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  virtual void format( PhaseRegAlloc *, outputStream *st ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  virtual void dump_spec(outputStream *st) const { st->print("  Lock %d",_slot); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
//------------------------------FastLockNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
class FastLockNode: public CmpNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
private:
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22807
diff changeset
    77
  BiasedLockingCounters*        _counters;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22807
diff changeset
    78
  RTMLockingCounters*       _rtm_counters; // RTM lock counters for inflated locks
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22807
diff changeset
    79
  RTMLockingCounters* _stack_rtm_counters; // RTM lock counters for stack locks
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  FastLockNode(Node *ctrl, Node *oop, Node *box) : CmpNode(oop,box) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    init_req(0,ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    init_class_id(Class_FastLock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    _counters = NULL;
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22807
diff changeset
    86
    _rtm_counters = NULL;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22807
diff changeset
    87
    _stack_rtm_counters = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  Node* obj_node() const { return in(1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  Node* box_node() const { return in(2); }
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 8921
diff changeset
    91
  void  set_box_node(Node* box) { set_req(2, box); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // FastLock and FastUnlockNode do not hash, we need one for each correspoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // LockNode/UnLockNode to avoid creating Phi's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  virtual uint hash() const ;                  // { return NO_HASH; }
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22807
diff changeset
    96
  virtual uint size_of() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  virtual uint cmp( const Node &n ) const ;    // Always fail, except on self
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  virtual const Type *Value( PhaseTransform *phase ) const { return TypeInt::CC; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  const Type *sub(const Type *t1, const Type *t2) const { return TypeInt::CC;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  void create_lock_counter(JVMState* s);
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22807
diff changeset
   103
  void create_rtm_lock_counter(JVMState* state);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22807
diff changeset
   104
  BiasedLockingCounters*        counters() const { return _counters; }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22807
diff changeset
   105
  RTMLockingCounters*       rtm_counters() const { return _rtm_counters; }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22807
diff changeset
   106
  RTMLockingCounters* stack_rtm_counters() const { return _stack_rtm_counters; }
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
//------------------------------FastUnlockNode---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
class FastUnlockNode: public CmpNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  FastUnlockNode(Node *ctrl, Node *oop, Node *box) : CmpNode(oop,box) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    init_req(0,ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    init_class_id(Class_FastUnlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  Node* obj_node() const { return in(1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  Node* box_node() const { return in(2); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // FastLock and FastUnlockNode do not hash, we need one for each correspoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // LockNode/UnLockNode to avoid creating Phi's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  virtual uint hash() const ;                  // { return NO_HASH; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  virtual uint cmp( const Node &n ) const ;    // Always fail, except on self
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  virtual const Type *Value( PhaseTransform *phase ) const { return TypeInt::CC; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  const Type *sub(const Type *t1, const Type *t2) const { return TypeInt::CC;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   130
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   131
#endif // SHARE_VM_OPTO_LOCKNODE_HPP