annotate src/share/vm/opto/locknode.hpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents 6dbf1a175d6b
children 424f9bfe6b96
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 66
diff changeset
2 * Copyright 1999-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 //------------------------------BoxLockNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class BoxLockNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
27 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
28 const int _slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 RegMask _inmask;
66
6dbf1a175d6b 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 0
diff changeset
30 bool _is_eliminated; // indicates this lock was safely eliminated
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 BoxLockNode( int lock );
a61af66fc99e Initial load
duke
parents:
diff changeset
33 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 virtual uint size(PhaseRegAlloc *ra_) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 virtual const RegMask &in_RegMask(uint) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 virtual const RegMask &out_RegMask() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 virtual uint size_of() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 virtual uint hash() const { return Node::hash() + _slot; }
a61af66fc99e Initial load
duke
parents:
diff changeset
40 virtual uint cmp( const Node &n ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 virtual const class Type *bottom_type() const { return TypeRawPtr::BOTTOM; }
a61af66fc99e Initial load
duke
parents:
diff changeset
42 virtual uint ideal_reg() const { return Op_RegP; }
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 static OptoReg::Name stack_slot(Node* box_node);
a61af66fc99e Initial load
duke
parents:
diff changeset
45
66
6dbf1a175d6b 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 0
diff changeset
46 bool is_eliminated() { return _is_eliminated; }
6dbf1a175d6b 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 0
diff changeset
47 // mark lock as eliminated.
6dbf1a175d6b 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 0
diff changeset
48 void set_eliminated() { _is_eliminated = true; }
6dbf1a175d6b 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 0
diff changeset
49
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
51 virtual void format( PhaseRegAlloc *, outputStream *st ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 virtual void dump_spec(outputStream *st) const { st->print(" Lock %d",_slot); }
a61af66fc99e Initial load
duke
parents:
diff changeset
53 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
54 };
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 //------------------------------FastLockNode-----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
57 class FastLockNode: public CmpNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
59 BiasedLockingCounters* _counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
62 FastLockNode(Node *ctrl, Node *oop, Node *box) : CmpNode(oop,box) {
a61af66fc99e Initial load
duke
parents:
diff changeset
63 init_req(0,ctrl);
a61af66fc99e Initial load
duke
parents:
diff changeset
64 init_class_id(Class_FastLock);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 _counters = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 Node* obj_node() const { return in(1); }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 Node* box_node() const { return in(2); }
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // FastLock and FastUnlockNode do not hash, we need one for each correspoding
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // LockNode/UnLockNode to avoid creating Phi's.
a61af66fc99e Initial load
duke
parents:
diff changeset
72 virtual uint hash() const ; // { return NO_HASH; }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 virtual uint cmp( const Node &n ) const ; // Always fail, except on self
a61af66fc99e Initial load
duke
parents:
diff changeset
74 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 virtual const Type *Value( PhaseTransform *phase ) const { return TypeInt::CC; }
a61af66fc99e Initial load
duke
parents:
diff changeset
76 const Type *sub(const Type *t1, const Type *t2) const { return TypeInt::CC;}
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 void create_lock_counter(JVMState* s);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 BiasedLockingCounters* counters() const { return _counters; }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 };
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 //------------------------------FastUnlockNode---------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
84 class FastUnlockNode: public CmpNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
86 FastUnlockNode(Node *ctrl, Node *oop, Node *box) : CmpNode(oop,box) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 init_req(0,ctrl);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 init_class_id(Class_FastUnlock);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 Node* obj_node() const { return in(1); }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 Node* box_node() const { return in(2); }
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // FastLock and FastUnlockNode do not hash, we need one for each correspoding
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // LockNode/UnLockNode to avoid creating Phi's.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 virtual uint hash() const ; // { return NO_HASH; }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 virtual uint cmp( const Node &n ) const ; // Always fail, except on self
a61af66fc99e Initial load
duke
parents:
diff changeset
98 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 virtual const Type *Value( PhaseTransform *phase ) const { return TypeInt::CC; }
a61af66fc99e Initial load
duke
parents:
diff changeset
100 const Type *sub(const Type *t1, const Type *t2) const { return TypeInt::CC;}
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 };