annotate src/share/vm/c1/c1_LIRAssembler.cpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children dc7f315e41f7 37f87013dfd8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2000-2006 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_c1_LIRAssembler.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 void LIR_Assembler::patching_epilog(PatchingStub* patch, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info) {
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // we must have enough patching space so that call can be inserted
a61af66fc99e Initial load
duke
parents:
diff changeset
31 while ((intx) _masm->pc() - (intx) patch->pc_start() < NativeCall::instruction_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 _masm->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
33 }
a61af66fc99e Initial load
duke
parents:
diff changeset
34 patch->install(_masm, patch_code, obj, info);
a61af66fc99e Initial load
duke
parents:
diff changeset
35 append_patching_stub(patch);
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
38 Bytecodes::Code code = info->scope()->method()->java_code_at_bci(info->bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
39 if (patch->id() == PatchingStub::access_field_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 switch (code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 case Bytecodes::_putstatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
42 case Bytecodes::_getstatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
43 case Bytecodes::_putfield:
a61af66fc99e Initial load
duke
parents:
diff changeset
44 case Bytecodes::_getfield:
a61af66fc99e Initial load
duke
parents:
diff changeset
45 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
47 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
48 }
a61af66fc99e Initial load
duke
parents:
diff changeset
49 } else if (patch->id() == PatchingStub::load_klass_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 switch (code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 case Bytecodes::_putstatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
52 case Bytecodes::_getstatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
53 case Bytecodes::_new:
a61af66fc99e Initial load
duke
parents:
diff changeset
54 case Bytecodes::_anewarray:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 case Bytecodes::_multianewarray:
a61af66fc99e Initial load
duke
parents:
diff changeset
56 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
57 case Bytecodes::_checkcast:
a61af66fc99e Initial load
duke
parents:
diff changeset
58 case Bytecodes::_ldc:
a61af66fc99e Initial load
duke
parents:
diff changeset
59 case Bytecodes::_ldc_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
60 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
62 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 //---------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 LIR_Assembler::LIR_Assembler(Compilation* c):
a61af66fc99e Initial load
duke
parents:
diff changeset
75 _compilation(c)
a61af66fc99e Initial load
duke
parents:
diff changeset
76 , _masm(c->masm())
a61af66fc99e Initial load
duke
parents:
diff changeset
77 , _frame_map(c->frame_map())
a61af66fc99e Initial load
duke
parents:
diff changeset
78 , _current_block(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
79 , _pending_non_safepoint(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
80 , _pending_non_safepoint_offset(0)
a61af66fc99e Initial load
duke
parents:
diff changeset
81 {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 _slow_case_stubs = new CodeStubList();
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 LIR_Assembler::~LIR_Assembler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 void LIR_Assembler::append_patching_stub(PatchingStub* stub) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 _slow_case_stubs->append(stub);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 void LIR_Assembler::check_codespace() {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 CodeSection* cs = _masm->code_section();
a61af66fc99e Initial load
duke
parents:
diff changeset
97 if (cs->remaining() < (int)(1*K)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 BAILOUT("CodeBuffer overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 void LIR_Assembler::emit_code_stub(CodeStub* stub) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 _slow_case_stubs->append(stub);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void LIR_Assembler::emit_stubs(CodeStubList* stub_list) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 for (int m = 0; m < stub_list->length(); m++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 CodeStub* s = (*stub_list)[m];
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 check_codespace();
a61af66fc99e Initial load
duke
parents:
diff changeset
112 CHECK_BAILOUT();
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
115 if (CommentedAssembly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 s->print_name(&st);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 st.print(" slow case");
a61af66fc99e Initial load
duke
parents:
diff changeset
119 _masm->block_comment(st.as_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
122 s->emit_code(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
124 s->assert_no_unbound_labels();
a61af66fc99e Initial load
duke
parents:
diff changeset
125 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 void LIR_Assembler::emit_slow_case_stubs() {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 emit_stubs(_slow_case_stubs);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 bool LIR_Assembler::needs_icache(ciMethod* method) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
136 return !method->is_static();
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 int LIR_Assembler::code_offset() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 return _masm->offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 address LIR_Assembler::pc() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 return _masm->pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 void LIR_Assembler::emit_exception_entries(ExceptionInfoList* info_list) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 for (int i = 0; i < info_list->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 XHandlers* handlers = info_list->at(i)->exception_handlers();
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 for (int j = 0; j < handlers->length(); j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 XHandler* handler = handlers->handler_at(j);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 assert(handler->lir_op_id() != -1, "handler not processed by LinearScan");
a61af66fc99e Initial load
duke
parents:
diff changeset
157 assert(handler->entry_code() == NULL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
158 handler->entry_code()->instructions_list()->last()->code() == lir_branch ||
a61af66fc99e Initial load
duke
parents:
diff changeset
159 handler->entry_code()->instructions_list()->last()->code() == lir_delay_slot, "last operation must be branch");
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 if (handler->entry_pco() == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // entry code not emitted yet
a61af66fc99e Initial load
duke
parents:
diff changeset
163 if (handler->entry_code() != NULL && handler->entry_code()->instructions_list()->length() > 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 handler->set_entry_pco(code_offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
165 if (CommentedAssembly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 _masm->block_comment("Exception adapter block");
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 emit_lir_list(handler->entry_code());
a61af66fc99e Initial load
duke
parents:
diff changeset
169 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 handler->set_entry_pco(handler->entry_block()->exception_handler_pco());
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 assert(handler->entry_pco() != -1, "must be set now");
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 void LIR_Assembler::emit_code(BlockList* hir) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 if (PrintLIR) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 print_LIR(hir);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 int n = hir->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
186 for (int i = 0; i < n; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 emit_block(hir->at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
188 CHECK_BAILOUT();
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 flush_debug_info(code_offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 DEBUG_ONLY(check_no_unbound_labels());
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 void LIR_Assembler::emit_block(BlockBegin* block) {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 if (block->is_set(BlockBegin::backward_branch_target_flag)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 align_backward_branch_target();
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // if this block is the start of an exception handler, record the
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // PC offset of the first instruction for later construction of
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // the ExceptionHandlerTable
a61af66fc99e Initial load
duke
parents:
diff changeset
205 if (block->is_set(BlockBegin::exception_entry_flag)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 block->set_exception_handler_pco(code_offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
210 if (PrintLIRWithAssembly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // don't print Phi's
a61af66fc99e Initial load
duke
parents:
diff changeset
212 InstructionPrinter ip(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 block->print(ip);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 assert(block->lir() != NULL, "must have LIR");
a61af66fc99e Initial load
duke
parents:
diff changeset
218 IA32_ONLY(assert(_masm->rsp_offset() == 0, "frame size should be fixed"));
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
221 if (CommentedAssembly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 st.print_cr(" block B%d [%d, %d]", block->block_id(), block->bci(), block->end()->bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
224 _masm->block_comment(st.as_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 emit_lir_list(block->lir());
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 IA32_ONLY(assert(_masm->rsp_offset() == 0, "frame size should be fixed"));
a61af66fc99e Initial load
duke
parents:
diff changeset
231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 void LIR_Assembler::emit_lir_list(LIR_List* list) {
a61af66fc99e Initial load
duke
parents:
diff changeset
235 peephole(list);
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 int n = list->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
238 for (int i = 0; i < n; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 LIR_Op* op = list->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 check_codespace();
a61af66fc99e Initial load
duke
parents:
diff changeset
242 CHECK_BAILOUT();
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
245 if (CommentedAssembly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Don't record out every op since that's too verbose. Print
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // branches since they include block and stub names. Also print
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // patching moves since they generate funny looking code.
a61af66fc99e Initial load
duke
parents:
diff changeset
249 if (op->code() == lir_branch ||
a61af66fc99e Initial load
duke
parents:
diff changeset
250 (op->code() == lir_move && op->as_Op1()->patch_code() != lir_patch_none)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
252 op->print_on(&st);
a61af66fc99e Initial load
duke
parents:
diff changeset
253 _masm->block_comment(st.as_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
256 if (PrintLIRWithAssembly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 // print out the LIR operation followed by the resulting assembly
a61af66fc99e Initial load
duke
parents:
diff changeset
258 list->at(i)->print(); tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
261
a61af66fc99e Initial load
duke
parents:
diff changeset
262 op->emit_code(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 if (compilation()->debug_info_recorder()->recording_non_safepoints()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 process_debug_info(op);
a61af66fc99e Initial load
duke
parents:
diff changeset
266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
269 if (PrintLIRWithAssembly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 _masm->code()->decode();
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
273 }
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
277 void LIR_Assembler::check_no_unbound_labels() {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 CHECK_BAILOUT();
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 for (int i = 0; i < _branch_target_blocks.length() - 1; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
281 if (!_branch_target_blocks.at(i)->label()->is_bound()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 tty->print_cr("label of block B%d is not bound", _branch_target_blocks.at(i)->block_id());
a61af66fc99e Initial load
duke
parents:
diff changeset
283 assert(false, "unbound label");
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285 }
a61af66fc99e Initial load
duke
parents:
diff changeset
286 }
a61af66fc99e Initial load
duke
parents:
diff changeset
287 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
288
a61af66fc99e Initial load
duke
parents:
diff changeset
289 //----------------------------------debug info--------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 void LIR_Assembler::add_debug_info_for_branch(CodeEmitInfo* info) {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 _masm->code_section()->relocate(pc(), relocInfo::poll_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
294 int pc_offset = code_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
295 flush_debug_info(pc_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
296 info->record_debug_info(compilation()->debug_info_recorder(), pc_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
297 if (info->exception_handlers() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 compilation()->add_exception_handlers_for_pco(pc_offset, info->exception_handlers());
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 void LIR_Assembler::add_call_info(int pc_offset, CodeEmitInfo* cinfo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
304 flush_debug_info(pc_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 cinfo->record_debug_info(compilation()->debug_info_recorder(), pc_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 if (cinfo->exception_handlers() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 compilation()->add_exception_handlers_for_pco(pc_offset, cinfo->exception_handlers());
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 static ValueStack* debug_info(Instruction* ins) {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 StateSplit* ss = ins->as_StateSplit();
a61af66fc99e Initial load
duke
parents:
diff changeset
313 if (ss != NULL) return ss->state();
a61af66fc99e Initial load
duke
parents:
diff changeset
314 return ins->lock_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 void LIR_Assembler::process_debug_info(LIR_Op* op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
318 Instruction* src = op->source();
a61af66fc99e Initial load
duke
parents:
diff changeset
319 if (src == NULL) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
320 int pc_offset = code_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
321 if (_pending_non_safepoint == src) {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 _pending_non_safepoint_offset = pc_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
323 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
324 }
a61af66fc99e Initial load
duke
parents:
diff changeset
325 ValueStack* vstack = debug_info(src);
a61af66fc99e Initial load
duke
parents:
diff changeset
326 if (vstack == NULL) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
327 if (_pending_non_safepoint != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
328 // Got some old debug info. Get rid of it.
a61af66fc99e Initial load
duke
parents:
diff changeset
329 if (_pending_non_safepoint->bci() == src->bci() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
330 debug_info(_pending_non_safepoint) == vstack) {
a61af66fc99e Initial load
duke
parents:
diff changeset
331 _pending_non_safepoint_offset = pc_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
332 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
333 }
a61af66fc99e Initial load
duke
parents:
diff changeset
334 if (_pending_non_safepoint_offset < pc_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 record_non_safepoint_debug_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337 _pending_non_safepoint = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // Remember the debug info.
a61af66fc99e Initial load
duke
parents:
diff changeset
340 if (pc_offset > compilation()->debug_info_recorder()->last_pc_offset()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 _pending_non_safepoint = src;
a61af66fc99e Initial load
duke
parents:
diff changeset
342 _pending_non_safepoint_offset = pc_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
344 }
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // Index caller states in s, where 0 is the oldest, 1 its callee, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // Return NULL if n is too large.
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // Returns the caller_bci for the next-younger state, also.
a61af66fc99e Initial load
duke
parents:
diff changeset
349 static ValueStack* nth_oldest(ValueStack* s, int n, int& bci_result) {
a61af66fc99e Initial load
duke
parents:
diff changeset
350 ValueStack* t = s;
a61af66fc99e Initial load
duke
parents:
diff changeset
351 for (int i = 0; i < n; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 if (t == NULL) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 t = t->caller_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355 if (t == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
356 for (;;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
357 ValueStack* tc = t->caller_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
358 if (tc == NULL) return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
359 t = tc;
a61af66fc99e Initial load
duke
parents:
diff changeset
360 bci_result = s->scope()->caller_bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
361 s = s->caller_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 void LIR_Assembler::record_non_safepoint_debug_info() {
a61af66fc99e Initial load
duke
parents:
diff changeset
366 int pc_offset = _pending_non_safepoint_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
367 ValueStack* vstack = debug_info(_pending_non_safepoint);
a61af66fc99e Initial load
duke
parents:
diff changeset
368 int bci = _pending_non_safepoint->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 DebugInformationRecorder* debug_info = compilation()->debug_info_recorder();
a61af66fc99e Initial load
duke
parents:
diff changeset
371 assert(debug_info->recording_non_safepoints(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 debug_info->add_non_safepoint(pc_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // Visit scopes from oldest to youngest.
a61af66fc99e Initial load
duke
parents:
diff changeset
376 for (int n = 0; ; n++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 int s_bci = bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
378 ValueStack* s = nth_oldest(vstack, n, s_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
379 if (s == NULL) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
380 IRScope* scope = s->scope();
a61af66fc99e Initial load
duke
parents:
diff changeset
381 debug_info->describe_scope(pc_offset, scope->method(), s_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
382 }
a61af66fc99e Initial load
duke
parents:
diff changeset
383
a61af66fc99e Initial load
duke
parents:
diff changeset
384 debug_info->end_non_safepoint(pc_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
386
a61af66fc99e Initial load
duke
parents:
diff changeset
387
a61af66fc99e Initial load
duke
parents:
diff changeset
388 void LIR_Assembler::add_debug_info_for_null_check_here(CodeEmitInfo* cinfo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
389 add_debug_info_for_null_check(code_offset(), cinfo);
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 void LIR_Assembler::add_debug_info_for_null_check(int pc_offset, CodeEmitInfo* cinfo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
393 ImplicitNullCheckStub* stub = new ImplicitNullCheckStub(pc_offset, cinfo);
a61af66fc99e Initial load
duke
parents:
diff changeset
394 emit_code_stub(stub);
a61af66fc99e Initial load
duke
parents:
diff changeset
395 }
a61af66fc99e Initial load
duke
parents:
diff changeset
396
a61af66fc99e Initial load
duke
parents:
diff changeset
397 void LIR_Assembler::add_debug_info_for_div0_here(CodeEmitInfo* info) {
a61af66fc99e Initial load
duke
parents:
diff changeset
398 add_debug_info_for_div0(code_offset(), info);
a61af66fc99e Initial load
duke
parents:
diff changeset
399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 void LIR_Assembler::add_debug_info_for_div0(int pc_offset, CodeEmitInfo* cinfo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
402 DivByZeroStub* stub = new DivByZeroStub(pc_offset, cinfo);
a61af66fc99e Initial load
duke
parents:
diff changeset
403 emit_code_stub(stub);
a61af66fc99e Initial load
duke
parents:
diff changeset
404 }
a61af66fc99e Initial load
duke
parents:
diff changeset
405
a61af66fc99e Initial load
duke
parents:
diff changeset
406 void LIR_Assembler::emit_rtcall(LIR_OpRTCall* op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
407 rt_call(op->result_opr(), op->addr(), op->arguments(), op->tmp(), op->info());
a61af66fc99e Initial load
duke
parents:
diff changeset
408 }
a61af66fc99e Initial load
duke
parents:
diff changeset
409
a61af66fc99e Initial load
duke
parents:
diff changeset
410
a61af66fc99e Initial load
duke
parents:
diff changeset
411 void LIR_Assembler::emit_call(LIR_OpJavaCall* op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
412 verify_oop_map(op->info());
a61af66fc99e Initial load
duke
parents:
diff changeset
413
a61af66fc99e Initial load
duke
parents:
diff changeset
414 if (os::is_MP()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // must align calls sites, otherwise they can't be updated atomically on MP hardware
a61af66fc99e Initial load
duke
parents:
diff changeset
416 align_call(op->code());
a61af66fc99e Initial load
duke
parents:
diff changeset
417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // emit the static call stub stuff out of line
a61af66fc99e Initial load
duke
parents:
diff changeset
420 emit_static_call_stub();
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 switch (op->code()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
423 case lir_static_call:
a61af66fc99e Initial load
duke
parents:
diff changeset
424 call(op->addr(), relocInfo::static_call_type, op->info());
a61af66fc99e Initial load
duke
parents:
diff changeset
425 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
426 case lir_optvirtual_call:
a61af66fc99e Initial load
duke
parents:
diff changeset
427 call(op->addr(), relocInfo::opt_virtual_call_type, op->info());
a61af66fc99e Initial load
duke
parents:
diff changeset
428 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
429 case lir_icvirtual_call:
a61af66fc99e Initial load
duke
parents:
diff changeset
430 ic_call(op->addr(), op->info());
a61af66fc99e Initial load
duke
parents:
diff changeset
431 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
432 case lir_virtual_call:
a61af66fc99e Initial load
duke
parents:
diff changeset
433 vtable_call(op->vtable_offset(), op->info());
a61af66fc99e Initial load
duke
parents:
diff changeset
434 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
435 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
437 #if defined(IA32) && defined(TIERED)
a61af66fc99e Initial load
duke
parents:
diff changeset
438 // C2 leave fpu stack dirty clean it
a61af66fc99e Initial load
duke
parents:
diff changeset
439 if (UseSSE < 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
440 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
441 for ( i = 1; i <= 7 ; i++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
442 ffree(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
443 }
a61af66fc99e Initial load
duke
parents:
diff changeset
444 if (!op->result_opr()->is_float_kind()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
445 ffree(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447 }
a61af66fc99e Initial load
duke
parents:
diff changeset
448 #endif // IA32 && TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 void LIR_Assembler::emit_opLabel(LIR_OpLabel* op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
453 _masm->bind (*(op->label()));
a61af66fc99e Initial load
duke
parents:
diff changeset
454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 void LIR_Assembler::emit_op1(LIR_Op1* op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
458 switch (op->code()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 case lir_move:
a61af66fc99e Initial load
duke
parents:
diff changeset
460 if (op->move_kind() == lir_move_volatile) {
a61af66fc99e Initial load
duke
parents:
diff changeset
461 assert(op->patch_code() == lir_patch_none, "can't patch volatiles");
a61af66fc99e Initial load
duke
parents:
diff changeset
462 volatile_move_op(op->in_opr(), op->result_opr(), op->type(), op->info());
a61af66fc99e Initial load
duke
parents:
diff changeset
463 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
464 move_op(op->in_opr(), op->result_opr(), op->type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
465 op->patch_code(), op->info(), op->pop_fpu_stack(), op->move_kind() == lir_move_unaligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
467 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
468
a61af66fc99e Initial load
duke
parents:
diff changeset
469 case lir_prefetchr:
a61af66fc99e Initial load
duke
parents:
diff changeset
470 prefetchr(op->in_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
471 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 case lir_prefetchw:
a61af66fc99e Initial load
duke
parents:
diff changeset
474 prefetchw(op->in_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
475 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
476
a61af66fc99e Initial load
duke
parents:
diff changeset
477 case lir_roundfp: {
a61af66fc99e Initial load
duke
parents:
diff changeset
478 LIR_OpRoundFP* round_op = op->as_OpRoundFP();
a61af66fc99e Initial load
duke
parents:
diff changeset
479 roundfp_op(round_op->in_opr(), round_op->tmp(), round_op->result_opr(), round_op->pop_fpu_stack());
a61af66fc99e Initial load
duke
parents:
diff changeset
480 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
482
a61af66fc99e Initial load
duke
parents:
diff changeset
483 case lir_return:
a61af66fc99e Initial load
duke
parents:
diff changeset
484 return_op(op->in_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
485 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487 case lir_safepoint:
a61af66fc99e Initial load
duke
parents:
diff changeset
488 if (compilation()->debug_info_recorder()->last_pc_offset() == code_offset()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
489 _masm->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
490 }
a61af66fc99e Initial load
duke
parents:
diff changeset
491 safepoint_poll(op->in_opr(), op->info());
a61af66fc99e Initial load
duke
parents:
diff changeset
492 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
493
a61af66fc99e Initial load
duke
parents:
diff changeset
494 case lir_fxch:
a61af66fc99e Initial load
duke
parents:
diff changeset
495 fxch(op->in_opr()->as_jint());
a61af66fc99e Initial load
duke
parents:
diff changeset
496 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
497
a61af66fc99e Initial load
duke
parents:
diff changeset
498 case lir_fld:
a61af66fc99e Initial load
duke
parents:
diff changeset
499 fld(op->in_opr()->as_jint());
a61af66fc99e Initial load
duke
parents:
diff changeset
500 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
501
a61af66fc99e Initial load
duke
parents:
diff changeset
502 case lir_ffree:
a61af66fc99e Initial load
duke
parents:
diff changeset
503 ffree(op->in_opr()->as_jint());
a61af66fc99e Initial load
duke
parents:
diff changeset
504 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
505
a61af66fc99e Initial load
duke
parents:
diff changeset
506 case lir_branch:
a61af66fc99e Initial load
duke
parents:
diff changeset
507 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
508
a61af66fc99e Initial load
duke
parents:
diff changeset
509 case lir_push:
a61af66fc99e Initial load
duke
parents:
diff changeset
510 push(op->in_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
511 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 case lir_pop:
a61af66fc99e Initial load
duke
parents:
diff changeset
514 pop(op->in_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
515 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 case lir_neg:
a61af66fc99e Initial load
duke
parents:
diff changeset
518 negate(op->in_opr(), op->result_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
519 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 case lir_leal:
a61af66fc99e Initial load
duke
parents:
diff changeset
522 leal(op->in_opr(), op->result_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
523 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525 case lir_null_check:
a61af66fc99e Initial load
duke
parents:
diff changeset
526 if (GenerateCompilerNullChecks) {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 add_debug_info_for_null_check_here(op->info());
a61af66fc99e Initial load
duke
parents:
diff changeset
528
a61af66fc99e Initial load
duke
parents:
diff changeset
529 if (op->in_opr()->is_single_cpu()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
530 _masm->null_check(op->in_opr()->as_register());
a61af66fc99e Initial load
duke
parents:
diff changeset
531 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
532 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
533 }
a61af66fc99e Initial load
duke
parents:
diff changeset
534 }
a61af66fc99e Initial load
duke
parents:
diff changeset
535 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
536
a61af66fc99e Initial load
duke
parents:
diff changeset
537 case lir_monaddr:
a61af66fc99e Initial load
duke
parents:
diff changeset
538 monitor_address(op->in_opr()->as_constant_ptr()->as_jint(), op->result_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
539 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
542 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
543 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
545 }
a61af66fc99e Initial load
duke
parents:
diff changeset
546
a61af66fc99e Initial load
duke
parents:
diff changeset
547
a61af66fc99e Initial load
duke
parents:
diff changeset
548 void LIR_Assembler::emit_op0(LIR_Op0* op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
549 switch (op->code()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
550 case lir_word_align: {
a61af66fc99e Initial load
duke
parents:
diff changeset
551 while (code_offset() % BytesPerWord != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 _masm->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
553 }
a61af66fc99e Initial load
duke
parents:
diff changeset
554 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
555 }
a61af66fc99e Initial load
duke
parents:
diff changeset
556
a61af66fc99e Initial load
duke
parents:
diff changeset
557 case lir_nop:
a61af66fc99e Initial load
duke
parents:
diff changeset
558 assert(op->info() == NULL, "not supported");
a61af66fc99e Initial load
duke
parents:
diff changeset
559 _masm->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
560 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
561
a61af66fc99e Initial load
duke
parents:
diff changeset
562 case lir_label:
a61af66fc99e Initial load
duke
parents:
diff changeset
563 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
564 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566 case lir_build_frame:
a61af66fc99e Initial load
duke
parents:
diff changeset
567 build_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
568 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570 case lir_std_entry:
a61af66fc99e Initial load
duke
parents:
diff changeset
571 // init offsets
a61af66fc99e Initial load
duke
parents:
diff changeset
572 offsets()->set_value(CodeOffsets::OSR_Entry, _masm->offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
573 _masm->align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
574 if (needs_icache(compilation()->method())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
575 check_icache();
a61af66fc99e Initial load
duke
parents:
diff changeset
576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
577 offsets()->set_value(CodeOffsets::Verified_Entry, _masm->offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
578 _masm->verified_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
579 build_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
580 offsets()->set_value(CodeOffsets::Frame_Complete, _masm->offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
581 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
582
a61af66fc99e Initial load
duke
parents:
diff changeset
583 case lir_osr_entry:
a61af66fc99e Initial load
duke
parents:
diff changeset
584 offsets()->set_value(CodeOffsets::OSR_Entry, _masm->offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
585 osr_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
586 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
587
a61af66fc99e Initial load
duke
parents:
diff changeset
588 case lir_24bit_FPU:
a61af66fc99e Initial load
duke
parents:
diff changeset
589 set_24bit_FPU();
a61af66fc99e Initial load
duke
parents:
diff changeset
590 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
591
a61af66fc99e Initial load
duke
parents:
diff changeset
592 case lir_reset_FPU:
a61af66fc99e Initial load
duke
parents:
diff changeset
593 reset_FPU();
a61af66fc99e Initial load
duke
parents:
diff changeset
594 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
595
a61af66fc99e Initial load
duke
parents:
diff changeset
596 case lir_breakpoint:
a61af66fc99e Initial load
duke
parents:
diff changeset
597 breakpoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
598 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
599
a61af66fc99e Initial load
duke
parents:
diff changeset
600 case lir_fpop_raw:
a61af66fc99e Initial load
duke
parents:
diff changeset
601 fpop();
a61af66fc99e Initial load
duke
parents:
diff changeset
602 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
603
a61af66fc99e Initial load
duke
parents:
diff changeset
604 case lir_membar:
a61af66fc99e Initial load
duke
parents:
diff changeset
605 membar();
a61af66fc99e Initial load
duke
parents:
diff changeset
606 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 case lir_membar_acquire:
a61af66fc99e Initial load
duke
parents:
diff changeset
609 membar_acquire();
a61af66fc99e Initial load
duke
parents:
diff changeset
610 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
611
a61af66fc99e Initial load
duke
parents:
diff changeset
612 case lir_membar_release:
a61af66fc99e Initial load
duke
parents:
diff changeset
613 membar_release();
a61af66fc99e Initial load
duke
parents:
diff changeset
614 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
615
a61af66fc99e Initial load
duke
parents:
diff changeset
616 case lir_get_thread:
a61af66fc99e Initial load
duke
parents:
diff changeset
617 get_thread(op->result_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
618 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
619
a61af66fc99e Initial load
duke
parents:
diff changeset
620 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
621 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
622 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
623 }
a61af66fc99e Initial load
duke
parents:
diff changeset
624 }
a61af66fc99e Initial load
duke
parents:
diff changeset
625
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 void LIR_Assembler::emit_op2(LIR_Op2* op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
628 switch (op->code()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
629 case lir_cmp:
a61af66fc99e Initial load
duke
parents:
diff changeset
630 if (op->info() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
631 assert(op->in_opr1()->is_address() || op->in_opr2()->is_address(),
a61af66fc99e Initial load
duke
parents:
diff changeset
632 "shouldn't be codeemitinfo for non-address operands");
a61af66fc99e Initial load
duke
parents:
diff changeset
633 add_debug_info_for_null_check_here(op->info()); // exception possible
a61af66fc99e Initial load
duke
parents:
diff changeset
634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
635 comp_op(op->condition(), op->in_opr1(), op->in_opr2(), op);
a61af66fc99e Initial load
duke
parents:
diff changeset
636 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
637
a61af66fc99e Initial load
duke
parents:
diff changeset
638 case lir_cmp_l2i:
a61af66fc99e Initial load
duke
parents:
diff changeset
639 case lir_cmp_fd2i:
a61af66fc99e Initial load
duke
parents:
diff changeset
640 case lir_ucmp_fd2i:
a61af66fc99e Initial load
duke
parents:
diff changeset
641 comp_fl2i(op->code(), op->in_opr1(), op->in_opr2(), op->result_opr(), op);
a61af66fc99e Initial load
duke
parents:
diff changeset
642 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
643
a61af66fc99e Initial load
duke
parents:
diff changeset
644 case lir_cmove:
a61af66fc99e Initial load
duke
parents:
diff changeset
645 cmove(op->condition(), op->in_opr1(), op->in_opr2(), op->result_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
646 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 case lir_shl:
a61af66fc99e Initial load
duke
parents:
diff changeset
649 case lir_shr:
a61af66fc99e Initial load
duke
parents:
diff changeset
650 case lir_ushr:
a61af66fc99e Initial load
duke
parents:
diff changeset
651 if (op->in_opr2()->is_constant()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
652 shift_op(op->code(), op->in_opr1(), op->in_opr2()->as_constant_ptr()->as_jint(), op->result_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
653 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
654 shift_op(op->code(), op->in_opr1(), op->in_opr2(), op->result_opr(), op->tmp_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
655 }
a61af66fc99e Initial load
duke
parents:
diff changeset
656 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
657
a61af66fc99e Initial load
duke
parents:
diff changeset
658 case lir_add:
a61af66fc99e Initial load
duke
parents:
diff changeset
659 case lir_sub:
a61af66fc99e Initial load
duke
parents:
diff changeset
660 case lir_mul:
a61af66fc99e Initial load
duke
parents:
diff changeset
661 case lir_mul_strictfp:
a61af66fc99e Initial load
duke
parents:
diff changeset
662 case lir_div:
a61af66fc99e Initial load
duke
parents:
diff changeset
663 case lir_div_strictfp:
a61af66fc99e Initial load
duke
parents:
diff changeset
664 case lir_rem:
a61af66fc99e Initial load
duke
parents:
diff changeset
665 assert(op->fpu_pop_count() < 2, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
666 arith_op(
a61af66fc99e Initial load
duke
parents:
diff changeset
667 op->code(),
a61af66fc99e Initial load
duke
parents:
diff changeset
668 op->in_opr1(),
a61af66fc99e Initial load
duke
parents:
diff changeset
669 op->in_opr2(),
a61af66fc99e Initial load
duke
parents:
diff changeset
670 op->result_opr(),
a61af66fc99e Initial load
duke
parents:
diff changeset
671 op->info(),
a61af66fc99e Initial load
duke
parents:
diff changeset
672 op->fpu_pop_count() == 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
673 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
674
a61af66fc99e Initial load
duke
parents:
diff changeset
675 case lir_abs:
a61af66fc99e Initial load
duke
parents:
diff changeset
676 case lir_sqrt:
a61af66fc99e Initial load
duke
parents:
diff changeset
677 case lir_sin:
a61af66fc99e Initial load
duke
parents:
diff changeset
678 case lir_tan:
a61af66fc99e Initial load
duke
parents:
diff changeset
679 case lir_cos:
a61af66fc99e Initial load
duke
parents:
diff changeset
680 case lir_log:
a61af66fc99e Initial load
duke
parents:
diff changeset
681 case lir_log10:
a61af66fc99e Initial load
duke
parents:
diff changeset
682 intrinsic_op(op->code(), op->in_opr1(), op->in_opr2(), op->result_opr(), op);
a61af66fc99e Initial load
duke
parents:
diff changeset
683 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
684
a61af66fc99e Initial load
duke
parents:
diff changeset
685 case lir_logic_and:
a61af66fc99e Initial load
duke
parents:
diff changeset
686 case lir_logic_or:
a61af66fc99e Initial load
duke
parents:
diff changeset
687 case lir_logic_xor:
a61af66fc99e Initial load
duke
parents:
diff changeset
688 logic_op(
a61af66fc99e Initial load
duke
parents:
diff changeset
689 op->code(),
a61af66fc99e Initial load
duke
parents:
diff changeset
690 op->in_opr1(),
a61af66fc99e Initial load
duke
parents:
diff changeset
691 op->in_opr2(),
a61af66fc99e Initial load
duke
parents:
diff changeset
692 op->result_opr());
a61af66fc99e Initial load
duke
parents:
diff changeset
693 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
694
a61af66fc99e Initial load
duke
parents:
diff changeset
695 case lir_throw:
a61af66fc99e Initial load
duke
parents:
diff changeset
696 case lir_unwind:
a61af66fc99e Initial load
duke
parents:
diff changeset
697 throw_op(op->in_opr1(), op->in_opr2(), op->info(), op->code() == lir_unwind);
a61af66fc99e Initial load
duke
parents:
diff changeset
698 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
699
a61af66fc99e Initial load
duke
parents:
diff changeset
700 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
701 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
702 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
703 }
a61af66fc99e Initial load
duke
parents:
diff changeset
704 }
a61af66fc99e Initial load
duke
parents:
diff changeset
705
a61af66fc99e Initial load
duke
parents:
diff changeset
706
a61af66fc99e Initial load
duke
parents:
diff changeset
707 void LIR_Assembler::build_frame() {
a61af66fc99e Initial load
duke
parents:
diff changeset
708 _masm->build_frame(initial_frame_size_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
709 }
a61af66fc99e Initial load
duke
parents:
diff changeset
710
a61af66fc99e Initial load
duke
parents:
diff changeset
711
a61af66fc99e Initial load
duke
parents:
diff changeset
712 void LIR_Assembler::roundfp_op(LIR_Opr src, LIR_Opr tmp, LIR_Opr dest, bool pop_fpu_stack) {
a61af66fc99e Initial load
duke
parents:
diff changeset
713 assert((src->is_single_fpu() && dest->is_single_stack()) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
714 (src->is_double_fpu() && dest->is_double_stack()),
a61af66fc99e Initial load
duke
parents:
diff changeset
715 "round_fp: rounds register -> stack location");
a61af66fc99e Initial load
duke
parents:
diff changeset
716
a61af66fc99e Initial load
duke
parents:
diff changeset
717 reg2stack (src, dest, src->type(), pop_fpu_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
718 }
a61af66fc99e Initial load
duke
parents:
diff changeset
719
a61af66fc99e Initial load
duke
parents:
diff changeset
720
a61af66fc99e Initial load
duke
parents:
diff changeset
721 void LIR_Assembler::move_op(LIR_Opr src, LIR_Opr dest, BasicType type, LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool unaligned) {
a61af66fc99e Initial load
duke
parents:
diff changeset
722 if (src->is_register()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
723 if (dest->is_register()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
724 assert(patch_code == lir_patch_none && info == NULL, "no patching and info allowed here");
a61af66fc99e Initial load
duke
parents:
diff changeset
725 reg2reg(src, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
726 } else if (dest->is_stack()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
727 assert(patch_code == lir_patch_none && info == NULL, "no patching and info allowed here");
a61af66fc99e Initial load
duke
parents:
diff changeset
728 reg2stack(src, dest, type, pop_fpu_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
729 } else if (dest->is_address()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
730 reg2mem(src, dest, type, patch_code, info, pop_fpu_stack, unaligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
731 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
732 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
733 }
a61af66fc99e Initial load
duke
parents:
diff changeset
734
a61af66fc99e Initial load
duke
parents:
diff changeset
735 } else if (src->is_stack()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
736 assert(patch_code == lir_patch_none && info == NULL, "no patching and info allowed here");
a61af66fc99e Initial load
duke
parents:
diff changeset
737 if (dest->is_register()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
738 stack2reg(src, dest, type);
a61af66fc99e Initial load
duke
parents:
diff changeset
739 } else if (dest->is_stack()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
740 stack2stack(src, dest, type);
a61af66fc99e Initial load
duke
parents:
diff changeset
741 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
742 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
743 }
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745 } else if (src->is_constant()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
746 if (dest->is_register()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
747 const2reg(src, dest, patch_code, info); // patching is possible
a61af66fc99e Initial load
duke
parents:
diff changeset
748 } else if (dest->is_stack()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
749 assert(patch_code == lir_patch_none && info == NULL, "no patching and info allowed here");
a61af66fc99e Initial load
duke
parents:
diff changeset
750 const2stack(src, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
751 } else if (dest->is_address()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 assert(patch_code == lir_patch_none, "no patching allowed here");
a61af66fc99e Initial load
duke
parents:
diff changeset
753 const2mem(src, dest, type, info);
a61af66fc99e Initial load
duke
parents:
diff changeset
754 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
755 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
756 }
a61af66fc99e Initial load
duke
parents:
diff changeset
757
a61af66fc99e Initial load
duke
parents:
diff changeset
758 } else if (src->is_address()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
759 mem2reg(src, dest, type, patch_code, info, unaligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
760
a61af66fc99e Initial load
duke
parents:
diff changeset
761 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
762 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
763 }
a61af66fc99e Initial load
duke
parents:
diff changeset
764 }
a61af66fc99e Initial load
duke
parents:
diff changeset
765
a61af66fc99e Initial load
duke
parents:
diff changeset
766
a61af66fc99e Initial load
duke
parents:
diff changeset
767 void LIR_Assembler::verify_oop_map(CodeEmitInfo* info) {
a61af66fc99e Initial load
duke
parents:
diff changeset
768 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
769 if (VerifyOopMaps || VerifyOops) {
a61af66fc99e Initial load
duke
parents:
diff changeset
770 bool v = VerifyOops;
a61af66fc99e Initial load
duke
parents:
diff changeset
771 VerifyOops = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
772 OopMapStream s(info->oop_map());
a61af66fc99e Initial load
duke
parents:
diff changeset
773 while (!s.is_done()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
774 OopMapValue v = s.current();
a61af66fc99e Initial load
duke
parents:
diff changeset
775 if (v.is_oop()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
776 VMReg r = v.reg();
a61af66fc99e Initial load
duke
parents:
diff changeset
777 if (!r->is_stack()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
778 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
779 st.print("bad oop %s at %d", r->as_Register()->name(), _masm->offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
780 #ifdef SPARC
a61af66fc99e Initial load
duke
parents:
diff changeset
781 _masm->_verify_oop(r->as_Register(), strdup(st.as_string()), __FILE__, __LINE__);
a61af66fc99e Initial load
duke
parents:
diff changeset
782 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
783 _masm->verify_oop(r->as_Register());
a61af66fc99e Initial load
duke
parents:
diff changeset
784 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
785 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
786 _masm->verify_stack_oop(r->reg2stack() * VMRegImpl::stack_slot_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
787 }
a61af66fc99e Initial load
duke
parents:
diff changeset
788 }
a61af66fc99e Initial load
duke
parents:
diff changeset
789 s.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
791 VerifyOops = v;
a61af66fc99e Initial load
duke
parents:
diff changeset
792 }
a61af66fc99e Initial load
duke
parents:
diff changeset
793 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
794 }