author | kvn |
Fri, 20 Jul 2018 11:55:05 -0700 | |
changeset 51178 | 416a76fe8067 |
parent 50102 | 454fa295105c |
child 51519 | ecb650023e28 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49906 | 2 |
* Copyright (c) 2000, 2018, 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:
5334
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5334
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:
5334
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_C1_C1_LIRASSEMBLER_HPP |
26 |
#define SHARE_VM_C1_C1_LIRASSEMBLER_HPP |
|
27 |
||
28 |
#include "c1/c1_CodeStubs.hpp" |
|
29 |
#include "ci/ciMethodData.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11886
diff
changeset
|
30 |
#include "oops/methodData.hpp" |
40010 | 31 |
#include "utilities/macros.hpp" |
7397 | 32 |
|
1 | 33 |
class Compilation; |
34 |
class ScopeValue; |
|
1374 | 35 |
class BarrierSet; |
1 | 36 |
|
37 |
class LIR_Assembler: public CompilationResourceObj { |
|
38 |
private: |
|
39 |
C1_MacroAssembler* _masm; |
|
40 |
CodeStubList* _slow_case_stubs; |
|
1374 | 41 |
BarrierSet* _bs; |
1 | 42 |
|
43 |
Compilation* _compilation; |
|
44 |
FrameMap* _frame_map; |
|
45 |
BlockBegin* _current_block; |
|
46 |
||
47 |
Instruction* _pending_non_safepoint; |
|
48 |
int _pending_non_safepoint_offset; |
|
49 |
||
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5052
diff
changeset
|
50 |
Label _unwind_handler_entry; |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5052
diff
changeset
|
51 |
|
1 | 52 |
#ifdef ASSERT |
53 |
BlockList _branch_target_blocks; |
|
54 |
void check_no_unbound_labels(); |
|
55 |
#endif |
|
56 |
||
57 |
FrameMap* frame_map() const { return _frame_map; } |
|
58 |
||
59 |
void set_current_block(BlockBegin* b) { _current_block = b; } |
|
60 |
BlockBegin* current_block() const { return _current_block; } |
|
61 |
||
62 |
// non-safepoint debug info management |
|
63 |
void flush_debug_info(int before_pc_offset) { |
|
64 |
if (_pending_non_safepoint != NULL) { |
|
65 |
if (_pending_non_safepoint_offset < before_pc_offset) |
|
66 |
record_non_safepoint_debug_info(); |
|
67 |
_pending_non_safepoint = NULL; |
|
68 |
} |
|
69 |
} |
|
70 |
void process_debug_info(LIR_Op* op); |
|
71 |
void record_non_safepoint_debug_info(); |
|
72 |
||
73 |
// unified bailout support |
|
51178
416a76fe8067
8206075: On x86, assert on unbound assembler Labels used as branch targets
kvn
parents:
50102
diff
changeset
|
74 |
void bailout(const char* msg) { |
416a76fe8067
8206075: On x86, assert on unbound assembler Labels used as branch targets
kvn
parents:
50102
diff
changeset
|
75 |
// reset the label in case it hits assertion in destructor. |
416a76fe8067
8206075: On x86, assert on unbound assembler Labels used as branch targets
kvn
parents:
50102
diff
changeset
|
76 |
_unwind_handler_entry.reset(); |
416a76fe8067
8206075: On x86, assert on unbound assembler Labels used as branch targets
kvn
parents:
50102
diff
changeset
|
77 |
compilation()->bailout(msg); |
416a76fe8067
8206075: On x86, assert on unbound assembler Labels used as branch targets
kvn
parents:
50102
diff
changeset
|
78 |
} |
1 | 79 |
bool bailed_out() const { return compilation()->bailed_out(); } |
80 |
||
81 |
// code emission patterns and accessors |
|
82 |
void check_codespace(); |
|
83 |
bool needs_icache(ciMethod* method) const; |
|
84 |
||
85 |
// returns offset of icache check |
|
86 |
int check_icache(); |
|
87 |
||
88 |
void jobject2reg(jobject o, Register reg); |
|
89 |
void jobject2reg_with_patching(Register reg, CodeEmitInfo* info); |
|
90 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11886
diff
changeset
|
91 |
void metadata2reg(Metadata* o, Register reg); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11886
diff
changeset
|
92 |
void klass2reg_with_patching(Register reg, CodeEmitInfo* info); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11886
diff
changeset
|
93 |
|
1 | 94 |
void emit_stubs(CodeStubList* stub_list); |
95 |
||
96 |
// addresses |
|
1066 | 97 |
Address as_Address(LIR_Address* addr); |
98 |
Address as_Address_lo(LIR_Address* addr); |
|
99 |
Address as_Address_hi(LIR_Address* addr); |
|
1 | 100 |
|
101 |
// debug information |
|
5687 | 102 |
void add_call_info(int pc_offset, CodeEmitInfo* cinfo); |
1 | 103 |
void add_debug_info_for_branch(CodeEmitInfo* info); |
104 |
void add_debug_info_for_div0(int pc_offset, CodeEmitInfo* cinfo); |
|
105 |
void add_debug_info_for_div0_here(CodeEmitInfo* info); |
|
34220 | 106 |
ImplicitNullCheckStub* add_debug_info_for_null_check(int pc_offset, CodeEmitInfo* cinfo); |
107 |
ImplicitNullCheckStub* add_debug_info_for_null_check_here(CodeEmitInfo* info); |
|
1 | 108 |
|
109 |
void set_24bit_FPU(); |
|
110 |
void reset_FPU(); |
|
111 |
void fpop(); |
|
112 |
void fxch(int i); |
|
113 |
void fld(int i); |
|
114 |
void ffree(int i); |
|
115 |
||
116 |
void breakpoint(); |
|
117 |
void push(LIR_Opr opr); |
|
118 |
void pop(LIR_Opr opr); |
|
119 |
||
120 |
// patching |
|
121 |
void append_patching_stub(PatchingStub* stub); |
|
122 |
void patching_epilog(PatchingStub* patch, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info); |
|
123 |
||
124 |
void comp_op(LIR_Condition condition, LIR_Opr src, LIR_Opr result, LIR_Op2* op); |
|
125 |
||
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
18507
diff
changeset
|
126 |
PatchingStub::PatchID patching_id(CodeEmitInfo* info); |
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
18507
diff
changeset
|
127 |
|
1 | 128 |
public: |
129 |
LIR_Assembler(Compilation* c); |
|
130 |
~LIR_Assembler(); |
|
131 |
C1_MacroAssembler* masm() const { return _masm; } |
|
132 |
Compilation* compilation() const { return _compilation; } |
|
133 |
ciMethod* method() const { return compilation()->method(); } |
|
134 |
||
135 |
CodeOffsets* offsets() const { return _compilation->offsets(); } |
|
136 |
int code_offset() const; |
|
137 |
address pc() const; |
|
138 |
||
24018
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
20702
diff
changeset
|
139 |
int initial_frame_size_in_bytes() const; |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
20702
diff
changeset
|
140 |
int bang_size_in_bytes() const; |
1 | 141 |
|
142 |
// test for constants which can be encoded directly in instructions |
|
143 |
static bool is_small_constant(LIR_Opr opr); |
|
144 |
||
145 |
static LIR_Opr receiverOpr(); |
|
146 |
static LIR_Opr osrBufferPointer(); |
|
147 |
||
148 |
// stubs |
|
149 |
void emit_slow_case_stubs(); |
|
150 |
void emit_static_call_stub(); |
|
24669 | 151 |
void append_code_stub(CodeStub* op); |
1 | 152 |
void add_call_info_here(CodeEmitInfo* info) { add_call_info(code_offset(), info); } |
153 |
||
154 |
// code patterns |
|
4752 | 155 |
int emit_exception_handler(); |
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5052
diff
changeset
|
156 |
int emit_unwind_handler(); |
1 | 157 |
void emit_exception_entries(ExceptionInfoList* info_list); |
4752 | 158 |
int emit_deopt_handler(); |
1 | 159 |
|
160 |
void emit_code(BlockList* hir); |
|
161 |
void emit_block(BlockBegin* block); |
|
162 |
void emit_lir_list(LIR_List* list); |
|
163 |
||
164 |
// any last minute peephole optimizations are performed here. In |
|
165 |
// particular sparc uses this for delay slot filling. |
|
166 |
void peephole(LIR_List* list); |
|
167 |
||
168 |
void return_op(LIR_Opr result); |
|
169 |
||
170 |
// returns offset of poll instruction |
|
171 |
int safepoint_poll(LIR_Opr result, CodeEmitInfo* info); |
|
172 |
||
173 |
void const2reg (LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code, CodeEmitInfo* info); |
|
174 |
void const2stack(LIR_Opr src, LIR_Opr dest); |
|
7427 | 175 |
void const2mem (LIR_Opr src, LIR_Opr dest, BasicType type, CodeEmitInfo* info, bool wide); |
1 | 176 |
void reg2stack (LIR_Opr src, LIR_Opr dest, BasicType type, bool pop_fpu_stack); |
177 |
void reg2reg (LIR_Opr src, LIR_Opr dest); |
|
7427 | 178 |
void reg2mem (LIR_Opr src, LIR_Opr dest, BasicType type, |
179 |
LIR_PatchCode patch_code, CodeEmitInfo* info, |
|
180 |
bool pop_fpu_stack, bool wide, bool unaligned); |
|
1 | 181 |
void stack2reg (LIR_Opr src, LIR_Opr dest, BasicType type); |
182 |
void stack2stack(LIR_Opr src, LIR_Opr dest, BasicType type); |
|
183 |
void mem2reg (LIR_Opr src, LIR_Opr dest, BasicType type, |
|
7427 | 184 |
LIR_PatchCode patch_code, |
185 |
CodeEmitInfo* info, bool wide, bool unaligned); |
|
1 | 186 |
|
187 |
void shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp); |
|
188 |
void shift_op(LIR_Code code, LIR_Opr left, jint count, LIR_Opr dest); |
|
189 |
||
190 |
void move_regs(Register from_reg, Register to_reg); |
|
191 |
void swap_reg(Register a, Register b); |
|
192 |
||
193 |
void emit_op0(LIR_Op0* op); |
|
194 |
void emit_op1(LIR_Op1* op); |
|
195 |
void emit_op2(LIR_Op2* op); |
|
196 |
void emit_op3(LIR_Op3* op); |
|
197 |
void emit_opBranch(LIR_OpBranch* op); |
|
198 |
void emit_opLabel(LIR_OpLabel* op); |
|
199 |
void emit_arraycopy(LIR_OpArrayCopy* op); |
|
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
16611
diff
changeset
|
200 |
void emit_updatecrc32(LIR_OpUpdateCRC32* op); |
1 | 201 |
void emit_opConvert(LIR_OpConvert* op); |
202 |
void emit_alloc_obj(LIR_OpAllocObj* op); |
|
203 |
void emit_alloc_array(LIR_OpAllocArray* op); |
|
204 |
void emit_opTypeCheck(LIR_OpTypeCheck* op); |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6453
diff
changeset
|
205 |
void emit_typecheck_helper(LIR_OpTypeCheck *op, Label* success, Label* failure, Label* obj_is_null); |
1 | 206 |
void emit_compare_and_swap(LIR_OpCompareAndSwap* op); |
207 |
void emit_lock(LIR_OpLock* op); |
|
208 |
void emit_call(LIR_OpJavaCall* op); |
|
209 |
void emit_rtcall(LIR_OpRTCall* op); |
|
210 |
void emit_profile_call(LIR_OpProfileCall* op); |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
19710
diff
changeset
|
211 |
void emit_profile_type(LIR_OpProfileType* op); |
1 | 212 |
void emit_delay(LIR_OpDelay* op); |
213 |
||
214 |
void arith_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest, CodeEmitInfo* info, bool pop_fpu_stack); |
|
215 |
void arithmetic_idiv(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr temp, LIR_Opr result, CodeEmitInfo* info); |
|
216 |
void intrinsic_op(LIR_Code code, LIR_Opr value, LIR_Opr unused, LIR_Opr dest, LIR_Op* op); |
|
16611 | 217 |
#ifdef ASSERT |
218 |
void emit_assert(LIR_OpAssert* op); |
|
219 |
#endif |
|
1 | 220 |
|
221 |
void logic_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest); |
|
222 |
||
223 |
void roundfp_op(LIR_Opr src, LIR_Opr tmp, LIR_Opr dest, bool pop_fpu_stack); |
|
224 |
void move_op(LIR_Opr src, LIR_Opr result, BasicType type, |
|
7427 | 225 |
LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool unaligned, bool wide); |
1 | 226 |
void volatile_move_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info); |
227 |
void comp_mem_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info); // info set for null exceptions |
|
228 |
void comp_fl2i(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr result, LIR_Op2* op); |
|
7713
1e06d2419258
7009231: C1: Incorrect CAS code for longs on SPARC 32bit
iveresov
parents:
7427
diff
changeset
|
229 |
void cmove(LIR_Condition code, LIR_Opr left, LIR_Opr right, LIR_Opr result, BasicType type); |
1 | 230 |
|
5046 | 231 |
void call( LIR_OpJavaCall* op, relocInfo::relocType rtype); |
232 |
void ic_call( LIR_OpJavaCall* op); |
|
233 |
void vtable_call( LIR_OpJavaCall* op); |
|
234 |
||
1 | 235 |
void osr_entry(); |
236 |
||
237 |
void build_frame(); |
|
238 |
||
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5052
diff
changeset
|
239 |
void throw_op(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5052
diff
changeset
|
240 |
void unwind_op(LIR_Opr exceptionOop); |
1 | 241 |
void monitor_address(int monitor_ix, LIR_Opr dst); |
242 |
||
243 |
void align_backward_branch_target(); |
|
244 |
void align_call(LIR_Code code); |
|
245 |
||
246 |
void negate(LIR_Opr left, LIR_Opr dest); |
|
50102 | 247 |
void leal(LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code, CodeEmitInfo* info); |
1 | 248 |
|
249 |
void rt_call(LIR_Opr result, address dest, const LIR_OprList* args, LIR_Opr tmp, CodeEmitInfo* info); |
|
250 |
||
251 |
void membar(); |
|
252 |
void membar_acquire(); |
|
253 |
void membar_release(); |
|
11886
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
10508
diff
changeset
|
254 |
void membar_loadload(); |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
10508
diff
changeset
|
255 |
void membar_storestore(); |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
10508
diff
changeset
|
256 |
void membar_loadstore(); |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
10508
diff
changeset
|
257 |
void membar_storeload(); |
38017
55047d16f141
8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents:
34220
diff
changeset
|
258 |
void on_spin_wait(); |
1 | 259 |
void get_thread(LIR_Opr result); |
260 |
||
261 |
void verify_oop_map(CodeEmitInfo* info); |
|
262 |
||
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
13728
diff
changeset
|
263 |
void atomic_op(LIR_Code code, LIR_Opr src, LIR_Opr data, LIR_Opr dest, LIR_Opr tmp); |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
13728
diff
changeset
|
264 |
|
40010 | 265 |
#include CPU_HEADER(c1_LIRAssembler) |
7397 | 266 |
|
49906 | 267 |
public: |
268 |
||
42650 | 269 |
static int call_stub_size() { |
270 |
if (UseAOT) { |
|
271 |
return _call_stub_size + _call_aot_stub_size; |
|
272 |
} else { |
|
273 |
return _call_stub_size; |
|
274 |
} |
|
275 |
} |
|
276 |
||
277 |
static int exception_handler_size() { |
|
278 |
return _exception_handler_size; |
|
279 |
} |
|
280 |
||
281 |
static int deopt_handler_size() { |
|
282 |
return _deopt_handler_size; |
|
283 |
} |
|
1 | 284 |
}; |
7397 | 285 |
|
286 |
#endif // SHARE_VM_C1_C1_LIRASSEMBLER_HPP |