annotate src/share/vm/adlc/formssel.cpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 89152779163c 78bbf4d43a14
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17810
diff changeset
2 * Copyright (c) 1998, 2014, 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: 1541
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1541
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: 1541
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
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // FORMS.CPP - Definitions for ADL Parser 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 //==============================Instructions===================================
a61af66fc99e Initial load
duke
parents:
diff changeset
29 //------------------------------InstructForm-----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
30 InstructForm::InstructForm(const char *id, bool ideal_only)
a61af66fc99e Initial load
duke
parents:
diff changeset
31 : _ident(id), _ideal_only(ideal_only),
a61af66fc99e Initial load
duke
parents:
diff changeset
32 _localNames(cmpstr, hashstr, Form::arena),
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
33 _effects(cmpstr, hashstr, Form::arena),
4120
f03a3c8bd5e5 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 3965
diff changeset
34 _is_mach_constant(false),
14434
318d0622a6d7 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 14431
diff changeset
35 _needs_constant_base(false),
4120
f03a3c8bd5e5 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 3965
diff changeset
36 _has_call(false)
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
37 {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38 _ftype = Form::INS;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
14428
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
40 _matrule = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
41 _insencode = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
42 _constant = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
43 _is_postalloc_expand = false;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
44 _opcode = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
45 _size = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
46 _attribs = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
47 _predicate = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
48 _exprule = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
49 _rewrule = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
50 _format = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
51 _peephole = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
52 _ins_pipe = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
53 _uniq_idx = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
54 _num_uniq = 0;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
55 _cisc_spill_operand = Not_cisc_spillable;// Which operand may cisc-spill
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56 _cisc_spill_alternate = NULL; // possible cisc replacement
14428
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
57 _cisc_reg_mask_name = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
58 _is_cisc_alternate = false;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
59 _is_short_branch = false;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
60 _short_branch_form = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
61 _alignment = 1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 InstructForm::InstructForm(const char *id, InstructForm *instr, MatchRule *rule)
a61af66fc99e Initial load
duke
parents:
diff changeset
65 : _ident(id), _ideal_only(false),
a61af66fc99e Initial load
duke
parents:
diff changeset
66 _localNames(instr->_localNames),
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
67 _effects(instr->_effects),
4120
f03a3c8bd5e5 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 3965
diff changeset
68 _is_mach_constant(false),
14434
318d0622a6d7 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 14431
diff changeset
69 _needs_constant_base(false),
4120
f03a3c8bd5e5 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 3965
diff changeset
70 _has_call(false)
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
71 {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
72 _ftype = Form::INS;
a61af66fc99e Initial load
duke
parents:
diff changeset
73
14428
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
74 _matrule = rule;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
75 _insencode = instr->_insencode;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
76 _constant = instr->_constant;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
77 _is_postalloc_expand = instr->_is_postalloc_expand;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
78 _opcode = instr->_opcode;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
79 _size = instr->_size;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
80 _attribs = instr->_attribs;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
81 _predicate = instr->_predicate;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
82 _exprule = instr->_exprule;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
83 _rewrule = instr->_rewrule;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
84 _format = instr->_format;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
85 _peephole = instr->_peephole;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
86 _ins_pipe = instr->_ins_pipe;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
87 _uniq_idx = instr->_uniq_idx;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
88 _num_uniq = instr->_num_uniq;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
89 _cisc_spill_operand = Not_cisc_spillable; // Which operand may cisc-spill
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
90 _cisc_spill_alternate = NULL; // possible cisc replacement
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
91 _cisc_reg_mask_name = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
92 _is_cisc_alternate = false;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
93 _is_short_branch = false;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
94 _short_branch_form = NULL;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
95 _alignment = 1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Copy parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
97 const char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 instr->_parameters.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
99 for (; (name = instr->_parameters.iter()) != NULL;)
a61af66fc99e Initial load
duke
parents:
diff changeset
100 _parameters.addName(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 InstructForm::~InstructForm() {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 InstructForm *InstructForm::is_instruction() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 return (InstructForm*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 bool InstructForm::ideal_only() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 return _ideal_only;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 bool InstructForm::sets_result() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 return (_matrule != NULL && _matrule->sets_result());
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 bool InstructForm::needs_projections() {
a61af66fc99e Initial load
duke
parents:
diff changeset
119 _components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
120 for( Component *comp; (comp = _components.iter()) != NULL; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 if (comp->isa(Component::KILL)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 bool InstructForm::has_temps() {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 if (_matrule) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Examine each component to see if it is a TEMP
a61af66fc99e Initial load
duke
parents:
diff changeset
132 _components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // Skip the first component, if already handled as (SET dst (...))
a61af66fc99e Initial load
duke
parents:
diff changeset
134 Component *comp = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 if (sets_result()) comp = _components.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
136 while ((comp = _components.iter()) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 if (comp->isa(Component::TEMP)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 uint InstructForm::num_defs_or_kills() {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 uint defs_or_kills = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 _components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
150 for( Component *comp; (comp = _components.iter()) != NULL; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 if( comp->isa(Component::DEF) || comp->isa(Component::KILL) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 ++defs_or_kills;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 return defs_or_kills;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // This instruction has an expand rule?
a61af66fc99e Initial load
duke
parents:
diff changeset
160 bool InstructForm::expands() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 return ( _exprule != NULL );
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163
14428
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
164 // This instruction has a late expand rule?
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
165 bool InstructForm::postalloc_expands() const {
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
166 return _is_postalloc_expand;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
167 }
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 12953
diff changeset
168
0
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // This instruction has a peephole rule?
a61af66fc99e Initial load
duke
parents:
diff changeset
170 Peephole *InstructForm::peepholes() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 return _peephole;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // This instruction has a peephole rule?
a61af66fc99e Initial load
duke
parents:
diff changeset
175 void InstructForm::append_peephole(Peephole *peephole) {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 if( _peephole == NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 _peephole = peephole;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 _peephole->append_peephole(peephole);
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // ideal opcode enumeration
a61af66fc99e Initial load
duke
parents:
diff changeset
185 const char *InstructForm::ideal_Opcode( FormDict &globalNames ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 if( !_matrule ) return "Node"; // Something weird
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // Chain rules do not really have ideal Opcodes; use their source
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // operand ideal Opcode instead.
a61af66fc99e Initial load
duke
parents:
diff changeset
189 if( is_simple_chain_rule(globalNames) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 const char *src = _matrule->_rChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 OperandForm *src_op = globalNames[src]->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
192 assert( src_op, "Not operand class of chain rule" );
a61af66fc99e Initial load
duke
parents:
diff changeset
193 if( !src_op->_matrule ) return "Node";
a61af66fc99e Initial load
duke
parents:
diff changeset
194 return src_op->_matrule->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // Operand chain rules do not really have ideal Opcodes
a61af66fc99e Initial load
duke
parents:
diff changeset
197 if( _matrule->is_chain_rule(globalNames) )
a61af66fc99e Initial load
duke
parents:
diff changeset
198 return "Node";
a61af66fc99e Initial load
duke
parents:
diff changeset
199 return strcmp(_matrule->_opType,"Set")
a61af66fc99e Initial load
duke
parents:
diff changeset
200 ? _matrule->_opType
a61af66fc99e Initial load
duke
parents:
diff changeset
201 : _matrule->_rChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // Recursive check on all operands' match rules in my match rule
a61af66fc99e Initial load
duke
parents:
diff changeset
205 bool InstructForm::is_pinned(FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 if ( ! _matrule) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 if (_matrule->find_type("Goto", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
210 if (_matrule->find_type("If", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
211 if (_matrule->find_type("CountedLoopEnd",index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 if (_matrule->find_type("Return", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
213 if (_matrule->find_type("Rethrow", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
214 if (_matrule->find_type("TailCall", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
215 if (_matrule->find_type("TailJump", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 if (_matrule->find_type("Halt", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
217 if (_matrule->find_type("Jump", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 return is_parm(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // Recursive check on all operands' match rules in my match rule
a61af66fc99e Initial load
duke
parents:
diff changeset
223 bool InstructForm::is_projection(FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 if ( ! _matrule) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 if (_matrule->find_type("Goto", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 if (_matrule->find_type("Return", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 if (_matrule->find_type("Rethrow", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 if (_matrule->find_type("TailCall",index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
231 if (_matrule->find_type("TailJump",index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 if (_matrule->find_type("Halt", index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // Recursive check on all operands' match rules in my match rule
a61af66fc99e Initial load
duke
parents:
diff changeset
238 bool InstructForm::is_parm(FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 if ( ! _matrule) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 if (_matrule->find_type("Parm",index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
246
11002
7fa25f5575c9 8016157: During CTW: C2: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG defined in this block
adlertz
parents: 10389
diff changeset
247 bool InstructForm::is_ideal_negD() const {
7fa25f5575c9 8016157: During CTW: C2: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG defined in this block
adlertz
parents: 10389
diff changeset
248 return (_matrule && _matrule->_rChild && strcmp(_matrule->_rChild->_opType, "NegD") == 0);
7fa25f5575c9 8016157: During CTW: C2: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG defined in this block
adlertz
parents: 10389
diff changeset
249 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // Return 'true' if this instruction matches an ideal 'Copy*' node
a61af66fc99e Initial load
duke
parents:
diff changeset
252 int InstructForm::is_ideal_copy() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 return _matrule ? _matrule->is_ideal_copy() : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // Return 'true' if this instruction is too complex to rematerialize.
a61af66fc99e Initial load
duke
parents:
diff changeset
257 int InstructForm::is_expensive() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // We can prove it is cheap if it has an empty encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // This helps with platform-specific nops like ThreadLocal and RoundFloat.
a61af66fc99e Initial load
duke
parents:
diff changeset
260 if (is_empty_encoding())
a61af66fc99e Initial load
duke
parents:
diff changeset
261 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 if (is_tls_instruction())
a61af66fc99e Initial load
duke
parents:
diff changeset
264 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 if (_matrule == NULL) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 return _matrule->is_expensive();
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // Has an empty encoding if _size is a constant zero or there
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // are no ins_encode tokens.
a61af66fc99e Initial load
duke
parents:
diff changeset
273 int InstructForm::is_empty_encoding() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 if (_insencode != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 _insencode->reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
276 if (_insencode->encode_class_iter() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
277 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280 if (_size != NULL && strcmp(_size, "0") == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
281 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 int InstructForm::is_tls_instruction() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 if (_ident != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
288 ( ! strcmp( _ident,"tlsLoadP") ||
a61af66fc99e Initial load
duke
parents:
diff changeset
289 ! strncmp(_ident,"tlsLoadP_",9)) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
290 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 if (_matrule != NULL && _insencode != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
294 const char* opType = _matrule->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
295 if (strcmp(opType, "Set")==0)
a61af66fc99e Initial load
duke
parents:
diff changeset
296 opType = _matrule->_rChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
297 if (strcmp(opType,"ThreadLocal")==0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 fprintf(stderr, "Warning: ThreadLocal instruction %s should be named 'tlsLoadP_*'\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
299 (_ident == NULL ? "NULL" : _ident));
a61af66fc99e Initial load
duke
parents:
diff changeset
300 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
305 }
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // Return 'true' if this instruction matches an ideal 'If' node
a61af66fc99e Initial load
duke
parents:
diff changeset
309 bool InstructForm::is_ideal_if() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 return _matrule->is_ideal_if();
a61af66fc99e Initial load
duke
parents:
diff changeset
313 }
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // Return 'true' if this instruction matches an ideal 'FastLock' node
a61af66fc99e Initial load
duke
parents:
diff changeset
316 bool InstructForm::is_ideal_fastlock() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
317 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 return _matrule->is_ideal_fastlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
320 }
a61af66fc99e Initial load
duke
parents:
diff changeset
321
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // Return 'true' if this instruction matches an ideal 'MemBarXXX' node
a61af66fc99e Initial load
duke
parents:
diff changeset
323 bool InstructForm::is_ideal_membar() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 return _matrule->is_ideal_membar();
a61af66fc99e Initial load
duke
parents:
diff changeset
327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 // Return 'true' if this instruction matches an ideal 'LoadPC' node
a61af66fc99e Initial load
duke
parents:
diff changeset
330 bool InstructForm::is_ideal_loadPC() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
331 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333 return _matrule->is_ideal_loadPC();
a61af66fc99e Initial load
duke
parents:
diff changeset
334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
335
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // Return 'true' if this instruction matches an ideal 'Box' node
a61af66fc99e Initial load
duke
parents:
diff changeset
337 bool InstructForm::is_ideal_box() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
338 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 return _matrule->is_ideal_box();
a61af66fc99e Initial load
duke
parents:
diff changeset
341 }
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // Return 'true' if this instruction matches an ideal 'Goto' node
a61af66fc99e Initial load
duke
parents:
diff changeset
344 bool InstructForm::is_ideal_goto() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
345 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 return _matrule->is_ideal_goto();
a61af66fc99e Initial load
duke
parents:
diff changeset
348 }
a61af66fc99e Initial load
duke
parents:
diff changeset
349
a61af66fc99e Initial load
duke
parents:
diff changeset
350 // Return 'true' if this instruction matches an ideal 'Jump' node
a61af66fc99e Initial load
duke
parents:
diff changeset
351 bool InstructForm::is_ideal_jump() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354 return _matrule->is_ideal_jump();
a61af66fc99e Initial load
duke
parents:
diff changeset
355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
356
3853
11211f7cb5a0 7079317: Incorrect branch's destination block in PrintoOptoAssembly output
kvn
parents: 3851
diff changeset
357 // Return 'true' if instruction matches ideal 'If' | 'Goto' | 'CountedLoopEnd'
0
a61af66fc99e Initial load
duke
parents:
diff changeset
358 bool InstructForm::is_ideal_branch() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
359 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
360
3853
11211f7cb5a0 7079317: Incorrect branch's destination block in PrintoOptoAssembly output
kvn
parents: 3851
diff changeset
361 return _matrule->is_ideal_if() || _matrule->is_ideal_goto();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // Return 'true' if this instruction matches an ideal 'Return' node
a61af66fc99e Initial load
duke
parents:
diff changeset
366 bool InstructForm::is_ideal_return() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 // Check MatchRule to see if the first entry is the ideal "Return" node
a61af66fc99e Initial load
duke
parents:
diff changeset
370 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
371 if (_matrule->find_type("Return",index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
372 if (_matrule->find_type("Rethrow",index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
373 if (_matrule->find_type("TailCall",index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
374 if (_matrule->find_type("TailJump",index)) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
375
a61af66fc99e Initial load
duke
parents:
diff changeset
376 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
378
a61af66fc99e Initial load
duke
parents:
diff changeset
379 // Return 'true' if this instruction matches an ideal 'Halt' node
a61af66fc99e Initial load
duke
parents:
diff changeset
380 bool InstructForm::is_ideal_halt() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
381 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
382 return _matrule && _matrule->find_type("Halt",index);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // Return 'true' if this instruction matches an ideal 'SafePoint' node
a61af66fc99e Initial load
duke
parents:
diff changeset
386 bool InstructForm::is_ideal_safepoint() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
387 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
388 return _matrule && _matrule->find_type("SafePoint",index);
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391 // Return 'true' if this instruction matches an ideal 'Nop' node
a61af66fc99e Initial load
duke
parents:
diff changeset
392 bool InstructForm::is_ideal_nop() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
393 return _ident && _ident[0] == 'N' && _ident[1] == 'o' && _ident[2] == 'p' && _ident[3] == '_';
a61af66fc99e Initial load
duke
parents:
diff changeset
394 }
a61af66fc99e Initial load
duke
parents:
diff changeset
395
a61af66fc99e Initial load
duke
parents:
diff changeset
396 bool InstructForm::is_ideal_control() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
397 if ( ! _matrule) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
398
3853
11211f7cb5a0 7079317: Incorrect branch's destination block in PrintoOptoAssembly output
kvn
parents: 3851
diff changeset
399 return is_ideal_return() || is_ideal_branch() || _matrule->is_ideal_jump() || is_ideal_halt();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // Return 'true' if this instruction matches an ideal 'Call' node
a61af66fc99e Initial load
duke
parents:
diff changeset
403 Form::CallType InstructForm::is_ideal_call() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
404 if( _matrule == NULL ) return Form::invalid_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
405
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // Check MatchRule to see if the first entry is the ideal "Call" node
a61af66fc99e Initial load
duke
parents:
diff changeset
407 int idx = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
408 if(_matrule->find_type("CallStaticJava",idx)) return Form::JAVA_STATIC;
a61af66fc99e Initial load
duke
parents:
diff changeset
409 idx = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 if(_matrule->find_type("Lock",idx)) return Form::JAVA_STATIC;
a61af66fc99e Initial load
duke
parents:
diff changeset
411 idx = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
412 if(_matrule->find_type("Unlock",idx)) return Form::JAVA_STATIC;
a61af66fc99e Initial load
duke
parents:
diff changeset
413 idx = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
414 if(_matrule->find_type("CallDynamicJava",idx)) return Form::JAVA_DYNAMIC;
a61af66fc99e Initial load
duke
parents:
diff changeset
415 idx = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
416 if(_matrule->find_type("CallRuntime",idx)) return Form::JAVA_RUNTIME;
a61af66fc99e Initial load
duke
parents:
diff changeset
417 idx = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
418 if(_matrule->find_type("CallLeaf",idx)) return Form::JAVA_LEAF;
a61af66fc99e Initial load
duke
parents:
diff changeset
419 idx = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
420 if(_matrule->find_type("CallLeafNoFP",idx)) return Form::JAVA_LEAF;
a61af66fc99e Initial load
duke
parents:
diff changeset
421 idx = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423 return Form::invalid_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 // Return 'true' if this instruction matches an ideal 'Load?' node
a61af66fc99e Initial load
duke
parents:
diff changeset
427 Form::DataType InstructForm::is_ideal_load() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
428 if( _matrule == NULL ) return Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 return _matrule->is_ideal_load();
a61af66fc99e Initial load
duke
parents:
diff changeset
431 }
a61af66fc99e Initial load
duke
parents:
diff changeset
432
855
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
433 // Return 'true' if this instruction matches an ideal 'LoadKlass' node
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
434 bool InstructForm::skip_antidep_check() const {
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
435 if( _matrule == NULL ) return false;
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
436
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
437 return _matrule->skip_antidep_check();
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
438 }
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
439
0
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // Return 'true' if this instruction matches an ideal 'Load?' node
a61af66fc99e Initial load
duke
parents:
diff changeset
441 Form::DataType InstructForm::is_ideal_store() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
442 if( _matrule == NULL ) return Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
443
a61af66fc99e Initial load
duke
parents:
diff changeset
444 return _matrule->is_ideal_store();
a61af66fc99e Initial load
duke
parents:
diff changeset
445 }
a61af66fc99e Initial load
duke
parents:
diff changeset
446
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
447 // Return 'true' if this instruction matches an ideal vector node
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
448 bool InstructForm::is_vector() const {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
449 if( _matrule == NULL ) return false;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
450
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
451 return _matrule->is_vector();
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
452 }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
453
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
454
0
a61af66fc99e Initial load
duke
parents:
diff changeset
455 // Return the input register that must match the output register
a61af66fc99e Initial load
duke
parents:
diff changeset
456 // If this is not required, return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
457 uint InstructForm::two_address(FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
458 uint matching_input = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
459 if(_components.count() == 0) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
460
a61af66fc99e Initial load
duke
parents:
diff changeset
461 _components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
462 Component *comp = _components.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
463 // Check if there is a DEF
a61af66fc99e Initial load
duke
parents:
diff changeset
464 if( comp->isa(Component::DEF) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // Check that this is a register
a61af66fc99e Initial load
duke
parents:
diff changeset
466 const char *def_type = comp->_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
467 const Form *form = globals[def_type];
a61af66fc99e Initial load
duke
parents:
diff changeset
468 OperandForm *op = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
469 if( op ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
470 if( op->constrained_reg_class() != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
471 op->interface_type(globals) == Form::register_interface ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
472 // Remember the local name for equality test later
a61af66fc99e Initial load
duke
parents:
diff changeset
473 const char *def_name = comp->_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // Check if a component has the same name and is a USE
a61af66fc99e Initial load
duke
parents:
diff changeset
475 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 if( comp->isa(Component::USE) && strcmp(comp->_name,def_name)==0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
477 return operand_position_format(def_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
478 }
a61af66fc99e Initial load
duke
parents:
diff changeset
479 } while( (comp = _components.iter()) != NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
482 }
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
485 }
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // when chaining a constant to an instruction, returns 'true' and sets opType
a61af66fc99e Initial load
duke
parents:
diff changeset
489 Form::DataType InstructForm::is_chain_of_constant(FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
490 const char *dummy = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
491 const char *dummy2 = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
492 return is_chain_of_constant(globals, dummy, dummy2);
a61af66fc99e Initial load
duke
parents:
diff changeset
493 }
a61af66fc99e Initial load
duke
parents:
diff changeset
494 Form::DataType InstructForm::is_chain_of_constant(FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
495 const char * &opTypeParam) {
a61af66fc99e Initial load
duke
parents:
diff changeset
496 const char *result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
497
a61af66fc99e Initial load
duke
parents:
diff changeset
498 return is_chain_of_constant(globals, opTypeParam, result);
a61af66fc99e Initial load
duke
parents:
diff changeset
499 }
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 Form::DataType InstructForm::is_chain_of_constant(FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
502 const char * &opTypeParam, const char * &resultParam) {
a61af66fc99e Initial load
duke
parents:
diff changeset
503 Form::DataType data_type = Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
504 if ( ! _matrule) return data_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
505
a61af66fc99e Initial load
duke
parents:
diff changeset
506 // !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // The source of the chain rule is 'position = 1'
a61af66fc99e Initial load
duke
parents:
diff changeset
508 uint position = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
509 const char *result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
510 const char *name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 const char *opType = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
512 // Here base_operand is looking for an ideal type to be returned (opType).
a61af66fc99e Initial load
duke
parents:
diff changeset
513 if ( _matrule->is_chain_rule(globals)
a61af66fc99e Initial load
duke
parents:
diff changeset
514 && _matrule->base_operand(position, globals, result, name, opType) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
515 data_type = ideal_to_const_type(opType);
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 // if it isn't an ideal constant type, just return
a61af66fc99e Initial load
duke
parents:
diff changeset
518 if ( data_type == Form::none ) return data_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
519
a61af66fc99e Initial load
duke
parents:
diff changeset
520 // Ideal constant types also adjust the opType parameter.
a61af66fc99e Initial load
duke
parents:
diff changeset
521 resultParam = result;
a61af66fc99e Initial load
duke
parents:
diff changeset
522 opTypeParam = opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
523 return data_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 return data_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 }
a61af66fc99e Initial load
duke
parents:
diff changeset
528
a61af66fc99e Initial load
duke
parents:
diff changeset
529 // Check if a simple chain rule
a61af66fc99e Initial load
duke
parents:
diff changeset
530 bool InstructForm::is_simple_chain_rule(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
531 if( _matrule && _matrule->sets_result()
a61af66fc99e Initial load
duke
parents:
diff changeset
532 && _matrule->_rChild->_lChild == NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
533 && globals[_matrule->_rChild->_opType]
a61af66fc99e Initial load
duke
parents:
diff changeset
534 && globals[_matrule->_rChild->_opType]->is_opclass() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
535 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
536 }
a61af66fc99e Initial load
duke
parents:
diff changeset
537 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
539
a61af66fc99e Initial load
duke
parents:
diff changeset
540 // check for structural rematerialization
a61af66fc99e Initial load
duke
parents:
diff changeset
541 bool InstructForm::rematerialize(FormDict &globals, RegisterForm *registers ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
542 bool rematerialize = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
543
a61af66fc99e Initial load
duke
parents:
diff changeset
544 Form::DataType data_type = is_chain_of_constant(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
545 if( data_type != Form::none )
a61af66fc99e Initial load
duke
parents:
diff changeset
546 rematerialize = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
547
a61af66fc99e Initial load
duke
parents:
diff changeset
548 // Constants
a61af66fc99e Initial load
duke
parents:
diff changeset
549 if( _components.count() == 1 && _components[0]->is(Component::USE_DEF) )
a61af66fc99e Initial load
duke
parents:
diff changeset
550 rematerialize = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
551
a61af66fc99e Initial load
duke
parents:
diff changeset
552 // Pseudo-constants (values easily available to the runtime)
a61af66fc99e Initial load
duke
parents:
diff changeset
553 if (is_empty_encoding() && is_tls_instruction())
a61af66fc99e Initial load
duke
parents:
diff changeset
554 rematerialize = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
555
a61af66fc99e Initial load
duke
parents:
diff changeset
556 // 1-input, 1-output, such as copies or increments.
a61af66fc99e Initial load
duke
parents:
diff changeset
557 if( _components.count() == 2 &&
a61af66fc99e Initial load
duke
parents:
diff changeset
558 _components[0]->is(Component::DEF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
559 _components[1]->isa(Component::USE) )
a61af66fc99e Initial load
duke
parents:
diff changeset
560 rematerialize = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
561
a61af66fc99e Initial load
duke
parents:
diff changeset
562 // Check for an ideal 'Load?' and eliminate rematerialize option
a61af66fc99e Initial load
duke
parents:
diff changeset
563 if ( is_ideal_load() != Form::none || // Ideal load? Do not rematerialize
a61af66fc99e Initial load
duke
parents:
diff changeset
564 is_ideal_copy() != Form::none || // Ideal copy? Do not rematerialize
a61af66fc99e Initial load
duke
parents:
diff changeset
565 is_expensive() != Form::none) { // Expensive? Do not rematerialize
a61af66fc99e Initial load
duke
parents:
diff changeset
566 rematerialize = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
568
a61af66fc99e Initial load
duke
parents:
diff changeset
569 // Always rematerialize the flags. They are more expensive to save &
a61af66fc99e Initial load
duke
parents:
diff changeset
570 // restore than to recompute (and possibly spill the compare's inputs).
a61af66fc99e Initial load
duke
parents:
diff changeset
571 if( _components.count() >= 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
572 Component *c = _components[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
573 const Form *form = globals[c->_type];
a61af66fc99e Initial load
duke
parents:
diff changeset
574 OperandForm *opform = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
575 if( opform ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
576 // Avoid the special stack_slots register classes
a61af66fc99e Initial load
duke
parents:
diff changeset
577 const char *rc_name = opform->constrained_reg_class();
a61af66fc99e Initial load
duke
parents:
diff changeset
578 if( rc_name ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
579 if( strcmp(rc_name,"stack_slots") ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
580 // Check for ideal_type of RegFlags
a61af66fc99e Initial load
duke
parents:
diff changeset
581 const char *type = opform->ideal_type( globals, registers );
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
582 if( (type != NULL) && !strcmp(type, "RegFlags") )
0
a61af66fc99e Initial load
duke
parents:
diff changeset
583 rematerialize = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
584 } else
a61af66fc99e Initial load
duke
parents:
diff changeset
585 rematerialize = false; // Do not rematerialize things target stk
a61af66fc99e Initial load
duke
parents:
diff changeset
586 }
a61af66fc99e Initial load
duke
parents:
diff changeset
587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
589
a61af66fc99e Initial load
duke
parents:
diff changeset
590 return rematerialize;
a61af66fc99e Initial load
duke
parents:
diff changeset
591 }
a61af66fc99e Initial load
duke
parents:
diff changeset
592
a61af66fc99e Initial load
duke
parents:
diff changeset
593 // loads from memory, so must check for anti-dependence
a61af66fc99e Initial load
duke
parents:
diff changeset
594 bool InstructForm::needs_anti_dependence_check(FormDict &globals) const {
855
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
595 if ( skip_antidep_check() ) return false;
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
596
0
a61af66fc99e Initial load
duke
parents:
diff changeset
597 // Machine independent loads must be checked for anti-dependences
a61af66fc99e Initial load
duke
parents:
diff changeset
598 if( is_ideal_load() != Form::none ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
599
a61af66fc99e Initial load
duke
parents:
diff changeset
600 // !!!!! !!!!! !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
601 // TEMPORARY
a61af66fc99e Initial load
duke
parents:
diff changeset
602 // if( is_simple_chain_rule(globals) ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
603
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 628
diff changeset
604 // String.(compareTo/equals/indexOf) and Arrays.equals use many memorys edges,
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 628
diff changeset
605 // but writes none
0
a61af66fc99e Initial load
duke
parents:
diff changeset
606 if( _matrule && _matrule->_rChild &&
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 628
diff changeset
607 ( strcmp(_matrule->_rChild->_opType,"StrComp" )==0 ||
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 628
diff changeset
608 strcmp(_matrule->_rChild->_opType,"StrEquals" )==0 ||
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 628
diff changeset
609 strcmp(_matrule->_rChild->_opType,"StrIndexOf" )==0 ||
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 628
diff changeset
610 strcmp(_matrule->_rChild->_opType,"AryEq" )==0 ))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
611 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
612
a61af66fc99e Initial load
duke
parents:
diff changeset
613 // Check if instruction has a USE of a memory operand class, but no defs
a61af66fc99e Initial load
duke
parents:
diff changeset
614 bool USE_of_memory = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
615 bool DEF_of_memory = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
616 Component *comp = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
617 ComponentList &components = (ComponentList &)_components;
a61af66fc99e Initial load
duke
parents:
diff changeset
618
a61af66fc99e Initial load
duke
parents:
diff changeset
619 components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
620 while( (comp = components.iter()) != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
621 const Form *form = globals[comp->_type];
a61af66fc99e Initial load
duke
parents:
diff changeset
622 if( !form ) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
623 OpClassForm *op = form->is_opclass();
a61af66fc99e Initial load
duke
parents:
diff changeset
624 if( !op ) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
625 if( form->interface_type(globals) == Form::memory_interface ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
626 if( comp->isa(Component::USE) ) USE_of_memory = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
627 if( comp->isa(Component::DEF) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
628 OperandForm *oper = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
629 if( oper && oper->is_user_name_for_sReg() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
630 // Stack slots are unaliased memory handled by allocator
a61af66fc99e Initial load
duke
parents:
diff changeset
631 oper = oper; // debug stopping point !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
632 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
633 DEF_of_memory = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
636 }
a61af66fc99e Initial load
duke
parents:
diff changeset
637 }
a61af66fc99e Initial load
duke
parents:
diff changeset
638 return (USE_of_memory && !DEF_of_memory);
a61af66fc99e Initial load
duke
parents:
diff changeset
639 }
a61af66fc99e Initial load
duke
parents:
diff changeset
640
a61af66fc99e Initial load
duke
parents:
diff changeset
641
a61af66fc99e Initial load
duke
parents:
diff changeset
642 bool InstructForm::is_wide_memory_kill(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
643 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
644 if( !_matrule->_opType ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
645
a61af66fc99e Initial load
duke
parents:
diff changeset
646 if( strcmp(_matrule->_opType,"MemBarRelease") == 0 ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
647 if( strcmp(_matrule->_opType,"MemBarAcquire") == 0 ) return true;
3849
f1c12354c3f7 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 3842
diff changeset
648 if( strcmp(_matrule->_opType,"MemBarReleaseLock") == 0 ) return true;
f1c12354c3f7 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 3842
diff changeset
649 if( strcmp(_matrule->_opType,"MemBarAcquireLock") == 0 ) return true;
4763
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4120
diff changeset
650 if( strcmp(_matrule->_opType,"MemBarStoreStore") == 0 ) return true;
14439
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14434
diff changeset
651 if( strcmp(_matrule->_opType,"StoreFence") == 0 ) return true;
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14434
diff changeset
652 if( strcmp(_matrule->_opType,"LoadFence") == 0 ) return true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
653
a61af66fc99e Initial load
duke
parents:
diff changeset
654 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
655 }
a61af66fc99e Initial load
duke
parents:
diff changeset
656
a61af66fc99e Initial load
duke
parents:
diff changeset
657 int InstructForm::memory_operand(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
658 // Machine independent loads must be checked for anti-dependences
a61af66fc99e Initial load
duke
parents:
diff changeset
659 // Check if instruction has a USE of a memory operand class, or a def.
a61af66fc99e Initial load
duke
parents:
diff changeset
660 int USE_of_memory = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
661 int DEF_of_memory = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
662 const char* last_memory_DEF = NULL; // to test DEF/USE pairing in asserts
17729
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
663 const char* last_memory_USE = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
664 Component *unique = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
665 Component *comp = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
666 ComponentList &components = (ComponentList &)_components;
a61af66fc99e Initial load
duke
parents:
diff changeset
667
a61af66fc99e Initial load
duke
parents:
diff changeset
668 components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
669 while( (comp = components.iter()) != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
670 const Form *form = globals[comp->_type];
a61af66fc99e Initial load
duke
parents:
diff changeset
671 if( !form ) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
672 OpClassForm *op = form->is_opclass();
a61af66fc99e Initial load
duke
parents:
diff changeset
673 if( !op ) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
674 if( op->stack_slots_only(globals) ) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
675 if( form->interface_type(globals) == Form::memory_interface ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
676 if( comp->isa(Component::DEF) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
677 last_memory_DEF = comp->_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
678 DEF_of_memory++;
a61af66fc99e Initial load
duke
parents:
diff changeset
679 unique = comp;
a61af66fc99e Initial load
duke
parents:
diff changeset
680 } else if( comp->isa(Component::USE) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
681 if( last_memory_DEF != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
682 assert(0 == strcmp(last_memory_DEF, comp->_name), "every memory DEF is followed by a USE of the same name");
a61af66fc99e Initial load
duke
parents:
diff changeset
683 last_memory_DEF = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
17729
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
685 // Handles same memory being used multiple times in the case of BMI1 instructions.
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
686 if (last_memory_USE != NULL) {
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
687 if (strcmp(comp->_name, last_memory_USE) != 0) {
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
688 USE_of_memory++;
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
689 }
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
690 } else {
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
691 USE_of_memory++;
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
692 }
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
693 last_memory_USE = comp->_name;
8a8ff6b577ed 8031321: Support Intel bit manipulation instructions
iveresov
parents: 14223
diff changeset
694
0
a61af66fc99e Initial load
duke
parents:
diff changeset
695 if (DEF_of_memory == 0) // defs take precedence
a61af66fc99e Initial load
duke
parents:
diff changeset
696 unique = comp;
a61af66fc99e Initial load
duke
parents:
diff changeset
697 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
698 assert(last_memory_DEF == NULL, "unpaired memory DEF");
a61af66fc99e Initial load
duke
parents:
diff changeset
699 }
a61af66fc99e Initial load
duke
parents:
diff changeset
700 }
a61af66fc99e Initial load
duke
parents:
diff changeset
701 }
a61af66fc99e Initial load
duke
parents:
diff changeset
702 assert(last_memory_DEF == NULL, "unpaired memory DEF");
a61af66fc99e Initial load
duke
parents:
diff changeset
703 assert(USE_of_memory >= DEF_of_memory, "unpaired memory DEF");
a61af66fc99e Initial load
duke
parents:
diff changeset
704 USE_of_memory -= DEF_of_memory; // treat paired DEF/USE as one occurrence
a61af66fc99e Initial load
duke
parents:
diff changeset
705 if( (USE_of_memory + DEF_of_memory) > 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
706 if( is_simple_chain_rule(globals) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
707 //fprintf(stderr, "Warning: chain rule is not really a memory user.\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
708 //((InstructForm*)this)->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
709 // Preceding code prints nothing on sparc and these insns on intel:
a61af66fc99e Initial load
duke
parents:
diff changeset
710 // leaP8 leaP32 leaPIdxOff leaPIdxScale leaPIdxScaleOff leaP8 leaP32
a61af66fc99e Initial load
duke
parents:
diff changeset
711 // leaPIdxOff leaPIdxScale leaPIdxScaleOff
a61af66fc99e Initial load
duke
parents:
diff changeset
712 return NO_MEMORY_OPERAND;
a61af66fc99e Initial load
duke
parents:
diff changeset
713 }
a61af66fc99e Initial load
duke
parents:
diff changeset
714
a61af66fc99e Initial load
duke
parents:
diff changeset
715 if( DEF_of_memory == 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
716 assert(unique != NULL, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
717 if( USE_of_memory == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
718 // unique def, no uses
a61af66fc99e Initial load
duke
parents:
diff changeset
719 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
720 // // unique def, some uses
a61af66fc99e Initial load
duke
parents:
diff changeset
721 // // must return bottom unless all uses match def
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // unique = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
723 }
a61af66fc99e Initial load
duke
parents:
diff changeset
724 } else if( DEF_of_memory > 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
725 // multiple defs, don't care about uses
a61af66fc99e Initial load
duke
parents:
diff changeset
726 unique = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
727 } else if( USE_of_memory == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
728 // unique use, no defs
a61af66fc99e Initial load
duke
parents:
diff changeset
729 assert(unique != NULL, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
730 } else if( USE_of_memory > 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
731 // multiple uses, no defs
a61af66fc99e Initial load
duke
parents:
diff changeset
732 unique = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
733 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
734 assert(false, "bad case analysis");
a61af66fc99e Initial load
duke
parents:
diff changeset
735 }
a61af66fc99e Initial load
duke
parents:
diff changeset
736 // process the unique DEF or USE, if there is one
a61af66fc99e Initial load
duke
parents:
diff changeset
737 if( unique == NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
738 return MANY_MEMORY_OPERANDS;
a61af66fc99e Initial load
duke
parents:
diff changeset
739 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
740 int pos = components.operand_position(unique->_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
741 if( unique->isa(Component::DEF) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
742 pos += 1; // get corresponding USE from DEF
a61af66fc99e Initial load
duke
parents:
diff changeset
743 }
a61af66fc99e Initial load
duke
parents:
diff changeset
744 assert(pos >= 1, "I was just looking at it!");
a61af66fc99e Initial load
duke
parents:
diff changeset
745 return pos;
a61af66fc99e Initial load
duke
parents:
diff changeset
746 }
a61af66fc99e Initial load
duke
parents:
diff changeset
747 }
a61af66fc99e Initial load
duke
parents:
diff changeset
748
a61af66fc99e Initial load
duke
parents:
diff changeset
749 // missed the memory op??
a61af66fc99e Initial load
duke
parents:
diff changeset
750 if( true ) { // %%% should not be necessary
a61af66fc99e Initial load
duke
parents:
diff changeset
751 if( is_ideal_store() != Form::none ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 fprintf(stderr, "Warning: cannot find memory opnd in instr.\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
753 ((InstructForm*)this)->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
754 // pretend it has multiple defs and uses
a61af66fc99e Initial load
duke
parents:
diff changeset
755 return MANY_MEMORY_OPERANDS;
a61af66fc99e Initial load
duke
parents:
diff changeset
756 }
a61af66fc99e Initial load
duke
parents:
diff changeset
757 if( is_ideal_load() != Form::none ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
758 fprintf(stderr, "Warning: cannot find memory opnd in instr.\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
759 ((InstructForm*)this)->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
760 // pretend it has multiple uses and no defs
a61af66fc99e Initial load
duke
parents:
diff changeset
761 return MANY_MEMORY_OPERANDS;
a61af66fc99e Initial load
duke
parents:
diff changeset
762 }
a61af66fc99e Initial load
duke
parents:
diff changeset
763 }
a61af66fc99e Initial load
duke
parents:
diff changeset
764
a61af66fc99e Initial load
duke
parents:
diff changeset
765 return NO_MEMORY_OPERAND;
a61af66fc99e Initial load
duke
parents:
diff changeset
766 }
a61af66fc99e Initial load
duke
parents:
diff changeset
767
a61af66fc99e Initial load
duke
parents:
diff changeset
768
a61af66fc99e Initial load
duke
parents:
diff changeset
769 // This instruction captures the machine-independent bottom_type
a61af66fc99e Initial load
duke
parents:
diff changeset
770 // Expected use is for pointer vs oop determination for LoadP
1541
b5fdf39b9749 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 1396
diff changeset
771 bool InstructForm::captures_bottom_type(FormDict &globals) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
772 if( _matrule && _matrule->_rChild &&
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
773 (!strcmp(_matrule->_rChild->_opType,"CastPP") || // new result type
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
774 !strcmp(_matrule->_rChild->_opType,"CastX2P") || // new result type
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
775 !strcmp(_matrule->_rChild->_opType,"DecodeN") ||
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
776 !strcmp(_matrule->_rChild->_opType,"EncodeP") ||
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
777 !strcmp(_matrule->_rChild->_opType,"DecodeNKlass") ||
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
778 !strcmp(_matrule->_rChild->_opType,"EncodePKlass") ||
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
779 !strcmp(_matrule->_rChild->_opType,"LoadN") ||
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
780 !strcmp(_matrule->_rChild->_opType,"LoadNKlass") ||
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
781 !strcmp(_matrule->_rChild->_opType,"CreateEx") || // type of exception
8117
706c919d3b56 8007722: C2: "assert(tp->base() != Type::AnyPtr) failed: not a bare pointer" at machnode.cpp:376
roland
parents: 7637
diff changeset
782 !strcmp(_matrule->_rChild->_opType,"CheckCastPP") ||
706c919d3b56 8007722: C2: "assert(tp->base() != Type::AnyPtr) failed: not a bare pointer" at machnode.cpp:376
roland
parents: 7637
diff changeset
783 !strcmp(_matrule->_rChild->_opType,"GetAndSetP") ||
706c919d3b56 8007722: C2: "assert(tp->base() != Type::AnyPtr) failed: not a bare pointer" at machnode.cpp:376
roland
parents: 7637
diff changeset
784 !strcmp(_matrule->_rChild->_opType,"GetAndSetN")) ) return true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
785 else if ( is_ideal_load() == Form::idealP ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
786 else if ( is_ideal_store() != Form::none ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
787
1541
b5fdf39b9749 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 1396
diff changeset
788 if (needs_base_oop_edge(globals)) return true;
b5fdf39b9749 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 1396
diff changeset
789
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
790 if (is_vector()) return true;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
791 if (is_mach_constant()) return true;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
792
0
a61af66fc99e Initial load
duke
parents:
diff changeset
793 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
794 }
a61af66fc99e Initial load
duke
parents:
diff changeset
795
a61af66fc99e Initial load
duke
parents:
diff changeset
796
a61af66fc99e Initial load
duke
parents:
diff changeset
797 // Access instr_cost attribute or return NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
798 const char* InstructForm::cost() {
a61af66fc99e Initial load
duke
parents:
diff changeset
799 for (Attribute* cur = _attribs; cur != NULL; cur = (Attribute*)cur->_next) {
a61af66fc99e Initial load
duke
parents:
diff changeset
800 if( strcmp(cur->_ident,AttributeForm::_ins_cost) == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
801 return cur->_val;
a61af66fc99e Initial load
duke
parents:
diff changeset
802 }
a61af66fc99e Initial load
duke
parents:
diff changeset
803 }
a61af66fc99e Initial load
duke
parents:
diff changeset
804 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
806
a61af66fc99e Initial load
duke
parents:
diff changeset
807 // Return count of top-level operands.
a61af66fc99e Initial load
duke
parents:
diff changeset
808 uint InstructForm::num_opnds() {
a61af66fc99e Initial load
duke
parents:
diff changeset
809 int num_opnds = _components.num_operands();
a61af66fc99e Initial load
duke
parents:
diff changeset
810
a61af66fc99e Initial load
duke
parents:
diff changeset
811 // Need special handling for matching some ideal nodes
a61af66fc99e Initial load
duke
parents:
diff changeset
812 // i.e. Matching a return node
a61af66fc99e Initial load
duke
parents:
diff changeset
813 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
814 if( _matrule ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
815 if( strcmp(_matrule->_opType,"Return" )==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
816 strcmp(_matrule->_opType,"Halt" )==0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
817 return 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
818 }
a61af66fc99e Initial load
duke
parents:
diff changeset
819 */
a61af66fc99e Initial load
duke
parents:
diff changeset
820 return num_opnds;
a61af66fc99e Initial load
duke
parents:
diff changeset
821 }
a61af66fc99e Initial load
duke
parents:
diff changeset
822
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
823 const char* InstructForm::opnd_ident(int idx) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
824 return _components.at(idx)->_name;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
825 }
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
826
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
827 const char* InstructForm::unique_opnd_ident(uint idx) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
828 uint i;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
829 for (i = 1; i < num_opnds(); ++i) {
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
830 if (unique_opnds_idx(i) == idx) {
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
831 break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
832 }
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
833 }
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
834 return (_components.at(i) != NULL) ? _components.at(i)->_name : "";
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
835 }
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
836
0
a61af66fc99e Initial load
duke
parents:
diff changeset
837 // Return count of unmatched operands.
a61af66fc99e Initial load
duke
parents:
diff changeset
838 uint InstructForm::num_post_match_opnds() {
a61af66fc99e Initial load
duke
parents:
diff changeset
839 uint num_post_match_opnds = _components.count();
a61af66fc99e Initial load
duke
parents:
diff changeset
840 uint num_match_opnds = _components.match_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
841 num_post_match_opnds = num_post_match_opnds - num_match_opnds;
a61af66fc99e Initial load
duke
parents:
diff changeset
842
a61af66fc99e Initial load
duke
parents:
diff changeset
843 return num_post_match_opnds;
a61af66fc99e Initial load
duke
parents:
diff changeset
844 }
a61af66fc99e Initial load
duke
parents:
diff changeset
845
a61af66fc99e Initial load
duke
parents:
diff changeset
846 // Return the number of leaves below this complex operand
a61af66fc99e Initial load
duke
parents:
diff changeset
847 uint InstructForm::num_consts(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
848 if ( ! _matrule) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
849
a61af66fc99e Initial load
duke
parents:
diff changeset
850 // This is a recursive invocation on all operands in the matchrule
a61af66fc99e Initial load
duke
parents:
diff changeset
851 return _matrule->num_consts(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
852 }
a61af66fc99e Initial load
duke
parents:
diff changeset
853
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // Constants in match rule with specified type
a61af66fc99e Initial load
duke
parents:
diff changeset
855 uint InstructForm::num_consts(FormDict &globals, Form::DataType type) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
856 if ( ! _matrule) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
857
a61af66fc99e Initial load
duke
parents:
diff changeset
858 // This is a recursive invocation on all operands in the matchrule
a61af66fc99e Initial load
duke
parents:
diff changeset
859 return _matrule->num_consts(globals, type);
a61af66fc99e Initial load
duke
parents:
diff changeset
860 }
a61af66fc99e Initial load
duke
parents:
diff changeset
861
a61af66fc99e Initial load
duke
parents:
diff changeset
862
a61af66fc99e Initial load
duke
parents:
diff changeset
863 // Return the register class associated with 'leaf'.
a61af66fc99e Initial load
duke
parents:
diff changeset
864 const char *InstructForm::out_reg_class(FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
865 assert( false, "InstructForm::out_reg_class(FormDict &globals); Not Implemented");
a61af66fc99e Initial load
duke
parents:
diff changeset
866
a61af66fc99e Initial load
duke
parents:
diff changeset
867 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
868 }
a61af66fc99e Initial load
duke
parents:
diff changeset
869
a61af66fc99e Initial load
duke
parents:
diff changeset
870
a61af66fc99e Initial load
duke
parents:
diff changeset
871
a61af66fc99e Initial load
duke
parents:
diff changeset
872 // Lookup the starting position of inputs we are interested in wrt. ideal nodes
a61af66fc99e Initial load
duke
parents:
diff changeset
873 uint InstructForm::oper_input_base(FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
874 if( !_matrule ) return 1; // Skip control for most nodes
a61af66fc99e Initial load
duke
parents:
diff changeset
875
a61af66fc99e Initial load
duke
parents:
diff changeset
876 // Need special handling for matching some ideal nodes
a61af66fc99e Initial load
duke
parents:
diff changeset
877 // i.e. Matching a return node
a61af66fc99e Initial load
duke
parents:
diff changeset
878 if( strcmp(_matrule->_opType,"Return" )==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
879 strcmp(_matrule->_opType,"Rethrow" )==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
880 strcmp(_matrule->_opType,"TailCall" )==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
881 strcmp(_matrule->_opType,"TailJump" )==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
882 strcmp(_matrule->_opType,"SafePoint" )==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
883 strcmp(_matrule->_opType,"Halt" )==0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
884 return AdlcVMDeps::Parms; // Skip the machine-state edges
a61af66fc99e Initial load
duke
parents:
diff changeset
885
a61af66fc99e Initial load
duke
parents:
diff changeset
886 if( _matrule->_rChild &&
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 855
diff changeset
887 ( strcmp(_matrule->_rChild->_opType,"AryEq" )==0 ||
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 855
diff changeset
888 strcmp(_matrule->_rChild->_opType,"StrComp" )==0 ||
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 628
diff changeset
889 strcmp(_matrule->_rChild->_opType,"StrEquals" )==0 ||
7637
b30b3c2a0cf2 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 6850
diff changeset
890 strcmp(_matrule->_rChild->_opType,"StrIndexOf")==0 ||
b30b3c2a0cf2 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 6850
diff changeset
891 strcmp(_matrule->_rChild->_opType,"EncodeISOArray")==0)) {
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 855
diff changeset
892 // String.(compareTo/equals/indexOf) and Arrays.equals
7637
b30b3c2a0cf2 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 6850
diff changeset
893 // and sun.nio.cs.iso8859_1$Encoder.EncodeISOArray
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 855
diff changeset
894 // take 1 control and 1 memory edges.
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 855
diff changeset
895 return 2;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
896 }
a61af66fc99e Initial load
duke
parents:
diff changeset
897
a61af66fc99e Initial load
duke
parents:
diff changeset
898 // Check for handling of 'Memory' input/edge in the ideal world.
a61af66fc99e Initial load
duke
parents:
diff changeset
899 // The AD file writer is shielded from knowledge of these edges.
a61af66fc99e Initial load
duke
parents:
diff changeset
900 int base = 1; // Skip control
a61af66fc99e Initial load
duke
parents:
diff changeset
901 base += _matrule->needs_ideal_memory_edge(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
902
a61af66fc99e Initial load
duke
parents:
diff changeset
903 // Also skip the base-oop value for uses of derived oops.
a61af66fc99e Initial load
duke
parents:
diff changeset
904 // The AD file writer is shielded from knowledge of these edges.
a61af66fc99e Initial load
duke
parents:
diff changeset
905 base += needs_base_oop_edge(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
906
a61af66fc99e Initial load
duke
parents:
diff changeset
907 return base;
a61af66fc99e Initial load
duke
parents:
diff changeset
908 }
a61af66fc99e Initial load
duke
parents:
diff changeset
909
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
910 // This function determines the order of the MachOper in _opnds[]
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
911 // by writing the operand names into the _components list.
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
912 //
0
a61af66fc99e Initial load
duke
parents:
diff changeset
913 // Implementation does not modify state of internal structures
a61af66fc99e Initial load
duke
parents:
diff changeset
914 void InstructForm::build_components() {
a61af66fc99e Initial load
duke
parents:
diff changeset
915 // Add top-level operands to the components
a61af66fc99e Initial load
duke
parents:
diff changeset
916 if (_matrule) _matrule->append_components(_localNames, _components);
a61af66fc99e Initial load
duke
parents:
diff changeset
917
a61af66fc99e Initial load
duke
parents:
diff changeset
918 // Add parameters that "do not appear in match rule".
a61af66fc99e Initial load
duke
parents:
diff changeset
919 bool has_temp = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
920 const char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
921 const char *kill_name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
922 for (_parameters.reset(); (name = _parameters.iter()) != NULL;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
923 OperandForm *opForm = (OperandForm*)_localNames[name];
a61af66fc99e Initial load
duke
parents:
diff changeset
924
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
925 Effect* e = NULL;
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
926 {
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
927 const Form* form = _effects[name];
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
928 e = form ? form->is_effect() : NULL;
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
929 }
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
930
0
a61af66fc99e Initial load
duke
parents:
diff changeset
931 if (e != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
932 has_temp |= e->is(Component::TEMP);
a61af66fc99e Initial load
duke
parents:
diff changeset
933
a61af66fc99e Initial load
duke
parents:
diff changeset
934 // KILLs must be declared after any TEMPs because TEMPs are real
a61af66fc99e Initial load
duke
parents:
diff changeset
935 // uses so their operand numbering must directly follow the real
a61af66fc99e Initial load
duke
parents:
diff changeset
936 // inputs from the match rule. Fixing the numbering seems
a61af66fc99e Initial load
duke
parents:
diff changeset
937 // complex so simply enforce the restriction during parse.
a61af66fc99e Initial load
duke
parents:
diff changeset
938 if (kill_name != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
939 e->isa(Component::TEMP) && !e->isa(Component::DEF)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
940 OperandForm* kill = (OperandForm*)_localNames[kill_name];
a61af66fc99e Initial load
duke
parents:
diff changeset
941 globalAD->syntax_err(_linenum, "%s: %s %s must be at the end of the argument list\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
942 _ident, kill->_ident, kill_name);
602
ed6404fac86b 6810855: KILL vs. TEMP ordering restrictions are too strong
never
parents: 599
diff changeset
943 } else if (e->isa(Component::KILL) && !e->isa(Component::USE)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
944 kill_name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
945 }
a61af66fc99e Initial load
duke
parents:
diff changeset
946 }
a61af66fc99e Initial load
duke
parents:
diff changeset
947
a61af66fc99e Initial load
duke
parents:
diff changeset
948 const Component *component = _components.search(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
949 if ( component == NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
950 if (e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
951 _components.insert(name, opForm->_ident, e->_use_def, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
952 component = _components.search(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
953 if (component->isa(Component::USE) && !component->isa(Component::TEMP) && _matrule) {
a61af66fc99e Initial load
duke
parents:
diff changeset
954 const Form *form = globalAD->globalNames()[component->_type];
a61af66fc99e Initial load
duke
parents:
diff changeset
955 assert( form, "component type must be a defined form");
a61af66fc99e Initial load
duke
parents:
diff changeset
956 OperandForm *op = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
957 if (op->_interface && op->_interface->is_RegInterface()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
958 globalAD->syntax_err(_linenum, "%s: illegal USE of non-input: %s %s\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
959 _ident, opForm->_ident, name);
a61af66fc99e Initial load
duke
parents:
diff changeset
960 }
a61af66fc99e Initial load
duke
parents:
diff changeset
961 }
a61af66fc99e Initial load
duke
parents:
diff changeset
962 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
963 // This would be a nice warning but it triggers in a few places in a benign way
a61af66fc99e Initial load
duke
parents:
diff changeset
964 // if (_matrule != NULL && !expands()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // globalAD->syntax_err(_linenum, "%s: %s %s not mentioned in effect or match rule\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
966 // _ident, opForm->_ident, name);
a61af66fc99e Initial load
duke
parents:
diff changeset
967 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
968 _components.insert(name, opForm->_ident, Component::INVALID, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
969 }
a61af66fc99e Initial load
duke
parents:
diff changeset
970 }
a61af66fc99e Initial load
duke
parents:
diff changeset
971 else if (e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
972 // Component was found in the list
a61af66fc99e Initial load
duke
parents:
diff changeset
973 // Check if there is a new effect that requires an extra component.
a61af66fc99e Initial load
duke
parents:
diff changeset
974 // This happens when adding 'USE' to a component that is not yet one.
a61af66fc99e Initial load
duke
parents:
diff changeset
975 if ((!component->isa( Component::USE) && ((e->_use_def & Component::USE) != 0))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
976 if (component->isa(Component::USE) && _matrule) {
a61af66fc99e Initial load
duke
parents:
diff changeset
977 const Form *form = globalAD->globalNames()[component->_type];
a61af66fc99e Initial load
duke
parents:
diff changeset
978 assert( form, "component type must be a defined form");
a61af66fc99e Initial load
duke
parents:
diff changeset
979 OperandForm *op = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
980 if (op->_interface && op->_interface->is_RegInterface()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
981 globalAD->syntax_err(_linenum, "%s: illegal USE of non-input: %s %s\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
982 _ident, opForm->_ident, name);
a61af66fc99e Initial load
duke
parents:
diff changeset
983 }
a61af66fc99e Initial load
duke
parents:
diff changeset
984 }
a61af66fc99e Initial load
duke
parents:
diff changeset
985 _components.insert(name, opForm->_ident, e->_use_def, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
986 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
987 Component *comp = (Component*)component;
a61af66fc99e Initial load
duke
parents:
diff changeset
988 comp->promote_use_def_info(e->_use_def);
a61af66fc99e Initial load
duke
parents:
diff changeset
989 }
a61af66fc99e Initial load
duke
parents:
diff changeset
990 // Component positions are zero based.
a61af66fc99e Initial load
duke
parents:
diff changeset
991 int pos = _components.operand_position(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
992 assert( ! (component->isa(Component::DEF) && (pos >= 1)),
a61af66fc99e Initial load
duke
parents:
diff changeset
993 "Component::DEF can only occur in the first position");
a61af66fc99e Initial load
duke
parents:
diff changeset
994 }
a61af66fc99e Initial load
duke
parents:
diff changeset
995 }
a61af66fc99e Initial load
duke
parents:
diff changeset
996
a61af66fc99e Initial load
duke
parents:
diff changeset
997 // Resolving the interactions between expand rules and TEMPs would
a61af66fc99e Initial load
duke
parents:
diff changeset
998 // be complex so simply disallow it.
a61af66fc99e Initial load
duke
parents:
diff changeset
999 if (_matrule == NULL && has_temp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 globalAD->syntax_err(_linenum, "%s: TEMPs without match rule isn't supported\n", _ident);
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1002
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1005
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 // Return zero-based position in component list; -1 if not in list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 int InstructForm::operand_position(const char *name, int usedef) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1008 return unique_opnds_idx(_components.operand_position(name, usedef, this));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1010
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 int InstructForm::operand_position_format(const char *name) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1012 return unique_opnds_idx(_components.operand_position_format(name, this));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1014
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 // Return zero-based position in component list; -1 if not in list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 int InstructForm::label_position() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 return unique_opnds_idx(_components.label_position());
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1019
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 int InstructForm::method_position() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 return unique_opnds_idx(_components.method_position());
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1023
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 // Return number of relocation entries needed for this instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 uint InstructForm::reloc(FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 uint reloc_entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 // Check for "Call" nodes
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 if ( is_ideal_call() ) ++reloc_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 if ( is_ideal_return() ) ++reloc_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 if ( is_ideal_safepoint() ) ++reloc_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
1031
a61af66fc99e Initial load
duke
parents:
diff changeset
1032
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 // Check if operands MAYBE oop pointers, by checking for ConP elements
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 // Proceed through the leaves of the match-tree and check for ConPs
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 if ( _matrule != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 uint position = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 const char *result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 const char *name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 const char *opType = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 while (_matrule->base_operand(position, globals, result, name, opType)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 if ( strcmp(opType,"ConP") == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 #ifdef SPARC
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 reloc_entries += 2; // 1 for sethi + 1 for setlo
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 ++reloc_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1051
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 // Above is only a conservative estimate
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 // because it did not check contents of operand classes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 // !!!!! !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 // Add 1 to reloc info for each operand class in the component list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 Component *comp;
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 _components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 while ( (comp = _components.iter()) != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 const Form *form = globals[comp->_type];
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 assert( form, "Did not find component's type in global names");
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 const OpClassForm *opc = form->is_opclass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 const OperandForm *oper = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 if ( opc && (oper == NULL) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 ++reloc_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 } else if ( oper ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 // floats and doubles loaded out of method's constant pool require reloc info
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 Form::DataType type = oper->is_base_constant(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 if ( (type == Form::idealF) || (type == Form::idealD) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 ++reloc_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1073
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 // Float and Double constants may come from the CodeBuffer table
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 // and require relocatable addresses for access
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 // !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 // Check for any component being an immediate float or double.
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 Form::DataType data_type = is_chain_of_constant(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 if( data_type==idealD || data_type==idealF ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 #ifdef SPARC
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 // sparc required more relocation entries for floating constants
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 // (expires 9/98)
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 reloc_entries += 6;
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 reloc_entries++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1088
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 return reloc_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1091
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 // Utility function defined in archDesc.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 extern bool is_def(int usedef);
a61af66fc99e Initial load
duke
parents:
diff changeset
1094
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 // Return the result of reducing an instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 const char *InstructForm::reduce_result() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 const char* result = "Universe"; // default
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 _components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 Component *comp = _components.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 if (comp != NULL && comp->isa(Component::DEF)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 result = comp->_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 // Override this if the rule is a store operation:
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 if (_matrule && _matrule->_rChild &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 is_store_to_memory(_matrule->_rChild->_opType))
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 result = "Universe";
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1109
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 // Return the name of the operand on the right hand side of the binary match
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 // Return NULL if there is no right hand side
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 const char *InstructForm::reduce_right(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 if( _matrule == NULL ) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 return _matrule->reduce_right(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1116
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 // Similar for left
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 const char *InstructForm::reduce_left(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 if( _matrule == NULL ) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 return _matrule->reduce_left(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1122
a61af66fc99e Initial load
duke
parents:
diff changeset
1123
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 // Base class for this instruction, MachNode except for calls
1541
b5fdf39b9749 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 1396
diff changeset
1125 const char *InstructForm::mach_base_class(FormDict &globals) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 if( is_ideal_call() == Form::JAVA_STATIC ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 return "MachCallStaticJavaNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 else if( is_ideal_call() == Form::JAVA_DYNAMIC ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 return "MachCallDynamicJavaNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 else if( is_ideal_call() == Form::JAVA_RUNTIME ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 return "MachCallRuntimeNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 else if( is_ideal_call() == Form::JAVA_LEAF ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 return "MachCallLeafNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 else if (is_ideal_return()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 return "MachReturnNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 else if (is_ideal_halt()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 return "MachHaltNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 else if (is_ideal_safepoint()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 return "MachSafePointNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 else if (is_ideal_if()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 return "MachIfNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 }
3842
c7b60b601eb4 7069452: Cleanup NodeFlags
kvn
parents: 3839
diff changeset
1150 else if (is_ideal_goto()) {
c7b60b601eb4 7069452: Cleanup NodeFlags
kvn
parents: 3839
diff changeset
1151 return "MachGotoNode";
c7b60b601eb4 7069452: Cleanup NodeFlags
kvn
parents: 3839
diff changeset
1152 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 else if (is_ideal_fastlock()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 return "MachFastLockNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 else if (is_ideal_nop()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 return "MachNopNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 }
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1159 else if (is_mach_constant()) {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1160 return "MachConstantNode";
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1161 }
1541
b5fdf39b9749 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 1396
diff changeset
1162 else if (captures_bottom_type(globals)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 return "MachTypeNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 return "MachNode";
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 assert( false, "ShouldNotReachHere()");
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1170
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 // Compare the instruction predicates for textual equality
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 bool equivalent_predicates( const InstructForm *instr1, const InstructForm *instr2 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 const Predicate *pred1 = instr1->_predicate;
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 const Predicate *pred2 = instr2->_predicate;
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 if( pred1 == NULL && pred2 == NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 // no predicates means they are identical
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 if( pred1 != NULL && pred2 != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 // compare the predicates
475
284d0af00d53 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 420
diff changeset
1181 if (ADLParser::equivalent_expressions(pred1->_pred, pred2->_pred)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1185
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1188
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 // Check if this instruction can cisc-spill to 'alternate'
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 bool InstructForm::cisc_spills_to(ArchDesc &AD, InstructForm *instr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 assert( _matrule != NULL && instr->_matrule != NULL, "must have match rules");
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 // Do not replace if a cisc-version has been found.
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 if( cisc_spill_operand() != Not_cisc_spillable ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1194
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 int cisc_spill_operand = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 char *result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 char *result2 = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 const char *op_name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 const char *reg_type = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 FormDict &globals = AD.globalNames();
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
1201 cisc_spill_operand = _matrule->matchrule_cisc_spill_match(globals, AD.get_registers(), instr->_matrule, op_name, reg_type);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 if( (cisc_spill_operand != Not_cisc_spillable) && (op_name != NULL) && equivalent_predicates(this, instr) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 cisc_spill_operand = operand_position(op_name, Component::USE);
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 int def_oper = operand_position(op_name, Component::DEF);
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 if( def_oper == NameList::Not_in_list && instr->num_opnds() == num_opnds()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 // Do not support cisc-spilling for destination operands and
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 // make sure they have the same number of operands.
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 _cisc_spill_alternate = instr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 instr->set_cisc_alternate(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 if( AD._cisc_spill_debug ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 fprintf(stderr, "Instruction %s cisc-spills-to %s\n", _ident, instr->_ident);
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 fprintf(stderr, " using operand %s %s at index %d\n", reg_type, op_name, cisc_spill_operand);
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 // Record that a stack-version of the reg_mask is needed
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 // !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 OperandForm *oper = (OperandForm*)(globals[reg_type]->is_operand());
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 assert( oper != NULL, "cisc-spilling non operand");
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 const char *reg_class_name = oper->constrained_reg_class();
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 AD.set_stack_or_reg(reg_class_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 const char *reg_mask_name = AD.reg_mask(*oper);
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 set_cisc_reg_mask_name(reg_mask_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 const char *stack_or_reg_mask_name = AD.stack_or_reg_mask(*oper);
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 cisc_spill_operand = Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 cisc_spill_operand = Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1229
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 set_cisc_spill_operand(cisc_spill_operand);
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 return (cisc_spill_operand != Not_cisc_spillable);
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1233
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 // Check to see if this instruction can be replaced with the short branch
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 // instruction `short-branch'
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 bool InstructForm::check_branch_variant(ArchDesc &AD, InstructForm *short_branch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 if (_matrule != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 this != short_branch && // Don't match myself
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 !is_short_branch() && // Don't match another short branch variant
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 reduce_result() != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 strcmp(reduce_result(), short_branch->reduce_result()) == 0 &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 _matrule->equivalent(AD.globalNames(), short_branch->_matrule)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 // The instructions are equivalent.
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1244
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1245 // Now verify that both instructions have the same parameters and
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1246 // the same effects. Both branch forms should have the same inputs
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1247 // and resulting projections to correctly replace a long branch node
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1248 // with corresponding short branch node during code generation.
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1249
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1250 bool different = false;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1251 if (short_branch->_components.count() != _components.count()) {
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1252 different = true;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1253 } else if (_components.count() > 0) {
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1254 short_branch->_components.reset();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1255 _components.reset();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1256 Component *comp;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1257 while ((comp = _components.iter()) != NULL) {
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1258 Component *short_comp = short_branch->_components.iter();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1259 if (short_comp == NULL ||
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1260 short_comp->_type != comp->_type ||
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1261 short_comp->_usedef != comp->_usedef) {
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1262 different = true;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1263 break;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1264 }
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1265 }
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1266 if (short_branch->_components.iter() != NULL)
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1267 different = true;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1268 }
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1269 if (different) {
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1270 globalAD->syntax_err(short_branch->_linenum, "Instruction %s and its short form %s have different parameters\n", _ident, short_branch->_ident);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1271 }
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1272 if (AD._adl_debug > 1 || AD._short_branch_debug) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 fprintf(stderr, "Instruction %s has short form %s\n", _ident, short_branch->_ident);
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 _short_branch_form = short_branch;
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1280
a61af66fc99e Initial load
duke
parents:
diff changeset
1281
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 // --------------------------- FILE *output_routines
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 // Generate the format call for the replacement variable
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 void InstructForm::rep_var_format(FILE *fp, const char *rep_var) {
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1286 // Handle special constant table variables.
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1287 if (strcmp(rep_var, "constanttablebase") == 0) {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1288 fprintf(fp, "char reg[128]; ra->dump_register(in(mach_constant_base_node_input()), reg);\n");
3965
ae839d1e7d4c 7096010: c2: running with +PrintOptoAssembly crashes the VM when $constanttablebase is used
roland
parents: 3854
diff changeset
1289 fprintf(fp, " st->print(\"%%s\", reg);\n");
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1290 return;
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1291 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1292 if (strcmp(rep_var, "constantoffset") == 0) {
14431
1410ad6b05f1 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 14428
diff changeset
1293 fprintf(fp, "st->print(\"#%%d\", constant_offset_unchecked());\n");
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1294 return;
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1295 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1296 if (strcmp(rep_var, "constantaddress") == 0) {
14431
1410ad6b05f1 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 14428
diff changeset
1297 fprintf(fp, "st->print(\"constant table base + #%%d\", constant_offset_unchecked());\n");
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1298 return;
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1299 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1300
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 // Find replacement variable's type
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 const Form *form = _localNames[rep_var];
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 if (form == NULL) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1304 globalAD->syntax_err(_linenum, "Unknown replacement variable %s in format statement of %s.",
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1305 rep_var, _ident);
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1306 return;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 OpClassForm *opc = form->is_opclass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 assert( opc, "replacement variable was not found in local names");
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 // Lookup the index position of the replacement variable
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 int idx = operand_position_format(rep_var);
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 if ( idx == -1 ) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1313 globalAD->syntax_err(_linenum, "Could not find replacement variable %s in format statement of %s.\n",
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1314 rep_var, _ident);
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1315 assert(strcmp(opc->_ident, "label") == 0, "Unimplemented");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1316 return;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1318
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 if (is_noninput_operand(idx)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 // This component isn't in the input array. Print out the static
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 // name of the register.
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 OperandForm* oper = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 if (oper != NULL && oper->is_bound_register()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 const RegDef* first = oper->get_RegClass()->find_first_elem();
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17810
diff changeset
1325 fprintf(fp, " st->print_raw(\"%s\");\n", first->_regname);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 globalAD->syntax_err(_linenum, "In %s can't find format for %s %s", _ident, opc->_ident, rep_var);
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 // Output the format call for this operand
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 fprintf(fp,"opnd_array(%d)->",idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 if (idx == 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 fprintf(fp,"int_format(ra, this, st); // %s\n", rep_var);
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 fprintf(fp,"ext_format(ra, this,idx%d, st); // %s\n", idx, rep_var );
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1338
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 // Seach through operands to determine parameters unique positions.
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 void InstructForm::set_unique_opnds() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 uint* uniq_idx = NULL;
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1342 uint nopnds = num_opnds();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 uint num_uniq = nopnds;
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1344 uint i;
599
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 558
diff changeset
1345 _uniq_idx_length = 0;
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1346 if (nopnds > 0) {
599
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 558
diff changeset
1347 // Allocate index array. Worst case we're mapping from each
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 558
diff changeset
1348 // component back to an index and any DEF always goes at 0 so the
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 558
diff changeset
1349 // length of the array has to be the number of components + 1.
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 558
diff changeset
1350 _uniq_idx_length = _components.count() + 1;
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1351 uniq_idx = (uint*) malloc(sizeof(uint) * _uniq_idx_length);
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1352 for (i = 0; i < _uniq_idx_length; i++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 uniq_idx[i] = i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 // Do it only if there is a match rule and no expand rule. With an
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 // expand rule it is done by creating new mach node in Expand()
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 // method.
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1359 if (nopnds > 0 && _matrule != NULL && _exprule == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 const char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 uint count;
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 bool has_dupl_use = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1363
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 _parameters.reset();
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1365 while ((name = _parameters.iter()) != NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 count = 0;
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1367 uint position = 0;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1368 uint uniq_position = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 _components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 Component *comp = NULL;
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1371 if (sets_result()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 comp = _components.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 position++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 // The next code is copied from the method operand_position().
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 for (; (comp = _components.iter()) != NULL; ++position) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 // When the first component is not a DEF,
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 // leave space for the result operand!
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1379 if (position==0 && (!comp->isa(Component::DEF))) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 }
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1382 if (strcmp(name, comp->_name) == 0) {
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1383 if (++count > 1) {
599
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 558
diff changeset
1384 assert(position < _uniq_idx_length, "out of bounds");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 uniq_idx[position] = uniq_position;
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 has_dupl_use = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 uniq_position = position;
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 }
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1391 if (comp->isa(Component::DEF) && comp->isa(Component::USE)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 ++position;
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1393 if (position != 1)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 --position; // only use two slots for the 1st USE_DEF
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 }
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1398 if (has_dupl_use) {
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1399 for (i = 1; i < nopnds; i++) {
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1400 if (i != uniq_idx[i]) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 break;
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1402 }
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1403 }
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1404 uint j = i;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1405 for (; i < nopnds; i++) {
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1406 if (i == uniq_idx[i]) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 uniq_idx[i] = j++;
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1408 }
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
1409 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 num_uniq = j;
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 _uniq_idx = uniq_idx;
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 _num_uniq = num_uniq;
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1416
605
98cb887364d3 6810672: Comment typos
twisti
parents: 603
diff changeset
1417 // Generate index values needed for determining the operand position
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 void InstructForm::index_temps(FILE *fp, FormDict &globals, const char *prefix, const char *receiver) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 uint idx = 0; // position of operand in match rule
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 int cur_num_opnds = num_opnds();
a61af66fc99e Initial load
duke
parents:
diff changeset
1421
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 // Compute the index into vector of operand pointers:
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 // idx0=0 is used to indicate that info comes from this same node, not from input edge.
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 // idx1 starts at oper_input_base()
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 if ( cur_num_opnds >= 1 ) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1426 fprintf(fp," // Start at oper_input_base() and count operands\n");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1427 fprintf(fp," unsigned %sidx0 = %d;\n", prefix, oper_input_base(globals));
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1428 fprintf(fp," unsigned %sidx1 = %d;", prefix, oper_input_base(globals));
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1429 fprintf(fp," \t// %s\n", unique_opnd_ident(1));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1430
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 // Generate starting points for other unique operands if they exist
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 for ( idx = 2; idx < num_unique_opnds(); ++idx ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 if( *receiver == 0 ) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1434 fprintf(fp," unsigned %sidx%d = %sidx%d + opnd_array(%d)->num_edges();",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 prefix, idx, prefix, idx-1, idx-1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 } else {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1437 fprintf(fp," unsigned %sidx%d = %sidx%d + %s_opnds[%d]->num_edges();",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 prefix, idx, prefix, idx-1, receiver, idx-1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 }
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1440 fprintf(fp," \t// %s\n", unique_opnd_ident(idx));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 if( *receiver != 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 // This value is used by generate_peepreplace when copying a node.
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 // Don't emit it in other cases since it can hide bugs with the
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 // use invalid idx's.
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1447 fprintf(fp," unsigned %sidx%d = %sreq(); \n", prefix, idx, receiver);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1449
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1451
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 // ---------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 bool InstructForm::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 // !!!!! !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 // Check that a "label" operand occurs last in the operand list, if present
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1458
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 void InstructForm::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1462
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 void InstructForm::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 fprintf(fp,"\nInstruction: %s\n", (_ident?_ident:""));
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 if (_matrule) _matrule->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 if (_insencode) _insencode->output(fp);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1552
diff changeset
1467 if (_constant) _constant->output(fp);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 if (_opcode) _opcode->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 if (_attribs) _attribs->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 if (_predicate) _predicate->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 if (_effects.Size()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 fprintf(fp,"Effects\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 _effects.dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 if (_exprule) _exprule->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 if (_rewrule) _rewrule->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 if (_format) _format->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 if (_peephole) _peephole->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1480
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 void MachNodeForm::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1484
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 void MachNodeForm::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 fprintf(fp,"\nMachNode: %s\n", (_ident?_ident:""));
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1488
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 //------------------------------build_predicate--------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 // Build instruction predicates. If the user uses the same operand name
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 // twice, we need to check that the operands are pointer-eequivalent in
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 // the DFA during the labeling process.
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 Predicate *InstructForm::build_predicate() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 char buf[1024], *s=buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 Dict names(cmpstr,hashstr,Form::arena); // Map Names to counts
a61af66fc99e Initial load
duke
parents:
diff changeset
1496
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 MatchNode *mnode =
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 strcmp(_matrule->_opType, "Set") ? _matrule : _matrule->_rChild;
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 mnode->count_instr_names(names);
a61af66fc99e Initial load
duke
parents:
diff changeset
1500
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 uint first = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 // Start with the predicate supplied in the .ad file.
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 if( _predicate ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 if( first ) first=0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 strcpy(s,"("); s += strlen(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 strcpy(s,_predicate->_pred);
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 s += strlen(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 strcpy(s,")"); s += strlen(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 for( DictI i(&names); i.test(); ++i ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 uintptr_t cnt = (uintptr_t)i._value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 if( cnt > 1 ) { // Need a predicate at all?
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 assert( cnt == 2, "Unimplemented" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 // Handle many pairs
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 if( first ) first=0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 else { // All tests must pass, so use '&&'
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 strcpy(s," && ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 s += strlen(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 // Add predicate to working buffer
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 sprintf(s,"/*%s*/(",(char*)i._key);
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 s += strlen(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 mnode->build_instr_pred(s,(char*)i._key,0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 s += strlen(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 strcpy(s," == "); s += strlen(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 mnode->build_instr_pred(s,(char*)i._key,1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 s += strlen(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 strcpy(s,")"); s += strlen(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 if( s == buf ) s = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 assert( strlen(buf) < sizeof(buf), "String buffer overflow" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 s = strdup(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 return new Predicate(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1538
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 //------------------------------EncodeForm-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 EncodeForm::EncodeForm()
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 : _encClass(cmpstr,hashstr, Form::arena) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1544 EncodeForm::~EncodeForm() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1546
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 // record a new register class
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 EncClass *EncodeForm::add_EncClass(const char *className) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 EncClass *encClass = new EncClass(className);
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 _eclasses.addName(className);
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 _encClass.Insert(className,encClass);
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 return encClass;
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1554
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 // Lookup the function body for an encoding class
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 EncClass *EncodeForm::encClass(const char *className) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 assert( className != NULL, "Must provide a defined encoding name");
a61af66fc99e Initial load
duke
parents:
diff changeset
1558
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 EncClass *encClass = (EncClass*)_encClass[className];
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 return encClass;
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1562
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 // Lookup the function body for an encoding class
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 const char *EncodeForm::encClassBody(const char *className) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 if( className == NULL ) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1566
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 EncClass *encClass = (EncClass*)_encClass[className];
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 assert( encClass != NULL, "Encode Class is missing.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 encClass->_code.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 const char *code = (const char*)encClass->_code.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 assert( code != NULL, "Found an empty encode class body.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1572
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 return code;
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1575
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 // Lookup the function body for an encoding class
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 const char *EncodeForm::encClassPrototype(const char *className) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 assert( className != NULL, "Encode class name must be non NULL.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1579
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 return className;
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1582
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 void EncodeForm::dump() { // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1586
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 void EncodeForm::output(FILE *fp) { // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 const char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 fprintf(fp,"\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 fprintf(fp,"-------------------- Dump EncodeForm --------------------\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 for (_eclasses.reset(); (name = _eclasses.iter()) != NULL;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 ((EncClass*)_encClass[name])->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 fprintf(fp,"-------------------- end EncodeForm --------------------\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 //------------------------------EncClass---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 EncClass::EncClass(const char *name)
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 : _localNames(cmpstr,hashstr, Form::arena), _name(name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 EncClass::~EncClass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1602
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 // Add a parameter <type,name> pair
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 void EncClass::add_parameter(const char *parameter_type, const char *parameter_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 _parameter_type.addName( parameter_type );
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 _parameter_name.addName( parameter_name );
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1608
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 // Verify operand types in parameter list
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 bool EncClass::check_parameter_types(FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 // !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1614
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 // Add the decomposed "code" sections of an encoding's code-block
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 void EncClass::add_code(const char *code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 _code.addName(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1619
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 // Add the decomposed "replacement variables" of an encoding's code-block
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 void EncClass::add_rep_var(char *replacement_var) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 _code.addName(NameList::_signal);
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 _rep_vars.addName(replacement_var);
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1625
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 // Lookup the function body for an encoding class
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 int EncClass::rep_var_index(const char *rep_var) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 uint position = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 const char *name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1630
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 _parameter_name.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 while ( (name = _parameter_name.iter()) != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 if ( strcmp(rep_var,name) == 0 ) return position;
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1636
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1639
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 // Check after parsing
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 bool EncClass::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 // 1!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 // Check that each replacement variable, '$name' in architecture description
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 // is actually a local variable for this encode class, or a reserved name
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 // "primary, secondary, tertiary"
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1648
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 void EncClass::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1652
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 void EncClass::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 fprintf(fp,"EncClass: %s", (_name ? _name : ""));
a61af66fc99e Initial load
duke
parents:
diff changeset
1656
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 // Output the parameter list
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 _parameter_type.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 _parameter_name.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 const char *type = _parameter_type.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
1661 const char *name = _parameter_name.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 fprintf(fp, " ( ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 for ( ; (type != NULL) && (name != NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 (type = _parameter_type.iter()), (name = _parameter_name.iter()) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 fprintf(fp, " %s %s,", type, name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1667 fprintf(fp, " ) ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1668
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 // Output the code block
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 _code.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 _rep_vars.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1672 const char *code;
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 while ( (code = _code.iter()) != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 if ( _code.is_signal(code) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 // A replacement variable
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 const char *rep_var = _rep_vars.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 fprintf(fp,"($%s)", rep_var);
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 // A section of code
a61af66fc99e Initial load
duke
parents:
diff changeset
1680 fprintf(fp,"%s", code);
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1683
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1685
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 //------------------------------Opcode-----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 Opcode::Opcode(char *primary, char *secondary, char *tertiary)
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 : _primary(primary), _secondary(secondary), _tertiary(tertiary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1690
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 Opcode::~Opcode() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1693
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 Opcode::opcode_type Opcode::as_opcode_type(const char *param) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 if( strcmp(param,"primary") == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 return Opcode::PRIMARY;
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 else if( strcmp(param,"secondary") == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 return Opcode::SECONDARY;
a61af66fc99e Initial load
duke
parents:
diff changeset
1700 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 else if( strcmp(param,"tertiary") == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 return Opcode::TERTIARY;
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 return Opcode::NOT_AN_OPCODE;
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1706
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
1707 bool Opcode::print_opcode(FILE *fp, Opcode::opcode_type desired_opcode) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 // Default values previously provided by MachNode::primary()...
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
1709 const char *description = NULL;
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
1710 const char *value = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 // Check if user provided any opcode definitions
a61af66fc99e Initial load
duke
parents:
diff changeset
1712 if( this != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 // Update 'value' if user provided a definition in the instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 switch (desired_opcode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 case PRIMARY:
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 description = "primary()";
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 if( _primary != NULL) { value = _primary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1719 case SECONDARY:
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 description = "secondary()";
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 if( _secondary != NULL ) { value = _secondary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 case TERTIARY:
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 description = "tertiary()";
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 if( _tertiary != NULL ) { value = _tertiary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1727 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 assert( false, "ShouldNotReachHere();");
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1730 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1731 }
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
1732 if (value != NULL) {
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
1733 fprintf(fp, "(%s /*%s*/)", value, description);
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
1734 }
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
1735 return value != NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1737
a61af66fc99e Initial load
duke
parents:
diff changeset
1738 void Opcode::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1739 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1741
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
1743 void Opcode::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1744 if (_primary != NULL) fprintf(fp,"Primary opcode: %s\n", _primary);
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 if (_secondary != NULL) fprintf(fp,"Secondary opcode: %s\n", _secondary);
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 if (_tertiary != NULL) fprintf(fp,"Tertiary opcode: %s\n", _tertiary);
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1748
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 //------------------------------InsEncode--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 InsEncode::InsEncode() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 InsEncode::~InsEncode() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1754
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 // Add "encode class name" and its parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 NameAndList *InsEncode::add_encode(char *encoding) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 assert( encoding != NULL, "Must provide name for encoding");
a61af66fc99e Initial load
duke
parents:
diff changeset
1758
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 // add_parameter(NameList::_signal);
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 NameAndList *encode = new NameAndList(encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 _encoding.addName((char*)encode);
a61af66fc99e Initial load
duke
parents:
diff changeset
1762
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 return encode;
a61af66fc99e Initial load
duke
parents:
diff changeset
1764 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1765
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 // Access the list of encodings
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 void InsEncode::reset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 _encoding.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 // _parameter.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 const char* InsEncode::encode_class_iter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 NameAndList *encode_class = (NameAndList*)_encoding.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 return ( encode_class != NULL ? encode_class->name() : NULL );
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 // Obtain parameter name from zero based index
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 const char *InsEncode::rep_var_name(InstructForm &inst, uint param_no) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 NameAndList *params = (NameAndList*)_encoding.current();
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 assert( params != NULL, "Internal Error");
a61af66fc99e Initial load
duke
parents:
diff changeset
1779 const char *param = (*params)[param_no];
a61af66fc99e Initial load
duke
parents:
diff changeset
1780
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 // Remove '$' if parser placed it there.
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 return ( param != NULL && *param == '$') ? (param+1) : param;
a61af66fc99e Initial load
duke
parents:
diff changeset
1783 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1784
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 void InsEncode::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1788
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 void InsEncode::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 NameAndList *encoding = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 const char *parameter = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1793
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 fprintf(fp,"InsEncode: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 _encoding.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1796
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 while ( (encoding = (NameAndList*)_encoding.iter()) != 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 // Output the encoding being used
a61af66fc99e Initial load
duke
parents:
diff changeset
1799 fprintf(fp,"%s(", encoding->name() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1800
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 // Output its parameter list, if any
a61af66fc99e Initial load
duke
parents:
diff changeset
1802 bool first_param = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 encoding->reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 while ( (parameter = encoding->iter()) != 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 // Output the ',' between parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 if ( ! first_param ) fprintf(fp,", ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 first_param = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1808 // Output the parameter
a61af66fc99e Initial load
duke
parents:
diff changeset
1809 fprintf(fp,"%s", parameter);
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 } // done with parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
1811 fprintf(fp,") ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 } // done with encodings
a61af66fc99e Initial load
duke
parents:
diff changeset
1813
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 fprintf(fp,"\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1816
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 //------------------------------Effect-----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 static int effect_lookup(const char *name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 if(!strcmp(name, "USE")) return Component::USE;
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 if(!strcmp(name, "DEF")) return Component::DEF;
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 if(!strcmp(name, "USE_DEF")) return Component::USE_DEF;
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 if(!strcmp(name, "KILL")) return Component::KILL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 if(!strcmp(name, "USE_KILL")) return Component::USE_KILL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 if(!strcmp(name, "TEMP")) return Component::TEMP;
a61af66fc99e Initial load
duke
parents:
diff changeset
1825 if(!strcmp(name, "INVALID")) return Component::INVALID;
4120
f03a3c8bd5e5 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 3965
diff changeset
1826 if(!strcmp(name, "CALL")) return Component::CALL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 assert( false,"Invalid effect name specified\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 return Component::INVALID;
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1830
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1831 const char *Component::getUsedefName() {
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1832 switch (_usedef) {
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1833 case Component::INVALID: return "INVALID"; break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1834 case Component::USE: return "USE"; break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1835 case Component::USE_DEF: return "USE_DEF"; break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1836 case Component::USE_KILL: return "USE_KILL"; break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1837 case Component::KILL: return "KILL"; break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1838 case Component::TEMP: return "TEMP"; break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1839 case Component::DEF: return "DEF"; break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1840 case Component::CALL: return "CALL"; break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1841 default: assert(false, "unknown effect");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1842 }
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1843 return "Undefined Use/Def info";
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1844 }
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1845
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1846 Effect::Effect(const char *name) : _name(name), _use_def(effect_lookup(name)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1847 _ftype = Form::EFF;
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 }
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
1849
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1850 Effect::~Effect() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1851 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1852
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 // Dynamic type check
a61af66fc99e Initial load
duke
parents:
diff changeset
1854 Effect *Effect::is_effect() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 return (Effect*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1857
a61af66fc99e Initial load
duke
parents:
diff changeset
1858
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 // True if this component is equal to the parameter.
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 bool Effect::is(int use_def_kill_enum) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 return (_use_def == use_def_kill_enum ? true : false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1863 // True if this component is used/def'd/kill'd as the parameter suggests.
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 bool Effect::isa(int use_def_kill_enum) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1865 return (_use_def & use_def_kill_enum) == use_def_kill_enum;
a61af66fc99e Initial load
duke
parents:
diff changeset
1866 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1867
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 void Effect::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1871
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 void Effect::output(FILE *fp) { // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 fprintf(fp,"Effect: %s\n", (_name?_name:""));
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1875
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 //------------------------------ExpandRule-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 ExpandRule::ExpandRule() : _expand_instrs(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1878 _newopconst(cmpstr, hashstr, Form::arena) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 _ftype = Form::EXP;
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1881
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 ExpandRule::~ExpandRule() { // Destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
1883 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1884
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 void ExpandRule::add_instruction(NameAndList *instruction_name_and_operand_list) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 _expand_instrs.addName((char*)instruction_name_and_operand_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
1887 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1888
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 void ExpandRule::reset_instructions() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 _expand_instrs.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1891 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1892
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 NameAndList* ExpandRule::iter_instructions() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 return (NameAndList*)_expand_instrs.iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1896
a61af66fc99e Initial load
duke
parents:
diff changeset
1897
a61af66fc99e Initial load
duke
parents:
diff changeset
1898 void ExpandRule::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1900 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1901
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 void ExpandRule::output(FILE *fp) { // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 NameAndList *expand_instr = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 const char *opid = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1905
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 fprintf(fp,"\nExpand Rule:\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1907
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 // Iterate over the instructions 'node' expands into
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 for(reset_instructions(); (expand_instr = iter_instructions()) != NULL; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 fprintf(fp,"%s(", expand_instr->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
1911
a61af66fc99e Initial load
duke
parents:
diff changeset
1912 // iterate over the operand list
a61af66fc99e Initial load
duke
parents:
diff changeset
1913 for( expand_instr->reset(); (opid = expand_instr->iter()) != NULL; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 fprintf(fp,"%s ", opid);
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 fprintf(fp,");\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1919
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 //------------------------------RewriteRule------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 RewriteRule::RewriteRule(char* params, char* block)
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 : _tempParams(params), _tempBlock(block) { }; // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 RewriteRule::~RewriteRule() { // Destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1925
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 void RewriteRule::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1929
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 void RewriteRule::output(FILE *fp) { // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 fprintf(fp,"\nRewrite Rule:\n%s\n%s\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
1932 (_tempParams?_tempParams:""),
a61af66fc99e Initial load
duke
parents:
diff changeset
1933 (_tempBlock?_tempBlock:""));
a61af66fc99e Initial load
duke
parents:
diff changeset
1934 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1935
a61af66fc99e Initial load
duke
parents:
diff changeset
1936
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 //==============================MachNodes======================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 //------------------------------MachNodeForm-----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1939 MachNodeForm::MachNodeForm(char *id)
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 : _ident(id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1941 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1942
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 MachNodeForm::~MachNodeForm() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1945
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 MachNodeForm *MachNodeForm::is_machnode() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 return (MachNodeForm*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1949
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 //==============================Operand Classes================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 //------------------------------OpClassForm------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 OpClassForm::OpClassForm(const char* id) : _ident(id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 _ftype = Form::OPCLASS;
a61af66fc99e Initial load
duke
parents:
diff changeset
1954 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1955
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 OpClassForm::~OpClassForm() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1957 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1958
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 bool OpClassForm::ideal_only() const { return 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1960
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 OpClassForm *OpClassForm::is_opclass() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 return (OpClassForm*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1964
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 Form::InterfaceType OpClassForm::interface_type(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 if( _oplst.count() == 0 ) return Form::no_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
1967
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 // Check that my operands have the same interface type
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 Form::InterfaceType interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 bool first = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 NameList &op_list = (NameList &)_oplst;
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 op_list.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1973 const char *op_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 while( (op_name = op_list.iter()) != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 const Form *form = globals[op_name];
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 OperandForm *operand = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 assert( operand, "Entry in operand class that is not an operand");
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 if( first ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 first = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 interface = operand->interface_type(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 interface = (interface == operand->interface_type(globals) ? interface : Form::no_interface);
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 return interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1987
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 bool OpClassForm::stack_slots_only(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 if( _oplst.count() == 0 ) return false; // how?
a61af66fc99e Initial load
duke
parents:
diff changeset
1990
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 NameList &op_list = (NameList &)_oplst;
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 op_list.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 const char *op_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 while( (op_name = op_list.iter()) != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 const Form *form = globals[op_name];
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 OperandForm *operand = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 assert( operand, "Entry in operand class that is not an operand");
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 if( !operand->stack_slots_only(globals) ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2000 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2001 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2002
a61af66fc99e Initial load
duke
parents:
diff changeset
2003
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 void OpClassForm::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2005 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2007
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 void OpClassForm::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 const char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 fprintf(fp,"\nOperand Class: %s\n", (_ident?_ident:""));
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 fprintf(fp,"\nCount = %d\n", _oplst.count());
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 for(_oplst.reset(); (name = _oplst.iter()) != NULL;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 fprintf(fp,"%s, ",name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 fprintf(fp,"\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2017
a61af66fc99e Initial load
duke
parents:
diff changeset
2018
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 //==============================Operands=======================================
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 //------------------------------OperandForm------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 OperandForm::OperandForm(const char* id)
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 : OpClassForm(id), _ideal_only(false),
a61af66fc99e Initial load
duke
parents:
diff changeset
2023 _localNames(cmpstr, hashstr, Form::arena) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 _ftype = Form::OPER;
a61af66fc99e Initial load
duke
parents:
diff changeset
2025
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 _matrule = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 _interface = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 _attribs = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 _predicate = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 _constraint= NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 _construct = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 _format = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 OperandForm::OperandForm(const char* id, bool ideal_only)
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 : OpClassForm(id), _ideal_only(ideal_only),
a61af66fc99e Initial load
duke
parents:
diff changeset
2036 _localNames(cmpstr, hashstr, Form::arena) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 _ftype = Form::OPER;
a61af66fc99e Initial load
duke
parents:
diff changeset
2038
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 _matrule = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 _interface = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2041 _attribs = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 _predicate = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 _constraint= NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 _construct = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2045 _format = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2046 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 OperandForm::~OperandForm() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2049
a61af66fc99e Initial load
duke
parents:
diff changeset
2050
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 OperandForm *OperandForm::is_operand() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 return (OperandForm*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2054
a61af66fc99e Initial load
duke
parents:
diff changeset
2055 bool OperandForm::ideal_only() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2056 return _ideal_only;
a61af66fc99e Initial load
duke
parents:
diff changeset
2057 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2058
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 Form::InterfaceType OperandForm::interface_type(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 if( _interface == NULL ) return Form::no_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
2061
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 return _interface->interface_type(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2064
a61af66fc99e Initial load
duke
parents:
diff changeset
2065
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 bool OperandForm::stack_slots_only(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 if( _constraint == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 return _constraint->stack_slots_only();
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2070
a61af66fc99e Initial load
duke
parents:
diff changeset
2071
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 // Access op_cost attribute or return NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 const char* OperandForm::cost() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 for (Attribute* cur = _attribs; cur != NULL; cur = (Attribute*)cur->_next) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 if( strcmp(cur->_ident,AttributeForm::_op_cost) == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 return cur->_val;
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2081
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 // Return the number of leaves below this complex operand
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 uint OperandForm::num_leaves() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 if ( ! _matrule) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2085
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 int num_leaves = _matrule->_numleaves;
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 return num_leaves;
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2089
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 // Return the number of constants contained within this complex operand
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 uint OperandForm::num_consts(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 if ( ! _matrule) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2093
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 // This is a recursive invocation on all operands in the matchrule
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 return _matrule->num_consts(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2097
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 // Return the number of constants in match rule with specified type
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 uint OperandForm::num_consts(FormDict &globals, Form::DataType type) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2100 if ( ! _matrule) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2101
a61af66fc99e Initial load
duke
parents:
diff changeset
2102 // This is a recursive invocation on all operands in the matchrule
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 return _matrule->num_consts(globals, type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2105
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 // Return the number of pointer constants contained within this complex operand
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 uint OperandForm::num_const_ptrs(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 if ( ! _matrule) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2109
a61af66fc99e Initial load
duke
parents:
diff changeset
2110 // This is a recursive invocation on all operands in the matchrule
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 return _matrule->num_const_ptrs(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2113
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 uint OperandForm::num_edges(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 uint edges = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 uint leaves = num_leaves();
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 uint consts = num_consts(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2118
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 // If we are matching a constant directly, there are no leaves.
a61af66fc99e Initial load
duke
parents:
diff changeset
2120 edges = ( leaves > consts ) ? leaves - consts : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2121
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 // !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 // Special case operands that do not have a corresponding ideal node.
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 if( (edges == 0) && (consts == 0) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 if( constrained_reg_class() != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 edges = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 if( _matrule
a61af66fc99e Initial load
duke
parents:
diff changeset
2129 && (_matrule->_lChild == NULL) && (_matrule->_rChild == NULL) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 const Form *form = globals[_matrule->_opType];
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 OperandForm *oper = form ? form->is_operand() : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 if( oper ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 return oper->num_edges(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2138
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 return edges;
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2141
a61af66fc99e Initial load
duke
parents:
diff changeset
2142
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 // Check if this operand is usable for cisc-spilling
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 bool OperandForm::is_cisc_reg(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 const char *ideal = ideal_type(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 bool is_cisc_reg = (ideal && (ideal_to_Reg_type(ideal) != none));
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 return is_cisc_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
2148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2149
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 bool OpClassForm::is_cisc_mem(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 Form::InterfaceType my_interface = interface_type(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 return (my_interface == memory_interface);
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2154
a61af66fc99e Initial load
duke
parents:
diff changeset
2155
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 // node matches ideal 'Bool'
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 bool OperandForm::is_ideal_bool() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 if( _matrule == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2159
a61af66fc99e Initial load
duke
parents:
diff changeset
2160 return _matrule->is_ideal_bool();
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2162
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 // Require user's name for an sRegX to be stackSlotX
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 Form::DataType OperandForm::is_user_name_for_sReg() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 DataType data_type = none;
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 if( _ident != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 if( strcmp(_ident,"stackSlotI") == 0 ) data_type = Form::idealI;
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 else if( strcmp(_ident,"stackSlotP") == 0 ) data_type = Form::idealP;
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 else if( strcmp(_ident,"stackSlotD") == 0 ) data_type = Form::idealD;
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 else if( strcmp(_ident,"stackSlotF") == 0 ) data_type = Form::idealF;
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 else if( strcmp(_ident,"stackSlotL") == 0 ) data_type = Form::idealL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 assert((data_type == none) || (_matrule == NULL), "No match-rule for stackSlotX");
a61af66fc99e Initial load
duke
parents:
diff changeset
2174
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 return data_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2177
a61af66fc99e Initial load
duke
parents:
diff changeset
2178
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 // Return ideal type, if there is a single ideal type for this operand
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 const char *OperandForm::ideal_type(FormDict &globals, RegisterForm *registers) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 const char *type = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 if (ideal_only()) type = _ident;
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 else if( _matrule == NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 // Check for condition code register
a61af66fc99e Initial load
duke
parents:
diff changeset
2185 const char *rc_name = constrained_reg_class();
a61af66fc99e Initial load
duke
parents:
diff changeset
2186 // !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
2187 if (rc_name == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 // !!!!! !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
2189 // Check constraints on result's register class
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 if( registers ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2191 RegClass *reg_class = registers->getRegClass(rc_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 assert( reg_class != NULL, "Register class is not defined");
a61af66fc99e Initial load
duke
parents:
diff changeset
2193
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 // Check for ideal type of entries in register class, all are the same type
a61af66fc99e Initial load
duke
parents:
diff changeset
2195 reg_class->reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
2196 RegDef *reg_def = reg_class->RegDef_iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
2197 assert( reg_def != NULL, "No entries in register class");
a61af66fc99e Initial load
duke
parents:
diff changeset
2198 assert( reg_def->_idealtype != NULL, "Did not define ideal type for register");
a61af66fc99e Initial load
duke
parents:
diff changeset
2199 // Return substring that names the register's ideal type
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 type = reg_def->_idealtype + 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 assert( *(reg_def->_idealtype + 0) == 'O', "Expect Op_ prefix");
a61af66fc99e Initial load
duke
parents:
diff changeset
2202 assert( *(reg_def->_idealtype + 1) == 'p', "Expect Op_ prefix");
a61af66fc99e Initial load
duke
parents:
diff changeset
2203 assert( *(reg_def->_idealtype + 2) == '_', "Expect Op_ prefix");
a61af66fc99e Initial load
duke
parents:
diff changeset
2204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 else if( _matrule->_lChild == NULL && _matrule->_rChild == NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2207 // This operand matches a single type, at the top level.
a61af66fc99e Initial load
duke
parents:
diff changeset
2208 // Check for ideal type
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 type = _matrule->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
2210 if( strcmp(type,"Bool") == 0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 return "Bool";
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 // transitive lookup
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 const Form *frm = globals[type];
a61af66fc99e Initial load
duke
parents:
diff changeset
2214 OperandForm *op = frm->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 type = op->ideal_type(globals, registers);
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2217 return type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2219
a61af66fc99e Initial load
duke
parents:
diff changeset
2220
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 // If there is a single ideal type for this interface field, return it.
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 const char *OperandForm::interface_ideal_type(FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 const char *field) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2224 const char *ideal_type = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2225 const char *value = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2226
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 // Check if "field" is valid for this operand's interface
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 if ( ! is_interface_field(field, value) ) return ideal_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2229
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 // !!!!! !!!!! !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 // If a valid field has a constant value, identify "ConI" or "ConP" or ...
a61af66fc99e Initial load
duke
parents:
diff changeset
2232
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 // Else, lookup type of field's replacement variable
a61af66fc99e Initial load
duke
parents:
diff changeset
2234
a61af66fc99e Initial load
duke
parents:
diff changeset
2235 return ideal_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2237
a61af66fc99e Initial load
duke
parents:
diff changeset
2238
a61af66fc99e Initial load
duke
parents:
diff changeset
2239 RegClass* OperandForm::get_RegClass() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2240 if (_interface && !_interface->is_RegInterface()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2241 return globalAD->get_registers()->getRegClass(constrained_reg_class());
a61af66fc99e Initial load
duke
parents:
diff changeset
2242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2243
a61af66fc99e Initial load
duke
parents:
diff changeset
2244
a61af66fc99e Initial load
duke
parents:
diff changeset
2245 bool OperandForm::is_bound_register() const {
10389
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2246 RegClass* reg_class = get_RegClass();
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2247 if (reg_class == NULL) {
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2248 return false;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2249 }
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2250
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2251 const char* name = ideal_type(globalAD->globalNames());
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2252 if (name == NULL) {
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2253 return false;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2254 }
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2255
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2256 uint size = 0;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2257 if (strcmp(name, "RegFlags") == 0) size = 1;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2258 if (strcmp(name, "RegI") == 0) size = 1;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2259 if (strcmp(name, "RegF") == 0) size = 1;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2260 if (strcmp(name, "RegD") == 0) size = 2;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2261 if (strcmp(name, "RegL") == 0) size = 2;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2262 if (strcmp(name, "RegN") == 0) size = 1;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2263 if (strcmp(name, "RegP") == 0) size = globalAD->get_preproc_def("_LP64") ? 2 : 1;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2264 if (size == 0) {
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2265 return false;
f15fe46d8c00 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 8117
diff changeset
2266 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2267 return size == reg_class->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
2268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2269
a61af66fc99e Initial load
duke
parents:
diff changeset
2270
a61af66fc99e Initial load
duke
parents:
diff changeset
2271 // Check if this is a valid field for this operand,
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 // Return 'true' if valid, and set the value to the string the user provided.
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 bool OperandForm::is_interface_field(const char *field,
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 const char * &value) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2275 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2277
a61af66fc99e Initial load
duke
parents:
diff changeset
2278
a61af66fc99e Initial load
duke
parents:
diff changeset
2279 // Return register class name if a constraint specifies the register class.
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 const char *OperandForm::constrained_reg_class() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2281 const char *reg_class = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 if ( _constraint ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2283 // !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
2284 Constraint *constraint = _constraint;
a61af66fc99e Initial load
duke
parents:
diff changeset
2285 if ( strcmp(_constraint->_func,"ALLOC_IN_RC") == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2286 reg_class = _constraint->_arg;
a61af66fc99e Initial load
duke
parents:
diff changeset
2287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2289
a61af66fc99e Initial load
duke
parents:
diff changeset
2290 return reg_class;
a61af66fc99e Initial load
duke
parents:
diff changeset
2291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2292
a61af66fc99e Initial load
duke
parents:
diff changeset
2293
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 // Return the register class associated with 'leaf'.
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 const char *OperandForm::in_reg_class(uint leaf, FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 const char *reg_class = NULL; // "RegMask::Empty";
a61af66fc99e Initial load
duke
parents:
diff changeset
2297
a61af66fc99e Initial load
duke
parents:
diff changeset
2298 if((_matrule == NULL) || (_matrule->is_chain_rule(globals))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 reg_class = constrained_reg_class();
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 return reg_class;
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 const char *result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 const char *name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 const char *type = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 // iterate through all base operands
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 // until we reach the register that corresponds to "leaf"
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 // This function is not looking for an ideal type. It needs the first
a61af66fc99e Initial load
duke
parents:
diff changeset
2308 // level user type associated with the leaf.
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 for(uint idx = 0;_matrule->base_operand(idx,globals,result,name,type);++idx) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2310 const Form *form = (_localNames[name] ? _localNames[name] : globals[result]);
a61af66fc99e Initial load
duke
parents:
diff changeset
2311 OperandForm *oper = form ? form->is_operand() : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2312 if( oper ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2313 reg_class = oper->constrained_reg_class();
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 if( reg_class ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2315 reg_class = reg_class;
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 // ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2319 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2320 // ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2322
a61af66fc99e Initial load
duke
parents:
diff changeset
2323 // Increment our target leaf position if current leaf is not a candidate.
a61af66fc99e Initial load
duke
parents:
diff changeset
2324 if( reg_class == NULL) ++leaf;
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 // Exit the loop with the value of reg_class when at the correct index
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 if( idx == leaf ) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 // May iterate through all base operands if reg_class for 'leaf' is NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
2328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2329 return reg_class;
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2331
a61af66fc99e Initial load
duke
parents:
diff changeset
2332
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 // Recursive call to construct list of top-level operands.
a61af66fc99e Initial load
duke
parents:
diff changeset
2334 // Implementation does not modify state of internal structures
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 void OperandForm::build_components() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 if (_matrule) _matrule->append_components(_localNames, _components);
a61af66fc99e Initial load
duke
parents:
diff changeset
2337
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 // Add parameters that "do not appear in match rule".
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 const char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
2340 for (_parameters.reset(); (name = _parameters.iter()) != NULL;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2341 OperandForm *opForm = (OperandForm*)_localNames[name];
a61af66fc99e Initial load
duke
parents:
diff changeset
2342
a61af66fc99e Initial load
duke
parents:
diff changeset
2343 if ( _components.operand_position(name) == -1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2344 _components.insert(name, opForm->_ident, Component::INVALID, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
2345 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2346 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2347
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2350
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 int OperandForm::operand_position(const char *name, int usedef) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2352 return _components.operand_position(name, usedef, this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2354
a61af66fc99e Initial load
duke
parents:
diff changeset
2355
a61af66fc99e Initial load
duke
parents:
diff changeset
2356 // Return zero-based position in component list, only counting constants;
a61af66fc99e Initial load
duke
parents:
diff changeset
2357 // Return -1 if not in list.
a61af66fc99e Initial load
duke
parents:
diff changeset
2358 int OperandForm::constant_position(FormDict &globals, const Component *last) {
605
98cb887364d3 6810672: Comment typos
twisti
parents: 603
diff changeset
2359 // Iterate through components and count constants preceding 'constant'
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
2360 int position = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2361 Component *comp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2362 _components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
2363 while( (comp = _components.iter()) != NULL && (comp != last) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 // Special case for operands that take a single user-defined operand
a61af66fc99e Initial load
duke
parents:
diff changeset
2365 // Skip the initial definition in the component list.
a61af66fc99e Initial load
duke
parents:
diff changeset
2366 if( strcmp(comp->_name,this->_ident) == 0 ) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
2367
a61af66fc99e Initial load
duke
parents:
diff changeset
2368 const char *type = comp->_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2369 // Lookup operand form for replacement variable's type
a61af66fc99e Initial load
duke
parents:
diff changeset
2370 const Form *form = globals[type];
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 assert( form != NULL, "Component's type not found");
a61af66fc99e Initial load
duke
parents:
diff changeset
2372 OperandForm *oper = form ? form->is_operand() : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 if( oper ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2374 if( oper->_matrule->is_base_constant(globals) != Form::none ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2375 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
2376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2378 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2379
a61af66fc99e Initial load
duke
parents:
diff changeset
2380 // Check for being passed a component that was not in the list
a61af66fc99e Initial load
duke
parents:
diff changeset
2381 if( comp != last ) position = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2382
a61af66fc99e Initial load
duke
parents:
diff changeset
2383 return position;
a61af66fc99e Initial load
duke
parents:
diff changeset
2384 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2385 // Provide position of constant by "name"
a61af66fc99e Initial load
duke
parents:
diff changeset
2386 int OperandForm::constant_position(FormDict &globals, const char *name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2387 const Component *comp = _components.search(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2388 int idx = constant_position( globals, comp );
a61af66fc99e Initial load
duke
parents:
diff changeset
2389
a61af66fc99e Initial load
duke
parents:
diff changeset
2390 return idx;
a61af66fc99e Initial load
duke
parents:
diff changeset
2391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2392
a61af66fc99e Initial load
duke
parents:
diff changeset
2393
a61af66fc99e Initial load
duke
parents:
diff changeset
2394 // Return zero-based position in component list, only counting constants;
a61af66fc99e Initial load
duke
parents:
diff changeset
2395 // Return -1 if not in list.
a61af66fc99e Initial load
duke
parents:
diff changeset
2396 int OperandForm::register_position(FormDict &globals, const char *reg_name) {
605
98cb887364d3 6810672: Comment typos
twisti
parents: 603
diff changeset
2397 // Iterate through components and count registers preceding 'last'
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2398 uint position = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2399 Component *comp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2400 _components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
2401 while( (comp = _components.iter()) != NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
2402 && (strcmp(comp->_name,reg_name) != 0) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2403 // Special case for operands that take a single user-defined operand
a61af66fc99e Initial load
duke
parents:
diff changeset
2404 // Skip the initial definition in the component list.
a61af66fc99e Initial load
duke
parents:
diff changeset
2405 if( strcmp(comp->_name,this->_ident) == 0 ) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
2406
a61af66fc99e Initial load
duke
parents:
diff changeset
2407 const char *type = comp->_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2408 // Lookup operand form for component's type
a61af66fc99e Initial load
duke
parents:
diff changeset
2409 const Form *form = globals[type];
a61af66fc99e Initial load
duke
parents:
diff changeset
2410 assert( form != NULL, "Component's type not found");
a61af66fc99e Initial load
duke
parents:
diff changeset
2411 OperandForm *oper = form ? form->is_operand() : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2412 if( oper ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2413 if( oper->_matrule->is_base_register(globals) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2414 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
2415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2418
a61af66fc99e Initial load
duke
parents:
diff changeset
2419 return position;
a61af66fc99e Initial load
duke
parents:
diff changeset
2420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2421
a61af66fc99e Initial load
duke
parents:
diff changeset
2422
a61af66fc99e Initial load
duke
parents:
diff changeset
2423 const char *OperandForm::reduce_result() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2424 return _ident;
a61af66fc99e Initial load
duke
parents:
diff changeset
2425 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2426 // Return the name of the operand on the right hand side of the binary match
a61af66fc99e Initial load
duke
parents:
diff changeset
2427 // Return NULL if there is no right hand side
a61af66fc99e Initial load
duke
parents:
diff changeset
2428 const char *OperandForm::reduce_right(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2429 return ( _matrule ? _matrule->reduce_right(globals) : NULL );
a61af66fc99e Initial load
duke
parents:
diff changeset
2430 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2431
a61af66fc99e Initial load
duke
parents:
diff changeset
2432 // Similar for left
a61af66fc99e Initial load
duke
parents:
diff changeset
2433 const char *OperandForm::reduce_left(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2434 return ( _matrule ? _matrule->reduce_left(globals) : NULL );
a61af66fc99e Initial load
duke
parents:
diff changeset
2435 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2436
a61af66fc99e Initial load
duke
parents:
diff changeset
2437
a61af66fc99e Initial load
duke
parents:
diff changeset
2438 // --------------------------- FILE *output_routines
a61af66fc99e Initial load
duke
parents:
diff changeset
2439 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2440 // Output code for disp_is_oop, if true.
a61af66fc99e Initial load
duke
parents:
diff changeset
2441 void OperandForm::disp_is_oop(FILE *fp, FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2442 // Check it is a memory interface with a non-user-constant disp field
a61af66fc99e Initial load
duke
parents:
diff changeset
2443 if ( this->_interface == NULL ) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2444 MemInterface *mem_interface = this->_interface->is_MemInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
2445 if ( mem_interface == NULL ) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2446 const char *disp = mem_interface->_disp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2447 if ( *disp != '$' ) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2448
a61af66fc99e Initial load
duke
parents:
diff changeset
2449 // Lookup replacement variable in operand's component list
a61af66fc99e Initial load
duke
parents:
diff changeset
2450 const char *rep_var = disp + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2451 const Component *comp = this->_components.search(rep_var);
a61af66fc99e Initial load
duke
parents:
diff changeset
2452 assert( comp != NULL, "Replacement variable not found in components");
a61af66fc99e Initial load
duke
parents:
diff changeset
2453 // Lookup operand form for replacement variable's type
a61af66fc99e Initial load
duke
parents:
diff changeset
2454 const char *type = comp->_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2455 Form *form = (Form*)globals[type];
a61af66fc99e Initial load
duke
parents:
diff changeset
2456 assert( form != NULL, "Replacement variable's type not found");
a61af66fc99e Initial load
duke
parents:
diff changeset
2457 OperandForm *op = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
2458 assert( op, "Memory Interface 'disp' can only emit an operand form");
a61af66fc99e Initial load
duke
parents:
diff changeset
2459 // Check if this is a ConP, which may require relocation
a61af66fc99e Initial load
duke
parents:
diff changeset
2460 if ( op->is_base_constant(globals) == Form::idealP ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2461 // Find the constant's index: _c0, _c1, _c2, ... , _cN
a61af66fc99e Initial load
duke
parents:
diff changeset
2462 uint idx = op->constant_position( globals, rep_var);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
2463 fprintf(fp," virtual relocInfo::relocType disp_reloc() const {");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
2464 fprintf(fp, " return _c%d->reloc();", idx);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2465 fprintf(fp, " }\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
2466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2468
a61af66fc99e Initial load
duke
parents:
diff changeset
2469 // Generate code for internal and external format methods
a61af66fc99e Initial load
duke
parents:
diff changeset
2470 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2471 // internal access to reg# node->_idx
a61af66fc99e Initial load
duke
parents:
diff changeset
2472 // access to subsumed constant _c0, _c1,
a61af66fc99e Initial load
duke
parents:
diff changeset
2473 void OperandForm::int_format(FILE *fp, FormDict &globals, uint index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2474 Form::DataType dtype;
a61af66fc99e Initial load
duke
parents:
diff changeset
2475 if (_matrule && (_matrule->is_base_register(globals) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
2476 strcmp(ideal_type(globalAD->globalNames()), "RegFlags") == 0)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2477 // !!!!! !!!!!
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2478 fprintf(fp," { char reg_str[128];\n");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2479 fprintf(fp," ra->dump_register(node,reg_str);\n");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2480 fprintf(fp," st->print(\"%cs\",reg_str);\n",'%');
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2481 fprintf(fp," }\n");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2482 } else if (_matrule && (dtype = _matrule->is_base_constant(globals)) != Form::none) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2483 format_constant( fp, index, dtype );
a61af66fc99e Initial load
duke
parents:
diff changeset
2484 } else if (ideal_to_sReg_type(_ident) != Form::none) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2485 // Special format for Stack Slot Register
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2486 fprintf(fp," { char reg_str[128];\n");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2487 fprintf(fp," ra->dump_register(node,reg_str);\n");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2488 fprintf(fp," st->print(\"%cs\",reg_str);\n",'%');
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2489 fprintf(fp," }\n");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2490 } else {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2491 fprintf(fp," st->print(\"No format defined for %s\n\");\n", _ident);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2492 fflush(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2493 fprintf(stderr,"No format defined for %s\n", _ident);
a61af66fc99e Initial load
duke
parents:
diff changeset
2494 dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2495 assert( false,"Internal error:\n output_internal_operand() attempting to output other than a Register or Constant");
a61af66fc99e Initial load
duke
parents:
diff changeset
2496 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2497 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2498
a61af66fc99e Initial load
duke
parents:
diff changeset
2499 // Similar to "int_format" but for cases where data is external to operand
a61af66fc99e Initial load
duke
parents:
diff changeset
2500 // external access to reg# node->in(idx)->_idx,
a61af66fc99e Initial load
duke
parents:
diff changeset
2501 void OperandForm::ext_format(FILE *fp, FormDict &globals, uint index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2502 Form::DataType dtype;
a61af66fc99e Initial load
duke
parents:
diff changeset
2503 if (_matrule && (_matrule->is_base_register(globals) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
2504 strcmp(ideal_type(globalAD->globalNames()), "RegFlags") == 0)) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2505 fprintf(fp," { char reg_str[128];\n");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2506 fprintf(fp," ra->dump_register(node->in(idx");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2507 if ( index != 0 ) fprintf(fp, "+%d",index);
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2508 fprintf(fp, "),reg_str);\n");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2509 fprintf(fp," st->print(\"%cs\",reg_str);\n",'%');
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2510 fprintf(fp," }\n");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2511 } else if (_matrule && (dtype = _matrule->is_base_constant(globals)) != Form::none) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2512 format_constant( fp, index, dtype );
a61af66fc99e Initial load
duke
parents:
diff changeset
2513 } else if (ideal_to_sReg_type(_ident) != Form::none) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2514 // Special format for Stack Slot Register
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2515 fprintf(fp," { char reg_str[128];\n");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2516 fprintf(fp," ra->dump_register(node->in(idx");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2517 if ( index != 0 ) fprintf(fp, "+%d",index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2518 fprintf(fp, "),reg_str);\n");
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2519 fprintf(fp," st->print(\"%cs\",reg_str);\n",'%');
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2520 fprintf(fp," }\n");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2521 } else {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2522 fprintf(fp," st->print(\"No format defined for %s\n\");\n", _ident);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2523 assert( false,"Internal error:\n output_external_operand() attempting to output other than a Register or Constant");
a61af66fc99e Initial load
duke
parents:
diff changeset
2524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2525 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2526
a61af66fc99e Initial load
duke
parents:
diff changeset
2527 void OperandForm::format_constant(FILE *fp, uint const_index, uint const_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2528 switch(const_type) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2529 case Form::idealI: fprintf(fp," st->print(\"#%%d\", _c%d);\n", const_index); break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2530 case Form::idealP: fprintf(fp," if (_c%d) _c%d->dump_on(st);\n", const_index, const_index); break;
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
2531 case Form::idealNKlass:
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2532 case Form::idealN: fprintf(fp," if (_c%d) _c%d->dump_on(st);\n", const_index, const_index); break;
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17810
diff changeset
2533 case Form::idealL: fprintf(fp," st->print(\"#\" INT64_FORMAT, (int64_t)_c%d);\n", const_index); break;
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2534 case Form::idealF: fprintf(fp," st->print(\"#%%f\", _c%d);\n", const_index); break;
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2535 case Form::idealD: fprintf(fp," st->print(\"#%%f\", _c%d);\n", const_index); break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2536 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
2537 assert( false, "ShouldNotReachHere()");
a61af66fc99e Initial load
duke
parents:
diff changeset
2538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2539 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2540
a61af66fc99e Initial load
duke
parents:
diff changeset
2541 // Return the operand form corresponding to the given index, else NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
2542 OperandForm *OperandForm::constant_operand(FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
2543 uint index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2544 // !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
2545 // Check behavior on complex operands
a61af66fc99e Initial load
duke
parents:
diff changeset
2546 uint n_consts = num_consts(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2547 if( n_consts > 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2548 uint i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2549 const char *type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2550 Component *comp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2551 _components.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
2552 if ((comp = _components.iter()) == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2553 assert(n_consts == 1, "Bad component list detected.\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
2554 // Current operand is THE operand
a61af66fc99e Initial load
duke
parents:
diff changeset
2555 if ( index == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2556 return this;
a61af66fc99e Initial load
duke
parents:
diff changeset
2557 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2558 } // end if NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
2559 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2560 // Skip the first component, it can not be a DEF of a constant
a61af66fc99e Initial load
duke
parents:
diff changeset
2561 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
2562 type = comp->base_type(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2563 // Check that "type" is a 'ConI', 'ConP', ...
a61af66fc99e Initial load
duke
parents:
diff changeset
2564 if ( ideal_to_const_type(type) != Form::none ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2565 // When at correct component, get corresponding Operand
a61af66fc99e Initial load
duke
parents:
diff changeset
2566 if ( index == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2567 return globals[comp->_type]->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
2568 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2569 // Decrement number of constants to go
a61af66fc99e Initial load
duke
parents:
diff changeset
2570 --index;
a61af66fc99e Initial load
duke
parents:
diff changeset
2571 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2572 } while((comp = _components.iter()) != NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2573 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2574 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2575
a61af66fc99e Initial load
duke
parents:
diff changeset
2576 // Did not find a constant for this index.
a61af66fc99e Initial load
duke
parents:
diff changeset
2577 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2579
a61af66fc99e Initial load
duke
parents:
diff changeset
2580 // If this operand has a single ideal type, return its type
a61af66fc99e Initial load
duke
parents:
diff changeset
2581 Form::DataType OperandForm::simple_type(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2582 const char *type_name = ideal_type(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2583 Form::DataType type = type_name ? ideal_to_const_type( type_name )
a61af66fc99e Initial load
duke
parents:
diff changeset
2584 : Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
2585 return type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2586 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2587
a61af66fc99e Initial load
duke
parents:
diff changeset
2588 Form::DataType OperandForm::is_base_constant(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2589 if ( _matrule == NULL ) return Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
2590
a61af66fc99e Initial load
duke
parents:
diff changeset
2591 return _matrule->is_base_constant(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2592 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2593
a61af66fc99e Initial load
duke
parents:
diff changeset
2594 // "true" if this operand is a simple type that is swallowed
a61af66fc99e Initial load
duke
parents:
diff changeset
2595 bool OperandForm::swallowed(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2596 Form::DataType type = simple_type(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2597 if( type != Form::none ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2598 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2599 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2600
a61af66fc99e Initial load
duke
parents:
diff changeset
2601 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2602 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2603
a61af66fc99e Initial load
duke
parents:
diff changeset
2604 // Output code to access the value of the index'th constant
a61af66fc99e Initial load
duke
parents:
diff changeset
2605 void OperandForm::access_constant(FILE *fp, FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
2606 uint const_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2607 OperandForm *oper = constant_operand(globals, const_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2608 assert( oper, "Index exceeds number of constants in operand");
a61af66fc99e Initial load
duke
parents:
diff changeset
2609 Form::DataType dtype = oper->is_base_constant(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2610
a61af66fc99e Initial load
duke
parents:
diff changeset
2611 switch(dtype) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2612 case idealI: fprintf(fp,"_c%d", const_index); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2613 case idealP: fprintf(fp,"_c%d->get_con()",const_index); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2614 case idealL: fprintf(fp,"_c%d", const_index); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2615 case idealF: fprintf(fp,"_c%d", const_index); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2616 case idealD: fprintf(fp,"_c%d", const_index); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2617 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
2618 assert( false, "ShouldNotReachHere()");
a61af66fc99e Initial load
duke
parents:
diff changeset
2619 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2620 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2621
a61af66fc99e Initial load
duke
parents:
diff changeset
2622
a61af66fc99e Initial load
duke
parents:
diff changeset
2623 void OperandForm::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2624 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2625 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2626
a61af66fc99e Initial load
duke
parents:
diff changeset
2627 void OperandForm::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2628 fprintf(fp,"\nOperand: %s\n", (_ident?_ident:""));
a61af66fc99e Initial load
duke
parents:
diff changeset
2629 if (_matrule) _matrule->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2630 if (_interface) _interface->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2631 if (_attribs) _attribs->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2632 if (_predicate) _predicate->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2633 if (_constraint) _constraint->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2634 if (_construct) _construct->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2635 if (_format) _format->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2636 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2637
a61af66fc99e Initial load
duke
parents:
diff changeset
2638 //------------------------------Constraint-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2639 Constraint::Constraint(const char *func, const char *arg)
a61af66fc99e Initial load
duke
parents:
diff changeset
2640 : _func(func), _arg(arg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2642 Constraint::~Constraint() { /* not owner of char* */
a61af66fc99e Initial load
duke
parents:
diff changeset
2643 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2644
a61af66fc99e Initial load
duke
parents:
diff changeset
2645 bool Constraint::stack_slots_only() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2646 return strcmp(_func, "ALLOC_IN_RC") == 0
a61af66fc99e Initial load
duke
parents:
diff changeset
2647 && strcmp(_arg, "stack_slots") == 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2648 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2649
a61af66fc99e Initial load
duke
parents:
diff changeset
2650 void Constraint::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2651 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2652 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2653
a61af66fc99e Initial load
duke
parents:
diff changeset
2654 void Constraint::output(FILE *fp) { // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
2655 assert((_func != NULL && _arg != NULL),"missing constraint function or arg");
a61af66fc99e Initial load
duke
parents:
diff changeset
2656 fprintf(fp,"Constraint: %s ( %s )\n", _func, _arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2657 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2658
a61af66fc99e Initial load
duke
parents:
diff changeset
2659 //------------------------------Predicate--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2660 Predicate::Predicate(char *pr)
a61af66fc99e Initial load
duke
parents:
diff changeset
2661 : _pred(pr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2662 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2663 Predicate::~Predicate() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2664 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2665
a61af66fc99e Initial load
duke
parents:
diff changeset
2666 void Predicate::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2667 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2668 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2669
a61af66fc99e Initial load
duke
parents:
diff changeset
2670 void Predicate::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2671 fprintf(fp,"Predicate"); // Write to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
2672 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2673 //------------------------------Interface--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2674 Interface::Interface(const char *name) : _name(name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2675 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2676 Interface::~Interface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2677 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2678
a61af66fc99e Initial load
duke
parents:
diff changeset
2679 Form::InterfaceType Interface::interface_type(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2680 Interface *thsi = (Interface*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
2681 if ( thsi->is_RegInterface() ) return Form::register_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
2682 if ( thsi->is_MemInterface() ) return Form::memory_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
2683 if ( thsi->is_ConstInterface() ) return Form::constant_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
2684 if ( thsi->is_CondInterface() ) return Form::conditional_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
2685
a61af66fc99e Initial load
duke
parents:
diff changeset
2686 return Form::no_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
2687 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2688
a61af66fc99e Initial load
duke
parents:
diff changeset
2689 RegInterface *Interface::is_RegInterface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2690 if ( strcmp(_name,"REG_INTER") != 0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
2691 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2692 return (RegInterface*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
2693 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2694 MemInterface *Interface::is_MemInterface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2695 if ( strcmp(_name,"MEMORY_INTER") != 0 ) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2696 return (MemInterface*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
2697 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2698 ConstInterface *Interface::is_ConstInterface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2699 if ( strcmp(_name,"CONST_INTER") != 0 ) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2700 return (ConstInterface*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
2701 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2702 CondInterface *Interface::is_CondInterface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2703 if ( strcmp(_name,"COND_INTER") != 0 ) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2704 return (CondInterface*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
2705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2706
a61af66fc99e Initial load
duke
parents:
diff changeset
2707
a61af66fc99e Initial load
duke
parents:
diff changeset
2708 void Interface::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2709 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2710 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2711
a61af66fc99e Initial load
duke
parents:
diff changeset
2712 // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
2713 void Interface::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2714 fprintf(fp,"Interface: %s\n", (_name ? _name : "") );
a61af66fc99e Initial load
duke
parents:
diff changeset
2715 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2716
a61af66fc99e Initial load
duke
parents:
diff changeset
2717 //------------------------------RegInterface-----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2718 RegInterface::RegInterface() : Interface("REG_INTER") {
a61af66fc99e Initial load
duke
parents:
diff changeset
2719 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2720 RegInterface::~RegInterface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2721 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2722
a61af66fc99e Initial load
duke
parents:
diff changeset
2723 void RegInterface::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2724 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2725 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2726
a61af66fc99e Initial load
duke
parents:
diff changeset
2727 // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
2728 void RegInterface::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2729 Interface::output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2730 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2731
a61af66fc99e Initial load
duke
parents:
diff changeset
2732 //------------------------------ConstInterface---------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2733 ConstInterface::ConstInterface() : Interface("CONST_INTER") {
a61af66fc99e Initial load
duke
parents:
diff changeset
2734 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2735 ConstInterface::~ConstInterface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2737
a61af66fc99e Initial load
duke
parents:
diff changeset
2738 void ConstInterface::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2739 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2740 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2741
a61af66fc99e Initial load
duke
parents:
diff changeset
2742 // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
2743 void ConstInterface::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2744 Interface::output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2745 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2746
a61af66fc99e Initial load
duke
parents:
diff changeset
2747 //------------------------------MemInterface-----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2748 MemInterface::MemInterface(char *base, char *index, char *scale, char *disp)
a61af66fc99e Initial load
duke
parents:
diff changeset
2749 : Interface("MEMORY_INTER"), _base(base), _index(index), _scale(scale), _disp(disp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2750 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2751 MemInterface::~MemInterface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2752 // not owner of any character arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
2753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2754
a61af66fc99e Initial load
duke
parents:
diff changeset
2755 void MemInterface::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2756 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2757 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2758
a61af66fc99e Initial load
duke
parents:
diff changeset
2759 // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
2760 void MemInterface::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2761 Interface::output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2762 if ( _base != NULL ) fprintf(fp," base == %s\n", _base);
a61af66fc99e Initial load
duke
parents:
diff changeset
2763 if ( _index != NULL ) fprintf(fp," index == %s\n", _index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2764 if ( _scale != NULL ) fprintf(fp," scale == %s\n", _scale);
a61af66fc99e Initial load
duke
parents:
diff changeset
2765 if ( _disp != NULL ) fprintf(fp," disp == %s\n", _disp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2766 // fprintf(fp,"\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
2767 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2768
a61af66fc99e Initial load
duke
parents:
diff changeset
2769 //------------------------------CondInterface----------------------------------
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
2770 CondInterface::CondInterface(const char* equal, const char* equal_format,
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
2771 const char* not_equal, const char* not_equal_format,
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
2772 const char* less, const char* less_format,
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
2773 const char* greater_equal, const char* greater_equal_format,
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
2774 const char* less_equal, const char* less_equal_format,
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2775 const char* greater, const char* greater_format,
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2776 const char* overflow, const char* overflow_format,
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2777 const char* no_overflow, const char* no_overflow_format)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2778 : Interface("COND_INTER"),
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
2779 _equal(equal), _equal_format(equal_format),
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
2780 _not_equal(not_equal), _not_equal_format(not_equal_format),
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
2781 _less(less), _less_format(less_format),
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
2782 _greater_equal(greater_equal), _greater_equal_format(greater_equal_format),
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 356
diff changeset
2783 _less_equal(less_equal), _less_equal_format(less_equal_format),
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2784 _greater(greater), _greater_format(greater_format),
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2785 _overflow(overflow), _overflow_format(overflow_format),
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2786 _no_overflow(no_overflow), _no_overflow_format(no_overflow_format) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2787 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2788 CondInterface::~CondInterface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2789 // not owner of any character arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
2790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2791
a61af66fc99e Initial load
duke
parents:
diff changeset
2792 void CondInterface::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2793 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2794 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2795
a61af66fc99e Initial load
duke
parents:
diff changeset
2796 // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
2797 void CondInterface::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2798 Interface::output(fp);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2799 if ( _equal != NULL ) fprintf(fp," equal == %s\n", _equal);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2800 if ( _not_equal != NULL ) fprintf(fp," not_equal == %s\n", _not_equal);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2801 if ( _less != NULL ) fprintf(fp," less == %s\n", _less);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2802 if ( _greater_equal != NULL ) fprintf(fp," greater_equal == %s\n", _greater_equal);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2803 if ( _less_equal != NULL ) fprintf(fp," less_equal == %s\n", _less_equal);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2804 if ( _greater != NULL ) fprintf(fp," greater == %s\n", _greater);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2805 if ( _overflow != NULL ) fprintf(fp," overflow == %s\n", _overflow);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 11002
diff changeset
2806 if ( _no_overflow != NULL ) fprintf(fp," no_overflow == %s\n", _no_overflow);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2807 // fprintf(fp,"\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
2808 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2809
a61af66fc99e Initial load
duke
parents:
diff changeset
2810 //------------------------------ConstructRule----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2811 ConstructRule::ConstructRule(char *cnstr)
a61af66fc99e Initial load
duke
parents:
diff changeset
2812 : _construct(cnstr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2813 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2814 ConstructRule::~ConstructRule() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2815 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2816
a61af66fc99e Initial load
duke
parents:
diff changeset
2817 void ConstructRule::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2818 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2819 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2820
a61af66fc99e Initial load
duke
parents:
diff changeset
2821 void ConstructRule::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2822 fprintf(fp,"\nConstruct Rule\n"); // Write to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
2823 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2824
a61af66fc99e Initial load
duke
parents:
diff changeset
2825
a61af66fc99e Initial load
duke
parents:
diff changeset
2826 //==============================Shared Forms===================================
a61af66fc99e Initial load
duke
parents:
diff changeset
2827 //------------------------------AttributeForm----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2828 int AttributeForm::_insId = 0; // start counter at 0
a61af66fc99e Initial load
duke
parents:
diff changeset
2829 int AttributeForm::_opId = 0; // start counter at 0
a61af66fc99e Initial load
duke
parents:
diff changeset
2830 const char* AttributeForm::_ins_cost = "ins_cost"; // required name
a61af66fc99e Initial load
duke
parents:
diff changeset
2831 const char* AttributeForm::_op_cost = "op_cost"; // required name
a61af66fc99e Initial load
duke
parents:
diff changeset
2832
a61af66fc99e Initial load
duke
parents:
diff changeset
2833 AttributeForm::AttributeForm(char *attr, int type, char *attrdef)
a61af66fc99e Initial load
duke
parents:
diff changeset
2834 : Form(Form::ATTR), _attrname(attr), _atype(type), _attrdef(attrdef) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2835 if (type==OP_ATTR) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2836 id = ++_opId;
a61af66fc99e Initial load
duke
parents:
diff changeset
2837 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2838 else if (type==INS_ATTR) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2839 id = ++_insId;
a61af66fc99e Initial load
duke
parents:
diff changeset
2840 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2841 else assert( false,"");
a61af66fc99e Initial load
duke
parents:
diff changeset
2842 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2843 AttributeForm::~AttributeForm() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2844 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2845
a61af66fc99e Initial load
duke
parents:
diff changeset
2846 // Dynamic type check
a61af66fc99e Initial load
duke
parents:
diff changeset
2847 AttributeForm *AttributeForm::is_attribute() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2848 return (AttributeForm*)this;
a61af66fc99e Initial load
duke
parents:
diff changeset
2849 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2850
a61af66fc99e Initial load
duke
parents:
diff changeset
2851
a61af66fc99e Initial load
duke
parents:
diff changeset
2852 // inlined // int AttributeForm::type() { return id;}
a61af66fc99e Initial load
duke
parents:
diff changeset
2853
a61af66fc99e Initial load
duke
parents:
diff changeset
2854 void AttributeForm::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2855 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2856 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2857
a61af66fc99e Initial load
duke
parents:
diff changeset
2858 void AttributeForm::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2859 if( _attrname && _attrdef ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2860 fprintf(fp,"\n// AttributeForm \nstatic const int %s = %s;\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
2861 _attrname, _attrdef);
a61af66fc99e Initial load
duke
parents:
diff changeset
2862 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2863 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2864 fprintf(fp,"\n// AttributeForm missing name %s or definition %s\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
2865 (_attrname?_attrname:""), (_attrdef?_attrdef:"") );
a61af66fc99e Initial load
duke
parents:
diff changeset
2866 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2867 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2868
a61af66fc99e Initial load
duke
parents:
diff changeset
2869 //------------------------------Component--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2870 Component::Component(const char *name, const char *type, int usedef)
a61af66fc99e Initial load
duke
parents:
diff changeset
2871 : _name(name), _type(type), _usedef(usedef) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2872 _ftype = Form::COMP;
a61af66fc99e Initial load
duke
parents:
diff changeset
2873 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2874 Component::~Component() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2875 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2876
a61af66fc99e Initial load
duke
parents:
diff changeset
2877 // True if this component is equal to the parameter.
a61af66fc99e Initial load
duke
parents:
diff changeset
2878 bool Component::is(int use_def_kill_enum) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2879 return (_usedef == use_def_kill_enum ? true : false);
a61af66fc99e Initial load
duke
parents:
diff changeset
2880 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2881 // True if this component is used/def'd/kill'd as the parameter suggests.
a61af66fc99e Initial load
duke
parents:
diff changeset
2882 bool Component::isa(int use_def_kill_enum) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2883 return (_usedef & use_def_kill_enum) == use_def_kill_enum;
a61af66fc99e Initial load
duke
parents:
diff changeset
2884 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2885
a61af66fc99e Initial load
duke
parents:
diff changeset
2886 // Extend this component with additional use/def/kill behavior
a61af66fc99e Initial load
duke
parents:
diff changeset
2887 int Component::promote_use_def_info(int new_use_def) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2888 _usedef |= new_use_def;
a61af66fc99e Initial load
duke
parents:
diff changeset
2889
a61af66fc99e Initial load
duke
parents:
diff changeset
2890 return _usedef;
a61af66fc99e Initial load
duke
parents:
diff changeset
2891 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2892
a61af66fc99e Initial load
duke
parents:
diff changeset
2893 // Check the base type of this component, if it has one
a61af66fc99e Initial load
duke
parents:
diff changeset
2894 const char *Component::base_type(FormDict &globals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2895 const Form *frm = globals[_type];
a61af66fc99e Initial load
duke
parents:
diff changeset
2896 if (frm == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2897 OperandForm *op = frm->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
2898 if (op == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2899 if (op->ideal_only()) return op->_ident;
a61af66fc99e Initial load
duke
parents:
diff changeset
2900 return (char *)op->ideal_type(globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
2901 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2902
a61af66fc99e Initial load
duke
parents:
diff changeset
2903 void Component::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2904 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2905 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2906
a61af66fc99e Initial load
duke
parents:
diff changeset
2907 void Component::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2908 fprintf(fp,"Component:"); // Write to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
2909 fprintf(fp, " name = %s", _name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2910 fprintf(fp, ", type = %s", _type);
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2911 assert(_usedef != 0, "unknown effect");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
2912 fprintf(fp, ", use/def = %s\n", getUsedefName());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2913 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2914
a61af66fc99e Initial load
duke
parents:
diff changeset
2915
a61af66fc99e Initial load
duke
parents:
diff changeset
2916 //------------------------------ComponentList---------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2917 ComponentList::ComponentList() : NameList(), _matchcnt(0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2918 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2919 ComponentList::~ComponentList() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2920 // // This list may not own its elements if copied via assignment
a61af66fc99e Initial load
duke
parents:
diff changeset
2921 // Component *component;
a61af66fc99e Initial load
duke
parents:
diff changeset
2922 // for (reset(); (component = iter()) != NULL;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2923 // delete component;
a61af66fc99e Initial load
duke
parents:
diff changeset
2924 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
2925 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2926
a61af66fc99e Initial load
duke
parents:
diff changeset
2927 void ComponentList::insert(Component *component, bool mflag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2928 NameList::addName((char *)component);
a61af66fc99e Initial load
duke
parents:
diff changeset
2929 if(mflag) _matchcnt++;
a61af66fc99e Initial load
duke
parents:
diff changeset
2930 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2931 void ComponentList::insert(const char *name, const char *opType, int usedef,
a61af66fc99e Initial load
duke
parents:
diff changeset
2932 bool mflag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2933 Component * component = new Component(name, opType, usedef);
a61af66fc99e Initial load
duke
parents:
diff changeset
2934 insert(component, mflag);
a61af66fc99e Initial load
duke
parents:
diff changeset
2935 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2936 Component *ComponentList::current() { return (Component*)NameList::current(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
2937 Component *ComponentList::iter() { return (Component*)NameList::iter(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
2938 Component *ComponentList::match_iter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2939 if(_iter < _matchcnt) return (Component*)NameList::iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
2940 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2941 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2942 Component *ComponentList::post_match_iter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2943 Component *comp = iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
2944 // At end of list?
a61af66fc99e Initial load
duke
parents:
diff changeset
2945 if ( comp == NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2946 return comp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2947 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2948 // In post-match components?
a61af66fc99e Initial load
duke
parents:
diff changeset
2949 if (_iter > match_count()-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2950 return comp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2951 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2952
a61af66fc99e Initial load
duke
parents:
diff changeset
2953 return post_match_iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
2954 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2955
a61af66fc99e Initial load
duke
parents:
diff changeset
2956 void ComponentList::reset() { NameList::reset(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
2957 int ComponentList::count() { return NameList::count(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
2958
a61af66fc99e Initial load
duke
parents:
diff changeset
2959 Component *ComponentList::operator[](int position) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2960 // Shortcut complete iteration if there are not enough entries
a61af66fc99e Initial load
duke
parents:
diff changeset
2961 if (position >= count()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2962
a61af66fc99e Initial load
duke
parents:
diff changeset
2963 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2964 Component *component = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2965 for (reset(); (component = iter()) != NULL;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2966 if (index == position) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2967 return component;
a61af66fc99e Initial load
duke
parents:
diff changeset
2968 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2969 ++index;
a61af66fc99e Initial load
duke
parents:
diff changeset
2970 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2971
a61af66fc99e Initial load
duke
parents:
diff changeset
2972 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2973 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2974
a61af66fc99e Initial load
duke
parents:
diff changeset
2975 const Component *ComponentList::search(const char *name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2976 PreserveIter pi(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
2977 reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
2978 for( Component *comp = NULL; ((comp = iter()) != NULL); ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2979 if( strcmp(comp->_name,name) == 0 ) return comp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2980 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2981
a61af66fc99e Initial load
duke
parents:
diff changeset
2982 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2983 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2984
a61af66fc99e Initial load
duke
parents:
diff changeset
2985 // Return number of USEs + number of DEFs
a61af66fc99e Initial load
duke
parents:
diff changeset
2986 // When there are no components, or the first component is a USE,
a61af66fc99e Initial load
duke
parents:
diff changeset
2987 // then we add '1' to hold a space for the 'result' operand.
a61af66fc99e Initial load
duke
parents:
diff changeset
2988 int ComponentList::num_operands() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2989 PreserveIter pi(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
2990 uint count = 1; // result operand
a61af66fc99e Initial load
duke
parents:
diff changeset
2991 uint position = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2992
a61af66fc99e Initial load
duke
parents:
diff changeset
2993 Component *component = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2994 for( reset(); (component = iter()) != NULL; ++position ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2995 if( component->isa(Component::USE) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
2996 ( position == 0 && (! component->isa(Component::DEF))) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2997 ++count;
a61af66fc99e Initial load
duke
parents:
diff changeset
2998 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2999 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3000
a61af66fc99e Initial load
duke
parents:
diff changeset
3001 return count;
a61af66fc99e Initial load
duke
parents:
diff changeset
3002 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3003
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3004 // Return zero-based position of operand 'name' in list; -1 if not in list.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3005 // if parameter 'usedef' is ::USE, it will match USE, USE_DEF, ...
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3006 int ComponentList::operand_position(const char *name, int usedef, Form *fm) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3007 PreserveIter pi(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
3008 int position = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3009 int num_opnds = num_operands();
a61af66fc99e Initial load
duke
parents:
diff changeset
3010 Component *component;
a61af66fc99e Initial load
duke
parents:
diff changeset
3011 Component* preceding_non_use = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3012 Component* first_def = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3013 for (reset(); (component = iter()) != NULL; ++position) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3014 // When the first component is not a DEF,
a61af66fc99e Initial load
duke
parents:
diff changeset
3015 // leave space for the result operand!
a61af66fc99e Initial load
duke
parents:
diff changeset
3016 if ( position==0 && (! component->isa(Component::DEF)) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3017 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3018 ++num_opnds;
a61af66fc99e Initial load
duke
parents:
diff changeset
3019 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3020 if (strcmp(name, component->_name)==0 && (component->isa(usedef))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3021 // When the first entry in the component list is a DEF and a USE
a61af66fc99e Initial load
duke
parents:
diff changeset
3022 // Treat them as being separate, a DEF first, then a USE
a61af66fc99e Initial load
duke
parents:
diff changeset
3023 if( position==0
a61af66fc99e Initial load
duke
parents:
diff changeset
3024 && usedef==Component::USE && component->isa(Component::DEF) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3025 assert(position+1 < num_opnds, "advertised index in bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
3026 return position+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3027 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3028 if( preceding_non_use && strcmp(component->_name, preceding_non_use->_name) ) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3029 fprintf(stderr, "the name '%s(%s)' should not precede the name '%s(%s)'",
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3030 preceding_non_use->_name, preceding_non_use->getUsedefName(),
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3031 name, component->getUsedefName());
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3032 if (fm && fm->is_instruction()) fprintf(stderr, "in form '%s'", fm->is_instruction()->_ident);
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3033 if (fm && fm->is_operand()) fprintf(stderr, "in form '%s'", fm->is_operand()->_ident);
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3034 fprintf(stderr, "\n");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3035 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3036 if( position >= num_opnds ) {
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3037 fprintf(stderr, "the name '%s' is too late in its name list", name);
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3038 if (fm && fm->is_instruction()) fprintf(stderr, "in form '%s'", fm->is_instruction()->_ident);
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3039 if (fm && fm->is_operand()) fprintf(stderr, "in form '%s'", fm->is_operand()->_ident);
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3040 fprintf(stderr, "\n");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3041 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3042 assert(position < num_opnds, "advertised index in bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
3043 return position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3044 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3045 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3046 if( component->isa(Component::DEF)
a61af66fc99e Initial load
duke
parents:
diff changeset
3047 && component->isa(Component::USE) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3048 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3049 if( position != 1 ) --position; // only use two slots for the 1st USE_DEF
a61af66fc99e Initial load
duke
parents:
diff changeset
3050 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3051 if( component->isa(Component::DEF) && !first_def ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3052 first_def = component;
a61af66fc99e Initial load
duke
parents:
diff changeset
3053 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3054 if( !component->isa(Component::USE) && component != first_def ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3055 preceding_non_use = component;
a61af66fc99e Initial load
duke
parents:
diff changeset
3056 } else if( preceding_non_use && !strcmp(component->_name, preceding_non_use->_name) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3057 preceding_non_use = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3058 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3059 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3060 return Not_in_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
3061 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3062
a61af66fc99e Initial load
duke
parents:
diff changeset
3063 // Find position for this name, regardless of use/def information
a61af66fc99e Initial load
duke
parents:
diff changeset
3064 int ComponentList::operand_position(const char *name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3065 PreserveIter pi(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
3066 int position = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3067 Component *component;
a61af66fc99e Initial load
duke
parents:
diff changeset
3068 for (reset(); (component = iter()) != NULL; ++position) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3069 // When the first component is not a DEF,
a61af66fc99e Initial load
duke
parents:
diff changeset
3070 // leave space for the result operand!
a61af66fc99e Initial load
duke
parents:
diff changeset
3071 if ( position==0 && (! component->isa(Component::DEF)) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3072 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3073 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3074 if (strcmp(name, component->_name)==0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3075 return position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3076 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3077 if( component->isa(Component::DEF)
a61af66fc99e Initial load
duke
parents:
diff changeset
3078 && component->isa(Component::USE) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3079 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3080 if( position != 1 ) --position; // only use two slots for the 1st USE_DEF
a61af66fc99e Initial load
duke
parents:
diff changeset
3081 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3082 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3083 return Not_in_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
3084 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3085
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3086 int ComponentList::operand_position_format(const char *name, Form *fm) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3087 PreserveIter pi(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
3088 int first_position = operand_position(name);
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3089 int use_position = operand_position(name, Component::USE, fm);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3090
a61af66fc99e Initial load
duke
parents:
diff changeset
3091 return ((first_position < use_position) ? use_position : first_position);
a61af66fc99e Initial load
duke
parents:
diff changeset
3092 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3093
a61af66fc99e Initial load
duke
parents:
diff changeset
3094 int ComponentList::label_position() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3095 PreserveIter pi(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
3096 int position = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3097 reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
3098 for( Component *comp; (comp = iter()) != NULL; ++position) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3099 // When the first component is not a DEF,
a61af66fc99e Initial load
duke
parents:
diff changeset
3100 // leave space for the result operand!
a61af66fc99e Initial load
duke
parents:
diff changeset
3101 if ( position==0 && (! comp->isa(Component::DEF)) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3102 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3104 if (strcmp(comp->_type, "label")==0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3105 return position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3107 if( comp->isa(Component::DEF)
a61af66fc99e Initial load
duke
parents:
diff changeset
3108 && comp->isa(Component::USE) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3109 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3110 if( position != 1 ) --position; // only use two slots for the 1st USE_DEF
a61af66fc99e Initial load
duke
parents:
diff changeset
3111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3113
a61af66fc99e Initial load
duke
parents:
diff changeset
3114 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3116
a61af66fc99e Initial load
duke
parents:
diff changeset
3117 int ComponentList::method_position() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3118 PreserveIter pi(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
3119 int position = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3120 reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
3121 for( Component *comp; (comp = iter()) != NULL; ++position) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3122 // When the first component is not a DEF,
a61af66fc99e Initial load
duke
parents:
diff changeset
3123 // leave space for the result operand!
a61af66fc99e Initial load
duke
parents:
diff changeset
3124 if ( position==0 && (! comp->isa(Component::DEF)) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3125 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3127 if (strcmp(comp->_type, "method")==0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3128 return position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3130 if( comp->isa(Component::DEF)
a61af66fc99e Initial load
duke
parents:
diff changeset
3131 && comp->isa(Component::USE) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3132 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3133 if( position != 1 ) --position; // only use two slots for the 1st USE_DEF
a61af66fc99e Initial load
duke
parents:
diff changeset
3134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3136
a61af66fc99e Initial load
duke
parents:
diff changeset
3137 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3139
a61af66fc99e Initial load
duke
parents:
diff changeset
3140 void ComponentList::dump() { output(stderr); }
a61af66fc99e Initial load
duke
parents:
diff changeset
3141
a61af66fc99e Initial load
duke
parents:
diff changeset
3142 void ComponentList::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3143 PreserveIter pi(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
3144 fprintf(fp, "\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
3145 Component *component;
a61af66fc99e Initial load
duke
parents:
diff changeset
3146 for (reset(); (component = iter()) != NULL;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3147 component->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
3148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3149 fprintf(fp, "\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
3150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3151
a61af66fc99e Initial load
duke
parents:
diff changeset
3152 //------------------------------MatchNode--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3153 MatchNode::MatchNode(ArchDesc &ad, const char *result, const char *mexpr,
a61af66fc99e Initial load
duke
parents:
diff changeset
3154 const char *opType, MatchNode *lChild, MatchNode *rChild)
a61af66fc99e Initial load
duke
parents:
diff changeset
3155 : _AD(ad), _result(result), _name(mexpr), _opType(opType),
a61af66fc99e Initial load
duke
parents:
diff changeset
3156 _lChild(lChild), _rChild(rChild), _internalop(0), _numleaves(0),
a61af66fc99e Initial load
duke
parents:
diff changeset
3157 _commutative_id(0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3158 _numleaves = (lChild ? lChild->_numleaves : 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
3159 + (rChild ? rChild->_numleaves : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3161
a61af66fc99e Initial load
duke
parents:
diff changeset
3162 MatchNode::MatchNode(ArchDesc &ad, MatchNode& mnode)
a61af66fc99e Initial load
duke
parents:
diff changeset
3163 : _AD(ad), _result(mnode._result), _name(mnode._name),
a61af66fc99e Initial load
duke
parents:
diff changeset
3164 _opType(mnode._opType), _lChild(mnode._lChild), _rChild(mnode._rChild),
a61af66fc99e Initial load
duke
parents:
diff changeset
3165 _internalop(0), _numleaves(mnode._numleaves),
a61af66fc99e Initial load
duke
parents:
diff changeset
3166 _commutative_id(mnode._commutative_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3168
a61af66fc99e Initial load
duke
parents:
diff changeset
3169 MatchNode::MatchNode(ArchDesc &ad, MatchNode& mnode, int clone)
a61af66fc99e Initial load
duke
parents:
diff changeset
3170 : _AD(ad), _result(mnode._result), _name(mnode._name),
a61af66fc99e Initial load
duke
parents:
diff changeset
3171 _opType(mnode._opType),
a61af66fc99e Initial load
duke
parents:
diff changeset
3172 _internalop(0), _numleaves(mnode._numleaves),
a61af66fc99e Initial load
duke
parents:
diff changeset
3173 _commutative_id(mnode._commutative_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3174 if (mnode._lChild) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3175 _lChild = new MatchNode(ad, *mnode._lChild, clone);
a61af66fc99e Initial load
duke
parents:
diff changeset
3176 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3177 _lChild = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3179 if (mnode._rChild) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3180 _rChild = new MatchNode(ad, *mnode._rChild, clone);
a61af66fc99e Initial load
duke
parents:
diff changeset
3181 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3182 _rChild = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3185
a61af66fc99e Initial load
duke
parents:
diff changeset
3186 MatchNode::~MatchNode() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3187 // // This node may not own its children if copied via assignment
a61af66fc99e Initial load
duke
parents:
diff changeset
3188 // if( _lChild ) delete _lChild;
a61af66fc99e Initial load
duke
parents:
diff changeset
3189 // if( _rChild ) delete _rChild;
a61af66fc99e Initial load
duke
parents:
diff changeset
3190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3191
a61af66fc99e Initial load
duke
parents:
diff changeset
3192 bool MatchNode::find_type(const char *type, int &position) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3193 if ( (_lChild != NULL) && (_lChild->find_type(type, position)) ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3194 if ( (_rChild != NULL) && (_rChild->find_type(type, position)) ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3195
a61af66fc99e Initial load
duke
parents:
diff changeset
3196 if (strcmp(type,_opType)==0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3197 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3198 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3199 ++position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3201 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3203
a61af66fc99e Initial load
duke
parents:
diff changeset
3204 // Recursive call collecting info on top-level operands, not transitive.
a61af66fc99e Initial load
duke
parents:
diff changeset
3205 // Implementation does not modify state of internal structures.
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3206 void MatchNode::append_components(FormDict& locals, ComponentList& components,
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3207 bool def_flag) const {
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3208 int usedef = def_flag ? Component::DEF : Component::USE;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3209 FormDict &globals = _AD.globalNames();
a61af66fc99e Initial load
duke
parents:
diff changeset
3210
a61af66fc99e Initial load
duke
parents:
diff changeset
3211 assert (_name != NULL, "MatchNode::build_components encountered empty node\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
3212 // Base case
a61af66fc99e Initial load
duke
parents:
diff changeset
3213 if (_lChild==NULL && _rChild==NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3214 // If _opType is not an operation, do not build a component for it #####
a61af66fc99e Initial load
duke
parents:
diff changeset
3215 const Form *f = globals[_opType];
a61af66fc99e Initial load
duke
parents:
diff changeset
3216 if( f != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3217 // Add non-ideals that are operands, operand-classes,
a61af66fc99e Initial load
duke
parents:
diff changeset
3218 if( ! f->ideal_only()
a61af66fc99e Initial load
duke
parents:
diff changeset
3219 && (f->is_opclass() || f->is_operand()) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3220 components.insert(_name, _opType, usedef, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
3221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3223 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
3224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3225 // Promote results of "Set" to DEF
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3226 bool tmpdef_flag = (!strcmp(_opType, "Set")) ? true : false;
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3227 if (_lChild) _lChild->append_components(locals, components, tmpdef_flag);
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3228 tmpdef_flag = false; // only applies to component immediately following 'Set'
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3229 if (_rChild) _rChild->append_components(locals, components, tmpdef_flag);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3230 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3231
a61af66fc99e Initial load
duke
parents:
diff changeset
3232 // Find the n'th base-operand in the match node,
a61af66fc99e Initial load
duke
parents:
diff changeset
3233 // recursively investigates match rules of user-defined operands.
a61af66fc99e Initial load
duke
parents:
diff changeset
3234 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3235 // Implementation does not modify state of internal structures since they
a61af66fc99e Initial load
duke
parents:
diff changeset
3236 // can be shared.
a61af66fc99e Initial load
duke
parents:
diff changeset
3237 bool MatchNode::base_operand(uint &position, FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
3238 const char * &result, const char * &name,
a61af66fc99e Initial load
duke
parents:
diff changeset
3239 const char * &opType) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3240 assert (_name != NULL, "MatchNode::base_operand encountered empty node\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
3241 // Base case
a61af66fc99e Initial load
duke
parents:
diff changeset
3242 if (_lChild==NULL && _rChild==NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3243 // Check for special case: "Universe", "label"
a61af66fc99e Initial load
duke
parents:
diff changeset
3244 if (strcmp(_opType,"Universe") == 0 || strcmp(_opType,"label")==0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3245 if (position == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3246 result = _result;
a61af66fc99e Initial load
duke
parents:
diff changeset
3247 name = _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
3248 opType = _opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3249 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3250 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3251 -- position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3252 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3255
a61af66fc99e Initial load
duke
parents:
diff changeset
3256 const Form *form = globals[_opType];
a61af66fc99e Initial load
duke
parents:
diff changeset
3257 MatchNode *matchNode = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3258 // Check for user-defined type
a61af66fc99e Initial load
duke
parents:
diff changeset
3259 if (form) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3260 // User operand or instruction?
a61af66fc99e Initial load
duke
parents:
diff changeset
3261 OperandForm *opForm = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
3262 InstructForm *inForm = form->is_instruction();
a61af66fc99e Initial load
duke
parents:
diff changeset
3263 if ( opForm ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3264 matchNode = (MatchNode*)opForm->_matrule;
a61af66fc99e Initial load
duke
parents:
diff changeset
3265 } else if ( inForm ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3266 matchNode = (MatchNode*)inForm->_matrule;
a61af66fc99e Initial load
duke
parents:
diff changeset
3267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3269 // if this is user-defined, recurse on match rule
a61af66fc99e Initial load
duke
parents:
diff changeset
3270 // User-defined operand and instruction forms have a match-rule.
a61af66fc99e Initial load
duke
parents:
diff changeset
3271 if (matchNode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3272 return (matchNode->base_operand(position,globals,result,name,opType));
a61af66fc99e Initial load
duke
parents:
diff changeset
3273 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3274 // Either not a form, or a system-defined form (no match rule).
a61af66fc99e Initial load
duke
parents:
diff changeset
3275 if (position==0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3276 result = _result;
a61af66fc99e Initial load
duke
parents:
diff changeset
3277 name = _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
3278 opType = _opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3279 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3280 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3281 --position;
a61af66fc99e Initial load
duke
parents:
diff changeset
3282 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3285
a61af66fc99e Initial load
duke
parents:
diff changeset
3286 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3287 // Examine the left child and right child as well
a61af66fc99e Initial load
duke
parents:
diff changeset
3288 if (_lChild) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3289 if (_lChild->base_operand(position, globals, result, name, opType))
a61af66fc99e Initial load
duke
parents:
diff changeset
3290 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3292
a61af66fc99e Initial load
duke
parents:
diff changeset
3293 if (_rChild) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3294 if (_rChild->base_operand(position, globals, result, name, opType))
a61af66fc99e Initial load
duke
parents:
diff changeset
3295 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3298
a61af66fc99e Initial load
duke
parents:
diff changeset
3299 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3301
a61af66fc99e Initial load
duke
parents:
diff changeset
3302 // Recursive call on all operands' match rules in my match rule.
a61af66fc99e Initial load
duke
parents:
diff changeset
3303 uint MatchNode::num_consts(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3304 uint index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3305 uint num_consts = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3306 const char *result;
a61af66fc99e Initial load
duke
parents:
diff changeset
3307 const char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
3308 const char *opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3309
a61af66fc99e Initial load
duke
parents:
diff changeset
3310 for (uint position = index;
a61af66fc99e Initial load
duke
parents:
diff changeset
3311 base_operand(position,globals,result,name,opType); position = index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3312 ++index;
a61af66fc99e Initial load
duke
parents:
diff changeset
3313 if( ideal_to_const_type(opType) ) num_consts++;
a61af66fc99e Initial load
duke
parents:
diff changeset
3314 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3315
a61af66fc99e Initial load
duke
parents:
diff changeset
3316 return num_consts;
a61af66fc99e Initial load
duke
parents:
diff changeset
3317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3318
a61af66fc99e Initial load
duke
parents:
diff changeset
3319 // Recursive call on all operands' match rules in my match rule.
a61af66fc99e Initial load
duke
parents:
diff changeset
3320 // Constants in match rule subtree with specified type
a61af66fc99e Initial load
duke
parents:
diff changeset
3321 uint MatchNode::num_consts(FormDict &globals, Form::DataType type) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3322 uint index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3323 uint num_consts = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3324 const char *result;
a61af66fc99e Initial load
duke
parents:
diff changeset
3325 const char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
3326 const char *opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3327
a61af66fc99e Initial load
duke
parents:
diff changeset
3328 for (uint position = index;
a61af66fc99e Initial load
duke
parents:
diff changeset
3329 base_operand(position,globals,result,name,opType); position = index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3330 ++index;
a61af66fc99e Initial load
duke
parents:
diff changeset
3331 if( ideal_to_const_type(opType) == type ) num_consts++;
a61af66fc99e Initial load
duke
parents:
diff changeset
3332 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3333
a61af66fc99e Initial load
duke
parents:
diff changeset
3334 return num_consts;
a61af66fc99e Initial load
duke
parents:
diff changeset
3335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3336
a61af66fc99e Initial load
duke
parents:
diff changeset
3337 // Recursive call on all operands' match rules in my match rule.
a61af66fc99e Initial load
duke
parents:
diff changeset
3338 uint MatchNode::num_const_ptrs(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3339 return num_consts( globals, Form::idealP );
a61af66fc99e Initial load
duke
parents:
diff changeset
3340 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3341
a61af66fc99e Initial load
duke
parents:
diff changeset
3342 bool MatchNode::sets_result() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3343 return ( (strcmp(_name,"Set") == 0) ? true : false );
a61af66fc99e Initial load
duke
parents:
diff changeset
3344 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3345
a61af66fc99e Initial load
duke
parents:
diff changeset
3346 const char *MatchNode::reduce_right(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3347 // If there is no right reduction, return NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
3348 const char *rightStr = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3349
a61af66fc99e Initial load
duke
parents:
diff changeset
3350 // If we are a "Set", start from the right child.
a61af66fc99e Initial load
duke
parents:
diff changeset
3351 const MatchNode *const mnode = sets_result() ?
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3352 (const MatchNode *)this->_rChild :
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3353 (const MatchNode *)this;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3354
a61af66fc99e Initial load
duke
parents:
diff changeset
3355 // If our right child exists, it is the right reduction
a61af66fc99e Initial load
duke
parents:
diff changeset
3356 if ( mnode->_rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3357 rightStr = mnode->_rChild->_internalop ? mnode->_rChild->_internalop
a61af66fc99e Initial load
duke
parents:
diff changeset
3358 : mnode->_rChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3359 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3360 // Else, May be simple chain rule: (Set dst operand_form), rightStr=NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3361 return rightStr;
a61af66fc99e Initial load
duke
parents:
diff changeset
3362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3363
a61af66fc99e Initial load
duke
parents:
diff changeset
3364 const char *MatchNode::reduce_left(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3365 // If there is no left reduction, return NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
3366 const char *leftStr = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3367
a61af66fc99e Initial load
duke
parents:
diff changeset
3368 // If we are a "Set", start from the right child.
a61af66fc99e Initial load
duke
parents:
diff changeset
3369 const MatchNode *const mnode = sets_result() ?
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3370 (const MatchNode *)this->_rChild :
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
3371 (const MatchNode *)this;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3372
a61af66fc99e Initial load
duke
parents:
diff changeset
3373 // If our left child exists, it is the left reduction
a61af66fc99e Initial load
duke
parents:
diff changeset
3374 if ( mnode->_lChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3375 leftStr = mnode->_lChild->_internalop ? mnode->_lChild->_internalop
a61af66fc99e Initial load
duke
parents:
diff changeset
3376 : mnode->_lChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3377 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3378 // May be simple chain rule: (Set dst operand_form_source)
a61af66fc99e Initial load
duke
parents:
diff changeset
3379 if ( sets_result() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3380 OperandForm *oper = globals[mnode->_opType]->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
3381 if( oper ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3382 leftStr = mnode->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3384 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3386 return leftStr;
a61af66fc99e Initial load
duke
parents:
diff changeset
3387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3388
a61af66fc99e Initial load
duke
parents:
diff changeset
3389 //------------------------------count_instr_names------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3390 // Count occurrences of operands names in the leaves of the instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
3391 // match rule.
a61af66fc99e Initial load
duke
parents:
diff changeset
3392 void MatchNode::count_instr_names( Dict &names ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3393 if( !this ) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
3394 if( _lChild ) _lChild->count_instr_names(names);
a61af66fc99e Initial load
duke
parents:
diff changeset
3395 if( _rChild ) _rChild->count_instr_names(names);
a61af66fc99e Initial load
duke
parents:
diff changeset
3396 if( !_lChild && !_rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3397 uintptr_t cnt = (uintptr_t)names[_name];
a61af66fc99e Initial load
duke
parents:
diff changeset
3398 cnt++; // One more name found
a61af66fc99e Initial load
duke
parents:
diff changeset
3399 names.Insert(_name,(void*)cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
3400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3401 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3402
a61af66fc99e Initial load
duke
parents:
diff changeset
3403 //------------------------------build_instr_pred-------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3404 // Build a path to 'name' in buf. Actually only build if cnt is zero, so we
a61af66fc99e Initial load
duke
parents:
diff changeset
3405 // can skip some leading instances of 'name'.
a61af66fc99e Initial load
duke
parents:
diff changeset
3406 int MatchNode::build_instr_pred( char *buf, const char *name, int cnt ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3407 if( _lChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3408 if( !cnt ) strcpy( buf, "_kids[0]->" );
a61af66fc99e Initial load
duke
parents:
diff changeset
3409 cnt = _lChild->build_instr_pred( buf+strlen(buf), name, cnt );
a61af66fc99e Initial load
duke
parents:
diff changeset
3410 if( cnt < 0 ) return cnt; // Found it, all done
a61af66fc99e Initial load
duke
parents:
diff changeset
3411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3412 if( _rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3413 if( !cnt ) strcpy( buf, "_kids[1]->" );
a61af66fc99e Initial load
duke
parents:
diff changeset
3414 cnt = _rChild->build_instr_pred( buf+strlen(buf), name, cnt );
a61af66fc99e Initial load
duke
parents:
diff changeset
3415 if( cnt < 0 ) return cnt; // Found it, all done
a61af66fc99e Initial load
duke
parents:
diff changeset
3416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3417 if( !_lChild && !_rChild ) { // Found a leaf
a61af66fc99e Initial load
duke
parents:
diff changeset
3418 // Wrong name? Give up...
a61af66fc99e Initial load
duke
parents:
diff changeset
3419 if( strcmp(name,_name) ) return cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
3420 if( !cnt ) strcpy(buf,"_leaf");
a61af66fc99e Initial load
duke
parents:
diff changeset
3421 return cnt-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3423 return cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
3424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3425
a61af66fc99e Initial load
duke
parents:
diff changeset
3426
a61af66fc99e Initial load
duke
parents:
diff changeset
3427 //------------------------------build_internalop-------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3428 // Build string representation of subtree
a61af66fc99e Initial load
duke
parents:
diff changeset
3429 void MatchNode::build_internalop( ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3430 char *iop, *subtree;
a61af66fc99e Initial load
duke
parents:
diff changeset
3431 const char *lstr, *rstr;
a61af66fc99e Initial load
duke
parents:
diff changeset
3432 // Build string representation of subtree
a61af66fc99e Initial load
duke
parents:
diff changeset
3433 // Operation lchildType rchildType
a61af66fc99e Initial load
duke
parents:
diff changeset
3434 int len = (int)strlen(_opType) + 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
3435 lstr = (_lChild) ? ((_lChild->_internalop) ?
a61af66fc99e Initial load
duke
parents:
diff changeset
3436 _lChild->_internalop : _lChild->_opType) : "";
a61af66fc99e Initial load
duke
parents:
diff changeset
3437 rstr = (_rChild) ? ((_rChild->_internalop) ?
a61af66fc99e Initial load
duke
parents:
diff changeset
3438 _rChild->_internalop : _rChild->_opType) : "";
a61af66fc99e Initial load
duke
parents:
diff changeset
3439 len += (int)strlen(lstr) + (int)strlen(rstr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3440 subtree = (char *)malloc(len);
a61af66fc99e Initial load
duke
parents:
diff changeset
3441 sprintf(subtree,"_%s_%s_%s", _opType, lstr, rstr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3442 // Hash the subtree string in _internalOps; if a name exists, use it
a61af66fc99e Initial load
duke
parents:
diff changeset
3443 iop = (char *)_AD._internalOps[subtree];
a61af66fc99e Initial load
duke
parents:
diff changeset
3444 // Else create a unique name, and add it to the hash table
a61af66fc99e Initial load
duke
parents:
diff changeset
3445 if (iop == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3446 iop = subtree;
a61af66fc99e Initial load
duke
parents:
diff changeset
3447 _AD._internalOps.Insert(subtree, iop);
a61af66fc99e Initial load
duke
parents:
diff changeset
3448 _AD._internalOpNames.addName(iop);
a61af66fc99e Initial load
duke
parents:
diff changeset
3449 _AD._internalMatch.Insert(iop, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
3450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3451 // Add the internal operand name to the MatchNode
a61af66fc99e Initial load
duke
parents:
diff changeset
3452 _internalop = iop;
a61af66fc99e Initial load
duke
parents:
diff changeset
3453 _result = iop;
a61af66fc99e Initial load
duke
parents:
diff changeset
3454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3455
a61af66fc99e Initial load
duke
parents:
diff changeset
3456
a61af66fc99e Initial load
duke
parents:
diff changeset
3457 void MatchNode::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3458 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3459 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3460
a61af66fc99e Initial load
duke
parents:
diff changeset
3461 void MatchNode::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3462 if (_lChild==0 && _rChild==0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3463 fprintf(fp," %s",_name); // operand
a61af66fc99e Initial load
duke
parents:
diff changeset
3464 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3465 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3466 fprintf(fp," (%s ",_name); // " (opcodeName "
a61af66fc99e Initial load
duke
parents:
diff changeset
3467 if(_lChild) _lChild->output(fp); // left operand
a61af66fc99e Initial load
duke
parents:
diff changeset
3468 if(_rChild) _rChild->output(fp); // right operand
a61af66fc99e Initial load
duke
parents:
diff changeset
3469 fprintf(fp,")"); // ")"
a61af66fc99e Initial load
duke
parents:
diff changeset
3470 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3472
a61af66fc99e Initial load
duke
parents:
diff changeset
3473 int MatchNode::needs_ideal_memory_edge(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3474 static const char *needs_ideal_memory_list[] = {
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
3475 "StoreI","StoreL","StoreP","StoreN","StoreNKlass","StoreD","StoreF" ,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3476 "StoreB","StoreC","Store" ,"StoreFP",
6849
f6badecb7ea7 7199654: Remove LoadUI2LNode
vlivanov
parents: 6848
diff changeset
3477 "LoadI", "LoadL", "LoadP" ,"LoadN", "LoadD" ,"LoadF" ,
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
3478 "LoadB" , "LoadUB", "LoadUS" ,"LoadS" ,"Load" ,
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
3479 "StoreVector", "LoadVector",
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 113
diff changeset
3480 "LoadRange", "LoadKlass", "LoadNKlass", "LoadL_unaligned", "LoadD_unaligned",
6143
8b0a4867acf0 7174218: remove AtomicLongCSImpl intrinsics
twisti
parents: 4763
diff changeset
3481 "LoadPLocked",
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3482 "StorePConditional", "StoreIConditional", "StoreLConditional",
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3483 "CompareAndSwapI", "CompareAndSwapL", "CompareAndSwapP", "CompareAndSwapN",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3484 "StoreCM",
6795
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
3485 "ClearArray",
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
3486 "GetAndAddI", "GetAndSetI", "GetAndSetP",
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
3487 "GetAndAddL", "GetAndSetL", "GetAndSetN",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3488 };
a61af66fc99e Initial load
duke
parents:
diff changeset
3489 int cnt = sizeof(needs_ideal_memory_list)/sizeof(char*);
3854
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3853
diff changeset
3490 if( strcmp(_opType,"PrefetchRead")==0 ||
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3853
diff changeset
3491 strcmp(_opType,"PrefetchWrite")==0 ||
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3853
diff changeset
3492 strcmp(_opType,"PrefetchAllocation")==0 )
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3493 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3494 if( _lChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3495 const char *opType = _lChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3496 for( int i=0; i<cnt; i++ )
a61af66fc99e Initial load
duke
parents:
diff changeset
3497 if( strcmp(opType,needs_ideal_memory_list[i]) == 0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
3498 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3499 if( _lChild->needs_ideal_memory_edge(globals) )
a61af66fc99e Initial load
duke
parents:
diff changeset
3500 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3501 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3502 if( _rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3503 const char *opType = _rChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3504 for( int i=0; i<cnt; i++ )
a61af66fc99e Initial load
duke
parents:
diff changeset
3505 if( strcmp(opType,needs_ideal_memory_list[i]) == 0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
3506 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3507 if( _rChild->needs_ideal_memory_edge(globals) )
a61af66fc99e Initial load
duke
parents:
diff changeset
3508 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3510
a61af66fc99e Initial load
duke
parents:
diff changeset
3511 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3513
a61af66fc99e Initial load
duke
parents:
diff changeset
3514 // TRUE if defines a derived oop, and so needs a base oop edge present
a61af66fc99e Initial load
duke
parents:
diff changeset
3515 // post-matching.
a61af66fc99e Initial load
duke
parents:
diff changeset
3516 int MatchNode::needs_base_oop_edge() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3517 if( !strcmp(_opType,"AddP") ) return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3518 if( strcmp(_opType,"Set") ) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3519 return !strcmp(_rChild->_opType,"AddP");
a61af66fc99e Initial load
duke
parents:
diff changeset
3520 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3521
a61af66fc99e Initial load
duke
parents:
diff changeset
3522 int InstructForm::needs_base_oop_edge(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3523 if( is_simple_chain_rule(globals) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3524 const char *src = _matrule->_rChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3525 OperandForm *src_op = globals[src]->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
3526 assert( src_op, "Not operand class of chain rule" );
a61af66fc99e Initial load
duke
parents:
diff changeset
3527 return src_op->_matrule ? src_op->_matrule->needs_base_oop_edge() : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3528 } // Else check instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
3529
a61af66fc99e Initial load
duke
parents:
diff changeset
3530 return _matrule ? _matrule->needs_base_oop_edge() : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3531 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3532
a61af66fc99e Initial load
duke
parents:
diff changeset
3533
a61af66fc99e Initial load
duke
parents:
diff changeset
3534 //-------------------------cisc spilling methods-------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3535 // helper routines and methods for detecting cisc-spilling instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
3536 //-------------------------cisc_spill_merge------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3537 int MatchNode::cisc_spill_merge(int left_spillable, int right_spillable) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3538 int cisc_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3539
a61af66fc99e Initial load
duke
parents:
diff changeset
3540 // Combine results of left and right checks
a61af66fc99e Initial load
duke
parents:
diff changeset
3541 if( (left_spillable == Maybe_cisc_spillable) && (right_spillable == Maybe_cisc_spillable) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3542 // neither side is spillable, nor prevents cisc spilling
a61af66fc99e Initial load
duke
parents:
diff changeset
3543 cisc_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3545 else if( (left_spillable == Maybe_cisc_spillable) && (right_spillable > Maybe_cisc_spillable) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3546 // right side is spillable
a61af66fc99e Initial load
duke
parents:
diff changeset
3547 cisc_spillable = right_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3548 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3549 else if( (right_spillable == Maybe_cisc_spillable) && (left_spillable > Maybe_cisc_spillable) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3550 // left side is spillable
a61af66fc99e Initial load
duke
parents:
diff changeset
3551 cisc_spillable = left_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3552 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3553 else if( (left_spillable == Not_cisc_spillable) || (right_spillable == Not_cisc_spillable) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3554 // left or right prevents cisc spilling this instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
3555 cisc_spillable = Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3556 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3557 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3558 // Only allow one to spill
a61af66fc99e Initial load
duke
parents:
diff changeset
3559 cisc_spillable = Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3560 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3561
a61af66fc99e Initial load
duke
parents:
diff changeset
3562 return cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3564
a61af66fc99e Initial load
duke
parents:
diff changeset
3565 //-------------------------root_ops_match--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3566 bool static root_ops_match(FormDict &globals, const char *op1, const char *op2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3567 // Base Case: check that the current operands/operations match
a61af66fc99e Initial load
duke
parents:
diff changeset
3568 assert( op1, "Must have op's name");
a61af66fc99e Initial load
duke
parents:
diff changeset
3569 assert( op2, "Must have op's name");
a61af66fc99e Initial load
duke
parents:
diff changeset
3570 const Form *form1 = globals[op1];
a61af66fc99e Initial load
duke
parents:
diff changeset
3571 const Form *form2 = globals[op2];
a61af66fc99e Initial load
duke
parents:
diff changeset
3572
a61af66fc99e Initial load
duke
parents:
diff changeset
3573 return (form1 == form2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3574 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3575
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3576 //-------------------------cisc_spill_match_node-------------------------------
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3577 // Recursively check two MatchRules for legal conversion via cisc-spilling
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3578 int MatchNode::cisc_spill_match(FormDict& globals, RegisterForm* registers, MatchNode* mRule2, const char* &operand, const char* &reg_type) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3579 int cisc_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3580 int left_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3581 int right_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3582
a61af66fc99e Initial load
duke
parents:
diff changeset
3583 // Check that each has same number of operands at this level
a61af66fc99e Initial load
duke
parents:
diff changeset
3584 if( (_lChild && !(mRule2->_lChild)) || (_rChild && !(mRule2->_rChild)) )
a61af66fc99e Initial load
duke
parents:
diff changeset
3585 return Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3586
a61af66fc99e Initial load
duke
parents:
diff changeset
3587 // Base Case: check that the current operands/operations match
a61af66fc99e Initial load
duke
parents:
diff changeset
3588 // or are CISC spillable
a61af66fc99e Initial load
duke
parents:
diff changeset
3589 assert( _opType, "Must have _opType");
a61af66fc99e Initial load
duke
parents:
diff changeset
3590 assert( mRule2->_opType, "Must have _opType");
a61af66fc99e Initial load
duke
parents:
diff changeset
3591 const Form *form = globals[_opType];
a61af66fc99e Initial load
duke
parents:
diff changeset
3592 const Form *form2 = globals[mRule2->_opType];
a61af66fc99e Initial load
duke
parents:
diff changeset
3593 if( form == form2 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3594 cisc_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3595 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3596 const InstructForm *form2_inst = form2 ? form2->is_instruction() : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3597 const char *name_left = mRule2->_lChild ? mRule2->_lChild->_opType : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3598 const char *name_right = mRule2->_rChild ? mRule2->_rChild->_opType : NULL;
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
3599 DataType data_type = Form::none;
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
3600 if (form->is_operand()) {
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
3601 // Make sure the loadX matches the type of the reg
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
3602 data_type = form->ideal_to_Reg_type(form->is_operand()->ideal_type(globals));
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
3603 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3604 // Detect reg vs (loadX memory)
a61af66fc99e Initial load
duke
parents:
diff changeset
3605 if( form->is_cisc_reg(globals)
a61af66fc99e Initial load
duke
parents:
diff changeset
3606 && form2_inst
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
3607 && data_type != Form::none
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
3608 && (is_load_from_memory(mRule2->_opType) == data_type) // reg vs. (load memory)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3609 && (name_left != NULL) // NOT (load)
a61af66fc99e Initial load
duke
parents:
diff changeset
3610 && (name_right == NULL) ) { // NOT (load memory foo)
a61af66fc99e Initial load
duke
parents:
diff changeset
3611 const Form *form2_left = name_left ? globals[name_left] : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3612 if( form2_left && form2_left->is_cisc_mem(globals) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3613 cisc_spillable = Is_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3614 operand = _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
3615 reg_type = _result;
a61af66fc99e Initial load
duke
parents:
diff changeset
3616 return Is_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3617 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3618 cisc_spillable = Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3619 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3620 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3621 // Detect reg vs memory
a61af66fc99e Initial load
duke
parents:
diff changeset
3622 else if( form->is_cisc_reg(globals) && form2->is_cisc_mem(globals) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3623 cisc_spillable = Is_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3624 operand = _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
3625 reg_type = _result;
a61af66fc99e Initial load
duke
parents:
diff changeset
3626 return Is_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3627 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3628 cisc_spillable = Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3629 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3631
a61af66fc99e Initial load
duke
parents:
diff changeset
3632 // If cisc is still possible, check rest of tree
a61af66fc99e Initial load
duke
parents:
diff changeset
3633 if( cisc_spillable == Maybe_cisc_spillable ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3634 // Check that each has same number of operands at this level
a61af66fc99e Initial load
duke
parents:
diff changeset
3635 if( (_lChild && !(mRule2->_lChild)) || (_rChild && !(mRule2->_rChild)) ) return Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3636
a61af66fc99e Initial load
duke
parents:
diff changeset
3637 // Check left operands
a61af66fc99e Initial load
duke
parents:
diff changeset
3638 if( (_lChild == NULL) && (mRule2->_lChild == NULL) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3639 left_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3640 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3641 left_spillable = _lChild->cisc_spill_match(globals, registers, mRule2->_lChild, operand, reg_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
3642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3643
a61af66fc99e Initial load
duke
parents:
diff changeset
3644 // Check right operands
a61af66fc99e Initial load
duke
parents:
diff changeset
3645 if( (_rChild == NULL) && (mRule2->_rChild == NULL) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3646 right_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3647 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3648 right_spillable = _rChild->cisc_spill_match(globals, registers, mRule2->_rChild, operand, reg_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
3649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3650
a61af66fc99e Initial load
duke
parents:
diff changeset
3651 // Combine results of left and right checks
a61af66fc99e Initial load
duke
parents:
diff changeset
3652 cisc_spillable = cisc_spill_merge(left_spillable, right_spillable);
a61af66fc99e Initial load
duke
parents:
diff changeset
3653 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3654
a61af66fc99e Initial load
duke
parents:
diff changeset
3655 return cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3656 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3657
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3658 //---------------------------cisc_spill_match_rule------------------------------
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3659 // Recursively check two MatchRules for legal conversion via cisc-spilling
a61af66fc99e Initial load
duke
parents:
diff changeset
3660 // This method handles the root of Match tree,
a61af66fc99e Initial load
duke
parents:
diff changeset
3661 // general recursive checks done in MatchNode
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3662 int MatchRule::matchrule_cisc_spill_match(FormDict& globals, RegisterForm* registers,
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3663 MatchRule* mRule2, const char* &operand,
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3664 const char* &reg_type) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3665 int cisc_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3666 int left_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3667 int right_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3668
a61af66fc99e Initial load
duke
parents:
diff changeset
3669 // Check that each sets a result
a61af66fc99e Initial load
duke
parents:
diff changeset
3670 if( !(sets_result() && mRule2->sets_result()) ) return Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3671 // Check that each has same number of operands at this level
a61af66fc99e Initial load
duke
parents:
diff changeset
3672 if( (_lChild && !(mRule2->_lChild)) || (_rChild && !(mRule2->_rChild)) ) return Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3673
a61af66fc99e Initial load
duke
parents:
diff changeset
3674 // Check left operands: at root, must be target of 'Set'
a61af66fc99e Initial load
duke
parents:
diff changeset
3675 if( (_lChild == NULL) || (mRule2->_lChild == NULL) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3676 left_spillable = Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3677 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3678 // Do not support cisc-spilling instruction's target location
a61af66fc99e Initial load
duke
parents:
diff changeset
3679 if( root_ops_match(globals, _lChild->_opType, mRule2->_lChild->_opType) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3680 left_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3681 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3682 left_spillable = Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3683 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3685
a61af66fc99e Initial load
duke
parents:
diff changeset
3686 // Check right operands: recursive walk to identify reg->mem operand
a61af66fc99e Initial load
duke
parents:
diff changeset
3687 if( (_rChild == NULL) && (mRule2->_rChild == NULL) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3688 right_spillable = Maybe_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3689 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3690 right_spillable = _rChild->cisc_spill_match(globals, registers, mRule2->_rChild, operand, reg_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
3691 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3692
a61af66fc99e Initial load
duke
parents:
diff changeset
3693 // Combine results of left and right checks
a61af66fc99e Initial load
duke
parents:
diff changeset
3694 cisc_spillable = cisc_spill_merge(left_spillable, right_spillable);
a61af66fc99e Initial load
duke
parents:
diff changeset
3695
a61af66fc99e Initial load
duke
parents:
diff changeset
3696 return cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
3697 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3698
a61af66fc99e Initial load
duke
parents:
diff changeset
3699 //----------------------------- equivalent ------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3700 // Recursively check to see if two match rules are equivalent.
a61af66fc99e Initial load
duke
parents:
diff changeset
3701 // This rule handles the root.
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3702 bool MatchRule::equivalent(FormDict &globals, MatchNode *mRule2) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3703 // Check that each sets a result
a61af66fc99e Initial load
duke
parents:
diff changeset
3704 if (sets_result() != mRule2->sets_result()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3705 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3706 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3707
a61af66fc99e Initial load
duke
parents:
diff changeset
3708 // Check that the current operands/operations match
a61af66fc99e Initial load
duke
parents:
diff changeset
3709 assert( _opType, "Must have _opType");
a61af66fc99e Initial load
duke
parents:
diff changeset
3710 assert( mRule2->_opType, "Must have _opType");
a61af66fc99e Initial load
duke
parents:
diff changeset
3711 const Form *form = globals[_opType];
a61af66fc99e Initial load
duke
parents:
diff changeset
3712 const Form *form2 = globals[mRule2->_opType];
a61af66fc99e Initial load
duke
parents:
diff changeset
3713 if( form != form2 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3714 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3715 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3716
a61af66fc99e Initial load
duke
parents:
diff changeset
3717 if (_lChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3718 if( !_lChild->equivalent(globals, mRule2->_lChild) )
a61af66fc99e Initial load
duke
parents:
diff changeset
3719 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3720 } else if (mRule2->_lChild) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3721 return false; // I have NULL left child, mRule2 has non-NULL left child.
a61af66fc99e Initial load
duke
parents:
diff changeset
3722 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3723
a61af66fc99e Initial load
duke
parents:
diff changeset
3724 if (_rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3725 if( !_rChild->equivalent(globals, mRule2->_rChild) )
a61af66fc99e Initial load
duke
parents:
diff changeset
3726 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3727 } else if (mRule2->_rChild) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3728 return false; // I have NULL right child, mRule2 has non-NULL right child.
a61af66fc99e Initial load
duke
parents:
diff changeset
3729 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3730
a61af66fc99e Initial load
duke
parents:
diff changeset
3731 // We've made it through the gauntlet.
a61af66fc99e Initial load
duke
parents:
diff changeset
3732 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3733 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3734
a61af66fc99e Initial load
duke
parents:
diff changeset
3735 //----------------------------- equivalent ------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3736 // Recursively check to see if two match rules are equivalent.
a61af66fc99e Initial load
duke
parents:
diff changeset
3737 // This rule handles the operands.
a61af66fc99e Initial load
duke
parents:
diff changeset
3738 bool MatchNode::equivalent(FormDict &globals, MatchNode *mNode2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3739 if( !mNode2 )
a61af66fc99e Initial load
duke
parents:
diff changeset
3740 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3741
a61af66fc99e Initial load
duke
parents:
diff changeset
3742 // Check that the current operands/operations match
a61af66fc99e Initial load
duke
parents:
diff changeset
3743 assert( _opType, "Must have _opType");
a61af66fc99e Initial load
duke
parents:
diff changeset
3744 assert( mNode2->_opType, "Must have _opType");
a61af66fc99e Initial load
duke
parents:
diff changeset
3745 const Form *form = globals[_opType];
a61af66fc99e Initial load
duke
parents:
diff changeset
3746 const Form *form2 = globals[mNode2->_opType];
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3747 if( form != form2 ) {
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3748 return false;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3749 }
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3750
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3751 // Check that their children also match
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3752 if (_lChild ) {
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3753 if( !_lChild->equivalent(globals, mNode2->_lChild) )
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3754 return false;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3755 } else if (mNode2->_lChild) {
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3756 return false; // I have NULL left child, mNode2 has non-NULL left child.
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3757 }
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3758
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3759 if (_rChild ) {
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3760 if( !_rChild->equivalent(globals, mNode2->_rChild) )
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3761 return false;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3762 } else if (mNode2->_rChild) {
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3763 return false; // I have NULL right child, mNode2 has non-NULL right child.
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3764 }
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3765
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3766 // We've made it through the gauntlet.
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 2008
diff changeset
3767 return true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3768 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3769
a61af66fc99e Initial load
duke
parents:
diff changeset
3770 //-------------------------- has_commutative_op -------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3771 // Recursively check for commutative operations with subtree operands
a61af66fc99e Initial load
duke
parents:
diff changeset
3772 // which could be swapped.
a61af66fc99e Initial load
duke
parents:
diff changeset
3773 void MatchNode::count_commutative_op(int& count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3774 static const char *commut_op_list[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
3775 "AddI","AddL","AddF","AddD",
a61af66fc99e Initial load
duke
parents:
diff changeset
3776 "AndI","AndL",
a61af66fc99e Initial load
duke
parents:
diff changeset
3777 "MaxI","MinI",
a61af66fc99e Initial load
duke
parents:
diff changeset
3778 "MulI","MulL","MulF","MulD",
a61af66fc99e Initial load
duke
parents:
diff changeset
3779 "OrI" ,"OrL" ,
a61af66fc99e Initial load
duke
parents:
diff changeset
3780 "XorI","XorL"
a61af66fc99e Initial load
duke
parents:
diff changeset
3781 };
a61af66fc99e Initial load
duke
parents:
diff changeset
3782 int cnt = sizeof(commut_op_list)/sizeof(char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
3783
a61af66fc99e Initial load
duke
parents:
diff changeset
3784 if( _lChild && _rChild && (_lChild->_lChild || _rChild->_lChild) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3785 // Don't swap if right operand is an immediate constant.
a61af66fc99e Initial load
duke
parents:
diff changeset
3786 bool is_const = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3787 if( _rChild->_lChild == NULL && _rChild->_rChild == NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3788 FormDict &globals = _AD.globalNames();
a61af66fc99e Initial load
duke
parents:
diff changeset
3789 const Form *form = globals[_rChild->_opType];
a61af66fc99e Initial load
duke
parents:
diff changeset
3790 if ( form ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3791 OperandForm *oper = form->is_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
3792 if( oper && oper->interface_type(globals) == Form::constant_interface )
a61af66fc99e Initial load
duke
parents:
diff changeset
3793 is_const = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3794 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3795 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3796 if( !is_const ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3797 for( int i=0; i<cnt; i++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3798 if( strcmp(_opType, commut_op_list[i]) == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3799 count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
3800 _commutative_id = count; // id should be > 0
a61af66fc99e Initial load
duke
parents:
diff changeset
3801 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
3802 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3803 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3804 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3806 if( _lChild )
a61af66fc99e Initial load
duke
parents:
diff changeset
3807 _lChild->count_commutative_op(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
3808 if( _rChild )
a61af66fc99e Initial load
duke
parents:
diff changeset
3809 _rChild->count_commutative_op(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
3810 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3811
a61af66fc99e Initial load
duke
parents:
diff changeset
3812 //-------------------------- swap_commutative_op ------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3813 // Recursively swap specified commutative operation with subtree operands.
a61af66fc99e Initial load
duke
parents:
diff changeset
3814 void MatchNode::swap_commutative_op(bool atroot, int id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3815 if( _commutative_id == id ) { // id should be > 0
a61af66fc99e Initial load
duke
parents:
diff changeset
3816 assert(_lChild && _rChild && (_lChild->_lChild || _rChild->_lChild ),
a61af66fc99e Initial load
duke
parents:
diff changeset
3817 "not swappable operation");
a61af66fc99e Initial load
duke
parents:
diff changeset
3818 MatchNode* tmp = _lChild;
a61af66fc99e Initial load
duke
parents:
diff changeset
3819 _lChild = _rChild;
a61af66fc99e Initial load
duke
parents:
diff changeset
3820 _rChild = tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
3821 // Don't exit here since we need to build internalop.
a61af66fc99e Initial load
duke
parents:
diff changeset
3822 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3823
a61af66fc99e Initial load
duke
parents:
diff changeset
3824 bool is_set = ( strcmp(_opType, "Set") == 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
3825 if( _lChild )
a61af66fc99e Initial load
duke
parents:
diff changeset
3826 _lChild->swap_commutative_op(is_set, id);
a61af66fc99e Initial load
duke
parents:
diff changeset
3827 if( _rChild )
a61af66fc99e Initial load
duke
parents:
diff changeset
3828 _rChild->swap_commutative_op(is_set, id);
a61af66fc99e Initial load
duke
parents:
diff changeset
3829
a61af66fc99e Initial load
duke
parents:
diff changeset
3830 // If not the root, reduce this subtree to an internal operand
a61af66fc99e Initial load
duke
parents:
diff changeset
3831 if( !atroot && (_lChild || _rChild) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3832 build_internalop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3833 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3834 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3835
a61af66fc99e Initial load
duke
parents:
diff changeset
3836 //-------------------------- swap_commutative_op ------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3837 // Recursively swap specified commutative operation with subtree operands.
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3838 void MatchRule::matchrule_swap_commutative_op(const char* instr_ident, int count, int& match_rules_cnt) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3839 assert(match_rules_cnt < 100," too many match rule clones");
a61af66fc99e Initial load
duke
parents:
diff changeset
3840 // Clone
a61af66fc99e Initial load
duke
parents:
diff changeset
3841 MatchRule* clone = new MatchRule(_AD, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
3842 // Swap operands of commutative operation
a61af66fc99e Initial load
duke
parents:
diff changeset
3843 ((MatchNode*)clone)->swap_commutative_op(true, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
3844 char* buf = (char*) malloc(strlen(instr_ident) + 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
3845 sprintf(buf, "%s_%d", instr_ident, match_rules_cnt++);
a61af66fc99e Initial load
duke
parents:
diff changeset
3846 clone->_result = buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
3847
a61af66fc99e Initial load
duke
parents:
diff changeset
3848 clone->_next = this->_next;
a61af66fc99e Initial load
duke
parents:
diff changeset
3849 this-> _next = clone;
a61af66fc99e Initial load
duke
parents:
diff changeset
3850 if( (--count) > 0 ) {
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3851 this-> matchrule_swap_commutative_op(instr_ident, count, match_rules_cnt);
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3852 clone->matchrule_swap_commutative_op(instr_ident, count, match_rules_cnt);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3853 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3854 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3855
a61af66fc99e Initial load
duke
parents:
diff changeset
3856 //------------------------------MatchRule--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3857 MatchRule::MatchRule(ArchDesc &ad)
a61af66fc99e Initial load
duke
parents:
diff changeset
3858 : MatchNode(ad), _depth(0), _construct(NULL), _numchilds(0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3859 _next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3860 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3861
a61af66fc99e Initial load
duke
parents:
diff changeset
3862 MatchRule::MatchRule(ArchDesc &ad, MatchRule* mRule)
a61af66fc99e Initial load
duke
parents:
diff changeset
3863 : MatchNode(ad, *mRule, 0), _depth(mRule->_depth),
a61af66fc99e Initial load
duke
parents:
diff changeset
3864 _construct(mRule->_construct), _numchilds(mRule->_numchilds) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3865 _next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3866 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3867
a61af66fc99e Initial load
duke
parents:
diff changeset
3868 MatchRule::MatchRule(ArchDesc &ad, MatchNode* mroot, int depth, char *cnstr,
a61af66fc99e Initial load
duke
parents:
diff changeset
3869 int numleaves)
a61af66fc99e Initial load
duke
parents:
diff changeset
3870 : MatchNode(ad,*mroot), _depth(depth), _construct(cnstr),
a61af66fc99e Initial load
duke
parents:
diff changeset
3871 _numchilds(0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3872 _next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3873 mroot->_lChild = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3874 mroot->_rChild = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3875 delete mroot;
a61af66fc99e Initial load
duke
parents:
diff changeset
3876 _numleaves = numleaves;
a61af66fc99e Initial load
duke
parents:
diff changeset
3877 _numchilds = (_lChild ? 1 : 0) + (_rChild ? 1 : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3878 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3879 MatchRule::~MatchRule() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3880 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3881
a61af66fc99e Initial load
duke
parents:
diff changeset
3882 // Recursive call collecting info on top-level operands, not transitive.
a61af66fc99e Initial load
duke
parents:
diff changeset
3883 // Implementation does not modify state of internal structures.
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 602
diff changeset
3884 void MatchRule::append_components(FormDict& locals, ComponentList& components, bool def_flag) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3885 assert (_name != NULL, "MatchNode::build_components encountered empty node\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
3886
a61af66fc99e Initial load
duke
parents:
diff changeset
3887 MatchNode::append_components(locals, components,
a61af66fc99e Initial load
duke
parents:
diff changeset
3888 false /* not necessarily a def */);
a61af66fc99e Initial load
duke
parents:
diff changeset
3889 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3890
a61af66fc99e Initial load
duke
parents:
diff changeset
3891 // Recursive call on all operands' match rules in my match rule.
a61af66fc99e Initial load
duke
parents:
diff changeset
3892 // Implementation does not modify state of internal structures since they
a61af66fc99e Initial load
duke
parents:
diff changeset
3893 // can be shared.
a61af66fc99e Initial load
duke
parents:
diff changeset
3894 // The MatchNode that is called first treats its
a61af66fc99e Initial load
duke
parents:
diff changeset
3895 bool MatchRule::base_operand(uint &position0, FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
3896 const char *&result, const char * &name,
a61af66fc99e Initial load
duke
parents:
diff changeset
3897 const char * &opType)const{
a61af66fc99e Initial load
duke
parents:
diff changeset
3898 uint position = position0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3899
a61af66fc99e Initial load
duke
parents:
diff changeset
3900 return (MatchNode::base_operand( position, globals, result, name, opType));
a61af66fc99e Initial load
duke
parents:
diff changeset
3901 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3902
a61af66fc99e Initial load
duke
parents:
diff changeset
3903
a61af66fc99e Initial load
duke
parents:
diff changeset
3904 bool MatchRule::is_base_register(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3905 uint position = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3906 const char *result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3907 const char *name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3908 const char *opType = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3909 if (!base_operand(position, globals, result, name, opType)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3910 position = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3911 if( base_operand(position, globals, result, name, opType) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
3912 (strcmp(opType,"RegI")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
3913 strcmp(opType,"RegP")==0 ||
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3914 strcmp(opType,"RegN")==0 ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3915 strcmp(opType,"RegL")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
3916 strcmp(opType,"RegF")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
3917 strcmp(opType,"RegD")==0 ||
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
3918 strcmp(opType,"VecS")==0 ||
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
3919 strcmp(opType,"VecD")==0 ||
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
3920 strcmp(opType,"VecX")==0 ||
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
3921 strcmp(opType,"VecY")==0 ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3922 strcmp(opType,"Reg" )==0) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3923 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3924 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3925 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3926 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3927 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3928
a61af66fc99e Initial load
duke
parents:
diff changeset
3929 Form::DataType MatchRule::is_base_constant(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3930 uint position = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3931 const char *result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3932 const char *name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3933 const char *opType = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3934 if (!base_operand(position, globals, result, name, opType)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3935 position = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3936 if (base_operand(position, globals, result, name, opType)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3937 return ideal_to_const_type(opType);
a61af66fc99e Initial load
duke
parents:
diff changeset
3938 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3939 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3940 return Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
3941 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3942
a61af66fc99e Initial load
duke
parents:
diff changeset
3943 bool MatchRule::is_chain_rule(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3944
a61af66fc99e Initial load
duke
parents:
diff changeset
3945 // Check for chain rule, and do not generate a match list for it
a61af66fc99e Initial load
duke
parents:
diff changeset
3946 if ((_lChild == NULL) && (_rChild == NULL) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3947 const Form *form = globals[_opType];
a61af66fc99e Initial load
duke
parents:
diff changeset
3948 // If this is ideal, then it is a base match, not a chain rule.
a61af66fc99e Initial load
duke
parents:
diff changeset
3949 if ( form && form->is_operand() && (!form->ideal_only())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3950 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3951 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3952 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3953 // Check for "Set" form of chain rule, and do not generate a match list
a61af66fc99e Initial load
duke
parents:
diff changeset
3954 if (_rChild) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3955 const char *rch = _rChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
3956 const Form *form = globals[rch];
a61af66fc99e Initial load
duke
parents:
diff changeset
3957 if ((!strcmp(_opType,"Set") &&
a61af66fc99e Initial load
duke
parents:
diff changeset
3958 ((form) && form->is_operand()))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3959 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3960 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3961 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3962 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3963 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3964
a61af66fc99e Initial load
duke
parents:
diff changeset
3965 int MatchRule::is_ideal_copy() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
3966 if( _rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3967 const char *opType = _rChild->_opType;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
3968 #if 1
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
3969 if( strcmp(opType,"CastIP")==0 )
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
3970 return 1;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
3971 #else
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3972 if( strcmp(opType,"CastII")==0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
3973 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3974 // Do not treat *CastPP this way, because it
a61af66fc99e Initial load
duke
parents:
diff changeset
3975 // may transfer a raw pointer to an oop.
a61af66fc99e Initial load
duke
parents:
diff changeset
3976 // If the register allocator were to coalesce this
a61af66fc99e Initial load
duke
parents:
diff changeset
3977 // into a single LRG, the GC maps would be incorrect.
a61af66fc99e Initial load
duke
parents:
diff changeset
3978 //if( strcmp(opType,"CastPP")==0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
3979 // return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3980 //if( strcmp(opType,"CheckCastPP")==0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
3981 // return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3982 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3983 // Do not treat CastX2P or CastP2X this way, because
a61af66fc99e Initial load
duke
parents:
diff changeset
3984 // raw pointers and int types are treated differently
a61af66fc99e Initial load
duke
parents:
diff changeset
3985 // when saving local & stack info for safepoints in
a61af66fc99e Initial load
duke
parents:
diff changeset
3986 // Output().
a61af66fc99e Initial load
duke
parents:
diff changeset
3987 //if( strcmp(opType,"CastX2P")==0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
3988 // return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3989 //if( strcmp(opType,"CastP2X")==0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
3990 // return 1;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
3991 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3992 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3993 if( is_chain_rule(_AD.globalNames()) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
3994 _lChild && strncmp(_lChild->_opType,"stackSlot",9)==0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
3995 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3996 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3997 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3998
a61af66fc99e Initial load
duke
parents:
diff changeset
3999
a61af66fc99e Initial load
duke
parents:
diff changeset
4000 int MatchRule::is_expensive() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4001 if( _rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4002 const char *opType = _rChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
4003 if( strcmp(opType,"AtanD")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4004 strcmp(opType,"CosD")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4005 strcmp(opType,"DivD")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4006 strcmp(opType,"DivF")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4007 strcmp(opType,"DivI")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4008 strcmp(opType,"ExpD")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4009 strcmp(opType,"LogD")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4010 strcmp(opType,"Log10D")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4011 strcmp(opType,"ModD")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4012 strcmp(opType,"ModF")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4013 strcmp(opType,"ModI")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4014 strcmp(opType,"PowD")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4015 strcmp(opType,"SinD")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4016 strcmp(opType,"SqrtD")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4017 strcmp(opType,"TanD")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4018 strcmp(opType,"ConvD2F")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4019 strcmp(opType,"ConvD2I")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4020 strcmp(opType,"ConvD2L")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4021 strcmp(opType,"ConvF2D")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4022 strcmp(opType,"ConvF2I")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4023 strcmp(opType,"ConvF2L")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4024 strcmp(opType,"ConvI2D")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4025 strcmp(opType,"ConvI2F")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4026 strcmp(opType,"ConvI2L")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4027 strcmp(opType,"ConvL2D")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4028 strcmp(opType,"ConvL2F")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4029 strcmp(opType,"ConvL2I")==0 ||
247
02a35ad4adf8 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 235
diff changeset
4030 strcmp(opType,"DecodeN")==0 ||
02a35ad4adf8 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 235
diff changeset
4031 strcmp(opType,"EncodeP")==0 ||
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
4032 strcmp(opType,"EncodePKlass")==0 ||
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
4033 strcmp(opType,"DecodeNKlass")==0 ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4034 strcmp(opType,"RoundDouble")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4035 strcmp(opType,"RoundFloat")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4036 strcmp(opType,"ReverseBytesI")==0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4037 strcmp(opType,"ReverseBytesL")==0 ||
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 986
diff changeset
4038 strcmp(opType,"ReverseBytesUS")==0 ||
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 986
diff changeset
4039 strcmp(opType,"ReverseBytesS")==0 ||
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4040 strcmp(opType,"ReplicateB")==0 ||
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4041 strcmp(opType,"ReplicateS")==0 ||
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4042 strcmp(opType,"ReplicateI")==0 ||
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4043 strcmp(opType,"ReplicateL")==0 ||
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4044 strcmp(opType,"ReplicateF")==0 ||
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4045 strcmp(opType,"ReplicateD")==0 ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4046 0 /* 0 to line up columns nicely */ )
a61af66fc99e Initial load
duke
parents:
diff changeset
4047 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4048 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4049 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4050 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4051
a61af66fc99e Initial load
duke
parents:
diff changeset
4052 bool MatchRule::is_ideal_if() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4053 if( !_opType ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4054 return
a61af66fc99e Initial load
duke
parents:
diff changeset
4055 !strcmp(_opType,"If" ) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4056 !strcmp(_opType,"CountedLoopEnd");
a61af66fc99e Initial load
duke
parents:
diff changeset
4057 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4058
a61af66fc99e Initial load
duke
parents:
diff changeset
4059 bool MatchRule::is_ideal_fastlock() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4060 if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4061 return (strcmp(_rChild->_opType,"FastLock") == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4062 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4063 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4064 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4065
a61af66fc99e Initial load
duke
parents:
diff changeset
4066 bool MatchRule::is_ideal_membar() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4067 if( !_opType ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4068 return
14439
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14434
diff changeset
4069 !strcmp(_opType,"MemBarAcquire") ||
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14434
diff changeset
4070 !strcmp(_opType,"MemBarRelease") ||
3849
f1c12354c3f7 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 3842
diff changeset
4071 !strcmp(_opType,"MemBarAcquireLock") ||
f1c12354c3f7 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 3842
diff changeset
4072 !strcmp(_opType,"MemBarReleaseLock") ||
14439
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14434
diff changeset
4073 !strcmp(_opType,"LoadFence" ) ||
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14434
diff changeset
4074 !strcmp(_opType,"StoreFence") ||
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14434
diff changeset
4075 !strcmp(_opType,"MemBarVolatile") ||
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14434
diff changeset
4076 !strcmp(_opType,"MemBarCPUOrder") ||
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14434
diff changeset
4077 !strcmp(_opType,"MemBarStoreStore");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4078 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4079
a61af66fc99e Initial load
duke
parents:
diff changeset
4080 bool MatchRule::is_ideal_loadPC() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4081 if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4082 return (strcmp(_rChild->_opType,"LoadPC") == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4083 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4084 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4085 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4086
a61af66fc99e Initial load
duke
parents:
diff changeset
4087 bool MatchRule::is_ideal_box() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4088 if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4089 return (strcmp(_rChild->_opType,"Box") == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4090 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4091 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4092 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4093
a61af66fc99e Initial load
duke
parents:
diff changeset
4094 bool MatchRule::is_ideal_goto() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4095 bool ideal_goto = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4096
a61af66fc99e Initial load
duke
parents:
diff changeset
4097 if( _opType && (strcmp(_opType,"Goto") == 0) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4098 ideal_goto = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
4099 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4100 return ideal_goto;
a61af66fc99e Initial load
duke
parents:
diff changeset
4101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4102
a61af66fc99e Initial load
duke
parents:
diff changeset
4103 bool MatchRule::is_ideal_jump() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4104 if( _opType ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4105 if( !strcmp(_opType,"Jump") )
a61af66fc99e Initial load
duke
parents:
diff changeset
4106 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
4107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4108 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4110
a61af66fc99e Initial load
duke
parents:
diff changeset
4111 bool MatchRule::is_ideal_bool() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4112 if( _opType ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4113 if( !strcmp(_opType,"Bool") )
a61af66fc99e Initial load
duke
parents:
diff changeset
4114 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
4115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4116 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4118
a61af66fc99e Initial load
duke
parents:
diff changeset
4119
a61af66fc99e Initial load
duke
parents:
diff changeset
4120 Form::DataType MatchRule::is_ideal_load() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4121 Form::DataType ideal_load = Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
4122
a61af66fc99e Initial load
duke
parents:
diff changeset
4123 if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4124 const char *opType = _rChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
4125 ideal_load = is_load_from_memory(opType);
a61af66fc99e Initial load
duke
parents:
diff changeset
4126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4127
a61af66fc99e Initial load
duke
parents:
diff changeset
4128 return ideal_load;
a61af66fc99e Initial load
duke
parents:
diff changeset
4129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4130
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4131 bool MatchRule::is_vector() const {
6802
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4132 static const char *vector_list[] = {
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4133 "AddVB","AddVS","AddVI","AddVL","AddVF","AddVD",
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4134 "SubVB","SubVS","SubVI","SubVL","SubVF","SubVD",
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4135 "MulVS","MulVI","MulVF","MulVD",
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4136 "DivVF","DivVD",
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4137 "AndV" ,"XorV" ,"OrV",
6823
859c45fb8cea 7201026: add vector for shift count
kvn
parents: 6802
diff changeset
4138 "LShiftCntV","RShiftCntV",
6802
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4139 "LShiftVB","LShiftVS","LShiftVI","LShiftVL",
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4140 "RShiftVB","RShiftVS","RShiftVI","RShiftVL",
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4141 "URShiftVB","URShiftVS","URShiftVI","URShiftVL",
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4142 "ReplicateB","ReplicateS","ReplicateI","ReplicateL","ReplicateF","ReplicateD",
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4143 "LoadVector","StoreVector",
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4144 // Next are not supported currently.
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4145 "PackB","PackS","PackI","PackL","PackF","PackD","Pack2L","Pack2D",
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4146 "ExtractB","ExtractUB","ExtractC","ExtractS","ExtractI","ExtractL","ExtractF","ExtractD"
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4147 };
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4148 int cnt = sizeof(vector_list)/sizeof(char*);
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4149 if (_rChild) {
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4150 const char *opType = _rChild->_opType;
6802
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4151 for (int i=0; i<cnt; i++)
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4152 if (strcmp(opType,vector_list[i]) == 0)
0702f188baeb 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 6795
diff changeset
4153 return true;
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4154 }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4155 return false;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4156 }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
4157
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4158
855
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4159 bool MatchRule::skip_antidep_check() const {
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4160 // Some loads operate on what is effectively immutable memory so we
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4161 // should skip the anti dep computations. For some of these nodes
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4162 // the rewritable field keeps the anti dep logic from triggering but
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4163 // for certain kinds of LoadKlass it does not since they are
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4164 // actually reading memory which could be rewritten by the runtime,
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4165 // though never by generated code. This disables it uniformly for
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4166 // the nodes that behave like this: LoadKlass, LoadNKlass and
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4167 // LoadRange.
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4168 if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4169 const char *opType = _rChild->_opType;
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4170 if (strcmp("LoadKlass", opType) == 0 ||
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4171 strcmp("LoadNKlass", opType) == 0 ||
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4172 strcmp("LoadRange", opType) == 0) {
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4173 return true;
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4174 }
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4175 }
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4176
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4177 return false;
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4178 }
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4179
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 681
diff changeset
4180
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4181 Form::DataType MatchRule::is_ideal_store() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
4182 Form::DataType ideal_store = Form::none;
a61af66fc99e Initial load
duke
parents:
diff changeset
4183
a61af66fc99e Initial load
duke
parents:
diff changeset
4184 if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4185 const char *opType = _rChild->_opType;
a61af66fc99e Initial load
duke
parents:
diff changeset
4186 ideal_store = is_store_to_memory(opType);
a61af66fc99e Initial load
duke
parents:
diff changeset
4187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4188
a61af66fc99e Initial load
duke
parents:
diff changeset
4189 return ideal_store;
a61af66fc99e Initial load
duke
parents:
diff changeset
4190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4191
a61af66fc99e Initial load
duke
parents:
diff changeset
4192
a61af66fc99e Initial load
duke
parents:
diff changeset
4193 void MatchRule::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
4194 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
4195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4196
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
4197 // Write just one line.
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
4198 void MatchRule::output_short(FILE *fp) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4199 fprintf(fp,"MatchRule: ( %s",_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
4200 if (_lChild) _lChild->output(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
4201 if (_rChild) _rChild->output(fp);
6850
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
4202 fprintf(fp," )");
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
4203 }
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
4204
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
4205 void MatchRule::output(FILE *fp) {
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
4206 output_short(fp);
d336b3173277 8000592: Improve adlc usability
kvn
parents: 6849
diff changeset
4207 fprintf(fp,"\n nesting depth = %d\n", _depth);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4208 if (_result) fprintf(fp," Result Type = %s", _result);
a61af66fc99e Initial load
duke
parents:
diff changeset
4209 fprintf(fp,"\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
4210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4211
a61af66fc99e Initial load
duke
parents:
diff changeset
4212 //------------------------------Attribute--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4213 Attribute::Attribute(char *id, char* val, int type)
a61af66fc99e Initial load
duke
parents:
diff changeset
4214 : _ident(id), _val(val), _atype(type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4216 Attribute::~Attribute() {
a61af66fc99e Initial load
duke
parents:
diff changeset
4217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4218
a61af66fc99e Initial load
duke
parents:
diff changeset
4219 int Attribute::int_val(ArchDesc &ad) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4220 // Make sure it is an integer constant:
a61af66fc99e Initial load
duke
parents:
diff changeset
4221 int result = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4222 if (!_val || !ADLParser::is_int_token(_val, result)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4223 ad.syntax_err(0, "Attribute %s must have an integer value: %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
4224 _ident, _val ? _val : "");
a61af66fc99e Initial load
duke
parents:
diff changeset
4225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4226 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
4227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4228
a61af66fc99e Initial load
duke
parents:
diff changeset
4229 void Attribute::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
4230 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
4231 } // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
4232
a61af66fc99e Initial load
duke
parents:
diff changeset
4233 // Write to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
4234 void Attribute::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4235 fprintf(fp,"Attribute: %s %s\n", (_ident?_ident:""), (_val?_val:""));
a61af66fc99e Initial load
duke
parents:
diff changeset
4236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4237
a61af66fc99e Initial load
duke
parents:
diff changeset
4238 //------------------------------FormatRule----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4239 FormatRule::FormatRule(char *temp)
a61af66fc99e Initial load
duke
parents:
diff changeset
4240 : _temp(temp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4242 FormatRule::~FormatRule() {
a61af66fc99e Initial load
duke
parents:
diff changeset
4243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4244
a61af66fc99e Initial load
duke
parents:
diff changeset
4245 void FormatRule::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
4246 output(stderr);
a61af66fc99e Initial load
duke
parents:
diff changeset
4247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4248
a61af66fc99e Initial load
duke
parents:
diff changeset
4249 // Write to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
4250 void FormatRule::output(FILE *fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4251 fprintf(fp,"\nFormat Rule: \n%s", (_temp?_temp:""));
a61af66fc99e Initial load
duke
parents:
diff changeset
4252 fprintf(fp,"\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
4253 }