annotate src/share/vm/c1/c1_LIRAssembler.hpp @ 6862:8a5ea0a9ccc4

7127708: G1: change task num types from int to uint in concurrent mark Summary: Change the type of various task num fields, parameters etc to unsigned and rename them to be more consistent with the other collectors. Code changes were also reviewed by Vitaly Davidovich. Reviewed-by: johnc Contributed-by: Kaushik Srenevasan <kaushik@twitter.com>
author johnc
date Sat, 06 Oct 2012 01:17:44 -0700
parents 7eca5de9e0b6
children 46f6f063b272
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4966
diff changeset
2 * Copyright (c) 2000, 2012, 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"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4966
diff changeset
30 #include "oops/methodData.hpp"
1972
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
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4966
diff changeset
87 void metadata2reg(Metadata* o, Register reg);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4966
diff changeset
88 void klass2reg_with_patching(Register reg, CodeEmitInfo* info);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4966
diff changeset
89
0
a61af66fc99e Initial load
duke
parents:
diff changeset
90 void emit_stubs(CodeStubList* stub_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // addresses
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
93 Address as_Address(LIR_Address* addr);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
94 Address as_Address_lo(LIR_Address* addr);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
95 Address as_Address_hi(LIR_Address* addr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // debug information
1564
61b2245abf36 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 1378
diff changeset
98 void add_call_info(int pc_offset, CodeEmitInfo* cinfo);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99 void add_debug_info_for_branch(CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 void add_debug_info_for_div0(int pc_offset, CodeEmitInfo* cinfo);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 void add_debug_info_for_div0_here(CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void add_debug_info_for_null_check(int pc_offset, CodeEmitInfo* cinfo);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 void add_debug_info_for_null_check_here(CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void set_24bit_FPU();
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void reset_FPU();
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void fpop();
a61af66fc99e Initial load
duke
parents:
diff changeset
108 void fxch(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 void fld(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 void ffree(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 void breakpoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
113 void push(LIR_Opr opr);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 void pop(LIR_Opr opr);
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // patching
a61af66fc99e Initial load
duke
parents:
diff changeset
117 void append_patching_stub(PatchingStub* stub);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 void patching_epilog(PatchingStub* patch, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 void comp_op(LIR_Condition condition, LIR_Opr src, LIR_Opr result, LIR_Op2* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
123 LIR_Assembler(Compilation* c);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 ~LIR_Assembler();
a61af66fc99e Initial load
duke
parents:
diff changeset
125 C1_MacroAssembler* masm() const { return _masm; }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 Compilation* compilation() const { return _compilation; }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 ciMethod* method() const { return compilation()->method(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 CodeOffsets* offsets() const { return _compilation->offsets(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 int code_offset() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 address pc() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 int initial_frame_size_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // test for constants which can be encoded directly in instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
136 static bool is_small_constant(LIR_Opr opr);
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 static LIR_Opr receiverOpr();
a61af66fc99e Initial load
duke
parents:
diff changeset
139 static LIR_Opr osrBufferPointer();
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
142 void emit_slow_case_stubs();
a61af66fc99e Initial load
duke
parents:
diff changeset
143 void emit_static_call_stub();
a61af66fc99e Initial load
duke
parents:
diff changeset
144 void emit_code_stub(CodeStub* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 void add_call_info_here(CodeEmitInfo* info) { add_call_info(code_offset(), info); }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // code patterns
1204
18a389214829 6921352: JSR 292 needs its own deopt handler
twisti
parents: 1201
diff changeset
148 int emit_exception_handler();
1378
9f5b60a14736 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 1301
diff changeset
149 int emit_unwind_handler();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
150 void emit_exception_entries(ExceptionInfoList* info_list);
1204
18a389214829 6921352: JSR 292 needs its own deopt handler
twisti
parents: 1201
diff changeset
151 int emit_deopt_handler();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 void emit_code(BlockList* hir);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 void emit_block(BlockBegin* block);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 void emit_lir_list(LIR_List* list);
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // any last minute peephole optimizations are performed here. In
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // particular sparc uses this for delay slot filling.
a61af66fc99e Initial load
duke
parents:
diff changeset
159 void peephole(LIR_List* list);
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 void emit_string_compare(LIR_Opr left, LIR_Opr right, LIR_Opr dst, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 void return_op(LIR_Opr result);
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // returns offset of poll instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
166 int safepoint_poll(LIR_Opr result, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 void const2reg (LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void const2stack(LIR_Opr src, LIR_Opr dest);
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
170 void const2mem (LIR_Opr src, LIR_Opr dest, BasicType type, CodeEmitInfo* info, bool wide);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
171 void reg2stack (LIR_Opr src, LIR_Opr dest, BasicType type, bool pop_fpu_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
172 void reg2reg (LIR_Opr src, LIR_Opr dest);
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
173 void reg2mem (LIR_Opr src, LIR_Opr dest, BasicType type,
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
174 LIR_PatchCode patch_code, CodeEmitInfo* info,
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
175 bool pop_fpu_stack, bool wide, bool unaligned);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
176 void stack2reg (LIR_Opr src, LIR_Opr dest, BasicType type);
a61af66fc99e Initial load
duke
parents:
diff changeset
177 void stack2stack(LIR_Opr src, LIR_Opr dest, BasicType type);
a61af66fc99e Initial load
duke
parents:
diff changeset
178 void mem2reg (LIR_Opr src, LIR_Opr dest, BasicType type,
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
179 LIR_PatchCode patch_code,
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
180 CodeEmitInfo* info, bool wide, bool unaligned);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 void prefetchr (LIR_Opr src);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 void prefetchw (LIR_Opr src);
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 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
186 void shift_op(LIR_Code code, LIR_Opr left, jint count, LIR_Opr dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 void move_regs(Register from_reg, Register to_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 void swap_reg(Register a, Register b);
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 void emit_op0(LIR_Op0* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 void emit_op1(LIR_Op1* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 void emit_op2(LIR_Op2* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 void emit_op3(LIR_Op3* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 void emit_opBranch(LIR_OpBranch* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 void emit_opLabel(LIR_OpLabel* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
197 void emit_arraycopy(LIR_OpArrayCopy* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 void emit_opConvert(LIR_OpConvert* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 void emit_alloc_obj(LIR_OpAllocObj* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 void emit_alloc_array(LIR_OpAllocArray* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
201 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
202 void emit_typecheck_helper(LIR_OpTypeCheck *op, Label* success, Label* failure, Label* obj_is_null);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
203 void emit_compare_and_swap(LIR_OpCompareAndSwap* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 void emit_lock(LIR_OpLock* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void emit_call(LIR_OpJavaCall* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 void emit_rtcall(LIR_OpRTCall* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
207 void emit_profile_call(LIR_OpProfileCall* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 void emit_delay(LIR_OpDelay* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 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
211 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
212 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
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 void logic_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 void roundfp_op(LIR_Opr src, LIR_Opr tmp, LIR_Opr dest, bool pop_fpu_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 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
218 LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool unaligned, bool wide);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
219 void volatile_move_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 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
221 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
222 void cmove(LIR_Condition code, LIR_Opr left, LIR_Opr right, LIR_Opr result, BasicType type);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
223
1295
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1204
diff changeset
224 void call( LIR_OpJavaCall* op, relocInfo::relocType rtype);
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1204
diff changeset
225 void ic_call( LIR_OpJavaCall* op);
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1204
diff changeset
226 void vtable_call( LIR_OpJavaCall* op);
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1204
diff changeset
227
0
a61af66fc99e Initial load
duke
parents:
diff changeset
228 void osr_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 void build_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
231
1378
9f5b60a14736 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 1301
diff changeset
232 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
233 void unwind_op(LIR_Opr exceptionOop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
234 void monitor_address(int monitor_ix, LIR_Opr dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 void align_backward_branch_target();
a61af66fc99e Initial load
duke
parents:
diff changeset
237 void align_call(LIR_Code code);
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 void negate(LIR_Opr left, LIR_Opr dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
240 void leal(LIR_Opr left, LIR_Opr dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 void rt_call(LIR_Opr result, address dest, const LIR_OprList* args, LIR_Opr tmp, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 void membar();
a61af66fc99e Initial load
duke
parents:
diff changeset
245 void membar_acquire();
a61af66fc99e Initial load
duke
parents:
diff changeset
246 void membar_release();
4966
701a83c86f28 7120481: storeStore barrier in constructor with final field
jiangli
parents: 3899
diff changeset
247 void membar_loadload();
701a83c86f28 7120481: storeStore barrier in constructor with final field
jiangli
parents: 3899
diff changeset
248 void membar_storestore();
701a83c86f28 7120481: storeStore barrier in constructor with final field
jiangli
parents: 3899
diff changeset
249 void membar_loadstore();
701a83c86f28 7120481: storeStore barrier in constructor with final field
jiangli
parents: 3899
diff changeset
250 void membar_storeload();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
251 void get_thread(LIR_Opr result);
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 void verify_oop_map(CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
254
6795
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
255 void atomic_op(LIR_Code code, LIR_Opr src, LIR_Opr data, LIR_Opr dest, LIR_Opr tmp);
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
256
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
257 #ifdef TARGET_ARCH_x86
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
258 # include "c1_LIRAssembler_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
259 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
260 #ifdef TARGET_ARCH_sparc
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
261 # include "c1_LIRAssembler_sparc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
262 #endif
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
263 #ifdef TARGET_ARCH_arm
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
264 # include "c1_LIRAssembler_arm.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
265 #endif
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
266 #ifdef TARGET_ARCH_ppc
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
267 # include "c1_LIRAssembler_ppc.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2089
diff changeset
268 #endif
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
269
0
a61af66fc99e Initial load
duke
parents:
diff changeset
270 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
271
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1791
diff changeset
272 #endif // SHARE_VM_C1_C1_LIRASSEMBLER_HPP