annotate src/share/vm/c1/c1_ValueMap.hpp @ 6862:8a5ea0a9ccc4

7127708: G1: change task num types from int to uint in concurrent mark Summary: Change the type of various task num fields, parameters etc to unsigned and rename them to be more consistent with the other collectors. Code changes were also reviewed by Vitaly Davidovich. Reviewed-by: johnc Contributed-by: Kaushik Srenevasan <kaushik@twitter.com>
author johnc
date Sat, 06 Oct 2012 01:17:44 -0700
parents 7eca5de9e0b6
children b9a9ed0f8eeb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2166
403dc4c1d7f5 6809483: hotspot:::method_entry are not correctly generated for "method()V"
never
parents: 1972
diff changeset
2 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. 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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 470
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 470
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 470
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
25 #ifndef SHARE_VM_C1_C1_VALUEMAP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
26 #define SHARE_VM_C1_C1_VALUEMAP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
28 #include "c1/c1_Instruction.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
29 #include "c1/c1_ValueSet.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
30 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
31
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class ValueMapEntry: public CompilationResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
34 intx _hash;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 Value _value;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 int _nesting;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 ValueMapEntry* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
40 ValueMapEntry(intx hash, Value value, int nesting, ValueMapEntry* next)
a61af66fc99e Initial load
duke
parents:
diff changeset
41 : _hash(hash)
a61af66fc99e Initial load
duke
parents:
diff changeset
42 , _value(value)
a61af66fc99e Initial load
duke
parents:
diff changeset
43 , _nesting(nesting)
a61af66fc99e Initial load
duke
parents:
diff changeset
44 , _next(next)
a61af66fc99e Initial load
duke
parents:
diff changeset
45 {
a61af66fc99e Initial load
duke
parents:
diff changeset
46 }
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 intx hash() { return _hash; }
a61af66fc99e Initial load
duke
parents:
diff changeset
49 Value value() { return _value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int nesting() { return _nesting; }
a61af66fc99e Initial load
duke
parents:
diff changeset
51 ValueMapEntry* next() { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 void set_next(ValueMapEntry* next) { _next = next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
54 };
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 define_array(ValueMapEntryArray, ValueMapEntry*)
a61af66fc99e Initial load
duke
parents:
diff changeset
57 define_stack(ValueMapEntryList, ValueMapEntryArray)
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // ValueMap implements nested hash tables for value numbering. It
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // maintains a set _killed_values which represents the instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // which have been killed so far and an array of linked lists of
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // ValueMapEntries names _entries. Each ValueMapEntry has a nesting
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // which indicates what ValueMap nesting it belongs to. Higher
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // nesting values are always before lower values in the linked list.
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // This allows cloning of parent ValueMaps by simply copying the heads
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // of the list. _entry_count represents the number of reachable
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // entries in the ValueMap. A ValueMap is only allowed to mutate
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // ValueMapEntries with the same nesting level. Adding or removing
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // entries at the current nesting level requires updating
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // _entry_count. Elements in the parent's list that get killed can be
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // skipped if they are at the head of the list by simply moving to the
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // next element in the list and decrementing _entry_count.
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 class ValueMap: public CompilationResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
76 int _nesting;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 ValueMapEntryArray _entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 ValueSet _killed_values;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 int _entry_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 int nesting() { return _nesting; }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 bool is_local_value_numbering() { return _nesting == 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 bool is_global_value_numbering() { return _nesting > 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 int entry_count() { return _entry_count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 int size() { return _entries.length(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 ValueMapEntry* entry_at(int i) { return _entries.at(i); }
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // calculates the index of a hash value in a hash table of size n
a61af66fc99e Initial load
duke
parents:
diff changeset
90 int entry_index(intx hash, int n) { return (unsigned int)hash % n; }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // if entry_count > size_threshold, the size of the hash table is increased
a61af66fc99e Initial load
duke
parents:
diff changeset
93 int size_threshold() { return size(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // management of the killed-bitset for global value numbering
a61af66fc99e Initial load
duke
parents:
diff changeset
96 void kill_value(Value v) { if (is_global_value_numbering()) _killed_values.put(v); }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 bool is_killed(Value v) { if (is_global_value_numbering()) return _killed_values.contains(v); else return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // helper functions
a61af66fc99e Initial load
duke
parents:
diff changeset
100 void increase_table_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
103 static int _number_of_finds;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 static int _number_of_hits;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 static int _number_of_kills;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // creation
a61af66fc99e Initial load
duke
parents:
diff changeset
110 ValueMap(); // empty value map
a61af66fc99e Initial load
duke
parents:
diff changeset
111 ValueMap(ValueMap* old); // value map with increased nesting
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // manipulation
a61af66fc99e Initial load
duke
parents:
diff changeset
114 Value find_insert(Value x);
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 void kill_memory();
6618
0bfcb7a3e12d 7171824: assert(_offset >= 1) failed: illegal call to offset()
roland
parents: 6266
diff changeset
117 void kill_field(ciField* field, bool all_offsets);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
118 void kill_array(ValueType* type);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 void kill_exception();
a61af66fc99e Initial load
duke
parents:
diff changeset
120 void kill_map(ValueMap* map);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void kill_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // debugging/printing
a61af66fc99e Initial load
duke
parents:
diff changeset
125 void print();
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 static void reset_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
128 static void print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
129 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
130 };
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 define_array(ValueMapArray, ValueMap*)
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 class ValueNumberingVisitor: public InstructionVisitor {
a61af66fc99e Initial load
duke
parents:
diff changeset
136 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // called by visitor functions for instructions that kill values
a61af66fc99e Initial load
duke
parents:
diff changeset
138 virtual void kill_memory() = 0;
6618
0bfcb7a3e12d 7171824: assert(_offset >= 1) failed: illegal call to offset()
roland
parents: 6266
diff changeset
139 virtual void kill_field(ciField* field, bool all_offsets) = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140 virtual void kill_array(ValueType* type) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // visitor functions
459
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
143 void do_StoreField (StoreField* x) {
6132
4d8787136e08 7170145: C1 doesn't respect the JMM with volatile field loads
twisti
parents: 4966
diff changeset
144 if (x->is_init_point() || // putstatic is an initialization point so treat it as a wide kill
4d8787136e08 7170145: C1 doesn't respect the JMM with volatile field loads
twisti
parents: 4966
diff changeset
145 // This is actually too strict and the JMM doesn't require
4d8787136e08 7170145: C1 doesn't respect the JMM with volatile field loads
twisti
parents: 4966
diff changeset
146 // this in all cases (e.g. load a; volatile store b; load a)
4d8787136e08 7170145: C1 doesn't respect the JMM with volatile field loads
twisti
parents: 4966
diff changeset
147 // but possible future optimizations might require this.
4d8787136e08 7170145: C1 doesn't respect the JMM with volatile field loads
twisti
parents: 4966
diff changeset
148 x->field()->is_volatile()) {
459
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
149 kill_memory();
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
150 } else {
6618
0bfcb7a3e12d 7171824: assert(_offset >= 1) failed: illegal call to offset()
roland
parents: 6266
diff changeset
151 kill_field(x->field(), x->needs_patching());
459
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
152 }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
153 }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
154 void do_StoreIndexed (StoreIndexed* x) { kill_array(x->type()); }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
155 void do_MonitorEnter (MonitorEnter* x) { kill_memory(); }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
156 void do_MonitorExit (MonitorExit* x) { kill_memory(); }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
157 void do_Invoke (Invoke* x) { kill_memory(); }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
158 void do_UnsafePutRaw (UnsafePutRaw* x) { kill_memory(); }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
159 void do_UnsafePutObject(UnsafePutObject* x) { kill_memory(); }
6795
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6618
diff changeset
160 void do_UnsafeGetAndSetObject(UnsafeGetAndSetObject* x) { kill_memory(); }
459
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
161 void do_Intrinsic (Intrinsic* x) { if (!x->preserves_state()) kill_memory(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
162
459
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
163 void do_Phi (Phi* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
164 void do_Local (Local* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
165 void do_Constant (Constant* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
166 void do_LoadField (LoadField* x) {
6132
4d8787136e08 7170145: C1 doesn't respect the JMM with volatile field loads
twisti
parents: 4966
diff changeset
167 if (x->is_init_point() || // getstatic is an initialization point so treat it as a wide kill
4d8787136e08 7170145: C1 doesn't respect the JMM with volatile field loads
twisti
parents: 4966
diff changeset
168 x->field()->is_volatile()) { // the JMM requires this
459
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
169 kill_memory();
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
170 }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
171 }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
172 void do_ArrayLength (ArrayLength* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
173 void do_LoadIndexed (LoadIndexed* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
174 void do_NegateOp (NegateOp* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
175 void do_ArithmeticOp (ArithmeticOp* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
176 void do_ShiftOp (ShiftOp* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
177 void do_LogicOp (LogicOp* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
178 void do_CompareOp (CompareOp* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
179 void do_IfOp (IfOp* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
180 void do_Convert (Convert* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
181 void do_NullCheck (NullCheck* x) { /* nothing to do */ }
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 6132
diff changeset
182 void do_TypeCast (TypeCast* x) { /* nothing to do */ }
459
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
183 void do_NewInstance (NewInstance* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
184 void do_NewTypeArray (NewTypeArray* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
185 void do_NewObjectArray (NewObjectArray* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
186 void do_NewMultiArray (NewMultiArray* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
187 void do_CheckCast (CheckCast* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
188 void do_InstanceOf (InstanceOf* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
189 void do_BlockBegin (BlockBegin* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
190 void do_Goto (Goto* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
191 void do_If (If* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
192 void do_IfInstanceOf (IfInstanceOf* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
193 void do_TableSwitch (TableSwitch* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
194 void do_LookupSwitch (LookupSwitch* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
195 void do_Return (Return* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
196 void do_Throw (Throw* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
197 void do_Base (Base* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
198 void do_OsrEntry (OsrEntry* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
199 void do_ExceptionObject(ExceptionObject* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
200 void do_RoundFP (RoundFP* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
201 void do_UnsafeGetRaw (UnsafeGetRaw* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
202 void do_UnsafeGetObject(UnsafeGetObject* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
203 void do_UnsafePrefetchRead (UnsafePrefetchRead* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
204 void do_UnsafePrefetchWrite(UnsafePrefetchWrite* x) { /* nothing to do */ }
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
205 void do_ProfileCall (ProfileCall* x) { /* nothing to do */ }
2166
403dc4c1d7f5 6809483: hotspot:::method_entry are not correctly generated for "method()V"
never
parents: 1972
diff changeset
206 void do_ProfileInvoke (ProfileInvoke* x) { /* nothing to do */ };
403dc4c1d7f5 6809483: hotspot:::method_entry are not correctly generated for "method()V"
never
parents: 1972
diff changeset
207 void do_RuntimeCall (RuntimeCall* x) { /* nothing to do */ };
4966
701a83c86f28 7120481: storeStore barrier in constructor with final field
jiangli
parents: 2352
diff changeset
208 void do_MemBar (MemBar* x) { /* nothing to do */ };
459
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
209 };
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
210
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
211
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
212 class ValueNumberingEffects: public ValueNumberingVisitor {
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
213 private:
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
214 ValueMap* _map;
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
215
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
216 public:
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
217 // implementation for abstract methods of ValueNumberingVisitor
6618
0bfcb7a3e12d 7171824: assert(_offset >= 1) failed: illegal call to offset()
roland
parents: 6266
diff changeset
218 void kill_memory() { _map->kill_memory(); }
0bfcb7a3e12d 7171824: assert(_offset >= 1) failed: illegal call to offset()
roland
parents: 6266
diff changeset
219 void kill_field(ciField* field, bool all_offsets) { _map->kill_field(field, all_offsets); }
0bfcb7a3e12d 7171824: assert(_offset >= 1) failed: illegal call to offset()
roland
parents: 6266
diff changeset
220 void kill_array(ValueType* type) { _map->kill_array(type); }
459
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
221
3a86a8dcf27c 6756768: C1 generates invalid code
never
parents: 0
diff changeset
222 ValueNumberingEffects(ValueMap* map): _map(map) {}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
223 };
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 class GlobalValueNumbering: public ValueNumberingVisitor {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
228 ValueMap* _current_map; // value map of current block
a61af66fc99e Initial load
duke
parents:
diff changeset
229 ValueMapArray _value_maps; // list of value maps for all blocks
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
233 ValueMap* current_map() { return _current_map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 ValueMap* value_map_of(BlockBegin* block) { return _value_maps.at(block->linear_scan_number()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
235 void set_value_map_of(BlockBegin* block, ValueMap* map) { assert(value_map_of(block) == NULL, ""); _value_maps.at_put(block->linear_scan_number(), map); }
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // implementation for abstract methods of ValueNumberingVisitor
6618
0bfcb7a3e12d 7171824: assert(_offset >= 1) failed: illegal call to offset()
roland
parents: 6266
diff changeset
238 void kill_memory() { current_map()->kill_memory(); }
0bfcb7a3e12d 7171824: assert(_offset >= 1) failed: illegal call to offset()
roland
parents: 6266
diff changeset
239 void kill_field(ciField* field, bool all_offsets) { current_map()->kill_field(field, all_offsets); }
0bfcb7a3e12d 7171824: assert(_offset >= 1) failed: illegal call to offset()
roland
parents: 6266
diff changeset
240 void kill_array(ValueType* type) { current_map()->kill_array(type); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // main entry point that performs global value numbering
a61af66fc99e Initial load
duke
parents:
diff changeset
243 GlobalValueNumbering(IR* ir);
a61af66fc99e Initial load
duke
parents:
diff changeset
244 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
245
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
246 #endif // SHARE_VM_C1_C1_VALUEMAP_HPP