annotate src/share/vm/c1/c1_LIRAssembler.hpp @ 4966:701a83c86f28

7120481: storeStore barrier in constructor with final field Summary: Issue storestore barrier before constructor return if the constructor write final field. Reviewed-by: dholmes, jrose, roland, coleenp Contributed-by: Jiangli Zhou <jiangli.zhou@oracle.com>
author jiangli
date Tue, 21 Feb 2012 13:14:55 -0500
parents c124e2e7463e
children da91efe96a93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2192
diff changeset
2 * Copyright (c) 2000, 2011, 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: 1378
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1378
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: 1378
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: 1791
diff changeset
25 #ifndef SHARE_VM_C1_C1_LIRASSEMBLER_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
26 #define SHARE_VM_C1_C1_LIRASSEMBLER_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
28 #include "c1/c1_CodeStubs.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
29 #include "ci/ciMethodData.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
30 #include "oops/methodDataOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
31 #include "utilities/top.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
32
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class Compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class ScopeValue;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
35 class BarrierSet;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 class LIR_Assembler: public CompilationResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
39 C1_MacroAssembler* _masm;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 CodeStubList* _slow_case_stubs;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
41 BarrierSet* _bs;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 Compilation* _compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 FrameMap* _frame_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 BlockBegin* _current_block;
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 Instruction* _pending_non_safepoint;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 int _pending_non_safepoint_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
49
1378
9f5b60a14736 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 1301
diff changeset
50 Label _unwind_handler_entry;
9f5b60a14736 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 1301
diff changeset
51
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
53 BlockList _branch_target_blocks;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 void check_no_unbound_labels();
a61af66fc99e Initial load
duke
parents:
diff changeset
55 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 FrameMap* frame_map() const { return _frame_map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 void set_current_block(BlockBegin* b) { _current_block = b; }
a61af66fc99e Initial load
duke
parents:
diff changeset
60 BlockBegin* current_block() const { return _current_block; }
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // non-safepoint debug info management
a61af66fc99e Initial load
duke
parents:
diff changeset
63 void flush_debug_info(int before_pc_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 if (_pending_non_safepoint != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 if (_pending_non_safepoint_offset < before_pc_offset)
a61af66fc99e Initial load
duke
parents:
diff changeset
66 record_non_safepoint_debug_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
67 _pending_non_safepoint = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void process_debug_info(LIR_Op* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 void record_non_safepoint_debug_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // unified bailout support
a61af66fc99e Initial load
duke
parents:
diff changeset
74 void bailout(const char* msg) const { compilation()->bailout(msg); }
a61af66fc99e Initial load
duke
parents:
diff changeset
75 bool bailed_out() const { return compilation()->bailed_out(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // code emission patterns and accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
78 void check_codespace();
a61af66fc99e Initial load
duke
parents:
diff changeset
79 bool needs_icache(ciMethod* method) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // returns offset of icache check
a61af66fc99e Initial load
duke
parents:
diff changeset
82 int check_icache();
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 void jobject2reg(jobject o, Register reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 void jobject2reg_with_patching(Register reg, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 void emit_stubs(CodeStubList* stub_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // addresses
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
90 Address as_Address(LIR_Address* addr);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
91 Address as_Address_lo(LIR_Address* addr);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
92 Address as_Address_hi(LIR_Address* addr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // debug information
1564
61b2245abf36 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 1378
diff changeset
95 void add_call_info(int pc_offset, CodeEmitInfo* cinfo);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
96 void add_debug_info_for_branch(CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 void add_debug_info_for_div0(int pc_offset, CodeEmitInfo* cinfo);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 void add_debug_info_for_div0_here(CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 void add_debug_info_for_null_check(int pc_offset, CodeEmitInfo* cinfo);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 void add_debug_info_for_null_check_here(CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void set_24bit_FPU();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 void reset_FPU();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 void fpop();
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void fxch(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void fld(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void ffree(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 void breakpoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
110 void push(LIR_Opr opr);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 void pop(LIR_Opr opr);
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // patching
a61af66fc99e Initial load
duke
parents:
diff changeset
114 void append_patching_stub(PatchingStub* stub);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 void patching_epilog(PatchingStub* patch, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 void comp_op(LIR_Condition condition, LIR_Opr src, LIR_Opr result, LIR_Op2* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
120 LIR_Assembler(Compilation* c);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 ~LIR_Assembler();
a61af66fc99e Initial load
duke
parents:
diff changeset
122 C1_MacroAssembler* masm() const { return _masm; }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 Compilation* compilation() const { return _compilation; }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 ciMethod* method() const { return compilation()->method(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 CodeOffsets* offsets() const { return _compilation->offsets(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 int code_offset() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 address pc() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 int initial_frame_size_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // test for constants which can be encoded directly in instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
133 static bool is_small_constant(LIR_Opr opr);
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 static LIR_Opr receiverOpr();
a61af66fc99e Initial load
duke
parents:
diff changeset
136 static LIR_Opr osrBufferPointer();
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
139 void emit_slow_case_stubs();
a61af66fc99e Initial load
duke
parents:
diff changeset
140 void emit_static_call_stub();
a61af66fc99e Initial load
duke
parents:
diff changeset
141 void emit_code_stub(CodeStub* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
142 void add_call_info_here(CodeEmitInfo* info) { add_call_info(code_offset(), info); }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // code patterns
1204
18a389214829 6921352: JSR 292 needs its own deopt handler
twisti
parents: 1201
diff changeset
145 int emit_exception_handler();
1378
9f5b60a14736 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 1301
diff changeset
146 int emit_unwind_handler();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
147 void emit_exception_entries(ExceptionInfoList* info_list);
1204
18a389214829 6921352: JSR 292 needs its own deopt handler
twisti
parents: 1201
diff changeset
148 int emit_deopt_handler();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 void emit_code(BlockList* hir);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 void emit_block(BlockBegin* block);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 void emit_lir_list(LIR_List* list);
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // any last minute peephole optimizations are performed here. In
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // particular sparc uses this for delay slot filling.
a61af66fc99e Initial load
duke
parents:
diff changeset
156 void peephole(LIR_List* list);
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 void emit_string_compare(LIR_Opr left, LIR_Opr right, LIR_Opr dst, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 void return_op(LIR_Opr result);
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // returns offset of poll instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
163 int safepoint_poll(LIR_Opr result, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 void const2reg (LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
166 void const2stack(LIR_Opr src, LIR_Opr dest);
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
167 void const2mem (LIR_Opr src, LIR_Opr dest, BasicType type, CodeEmitInfo* info, bool wide);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
168 void reg2stack (LIR_Opr src, LIR_Opr dest, BasicType type, bool pop_fpu_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void reg2reg (LIR_Opr src, LIR_Opr dest);
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
170 void reg2mem (LIR_Opr src, LIR_Opr dest, BasicType type,
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
171 LIR_PatchCode patch_code, CodeEmitInfo* info,
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
172 bool pop_fpu_stack, bool wide, bool unaligned);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
173 void stack2reg (LIR_Opr src, LIR_Opr dest, BasicType type);
a61af66fc99e Initial load
duke
parents:
diff changeset
174 void stack2stack(LIR_Opr src, LIR_Opr dest, BasicType type);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 void mem2reg (LIR_Opr src, LIR_Opr dest, BasicType type,
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
176 LIR_PatchCode patch_code,
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
177 CodeEmitInfo* info, bool wide, bool unaligned);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 void prefetchr (LIR_Opr src);
a61af66fc99e Initial load
duke
parents:
diff changeset
180 void prefetchw (LIR_Opr src);
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 void shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 void shift_op(LIR_Code code, LIR_Opr left, jint count, LIR_Opr dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 void move_regs(Register from_reg, Register to_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 void swap_reg(Register a, Register b);
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 void emit_op0(LIR_Op0* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 void emit_op1(LIR_Op1* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
190 void emit_op2(LIR_Op2* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 void emit_op3(LIR_Op3* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 void emit_opBranch(LIR_OpBranch* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 void emit_opLabel(LIR_OpLabel* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 void emit_arraycopy(LIR_OpArrayCopy* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 void emit_opConvert(LIR_OpConvert* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 void emit_alloc_obj(LIR_OpAllocObj* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
197 void emit_alloc_array(LIR_OpAllocArray* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 void emit_opTypeCheck(LIR_OpTypeCheck* op);
1791
3a294e483abc 6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents: 1783
diff changeset
199 void emit_typecheck_helper(LIR_OpTypeCheck *op, Label* success, Label* failure, Label* obj_is_null);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
200 void emit_compare_and_swap(LIR_OpCompareAndSwap* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
201 void emit_lock(LIR_OpLock* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 void emit_call(LIR_OpJavaCall* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
203 void emit_rtcall(LIR_OpRTCall* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 void emit_profile_call(LIR_OpProfileCall* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void emit_delay(LIR_OpDelay* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 void arith_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest, CodeEmitInfo* info, bool pop_fpu_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 void arithmetic_idiv(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr temp, LIR_Opr result, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 void intrinsic_op(LIR_Code code, LIR_Opr value, LIR_Opr unused, LIR_Opr dest, LIR_Op* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 void logic_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 void roundfp_op(LIR_Opr src, LIR_Opr tmp, LIR_Opr dest, bool pop_fpu_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 void move_op(LIR_Opr src, LIR_Opr result, BasicType type,
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
215 LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool unaligned, bool wide);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
216 void volatile_move_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 void comp_mem_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info); // info set for null exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
218 void comp_fl2i(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr result, LIR_Op2* op);
2089
037c727f35fb 7009231: C1: Incorrect CAS code for longs on SPARC 32bit
iveresov
parents: 2002
diff changeset
219 void cmove(LIR_Condition code, LIR_Opr left, LIR_Opr right, LIR_Opr result, BasicType type);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
220
1295
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1204
diff changeset
221 void call( LIR_OpJavaCall* op, relocInfo::relocType rtype);
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1204
diff changeset
222 void ic_call( LIR_OpJavaCall* op);
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1204
diff changeset
223 void vtable_call( LIR_OpJavaCall* op);
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1204
diff changeset
224
0
a61af66fc99e Initial load
duke
parents:
diff changeset
225 void osr_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 void build_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
228
1378
9f5b60a14736 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 1301
diff changeset
229 void throw_op(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info);
9f5b60a14736 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 1301
diff changeset
230 void unwind_op(LIR_Opr exceptionOop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
231 void monitor_address(int monitor_ix, LIR_Opr dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 void align_backward_branch_target();
a61af66fc99e Initial load
duke
parents:
diff changeset
234 void align_call(LIR_Code code);
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 void negate(LIR_Opr left, LIR_Opr dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 void leal(LIR_Opr left, LIR_Opr dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 void rt_call(LIR_Opr result, address dest, const LIR_OprList* args, LIR_Opr tmp, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 void membar();
a61af66fc99e Initial load
duke
parents:
diff changeset
242 void membar_acquire();
a61af66fc99e Initial load
duke
parents:
diff changeset
243 void membar_release();
4966
701a83c86f28 7120481: storeStore barrier in constructor with final field
jiangli
parents: 3899
diff changeset
244 void membar_loadload();
701a83c86f28 7120481: storeStore barrier in constructor with final field
jiangli
parents: 3899
diff changeset
245 void membar_storestore();
701a83c86f28 7120481: storeStore barrier in constructor with final field
jiangli
parents: 3899
diff changeset
246 void membar_loadstore();
701a83c86f28 7120481: storeStore barrier in constructor with final field
jiangli
parents: 3899
diff changeset
247 void membar_storeload();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
248 void get_thread(LIR_Opr result);
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 void verify_oop_map(CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
251
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
252 #ifdef TARGET_ARCH_x86
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
253 # include "c1_LIRAssembler_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
254 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
255 #ifdef TARGET_ARCH_sparc
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
256 # include "c1_LIRAssembler_sparc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
257 #endif
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
258 #ifdef TARGET_ARCH_arm
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
259 # include "c1_LIRAssembler_arm.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
260 #endif
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
261 #ifdef TARGET_ARCH_ppc
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
262 # include "c1_LIRAssembler_ppc.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
263 #endif
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
264
0
a61af66fc99e Initial load
duke
parents:
diff changeset
265 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
266
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
267 #endif // SHARE_VM_C1_C1_LIRASSEMBLER_HPP