author | mdoerr |
Wed, 23 Mar 2016 15:35:38 -0700 | |
changeset 36817 | 57ce0a76b6b0 |
parent 36559 | b35fcd3da015 |
child 38031 | e0b822facc03 |
child 37480 | 291ee208fb72 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
28954
7dda6c26cc98
8068977: Remove unused sun.misc.Unsafe prefetch intrinsic support
psandoz
parents:
24933
diff
changeset
|
2 |
* Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1374
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1374
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1374
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_C1_C1_LIRGENERATOR_HPP |
26 |
#define SHARE_VM_C1_C1_LIRGENERATOR_HPP |
|
27 |
||
28 |
#include "c1/c1_Instruction.hpp" |
|
29 |
#include "c1/c1_LIR.hpp" |
|
30 |
#include "ci/ciMethodData.hpp" |
|
31 |
#include "utilities/sizes.hpp" |
|
32 |
||
1 | 33 |
// The classes responsible for code emission and register allocation |
34 |
||
35 |
||
36 |
class LIRGenerator; |
|
37 |
class LIREmitter; |
|
38 |
class Invoke; |
|
39 |
class SwitchRange; |
|
40 |
class LIRItem; |
|
41 |
||
42 |
define_array(LIRItemArray, LIRItem*) |
|
43 |
define_stack(LIRItemList, LIRItemArray) |
|
44 |
||
45 |
class SwitchRange: public CompilationResourceObj { |
|
46 |
private: |
|
47 |
int _low_key; |
|
48 |
int _high_key; |
|
49 |
BlockBegin* _sux; |
|
50 |
public: |
|
51 |
SwitchRange(int start_key, BlockBegin* sux): _low_key(start_key), _high_key(start_key), _sux(sux) {} |
|
52 |
void set_high_key(int key) { _high_key = key; } |
|
53 |
||
54 |
int high_key() const { return _high_key; } |
|
55 |
int low_key() const { return _low_key; } |
|
56 |
BlockBegin* sux() const { return _sux; } |
|
57 |
}; |
|
58 |
||
59 |
define_array(SwitchRangeArray, SwitchRange*) |
|
60 |
define_stack(SwitchRangeList, SwitchRangeArray) |
|
61 |
||
62 |
||
63 |
class ResolveNode; |
|
64 |
||
65 |
define_array(NodeArray, ResolveNode*); |
|
66 |
define_stack(NodeList, NodeArray); |
|
67 |
||
68 |
||
69 |
// Node objects form a directed graph of LIR_Opr |
|
70 |
// Edges between Nodes represent moves from one Node to its destinations |
|
71 |
class ResolveNode: public CompilationResourceObj { |
|
72 |
private: |
|
73 |
LIR_Opr _operand; // the source or destinaton |
|
74 |
NodeList _destinations; // for the operand |
|
75 |
bool _assigned; // Value assigned to this Node? |
|
76 |
bool _visited; // Node already visited? |
|
77 |
bool _start_node; // Start node already visited? |
|
78 |
||
79 |
public: |
|
80 |
ResolveNode(LIR_Opr operand) |
|
81 |
: _operand(operand) |
|
82 |
, _assigned(false) |
|
83 |
, _visited(false) |
|
84 |
, _start_node(false) {}; |
|
85 |
||
86 |
// accessors |
|
87 |
LIR_Opr operand() const { return _operand; } |
|
88 |
int no_of_destinations() const { return _destinations.length(); } |
|
89 |
ResolveNode* destination_at(int i) { return _destinations[i]; } |
|
90 |
bool assigned() const { return _assigned; } |
|
91 |
bool visited() const { return _visited; } |
|
92 |
bool start_node() const { return _start_node; } |
|
93 |
||
94 |
// modifiers |
|
95 |
void append(ResolveNode* dest) { _destinations.append(dest); } |
|
96 |
void set_assigned() { _assigned = true; } |
|
97 |
void set_visited() { _visited = true; } |
|
98 |
void set_start_node() { _start_node = true; } |
|
99 |
}; |
|
100 |
||
101 |
||
102 |
// This is shared state to be used by the PhiResolver so the operand |
|
103 |
// arrays don't have to be reallocated for reach resolution. |
|
104 |
class PhiResolverState: public CompilationResourceObj { |
|
105 |
friend class PhiResolver; |
|
106 |
||
107 |
private: |
|
108 |
NodeList _virtual_operands; // Nodes where the operand is a virtual register |
|
109 |
NodeList _other_operands; // Nodes where the operand is not a virtual register |
|
110 |
NodeList _vreg_table; // Mapping from virtual register to Node |
|
111 |
||
112 |
public: |
|
113 |
PhiResolverState() {} |
|
114 |
||
115 |
void reset(int max_vregs); |
|
116 |
}; |
|
117 |
||
118 |
||
119 |
// class used to move value of phi operand to phi function |
|
120 |
class PhiResolver: public CompilationResourceObj { |
|
121 |
private: |
|
122 |
LIRGenerator* _gen; |
|
123 |
PhiResolverState& _state; // temporary state cached by LIRGenerator |
|
124 |
||
125 |
ResolveNode* _loop; |
|
126 |
LIR_Opr _temp; |
|
127 |
||
128 |
// access to shared state arrays |
|
129 |
NodeList& virtual_operands() { return _state._virtual_operands; } |
|
130 |
NodeList& other_operands() { return _state._other_operands; } |
|
131 |
NodeList& vreg_table() { return _state._vreg_table; } |
|
132 |
||
133 |
ResolveNode* create_node(LIR_Opr opr, bool source); |
|
134 |
ResolveNode* source_node(LIR_Opr opr) { return create_node(opr, true); } |
|
135 |
ResolveNode* destination_node(LIR_Opr opr) { return create_node(opr, false); } |
|
136 |
||
137 |
void emit_move(LIR_Opr src, LIR_Opr dest); |
|
138 |
void move_to_temp(LIR_Opr src); |
|
139 |
void move_temp_to(LIR_Opr dest); |
|
140 |
void move(ResolveNode* src, ResolveNode* dest); |
|
141 |
||
142 |
LIRGenerator* gen() { |
|
143 |
return _gen; |
|
144 |
} |
|
145 |
||
146 |
public: |
|
147 |
PhiResolver(LIRGenerator* _lir_gen, int max_vregs); |
|
148 |
~PhiResolver(); |
|
149 |
||
150 |
void move(LIR_Opr src, LIR_Opr dest); |
|
151 |
}; |
|
152 |
||
153 |
||
154 |
// only the classes below belong in the same file |
|
155 |
class LIRGenerator: public InstructionVisitor, public BlockClosure { |
|
33462 | 156 |
// LIRGenerator should never get instatiated on the heap. |
157 |
private: |
|
158 |
void* operator new(size_t size) throw(); |
|
159 |
void* operator new[](size_t size) throw(); |
|
35117
3191066d12e0
8144850: C1: operator delete needs an implementation
mdoerr
parents:
35109
diff
changeset
|
160 |
void operator delete(void* p) { ShouldNotReachHere(); } |
3191066d12e0
8144850: C1: operator delete needs an implementation
mdoerr
parents:
35109
diff
changeset
|
161 |
void operator delete[](void* p) { ShouldNotReachHere(); } |
1374 | 162 |
|
1 | 163 |
Compilation* _compilation; |
164 |
ciMethod* _method; // method that we are compiling |
|
165 |
PhiResolverState _resolver_state; |
|
166 |
BlockBegin* _block; |
|
167 |
int _virtual_register_number; |
|
168 |
Values _instruction_for_operand; |
|
169 |
BitMap2D _vreg_flags; // flags which can be set on a per-vreg basis |
|
170 |
LIR_List* _lir; |
|
1374 | 171 |
BarrierSet* _bs; |
1 | 172 |
|
173 |
LIRGenerator* gen() { |
|
174 |
return this; |
|
175 |
} |
|
176 |
||
24933
c16c7a4ac386
8031994: java/lang/Character/CheckProp test times out
rbackman
parents:
24442
diff
changeset
|
177 |
void print_if_not_loaded(const NewInstance* new_instance) PRODUCT_RETURN; |
c16c7a4ac386
8031994: java/lang/Character/CheckProp test times out
rbackman
parents:
24442
diff
changeset
|
178 |
|
1 | 179 |
#ifdef ASSERT |
180 |
LIR_List* lir(const char * file, int line) const { |
|
181 |
_lir->set_file_and_line(file, line); |
|
182 |
return _lir; |
|
183 |
} |
|
184 |
#endif |
|
185 |
LIR_List* lir() const { |
|
186 |
return _lir; |
|
187 |
} |
|
188 |
||
189 |
// a simple cache of constants used within a block |
|
190 |
GrowableArray<LIR_Const*> _constants; |
|
191 |
LIR_OprList _reg_for_constants; |
|
192 |
Values _unpinned_constants; |
|
193 |
||
194 |
friend class PhiResolver; |
|
195 |
||
196 |
// unified bailout support |
|
197 |
void bailout(const char* msg) const { compilation()->bailout(msg); } |
|
198 |
bool bailed_out() const { return compilation()->bailed_out(); } |
|
199 |
||
200 |
void block_do_prolog(BlockBegin* block); |
|
201 |
void block_do_epilog(BlockBegin* block); |
|
202 |
||
203 |
// register allocation |
|
204 |
LIR_Opr rlock(Value instr); // lock a free register |
|
205 |
LIR_Opr rlock_result(Value instr); |
|
206 |
LIR_Opr rlock_result(Value instr, BasicType type); |
|
207 |
LIR_Opr rlock_byte(BasicType type); |
|
208 |
LIR_Opr rlock_callee_saved(BasicType type); |
|
209 |
||
210 |
// get a constant into a register and get track of what register was used |
|
211 |
LIR_Opr load_constant(Constant* x); |
|
212 |
LIR_Opr load_constant(LIR_Const* constant); |
|
213 |
||
6453 | 214 |
// Given an immediate value, return an operand usable in logical ops. |
215 |
LIR_Opr load_immediate(int x, BasicType type); |
|
216 |
||
1 | 217 |
void set_result(Value x, LIR_Opr opr) { |
218 |
assert(opr->is_valid(), "must set to valid value"); |
|
219 |
assert(x->operand()->is_illegal(), "operand should never change"); |
|
220 |
assert(!opr->is_register() || opr->is_virtual(), "should never set result to a physical register"); |
|
221 |
x->set_operand(opr); |
|
222 |
assert(opr == x->operand(), "must be"); |
|
223 |
if (opr->is_virtual()) { |
|
224 |
_instruction_for_operand.at_put_grow(opr->vreg_number(), x, NULL); |
|
225 |
} |
|
226 |
} |
|
227 |
void set_no_result(Value x) { assert(!x->has_uses(), "can't have use"); x->clear_operand(); } |
|
228 |
||
229 |
friend class LIRItem; |
|
230 |
||
231 |
LIR_Opr round_item(LIR_Opr opr); |
|
232 |
LIR_Opr force_to_spill(LIR_Opr value, BasicType t); |
|
233 |
||
234 |
PhiResolverState& resolver_state() { return _resolver_state; } |
|
235 |
||
236 |
void move_to_phi(PhiResolver* resolver, Value cur_val, Value sux_val); |
|
237 |
void move_to_phi(ValueStack* cur_state); |
|
238 |
||
239 |
// code emission |
|
240 |
void do_ArithmeticOp_Long (ArithmeticOp* x); |
|
241 |
void do_ArithmeticOp_Int (ArithmeticOp* x); |
|
242 |
void do_ArithmeticOp_FPU (ArithmeticOp* x); |
|
243 |
||
244 |
// platform dependent |
|
245 |
LIR_Opr getThreadPointer(); |
|
246 |
||
247 |
void do_RegisterFinalizer(Intrinsic* x); |
|
12949 | 248 |
void do_isInstance(Intrinsic* x); |
36552 | 249 |
void do_isPrimitive(Intrinsic* x); |
1 | 250 |
void do_getClass(Intrinsic* x); |
251 |
void do_currentThread(Intrinsic* x); |
|
252 |
void do_MathIntrinsic(Intrinsic* x); |
|
33465 | 253 |
void do_LibmIntrinsic(Intrinsic* x); |
1 | 254 |
void do_ArrayCopy(Intrinsic* x); |
255 |
void do_CompareAndSwap(Intrinsic* x, ValueType* type); |
|
256 |
void do_NIOCheckIndex(Intrinsic* x); |
|
257 |
void do_FPIntrinsics(Intrinsic* x); |
|
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8065
diff
changeset
|
258 |
void do_Reference_get(Intrinsic* x); |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17011
diff
changeset
|
259 |
void do_update_CRC32(Intrinsic* x); |
1 | 260 |
|
261 |
LIR_Opr call_runtime(BasicTypeArray* signature, LIRItemList* args, address entry, ValueType* result_type, CodeEmitInfo* info); |
|
262 |
LIR_Opr call_runtime(BasicTypeArray* signature, LIR_OprList* args, address entry, ValueType* result_type, CodeEmitInfo* info); |
|
263 |
||
264 |
// convenience functions |
|
265 |
LIR_Opr call_runtime(Value arg1, address entry, ValueType* result_type, CodeEmitInfo* info); |
|
266 |
LIR_Opr call_runtime(Value arg1, Value arg2, address entry, ValueType* result_type, CodeEmitInfo* info); |
|
267 |
||
268 |
// GC Barriers |
|
269 |
||
270 |
// generic interface |
|
271 |
||
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8065
diff
changeset
|
272 |
void pre_barrier(LIR_Opr addr_opr, LIR_Opr pre_val, bool do_load, bool patch, CodeEmitInfo* info); |
1 | 273 |
void post_barrier(LIR_OprDesc* addr, LIR_OprDesc* new_val); |
274 |
||
275 |
// specific implementations |
|
1374 | 276 |
// pre barriers |
277 |
||
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8065
diff
changeset
|
278 |
void G1SATBCardTableModRef_pre_barrier(LIR_Opr addr_opr, LIR_Opr pre_val, |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8065
diff
changeset
|
279 |
bool do_load, bool patch, CodeEmitInfo* info); |
1 | 280 |
|
281 |
// post barriers |
|
282 |
||
1374 | 283 |
void G1SATBCardTableModRef_post_barrier(LIR_OprDesc* addr, LIR_OprDesc* new_val); |
1 | 284 |
void CardTableModRef_post_barrier(LIR_OprDesc* addr, LIR_OprDesc* new_val); |
29474
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
28954
diff
changeset
|
285 |
#ifdef CARDTABLEMODREF_POST_BARRIER_HELPER |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
28954
diff
changeset
|
286 |
void CardTableModRef_post_barrier_helper(LIR_OprDesc* addr, LIR_Const* card_table_base); |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
28954
diff
changeset
|
287 |
#endif |
1 | 288 |
|
289 |
||
290 |
static LIR_Opr result_register_for(ValueType* type, bool callee = false); |
|
291 |
||
292 |
ciObject* get_jobject_constant(Value value); |
|
293 |
||
294 |
LIRItemList* invoke_visit_arguments(Invoke* x); |
|
295 |
void invoke_load_arguments(Invoke* x, LIRItemList* args, const LIR_OprList* arg_list); |
|
296 |
||
297 |
void trace_block_entry(BlockBegin* block); |
|
298 |
||
299 |
// volatile field operations are never patchable because a klass |
|
300 |
// must be loaded to know it's volatile which means that the offset |
|
301 |
// it always known as well. |
|
302 |
void volatile_field_store(LIR_Opr value, LIR_Address* address, CodeEmitInfo* info); |
|
303 |
void volatile_field_load(LIR_Address* address, LIR_Opr result, CodeEmitInfo* info); |
|
304 |
||
305 |
void put_Object_unsafe(LIR_Opr src, LIR_Opr offset, LIR_Opr data, BasicType type, bool is_volatile); |
|
306 |
void get_Object_unsafe(LIR_Opr dest, LIR_Opr src, LIR_Opr offset, BasicType type, bool is_volatile); |
|
307 |
||
308 |
void arithmetic_call_op (Bytecodes::Code code, LIR_Opr result, LIR_OprList* args); |
|
309 |
||
6453 | 310 |
void increment_counter(address counter, BasicType type, int step = 1); |
1 | 311 |
void increment_counter(LIR_Address* addr, int step = 1); |
312 |
||
313 |
// is_strictfp is only needed for mul and div (and only generates different code on i486) |
|
314 |
void arithmetic_op(Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, bool is_strictfp, LIR_Opr tmp, CodeEmitInfo* info = NULL); |
|
315 |
// machine dependent. returns true if it emitted code for the multiply |
|
316 |
bool strength_reduce_multiply(LIR_Opr left, int constant, LIR_Opr result, LIR_Opr tmp); |
|
317 |
||
318 |
void store_stack_parameter (LIR_Opr opr, ByteSize offset_from_sp_in_bytes); |
|
319 |
||
24933
c16c7a4ac386
8031994: java/lang/Character/CheckProp test times out
rbackman
parents:
24442
diff
changeset
|
320 |
void klass2reg_with_patching(LIR_Opr r, ciMetadata* obj, CodeEmitInfo* info, bool need_resolve = false); |
1 | 321 |
|
322 |
// this loads the length and compares against the index |
|
323 |
void array_range_check (LIR_Opr array, LIR_Opr index, CodeEmitInfo* null_check_info, CodeEmitInfo* range_check_info); |
|
324 |
// For java.nio.Buffer.checkIndex |
|
325 |
void nio_range_check (LIR_Opr buffer, LIR_Opr index, LIR_Opr result, CodeEmitInfo* info); |
|
326 |
||
327 |
void arithmetic_op_int (Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, LIR_Opr tmp); |
|
328 |
void arithmetic_op_long (Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, CodeEmitInfo* info = NULL); |
|
329 |
void arithmetic_op_fpu (Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, bool is_strictfp, LIR_Opr tmp = LIR_OprFact::illegalOpr); |
|
330 |
||
331 |
void shift_op (Bytecodes::Code code, LIR_Opr dst_reg, LIR_Opr value, LIR_Opr count, LIR_Opr tmp); |
|
332 |
||
333 |
void logic_op (Bytecodes::Code code, LIR_Opr dst_reg, LIR_Opr left, LIR_Opr right); |
|
334 |
||
335 |
void monitor_enter (LIR_Opr object, LIR_Opr lock, LIR_Opr hdr, LIR_Opr scratch, int monitor_no, CodeEmitInfo* info_for_exception, CodeEmitInfo* info); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
336 |
void monitor_exit (LIR_Opr object, LIR_Opr lock, LIR_Opr hdr, LIR_Opr scratch, int monitor_no); |
1 | 337 |
|
24933
c16c7a4ac386
8031994: java/lang/Character/CheckProp test times out
rbackman
parents:
24442
diff
changeset
|
338 |
void new_instance (LIR_Opr dst, ciInstanceKlass* klass, bool is_unresolved, LIR_Opr scratch1, LIR_Opr scratch2, LIR_Opr scratch3, LIR_Opr scratch4, LIR_Opr klass_reg, CodeEmitInfo* info); |
1 | 339 |
|
340 |
// machine dependent |
|
341 |
void cmp_mem_int(LIR_Condition condition, LIR_Opr base, int disp, int c, CodeEmitInfo* info); |
|
342 |
void cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Opr base, int disp, BasicType type, CodeEmitInfo* info); |
|
343 |
void cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Opr base, LIR_Opr disp, BasicType type, CodeEmitInfo* info); |
|
344 |
||
345 |
void arraycopy_helper(Intrinsic* x, int* flags, ciArrayKlass** expected_type); |
|
346 |
||
347 |
// returns a LIR_Address to address an array location. May also |
|
348 |
// emit some code as part of address calculation. If |
|
349 |
// needs_card_mark is true then compute the full address for use by |
|
350 |
// both the store and the card mark. |
|
351 |
LIR_Address* generate_address(LIR_Opr base, |
|
352 |
LIR_Opr index, int shift, |
|
353 |
int disp, |
|
354 |
BasicType type); |
|
355 |
LIR_Address* generate_address(LIR_Opr base, int disp, BasicType type) { |
|
356 |
return generate_address(base, LIR_OprFact::illegalOpr, 0, disp, type); |
|
357 |
} |
|
358 |
LIR_Address* emit_array_address(LIR_Opr array_opr, LIR_Opr index_opr, BasicType type, bool needs_card_mark); |
|
359 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
360 |
// the helper for generate_address |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
361 |
void add_large_constant(LIR_Opr src, int c, LIR_Opr dest); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
362 |
|
1 | 363 |
// machine preferences and characteristics |
364 |
bool can_inline_as_constant(Value i) const; |
|
365 |
bool can_inline_as_constant(LIR_Const* c) const; |
|
366 |
bool can_store_as_constant(Value i, BasicType type) const; |
|
367 |
||
368 |
LIR_Opr safepoint_poll_register(); |
|
6453 | 369 |
|
370 |
void profile_branch(If* if_instr, If::Condition cond); |
|
371 |
void increment_event_counter_impl(CodeEmitInfo* info, |
|
372 |
ciMethod *method, int frequency, |
|
373 |
int bci, bool backedge, bool notify); |
|
374 |
void increment_event_counter(CodeEmitInfo* info, int bci, bool backedge); |
|
375 |
void increment_invocation_counter(CodeEmitInfo *info) { |
|
376 |
if (compilation()->count_invocations()) { |
|
377 |
increment_event_counter(info, InvocationEntryBci, false); |
|
378 |
} |
|
379 |
} |
|
380 |
void increment_backedge_counter(CodeEmitInfo* info, int bci) { |
|
381 |
if (compilation()->count_backedges()) { |
|
382 |
increment_event_counter(info, bci, true); |
|
383 |
} |
|
1 | 384 |
} |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
21579
diff
changeset
|
385 |
void decrement_age(CodeEmitInfo* info); |
1 | 386 |
CodeEmitInfo* state_for(Instruction* x, ValueStack* state, bool ignore_xhandler = false); |
387 |
CodeEmitInfo* state_for(Instruction* x); |
|
388 |
||
389 |
// allocates a virtual register for this instruction if |
|
390 |
// one isn't already allocated. Only for Phi and Local. |
|
391 |
LIR_Opr operand_for_instruction(Instruction *x); |
|
392 |
||
393 |
void set_block(BlockBegin* block) { _block = block; } |
|
394 |
||
395 |
void block_prolog(BlockBegin* block); |
|
396 |
void block_epilog(BlockBegin* block); |
|
397 |
||
398 |
void do_root (Instruction* instr); |
|
399 |
void walk (Instruction* instr); |
|
400 |
||
401 |
void bind_block_entry(BlockBegin* block); |
|
402 |
void start_block(BlockBegin* block); |
|
403 |
||
404 |
LIR_Opr new_register(BasicType type); |
|
405 |
LIR_Opr new_register(Value value) { return new_register(as_BasicType(value->type())); } |
|
406 |
LIR_Opr new_register(ValueType* type) { return new_register(as_BasicType(type)); } |
|
407 |
||
408 |
// returns a register suitable for doing pointer math |
|
409 |
LIR_Opr new_pointer_register() { |
|
410 |
#ifdef _LP64 |
|
411 |
return new_register(T_LONG); |
|
412 |
#else |
|
413 |
return new_register(T_INT); |
|
414 |
#endif |
|
415 |
} |
|
416 |
||
417 |
static LIR_Condition lir_cond(If::Condition cond) { |
|
33589
7cbd1b2c139b
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents:
33089
diff
changeset
|
418 |
LIR_Condition l = lir_cond_unknown; |
1 | 419 |
switch (cond) { |
420 |
case If::eql: l = lir_cond_equal; break; |
|
421 |
case If::neq: l = lir_cond_notEqual; break; |
|
422 |
case If::lss: l = lir_cond_less; break; |
|
423 |
case If::leq: l = lir_cond_lessEqual; break; |
|
424 |
case If::geq: l = lir_cond_greaterEqual; break; |
|
425 |
case If::gtr: l = lir_cond_greater; break; |
|
16611 | 426 |
case If::aeq: l = lir_cond_aboveEqual; break; |
427 |
case If::beq: l = lir_cond_belowEqual; break; |
|
33589
7cbd1b2c139b
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents:
33089
diff
changeset
|
428 |
default: fatal("You must pass valid If::Condition"); |
1 | 429 |
}; |
430 |
return l; |
|
431 |
} |
|
432 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
433 |
#ifdef __SOFTFP__ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
434 |
void do_soft_float_compare(If *x); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
435 |
#endif // __SOFTFP__ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
436 |
|
1 | 437 |
void init(); |
438 |
||
439 |
SwitchRangeArray* create_lookup_ranges(TableSwitch* x); |
|
440 |
SwitchRangeArray* create_lookup_ranges(LookupSwitch* x); |
|
441 |
void do_SwitchRanges(SwitchRangeArray* x, LIR_Opr value, BlockBegin* default_sux); |
|
442 |
||
35109
92535200db7d
8143817: C1: Platform dependent stack space not preserved for all runtime calls
mdoerr
parents:
34201
diff
changeset
|
443 |
void do_RuntimeCall(address routine, Intrinsic* x); |
36384 | 444 |
|
21579
c396d68f3e48
8027631: "unexpected profiling mismatch" error with new type profiling
roland
parents:
21095
diff
changeset
|
445 |
ciKlass* profile_type(ciMethodData* md, int md_first_offset, int md_offset, intptr_t profiled_k, |
c396d68f3e48
8027631: "unexpected profiling mismatch" error with new type profiling
roland
parents:
21095
diff
changeset
|
446 |
Value arg, LIR_Opr& mdp, bool not_null, ciKlass* signature_at_call_k, |
c396d68f3e48
8027631: "unexpected profiling mismatch" error with new type profiling
roland
parents:
21095
diff
changeset
|
447 |
ciKlass* callee_signature_k); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
18507
diff
changeset
|
448 |
void profile_arguments(ProfileCall* x); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
449 |
void profile_parameters(Base* x); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
450 |
void profile_parameters_at_call(ProfileCall* x); |
12377
ae6def2813e0
7160570: Intrinsification support for tracing framework
rbackman
parents:
11886
diff
changeset
|
451 |
|
1 | 452 |
public: |
453 |
Compilation* compilation() const { return _compilation; } |
|
454 |
FrameMap* frame_map() const { return _compilation->frame_map(); } |
|
455 |
ciMethod* method() const { return _method; } |
|
456 |
BlockBegin* block() const { return _block; } |
|
457 |
IRScope* scope() const { return block()->scope(); } |
|
458 |
||
459 |
int max_virtual_register_number() const { return _virtual_register_number; } |
|
460 |
||
461 |
void block_do(BlockBegin* block); |
|
462 |
||
463 |
// Flags that can be set on vregs |
|
464 |
enum VregFlag { |
|
465 |
must_start_in_memory = 0 // needs to be assigned a memory location at beginning, but may then be loaded in a register |
|
466 |
, callee_saved = 1 // must be in a callee saved register |
|
467 |
, byte_reg = 2 // must be in a byte register |
|
468 |
, num_vreg_flags |
|
469 |
||
470 |
}; |
|
471 |
||
472 |
LIRGenerator(Compilation* compilation, ciMethod* method) |
|
473 |
: _compilation(compilation) |
|
474 |
, _method(method) |
|
475 |
, _virtual_register_number(LIR_OprDesc::vreg_base) |
|
476 |
, _vreg_flags(NULL, 0, num_vreg_flags) { |
|
477 |
init(); |
|
478 |
} |
|
479 |
||
480 |
// for virtual registers, maps them back to Phi's or Local's |
|
481 |
Instruction* instruction_for_opr(LIR_Opr opr); |
|
482 |
Instruction* instruction_for_vreg(int reg_num); |
|
483 |
||
484 |
void set_vreg_flag (int vreg_num, VregFlag f); |
|
485 |
bool is_vreg_flag_set(int vreg_num, VregFlag f); |
|
486 |
void set_vreg_flag (LIR_Opr opr, VregFlag f) { set_vreg_flag(opr->vreg_number(), f); } |
|
487 |
bool is_vreg_flag_set(LIR_Opr opr, VregFlag f) { return is_vreg_flag_set(opr->vreg_number(), f); } |
|
488 |
||
489 |
// statics |
|
490 |
static LIR_Opr exceptionOopOpr(); |
|
491 |
static LIR_Opr exceptionPcOpr(); |
|
492 |
static LIR_Opr divInOpr(); |
|
493 |
static LIR_Opr divOutOpr(); |
|
494 |
static LIR_Opr remOutOpr(); |
|
495 |
static LIR_Opr shiftCountOpr(); |
|
34201
2de6f3566659
8138895: C1: PPC64 Port needs special register for Locks in synchronization code
mdoerr
parents:
33626
diff
changeset
|
496 |
LIR_Opr syncLockOpr(); |
1 | 497 |
LIR_Opr syncTempOpr(); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
498 |
LIR_Opr atomicLockOpr(); |
1 | 499 |
|
500 |
// returns a register suitable for saving the thread in a |
|
501 |
// call_runtime_leaf if one is needed. |
|
502 |
LIR_Opr getThreadTemp(); |
|
503 |
||
504 |
// visitor functionality |
|
505 |
virtual void do_Phi (Phi* x); |
|
506 |
virtual void do_Local (Local* x); |
|
507 |
virtual void do_Constant (Constant* x); |
|
508 |
virtual void do_LoadField (LoadField* x); |
|
509 |
virtual void do_StoreField (StoreField* x); |
|
510 |
virtual void do_ArrayLength (ArrayLength* x); |
|
511 |
virtual void do_LoadIndexed (LoadIndexed* x); |
|
512 |
virtual void do_StoreIndexed (StoreIndexed* x); |
|
513 |
virtual void do_NegateOp (NegateOp* x); |
|
514 |
virtual void do_ArithmeticOp (ArithmeticOp* x); |
|
515 |
virtual void do_ShiftOp (ShiftOp* x); |
|
516 |
virtual void do_LogicOp (LogicOp* x); |
|
517 |
virtual void do_CompareOp (CompareOp* x); |
|
518 |
virtual void do_IfOp (IfOp* x); |
|
519 |
virtual void do_Convert (Convert* x); |
|
520 |
virtual void do_NullCheck (NullCheck* x); |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12957
diff
changeset
|
521 |
virtual void do_TypeCast (TypeCast* x); |
1 | 522 |
virtual void do_Invoke (Invoke* x); |
523 |
virtual void do_NewInstance (NewInstance* x); |
|
524 |
virtual void do_NewTypeArray (NewTypeArray* x); |
|
525 |
virtual void do_NewObjectArray (NewObjectArray* x); |
|
526 |
virtual void do_NewMultiArray (NewMultiArray* x); |
|
527 |
virtual void do_CheckCast (CheckCast* x); |
|
528 |
virtual void do_InstanceOf (InstanceOf* x); |
|
529 |
virtual void do_MonitorEnter (MonitorEnter* x); |
|
530 |
virtual void do_MonitorExit (MonitorExit* x); |
|
531 |
virtual void do_Intrinsic (Intrinsic* x); |
|
532 |
virtual void do_BlockBegin (BlockBegin* x); |
|
533 |
virtual void do_Goto (Goto* x); |
|
534 |
virtual void do_If (If* x); |
|
535 |
virtual void do_IfInstanceOf (IfInstanceOf* x); |
|
536 |
virtual void do_TableSwitch (TableSwitch* x); |
|
537 |
virtual void do_LookupSwitch (LookupSwitch* x); |
|
538 |
virtual void do_Return (Return* x); |
|
539 |
virtual void do_Throw (Throw* x); |
|
540 |
virtual void do_Base (Base* x); |
|
541 |
virtual void do_OsrEntry (OsrEntry* x); |
|
542 |
virtual void do_ExceptionObject(ExceptionObject* x); |
|
543 |
virtual void do_RoundFP (RoundFP* x); |
|
544 |
virtual void do_UnsafeGetRaw (UnsafeGetRaw* x); |
|
545 |
virtual void do_UnsafePutRaw (UnsafePutRaw* x); |
|
546 |
virtual void do_UnsafeGetObject(UnsafeGetObject* x); |
|
547 |
virtual void do_UnsafePutObject(UnsafePutObject* x); |
|
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
13728
diff
changeset
|
548 |
virtual void do_UnsafeGetAndSetObject(UnsafeGetAndSetObject* x); |
1 | 549 |
virtual void do_ProfileCall (ProfileCall* x); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
550 |
virtual void do_ProfileReturnType (ProfileReturnType* x); |
6453 | 551 |
virtual void do_ProfileInvoke (ProfileInvoke* x); |
8065
7ca689ce3d32
6809483: hotspot:::method_entry are not correctly generated for "method()V"
never
parents:
7397
diff
changeset
|
552 |
virtual void do_RuntimeCall (RuntimeCall* x); |
11886
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
9176
diff
changeset
|
553 |
virtual void do_MemBar (MemBar* x); |
16611 | 554 |
virtual void do_RangeCheckPredicate(RangeCheckPredicate* x); |
17011
def8879c5b81
8011648: C1: optimized build is broken after 7153771
roland
parents:
16611
diff
changeset
|
555 |
#ifdef ASSERT |
16611 | 556 |
virtual void do_Assert (Assert* x); |
17011
def8879c5b81
8011648: C1: optimized build is broken after 7153771
roland
parents:
16611
diff
changeset
|
557 |
#endif |
29474
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
28954
diff
changeset
|
558 |
|
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
28954
diff
changeset
|
559 |
#ifdef C1_LIRGENERATOR_MD_HPP |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
28954
diff
changeset
|
560 |
#include C1_LIRGENERATOR_MD_HPP |
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
28954
diff
changeset
|
561 |
#endif |
1 | 562 |
}; |
563 |
||
564 |
||
565 |
class LIRItem: public CompilationResourceObj { |
|
566 |
private: |
|
567 |
Value _value; |
|
568 |
LIRGenerator* _gen; |
|
569 |
LIR_Opr _result; |
|
570 |
bool _destroys_register; |
|
571 |
LIR_Opr _new_result; |
|
572 |
||
573 |
LIRGenerator* gen() const { return _gen; } |
|
574 |
||
575 |
public: |
|
576 |
LIRItem(Value value, LIRGenerator* gen) { |
|
577 |
_destroys_register = false; |
|
578 |
_gen = gen; |
|
579 |
set_instruction(value); |
|
580 |
} |
|
581 |
||
582 |
LIRItem(LIRGenerator* gen) { |
|
583 |
_destroys_register = false; |
|
584 |
_gen = gen; |
|
585 |
_result = LIR_OprFact::illegalOpr; |
|
586 |
set_instruction(NULL); |
|
587 |
} |
|
588 |
||
589 |
void set_instruction(Value value) { |
|
590 |
_value = value; |
|
591 |
_result = LIR_OprFact::illegalOpr; |
|
592 |
if (_value != NULL) { |
|
593 |
_gen->walk(_value); |
|
594 |
_result = _value->operand(); |
|
595 |
} |
|
596 |
_new_result = LIR_OprFact::illegalOpr; |
|
597 |
} |
|
598 |
||
599 |
Value value() const { return _value; } |
|
600 |
ValueType* type() const { return value()->type(); } |
|
601 |
LIR_Opr result() { |
|
602 |
assert(!_destroys_register || (!_result->is_register() || _result->is_virtual()), |
|
603 |
"shouldn't use set_destroys_register with physical regsiters"); |
|
604 |
if (_destroys_register && _result->is_register()) { |
|
605 |
if (_new_result->is_illegal()) { |
|
606 |
_new_result = _gen->new_register(type()); |
|
607 |
gen()->lir()->move(_result, _new_result); |
|
608 |
} |
|
609 |
return _new_result; |
|
610 |
} else { |
|
611 |
return _result; |
|
612 |
} |
|
613 |
return _result; |
|
614 |
} |
|
615 |
||
616 |
void set_result(LIR_Opr opr); |
|
617 |
||
618 |
void load_item(); |
|
619 |
void load_byte_item(); |
|
620 |
void load_nonconstant(); |
|
621 |
// load any values which can't be expressed as part of a single store instruction |
|
622 |
void load_for_store(BasicType store_type); |
|
623 |
void load_item_force(LIR_Opr reg); |
|
624 |
||
625 |
void dont_load_item() { |
|
626 |
// do nothing |
|
627 |
} |
|
628 |
||
629 |
void set_destroys_register() { |
|
630 |
_destroys_register = true; |
|
631 |
} |
|
632 |
||
633 |
bool is_constant() const { return value()->as_Constant() != NULL; } |
|
634 |
bool is_stack() { return result()->is_stack(); } |
|
635 |
bool is_register() { return result()->is_register(); } |
|
636 |
||
637 |
ciObject* get_jobject_constant() const; |
|
638 |
jint get_jint_constant() const; |
|
639 |
jlong get_jlong_constant() const; |
|
640 |
jfloat get_jfloat_constant() const; |
|
641 |
jdouble get_jdouble_constant() const; |
|
642 |
jint get_address_constant() const; |
|
643 |
}; |
|
7397 | 644 |
|
645 |
#endif // SHARE_VM_C1_C1_LIRGENERATOR_HPP |