annotate src/share/vm/adlc/forms.cpp @ 452:00b023ae2d78

6722113: CMS: Incorrect overflow handling during precleaning of Reference lists Summary: When we encounter marking stack overflow during precleaning of Reference lists, we were using the overflow list mechanism, which can cause problems on account of mutating the mark word of the header because of conflicts with mutator accesses and updates of that field. Instead we should use the usual mechanism for overflow handling in concurrent phases, namely dirtying of the card on which the overflowed object lies. Since precleaning effectively does a form of discovered list processing, albeit with discovery enabled, we needed to adjust some code to be correct in the face of interleaved processing and discovery. Reviewed-by: apetrusenko, jcoomes
author ysr
date Thu, 20 Nov 2008 12:27:41 -0800
parents 4d9884b01ba6
children 3b5ac9e7e6ea
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: 164
diff changeset
2 * Copyright 1997-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 // FORMS.CPP - Definitions for ADL Parser Generic & Utility Forms Classes
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "adlc.hpp"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 //------------------------------Static Initializers----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // allocate arena used by forms
a61af66fc99e Initial load
duke
parents:
diff changeset
30 Arena *Form::arena = Form::generate_arena(); // = Form::generate_arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
31 Arena *Form::generate_arena() {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 return (new Arena);
a61af66fc99e Initial load
duke
parents:
diff changeset
33 }
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 //------------------------------NameList---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // reserved user-defined string
a61af66fc99e Initial load
duke
parents:
diff changeset
37 const char *NameList::_signal = "$$SIGNAL$$";
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 196
diff changeset
38 const char *NameList::_signal2 = "$$SIGNAL2$$";
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 196
diff changeset
39 const char *NameList::_signal3 = "$$SIGNAL3$$";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Constructor and Destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
42 NameList::NameList() : _cur(0), _max(4), _iter(0), _justReset(true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _names = (const char**)malloc(_max*sizeof(char*));
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45 NameList::~NameList() {
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // The following free is a double-free, and crashes the program:
a61af66fc99e Initial load
duke
parents:
diff changeset
47 //free(_names); // not owner of strings
a61af66fc99e Initial load
duke
parents:
diff changeset
48 }
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 void NameList::addName(const char *name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 if (_cur == _max) _names =(const char**)realloc(_names,(_max *=2)*sizeof(char*));
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _names[_cur++] = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 void NameList::add_signal() {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 addName( _signal );
a61af66fc99e Initial load
duke
parents:
diff changeset
57 }
a61af66fc99e Initial load
duke
parents:
diff changeset
58 void NameList::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _cur = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _iter = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 _justReset = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // _max = 4; Already allocated
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 int NameList::count() const { return _cur; }
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 void NameList::reset() { _iter = 0; _justReset = true;}
a61af66fc99e Initial load
duke
parents:
diff changeset
68 const char *NameList::iter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 if (_justReset) {_justReset=false; return (_iter < _cur ? _names[_iter] : NULL);}
a61af66fc99e Initial load
duke
parents:
diff changeset
70 else return (_iter <_cur-1 ? _names[++_iter] : NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 const char *NameList::current() { return (_iter < _cur ? _names[_iter] : NULL); }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Return 'true' if current entry is signal
a61af66fc99e Initial load
duke
parents:
diff changeset
75 bool NameList::current_is_signal() {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 const char *entry = current();
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return is_signal(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // Return true if entry is a signal
a61af66fc99e Initial load
duke
parents:
diff changeset
81 bool NameList::is_signal(const char *entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 return ( (strcmp(entry,NameList::_signal) == 0) ? true : false);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // Search for a name in the list
a61af66fc99e Initial load
duke
parents:
diff changeset
86 bool NameList::search(const char *name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 const char *entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 for(reset(); (entry = iter()) != NULL; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 if(!strcmp(entry,name)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // Return index of name in list
a61af66fc99e Initial load
duke
parents:
diff changeset
95 int NameList::index(const char *name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 int cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 const char *entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 for(reset(); (entry = iter()) != NULL; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 if(!strcmp(entry,name)) return cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 cnt++;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 return Not_in_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // Return name at index in list
a61af66fc99e Initial load
duke
parents:
diff changeset
106 const char *NameList::name(intptr_t index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 return ( index < _cur ? _names[index] : NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 void NameList::dump() { output(stderr); }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 void NameList::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 fprintf(fp, "\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Run iteration over all entries, independent of position of iterator.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 const char *name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 int iter = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 bool justReset = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 while( ( name = (justReset ?
a61af66fc99e Initial load
duke
parents:
diff changeset
121 (justReset=false, (iter < _cur ? _names[iter] : NULL)) :
a61af66fc99e Initial load
duke
parents:
diff changeset
122 (iter < _cur-1 ? _names[++iter] : NULL)) )
a61af66fc99e Initial load
duke
parents:
diff changeset
123 != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 fprintf( fp, " %s,\n", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 fprintf(fp, "\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 //------------------------------NameAndList------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // Storage for a name and an associated list of names
a61af66fc99e Initial load
duke
parents:
diff changeset
131 NameAndList::NameAndList(char *name) : _name(name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 NameAndList::~NameAndList() {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Add to entries in list
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void NameAndList::add_entry(const char *entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 _list.addName(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // Access the name and its associated list.
a61af66fc99e Initial load
duke
parents:
diff changeset
142 const char *NameAndList::name() const { return _name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
143 void NameAndList::reset() { _list.reset(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
144 const char *NameAndList::iter() { return _list.iter(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // Return the "index" entry in the list, zero-based
a61af66fc99e Initial load
duke
parents:
diff changeset
147 const char *NameAndList::operator[](int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 assert( index >= 0, "Internal Error(): index less than 0.");
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 _list.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
151 const char *entry = _list.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // Iterate further if it isn't at index 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
153 for ( int position = 0; position != index; ++position ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
154 entry = _list.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 void NameAndList::dump() { output(stderr); }
a61af66fc99e Initial load
duke
parents:
diff changeset
162 void NameAndList::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 fprintf(fp, "\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // Output the Name
a61af66fc99e Initial load
duke
parents:
diff changeset
166 fprintf(fp, "Name == %s", (_name ? _name : "") );
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // Output the associated list of names
a61af66fc99e Initial load
duke
parents:
diff changeset
169 const char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 fprintf(fp, " (");
a61af66fc99e Initial load
duke
parents:
diff changeset
171 for (reset(); (name = iter()) != NULL;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 fprintf(fp, " %s,\n", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 fprintf(fp, ")");
a61af66fc99e Initial load
duke
parents:
diff changeset
175 fprintf(fp, "\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 //------------------------------Form-------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
179 OpClassForm *Form::is_opclass() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 OperandForm *Form::is_operand() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 InstructForm *Form::is_instruction() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 MachNodeForm *Form::is_machnode() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 AttributeForm *Form::is_attribute() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 Effect *Form::is_effect() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 ResourceForm *Form::is_resource() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 PipeClassForm *Form::is_pipeclass() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 Form::DataType Form::ideal_to_const_type(const char *name) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
212 if( name == NULL ) { return Form::none; }
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 if (strcmp(name,"ConI")==0) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
215 if (strcmp(name,"ConP")==0) return Form::idealP;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
216 if (strcmp(name,"ConN")==0) return Form::idealN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217 if (strcmp(name,"ConL")==0) return Form::idealL;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 if (strcmp(name,"ConF")==0) return Form::idealF;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 if (strcmp(name,"ConD")==0) return Form::idealD;
a61af66fc99e Initial load
duke
parents:
diff changeset
220 if (strcmp(name,"Bool")==0) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 return Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 Form::DataType Form::ideal_to_sReg_type(const char *name) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
226 if( name == NULL ) { return Form::none; }
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 if (strcmp(name,"sRegI")==0) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 if (strcmp(name,"sRegP")==0) return Form::idealP;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 if (strcmp(name,"sRegF")==0) return Form::idealF;
a61af66fc99e Initial load
duke
parents:
diff changeset
231 if (strcmp(name,"sRegD")==0) return Form::idealD;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 if (strcmp(name,"sRegL")==0) return Form::idealL;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 return Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 Form::DataType Form::ideal_to_Reg_type(const char *name) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 if( name == NULL ) { return Form::none; }
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 if (strcmp(name,"RegI")==0) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 if (strcmp(name,"RegP")==0) return Form::idealP;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 if (strcmp(name,"RegF")==0) return Form::idealF;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 if (strcmp(name,"RegD")==0) return Form::idealD;
a61af66fc99e Initial load
duke
parents:
diff changeset
243 if (strcmp(name,"RegL")==0) return Form::idealL;
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 return Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // True if 'opType', an ideal name, loads or stores.
a61af66fc99e Initial load
duke
parents:
diff changeset
249 Form::DataType Form::is_load_from_memory(const char *opType) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 if( strcmp(opType,"LoadB")==0 ) return Form::idealB;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 if( strcmp(opType,"LoadC")==0 ) return Form::idealC;
a61af66fc99e Initial load
duke
parents:
diff changeset
252 if( strcmp(opType,"LoadD")==0 ) return Form::idealD;
a61af66fc99e Initial load
duke
parents:
diff changeset
253 if( strcmp(opType,"LoadD_unaligned")==0 ) return Form::idealD;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 if( strcmp(opType,"LoadF")==0 ) return Form::idealF;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if( strcmp(opType,"LoadI")==0 ) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 if( strcmp(opType,"LoadKlass")==0 ) return Form::idealP;
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 113
diff changeset
257 if( strcmp(opType,"LoadNKlass")==0 ) return Form::idealN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
258 if( strcmp(opType,"LoadL")==0 ) return Form::idealL;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 if( strcmp(opType,"LoadL_unaligned")==0 ) return Form::idealL;
a61af66fc99e Initial load
duke
parents:
diff changeset
260 if( strcmp(opType,"LoadPLocked")==0 ) return Form::idealP;
a61af66fc99e Initial load
duke
parents:
diff changeset
261 if( strcmp(opType,"LoadLLocked")==0 ) return Form::idealL;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 if( strcmp(opType,"LoadP")==0 ) return Form::idealP;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
263 if( strcmp(opType,"LoadN")==0 ) return Form::idealN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
264 if( strcmp(opType,"LoadRange")==0 ) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
265 if( strcmp(opType,"LoadS")==0 ) return Form::idealS;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 if( strcmp(opType,"Load16B")==0 ) return Form::idealB;
a61af66fc99e Initial load
duke
parents:
diff changeset
267 if( strcmp(opType,"Load8B")==0 ) return Form::idealB;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 if( strcmp(opType,"Load4B")==0 ) return Form::idealB;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 if( strcmp(opType,"Load8C")==0 ) return Form::idealC;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 if( strcmp(opType,"Load4C")==0 ) return Form::idealC;
a61af66fc99e Initial load
duke
parents:
diff changeset
271 if( strcmp(opType,"Load2C")==0 ) return Form::idealC;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 if( strcmp(opType,"Load8S")==0 ) return Form::idealS;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 if( strcmp(opType,"Load4S")==0 ) return Form::idealS;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 if( strcmp(opType,"Load2S")==0 ) return Form::idealS;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 if( strcmp(opType,"Load2D")==0 ) return Form::idealD;
a61af66fc99e Initial load
duke
parents:
diff changeset
276 if( strcmp(opType,"Load4F")==0 ) return Form::idealF;
a61af66fc99e Initial load
duke
parents:
diff changeset
277 if( strcmp(opType,"Load2F")==0 ) return Form::idealF;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 if( strcmp(opType,"Load4I")==0 ) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
279 if( strcmp(opType,"Load2I")==0 ) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
280 if( strcmp(opType,"Load2L")==0 ) return Form::idealL;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 assert( strcmp(opType,"Load") != 0, "Must type Loads" );
a61af66fc99e Initial load
duke
parents:
diff changeset
282 return Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 Form::DataType Form::is_store_to_memory(const char *opType) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 if( strcmp(opType,"StoreB")==0) return Form::idealB;
a61af66fc99e Initial load
duke
parents:
diff changeset
287 if( strcmp(opType,"StoreCM")==0) return Form::idealB;
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if( strcmp(opType,"StoreC")==0) return Form::idealC;
a61af66fc99e Initial load
duke
parents:
diff changeset
289 if( strcmp(opType,"StoreD")==0) return Form::idealD;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 if( strcmp(opType,"StoreF")==0) return Form::idealF;
a61af66fc99e Initial load
duke
parents:
diff changeset
291 if( strcmp(opType,"StoreI")==0) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
292 if( strcmp(opType,"StoreL")==0) return Form::idealL;
a61af66fc99e Initial load
duke
parents:
diff changeset
293 if( strcmp(opType,"StoreP")==0) return Form::idealP;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
294 if( strcmp(opType,"StoreN")==0) return Form::idealN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
295 if( strcmp(opType,"Store16B")==0) return Form::idealB;
a61af66fc99e Initial load
duke
parents:
diff changeset
296 if( strcmp(opType,"Store8B")==0) return Form::idealB;
a61af66fc99e Initial load
duke
parents:
diff changeset
297 if( strcmp(opType,"Store4B")==0) return Form::idealB;
a61af66fc99e Initial load
duke
parents:
diff changeset
298 if( strcmp(opType,"Store8C")==0) return Form::idealC;
a61af66fc99e Initial load
duke
parents:
diff changeset
299 if( strcmp(opType,"Store4C")==0) return Form::idealC;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 if( strcmp(opType,"Store2C")==0) return Form::idealC;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 if( strcmp(opType,"Store2D")==0) return Form::idealD;
a61af66fc99e Initial load
duke
parents:
diff changeset
302 if( strcmp(opType,"Store4F")==0) return Form::idealF;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 if( strcmp(opType,"Store2F")==0) return Form::idealF;
a61af66fc99e Initial load
duke
parents:
diff changeset
304 if( strcmp(opType,"Store4I")==0) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
305 if( strcmp(opType,"Store2I")==0) return Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
306 if( strcmp(opType,"Store2L")==0) return Form::idealL;
a61af66fc99e Initial load
duke
parents:
diff changeset
307 assert( strcmp(opType,"Store") != 0, "Must type Stores" );
a61af66fc99e Initial load
duke
parents:
diff changeset
308 return Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 Form::InterfaceType Form::interface_type(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 return Form::no_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
313 }
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 //------------------------------FormList---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // Destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
317 FormList::~FormList() {
a61af66fc99e Initial load
duke
parents:
diff changeset
318 // // This list may not own its elements
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // Form *cur = _root;
a61af66fc99e Initial load
duke
parents:
diff changeset
320 // Form *next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // for( ; (cur = next) != NULL; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // next = (Form *)cur->_next;
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // delete cur;
a61af66fc99e Initial load
duke
parents:
diff changeset
324 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
325 };
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 //------------------------------FormDict---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
328 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
329 FormDict::FormDict( CmpKey cmp, Hash hash, Arena *arena )
a61af66fc99e Initial load
duke
parents:
diff changeset
330 : _form(cmp, hash, arena) {
a61af66fc99e Initial load
duke
parents:
diff changeset
331 }
a61af66fc99e Initial load
duke
parents:
diff changeset
332 FormDict::~FormDict() {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 }
a61af66fc99e Initial load
duke
parents:
diff changeset
334
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // Return # of name-Form pairs in dict
a61af66fc99e Initial load
duke
parents:
diff changeset
336 int FormDict::Size(void) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
337 return _form.Size();
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // Insert inserts the given key-value pair into the dictionary. The prior
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // value of the key is returned; NULL if the key was not previously defined.
a61af66fc99e Initial load
duke
parents:
diff changeset
342 const Form *FormDict::Insert(const char *name, Form *form) {
a61af66fc99e Initial load
duke
parents:
diff changeset
343 return (Form*)_form.Insert((void*)name, (void*)form);
a61af66fc99e Initial load
duke
parents:
diff changeset
344 }
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // Finds the value of a given key; or NULL if not found.
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // The dictionary is NOT changed.
a61af66fc99e Initial load
duke
parents:
diff changeset
348 const Form *FormDict::operator [](const char *name) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
349 return (Form*)_form[name];
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351
a61af66fc99e Initial load
duke
parents:
diff changeset
352 //------------------------------FormDict::private------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // Disable public use of constructor, copy-ctor, operator =, operator ==
a61af66fc99e Initial load
duke
parents:
diff changeset
354 FormDict::FormDict( ) : _form(cmpkey,hashkey) {
a61af66fc99e Initial load
duke
parents:
diff changeset
355 assert( false, "NotImplemented");
a61af66fc99e Initial load
duke
parents:
diff changeset
356 }
a61af66fc99e Initial load
duke
parents:
diff changeset
357 FormDict::FormDict( const FormDict & fd) : _form(fd._form) {
a61af66fc99e Initial load
duke
parents:
diff changeset
358 }
a61af66fc99e Initial load
duke
parents:
diff changeset
359 FormDict &FormDict::operator =( const FormDict &rhs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
360 assert( false, "NotImplemented");
a61af66fc99e Initial load
duke
parents:
diff changeset
361 _form = rhs._form;
a61af66fc99e Initial load
duke
parents:
diff changeset
362 return *this;
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // == compares two dictionaries; they must have the same keys (their keys
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // must match using CmpKey) and they must have the same values (pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
366 // comparison). If so 1 is returned, if not 0 is returned.
a61af66fc99e Initial load
duke
parents:
diff changeset
367 bool FormDict::operator ==(const FormDict &d) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
368 assert( false, "NotImplemented");
a61af66fc99e Initial load
duke
parents:
diff changeset
369 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // Print out the dictionary contents as key-value pairs
a61af66fc99e Initial load
duke
parents:
diff changeset
373 static void dumpkey (const void* key) { fprintf(stdout, "%s", key); }
a61af66fc99e Initial load
duke
parents:
diff changeset
374 static void dumpform(const void* form) { fflush(stdout); ((Form*)form)->dump(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
375
a61af66fc99e Initial load
duke
parents:
diff changeset
376 void FormDict::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 _form.print(dumpkey, dumpform);
a61af66fc99e Initial load
duke
parents:
diff changeset
378 }
a61af66fc99e Initial load
duke
parents:
diff changeset
379
a61af66fc99e Initial load
duke
parents:
diff changeset
380 //------------------------------SourceForm-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
381 SourceForm::SourceForm(char* code) : _code(code) { }; // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
382 SourceForm::~SourceForm() {
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 void SourceForm::dump() { // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
386 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388
a61af66fc99e Initial load
duke
parents:
diff changeset
389 void SourceForm::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
390 fprintf(fp,"\n//%s\n%s\n",classname(),(_code?_code:""));
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }