annotate src/share/vm/adlc/formssel.hpp @ 3853:11211f7cb5a0

7079317: Incorrect branch's destination block in PrintoOptoAssembly output Summary: save/restore label and block in scratch_emit_size() Reviewed-by: never
author kvn
date Tue, 16 Aug 2011 11:53:57 -0700
parents c7b60b601eb4
children f03a3c8bd5e5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1998, 2010, 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
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_ADLC_FORMSSEL_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_ADLC_FORMSSEL_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // FORMSSEL.HPP - ADL Parser Instruction Selection Forms Classes
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // Class List
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class Form;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class InstructForm;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class MachNodeForm;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class OperandForm;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class OpClassForm;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 class AttributeForm;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 class RegisterForm;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 class PipelineForm;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class SourceForm;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class EncodeForm;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 class Component;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 class Constraint;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class Predicate;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 class MatchRule;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 class Attribute;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 class Effect;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 class ExpandRule;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 class RewriteRule;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 class ConstructRule;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 class FormatRule;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 class Peephole;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 class EncClass;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 class Interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 class RegInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 class ConstInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 class MemInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 class CondInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 class Opcode;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 class InsEncode;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 class RegDef;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 class RegClass;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 class AllocClass;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 class ResourceForm;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 class PipeDesc;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 class PipeClass;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 class PeepMatch;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 class PeepConstraint;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 class PeepReplace;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 class MatchList;
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 class ArchDesc;
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 //==============================Instructions===================================
a61af66fc99e Initial load
duke
parents:
diff changeset
74 //------------------------------InstructForm-----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
75 class InstructForm : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 private:
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
77 bool _ideal_only; // Not a user-defined instruction
0
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // Members used for tracking CISC-spilling
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
79 uint _cisc_spill_operand;// Which operand may cisc-spill
0
a61af66fc99e Initial load
duke
parents:
diff changeset
80 void set_cisc_spill_operand(uint op_index) { _cisc_spill_operand = op_index; }
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
81 bool _is_cisc_alternate;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
82 InstructForm *_cisc_spill_alternate;// cisc possible replacement
a61af66fc99e Initial load
duke
parents:
diff changeset
83 const char *_cisc_reg_mask_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 InstructForm *_short_branch_form;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 bool _is_short_branch;
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
86 bool _is_mach_constant; // true if Node is a MachConstantNode
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87 uint _alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
91 const char *_ident; // Name of this instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
92 NameList _parameters; // Locally defined names
a61af66fc99e Initial load
duke
parents:
diff changeset
93 FormDict _localNames; // Table of operands & their types
a61af66fc99e Initial load
duke
parents:
diff changeset
94 MatchRule *_matrule; // Matching rule for this instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
95 Opcode *_opcode; // Encoding of the opcode for instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
96 char *_size; // Size of instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
97 InsEncode *_insencode; // Encoding class instruction belongs to
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
98 InsEncode *_constant; // Encoding class constant value belongs to
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99 Attribute *_attribs; // List of Attribute rules
a61af66fc99e Initial load
duke
parents:
diff changeset
100 Predicate *_predicate; // Predicate test for this instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
101 FormDict _effects; // Dictionary of effect rules
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ExpandRule *_exprule; // Expand rule for this instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
103 RewriteRule *_rewrule; // Rewrite rule for this instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
104 FormatRule *_format; // Format for assembly generation
a61af66fc99e Initial load
duke
parents:
diff changeset
105 Peephole *_peephole; // List of peephole rules for instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
106 const char *_ins_pipe; // Instruction Scheduline description class
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 uint *_uniq_idx; // Indexes of unique operands
599
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 470
diff changeset
109 int _uniq_idx_length; // Length of _uniq_idx array
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 uint _num_uniq; // Number of unique operands
a61af66fc99e Initial load
duke
parents:
diff changeset
111 ComponentList _components; // List of Components matches MachNode's
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // operand structure
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
115 InstructForm(const char *id, bool ideal_only = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 InstructForm(const char *id, InstructForm *instr, MatchRule *rule);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 ~InstructForm();
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Dynamic type check
a61af66fc99e Initial load
duke
parents:
diff changeset
120 virtual InstructForm *is_instruction() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 virtual bool ideal_only() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // This instruction sets a result
a61af66fc99e Initial load
duke
parents:
diff changeset
125 virtual bool sets_result() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // This instruction needs projections for additional DEFs or KILLs
a61af66fc99e Initial load
duke
parents:
diff changeset
127 virtual bool needs_projections();
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // This instruction needs extra nodes for temporary inputs
a61af66fc99e Initial load
duke
parents:
diff changeset
129 virtual bool has_temps();
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // This instruction defines or kills more than one object
a61af66fc99e Initial load
duke
parents:
diff changeset
131 virtual uint num_defs_or_kills();
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // This instruction has an expand rule?
a61af66fc99e Initial load
duke
parents:
diff changeset
133 virtual bool expands() const ;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Return this instruction's first peephole rule, or NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
135 virtual Peephole *peepholes() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Add a peephole rule to this instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
137 virtual void append_peephole(Peephole *peep);
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 virtual bool is_pinned(FormDict &globals); // should be pinned inside block
a61af66fc99e Initial load
duke
parents:
diff changeset
140 virtual bool is_projection(FormDict &globals); // node requires projection
a61af66fc99e Initial load
duke
parents:
diff changeset
141 virtual bool is_parm(FormDict &globals); // node matches ideal 'Parm'
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // ideal opcode enumeration
a61af66fc99e Initial load
duke
parents:
diff changeset
143 virtual const char *ideal_Opcode(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 virtual int is_expensive() const; // node matches ideal 'CosD'
a61af66fc99e Initial load
duke
parents:
diff changeset
145 virtual int is_empty_encoding() const; // _size=0 and/or _insencode empty
a61af66fc99e Initial load
duke
parents:
diff changeset
146 virtual int is_tls_instruction() const; // tlsLoadP rule or ideal ThreadLocal
a61af66fc99e Initial load
duke
parents:
diff changeset
147 virtual int is_ideal_copy() const; // node matches ideal 'Copy*'
a61af66fc99e Initial load
duke
parents:
diff changeset
148 virtual bool is_ideal_if() const; // node matches ideal 'If'
a61af66fc99e Initial load
duke
parents:
diff changeset
149 virtual bool is_ideal_fastlock() const; // node matches 'FastLock'
a61af66fc99e Initial load
duke
parents:
diff changeset
150 virtual bool is_ideal_membar() const; // node matches ideal 'MemBarXXX'
a61af66fc99e Initial load
duke
parents:
diff changeset
151 virtual bool is_ideal_loadPC() const; // node matches ideal 'LoadPC'
a61af66fc99e Initial load
duke
parents:
diff changeset
152 virtual bool is_ideal_box() const; // node matches ideal 'Box'
a61af66fc99e Initial load
duke
parents:
diff changeset
153 virtual bool is_ideal_goto() const; // node matches ideal 'Goto'
a61af66fc99e Initial load
duke
parents:
diff changeset
154 virtual bool is_ideal_branch() const; // "" 'If' | 'Goto' | 'LoopEnd' | 'Jump'
a61af66fc99e Initial load
duke
parents:
diff changeset
155 virtual bool is_ideal_jump() const; // node matches ideal 'Jump'
a61af66fc99e Initial load
duke
parents:
diff changeset
156 virtual bool is_ideal_return() const; // node matches ideal 'Return'
a61af66fc99e Initial load
duke
parents:
diff changeset
157 virtual bool is_ideal_halt() const; // node matches ideal 'Halt'
a61af66fc99e Initial load
duke
parents:
diff changeset
158 virtual bool is_ideal_safepoint() const; // node matches 'SafePoint'
a61af66fc99e Initial load
duke
parents:
diff changeset
159 virtual bool is_ideal_nop() const; // node matches 'Nop'
a61af66fc99e Initial load
duke
parents:
diff changeset
160 virtual bool is_ideal_control() const; // control node
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 virtual Form::CallType is_ideal_call() const; // matches ideal 'Call'
a61af66fc99e Initial load
duke
parents:
diff changeset
163 virtual Form::DataType is_ideal_load() const; // node matches ideal 'LoadXNode'
855
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 605
diff changeset
164 // Should antidep checks be disabled for this Instruct
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 605
diff changeset
165 // See definition of MatchRule::skip_antidep_check
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 605
diff changeset
166 bool skip_antidep_check() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
167 virtual Form::DataType is_ideal_store() const;// node matches ideal 'StoreXNode'
a61af66fc99e Initial load
duke
parents:
diff changeset
168 bool is_ideal_mem() const { return is_ideal_load() != Form::none || is_ideal_store() != Form::none; }
a61af66fc99e Initial load
duke
parents:
diff changeset
169 virtual uint two_address(FormDict &globals); // output reg must match input reg
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // when chaining a constant to an instruction, return 'true' and set opType
a61af66fc99e Initial load
duke
parents:
diff changeset
171 virtual Form::DataType is_chain_of_constant(FormDict &globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
172 virtual Form::DataType is_chain_of_constant(FormDict &globals, const char * &opType);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 virtual Form::DataType is_chain_of_constant(FormDict &globals, const char * &opType, const char * &result_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // Check if a simple chain rule
a61af66fc99e Initial load
duke
parents:
diff changeset
176 virtual bool is_simple_chain_rule(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // check for structural rematerialization
a61af66fc99e Initial load
duke
parents:
diff changeset
179 virtual bool rematerialize(FormDict &globals, RegisterForm *registers);
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // loads from memory, so must check for anti-dependence
a61af66fc99e Initial load
duke
parents:
diff changeset
182 virtual bool needs_anti_dependence_check(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 virtual int memory_operand(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 bool is_wide_memory_kill(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 enum memory_operand_type {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 NO_MEMORY_OPERAND = -1,
a61af66fc99e Initial load
duke
parents:
diff changeset
188 MANY_MEMORY_OPERANDS = 999999
a61af66fc99e Initial load
duke
parents:
diff changeset
189 };
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // This instruction captures the machine-independent bottom_type
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // 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: 855
diff changeset
194 virtual bool captures_bottom_type(FormDict& globals) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 virtual const char *cost(); // Access ins_cost attribute
a61af66fc99e Initial load
duke
parents:
diff changeset
197 virtual uint num_opnds(); // Count of num_opnds for MachNode class
a61af66fc99e Initial load
duke
parents:
diff changeset
198 virtual uint num_post_match_opnds();
a61af66fc99e Initial load
duke
parents:
diff changeset
199 virtual uint num_consts(FormDict &globals) const;// Constants in match rule
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // Constants in match rule with specified type
a61af66fc99e Initial load
duke
parents:
diff changeset
201 virtual uint num_consts(FormDict &globals, Form::DataType type) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // Return the register class associated with 'leaf'.
a61af66fc99e Initial load
duke
parents:
diff changeset
204 virtual const char *out_reg_class(FormDict &globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // number of ideal node inputs to skip
a61af66fc99e Initial load
duke
parents:
diff changeset
207 virtual uint oper_input_base(FormDict &globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // Does this instruction need a base-oop edge?
a61af66fc99e Initial load
duke
parents:
diff changeset
210 int needs_base_oop_edge(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // Build instruction predicates. If the user uses the same operand name
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // twice, we need to check that the operands are pointer-eequivalent in
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // the DFA during the labeling process.
a61af66fc99e Initial load
duke
parents:
diff changeset
215 Predicate *build_predicate();
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 virtual void build_components(); // top-level operands
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // Return zero-based position in component list; -1 if not in list.
a61af66fc99e Initial load
duke
parents:
diff changeset
219 virtual int operand_position(const char *name, int usedef);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 virtual int operand_position_format(const char *name);
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // Return zero-based position in component list; -1 if not in list.
a61af66fc99e Initial load
duke
parents:
diff changeset
223 virtual int label_position();
a61af66fc99e Initial load
duke
parents:
diff changeset
224 virtual int method_position();
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // Return number of relocation entries needed for this instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
226 virtual uint reloc(FormDict &globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 const char *reduce_result();
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // Return the name of the operand on the right hand side of the binary match
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // Return NULL if there is no right hand side
a61af66fc99e Initial load
duke
parents:
diff changeset
231 const char *reduce_right(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 const char *reduce_left(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // 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: 855
diff changeset
235 virtual const char *mach_base_class(FormDict &globals) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // Check if this instruction can cisc-spill to 'alternate'
a61af66fc99e Initial load
duke
parents:
diff changeset
238 bool cisc_spills_to(ArchDesc &AD, InstructForm *alternate);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 InstructForm *cisc_spill_alternate() { return _cisc_spill_alternate; }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 uint cisc_spill_operand() const { return _cisc_spill_operand; }
a61af66fc99e Initial load
duke
parents:
diff changeset
241 bool is_cisc_alternate() const { return _is_cisc_alternate; }
a61af66fc99e Initial load
duke
parents:
diff changeset
242 void set_cisc_alternate(bool val) { _is_cisc_alternate = val; }
a61af66fc99e Initial load
duke
parents:
diff changeset
243 const char *cisc_reg_mask_name() const { return _cisc_reg_mask_name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
244 void set_cisc_reg_mask_name(const char *rm_name) { _cisc_reg_mask_name = rm_name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Output cisc-method prototypes and method bodies
a61af66fc99e Initial load
duke
parents:
diff changeset
246 void declare_cisc_version(ArchDesc &AD, FILE *fp_cpp);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 bool define_cisc_version (ArchDesc &AD, FILE *fp_cpp);
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 bool check_branch_variant(ArchDesc &AD, InstructForm *short_branch);
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 bool is_short_branch() { return _is_short_branch; }
a61af66fc99e Initial load
duke
parents:
diff changeset
252 void set_short_branch(bool val) { _is_short_branch = val; }
a61af66fc99e Initial load
duke
parents:
diff changeset
253
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
254 bool is_mach_constant() const { return _is_mach_constant; }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
255 void set_is_mach_constant(bool x) { _is_mach_constant = x; }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
256
0
a61af66fc99e Initial load
duke
parents:
diff changeset
257 InstructForm *short_branch_form() { return _short_branch_form; }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 bool has_short_branch_form() { return _short_branch_form != NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // Output short branch prototypes and method bodies
a61af66fc99e Initial load
duke
parents:
diff changeset
260 void declare_short_branch_methods(FILE *fp_cpp);
1541
b5fdf39b9749 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 855
diff changeset
261 bool define_short_branch_methods(ArchDesc &AD, FILE *fp_cpp);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 uint alignment() { return _alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
264 void set_alignment(uint val) { _alignment = val; }
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // Seach through operands to determine operands unique positions.
a61af66fc99e Initial load
duke
parents:
diff changeset
267 void set_unique_opnds();
a61af66fc99e Initial load
duke
parents:
diff changeset
268 uint num_unique_opnds() { return _num_uniq; }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 uint unique_opnds_idx(int idx) {
599
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 470
diff changeset
270 if( _uniq_idx != NULL && idx > 0 ) {
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 470
diff changeset
271 assert(idx < _uniq_idx_length, "out of bounds");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
272 return _uniq_idx[idx];
599
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 470
diff changeset
273 } else {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
274 return idx;
599
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 470
diff changeset
275 }
0ad1cb407fa1 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 470
diff changeset
276 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // Operands which are only KILLs aren't part of the input array and
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // require special handling in some cases. Their position in this
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // operand list is higher than the number of unique operands.
a61af66fc99e Initial load
duke
parents:
diff changeset
281 bool is_noninput_operand(uint idx) {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 return (idx >= num_unique_opnds());
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // --------------------------- FILE *output_routines
a61af66fc99e Initial load
duke
parents:
diff changeset
286 //
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // Generate the format call for the replacement variable
a61af66fc99e Initial load
duke
parents:
diff changeset
288 void rep_var_format(FILE *fp, const char *rep_var);
605
98cb887364d3 6810672: Comment typos
twisti
parents: 603
diff changeset
289 // Generate index values needed for determining the operand position
0
a61af66fc99e Initial load
duke
parents:
diff changeset
290 void index_temps (FILE *fp, FormDict &globals, const char *prefix = "", const char *receiver = "");
a61af66fc99e Initial load
duke
parents:
diff changeset
291 // ---------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 virtual bool verify(); // Check consistency after parsing
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 virtual void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
296 virtual void output(FILE *fp); // Write to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
297 };
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 //------------------------------EncodeForm-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
300 class EncodeForm : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
305 NameList _eclasses; // List of encode class names
a61af66fc99e Initial load
duke
parents:
diff changeset
306 Dict _encClass; // Map encode class names to EncClass objects
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
309 EncodeForm();
a61af66fc99e Initial load
duke
parents:
diff changeset
310 ~EncodeForm();
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 EncClass *add_EncClass(const char *className);
a61af66fc99e Initial load
duke
parents:
diff changeset
313 EncClass *encClass(const char *className);
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 const char *encClassPrototype(const char *className);
a61af66fc99e Initial load
duke
parents:
diff changeset
316 const char *encClassBody(const char *className);
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
319 void output(FILE *fp); // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
320 };
a61af66fc99e Initial load
duke
parents:
diff changeset
321
a61af66fc99e Initial load
duke
parents:
diff changeset
322 //------------------------------EncClass---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
323 class EncClass : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
325 // NameList for parameter type and name
a61af66fc99e Initial load
duke
parents:
diff changeset
326 NameList _parameter_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
327 NameList _parameter_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 // Breakdown the encoding into strings separated by $replacement_variables
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // There is an entry in _strings, perhaps NULL, that precedes each _rep_vars
a61af66fc99e Initial load
duke
parents:
diff changeset
331 NameList _code; // Strings passed through to tty->print
a61af66fc99e Initial load
duke
parents:
diff changeset
332 NameList _rep_vars; // replacement variables
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 NameList _parameters; // Locally defined names
a61af66fc99e Initial load
duke
parents:
diff changeset
335 FormDict _localNames; // Table of components & their types
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
338 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
339 const char *_name; // encoding class name
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
342 EncClass(const char *name);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 ~EncClass();
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // --------------------------- Parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // Add a parameter <type,name> pair
a61af66fc99e Initial load
duke
parents:
diff changeset
347 void add_parameter(const char *parameter_type, const char *parameter_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // Verify operand types in parameter list
a61af66fc99e Initial load
duke
parents:
diff changeset
349 bool check_parameter_types(FormDict &globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
350 // Obtain the zero-based index corresponding to a replacement variable
a61af66fc99e Initial load
duke
parents:
diff changeset
351 int rep_var_index(const char *rep_var);
a61af66fc99e Initial load
duke
parents:
diff changeset
352 int num_args() { return _parameter_name.count(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354 // --------------------------- Code Block
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // Add code
605
98cb887364d3 6810672: Comment typos
twisti
parents: 603
diff changeset
356 void add_code(const char *string_preceding_replacement_var);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // Add a replacement variable or one of its subfields
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // Subfields are stored with a leading '$'
a61af66fc99e Initial load
duke
parents:
diff changeset
359 void add_rep_var(char *replacement_var);
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 bool verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
362 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
363 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
364 };
a61af66fc99e Initial load
duke
parents:
diff changeset
365
a61af66fc99e Initial load
duke
parents:
diff changeset
366 //------------------------------MachNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
367 class MachNodeForm: public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
368 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
371 char *_ident; // Name of this instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
372 const char *_machnode_pipe; // Instruction Scheduline description class
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
375 MachNodeForm(char *id);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 ~MachNodeForm();
a61af66fc99e Initial load
duke
parents:
diff changeset
377
a61af66fc99e Initial load
duke
parents:
diff changeset
378 virtual MachNodeForm *is_machnode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
379
a61af66fc99e Initial load
duke
parents:
diff changeset
380 void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
381 void output(FILE *fp); // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
382 };
a61af66fc99e Initial load
duke
parents:
diff changeset
383
a61af66fc99e Initial load
duke
parents:
diff changeset
384 //------------------------------Opcode-----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
385 class Opcode : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
386 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
387
a61af66fc99e Initial load
duke
parents:
diff changeset
388 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
389 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
390 // Strings representing instruction opcodes, user defines placement in emit
a61af66fc99e Initial load
duke
parents:
diff changeset
391 char *_primary;
a61af66fc99e Initial load
duke
parents:
diff changeset
392 char *_secondary;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 char *_tertiary;
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 enum opcode_type {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 NOT_AN_OPCODE = -1,
a61af66fc99e Initial load
duke
parents:
diff changeset
397 PRIMARY = 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
398 SECONDARY = 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
399 TERTIARY = 3
a61af66fc99e Initial load
duke
parents:
diff changeset
400 };
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
403 Opcode(char *primary, char *secondary, char *tertiary);
a61af66fc99e Initial load
duke
parents:
diff changeset
404 ~Opcode();
a61af66fc99e Initial load
duke
parents:
diff changeset
405
a61af66fc99e Initial load
duke
parents:
diff changeset
406 static Opcode::opcode_type as_opcode_type(const char *designator);
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
409 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
410
a61af66fc99e Initial load
duke
parents:
diff changeset
411 // --------------------------- FILE *output_routines
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 0
diff changeset
412 bool print_opcode(FILE *fp, Opcode::opcode_type desired_opcode);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
413 };
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 //------------------------------InsEncode--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
416 class InsEncode : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
417 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // Public Data (access directly only for reads)
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // The encodings can only have the values predefined by the ADLC:
a61af66fc99e Initial load
duke
parents:
diff changeset
420 // blank, RegReg, RegMem, MemReg, ...
a61af66fc99e Initial load
duke
parents:
diff changeset
421 NameList _encoding;
a61af66fc99e Initial load
duke
parents:
diff changeset
422 // NameList _parameter;
a61af66fc99e Initial load
duke
parents:
diff changeset
423 // The parameters for each encoding are preceeded by a NameList::_signal
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // and follow the parameters for the previous encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 // char *_encode; // Type of instruction encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
430 InsEncode();
a61af66fc99e Initial load
duke
parents:
diff changeset
431 ~InsEncode();
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // Add "encode class name" and its parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
434 NameAndList *add_encode(char *encode_method_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // Parameters are added to the returned "NameAndList" by the parser
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437 // Access the list of encodings
a61af66fc99e Initial load
duke
parents:
diff changeset
438 void reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
439 const char *encode_class_iter();
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 // Returns the number of arguments to the current encoding in the iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
442 int current_encoding_num_args() {
a61af66fc99e Initial load
duke
parents:
diff changeset
443 return ((NameAndList*)_encoding.current())->count();
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
445
a61af66fc99e Initial load
duke
parents:
diff changeset
446 // --------------------------- Parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
447 // The following call depends upon position within encode_class_iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
448 //
a61af66fc99e Initial load
duke
parents:
diff changeset
449 // Obtain parameter name from zero based index
a61af66fc99e Initial load
duke
parents:
diff changeset
450 const char *rep_var_name(InstructForm &inst, uint param_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // ---------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
454 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
455 };
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 //------------------------------Effect-----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
458 class Effect : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
460
a61af66fc99e Initial load
duke
parents:
diff changeset
461 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
462 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
463 const char *_name; // Pre-defined name for effect
a61af66fc99e Initial load
duke
parents:
diff changeset
464 int _use_def; // Enumeration value of effect
a61af66fc99e Initial load
duke
parents:
diff changeset
465
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
467 Effect(const char *name); // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
468 ~Effect(); // Destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
469
a61af66fc99e Initial load
duke
parents:
diff changeset
470 // Dynamic type check
a61af66fc99e Initial load
duke
parents:
diff changeset
471 virtual Effect *is_effect() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 // Return 'true' if this use def info equals the parameter
a61af66fc99e Initial load
duke
parents:
diff changeset
474 bool is(int use_def_kill_enum) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
475 // Return 'true' if this use def info is a superset of parameter
a61af66fc99e Initial load
duke
parents:
diff changeset
476 bool isa(int use_def_kill_enum) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
479 void output(FILE *fp); // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
480 };
a61af66fc99e Initial load
duke
parents:
diff changeset
481
a61af66fc99e Initial load
duke
parents:
diff changeset
482 //------------------------------ExpandRule-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
483 class ExpandRule : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
484 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
485 NameList _expand_instrs; // ordered list of instructions and operands
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
489 NameList _newopers; // List of newly created operands
a61af66fc99e Initial load
duke
parents:
diff changeset
490 Dict _newopconst; // Map new operands to their constructors
a61af66fc99e Initial load
duke
parents:
diff changeset
491
a61af66fc99e Initial load
duke
parents:
diff changeset
492 void add_instruction(NameAndList *instruction_name_and_operand_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
493 void reset_instructions();
a61af66fc99e Initial load
duke
parents:
diff changeset
494 NameAndList *iter_instructions();
a61af66fc99e Initial load
duke
parents:
diff changeset
495
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
497 ExpandRule(); // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
498 ~ExpandRule(); // Destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
499
a61af66fc99e Initial load
duke
parents:
diff changeset
500 void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
501 void output(FILE *fp); // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
502 };
a61af66fc99e Initial load
duke
parents:
diff changeset
503
a61af66fc99e Initial load
duke
parents:
diff changeset
504 //------------------------------RewriteRule------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
505 class RewriteRule : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
506 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
507
a61af66fc99e Initial load
duke
parents:
diff changeset
508 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
510 SourceForm *_condition; // Rewrite condition code
a61af66fc99e Initial load
duke
parents:
diff changeset
511 InstructForm *_instrs; // List of instructions to expand to
a61af66fc99e Initial load
duke
parents:
diff changeset
512 OperandForm *_opers; // List of operands generated by expand
a61af66fc99e Initial load
duke
parents:
diff changeset
513 char *_tempParams; // Hold string until parser is finished.
a61af66fc99e Initial load
duke
parents:
diff changeset
514 char *_tempBlock; // Hold string until parser is finished.
a61af66fc99e Initial load
duke
parents:
diff changeset
515
a61af66fc99e Initial load
duke
parents:
diff changeset
516 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
517 RewriteRule(char* params, char* block) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
518 ~RewriteRule(); // Destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
519 void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
520 void output(FILE *fp); // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
521 };
a61af66fc99e Initial load
duke
parents:
diff changeset
522
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524 //==============================Operands=======================================
a61af66fc99e Initial load
duke
parents:
diff changeset
525 //------------------------------OpClassForm------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
526 class OpClassForm : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
528 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
529 const char *_ident; // Name of this operand
a61af66fc99e Initial load
duke
parents:
diff changeset
530 NameList _oplst; // List of operand forms included in class
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
533 OpClassForm(const char *id);
a61af66fc99e Initial load
duke
parents:
diff changeset
534 ~OpClassForm();
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 // dynamic type check
a61af66fc99e Initial load
duke
parents:
diff changeset
537 virtual OpClassForm *is_opclass() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
538 virtual Form::InterfaceType interface_type(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
539 virtual bool stack_slots_only(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541 virtual bool is_cisc_mem(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
542
a61af66fc99e Initial load
duke
parents:
diff changeset
543
a61af66fc99e Initial load
duke
parents:
diff changeset
544 // Min and Max opcodes of operands in this operand class
a61af66fc99e Initial load
duke
parents:
diff changeset
545 int _minCode;
a61af66fc99e Initial load
duke
parents:
diff changeset
546 int _maxCode;
a61af66fc99e Initial load
duke
parents:
diff changeset
547
a61af66fc99e Initial load
duke
parents:
diff changeset
548 virtual bool ideal_only() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
549 virtual void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
550 virtual void output(FILE *fp); // Write to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
551 };
a61af66fc99e Initial load
duke
parents:
diff changeset
552
a61af66fc99e Initial load
duke
parents:
diff changeset
553 //------------------------------OperandForm------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
554 class OperandForm : public OpClassForm {
a61af66fc99e Initial load
duke
parents:
diff changeset
555 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
556 bool _ideal_only; // Not a user-defined instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
557
a61af66fc99e Initial load
duke
parents:
diff changeset
558 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
559 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
560 NameList _parameters; // Locally defined names
a61af66fc99e Initial load
duke
parents:
diff changeset
561 FormDict _localNames; // Table of components & their types
a61af66fc99e Initial load
duke
parents:
diff changeset
562 MatchRule *_matrule; // Matching rule for this operand
a61af66fc99e Initial load
duke
parents:
diff changeset
563 Interface *_interface; // Encoding interface for this operand
a61af66fc99e Initial load
duke
parents:
diff changeset
564 Attribute *_attribs; // List of Attribute rules
a61af66fc99e Initial load
duke
parents:
diff changeset
565 Predicate *_predicate; // Predicate test for this operand
a61af66fc99e Initial load
duke
parents:
diff changeset
566 Constraint *_constraint; // Constraint Rule for this operand
a61af66fc99e Initial load
duke
parents:
diff changeset
567 ConstructRule *_construct; // Construction of operand data after matching
a61af66fc99e Initial load
duke
parents:
diff changeset
568 FormatRule *_format; // Format for assembly generation
a61af66fc99e Initial load
duke
parents:
diff changeset
569 NameList _classes; // List of opclasses which contain this oper
a61af66fc99e Initial load
duke
parents:
diff changeset
570
a61af66fc99e Initial load
duke
parents:
diff changeset
571 ComponentList _components; //
a61af66fc99e Initial load
duke
parents:
diff changeset
572
a61af66fc99e Initial load
duke
parents:
diff changeset
573 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
574 OperandForm(const char *id);
a61af66fc99e Initial load
duke
parents:
diff changeset
575 OperandForm(const char *id, bool ideal_only);
a61af66fc99e Initial load
duke
parents:
diff changeset
576 ~OperandForm();
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578 // Dynamic type check
a61af66fc99e Initial load
duke
parents:
diff changeset
579 virtual OperandForm *is_operand() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
580
a61af66fc99e Initial load
duke
parents:
diff changeset
581 virtual bool ideal_only() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
582 virtual Form::InterfaceType interface_type(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
583 virtual bool stack_slots_only(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
584
a61af66fc99e Initial load
duke
parents:
diff changeset
585 virtual const char *cost(); // Access ins_cost attribute
a61af66fc99e Initial load
duke
parents:
diff changeset
586 virtual uint num_leaves() const;// Leaves in complex operand
a61af66fc99e Initial load
duke
parents:
diff changeset
587 // Constants in operands' match rules
a61af66fc99e Initial load
duke
parents:
diff changeset
588 virtual uint num_consts(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
589 // Constants in operand's match rule with specified type
a61af66fc99e Initial load
duke
parents:
diff changeset
590 virtual uint num_consts(FormDict &globals, Form::DataType type) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
591 // Pointer Constants in operands' match rules
a61af66fc99e Initial load
duke
parents:
diff changeset
592 virtual uint num_const_ptrs(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
593 // The number of input edges in the machine world == num_leaves - num_consts
a61af66fc99e Initial load
duke
parents:
diff changeset
594 virtual uint num_edges(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
595
a61af66fc99e Initial load
duke
parents:
diff changeset
596 // Check if this operand is usable for cisc-spilling
a61af66fc99e Initial load
duke
parents:
diff changeset
597 virtual bool is_cisc_reg(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
598
a61af66fc99e Initial load
duke
parents:
diff changeset
599 // node matches ideal 'Bool', grab condition codes from the ideal world
a61af66fc99e Initial load
duke
parents:
diff changeset
600 virtual bool is_ideal_bool() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
601
a61af66fc99e Initial load
duke
parents:
diff changeset
602 // Has an integer constant suitable for spill offsets
a61af66fc99e Initial load
duke
parents:
diff changeset
603 bool has_conI(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
604 return (num_consts(globals,idealI) == 1) && !is_ideal_bool(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
605 bool has_conL(FormDict &globals) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
606 return (num_consts(globals,idealL) == 1) && !is_ideal_bool(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 // Node is user-defined operand for an sRegX
a61af66fc99e Initial load
duke
parents:
diff changeset
609 virtual Form::DataType is_user_name_for_sReg() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
610
a61af66fc99e Initial load
duke
parents:
diff changeset
611 // Return ideal type, if there is a single ideal type for this operand
a61af66fc99e Initial load
duke
parents:
diff changeset
612 virtual const char *ideal_type(FormDict &globals, RegisterForm *registers = NULL) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
613 // If there is a single ideal type for this interface field, return it.
a61af66fc99e Initial load
duke
parents:
diff changeset
614 virtual const char *interface_ideal_type(FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
615 const char *field_name) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
616
a61af66fc99e Initial load
duke
parents:
diff changeset
617 // Return true if this operand represents a bound register class
a61af66fc99e Initial load
duke
parents:
diff changeset
618 bool is_bound_register() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
619
a61af66fc99e Initial load
duke
parents:
diff changeset
620 // Return the Register class for this operand. Returns NULL if
a61af66fc99e Initial load
duke
parents:
diff changeset
621 // operand isn't a register form.
a61af66fc99e Initial load
duke
parents:
diff changeset
622 RegClass* get_RegClass() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
623
a61af66fc99e Initial load
duke
parents:
diff changeset
624 virtual bool is_interface_field(const char *field_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
625 const char * &value) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 // If this operand has a single ideal type, return its type
a61af66fc99e Initial load
duke
parents:
diff changeset
628 virtual Form::DataType simple_type(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
629 // If this operand is an ideal constant, return its type
a61af66fc99e Initial load
duke
parents:
diff changeset
630 virtual Form::DataType is_base_constant(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
631
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // "true" if this operand is a simple type that is swallowed
a61af66fc99e Initial load
duke
parents:
diff changeset
633 virtual bool swallowed(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
634
a61af66fc99e Initial load
duke
parents:
diff changeset
635 // Return register class name if a constraint specifies the register class.
a61af66fc99e Initial load
duke
parents:
diff changeset
636 virtual const char *constrained_reg_class() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
637 // Return the register class associated with 'leaf'.
a61af66fc99e Initial load
duke
parents:
diff changeset
638 virtual const char *in_reg_class(uint leaf, FormDict &globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
639
a61af66fc99e Initial load
duke
parents:
diff changeset
640 // Build component list from MatchRule and operand's parameter list
a61af66fc99e Initial load
duke
parents:
diff changeset
641 virtual void build_components(); // top-level operands
a61af66fc99e Initial load
duke
parents:
diff changeset
642
a61af66fc99e Initial load
duke
parents:
diff changeset
643 // Return zero-based position in component list; -1 if not in list.
a61af66fc99e Initial load
duke
parents:
diff changeset
644 virtual int operand_position(const char *name, int usedef);
a61af66fc99e Initial load
duke
parents:
diff changeset
645
a61af66fc99e Initial load
duke
parents:
diff changeset
646 // Return zero-based position in component list; -1 if not in list.
a61af66fc99e Initial load
duke
parents:
diff changeset
647 virtual int constant_position(FormDict &globals, const Component *comp);
a61af66fc99e Initial load
duke
parents:
diff changeset
648 virtual int constant_position(FormDict &globals, const char *local_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
649 // Return the operand form corresponding to the given index, else NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
650 virtual OperandForm *constant_operand(FormDict &globals, uint const_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
651
a61af66fc99e Initial load
duke
parents:
diff changeset
652 // Return zero-based position in component list; -1 if not in list.
a61af66fc99e Initial load
duke
parents:
diff changeset
653 virtual int register_position(FormDict &globals, const char *regname);
a61af66fc99e Initial load
duke
parents:
diff changeset
654
a61af66fc99e Initial load
duke
parents:
diff changeset
655 const char *reduce_result() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
656 // Return the name of the operand on the right hand side of the binary match
a61af66fc99e Initial load
duke
parents:
diff changeset
657 // Return NULL if there is no right hand side
a61af66fc99e Initial load
duke
parents:
diff changeset
658 const char *reduce_right(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
659 const char *reduce_left(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
660
a61af66fc99e Initial load
duke
parents:
diff changeset
661
a61af66fc99e Initial load
duke
parents:
diff changeset
662 // --------------------------- FILE *output_routines
a61af66fc99e Initial load
duke
parents:
diff changeset
663 //
a61af66fc99e Initial load
duke
parents:
diff changeset
664 // Output code for disp_is_oop, if true.
a61af66fc99e Initial load
duke
parents:
diff changeset
665 void disp_is_oop(FILE *fp, FormDict &globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
666 // Generate code for internal and external format methods
a61af66fc99e Initial load
duke
parents:
diff changeset
667 void int_format(FILE *fp, FormDict &globals, uint index);
a61af66fc99e Initial load
duke
parents:
diff changeset
668 void ext_format(FILE *fp, FormDict &globals, uint index);
a61af66fc99e Initial load
duke
parents:
diff changeset
669 void format_constant(FILE *fp, uint con_index, uint con_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
670 // Output code to access the value of the index'th constant
a61af66fc99e Initial load
duke
parents:
diff changeset
671 void access_constant(FILE *fp, FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
672 uint con_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
673 // ---------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
674
a61af66fc99e Initial load
duke
parents:
diff changeset
675
a61af66fc99e Initial load
duke
parents:
diff changeset
676 virtual void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
677 virtual void output(FILE *fp); // Write to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
678 };
a61af66fc99e Initial load
duke
parents:
diff changeset
679
a61af66fc99e Initial load
duke
parents:
diff changeset
680 //------------------------------Constraint-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
681 class Constraint : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
682 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
683
a61af66fc99e Initial load
duke
parents:
diff changeset
684 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
685 const char *_func; // Constraint function
a61af66fc99e Initial load
duke
parents:
diff changeset
686 const char *_arg; // function's argument
a61af66fc99e Initial load
duke
parents:
diff changeset
687
a61af66fc99e Initial load
duke
parents:
diff changeset
688 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
689 Constraint(const char *func, const char *arg); // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
690 ~Constraint();
a61af66fc99e Initial load
duke
parents:
diff changeset
691
a61af66fc99e Initial load
duke
parents:
diff changeset
692 bool stack_slots_only() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
693
a61af66fc99e Initial load
duke
parents:
diff changeset
694 void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
695 void output(FILE *fp); // Write info to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
696 };
a61af66fc99e Initial load
duke
parents:
diff changeset
697
a61af66fc99e Initial load
duke
parents:
diff changeset
698 //------------------------------Predicate--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
699 class Predicate : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
700 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
701
a61af66fc99e Initial load
duke
parents:
diff changeset
702 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
703 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
704 char *_pred; // C++ source string for predicate
a61af66fc99e Initial load
duke
parents:
diff changeset
705
a61af66fc99e Initial load
duke
parents:
diff changeset
706 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
707 Predicate(char *pr);
a61af66fc99e Initial load
duke
parents:
diff changeset
708 ~Predicate();
a61af66fc99e Initial load
duke
parents:
diff changeset
709
a61af66fc99e Initial load
duke
parents:
diff changeset
710 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
711 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
712 };
a61af66fc99e Initial load
duke
parents:
diff changeset
713
a61af66fc99e Initial load
duke
parents:
diff changeset
714 //------------------------------Interface--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
715 class Interface : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
716 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
717
a61af66fc99e Initial load
duke
parents:
diff changeset
718 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
719 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
720 const char *_name; // String representing the interface name
a61af66fc99e Initial load
duke
parents:
diff changeset
721
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
723 Interface(const char *name);
a61af66fc99e Initial load
duke
parents:
diff changeset
724 ~Interface();
a61af66fc99e Initial load
duke
parents:
diff changeset
725
a61af66fc99e Initial load
duke
parents:
diff changeset
726 virtual Form::InterfaceType interface_type(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
727
a61af66fc99e Initial load
duke
parents:
diff changeset
728 RegInterface *is_RegInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
729 MemInterface *is_MemInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
730 ConstInterface *is_ConstInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
731 CondInterface *is_CondInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
732
a61af66fc99e Initial load
duke
parents:
diff changeset
733
a61af66fc99e Initial load
duke
parents:
diff changeset
734 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
735 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
736 };
a61af66fc99e Initial load
duke
parents:
diff changeset
737
a61af66fc99e Initial load
duke
parents:
diff changeset
738 //------------------------------RegInterface-----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
739 class RegInterface : public Interface {
a61af66fc99e Initial load
duke
parents:
diff changeset
740 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
741
a61af66fc99e Initial load
duke
parents:
diff changeset
742 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
743 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
744 RegInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
745 ~RegInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
746
a61af66fc99e Initial load
duke
parents:
diff changeset
747 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
748 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
749 };
a61af66fc99e Initial load
duke
parents:
diff changeset
750
a61af66fc99e Initial load
duke
parents:
diff changeset
751 //------------------------------ConstInterface---------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
752 class ConstInterface : public Interface {
a61af66fc99e Initial load
duke
parents:
diff changeset
753 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
754
a61af66fc99e Initial load
duke
parents:
diff changeset
755 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
756 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
757 ConstInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
758 ~ConstInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
759
a61af66fc99e Initial load
duke
parents:
diff changeset
760 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
761 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
762 };
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764 //------------------------------MemInterface-----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
765 class MemInterface : public Interface {
a61af66fc99e Initial load
duke
parents:
diff changeset
766 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
767
a61af66fc99e Initial load
duke
parents:
diff changeset
768 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
769 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
770 char *_base; // Base address
a61af66fc99e Initial load
duke
parents:
diff changeset
771 char *_index; // index
a61af66fc99e Initial load
duke
parents:
diff changeset
772 char *_scale; // scaling factor
a61af66fc99e Initial load
duke
parents:
diff changeset
773 char *_disp; // displacement
a61af66fc99e Initial load
duke
parents:
diff changeset
774
a61af66fc99e Initial load
duke
parents:
diff changeset
775 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
776 MemInterface(char *base, char *index, char *scale, char *disp);
a61af66fc99e Initial load
duke
parents:
diff changeset
777 ~MemInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
778
a61af66fc99e Initial load
duke
parents:
diff changeset
779 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
780 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
781 };
a61af66fc99e Initial load
duke
parents:
diff changeset
782
a61af66fc99e Initial load
duke
parents:
diff changeset
783 //------------------------------CondInterface----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
784 class CondInterface : public Interface {
a61af66fc99e Initial load
duke
parents:
diff changeset
785 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
786
a61af66fc99e Initial load
duke
parents:
diff changeset
787 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
788 const char *_equal;
a61af66fc99e Initial load
duke
parents:
diff changeset
789 const char *_not_equal;
a61af66fc99e Initial load
duke
parents:
diff changeset
790 const char *_less;
a61af66fc99e Initial load
duke
parents:
diff changeset
791 const char *_greater_equal;
a61af66fc99e Initial load
duke
parents:
diff changeset
792 const char *_less_equal;
a61af66fc99e Initial load
duke
parents:
diff changeset
793 const char *_greater;
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 0
diff changeset
794 const char *_equal_format;
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 0
diff changeset
795 const char *_not_equal_format;
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 0
diff changeset
796 const char *_less_format;
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 0
diff changeset
797 const char *_greater_equal_format;
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 0
diff changeset
798 const char *_less_equal_format;
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 0
diff changeset
799 const char *_greater_format;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
800
a61af66fc99e Initial load
duke
parents:
diff changeset
801 // Public Methods
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 0
diff changeset
802 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: 0
diff changeset
803 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: 0
diff changeset
804 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: 0
diff changeset
805 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: 0
diff changeset
806 const char* less_equal, const char* less_equal_format,
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 0
diff changeset
807 const char* greater, const char* greater_format);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
808 ~CondInterface();
a61af66fc99e Initial load
duke
parents:
diff changeset
809
a61af66fc99e Initial load
duke
parents:
diff changeset
810 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
811 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
812 };
a61af66fc99e Initial load
duke
parents:
diff changeset
813
a61af66fc99e Initial load
duke
parents:
diff changeset
814 //------------------------------ConstructRule----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
815 class ConstructRule : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
816 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
817
a61af66fc99e Initial load
duke
parents:
diff changeset
818 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
819 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
820 char *_expr; // String representing the match expression
a61af66fc99e Initial load
duke
parents:
diff changeset
821 char *_construct; // String representing C++ constructor code
a61af66fc99e Initial load
duke
parents:
diff changeset
822
a61af66fc99e Initial load
duke
parents:
diff changeset
823 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
824 ConstructRule(char *cnstr);
a61af66fc99e Initial load
duke
parents:
diff changeset
825 ~ConstructRule();
a61af66fc99e Initial load
duke
parents:
diff changeset
826
a61af66fc99e Initial load
duke
parents:
diff changeset
827 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
828 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
829 };
a61af66fc99e Initial load
duke
parents:
diff changeset
830
a61af66fc99e Initial load
duke
parents:
diff changeset
831
a61af66fc99e Initial load
duke
parents:
diff changeset
832 //==============================Shared=========================================
a61af66fc99e Initial load
duke
parents:
diff changeset
833 //------------------------------AttributeForm----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
834 class AttributeForm : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
835 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
836 // counters for unique instruction or operand ID
a61af66fc99e Initial load
duke
parents:
diff changeset
837 static int _insId; // user-defined machine instruction types
a61af66fc99e Initial load
duke
parents:
diff changeset
838 static int _opId; // user-defined operand types
a61af66fc99e Initial load
duke
parents:
diff changeset
839
a61af66fc99e Initial load
duke
parents:
diff changeset
840 int id; // hold type for this object
a61af66fc99e Initial load
duke
parents:
diff changeset
841
a61af66fc99e Initial load
duke
parents:
diff changeset
842 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
843 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
844 char *_attrname; // Name of attribute
a61af66fc99e Initial load
duke
parents:
diff changeset
845 int _atype; // Either INS_ATTR or OP_ATTR
a61af66fc99e Initial load
duke
parents:
diff changeset
846 char *_attrdef; // C++ source which evaluates to constant
a61af66fc99e Initial load
duke
parents:
diff changeset
847
a61af66fc99e Initial load
duke
parents:
diff changeset
848 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
849 AttributeForm(char *attr, int type, char *attrdef);
a61af66fc99e Initial load
duke
parents:
diff changeset
850 ~AttributeForm();
a61af66fc99e Initial load
duke
parents:
diff changeset
851
a61af66fc99e Initial load
duke
parents:
diff changeset
852 // Dynamic type check
a61af66fc99e Initial load
duke
parents:
diff changeset
853 virtual AttributeForm *is_attribute() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
854
a61af66fc99e Initial load
duke
parents:
diff changeset
855 int type() { return id;} // return this object's "id"
a61af66fc99e Initial load
duke
parents:
diff changeset
856
a61af66fc99e Initial load
duke
parents:
diff changeset
857 static const char* _ins_cost; // "ins_cost"
a61af66fc99e Initial load
duke
parents:
diff changeset
858 static const char* _op_cost; // "op_cost"
a61af66fc99e Initial load
duke
parents:
diff changeset
859
a61af66fc99e Initial load
duke
parents:
diff changeset
860 void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
861 void output(FILE *fp); // Write output files
a61af66fc99e Initial load
duke
parents:
diff changeset
862 };
a61af66fc99e Initial load
duke
parents:
diff changeset
863
a61af66fc99e Initial load
duke
parents:
diff changeset
864 //------------------------------Component--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
865 class Component : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
866 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
867
a61af66fc99e Initial load
duke
parents:
diff changeset
868 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
869 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
870 const char *_name; // Name of this component
a61af66fc99e Initial load
duke
parents:
diff changeset
871 const char *_type; // Type of this component
a61af66fc99e Initial load
duke
parents:
diff changeset
872 int _usedef; // Value of component
a61af66fc99e Initial load
duke
parents:
diff changeset
873
a61af66fc99e Initial load
duke
parents:
diff changeset
874 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
875 Component(const char *name, const char *type, int usedef);
a61af66fc99e Initial load
duke
parents:
diff changeset
876 ~Component();
a61af66fc99e Initial load
duke
parents:
diff changeset
877
a61af66fc99e Initial load
duke
parents:
diff changeset
878
a61af66fc99e Initial load
duke
parents:
diff changeset
879 // Return 'true' if this use def info equals the parameter
a61af66fc99e Initial load
duke
parents:
diff changeset
880 bool is(int use_def_kill_enum) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
881 // Return 'true' if this use def info is a superset of parameter
a61af66fc99e Initial load
duke
parents:
diff changeset
882 bool isa(int use_def_kill_enum) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
883 int promote_use_def_info(int new_use_def);
a61af66fc99e Initial load
duke
parents:
diff changeset
884 const char *base_type(FormDict &globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
885 // Form::DataType is_base_constant(FormDict &globals);
a61af66fc99e Initial load
duke
parents:
diff changeset
886
a61af66fc99e Initial load
duke
parents:
diff changeset
887 void dump(); // Debug printer
a61af66fc99e Initial load
duke
parents:
diff changeset
888 void output(FILE *fp); // Write to output files
a61af66fc99e Initial load
duke
parents:
diff changeset
889
a61af66fc99e Initial load
duke
parents:
diff changeset
890 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
891 // Implementation depends upon working bit intersection and union.
a61af66fc99e Initial load
duke
parents:
diff changeset
892 enum use_def_enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
893 INVALID = 0x0,
a61af66fc99e Initial load
duke
parents:
diff changeset
894 USE = 0x1,
a61af66fc99e Initial load
duke
parents:
diff changeset
895 DEF = 0x2, USE_DEF = 0x3,
a61af66fc99e Initial load
duke
parents:
diff changeset
896 KILL = 0x4, USE_KILL = 0x5,
a61af66fc99e Initial load
duke
parents:
diff changeset
897 SYNTHETIC = 0x8,
a61af66fc99e Initial load
duke
parents:
diff changeset
898 TEMP = USE | SYNTHETIC
a61af66fc99e Initial load
duke
parents:
diff changeset
899 };
a61af66fc99e Initial load
duke
parents:
diff changeset
900 };
a61af66fc99e Initial load
duke
parents:
diff changeset
901
a61af66fc99e Initial load
duke
parents:
diff changeset
902
a61af66fc99e Initial load
duke
parents:
diff changeset
903 //------------------------------MatchNode--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
904 class MatchNode : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
905 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
906
a61af66fc99e Initial load
duke
parents:
diff changeset
907 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
908 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
909 const char *_result; // The name of the output of this node
a61af66fc99e Initial load
duke
parents:
diff changeset
910 const char *_name; // The name that appeared in the match rule
a61af66fc99e Initial load
duke
parents:
diff changeset
911 const char *_opType; // The Operation/Type matched
a61af66fc99e Initial load
duke
parents:
diff changeset
912 MatchNode *_lChild; // Left child in expression tree
a61af66fc99e Initial load
duke
parents:
diff changeset
913 MatchNode *_rChild; // Right child in expression tree
a61af66fc99e Initial load
duke
parents:
diff changeset
914 int _numleaves; // Sum of numleaves for all direct children
a61af66fc99e Initial load
duke
parents:
diff changeset
915 ArchDesc &_AD; // Reference to ArchDesc object
a61af66fc99e Initial load
duke
parents:
diff changeset
916 char *_internalop; // String representing internal operand
a61af66fc99e Initial load
duke
parents:
diff changeset
917 int _commutative_id; // id of commutative operation
a61af66fc99e Initial load
duke
parents:
diff changeset
918
a61af66fc99e Initial load
duke
parents:
diff changeset
919 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
920 MatchNode(ArchDesc &ad, const char *result = 0, const char *expr = 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
921 const char *opType=0, MatchNode *lChild=NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
922 MatchNode *rChild=NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
923 MatchNode(ArchDesc &ad, MatchNode& mNode); // Shallow copy constructor;
a61af66fc99e Initial load
duke
parents:
diff changeset
924 MatchNode(ArchDesc &ad, MatchNode& mNode, int clone); // Construct clone
a61af66fc99e Initial load
duke
parents:
diff changeset
925 ~MatchNode();
a61af66fc99e Initial load
duke
parents:
diff changeset
926
a61af66fc99e Initial load
duke
parents:
diff changeset
927 // return 0 if not found:
a61af66fc99e Initial load
duke
parents:
diff changeset
928 // return 1 if found and position is incremented by operand offset in rule
a61af66fc99e Initial load
duke
parents:
diff changeset
929 bool find_name(const char *str, int &position) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
930 bool find_type(const char *str, int &position) const;
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
931 virtual void append_components(FormDict& locals, ComponentList& components,
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
932 bool def_flag = false) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
933 bool base_operand(uint &position, FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
934 const char * &result, const char * &name,
a61af66fc99e Initial load
duke
parents:
diff changeset
935 const char * &opType) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
936 // recursive count on operands
a61af66fc99e Initial load
duke
parents:
diff changeset
937 uint num_consts(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
938 uint num_const_ptrs(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
939 // recursive count of constants with specified type
a61af66fc99e Initial load
duke
parents:
diff changeset
940 uint num_consts(FormDict &globals, Form::DataType type) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
941 // uint num_consts() const; // Local inspection only
a61af66fc99e Initial load
duke
parents:
diff changeset
942 int needs_ideal_memory_edge(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
943 int needs_base_oop_edge() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
944
a61af66fc99e Initial load
duke
parents:
diff changeset
945 // Help build instruction predicates. Search for operand names.
a61af66fc99e Initial load
duke
parents:
diff changeset
946 void count_instr_names( Dict &names );
a61af66fc99e Initial load
duke
parents:
diff changeset
947 int build_instr_pred( char *buf, const char *name, int cnt );
a61af66fc99e Initial load
duke
parents:
diff changeset
948 void build_internalop( );
a61af66fc99e Initial load
duke
parents:
diff changeset
949
a61af66fc99e Initial load
duke
parents:
diff changeset
950 // Return the name of the operands associated with reducing to this operand:
a61af66fc99e Initial load
duke
parents:
diff changeset
951 // The result type, plus the left and right sides of the binary match
a61af66fc99e Initial load
duke
parents:
diff changeset
952 // Return NULL if there is no left or right hand side
a61af66fc99e Initial load
duke
parents:
diff changeset
953 bool sets_result() const; // rule "Set"s result of match
a61af66fc99e Initial load
duke
parents:
diff changeset
954 const char *reduce_right(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
955 const char *reduce_left (FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
956
a61af66fc99e Initial load
duke
parents:
diff changeset
957 // Recursive version of check in MatchRule
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
958 int cisc_spill_match(FormDict& globals, RegisterForm* registers,
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
959 MatchNode* mRule2, const char* &operand,
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
960 const char* &reg_type);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
961 int cisc_spill_merge(int left_result, int right_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
962
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
963 virtual bool equivalent(FormDict& globals, MatchNode* mNode2);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
964
a61af66fc99e Initial load
duke
parents:
diff changeset
965 void count_commutative_op(int& count);
a61af66fc99e Initial load
duke
parents:
diff changeset
966 void swap_commutative_op(bool atroot, int count);
a61af66fc99e Initial load
duke
parents:
diff changeset
967
a61af66fc99e Initial load
duke
parents:
diff changeset
968 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
969 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
970 };
a61af66fc99e Initial load
duke
parents:
diff changeset
971
a61af66fc99e Initial load
duke
parents:
diff changeset
972 //------------------------------MatchRule--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
973 class MatchRule : public MatchNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
974 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
975
a61af66fc99e Initial load
duke
parents:
diff changeset
976 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
977 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
978 const char *_machType; // Machine type index
a61af66fc99e Initial load
duke
parents:
diff changeset
979 int _depth; // Expression tree depth
a61af66fc99e Initial load
duke
parents:
diff changeset
980 char *_construct; // String representing C++ constructor code
a61af66fc99e Initial load
duke
parents:
diff changeset
981 int _numchilds; // Number of direct children
a61af66fc99e Initial load
duke
parents:
diff changeset
982 MatchRule *_next; // Pointer to next match rule
a61af66fc99e Initial load
duke
parents:
diff changeset
983
a61af66fc99e Initial load
duke
parents:
diff changeset
984 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
985 MatchRule(ArchDesc &ad);
a61af66fc99e Initial load
duke
parents:
diff changeset
986 MatchRule(ArchDesc &ad, MatchRule* mRule); // Shallow copy constructor;
a61af66fc99e Initial load
duke
parents:
diff changeset
987 MatchRule(ArchDesc &ad, MatchNode* mroot, int depth, char* construct, int numleaves);
a61af66fc99e Initial load
duke
parents:
diff changeset
988 ~MatchRule();
a61af66fc99e Initial load
duke
parents:
diff changeset
989
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
990 virtual void append_components(FormDict& locals, ComponentList& components, bool def_flag = false) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
991 // Recursive call on all operands' match rules in my match rule.
a61af66fc99e Initial load
duke
parents:
diff changeset
992 bool base_operand(uint &position, FormDict &globals,
a61af66fc99e Initial load
duke
parents:
diff changeset
993 const char * &result, const char * &name,
a61af66fc99e Initial load
duke
parents:
diff changeset
994 const char * &opType) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
995
a61af66fc99e Initial load
duke
parents:
diff changeset
996
a61af66fc99e Initial load
duke
parents:
diff changeset
997 bool is_base_register(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
998 Form::DataType is_base_constant(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
999 bool is_chain_rule(FormDict &globals) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 int is_ideal_copy() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 int is_expensive() const; // node matches ideal 'CosD'
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 bool is_ideal_if() const; // node matches ideal 'If'
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 bool is_ideal_fastlock() const; // node matches ideal 'FastLock'
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 bool is_ideal_jump() const; // node matches ideal 'Jump'
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 bool is_ideal_membar() const; // node matches ideal 'MemBarXXX'
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 bool is_ideal_loadPC() const; // node matches ideal 'LoadPC'
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 bool is_ideal_box() const; // node matches ideal 'Box'
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 bool is_ideal_goto() const; // node matches ideal 'Goto'
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 bool is_ideal_loopEnd() const; // node matches ideal 'LoopEnd'
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 bool is_ideal_bool() const; // node matches ideal 'Bool'
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 Form::DataType is_ideal_load() const;// node matches ideal 'LoadXNode'
855
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 605
diff changeset
1012 // Should antidep checks be disabled for this rule
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 605
diff changeset
1013 // See definition of MatchRule::skip_antidep_check
f9094a5e1c8a 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 605
diff changeset
1014 bool skip_antidep_check() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 Form::DataType is_ideal_store() const;// node matches ideal 'StoreXNode'
a61af66fc99e Initial load
duke
parents:
diff changeset
1016
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 // Check if 'mRule2' is a cisc-spill variant of this MatchRule
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
1018 int matchrule_cisc_spill_match(FormDict &globals, RegisterForm* registers,
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
1019 MatchRule* mRule2, const char* &operand,
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
1020 const char* &reg_type);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1021
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 // Check if 'mRule2' is equivalent to this MatchRule
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
1023 virtual bool equivalent(FormDict& globals, MatchNode* mRule2);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1024
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 599
diff changeset
1025 void matchrule_swap_commutative_op(const char* instr_ident, int count, int& match_rules_cnt);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1026
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1030
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 //------------------------------Attribute--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 class Attribute : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1034
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 char *_ident; // Name of predefined attribute
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 char *_val; // C++ source which evaluates to constant
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 int _atype; // Either INS_ATTR or OP_ATTR
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 int int_val(ArchDesc &ad); // Return atoi(_val), ensuring syntax.
a61af66fc99e Initial load
duke
parents:
diff changeset
1041
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 Attribute(char *id, char* val, int type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 ~Attribute();
a61af66fc99e Initial load
duke
parents:
diff changeset
1045
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1049
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 //------------------------------FormatRule-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 class FormatRule : public Form {
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1053
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 // Public Data
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 // There is an entry in _strings, perhaps NULL, that precedes each _rep_vars
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 NameList _strings; // Strings passed through to tty->print
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 NameList _rep_vars; // replacement variables
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 char *_temp; // String representing the assembly code
a61af66fc99e Initial load
duke
parents:
diff changeset
1060
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 // Public Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 FormatRule(char *temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 ~FormatRule();
a61af66fc99e Initial load
duke
parents:
diff changeset
1064
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 void output(FILE *fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
1068
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
1069 #endif // SHARE_VM_ADLC_FORMSSEL_HPP